diff --git a/.dockerignore b/.dockerignore deleted file mode 100644 index 323bce3b4..000000000 --- a/.dockerignore +++ /dev/null @@ -1,17 +0,0 @@ -.DS_Store -node_modules -bower_components -npm-debug.log -package-lock.json -yarn-error.log -ignore -cypress -.github -.editorconfig -.dockerignore -CHANGELOG.md -CODE_OF_CONDUCT.md -cypress.config.js -LICENSE.md -Readme.md -Todo.md diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 9b996c7a1..8e9baf184 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -6,20 +6,58 @@ on: branches: [ main, master ] jobs: test: - timeout-minutes: 90 + timeout-minutes: 60 runs-on: ubuntu-latest steps: - uses: actions/checkout@v5 - uses: actions/setup-node@v5 with: - node-version: lts/* + node-version: 24 + cache: 'yarn' - name: Install dependencies - run: yarn install - - name: Install Playwright Browsers + run: yarn install --frozen-lockfile + + - name: Get installed Playwright version + id: playwright-version + run: echo "version=$(yarn --silent playwright --version | sed 's/Version //')" >> "$GITHUB_OUTPUT" + + - name: Cache Playwright browsers + id: playwright-cache + uses: actions/cache@v5 + with: + path: ~/.cache/ms-playwright + key: playwright-${{ runner.os }}-${{ steps.playwright-version.outputs.version }} + + # `playwright install --with-deps` shells out to apt-get. On GitHub runners the + # dpkg lock is often held by background services (unattended-upgrades / apt-daily), + # which makes the install step hang indefinitely until the job times out. + # Stop those services first so apt can acquire the lock immediately. + - name: Free up the apt/dpkg lock + run: | + sudo systemctl stop apt-daily.service apt-daily-upgrade.service unattended-upgrades.service || true + sudo systemctl stop apt-daily.timer apt-daily-upgrade.timer || true + sudo flock --wait 60 /var/lib/dpkg/lock-frontend true || true + + - name: Install Playwright browsers and system deps + if: steps.playwright-cache.outputs.cache-hit != 'true' + timeout-minutes: 15 run: yarn playwright install --with-deps + + - name: Install Playwright system deps (cached browsers) + if: steps.playwright-cache.outputs.cache-hit == 'true' + timeout-minutes: 15 + run: yarn playwright install-deps + + - name: Build app + run: yarn build:test + - name: Run Playwright tests + # Run the full cross-browser matrix only on pushes to main/master. + # Pull requests run chromium only to keep CI fast. + env: + FULL_BROWSERS: ${{ github.event_name == 'push' && '1' || '' }} run: yarn playwright test - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 if: ${{ !cancelled() }} with: name: playwright-report diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 4bff2a7c7..000000000 --- a/Dockerfile +++ /dev/null @@ -1,52 +0,0 @@ -# Based on https://nextjs.org/docs/deployment#docker-image -FROM node:18-alpine AS base -# Build: run ooni-sysadmin.git/scripts/docker-build from this directory - -# Install dependencies only when needed -FROM base AS deps -# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed. -RUN apk add --no-cache libc6-compat -WORKDIR /app -COPY package.json yarn.lock ./ -RUN yarn install --frozen-lockfile - -# Rebuild the source code only when needed -FROM base AS builder -WORKDIR /app -COPY --from=deps /app/node_modules ./node_modules -COPY . . -RUN yarn build - -# Production image, copy all the files and run next -FROM base AS runner -WORKDIR /app -ARG CLOUDFLARE_TOKEN='' -ENV CLOUDFLARE_TOKEN $CLOUDFLARE_TOKEN -ENV NODE_ENV production -ENV NEXT_TELEMETRY_DISABLED 1 -RUN addgroup --system --gid 1001 nodejs -RUN adduser --system --uid 1001 nextjs - -# You only need to copy next.config.js if you are NOT using the default configuration -COPY --from=builder /app/next.config.js ./ -COPY --from=builder /app/public ./public - -# Set the correct permission for prerender cache -RUN mkdir .next -RUN chown nextjs:nodejs .next - -# Automatically leverage output traces to reduce image size -# https://nextjs.org/docs/advanced-features/output-file-tracing -COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./ -COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static - -USER nextjs - -EXPOSE 3100 -ENV PORT 3100 -# set hostname to localhost -ENV HOSTNAME "0.0.0.0" - -# server.js is created by next build from the standalone output -# https://nextjs.org/docs/pages/api-reference/next-config-js/output -CMD ["node", "server.js"] diff --git a/components/NavBar.js b/components/NavBar.js index 487684b0a..8d8798a81 100644 --- a/components/NavBar.js +++ b/components/NavBar.js @@ -179,6 +179,7 @@ export const NavBar = ({ color, className }) => { height={26} width={174} style={{ height: "26px", width: "auto" }} + priority unoptimized /> diff --git a/components/dashboard/MetaTags.js b/components/dashboard/MetaTags.js index 4d550b98e..da72a4474 100644 --- a/components/dashboard/MetaTags.js +++ b/components/dashboard/MetaTags.js @@ -27,7 +27,7 @@ export const MetaTags = ({ theme }) => { return ( - {title} | {intl.formatMessage({ id: 'General.OoniExplorer' })} + {`${title} | ${intl.formatMessage({ id: 'General.OoniExplorer' })}`} /// -import "./.next/dev/types/routes.d.ts"; +import "./.next/types/routes.d.ts"; // NOTE: This file should not be edited // see https://nextjs.org/docs/pages/api-reference/config/typescript for more information. diff --git a/next.config.js b/next.config.js index ef54048fa..9a4918c8c 100644 --- a/next.config.js +++ b/next.config.js @@ -7,7 +7,6 @@ const SUPPORTED_LANGUAGES = [ 'en', 'zh-Hant', 'zh-CN', 'vi', 'tr', 'th', 'sw', module.exports = withSentryConfig( { - output: 'standalone', env: { LOCALES: JSON.stringify(SUPPORTED_LANGUAGES), DEFAULT_LOCALE: DEFAULT_LOCALE, diff --git a/package.json b/package.json index e013915c3..856ea97e0 100644 --- a/package.json +++ b/package.json @@ -54,7 +54,7 @@ }, "devDependencies": { "@biomejs/biome": "^2.4.6", - "@playwright/test": "^1.57.0", + "@playwright/test": "^1.61.1", "@tailwindcss/postcss": "^4.2.2", "@types/node": "^22.5.4", "@types/nprogress": "^0.2.3", @@ -64,7 +64,6 @@ "glob": "^10.5.0", "imap-simple": "^5.1.0", "jsdom": "^23.2.0", - "msw": "^2.1.0", "mustache": "^4.2.0", "postcss": "^8.5.10", "start-server-and-test": "^2.0.3", @@ -88,8 +87,5 @@ "git:getCommitSHA": "git rev-parse HEAD", "git:getCommitSHA:short": "git rev-parse --short HEAD", "git:getCommitRef": "git symbolic-ref HEAD" - }, - "msw": { - "workerDirectory": "public" } } diff --git a/pages/as/[probe_asn].js b/pages/as/[probe_asn].js index 828c18c26..cb5984f53 100644 --- a/pages/as/[probe_asn].js +++ b/pages/as/[probe_asn].js @@ -224,9 +224,7 @@ const NetworkDashboard = ({ probe_asn, networkName, countriesData }) => { return ( <> - - {probe_asn} {networkName} | {intl.formatMessage({ id: 'General.OoniExplorer' })} - + {`${probe_asn} ${networkName} | ${intl.formatMessage({ id: 'General.OoniExplorer' })}`}

diff --git a/pages/chart/mat.js b/pages/chart/mat.js index df0b7b199..4122cc8fa 100644 --- a/pages/chart/mat.js +++ b/pages/chart/mat.js @@ -75,7 +75,7 @@ const MeasurementAggregationToolkit = () => { return ( <> - {intl.formatMessage({ id: 'MAT.Title' })} | {intl.formatMessage({ id: 'General.OoniExplorer' })} + {`${intl.formatMessage({ id: 'MAT.Title' })} | ${intl.formatMessage({ id: 'General.OoniExplorer' })}`}
diff --git a/pages/domains.js b/pages/domains.js index f14b39453..5bdd042a0 100644 --- a/pages/domains.js +++ b/pages/domains.js @@ -105,9 +105,7 @@ const Domains = () => { return ( <> - - {intl.formatMessage({ id: 'Domains.Title' })} | {intl.formatMessage({ id: 'General.OoniExplorer' })} - + {`${intl.formatMessage({ id: 'Domains.Title' })} | ${intl.formatMessage({ id: 'General.OoniExplorer' })}`}
{ return ( <> - {intl.formatMessage({ id: 'Findings.Index.Title' })} | {intl.formatMessage({ id: 'General.OoniExplorer' })} + {`${intl.formatMessage({ id: 'Findings.Index.Title' })} | ${intl.formatMessage({ id: 'General.OoniExplorer' })}`}
{user?.role === 'admin' && ( diff --git a/pages/networks.js b/pages/networks.js index 4a9e3d1b0..e0d35af3d 100644 --- a/pages/networks.js +++ b/pages/networks.js @@ -71,9 +71,7 @@ const Networks = () => { return ( <> - - {intl.formatMessage({ id: 'Networks.Title' })} | {intl.formatMessage({ id: 'General.OoniExplorer' })} - + {`${intl.formatMessage({ id: 'Networks.Title' })} | ${intl.formatMessage({ id: 'General.OoniExplorer' })}`}
{ return ( <> - {intl.formatMessage({ id: 'Search.PageTitle' })} | {intl.formatMessage({ id: 'General.OoniExplorer' })} + {`${intl.formatMessage({ id: 'Search.PageTitle' })} | ${intl.formatMessage({ id: 'General.OoniExplorer' })}`}
diff --git a/playwright.config.ts b/playwright.config.ts index 6983b1958..3dba7e018 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -34,22 +34,27 @@ export default defineConfig({ trace: 'on-first-retry', }, - /* Configure projects for major browsers */ + /* Configure projects for major browsers. + * On PRs we only run chromium to keep CI fast; the full cross-browser + * matrix runs on pushes to main/master (FULL_BROWSERS=1). */ projects: [ { name: 'chromium', use: { ...devices['Desktop Chrome'] }, }, - { - name: 'firefox', - use: { ...devices['Desktop Firefox'] }, - }, - - { - name: 'webkit', - use: { ...devices['Desktop Safari'] }, - }, + ...(process.env.FULL_BROWSERS + ? [ + { + name: 'firefox', + use: { ...devices['Desktop Firefox'] }, + }, + { + name: 'webkit', + use: { ...devices['Desktop Safari'] }, + }, + ] + : []), /* Test against mobile viewports. */ // { @@ -72,10 +77,16 @@ export default defineConfig({ // }, ], - /* Run your local dev server before starting the tests */ + /* Serve the app before starting the tests. + * On CI we run the optimized production build (`yarn start`) which is much + * faster and more stable than `next dev` (no on-demand route compilation). + * The build itself is produced by a separate CI step (`yarn build:test`). */ webServer: { - command: 'NODE_ENV=test yarn run dev', + command: process.env.CI + ? 'NODE_ENV=test yarn start' + : 'NODE_ENV=test yarn run dev', url: 'http://localhost:3100', reuseExistingServer: !process.env.CI, + timeout: 120_000, }, }) diff --git a/public/mockServiceWorker.js b/public/mockServiceWorker.js deleted file mode 100644 index b17fcd650..000000000 --- a/public/mockServiceWorker.js +++ /dev/null @@ -1,349 +0,0 @@ -/* eslint-disable */ -/* tslint:disable */ - -/** - * Mock Service Worker. - * @see https://github.com/mswjs/msw - * - Please do NOT modify this file. - */ - -const PACKAGE_VERSION = '2.12.14' -const INTEGRITY_CHECKSUM = '4db4a41e972cec1b64cc569c66952d82' -const IS_MOCKED_RESPONSE = Symbol('isMockedResponse') -const activeClientIds = new Set() - -addEventListener('install', function () { - self.skipWaiting() -}) - -addEventListener('activate', function (event) { - event.waitUntil(self.clients.claim()) -}) - -addEventListener('message', async function (event) { - const clientId = Reflect.get(event.source || {}, 'id') - - if (!clientId || !self.clients) { - return - } - - const client = await self.clients.get(clientId) - - if (!client) { - return - } - - const allClients = await self.clients.matchAll({ - type: 'window', - }) - - switch (event.data) { - case 'KEEPALIVE_REQUEST': { - sendToClient(client, { - type: 'KEEPALIVE_RESPONSE', - }) - break - } - - case 'INTEGRITY_CHECK_REQUEST': { - sendToClient(client, { - type: 'INTEGRITY_CHECK_RESPONSE', - payload: { - packageVersion: PACKAGE_VERSION, - checksum: INTEGRITY_CHECKSUM, - }, - }) - break - } - - case 'MOCK_ACTIVATE': { - activeClientIds.add(clientId) - - sendToClient(client, { - type: 'MOCKING_ENABLED', - payload: { - client: { - id: client.id, - frameType: client.frameType, - }, - }, - }) - break - } - - case 'CLIENT_CLOSED': { - activeClientIds.delete(clientId) - - const remainingClients = allClients.filter((client) => { - return client.id !== clientId - }) - - // Unregister itself when there are no more clients - if (remainingClients.length === 0) { - self.registration.unregister() - } - - break - } - } -}) - -addEventListener('fetch', function (event) { - const requestInterceptedAt = Date.now() - - // Bypass navigation requests. - if (event.request.mode === 'navigate') { - return - } - - // Opening the DevTools triggers the "only-if-cached" request - // that cannot be handled by the worker. Bypass such requests. - if ( - event.request.cache === 'only-if-cached' && - event.request.mode !== 'same-origin' - ) { - return - } - - // Bypass all requests when there are no active clients. - // Prevents the self-unregistered worked from handling requests - // after it's been terminated (still remains active until the next reload). - if (activeClientIds.size === 0) { - return - } - - const requestId = crypto.randomUUID() - event.respondWith(handleRequest(event, requestId, requestInterceptedAt)) -}) - -/** - * @param {FetchEvent} event - * @param {string} requestId - * @param {number} requestInterceptedAt - */ -async function handleRequest(event, requestId, requestInterceptedAt) { - const client = await resolveMainClient(event) - const requestCloneForEvents = event.request.clone() - const response = await getResponse( - event, - client, - requestId, - requestInterceptedAt, - ) - - // Send back the response clone for the "response:*" life-cycle events. - // Ensure MSW is active and ready to handle the message, otherwise - // this message will pend indefinitely. - if (client && activeClientIds.has(client.id)) { - const serializedRequest = await serializeRequest(requestCloneForEvents) - - // Clone the response so both the client and the library could consume it. - const responseClone = response.clone() - - sendToClient( - client, - { - type: 'RESPONSE', - payload: { - isMockedResponse: IS_MOCKED_RESPONSE in response, - request: { - id: requestId, - ...serializedRequest, - }, - response: { - type: responseClone.type, - status: responseClone.status, - statusText: responseClone.statusText, - headers: Object.fromEntries(responseClone.headers.entries()), - body: responseClone.body, - }, - }, - }, - responseClone.body ? [serializedRequest.body, responseClone.body] : [], - ) - } - - return response -} - -/** - * Resolve the main client for the given event. - * Client that issues a request doesn't necessarily equal the client - * that registered the worker. It's with the latter the worker should - * communicate with during the response resolving phase. - * @param {FetchEvent} event - * @returns {Promise} - */ -async function resolveMainClient(event) { - const client = await self.clients.get(event.clientId) - - if (activeClientIds.has(event.clientId)) { - return client - } - - if (client?.frameType === 'top-level') { - return client - } - - const allClients = await self.clients.matchAll({ - type: 'window', - }) - - return allClients - .filter((client) => { - // Get only those clients that are currently visible. - return client.visibilityState === 'visible' - }) - .find((client) => { - // Find the client ID that's recorded in the - // set of clients that have registered the worker. - return activeClientIds.has(client.id) - }) -} - -/** - * @param {FetchEvent} event - * @param {Client | undefined} client - * @param {string} requestId - * @param {number} requestInterceptedAt - * @returns {Promise} - */ -async function getResponse(event, client, requestId, requestInterceptedAt) { - // Clone the request because it might've been already used - // (i.e. its body has been read and sent to the client). - const requestClone = event.request.clone() - - function passthrough() { - // Cast the request headers to a new Headers instance - // so the headers can be manipulated with. - const headers = new Headers(requestClone.headers) - - // Remove the "accept" header value that marked this request as passthrough. - // This prevents request alteration and also keeps it compliant with the - // user-defined CORS policies. - const acceptHeader = headers.get('accept') - if (acceptHeader) { - const values = acceptHeader.split(',').map((value) => value.trim()) - const filteredValues = values.filter( - (value) => value !== 'msw/passthrough', - ) - - if (filteredValues.length > 0) { - headers.set('accept', filteredValues.join(', ')) - } else { - headers.delete('accept') - } - } - - return fetch(requestClone, { headers }) - } - - // Bypass mocking when the client is not active. - if (!client) { - return passthrough() - } - - // Bypass initial page load requests (i.e. static assets). - // The absence of the immediate/parent client in the map of the active clients - // means that MSW hasn't dispatched the "MOCK_ACTIVATE" event yet - // and is not ready to handle requests. - if (!activeClientIds.has(client.id)) { - return passthrough() - } - - // Notify the client that a request has been intercepted. - const serializedRequest = await serializeRequest(event.request) - const clientMessage = await sendToClient( - client, - { - type: 'REQUEST', - payload: { - id: requestId, - interceptedAt: requestInterceptedAt, - ...serializedRequest, - }, - }, - [serializedRequest.body], - ) - - switch (clientMessage.type) { - case 'MOCK_RESPONSE': { - return respondWithMock(clientMessage.data) - } - - case 'PASSTHROUGH': { - return passthrough() - } - } - - return passthrough() -} - -/** - * @param {Client} client - * @param {any} message - * @param {Array} transferrables - * @returns {Promise} - */ -function sendToClient(client, message, transferrables = []) { - return new Promise((resolve, reject) => { - const channel = new MessageChannel() - - channel.port1.onmessage = (event) => { - if (event.data && event.data.error) { - return reject(event.data.error) - } - - resolve(event.data) - } - - client.postMessage(message, [ - channel.port2, - ...transferrables.filter(Boolean), - ]) - }) -} - -/** - * @param {Response} response - * @returns {Response} - */ -function respondWithMock(response) { - // Setting response status code to 0 is a no-op. - // However, when responding with a "Response.error()", the produced Response - // instance will have status code set to 0. Since it's not possible to create - // a Response instance with status code 0, handle that use-case separately. - if (response.status === 0) { - return Response.error() - } - - const mockedResponse = new Response(response.body, response) - - Reflect.defineProperty(mockedResponse, IS_MOCKED_RESPONSE, { - value: true, - enumerable: true, - }) - - return mockedResponse -} - -/** - * @param {Request} request - */ -async function serializeRequest(request) { - return { - url: request.url, - mode: request.mode, - method: request.method, - headers: Object.fromEntries(request.headers.entries()), - cache: request.cache, - credentials: request.credentials, - destination: request.destination, - integrity: request.integrity, - redirect: request.redirect, - referrer: request.referrer, - referrerPolicy: request.referrerPolicy, - body: await request.arrayBuffer(), - keepalive: request.keepalive, - } -} diff --git a/tests/e2e/countries.spec.ts b/tests/e2e/countries.spec.ts index 820c20ce9..fff8178ed 100644 --- a/tests/e2e/countries.spec.ts +++ b/tests/e2e/countries.spec.ts @@ -3,7 +3,6 @@ import { test, expect } from '@playwright/test' test.describe('Countries Page Tests', () => { test.beforeEach(async ({ page }) => { await page.goto('/countries') - await page.waitForLoadState('networkidle') }) test('first region (Africa) is visible', async ({ page }) => { diff --git a/tests/e2e/country.spec.ts b/tests/e2e/country.spec.ts index 78570709c..a7fc12997 100644 --- a/tests/e2e/country.spec.ts +++ b/tests/e2e/country.spec.ts @@ -3,7 +3,6 @@ import { test, expect } from '@playwright/test' test.describe('Country Page Tests', () => { test.beforeEach(async ({ page }) => { await page.goto('/country/CA') - await page.waitForLoadState('networkidle') }) // TODO: is overview text is populated diff --git a/tests/e2e/findings.spec.ts b/tests/e2e/findings.spec.ts index 828f15b13..452fc98dc 100644 --- a/tests/e2e/findings.spec.ts +++ b/tests/e2e/findings.spec.ts @@ -34,8 +34,6 @@ test.describe('Findings Dashboard', () => { ) await page.goto('/findings/dashboard') - await page.waitForLoadState('networkidle') - await expect(page.getByText('Findings Dashboard')).toBeVisible() }) @@ -45,8 +43,6 @@ test.describe('Findings Dashboard', () => { ) await page.goto('/findings/dashboard') - await page.waitForLoadState('networkidle') - await expect(page.getByText('Findings Dashboard')).not.toBeVisible() await expect(page).toHaveURL('http://localhost:3100/findings', { timeout: 6000, @@ -62,8 +58,6 @@ test.describe('Findings Dashboard', () => { ) await page.goto('/findings/dashboard') - await page.waitForLoadState('networkidle') - await expect(page.getByText('Findings Dashboard')).not.toBeVisible() await expect(page).toHaveURL('http://localhost:3100/findings', { timeout: 6000, @@ -87,8 +81,6 @@ test.describe('Findings Edit', () => { ) await page.goto('/findings/edit/1234') - await page.waitForLoadState('networkidle') - await expect( page.getByRole('heading', { name: 'Edit Censorship Finding' }), ).toBeVisible() @@ -116,8 +108,6 @@ test.describe('Findings Edit', () => { ) await page.goto('/findings/edit/1234') - await page.waitForLoadState('networkidle') - await expect( page.getByRole('heading', { name: 'Edit Censorship Finding' }), ).toBeVisible() @@ -129,8 +119,6 @@ test.describe('Findings Edit', () => { ) await page.goto('/findings/edit/1234') - await page.waitForLoadState('networkidle') - await expect( page.getByRole('heading', { name: 'Edit Censorship Finding' }), ).not.toBeVisible() @@ -154,8 +142,6 @@ test.describe('Findings Edit', () => { ) await page.goto('/findings/edit/1234') - await page.waitForLoadState('networkidle') - await expect( page.getByRole('heading', { name: 'Edit Censorship Finding' }), ).not.toBeVisible() diff --git a/tests/e2e/fixtures/aggregation/aggregation__test_name-web_connectivity_since-2022-03-01_until-2022-03-04_axis_x-measurement_start_day_time_grain-day.json b/tests/e2e/fixtures/aggregation/aggregation__test_name-web_connectivity_since-2022-03-01_until-2022-03-04_axis_x-measurement_start_day_time_grain-day.json new file mode 100644 index 000000000..cfcdbef24 --- /dev/null +++ b/tests/e2e/fixtures/aggregation/aggregation__test_name-web_connectivity_since-2022-03-01_until-2022-03-04_axis_x-measurement_start_day_time_grain-day.json @@ -0,0 +1,5 @@ +{ + "status": 200, + "contentType": "application/json", + "body": "{\"v\":0,\"dimension_count\":1,\"db_stats\":{\"row_count\":3979248,\"bytes\":138133717,\"total_row_count\":3979248,\"elapsed_seconds\":0.047969818115234375},\"result\":[{\"anomaly_count\":53651,\"confirmed_count\":6739,\"failure_count\":16283,\"ok_count\":1036684,\"measurement_count\":1113357,\"measurement_start_day\":\"2022-03-01\"},{\"anomaly_count\":57942,\"confirmed_count\":8782,\"failure_count\":13819,\"ok_count\":1131672,\"measurement_count\":1212215,\"measurement_start_day\":\"2022-03-02\"},{\"anomaly_count\":54710,\"confirmed_count\":7051,\"failure_count\":13346,\"ok_count\":1086791,\"measurement_count\":1161898,\"measurement_start_day\":\"2022-03-03\"}]}" +} \ No newline at end of file diff --git a/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-01201503307dd8855f39f3d8f78be05f0c67770d_full-true.json b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-01201503307dd8855f39f3d8f78be05f0c67770d_full-true.json new file mode 100644 index 000000000..756af4f2b --- /dev/null +++ b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-01201503307dd8855f39f3d8f78be05f0c67770d_full-true.json @@ -0,0 +1,5 @@ +{ + "status": 200, + "contentType": "application/json", + "body": "{\"input\":\"https://cryptbin.com\",\"measurement_start_time\":\"2015-03-30T21:12:43Z\",\"measurement_uid\":\"01201503307dd8855f39f3d8f78be05f0c67770d\",\"report_id\":\"20150330T231214Z_bLcnlMHNRrNezvvmUePFtkbJNDglhMvTNoivcUMZqpUjXhkHlR\",\"test_name\":\"http_requests\",\"test_start_time\":\"2015-03-30T21:12:14Z\",\"probe_asn\":812,\"probe_cc\":\"CA\",\"scores\":\"{\\\"blocking_general\\\":0.0,\\\"blocking_global\\\":0.0,\\\"blocking_country\\\":0.0,\\\"blocking_isp\\\":0.0,\\\"blocking_local\\\":0.0}\",\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"raw_measurement\":\"{\\\"input\\\": \\\"https://cryptbin.com\\\", \\\"test_runtime\\\": 4.155927896499634, \\\"backend_version\\\": \\\"1.1.4\\\", \\\"input_hashes\\\": [\\\"ddc991ef6b3c7e410ce180621fff20d0789140472bead9fc40d6cfd4421c315a\\\"], \\\"options\\\": [\\\"-f\\\", \\\"india.txt\\\"], \\\"probe_asn\\\": \\\"AS812\\\", \\\"probe_cc\\\": \\\"CA\\\", \\\"probe_city\\\": null, \\\"probe_ip\\\": \\\"127.0.0.1\\\", \\\"software_name\\\": \\\"ooniprobe\\\", \\\"software_version\\\": \\\"1.2.2\\\", \\\"test_name\\\": \\\"http_requests\\\", \\\"test_version\\\": \\\"0.2.4\\\", \\\"report_id\\\": \\\"20150330T231214Z_bLcnlMHNRrNezvvmUePFtkbJNDglhMvTNoivcUMZqpUjXhkHlR\\\", \\\"bucket_date\\\": \\\"2015-03-30\\\", \\\"id\\\": \\\"c41168a7-c11a-116f-c1f4-5cc6036c6d91\\\", \\\"report_filename\\\": \\\"2015-03-30/http_requests.0.tar.lz4\\\", \\\"data_format_version\\\": \\\"0.2.0\\\", \\\"measurement_start_time\\\": \\\"2015-03-30 23:12:43\\\", \\\"test_helpers\\\": null, \\\"test_keys\\\": {\\\"headers_diff\\\": [], \\\"body_length_match\\\": true, \\\"requests\\\": [{\\\"request\\\": {\\\"body\\\": null, \\\"headers\\\": {\\\"User-Agent\\\": \\\"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2) Gecko/20100115 Firefox/3.6\\\"}, \\\"method\\\": \\\"GET\\\", \\\"tor\\\": {\\\"is_tor\\\": false, \\\"exit_ip\\\": null, \\\"exit_name\\\": null}, \\\"url\\\": \\\"https://cryptbin.com\\\"}, \\\"response\\\": {\\\"body\\\": \\\"2b5b\\\\r\\\\n\\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n Cryptbin | Encrypted Pastes\\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n\\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n

File Drop

\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n

\\\\\\\"CryptbinCryptbin

\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n

Create an Account

\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n Create Account\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n

Creating an account with Cryptbin allows you to take advantage of all the features we have to offer, such as saving pastes and retrieving delete links at a later date. We are continually building new features, many of which are only available to account holders.

\\\\r\\\\n

Note: Providing an email address is optional for creating an account, but is required to access your account should you forget your password. If you do forget your password and did not provide an email address you will be locked out of your account permanently.

\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n

Sign In

\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n \\\\r\\\\n Forgot your password?\\\\r\\\\n Sign In\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n

Forgot Password

\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n

If you did not provide an email address for your account you will not be able to reset your password!

\\\\r\\\\n Reset Password\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n

\\\\\\\"CryptbinCryptbin

\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n New Paste\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n

Create encrypted pastes faster and easier than ever

\\\\r\\\\n \\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n

EXPIRES IN

\\\\r\\\\n

\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n
    \\\\r\\\\n
  • Public
  • \\\\r\\\\n
  • Private
  • \\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n

\\\\r\\\\n \\\\r\\\\n

\\\\r\\\\n Create Short URL\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n

Create Short URL

\\\\r\\\\n Because Cryptbin never stores your encryption key, we do not generate short URLs automatically for every paste. If you would like to share your paste on social media or other public mediums, having a short URL is recommended. In order to do so, Cryptbin will need to store the encryption key along with the generated URL slug.

\\\\r\\\\n By clicking 'I Agree' you acknowledge that Cryptbin will store the encryption key for this paste (and only this paste). You also agree that your paste may be included in our latest pastes feed.\\\\r\\\\n
\\\\r\\\\n I Agree\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n

\\\\r\\\\n \\\\r\\\\n

\\\\r\\\\n

\\\\r\\\\n \\\\r\\\\n

\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n

Delete:

\\\\r\\\\n
\\\\r\\\\n Share\\\\r\\\\n Tweet\\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n

\\\\r\\\\n \\\\r\\\\n \\\\r\\\\n

\\\\r\\\\n Decrypt\\\\r\\\\n
\\\\r\\\\n\\\\r\\\\n\\\\r\\\\n
\\\\r\\\\n

Recent Announcement: Accept Donations on Pastes

\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
    \\\\r\\\\n
  • \\\\r\\\\n
  • \\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n

Attached Images

\\\\r\\\\n
\\\\r\\\\n

Drag & drop files to attach them

\\\\r\\\\n

\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n \\\\r\\\\n Accept Donations NEW!\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n Add Another Address\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n This paste will not self-destruct. Drag for more options!\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n

This paste will self-destruct immediately after being opened

\\\\r\\\\n

This paste will self-destruct in \\\\r\\\\n \\\\r\\\\n

\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n Create Encrypted Paste\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n

Featured On

\\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n

\\\\r\\\\n
\\\\r\\\\n

\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n

Truly Private Files

\\\\r\\\\n We were unable to detect support for the technology used to encrypt file on your computer before they and transmitted across the Internet. This is most likely due to outdated version of your current browser. We strongly recommend visiting Cryptbin with the latest version of Google Chrome or Mozilla Firefox.

\\\\r\\\\n Without support for the File API, all imagine attachment functionality is disabled. Please install one of the aforementioned web browsers for the best experience on Cryptbin and many other websites.\\\\r\\\\n

(warning: support for html5 file api not detected)

\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n

Maximum Security Browser

\\\\r\\\\n Cryptbin utilizes the latest technology when it's available to maintain a high level of security. For you, this means that your data is as secure as it can be. For us, we sometimes have to rely on new features that are not yet implemented in all web browsers. To experience Cryptbin at it's fullest potential, we strongly urge you to visit our website using the latest version Google Chrome or Mozilla Firefox.

\\\\r\\\\n

(warning: support for crypto.getRandomValues not detected)

\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n\\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n

\\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
    \\\\r\\\\n
  • ©2015 Cryptbin
  • \\\\r\\\\n \\\\r\\\\n
  • FAQ
  • \\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n0\\\\r\\\\n\\\\r\\\\n\\\", \\\"code\\\": 200, \\\"headers\\\": {\\\"X-Powered-By\\\": \\\"PHP/5.4.4-14+deb7u10\\\", \\\"Transfer-Encoding\\\": \\\"chunked\\\", \\\"Set-Cookie\\\": \\\"PHPSESSID=j1vrvoco2su8cph0lieb232ug6; path=/\\\", \\\"Expires\\\": \\\"Thu, 19 Nov 1981 08:52:00 GMT\\\", \\\"Vary\\\": \\\"Accept-Encoding\\\", \\\"Server\\\": \\\"Apache/2.2.22 (Debian)\\\", \\\"Connection\\\": \\\"close\\\", \\\"Pragma\\\": \\\"no-cache\\\", \\\"Cache-Control\\\": \\\"no-store, no-cache, must-revalidate, post-check=0, pre-check=0\\\", \\\"Date\\\": \\\"Mon, 30 Mar 2015 23:12:44 GMT\\\", \\\"Content-Type\\\": \\\"text/html; charset=UTF-8\\\"}}, \\\"response_length\\\": null}, {\\\"request\\\": {\\\"body\\\": null, \\\"headers\\\": {\\\"User-Agent\\\": \\\"Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.1.7) Gecko/20091221 Firefox/3.5.7 (.NET CLR 3.5.30729)\\\"}, \\\"method\\\": \\\"GET\\\", \\\"tor\\\": {\\\"is_tor\\\": true, \\\"exit_ip\\\": \\\"176.9.25.72\\\", \\\"exit_name\\\": \\\"apx1\\\"}, \\\"url\\\": \\\"https://cryptbin.com\\\"}, \\\"response\\\": {\\\"body\\\": \\\"2b5b\\\\r\\\\n\\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n Cryptbin | Encrypted Pastes\\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n\\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n

File Drop

\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n

\\\\\\\"CryptbinCryptbin

\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n

Create an Account

\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n Create Account\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n

Creating an account with Cryptbin allows you to take advantage of all the features we have to offer, such as saving pastes and retrieving delete links at a later date. We are continually building new features, many of which are only available to account holders.

\\\\r\\\\n

Note: Providing an email address is optional for creating an account, but is required to access your account should you forget your password. If you do forget your password and did not provide an email address you will be locked out of your account permanently.

\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n

Sign In

\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n \\\\r\\\\n Forgot your password?\\\\r\\\\n Sign In\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n

Forgot Password

\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n

If you did not provide an email address for your account you will not be able to reset your password!

\\\\r\\\\n Reset Password\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n

\\\\\\\"CryptbinCryptbin

\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n New Paste\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n

Create encrypted pastes faster and easier than ever

\\\\r\\\\n \\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n

EXPIRES IN

\\\\r\\\\n

\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n
    \\\\r\\\\n
  • Public
  • \\\\r\\\\n
  • Private
  • \\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n

\\\\r\\\\n \\\\r\\\\n

\\\\r\\\\n Create Short URL\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n

Create Short URL

\\\\r\\\\n Because Cryptbin never stores your encryption key, we do not generate short URLs automatically for every paste. If you would like to share your paste on social media or other public mediums, having a short URL is recommended. In order to do so, Cryptbin will need to store the encryption key along with the generated URL slug.

\\\\r\\\\n By clicking 'I Agree' you acknowledge that Cryptbin will store the encryption key for this paste (and only this paste). You also agree that your paste may be included in our latest pastes feed.\\\\r\\\\n
\\\\r\\\\n I Agree\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n

\\\\r\\\\n \\\\r\\\\n

\\\\r\\\\n

\\\\r\\\\n \\\\r\\\\n

\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n

Delete:

\\\\r\\\\n
\\\\r\\\\n Share\\\\r\\\\n Tweet\\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n

\\\\r\\\\n \\\\r\\\\n \\\\r\\\\n

\\\\r\\\\n Decrypt\\\\r\\\\n
\\\\r\\\\n\\\\r\\\\n\\\\r\\\\n
\\\\r\\\\n

Recent Announcement: Accept Donations on Pastes

\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
    \\\\r\\\\n
  • \\\\r\\\\n
  • \\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n

Attached Images

\\\\r\\\\n
\\\\r\\\\n

Drag & drop files to attach them

\\\\r\\\\n

\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n \\\\r\\\\n Accept Donations NEW!\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n Add Another Address\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n This paste will not self-destruct. Drag for more options!\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n

This paste will self-destruct immediately after being opened

\\\\r\\\\n

This paste will self-destruct in \\\\r\\\\n \\\\r\\\\n

\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n Create Encrypted Paste\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n

Featured On

\\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n

\\\\r\\\\n
\\\\r\\\\n

\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n

Truly Private Files

\\\\r\\\\n We were unable to detect support for the technology used to encrypt file on your computer before they and transmitted across the Internet. This is most likely due to outdated version of your current browser. We strongly recommend visiting Cryptbin with the latest version of Google Chrome or Mozilla Firefox.

\\\\r\\\\n Without support for the File API, all imagine attachment functionality is disabled. Please install one of the aforementioned web browsers for the best experience on Cryptbin and many other websites.\\\\r\\\\n

(warning: support for html5 file api not detected)

\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n

Maximum Security Browser

\\\\r\\\\n Cryptbin utilizes the latest technology when it's available to maintain a high level of security. For you, this means that your data is as secure as it can be. For us, we sometimes have to rely on new features that are not yet implemented in all web browsers. To experience Cryptbin at it's fullest potential, we strongly urge you to visit our website using the latest version Google Chrome or Mozilla Firefox.

\\\\r\\\\n

(warning: support for crypto.getRandomValues not detected)

\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n\\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n

\\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
    \\\\r\\\\n
  • ©2015 Cryptbin
  • \\\\r\\\\n \\\\r\\\\n
  • FAQ
  • \\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n
\\\\r\\\\n \\\\r\\\\n \\\\r\\\\n \\\\r\\\\n0\\\\r\\\\n\\\\r\\\\n\\\", \\\"code\\\": 200, \\\"headers\\\": {\\\"X-Powered-By\\\": \\\"PHP/5.4.4-14+deb7u10\\\", \\\"Transfer-Encoding\\\": \\\"chunked\\\", \\\"Set-Cookie\\\": \\\"PHPSESSID=c9sluik6h4k9h4rd8dogq7e354; path=/\\\", \\\"Expires\\\": \\\"Thu, 19 Nov 1981 08:52:00 GMT\\\", \\\"Vary\\\": \\\"Accept-Encoding\\\", \\\"Server\\\": \\\"Apache/2.2.22 (Debian)\\\", \\\"Connection\\\": \\\"close\\\", \\\"Pragma\\\": \\\"no-cache\\\", \\\"Cache-Control\\\": \\\"no-store, no-cache, must-revalidate, post-check=0, pre-check=0\\\", \\\"Date\\\": \\\"Mon, 30 Mar 2015 23:12:46 GMT\\\", \\\"Content-Type\\\": \\\"text/html; charset=UTF-8\\\"}}, \\\"response_length\\\": null}], \\\"experiment_failure\\\": null, \\\"body_proportion\\\": 1.0, \\\"agent\\\": \\\"agent\\\", \\\"factor\\\": 0.8, \\\"socksproxy\\\": null, \\\"headers_match\\\": true, \\\"control_failure\\\": null}, \\\"test_start_time\\\": \\\"2015-03-30 23:12:14\\\", \\\"measurement_uid\\\": \\\"01201503307dd8855f39f3d8f78be05f0c67770d\\\"}\\n\",\"category_code\":\"\",\"verification_status\":\"unverified\"}" +} \ No newline at end of file diff --git a/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-0120190930e8f3eb8e075af3ffe8e54f33caeae2_full-true.json b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-0120190930e8f3eb8e075af3ffe8e54f33caeae2_full-true.json new file mode 100644 index 000000000..f7f9dc6d2 --- /dev/null +++ b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-0120190930e8f3eb8e075af3ffe8e54f33caeae2_full-true.json @@ -0,0 +1,5 @@ +{ + "status": 200, + "contentType": "application/json", + "body": "{\"input\":\"\",\"measurement_start_time\":\"2019-09-30T19:27:15Z\",\"measurement_uid\":\"0120190930e8f3eb8e075af3ffe8e54f33caeae2\",\"report_id\":\"20190930T212715Z_AS17380_2W4uXDAWAckWTGI5TRep5hw5j5gSS31wKlbO2RHlV0v4fudSXW\",\"test_name\":\"dash\",\"test_start_time\":\"2019-09-30T19:27:13Z\",\"probe_asn\":17380,\"probe_cc\":\"US\",\"scores\":\"{\\\"blocking_general\\\":0.1,\\\"blocking_global\\\":0.0,\\\"blocking_country\\\":0.0,\\\"blocking_isp\\\":0.0,\\\"blocking_local\\\":0.0,\\\"accuracy\\\":0.0}\",\"anomaly\":false,\"confirmed\":false,\"failure\":true,\"raw_measurement\":\"{\\\"software_name\\\": \\\"measurement_kit\\\", \\\"software_version\\\": \\\"0.9.0-dev\\\", \\\"test_runtime\\\": 0.355370044708252, \\\"test_start_time\\\": \\\"2019-09-30 21:27:13\\\", \\\"test_name\\\": \\\"dash\\\", \\\"test_keys\\\": {\\\"client_resolver\\\": \\\"172.217.46.11\\\", \\\"failure\\\": \\\"json_parse_error\\\"}, \\\"probe_ip\\\": \\\"127.0.0.1\\\", \\\"id\\\": \\\"30adfca6-45b1-44eb-9a72-b70adcf624ce\\\", \\\"data_format_version\\\": \\\"0.2.0\\\", \\\"measurement_start_time\\\": \\\"2019-09-30 21:27:15\\\", \\\"options\\\": [], \\\"test_version\\\": \\\"0.7.0\\\", \\\"input_hashes\\\": [], \\\"input\\\": null, \\\"probe_city\\\": null, \\\"report_id\\\": \\\"20190930T212715Z_AS17380_2W4uXDAWAckWTGI5TRep5hw5j5gSS31wKlbO2RHlV0v4fudSXW\\\", \\\"probe_asn\\\": \\\"AS17380\\\", \\\"annotations\\\": {\\\"platform\\\": \\\"linux\\\", \\\"engine_version_full\\\": \\\"v0.9.0-dev-7-g72260e40\\\", \\\"engine_version\\\": \\\"0.9.0-dev\\\", \\\"engine_name\\\": \\\"libmeasurement_kit\\\"}, \\\"test_helpers\\\": {}, \\\"probe_cc\\\": \\\"US\\\", \\\"measurement_uid\\\": \\\"0120190930e8f3eb8e075af3ffe8e54f33caeae2\\\"}\\n\",\"category_code\":\"\",\"verification_status\":\"unverified\"}" +} \ No newline at end of file diff --git a/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-01201911098a2eebcc7e2987c051a332b7769a57_full-true.json b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-01201911098a2eebcc7e2987c051a332b7769a57_full-true.json new file mode 100644 index 000000000..69c6d041e --- /dev/null +++ b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-01201911098a2eebcc7e2987c051a332b7769a57_full-true.json @@ -0,0 +1,5 @@ +{ + "status": 200, + "contentType": "application/json", + "body": "{\"input\":\"\",\"measurement_start_time\":\"2019-11-09T10:37:49Z\",\"measurement_uid\":\"01201911098a2eebcc7e2987c051a332b7769a57\",\"report_id\":\"20191109T103749Z_AS15802_pZVgEw2WzmXRnDfw1sGN9tTnIO8iKiQHNWZW7XzPZqsEWsbkAu\",\"test_name\":\"ndt\",\"test_start_time\":\"2019-11-09T10:37:47Z\",\"probe_asn\":15802,\"probe_cc\":\"AE\",\"scores\":\"{}\",\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"raw_measurement\":\"{\\\"software_name\\\": \\\"ooniprobe-ios\\\", \\\"software_version\\\": \\\"2.2.0\\\", \\\"test_runtime\\\": 15.190590143203735, \\\"test_start_time\\\": \\\"2019-11-09 10:37:47\\\", \\\"test_name\\\": \\\"ndt\\\", \\\"test_keys\\\": {\\\"test_c2s\\\": [], \\\"phase_result\\\": {\\\"download\\\": \\\"ndt_missing_expected_test_prepare_message\\\", \\\"meta\\\": \\\"ndt_missing_expected_test_prepare_message\\\", \\\"upload\\\": \\\"generic_timeout_error\\\"}, \\\"failure\\\": \\\"compute_advanced_stats_error\\\", \\\"server_address\\\": \\\"ndt.iupui.mlab1.bom01.measurement-lab.org\\\", \\\"summary_data\\\": {}, \\\"test_s2c\\\": [null], \\\"client_resolver\\\": \\\"91.73.133.38\\\", \\\"test_suite\\\": 54, \\\"server_port\\\": 3001, \\\"server_version\\\": \\\"v5.0-NDTinGO\\\"}, \\\"probe_ip\\\": \\\"127.0.0.1\\\", \\\"id\\\": \\\"f0aad23d-1fa0-41df-ae6b-010d52e4a8f5\\\", \\\"data_format_version\\\": \\\"0.2.0\\\", \\\"measurement_start_time\\\": \\\"2019-11-09 10:37:49\\\", \\\"options\\\": [], \\\"test_version\\\": \\\"0.1.0\\\", \\\"input_hashes\\\": [], \\\"input\\\": null, \\\"probe_city\\\": null, \\\"report_id\\\": \\\"20191109T103749Z_AS15802_pZVgEw2WzmXRnDfw1sGN9tTnIO8iKiQHNWZW7XzPZqsEWsbkAu\\\", \\\"probe_asn\\\": \\\"AS15802\\\", \\\"annotations\\\": {\\\"platform\\\": \\\"ios\\\", \\\"engine_version_full\\\": \\\"v0.10.6\\\", \\\"network_type\\\": \\\"wifi\\\", \\\"engine_version\\\": \\\"0.10.6\\\", \\\"engine_name\\\": \\\"libmeasurement_kit\\\"}, \\\"test_helpers\\\": {}, \\\"probe_cc\\\": \\\"AE\\\", \\\"measurement_uid\\\": \\\"01201911098a2eebcc7e2987c051a332b7769a57\\\"}\\n\",\"category_code\":\"\",\"verification_status\":\"unverified\"}" +} \ No newline at end of file diff --git a/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-012019111898e81f78c44cf8689fa32f5d1cb664_full-true.json b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-012019111898e81f78c44cf8689fa32f5d1cb664_full-true.json new file mode 100644 index 000000000..234e61952 --- /dev/null +++ b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-012019111898e81f78c44cf8689fa32f5d1cb664_full-true.json @@ -0,0 +1,5 @@ +{ + "status": 200, + "contentType": "application/json", + "body": "{\"input\":\"http://thepiratebay.org/\",\"measurement_start_time\":\"2019-11-18T06:36:21Z\",\"measurement_uid\":\"012019111898e81f78c44cf8689fa32f5d1cb664\",\"report_id\":\"20191118T063541Z_AS15802_ocKS0RbSg8GE1oLahQKYeAozvsxM3HglG8f3xMRkrWVOd4ajtN\",\"test_name\":\"web_connectivity\",\"test_start_time\":\"2019-11-18T06:35:38Z\",\"probe_asn\":15802,\"probe_cc\":\"AE\",\"scores\":\"{\\\"blocking_general\\\":0.0,\\\"blocking_global\\\":0.0,\\\"blocking_country\\\":0.0,\\\"blocking_isp\\\":0.0,\\\"blocking_local\\\":0.0}\",\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"raw_measurement\":\"{\\\"software_name\\\": \\\"ooniprobe-ios\\\", \\\"software_version\\\": \\\"2.2.0\\\", \\\"test_runtime\\\": 1.3827338218688965, \\\"test_start_time\\\": \\\"2019-11-18 06:35:38\\\", \\\"test_name\\\": \\\"web_connectivity\\\", \\\"test_keys\\\": {\\\"accessible\\\": null, \\\"control\\\": {}, \\\"control_failure\\\": \\\"json_parse_error\\\", \\\"retries\\\": null, \\\"http_experiment_failure\\\": \\\"connection_reset\\\", \\\"socksproxy\\\": null, \\\"agent\\\": \\\"redirect\\\", \\\"headers_match\\\": null, \\\"client_resolver\\\": \\\"91.73.133.34\\\", \\\"tcp_connect\\\": [{\\\"status\\\": {\\\"failure\\\": null, \\\"success\\\": true, \\\"blocked\\\": false}, \\\"ip\\\": \\\"162.159.138.79\\\", \\\"port\\\": 80}, {\\\"status\\\": {\\\"failure\\\": null, \\\"success\\\": true, \\\"blocked\\\": false}, \\\"ip\\\": \\\"162.159.137.79\\\", \\\"port\\\": 80}], \\\"dns_consistency\\\": null, \\\"dns_experiment_failure\\\": null, \\\"body_proportion\\\": 0.0, \\\"queries\\\": [{\\\"engine\\\": \\\"system\\\", \\\"resolver_hostname\\\": null, \\\"query_type\\\": \\\"A\\\", \\\"hostname\\\": \\\"thepiratebay.org\\\", \\\"answers\\\": [{\\\"hostname\\\": \\\"thepiratebay.org\\\", \\\"answer_type\\\": \\\"CNAME\\\", \\\"ttl\\\": null}, {\\\"ipv4\\\": \\\"162.159.137.79\\\", \\\"answer_type\\\": \\\"A\\\", \\\"ttl\\\": null}, {\\\"hostname\\\": \\\"thepiratebay.org\\\", \\\"answer_type\\\": \\\"CNAME\\\", \\\"ttl\\\": null}, {\\\"ipv4\\\": \\\"162.159.138.79\\\", \\\"answer_type\\\": \\\"A\\\", \\\"ttl\\\": null}], \\\"failure\\\": null, \\\"resolver_port\\\": null}], \\\"body_length_match\\\": null, \\\"requests\\\": [{\\\"failure\\\": \\\"connection_reset\\\", \\\"request\\\": {\\\"body\\\": \\\"\\\", \\\"headers\\\": {\\\"Accept-Language\\\": \\\"en-US;q=0.8,en;q=0.5\\\", \\\"Accept\\\": \\\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\\\", \\\"User-Agent\\\": \\\"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36\\\"}, \\\"url\\\": \\\"https://thepiratebay.org/\\\", \\\"method\\\": \\\"GET\\\", \\\"tor\\\": {\\\"is_tor\\\": false, \\\"exit_name\\\": null, \\\"exit_ip\\\": null}}, \\\"response\\\": {\\\"body\\\": null, \\\"headers\\\": {}}}], \\\"title_match\\\": null, \\\"blocking\\\": null, \\\"status_code_match\\\": null}, \\\"probe_ip\\\": \\\"127.0.0.1\\\", \\\"id\\\": \\\"9d3096df-f311-4695-972c-c54abb467f5d\\\", \\\"data_format_version\\\": \\\"0.2.0\\\", \\\"measurement_start_time\\\": \\\"2019-11-18 06:36:21\\\", \\\"options\\\": [], \\\"test_version\\\": \\\"0.0.1\\\", \\\"input_hashes\\\": [], \\\"input\\\": \\\"http://thepiratebay.org/\\\", \\\"probe_city\\\": null, \\\"report_id\\\": \\\"20191118T063541Z_AS15802_ocKS0RbSg8GE1oLahQKYeAozvsxM3HglG8f3xMRkrWVOd4ajtN\\\", \\\"probe_asn\\\": \\\"AS15802\\\", \\\"annotations\\\": {\\\"platform\\\": \\\"ios\\\", \\\"engine_version_full\\\": \\\"v0.10.6\\\", \\\"network_type\\\": \\\"wifi\\\", \\\"engine_version\\\": \\\"0.10.6\\\", \\\"engine_name\\\": \\\"libmeasurement_kit\\\"}, \\\"test_helpers\\\": {\\\"backend\\\": {\\\"type\\\": \\\"https\\\", \\\"address\\\": \\\"https://wcth.ooni.io\\\"}}, \\\"probe_cc\\\": \\\"AE\\\", \\\"measurement_uid\\\": \\\"012019111898e81f78c44cf8689fa32f5d1cb664\\\"}\\n\",\"category_code\":\"\",\"verification_status\":\"unverified\"}" +} \ No newline at end of file diff --git a/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-01202003026e2b60ffaa8e1b2bc7865d0bc26659_full-true.json b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-01202003026e2b60ffaa8e1b2bc7865d0bc26659_full-true.json new file mode 100644 index 000000000..bc31cc1b4 --- /dev/null +++ b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-01202003026e2b60ffaa8e1b2bc7865d0bc26659_full-true.json @@ -0,0 +1,5 @@ +{ + "status": 200, + "contentType": "application/json", + "body": "{\"input\":\"http://prachatai.com\",\"measurement_start_time\":\"2020-03-02T20:17:40Z\",\"measurement_uid\":\"01202003026e2b60ffaa8e1b2bc7865d0bc26659\",\"report_id\":\"20200302T211741Z_AS15751_NUQUoAz71ZjhsimkNDy53r62AlfjEWUtoQRag9tnRM0oxZtoWl\",\"test_name\":\"web_connectivity\",\"test_start_time\":\"2020-03-02T20:17:39Z\",\"probe_asn\":15751,\"probe_cc\":\"IE\",\"scores\":\"{\\\"blocking_general\\\":0.0,\\\"blocking_global\\\":0.0,\\\"blocking_country\\\":0.0,\\\"blocking_isp\\\":0.0,\\\"blocking_local\\\":0.0}\",\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"raw_measurement\":\"{\\\"software_name\\\": \\\"ooniprobe-android\\\", \\\"software_version\\\": \\\"2.2.0\\\", \\\"test_runtime\\\": 1.4817099571228027, \\\"test_start_time\\\": \\\"2020-03-02 21:17:39\\\", \\\"test_name\\\": \\\"web_connectivity\\\", \\\"test_keys\\\": {\\\"accessible\\\": true, \\\"control\\\": {\\\"tcp_connect\\\": {\\\"104.28.28.116:80\\\": {\\\"status\\\": true, \\\"failure\\\": null}, \\\"104.28.29.116:80\\\": {\\\"status\\\": true, \\\"failure\\\": null}}, \\\"http_request\\\": {\\\"body_length\\\": 130464, \\\"failure\\\": null, \\\"title\\\": \\\" Prachatai.com |\\\", \\\"status_code\\\": 200, \\\"headers\\\": {\\\"Expect-CT\\\": \\\"max-age=604800, report-uri=\\\\\\\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\\\\\\\"\\\", \\\"X-Drupal-Cache\\\": \\\"HIT\\\", \\\"Content-Language\\\": \\\"th\\\", \\\"Set-Cookie\\\": \\\"__cfduid=dbccc243031cde7d0c6f3bf9bd5f275d81583183862; expires=Wed, 01-Apr-20 21:17:42 GMT; path=/; domain=.prachatai.com; HttpOnly; SameSite=Lax; Secure\\\", \\\"CF-Cache-Status\\\": \\\"DYNAMIC\\\", \\\"Expires\\\": \\\"Sun, 19 Nov 1978 05:00:00 GMT\\\", \\\"Vary\\\": \\\"Cookie,Accept-Encoding\\\", \\\"Server\\\": \\\"cloudflare\\\", \\\"Last-Modified\\\": \\\"Mon, 02 Mar 2020 20:44:49 GMT\\\", \\\"Link\\\": \\\"; rel=\\\\\\\"canonical\\\\\\\",; rel=\\\\\\\"shortlink\\\\\\\",; rel=\\\\\\\"shortcut icon\\\\\\\"\\\", \\\"Cache-Control\\\": \\\"public, max-age=300\\\", \\\"Date\\\": \\\"Mon, 02 Mar 2020 21:17:43 GMT\\\", \\\"CF-RAY\\\": \\\"56de25676861c761-AMS\\\", \\\"Content-Type\\\": \\\"text/html; charset=utf-8\\\", \\\"X-Frame-Options\\\": \\\"SAMEORIGIN\\\", \\\"X-Generator\\\": \\\"Drupal 7 (https://www.drupal.org)\\\"}}, \\\"dns\\\": {\\\"failure\\\": null, \\\"addrs\\\": [\\\"104.28.29.116\\\", \\\"104.28.28.116\\\"]}}, \\\"control_failure\\\": null, \\\"retries\\\": null, \\\"http_experiment_failure\\\": null, \\\"socksproxy\\\": null, \\\"agent\\\": \\\"redirect\\\", \\\"headers_match\\\": true, \\\"client_resolver\\\": \\\"127.0.0.1\\\", \\\"tcp_connect\\\": [{\\\"status\\\": {\\\"failure\\\": null, \\\"success\\\": true, \\\"blocked\\\": false}, \\\"ip\\\": \\\"104.28.29.116\\\", \\\"port\\\": 80}, {\\\"status\\\": {\\\"failure\\\": null, \\\"success\\\": true, \\\"blocked\\\": false}, \\\"ip\\\": \\\"104.28.28.116\\\", \\\"port\\\": 80}], \\\"dns_consistency\\\": \\\"consistent\\\", \\\"dns_experiment_failure\\\": null, \\\"body_proportion\\\": 1.0, \\\"queries\\\": [{\\\"engine\\\": \\\"system\\\", \\\"resolver_hostname\\\": null, \\\"query_type\\\": \\\"A\\\", \\\"hostname\\\": \\\"prachatai.com\\\", \\\"answers\\\": [{\\\"hostname\\\": \\\"prachatai.com\\\", \\\"answer_type\\\": \\\"CNAME\\\", \\\"ttl\\\": null}, {\\\"ipv4\\\": \\\"104.28.29.116\\\", \\\"answer_type\\\": \\\"A\\\", \\\"ttl\\\": null}, {\\\"ipv4\\\": \\\"104.28.28.116\\\", \\\"answer_type\\\": \\\"A\\\", \\\"ttl\\\": null}], \\\"failure\\\": null, \\\"resolver_port\\\": null}], \\\"body_length_match\\\": true, \\\"requests\\\": [{\\\"failure\\\": null, \\\"request\\\": {\\\"body\\\": \\\"\\\", \\\"headers\\\": {\\\"Accept-Language\\\": \\\"en-US;q=0.8,en;q=0.5\\\", \\\"Accept\\\": \\\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\\\", \\\"User-Agent\\\": \\\"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36\\\"}, \\\"url\\\": \\\"https://prachatai.com/\\\", \\\"method\\\": \\\"GET\\\", \\\"tor\\\": {\\\"is_tor\\\": false, \\\"exit_name\\\": null, \\\"exit_ip\\\": null}}, \\\"response\\\": {\\\"body\\\": \\\"\\\\n\\\\n\\\\n \\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n \\\\u0e1b\\\\u0e23\\\\u0e30\\\\u0e0a\\\\u0e32\\\\u0e44\\\\u0e17 Prachatai.com | \\\\n \\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n \\\\n\\\\n\\\\n\\\\n\\\\n\\\\r\\\\n\\\\n\\\\n\\\\r\\\\n\\\\r\\\\n\\\\n \\\\n\\\\n\\\\n \\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n \\\\n
\\\\n \\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n \\\\n
\\\\n
\\\\n \\\\n \\\\n \\\\n
\\\\n
\\\\n \\\\n
\\\\u0e2d\\\\u0e31\\\\u0e1e\\\\u0e40\\\\u0e14\\\\u0e17\\\\u0e25\\\\u0e48\\\\u0e32\\\\u0e2a\\\\u0e38\\\\u0e14\\\\u0e40\\\\u0e21\\\\u0e37\\\\u0e48\\\\u0e2d 02:53 \\\\u0e19.
\\\\n
\\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n
\\\\n
\\\\n
\\\\n
\\\\n \\\\n
\\\\n
\\\\n\\\\n\\\\n\\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n \\\\n
\\\\n
\\\\n \\\\n \\\\n \\\\n
\\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n
\\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n
\\\\n
\\\\n
\\\\n
\\\\n \\\\n
\\\\n
\\\\n \\\\n \\\\n \\\\n
\\\\n \\\\n
\\\\n \\\\n
\\\\n \\\\n\\\\n\\\\n\\\\n\\\\n
\\\\n
\\\\n
\\\\n
\\\\n \\\\n\\\\n\\\\n\\\\n\\\\n
\\\\n
\\\\n
\\\\n
\\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n

\\\\u00bb \\\\u0e1a\\\\u0e17\\\\u0e04\\\\u0e27\\\\u0e32\\\\u0e21

\\\\n \\\\n
\\\\n
\\\\n \\\\n \\\\n \\\\n
\\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n
\\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n
\\\\n
\\\\n
\\\\n
\\\\n

\\\\u00bb \\\\u0e1a\\\\u0e25\\\\u0e47\\\\u0e2d\\\\u0e01\\\\u0e01\\\\u0e32\\\\u0e0b\\\\u0e35\\\\u0e19

\\\\n \\\\n
\\\\n
\\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n
\\\\n
\\\\n
\\\\n
\\\\n \\\\n
\\\\n

\\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n

\\\\u00bb \\\\u0e02\\\\u0e48\\\\u0e32\\\\u0e27

\\\\n \\\\n
\\\\n
\\\\n \\\\n \\\\n \\\\n
\\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n
\\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n

\\\\u00bb \\\\u0e41\\\\u0e01\\\\u0e49\\\\u0e23\\\\u0e31\\\\u0e10\\\\u0e18\\\\u0e23\\\\u0e23\\\\u0e21\\\\u0e19\\\\u0e39\\\\u0e0d

\\\\n \\\\n
\\\\n
\\\\n \\\\n \\\\n \\\\n
\\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n
\\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n
\\\\n
\\\\n
\\\\n
\\\\n

\\\\u00bb \\\\u0e02\\\\u0e48\\\\u0e32\\\\u0e27\\\\u0e40\\\\u0e0a\\\\u0e34\\\\u0e07\\\\u0e25\\\\u0e36\\\\u0e01

\\\\n \\\\n
\\\\n
\\\\n \\\\n \\\\n \\\\n
\\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n
\\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n
\\\\n
\\\\n
\\\\n
\\\\n

\\\\u00bb \\\\u0e21\\\\u0e31\\\\u0e25\\\\u0e15\\\\u0e34\\\\u0e21\\\\u0e35\\\\u0e40\\\\u0e14\\\\u0e35\\\\u0e22

\\\\n \\\\n
\\\\n
\\\\n \\\\n \\\\n \\\\n
\\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n
\\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n

Quote of the Day

\\\\n \\\\n
\\\\n
\\\\n \\\\n \\\\n \\\\n
\\\\n
\\\\n \\\\n

\\\\u201c\\\\u0e04\\\\u0e27\\\\u0e32\\\\u0e21\\\\u0e2d\\\\u0e22\\\\u0e38\\\\u0e15\\\\u0e34\\\\u0e18\\\\u0e23\\\\u0e23\\\\u0e21\\\\u0e19\\\\u0e35\\\\u0e49\\\\u0e15\\\\u0e49\\\\u0e2d\\\\u0e07\\\\u0e08\\\\u0e1a\\\\u0e25\\\\u0e07 \\\\u0e19\\\\u0e35\\\\u0e48\\\\u0e04\\\\u0e37\\\\u0e2d\\\\u0e21\\\\u0e19\\\\u0e38\\\\u0e29\\\\u0e22\\\\u0e4c \\\\u0e19\\\\u0e35\\\\u0e48\\\\u0e04\\\\u0e37\\\\u0e2d\\\\u0e19\\\\u0e31\\\\u0e01\\\\u0e1f\\\\u0e38\\\\u0e15\\\\u0e1a\\\\u0e2d\\\\u0e25 \\\\u0e41\\\\u0e25\\\\u0e30\\\\u0e2a\\\\u0e33\\\\u0e2b\\\\u0e23\\\\u0e31\\\\u0e1a\\\\u0e0a\\\\u0e32\\\\u0e27\\\\u0e44\\\\u0e17\\\\u0e22\\\\u0e17\\\\u0e35\\\\u0e48\\\\u0e23\\\\u0e31\\\\u0e01\\\\u0e43\\\\u0e19\\\\u0e1f\\\\u0e38\\\\u0e15\\\\u0e1a\\\\u0e2d\\\\u0e25 \\\\u0e04\\\\u0e38\\\\u0e13\\\\u0e15\\\\u0e49\\\\u0e2d\\\\u0e07\\\\u0e2a\\\\u0e19\\\\u0e31\\\\u0e1a\\\\u0e2a\\\\u0e19\\\\u0e38\\\\u0e19\\\\u0e1c\\\\u0e39\\\\u0e49\\\\u0e40\\\\u0e25\\\\u0e48\\\\u0e19\\\\u0e04\\\\u0e19\\\\u0e19\\\\u0e35\\\\u0e49 \\\\u0e40\\\\u0e14\\\\u0e35\\\\u0e4b\\\\u0e22\\\\u0e27\\\\u0e19\\\\u0e35\\\\u0e49 \\\\u0e04\\\\u0e38\\\\u0e13\\\\u0e44\\\\u0e21\\\\u0e48\\\\u0e2a\\\\u0e32\\\\u0e21\\\\u0e32\\\\u0e23\\\\u0e16\\\\u0e1a\\\\u0e2d\\\\u0e01\\\\u0e27\\\\u0e48\\\\u0e32\\\\u0e04\\\\u0e38\\\\u0e13\\\\u0e40\\\\u0e1b\\\\u0e47\\\\u0e19\\\\u0e04\\\\u0e2d\\\\u0e1a\\\\u0e2d\\\\u0e25 \\\\u0e04\\\\u0e38\\\\u0e13\\\\u0e44\\\\u0e21\\\\u0e48\\\\u0e2a\\\\u0e32\\\\u0e21\\\\u0e32\\\\u0e23\\\\u0e16\\\\u0e1a\\\\u0e2d\\\\u0e01\\\\u0e27\\\\u0e48\\\\u0e32\\\\u0e04\\\\u0e38\\\\u0e13\\\\u0e23\\\\u0e31\\\\u0e01\\\\u0e43\\\\u0e19\\\\u0e40\\\\u0e01\\\\u0e21\\\\u0e1f\\\\u0e38\\\\u0e15\\\\u0e1a\\\\u0e2d\\\\u0e25\\\\u0e2b\\\\u0e32\\\\u0e01\\\\u0e40\\\\u0e23\\\\u0e32\\\\u0e22\\\\u0e31\\\\u0e07\\\\u0e44\\\\u0e21\\\\u0e48\\\\u0e22\\\\u0e37\\\\u0e19\\\\u0e2b\\\\u0e22\\\\u0e31\\\\u0e14\\\\u0e40\\\\u0e1e\\\\u0e37\\\\u0e48\\\\u0e2d\\\\u0e1b\\\\u0e01\\\\u0e1b\\\\u0e49\\\\u0e2d\\\\u0e07\\\\u0e19\\\\u0e31\\\\u0e01\\\\u0e1f\\\\u0e38\\\\u0e15\\\\u0e1a\\\\u0e2d\\\\u0e25\\\\u0e1c\\\\u0e39\\\\u0e49\\\\u0e1a\\\\u0e23\\\\u0e34\\\\u0e2a\\\\u0e38\\\\u0e17\\\\u0e18\\\\u0e34\\\\u0e4c \\\\u0e08\\\\u0e34\\\\u0e15\\\\u0e27\\\\u0e34\\\\u0e0d\\\\u0e0d\\\\u0e32\\\\u0e13\\\\u0e02\\\\u0e2d\\\\u0e07\\\\u0e01\\\\u0e35\\\\u0e2c\\\\u0e32\\\\u0e1f\\\\u0e38\\\\u0e15\\\\u0e1a\\\\u0e2d\\\\u0e25\\\\u0e01\\\\u0e33\\\\u0e25\\\\u0e31\\\\u0e07\\\\u0e16\\\\u0e39\\\\u0e01\\\\u0e41\\\\u0e02\\\\u0e27\\\\u0e19\\\\u0e2d\\\\u0e22\\\\u0e39\\\\u0e48\\\\u0e1a\\\\u0e19\\\\u0e40\\\\u0e2a\\\\u0e49\\\\u0e19\\\\u0e14\\\\u0e49\\\\u0e32\\\\u0e22\\\\u0e43\\\\u0e19\\\\u0e01\\\\u0e23\\\\u0e13\\\\u0e35\\\\u0e19\\\\u0e35\\\\u0e49\\\\u201d

\\\\n
\\\\n
\\\\\\\"\\\\\\\"
\\\\n \\\\n
\\\\u0e40\\\\u0e04\\\\u0e23\\\\u0e47\\\\u0e01 \\\\u0e1f\\\\u0e2d\\\\u0e2a\\\\u0e40\\\\u0e15\\\\u0e2d\\\\u0e23\\\\u0e4c \\\\u0e2d\\\\u0e14\\\\u0e35\\\\u0e15\\\\u0e01\\\\u0e31\\\\u0e1b\\\\u0e15\\\\u0e31\\\\u0e19\\\\u0e17\\\\u0e35\\\\u0e21\\\\u0e1f\\\\u0e38\\\\u0e15\\\\u0e1a\\\\u0e2d\\\\u0e25\\\\u0e17\\\\u0e35\\\\u0e21\\\\u0e0a\\\\u0e32\\\\u0e15\\\\u0e34\\\\u0e2d\\\\u0e2d\\\\u0e2a\\\\u0e40\\\\u0e15\\\\u0e23\\\\u0e40\\\\u0e25\\\\u0e35\\\\u0e22 \\\\u0e19\\\\u0e31\\\\u0e01\\\\u0e01\\\\u0e34\\\\u0e08\\\\u0e01\\\\u0e23\\\\u0e23\\\\u0e21\\\\u0e14\\\\u0e49\\\\u0e32\\\\u0e19\\\\u0e2a\\\\u0e34\\\\u0e17\\\\u0e18\\\\u0e34\\\\u0e21\\\\u0e19\\\\u0e38\\\\u0e29\\\\u0e22\\\\u0e0a\\\\u0e19 \\\\u0e41\\\\u0e16\\\\u0e25\\\\u0e07\\\\u0e02\\\\u0e48\\\\u0e32\\\\u0e27\\\\u0e40\\\\u0e21\\\\u0e37\\\\u0e48\\\\u0e2d 25 \\\\u0e21.\\\\u0e04. 62 \\\\u0e01\\\\u0e23\\\\u0e13\\\\u0e35\\\\u0e44\\\\u0e17\\\\u0e22\\\\u0e04\\\\u0e38\\\\u0e21\\\\u0e02\\\\u0e31\\\\u0e07\\\\u0e2e\\\\u0e32\\\\u0e04\\\\u0e35\\\\u0e21 \\\\u0e2d\\\\u0e31\\\\u0e25 \\\\u0e2d\\\\u0e32\\\\u0e44\\\\u0e23\\\\u0e1a\\\\u0e35 \\\\u0e2d\\\\u0e14\\\\u0e35\\\\u0e15\\\\u0e19\\\\u0e31\\\\u0e01\\\\u0e1f\\\\u0e38\\\\u0e15\\\\u0e1a\\\\u0e2d\\\\u0e25\\\\u0e17\\\\u0e35\\\\u0e21\\\\u0e0a\\\\u0e32\\\\u0e15\\\\u0e34\\\\u0e1a\\\\u0e32\\\\u0e2b\\\\u0e4c\\\\u0e40\\\\u0e23\\\\u0e19\\\\u0e02\\\\u0e13\\\\u0e30\\\\u0e40\\\\u0e14\\\\u0e34\\\\u0e19\\\\u0e17\\\\u0e32\\\\u0e07\\\\u0e21\\\\u0e32\\\\u0e40\\\\u0e17\\\\u0e35\\\\u0e48\\\\u0e22\\\\u0e27\\\\u0e01\\\\u0e31\\\\u0e1a\\\\u0e20\\\\u0e23\\\\u0e23\\\\u0e22\\\\u0e32\\\\u0e17\\\\u0e35\\\\u0e48\\\\u0e1b\\\\u0e23\\\\u0e30\\\\u0e40\\\\u0e17\\\\u0e28\\\\u0e44\\\\u0e17\\\\u0e22
\\\\n
https://prachatai.com/journal/2019/01/80713
\\\\n
\\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n
\\\\n
\\\\n
\\\\n \\\\n
\\\\n \\\\n
\\\\n
\\\\n

ThisAble

\\\\n \\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n

\\\\u0e1b\\\\u0e23\\\\u0e30\\\\u0e0a\\\\u0e32\\\\u0e2a\\\\u0e31\\\\u0e21\\\\u0e1e\\\\u0e31\\\\u0e19\\\\u0e18\\\\u0e4c Classifieds

\\\\n \\\\n
\\\\n
\\\\n \\\\n \\\\n \\\\n
\\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n
\\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n
\\\\n
\\\\n
\\\\n
\\\\n

\\\\u0e1b\\\\u0e0f\\\\u0e34\\\\u0e17\\\\u0e34\\\\u0e19\\\\u0e01\\\\u0e34\\\\u0e08\\\\u0e01\\\\u0e23\\\\u0e23\\\\u0e21

\\\\n \\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n

March 2020

\\\\n
\\\\n \\\\n
\\\\n
\\\\n
\\\\n \\\\n \\\\n \\\\n
\\\\n
\\\\n\\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n \\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n \\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n \\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n \\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n \\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n \\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n \\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n \\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n \\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n \\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n \\\\n
\\\\n Sun \\\\n Mon \\\\n Tue \\\\n Wed \\\\n Thu \\\\n Fri \\\\n Sat
\\\\n
\\\\n
1
\\\\n
\\\\n
\\\\n
2
\\\\n
\\\\n
\\\\n
3
\\\\n
\\\\n
\\\\n
4
\\\\n
\\\\n
\\\\n
5
\\\\n
\\\\n
\\\\n
6
\\\\n
\\\\n
\\\\n
7
\\\\n
\\\\n \\\\n\\\\n
\\\\n  
\\\\n
\\\\n \\\\n\\\\n \\\\n\\\\n
\\\\n  
\\\\n
\\\\n
\\\\n  
\\\\n
\\\\n
\\\\n  
\\\\n
\\\\n
\\\\n
8
\\\\n
\\\\n
\\\\n
9
\\\\n
\\\\n
\\\\n
10
\\\\n
\\\\n
\\\\n
11
\\\\n
\\\\n
\\\\n
12
\\\\n
\\\\n
\\\\n
13
\\\\n
\\\\n
\\\\n
14
\\\\n
\\\\n
\\\\n  
\\\\n
\\\\n \\\\n\\\\n
\\\\n  
\\\\n
\\\\n
\\\\n  
\\\\n
\\\\n
\\\\n  
\\\\n
\\\\n
\\\\n  
\\\\n
\\\\n
\\\\n  
\\\\n
\\\\n
\\\\n
15
\\\\n
\\\\n
\\\\n
16
\\\\n
\\\\n
\\\\n
17
\\\\n
\\\\n
\\\\n
18
\\\\n
\\\\n
\\\\n
19
\\\\n
\\\\n
\\\\n
20
\\\\n
\\\\n
\\\\n
21
\\\\n
\\\\n
\\\\n  
\\\\n
\\\\n
\\\\n  
\\\\n
\\\\n
\\\\n  
\\\\n
\\\\n
\\\\n  
\\\\n
\\\\n
\\\\n  
\\\\n
\\\\n \\\\n\\\\n
\\\\n  
\\\\n
\\\\n
\\\\n
22
\\\\n
\\\\n
\\\\n
23
\\\\n
\\\\n
\\\\n
24
\\\\n
\\\\n
\\\\n
25
\\\\n
\\\\n
\\\\n
26
\\\\n
\\\\n
\\\\n
27
\\\\n
\\\\n
\\\\n
28
\\\\n
\\\\n
\\\\n  
\\\\n
\\\\n
\\\\n  
\\\\n
\\\\n
\\\\n  
\\\\n
\\\\n
\\\\n  
\\\\n
\\\\n
\\\\n  
\\\\n
\\\\n
\\\\n  
\\\\n
\\\\n
\\\\n  
\\\\n
\\\\n
\\\\n
29
\\\\n
\\\\n
\\\\n
30
\\\\n
\\\\n
\\\\n
31
\\\\n
\\\\n
\\\\n
1
\\\\n
\\\\n
\\\\n
2
\\\\n
\\\\n
\\\\n
3
\\\\n
\\\\n
\\\\n
4
\\\\n
\\\\n
\\\\n  
\\\\n
\\\\n
\\\\n  
\\\\n
\\\\n
\\\\n  
\\\\n
\\\\n
\\\\n
 
\\\\n
\\\\n
\\\\n
\\\\n
 
\\\\n
\\\\n
\\\\n
\\\\n
 
\\\\n
\\\\n
\\\\n
\\\\n
 
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n \\\\n \\\\n \\\\n \\\\n
\\\\n

\\\\u0e15\\\\u0e49\\\\u0e2d\\\\u0e07\\\\u0e01\\\\u0e32\\\\u0e23\\\\u0e40\\\\u0e1c\\\\u0e22\\\\u0e41\\\\u0e1e\\\\u0e23\\\\u0e48\\\\u0e02\\\\u0e49\\\\u0e2d\\\\u0e21\\\\u0e39\\\\u0e25\\\\u0e1b\\\\u0e0f\\\\u0e34\\\\u0e17\\\\u0e34\\\\u0e19\\\\u0e01\\\\u0e34\\\\u0e08\\\\u0e01\\\\u0e23\\\\u0e23\\\\u0e21\\\\u0e43\\\\u0e19\\\\u0e40\\\\u0e27\\\\u0e47\\\\u0e1a\\\\u0e44\\\\u0e0b\\\\u0e15\\\\u0e4c\\\\u0e1b\\\\u0e23\\\\u0e30\\\\u0e0a\\\\u0e32\\\\u0e44\\\\u0e17
\\\\u0e2a\\\\u0e48\\\\u0e07\\\\u0e40\\\\u0e02\\\\u0e49\\\\u0e32\\\\u0e2d\\\\u0e35\\\\u0e40\\\\u0e21\\\\u0e25 : activitycalendar@prachatai.com
\\\\u0e17\\\\u0e35\\\\u0e21\\\\u0e07\\\\u0e32\\\\u0e19\\\\u0e02\\\\u0e2d\\\\u0e2a\\\\u0e07\\\\u0e27\\\\u0e19\\\\u0e2a\\\\u0e34\\\\u0e17\\\\u0e18\\\\u0e34\\\\u0e43\\\\u0e19\\\\u0e01\\\\u0e32\\\\u0e23\\\\u0e1e\\\\u0e34\\\\u0e08\\\\u0e32\\\\u0e23\\\\u0e13\\\\u0e32\\\\u0e40\\\\u0e1c\\\\u0e22\\\\u0e41\\\\u0e1e\\\\u0e23\\\\u0e48\\\\u0e02\\\\u0e49\\\\u0e2d\\\\u0e21\\\\u0e39\\\\u0e25\\\\u0e1b\\\\u0e0f\\\\u0e34\\\\u0e17\\\\u0e34\\\\u0e19\\\\u0e01\\\\u0e34\\\\u0e08\\\\u0e01\\\\u0e23\\\\u0e23\\\\u0e21

\\\\n
\\\\n \\\\n \\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n
\\\\n \\\\n
\\\\n
\\\\n \\\\n
\\\\n
\\\\n
\\\\n \\\\n
\\\\n
\\\\n
\\\\n
\\\\n\\\\n\\\", \\\"headers\\\": {\\\"Expect-CT\\\": \\\"max-age=604800, report-uri=\\\\\\\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\\\\\\\"\\\", \\\"X-Drupal-Cache\\\": \\\"HIT\\\", \\\"Content-Language\\\": \\\"th\\\", \\\"Transfer-Encoding\\\": \\\"chunked\\\", \\\"Set-Cookie\\\": \\\"__cfduid=dd553044f9cef5de2294ba626814fde9f1583183862; expires=Wed, 01-Apr-20 21:17:42 GMT; path=/; domain=.prachatai.com; HttpOnly; SameSite=Lax; Secure\\\", \\\"CF-Cache-Status\\\": \\\"DYNAMIC\\\", \\\"Expires\\\": \\\"Sun, 19 Nov 1978 05:00:00 GMT\\\", \\\"Vary\\\": \\\"Cookie,Accept-Encoding\\\", \\\"Server\\\": \\\"cloudflare\\\", \\\"Last-Modified\\\": \\\"Mon, 02 Mar 2020 20:44:49 GMT\\\", \\\"Connection\\\": \\\"keep-alive\\\", \\\"Link\\\": \\\"; rel=\\\\\\\"canonical\\\\\\\",; rel=\\\\\\\"shortlink\\\\\\\",; rel=\\\\\\\"shortcut icon\\\\\\\"\\\", \\\"Cache-Control\\\": \\\"public, max-age=300\\\", \\\"Date\\\": \\\"Mon, 02 Mar 2020 21:17:42 GMT\\\", \\\"CF-RAY\\\": \\\"56de25629abba6b7-DUB\\\", \\\"Content-Type\\\": \\\"text/html; charset=utf-8\\\", \\\"X-Frame-Options\\\": \\\"SAMEORIGIN\\\", \\\"X-Generator\\\": \\\"Drupal 7 (https://www.drupal.org)\\\"}, \\\"response_line\\\": \\\"HTTP/1.1 200 OK\\\", \\\"code\\\": 200}}, {\\\"failure\\\": null, \\\"request\\\": {\\\"body\\\": \\\"\\\", \\\"headers\\\": {\\\"Accept-Language\\\": \\\"en-US;q=0.8,en;q=0.5\\\", \\\"Accept\\\": \\\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\\\", \\\"User-Agent\\\": \\\"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36\\\"}, \\\"url\\\": \\\"http://prachatai.com/\\\", \\\"method\\\": \\\"GET\\\", \\\"tor\\\": {\\\"is_tor\\\": false, \\\"exit_name\\\": null, \\\"exit_ip\\\": null}}, \\\"response\\\": {\\\"body\\\": \\\"\\\", \\\"headers\\\": {\\\"Transfer-Encoding\\\": \\\"chunked\\\", \\\"Expires\\\": \\\"Mon, 02 Mar 2020 22:17:41 GMT\\\", \\\"Server\\\": \\\"cloudflare\\\", \\\"Connection\\\": \\\"keep-alive\\\", \\\"Location\\\": \\\"https://prachatai.com/\\\", \\\"Cache-Control\\\": \\\"max-age=3600\\\", \\\"Date\\\": \\\"Mon, 02 Mar 2020 21:17:41 GMT\\\", \\\"CF-RAY\\\": \\\"56de25612ce2a6bd-DUB\\\"}, \\\"response_line\\\": \\\"HTTP/1.1 301 Moved Permanently\\\", \\\"code\\\": 301}}], \\\"title_match\\\": false, \\\"blocking\\\": false, \\\"status_code_match\\\": true}, \\\"probe_ip\\\": \\\"212.129.75.18\\\", \\\"id\\\": \\\"818481a6-0d56-4981-965f-68a1d6e0ee4b\\\", \\\"data_format_version\\\": \\\"0.2.0\\\", \\\"measurement_start_time\\\": \\\"2020-03-02 21:17:40\\\", \\\"options\\\": [], \\\"test_version\\\": \\\"0.0.1\\\", \\\"input_hashes\\\": [], \\\"input\\\": \\\"http://prachatai.com\\\", \\\"probe_city\\\": null, \\\"report_id\\\": \\\"20200302T211741Z_AS15751_NUQUoAz71ZjhsimkNDy53r62AlfjEWUtoQRag9tnRM0oxZtoWl\\\", \\\"probe_asn\\\": \\\"AS15751\\\", \\\"annotations\\\": {\\\"engine_name\\\": \\\"libmeasurement_kit\\\", \\\"engine_version_full\\\": \\\"v0.10.6\\\", \\\"engine_version\\\": \\\"0.10.6\\\", \\\"platform\\\": \\\"android\\\", \\\"flavor\\\": \\\"full\\\", \\\"network_type\\\": \\\"mobile\\\"}, \\\"test_helpers\\\": {\\\"backend\\\": {\\\"type\\\": \\\"https\\\", \\\"address\\\": \\\"https://wcth.ooni.io\\\"}}, \\\"probe_cc\\\": \\\"IE\\\", \\\"measurement_uid\\\": \\\"01202003026e2b60ffaa8e1b2bc7865d0bc26659\\\"}\\n\",\"category_code\":\"\",\"verification_status\":\"unverified\"}" +} \ No newline at end of file diff --git a/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-01202003039e13e3e38be1918d3a64c2ec27ea22_full-true.json b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-01202003039e13e3e38be1918d3a64c2ec27ea22_full-true.json new file mode 100644 index 000000000..97188c33e --- /dev/null +++ b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-01202003039e13e3e38be1918d3a64c2ec27ea22_full-true.json @@ -0,0 +1,5 @@ +{ + "status": 200, + "contentType": "application/json", + "body": "{\"input\":\"http://rutor.org/\",\"measurement_start_time\":\"2020-03-03T08:15:05Z\",\"measurement_uid\":\"01202003039e13e3e38be1918d3a64c2ec27ea22\",\"report_id\":\"20200303T085244Z_AS42668_UThI3Fdoo0IZ6610604dd0CGkhd7oQV6QLWWzZDVLJ35oGxBO4\",\"test_name\":\"web_connectivity\",\"test_start_time\":\"2020-03-03T07:52:44Z\",\"probe_asn\":42668,\"probe_cc\":\"RU\",\"scores\":\"{\\\"blocking_general\\\":2.0,\\\"blocking_global\\\":0.0,\\\"blocking_country\\\":1.0,\\\"blocking_isp\\\":0.0,\\\"blocking_local\\\":0.0,\\\"confirmed\\\":true,\\\"analysis\\\":{\\\"blocking_type\\\":\\\"http-diff\\\"}}\",\"anomaly\":true,\"confirmed\":true,\"failure\":false,\"raw_measurement\":\"{\\\"test_keys\\\": {\\\"accessible\\\": false, \\\"control\\\": {\\\"tcp_connect\\\": {\\\"5.61.49.61:80\\\": {\\\"status\\\": true, \\\"failure\\\": null}}, \\\"http_request\\\": {\\\"body_length\\\": 4864, \\\"status_code\\\": 200, \\\"title\\\": \\\"RUTOR.ORG \\\", \\\"failure\\\": null, \\\"headers\\\": {\\\"Date\\\": \\\"Tue, 03 Mar 2020 09:15:06 GMT\\\", \\\"Content-Type\\\": \\\"text/html; charset=UTF-8\\\", \\\"Strict-Transport-Security\\\": \\\"max-age=31536000;\\\", \\\"Vary\\\": \\\"Accept-Encoding\\\", \\\"Server\\\": \\\"nginx\\\"}}, \\\"dns\\\": {\\\"failure\\\": null, \\\"addrs\\\": [\\\"5.61.49.61\\\"]}}, \\\"control_failure\\\": null, \\\"socksproxy\\\": null, \\\"headers_match\\\": false, \\\"http_experiment_failure\\\": null, \\\"agent\\\": \\\"redirect\\\", \\\"title_match\\\": null, \\\"client_resolver\\\": \\\"89.223.47.133\\\", \\\"retries\\\": 1, \\\"dns_consistency\\\": \\\"consistent\\\", \\\"dns_experiment_failure\\\": null, \\\"body_proportion\\\": 0.15347721822541965, \\\"queries\\\": [{\\\"resolver_hostname\\\": null, \\\"query_type\\\": \\\"A\\\", \\\"hostname\\\": \\\"rutor.org\\\", \\\"answers\\\": [{\\\"ipv4\\\": \\\"5.61.49.61\\\", \\\"answer_type\\\": \\\"A\\\"}], \\\"failure\\\": null, \\\"resolver_port\\\": null}], \\\"body_length_match\\\": false, \\\"requests\\\": [{\\\"failure\\\": null, \\\"request\\\": {\\\"body\\\": null, \\\"headers\\\": {\\\"Accept-Language\\\": \\\"en-US;q=0.8,en;q=0.5\\\", \\\"Accept\\\": \\\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\\\", \\\"User-Agent\\\": \\\"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36\\\"}, \\\"url\\\": \\\"http://89.223.47.135/index.html\\\", \\\"method\\\": \\\"GET\\\", \\\"tor\\\": {\\\"is_tor\\\": false, \\\"exit_name\\\": null, \\\"exit_ip\\\": null}}, \\\"response\\\": {\\\"body\\\": {\\\"data\\\": \\\"PGh0bWwgeG1sbnM6dj0idXJuOnNjaGVtYXMtbWljcm9zb2Z0LWNvbTp2bWwiDQp4bWxuczpvPSJ1cm46c2NoZW1hcy1taWNyb3NvZnQtY29tOm9mZmljZTpvZmZpY2UiDQp4bWxuczp3PSJ1cm46c2NoZW1hcy1taWNyb3NvZnQtY29tOm9mZmljZTp3b3JkIg0KeG1sbnM6bT0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9vZmZpY2UvMjAwNC8xMi9vbW1sIg0KeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnL1RSL1JFQy1odG1sNDAiPg0KDQo8aGVhZD4NCjxtZXRhIGh0dHAtZXF1aXY9Q29udGVudC1UeXBlIGNvbnRlbnQ9InRleHQvaHRtbDsgY2hhcnNldD13aW5kb3dzLTEyNTEiPg0KPG1ldGEgbmFtZT1Qcm9nSWQgY29udGVudD1Xb3JkLkRvY3VtZW50Pg0KPG1ldGEgbmFtZT1HZW5lcmF0b3IgY29udGVudD0iTWljcm9zb2Z0IFdvcmQgMTIiPg0KPG1ldGEgbmFtZT1PcmlnaW5hdG9yIGNvbnRlbnQ9Ik1pY3Jvc29mdCBXb3JkIDEyIj4NCjxsaW5rIHJlbD1GaWxlLUxpc3QgaHJlZj0iaW5kZXguZmlsZXMvZmlsZWxpc3QueG1sIj4NCjxsaW5rIHJlbD1FZGl0LVRpbWUtRGF0YSBocmVmPSJpbmRleC5maWxlcy9lZGl0ZGF0YS5tc28iPg0KPCEtLVtpZiAhbXNvXT4NCjxzdHlsZT4NCnZcOioge2JlaGF2aW9yOnVybCgjZGVmYXVsdCNWTUwpO30NCm9cOioge2JlaGF2aW9yOnVybCgjZGVmYXVsdCNWTUwpO30NCndcOioge2JlaGF2aW9yOnVybCgjZGVmYXVsdCNWTUwpO30NCi5zaGFwZSB7YmVoYXZpb3I6dXJsKCNkZWZhdWx0I1ZNTCk7fQ0KPC9zdHlsZT4NCjwhW2VuZGlmXS0tPjwhLS1baWYgZ3RlIG1zbyA5XT48eG1sPg0KIDxvOkRvY3VtZW50UHJvcGVydGllcz4NCiAgPG86QXV0aG9yPjE8L286QXV0aG9yPg0KICA8bzpUZW1wbGF0ZT5Ob3JtYWw8L286VGVtcGxhdGU+DQogIDxvOkxhc3RBdXRob3I+MTwvbzpMYXN0QXV0aG9yPg0KICA8bzpSZXZpc2lvbj44PC9vOlJldmlzaW9uPg0KICA8bzpUb3RhbFRpbWU+MjM8L286VG90YWxUaW1lPg0KICA8bzpDcmVhdGVkPjIwMTItMDItMDlUMDc6MDg6MDBaPC9vOkNyZWF0ZWQ+DQogIDxvOkxhc3RTYXZlZD4yMDE1LTA0LTIzVDA3OjUxOjAwWjwvbzpMYXN0U2F2ZWQ+DQogIDxvOlBhZ2VzPjE8L286UGFnZXM+DQogIDxvOldvcmRzPjI3NzwvbzpXb3Jkcz4NCiAgPG86Q2hhcmFjdGVycz4xNTgzPC9vOkNoYXJhY3RlcnM+DQogIDxvOkxpbmVzPjEzPC9vOkxpbmVzPg0KICA8bzpQYXJhZ3JhcGhzPjM8L286UGFyYWdyYXBocz4NCiAgPG86Q2hhcmFjdGVyc1dpdGhTcGFjZXM+MTg1NzwvbzpDaGFyYWN0ZXJzV2l0aFNwYWNlcz4NCiAgPG86VmVyc2lvbj4xMi4wMDwvbzpWZXJzaW9uPg0KIDwvbzpEb2N1bWVudFByb3BlcnRpZXM+DQo8L3htbD48IVtlbmRpZl0tLT4NCjxsaW5rIHJlbD10aGVtZURhdGEgaHJlZj0iaW5kZXguZmlsZXMvdGhlbWVkYXRhLnRobXgiPg0KPGxpbmsgcmVsPWNvbG9yU2NoZW1lTWFwcGluZyBocmVmPSJpbmRleC5maWxlcy9jb2xvcnNjaGVtZW1hcHBpbmcueG1sIj4NCjwhLS1baWYgZ3RlIG1zbyA5XT48eG1sPg0KIDx3OldvcmREb2N1bWVudD4NCiAgPHc6Wm9vbT5CZXN0Rml0PC93Olpvb20+DQogIDx3OlRyYWNrTW92ZXM+ZmFsc2U8L3c6VHJhY2tNb3Zlcz4NCiAgPHc6VHJhY2tGb3JtYXR0aW5nLz4NCiAgPHc6UHVuY3R1YXRpb25LZXJuaW5nLz4NCiAgPHc6VmFsaWRhdGVBZ2FpbnN0U2NoZW1hcy8+DQogIDx3OlNhdmVJZlhNTEludmFsaWQ+ZmFsc2U8L3c6U2F2ZUlmWE1MSW52YWxpZD4NCiAgPHc6SWdub3JlTWl4ZWRDb250ZW50PmZhbHNlPC93Oklnbm9yZU1peGVkQ29udGVudD4NCiAgPHc6QWx3YXlzU2hvd1BsYWNlaG9sZGVyVGV4dD5mYWxzZTwvdzpBbHdheXNTaG93UGxhY2Vob2xkZXJUZXh0Pg0KICA8dzpEb05vdFByb21vdGVRRi8+DQogIDx3OkxpZFRoZW1lT3RoZXI+UlU8L3c6TGlkVGhlbWVPdGhlcj4NCiAgPHc6TGlkVGhlbWVBc2lhbj5YLU5PTkU8L3c6TGlkVGhlbWVBc2lhbj4NCiAgPHc6TGlkVGhlbWVDb21wbGV4U2NyaXB0PlgtTk9ORTwvdzpMaWRUaGVtZUNvbXBsZXhTY3JpcHQ+DQogIDx3OkNvbXBhdGliaWxpdHk+DQogICA8dzpCcmVha1dyYXBwZWRUYWJsZXMvPg0KICAgPHc6U25hcFRvR3JpZEluQ2VsbC8+DQogICA8dzpXcmFwVGV4dFdpdGhQdW5jdC8+DQogICA8dzpVc2VBc2lhbkJyZWFrUnVsZXMvPg0KICAgPHc6RG9udEdyb3dBdXRvZml0Lz4NCiAgIDx3OlNwbGl0UGdCcmVha0FuZFBhcmFNYXJrLz4NCiAgIDx3OkRvbnRWZXJ0QWxpZ25DZWxsV2l0aFNwLz4NCiAgIDx3OkRvbnRCcmVha0NvbnN0cmFpbmVkRm9yY2VkVGFibGVzLz4NCiAgIDx3OkRvbnRWZXJ0QWxpZ25JblR4YngvPg0KICAgPHc6V29yZDExS2VybmluZ1BhaXJzLz4NCiAgIDx3OkNhY2hlZENvbEJhbGFuY2UvPg0KICA8L3c6Q29tcGF0aWJpbGl0eT4NCiAgPHc6QnJvd3NlckxldmVsPk1pY3Jvc29mdEludGVybmV0RXhwbG9yZXI0PC93OkJyb3dzZXJMZXZlbD4NCiAgPG06bWF0aFByPg0KICAgPG06bWF0aEZvbnQgbTp2YWw9IkNhbWJyaWEgTWF0aCIvPg0KICAgPG06YnJrQmluIG06dmFsPSJiZWZvcmUiLz4NCiAgIDxtOmJya0JpblN1YiBtOnZhbD0iLS0iLz4NCiAgIDxtOnNtYWxsRnJhYyBtOnZhbD0ib2ZmIi8+DQogICA8bTpkaXNwRGVmLz4NCiAgIDxtOmxNYXJnaW4gbTp2YWw9IjAiLz4NCiAgIDxtOnJNYXJnaW4gbTp2YWw9IjAiLz4NCiAgIDxtOmRlZkpjIG06dmFsPSJjZW50ZXJHcm91cCIvPg0KICAgPG06d3JhcEluZGVudCBtOnZhbD0iMTQ0MCIvPg0KICAgPG06aW50TGltIG06dmFsPSJzdWJTdXAiLz4NCiAgIDxtOm5hcnlMaW0gbTp2YWw9InVuZE92ciIvPg0KICA8L206bWF0aFByPjwvdzpXb3JkRG9jdW1lbnQ+DQo8L3htbD48IVtlbmRpZl0tLT48IS0tW2lmIGd0ZSBtc28gOV0+PHhtbD4NCiA8dzpMYXRlbnRTdHlsZXMgRGVmTG9ja2VkU3RhdGU9ImZhbHNlIiBEZWZVbmhpZGVXaGVuVXNlZD0idHJ1ZSINCiAgRGVmU2VtaUhpZGRlbj0idHJ1ZSIgRGVmUUZvcm1hdD0iZmFsc2UiIERlZlByaW9yaXR5PSI5OSINCiAgTGF0ZW50U3R5bGVDb3VudD0iMjY3Ij4NCiAgPHc6THNkRXhjZXB0aW9uIExvY2tlZD0iZmFsc2UiIFByaW9yaXR5PSIwIiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgUUZvcm1hdD0idHJ1ZSIgTmFtZT0iTm9ybWFsIi8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iOSIgU2VtaUhpZGRlbj0iZmFsc2UiDQogICBVbmhpZGVXaGVuVXNlZD0iZmFsc2UiIFFGb3JtYXQ9InRydWUiIE5hbWU9ImhlYWRpbmcgMSIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjkiIFFGb3JtYXQ9InRydWUiIE5hbWU9ImhlYWRpbmcgMiIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjkiIFFGb3JtYXQ9InRydWUiIE5hbWU9ImhlYWRpbmcgMyIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjkiIFFGb3JtYXQ9InRydWUiIE5hbWU9ImhlYWRpbmcgNCIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjkiIFFGb3JtYXQ9InRydWUiIE5hbWU9ImhlYWRpbmcgNSIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjkiIFFGb3JtYXQ9InRydWUiIE5hbWU9ImhlYWRpbmcgNiIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjkiIFFGb3JtYXQ9InRydWUiIE5hbWU9ImhlYWRpbmcgNyIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjkiIFFGb3JtYXQ9InRydWUiIE5hbWU9ImhlYWRpbmcgOCIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjkiIFFGb3JtYXQ9InRydWUiIE5hbWU9ImhlYWRpbmcgOSIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjM5IiBOYW1lPSJ0b2MgMSIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjM5IiBOYW1lPSJ0b2MgMiIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjM5IiBOYW1lPSJ0b2MgMyIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjM5IiBOYW1lPSJ0b2MgNCIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjM5IiBOYW1lPSJ0b2MgNSIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjM5IiBOYW1lPSJ0b2MgNiIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjM5IiBOYW1lPSJ0b2MgNyIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjM5IiBOYW1lPSJ0b2MgOCIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjM5IiBOYW1lPSJ0b2MgOSIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjM1IiBRRm9ybWF0PSJ0cnVlIiBOYW1lPSJjYXB0aW9uIi8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iMTAiIFNlbWlIaWRkZW49ImZhbHNlIg0KICAgVW5oaWRlV2hlblVzZWQ9ImZhbHNlIiBRRm9ybWF0PSJ0cnVlIiBOYW1lPSJUaXRsZSIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjEiIE5hbWU9IkRlZmF1bHQgUGFyYWdyYXBoIEZvbnQiLz4NCiAgPHc6THNkRXhjZXB0aW9uIExvY2tlZD0iZmFsc2UiIFByaW9yaXR5PSIxMSIgU2VtaUhpZGRlbj0iZmFsc2UiDQogICBVbmhpZGVXaGVuVXNlZD0iZmFsc2UiIFFGb3JtYXQ9InRydWUiIE5hbWU9IlN1YnRpdGxlIi8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iMjIiIFNlbWlIaWRkZW49ImZhbHNlIg0KICAgVW5oaWRlV2hlblVzZWQ9ImZhbHNlIiBRRm9ybWF0PSJ0cnVlIiBOYW1lPSJTdHJvbmciLz4NCiAgPHc6THNkRXhjZXB0aW9uIExvY2tlZD0iZmFsc2UiIFByaW9yaXR5PSIyMCIgU2VtaUhpZGRlbj0iZmFsc2UiDQogICBVbmhpZGVXaGVuVXNlZD0iZmFsc2UiIFFGb3JtYXQ9InRydWUiIE5hbWU9IkVtcGhhc2lzIi8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iNTkiIFNlbWlIaWRkZW49ImZhbHNlIg0KICAgVW5oaWRlV2hlblVzZWQ9ImZhbHNlIiBOYW1lPSJUYWJsZSBHcmlkIi8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBVbmhpZGVXaGVuVXNlZD0iZmFsc2UiIE5hbWU9IlBsYWNlaG9sZGVyIFRleHQiLz4NCiAgPHc6THNkRXhjZXB0aW9uIExvY2tlZD0iZmFsc2UiIFByaW9yaXR5PSIxIiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgUUZvcm1hdD0idHJ1ZSIgTmFtZT0iTm8gU3BhY2luZyIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjYwIiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgTmFtZT0iTGlnaHQgU2hhZGluZyIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjYxIiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgTmFtZT0iTGlnaHQgTGlzdCIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjYyIiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgTmFtZT0iTGlnaHQgR3JpZCIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjYzIiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgTmFtZT0iTWVkaXVtIFNoYWRpbmcgMSIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjY0IiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgTmFtZT0iTWVkaXVtIFNoYWRpbmcgMiIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjY1IiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgTmFtZT0iTWVkaXVtIExpc3QgMSIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjY2IiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgTmFtZT0iTWVkaXVtIExpc3QgMiIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjY3IiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgTmFtZT0iTWVkaXVtIEdyaWQgMSIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjY4IiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgTmFtZT0iTWVkaXVtIEdyaWQgMiIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjY5IiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgTmFtZT0iTWVkaXVtIEdyaWQgMyIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjcwIiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgTmFtZT0iRGFyayBMaXN0Ii8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iNzEiIFNlbWlIaWRkZW49ImZhbHNlIg0KICAgVW5oaWRlV2hlblVzZWQ9ImZhbHNlIiBOYW1lPSJDb2xvcmZ1bCBTaGFkaW5nIi8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iNzIiIFNlbWlIaWRkZW49ImZhbHNlIg0KICAgVW5oaWRlV2hlblVzZWQ9ImZhbHNlIiBOYW1lPSJDb2xvcmZ1bCBMaXN0Ii8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iNzMiIFNlbWlIaWRkZW49ImZhbHNlIg0KICAgVW5oaWRlV2hlblVzZWQ9ImZhbHNlIiBOYW1lPSJDb2xvcmZ1bCBHcmlkIi8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iNjAiIFNlbWlIaWRkZW49ImZhbHNlIg0KICAgVW5oaWRlV2hlblVzZWQ9ImZhbHNlIiBOYW1lPSJMaWdodCBTaGFkaW5nIEFjY2VudCAxIi8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iNjEiIFNlbWlIaWRkZW49ImZhbHNlIg0KICAgVW5oaWRlV2hlblVzZWQ9ImZhbHNlIiBOYW1lPSJMaWdodCBMaXN0IEFjY2VudCAxIi8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iNjIiIFNlbWlIaWRkZW49ImZhbHNlIg0KICAgVW5oaWRlV2hlblVzZWQ9ImZhbHNlIiBOYW1lPSJMaWdodCBHcmlkIEFjY2VudCAxIi8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iNjMiIFNlbWlIaWRkZW49ImZhbHNlIg0KICAgVW5oaWRlV2hlblVzZWQ9ImZhbHNlIiBOYW1lPSJNZWRpdW0gU2hhZGluZyAxIEFjY2VudCAxIi8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iNjQiIFNlbWlIaWRkZW49ImZhbHNlIg0KICAgVW5oaWRlV2hlblVzZWQ9ImZhbHNlIiBOYW1lPSJNZWRpdW0gU2hhZGluZyAyIEFjY2VudCAxIi8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iNjUiIFNlbWlIaWRkZW49ImZhbHNlIg0KICAgVW5oaWRlV2hlblVzZWQ9ImZhbHNlIiBOYW1lPSJNZWRpdW0gTGlzdCAxIEFjY2VudCAxIi8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBVbmhpZGVXaGVuVXNlZD0iZmFsc2UiIE5hbWU9IlJldmlzaW9uIi8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iMzQiIFNlbWlIaWRkZW49ImZhbHNlIg0KICAgVW5oaWRlV2hlblVzZWQ9ImZhbHNlIiBRRm9ybWF0PSJ0cnVlIiBOYW1lPSJMaXN0IFBhcmFncmFwaCIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjI5IiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgUUZvcm1hdD0idHJ1ZSIgTmFtZT0iUXVvdGUiLz4NCiAgPHc6THNkRXhjZXB0aW9uIExvY2tlZD0iZmFsc2UiIFByaW9yaXR5PSIzMCIgU2VtaUhpZGRlbj0iZmFsc2UiDQogICBVbmhpZGVXaGVuVXNlZD0iZmFsc2UiIFFGb3JtYXQ9InRydWUiIE5hbWU9IkludGVuc2UgUXVvdGUiLz4NCiAgPHc6THNkRXhjZXB0aW9uIExvY2tlZD0iZmFsc2UiIFByaW9yaXR5PSI2NiIgU2VtaUhpZGRlbj0iZmFsc2UiDQogICBVbmhpZGVXaGVuVXNlZD0iZmFsc2UiIE5hbWU9Ik1lZGl1bSBMaXN0IDIgQWNjZW50IDEiLz4NCiAgPHc6THNkRXhjZXB0aW9uIExvY2tlZD0iZmFsc2UiIFByaW9yaXR5PSI2NyIgU2VtaUhpZGRlbj0iZmFsc2UiDQogICBVbmhpZGVXaGVuVXNlZD0iZmFsc2UiIE5hbWU9Ik1lZGl1bSBHcmlkIDEgQWNjZW50IDEiLz4NCiAgPHc6THNkRXhjZXB0aW9uIExvY2tlZD0iZmFsc2UiIFByaW9yaXR5PSI2OCIgU2VtaUhpZGRlbj0iZmFsc2UiDQogICBVbmhpZGVXaGVuVXNlZD0iZmFsc2UiIE5hbWU9Ik1lZGl1bSBHcmlkIDIgQWNjZW50IDEiLz4NCiAgPHc6THNkRXhjZXB0aW9uIExvY2tlZD0iZmFsc2UiIFByaW9yaXR5PSI2OSIgU2VtaUhpZGRlbj0iZmFsc2UiDQogICBVbmhpZGVXaGVuVXNlZD0iZmFsc2UiIE5hbWU9Ik1lZGl1bSBHcmlkIDMgQWNjZW50IDEiLz4NCiAgPHc6THNkRXhjZXB0aW9uIExvY2tlZD0iZmFsc2UiIFByaW9yaXR5PSI3MCIgU2VtaUhpZGRlbj0iZmFsc2UiDQogICBVbmhpZGVXaGVuVXNlZD0iZmFsc2UiIE5hbWU9IkRhcmsgTGlzdCBBY2NlbnQgMSIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjcxIiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgTmFtZT0iQ29sb3JmdWwgU2hhZGluZyBBY2NlbnQgMSIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjcyIiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgTmFtZT0iQ29sb3JmdWwgTGlzdCBBY2NlbnQgMSIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjczIiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgTmFtZT0iQ29sb3JmdWwgR3JpZCBBY2NlbnQgMSIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjYwIiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgTmFtZT0iTGlnaHQgU2hhZGluZyBBY2NlbnQgMiIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjYxIiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgTmFtZT0iTGlnaHQgTGlzdCBBY2NlbnQgMiIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjYyIiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgTmFtZT0iTGlnaHQgR3JpZCBBY2NlbnQgMiIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjYzIiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgTmFtZT0iTWVkaXVtIFNoYWRpbmcgMSBBY2NlbnQgMiIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjY0IiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgTmFtZT0iTWVkaXVtIFNoYWRpbmcgMiBBY2NlbnQgMiIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjY1IiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgTmFtZT0iTWVkaXVtIExpc3QgMSBBY2NlbnQgMiIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjY2IiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgTmFtZT0iTWVkaXVtIExpc3QgMiBBY2NlbnQgMiIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjY3IiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgTmFtZT0iTWVkaXVtIEdyaWQgMSBBY2NlbnQgMiIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjY4IiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgTmFtZT0iTWVkaXVtIEdyaWQgMiBBY2NlbnQgMiIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjY5IiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgTmFtZT0iTWVkaXVtIEdyaWQgMyBBY2NlbnQgMiIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjcwIiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgTmFtZT0iRGFyayBMaXN0IEFjY2VudCAyIi8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iNzEiIFNlbWlIaWRkZW49ImZhbHNlIg0KICAgVW5oaWRlV2hlblVzZWQ9ImZhbHNlIiBOYW1lPSJDb2xvcmZ1bCBTaGFkaW5nIEFjY2VudCAyIi8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iNzIiIFNlbWlIaWRkZW49ImZhbHNlIg0KICAgVW5oaWRlV2hlblVzZWQ9ImZhbHNlIiBOYW1lPSJDb2xvcmZ1bCBMaXN0IEFjY2VudCAyIi8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iNzMiIFNlbWlIaWRkZW49ImZhbHNlIg0KICAgVW5oaWRlV2hlblVzZWQ9ImZhbHNlIiBOYW1lPSJDb2xvcmZ1bCBHcmlkIEFjY2VudCAyIi8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iNjAiIFNlbWlIaWRkZW49ImZhbHNlIg0KICAgVW5oaWRlV2hlblVzZWQ9ImZhbHNlIiBOYW1lPSJMaWdodCBTaGFkaW5nIEFjY2VudCAzIi8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iNjEiIFNlbWlIaWRkZW49ImZhbHNlIg0KICAgVW5oaWRlV2hlblVzZWQ9ImZhbHNlIiBOYW1lPSJMaWdodCBMaXN0IEFjY2VudCAzIi8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iNjIiIFNlbWlIaWRkZW49ImZhbHNlIg0KICAgVW5oaWRlV2hlblVzZWQ9ImZhbHNlIiBOYW1lPSJMaWdodCBHcmlkIEFjY2VudCAzIi8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iNjMiIFNlbWlIaWRkZW49ImZhbHNlIg0KICAgVW5oaWRlV2hlblVzZWQ9ImZhbHNlIiBOYW1lPSJNZWRpdW0gU2hhZGluZyAxIEFjY2VudCAzIi8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iNjQiIFNlbWlIaWRkZW49ImZhbHNlIg0KICAgVW5oaWRlV2hlblVzZWQ9ImZhbHNlIiBOYW1lPSJNZWRpdW0gU2hhZGluZyAyIEFjY2VudCAzIi8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iNjUiIFNlbWlIaWRkZW49ImZhbHNlIg0KICAgVW5oaWRlV2hlblVzZWQ9ImZhbHNlIiBOYW1lPSJNZWRpdW0gTGlzdCAxIEFjY2VudCAzIi8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iNjYiIFNlbWlIaWRkZW49ImZhbHNlIg0KICAgVW5oaWRlV2hlblVzZWQ9ImZhbHNlIiBOYW1lPSJNZWRpdW0gTGlzdCAyIEFjY2VudCAzIi8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iNjciIFNlbWlIaWRkZW49ImZhbHNlIg0KICAgVW5oaWRlV2hlblVzZWQ9ImZhbHNlIiBOYW1lPSJNZWRpdW0gR3JpZCAxIEFjY2VudCAzIi8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iNjgiIFNlbWlIaWRkZW49ImZhbHNlIg0KICAgVW5oaWRlV2hlblVzZWQ9ImZhbHNlIiBOYW1lPSJNZWRpdW0gR3JpZCAyIEFjY2VudCAzIi8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iNjkiIFNlbWlIaWRkZW49ImZhbHNlIg0KICAgVW5oaWRlV2hlblVzZWQ9ImZhbHNlIiBOYW1lPSJNZWRpdW0gR3JpZCAzIEFjY2VudCAzIi8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iNzAiIFNlbWlIaWRkZW49ImZhbHNlIg0KICAgVW5oaWRlV2hlblVzZWQ9ImZhbHNlIiBOYW1lPSJEYXJrIExpc3QgQWNjZW50IDMiLz4NCiAgPHc6THNkRXhjZXB0aW9uIExvY2tlZD0iZmFsc2UiIFByaW9yaXR5PSI3MSIgU2VtaUhpZGRlbj0iZmFsc2UiDQogICBVbmhpZGVXaGVuVXNlZD0iZmFsc2UiIE5hbWU9IkNvbG9yZnVsIFNoYWRpbmcgQWNjZW50IDMiLz4NCiAgPHc6THNkRXhjZXB0aW9uIExvY2tlZD0iZmFsc2UiIFByaW9yaXR5PSI3MiIgU2VtaUhpZGRlbj0iZmFsc2UiDQogICBVbmhpZGVXaGVuVXNlZD0iZmFsc2UiIE5hbWU9IkNvbG9yZnVsIExpc3QgQWNjZW50IDMiLz4NCiAgPHc6THNkRXhjZXB0aW9uIExvY2tlZD0iZmFsc2UiIFByaW9yaXR5PSI3MyIgU2VtaUhpZGRlbj0iZmFsc2UiDQogICBVbmhpZGVXaGVuVXNlZD0iZmFsc2UiIE5hbWU9IkNvbG9yZnVsIEdyaWQgQWNjZW50IDMiLz4NCiAgPHc6THNkRXhjZXB0aW9uIExvY2tlZD0iZmFsc2UiIFByaW9yaXR5PSI2MCIgU2VtaUhpZGRlbj0iZmFsc2UiDQogICBVbmhpZGVXaGVuVXNlZD0iZmFsc2UiIE5hbWU9IkxpZ2h0IFNoYWRpbmcgQWNjZW50IDQiLz4NCiAgPHc6THNkRXhjZXB0aW9uIExvY2tlZD0iZmFsc2UiIFByaW9yaXR5PSI2MSIgU2VtaUhpZGRlbj0iZmFsc2UiDQogICBVbmhpZGVXaGVuVXNlZD0iZmFsc2UiIE5hbWU9IkxpZ2h0IExpc3QgQWNjZW50IDQiLz4NCiAgPHc6THNkRXhjZXB0aW9uIExvY2tlZD0iZmFsc2UiIFByaW9yaXR5PSI2MiIgU2VtaUhpZGRlbj0iZmFsc2UiDQogICBVbmhpZGVXaGVuVXNlZD0iZmFsc2UiIE5hbWU9IkxpZ2h0IEdyaWQgQWNjZW50IDQiLz4NCiAgPHc6THNkRXhjZXB0aW9uIExvY2tlZD0iZmFsc2UiIFByaW9yaXR5PSI2MyIgU2VtaUhpZGRlbj0iZmFsc2UiDQogICBVbmhpZGVXaGVuVXNlZD0iZmFsc2UiIE5hbWU9Ik1lZGl1bSBTaGFkaW5nIDEgQWNjZW50IDQiLz4NCiAgPHc6THNkRXhjZXB0aW9uIExvY2tlZD0iZmFsc2UiIFByaW9yaXR5PSI2NCIgU2VtaUhpZGRlbj0iZmFsc2UiDQogICBVbmhpZGVXaGVuVXNlZD0iZmFsc2UiIE5hbWU9Ik1lZGl1bSBTaGFkaW5nIDIgQWNjZW50IDQiLz4NCiAgPHc6THNkRXhjZXB0aW9uIExvY2tlZD0iZmFsc2UiIFByaW9yaXR5PSI2NSIgU2VtaUhpZGRlbj0iZmFsc2UiDQogICBVbmhpZGVXaGVuVXNlZD0iZmFsc2UiIE5hbWU9Ik1lZGl1bSBMaXN0IDEgQWNjZW50IDQiLz4NCiAgPHc6THNkRXhjZXB0aW9uIExvY2tlZD0iZmFsc2UiIFByaW9yaXR5PSI2NiIgU2VtaUhpZGRlbj0iZmFsc2UiDQogICBVbmhpZGVXaGVuVXNlZD0iZmFsc2UiIE5hbWU9Ik1lZGl1bSBMaXN0IDIgQWNjZW50IDQiLz4NCiAgPHc6THNkRXhjZXB0aW9uIExvY2tlZD0iZmFsc2UiIFByaW9yaXR5PSI2NyIgU2VtaUhpZGRlbj0iZmFsc2UiDQogICBVbmhpZGVXaGVuVXNlZD0iZmFsc2UiIE5hbWU9Ik1lZGl1bSBHcmlkIDEgQWNjZW50IDQiLz4NCiAgPHc6THNkRXhjZXB0aW9uIExvY2tlZD0iZmFsc2UiIFByaW9yaXR5PSI2OCIgU2VtaUhpZGRlbj0iZmFsc2UiDQogICBVbmhpZGVXaGVuVXNlZD0iZmFsc2UiIE5hbWU9Ik1lZGl1bSBHcmlkIDIgQWNjZW50IDQiLz4NCiAgPHc6THNkRXhjZXB0aW9uIExvY2tlZD0iZmFsc2UiIFByaW9yaXR5PSI2OSIgU2VtaUhpZGRlbj0iZmFsc2UiDQogICBVbmhpZGVXaGVuVXNlZD0iZmFsc2UiIE5hbWU9Ik1lZGl1bSBHcmlkIDMgQWNjZW50IDQiLz4NCiAgPHc6THNkRXhjZXB0aW9uIExvY2tlZD0iZmFsc2UiIFByaW9yaXR5PSI3MCIgU2VtaUhpZGRlbj0iZmFsc2UiDQogICBVbmhpZGVXaGVuVXNlZD0iZmFsc2UiIE5hbWU9IkRhcmsgTGlzdCBBY2NlbnQgNCIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjcxIiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgTmFtZT0iQ29sb3JmdWwgU2hhZGluZyBBY2NlbnQgNCIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjcyIiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgTmFtZT0iQ29sb3JmdWwgTGlzdCBBY2NlbnQgNCIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjczIiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgTmFtZT0iQ29sb3JmdWwgR3JpZCBBY2NlbnQgNCIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjYwIiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgTmFtZT0iTGlnaHQgU2hhZGluZyBBY2NlbnQgNSIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjYxIiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgTmFtZT0iTGlnaHQgTGlzdCBBY2NlbnQgNSIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjYyIiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgTmFtZT0iTGlnaHQgR3JpZCBBY2NlbnQgNSIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjYzIiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgTmFtZT0iTWVkaXVtIFNoYWRpbmcgMSBBY2NlbnQgNSIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjY0IiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgTmFtZT0iTWVkaXVtIFNoYWRpbmcgMiBBY2NlbnQgNSIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjY1IiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgTmFtZT0iTWVkaXVtIExpc3QgMSBBY2NlbnQgNSIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjY2IiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgTmFtZT0iTWVkaXVtIExpc3QgMiBBY2NlbnQgNSIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjY3IiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgTmFtZT0iTWVkaXVtIEdyaWQgMSBBY2NlbnQgNSIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjY4IiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgTmFtZT0iTWVkaXVtIEdyaWQgMiBBY2NlbnQgNSIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjY5IiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgTmFtZT0iTWVkaXVtIEdyaWQgMyBBY2NlbnQgNSIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjcwIiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgTmFtZT0iRGFyayBMaXN0IEFjY2VudCA1Ii8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iNzEiIFNlbWlIaWRkZW49ImZhbHNlIg0KICAgVW5oaWRlV2hlblVzZWQ9ImZhbHNlIiBOYW1lPSJDb2xvcmZ1bCBTaGFkaW5nIEFjY2VudCA1Ii8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iNzIiIFNlbWlIaWRkZW49ImZhbHNlIg0KICAgVW5oaWRlV2hlblVzZWQ9ImZhbHNlIiBOYW1lPSJDb2xvcmZ1bCBMaXN0IEFjY2VudCA1Ii8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iNzMiIFNlbWlIaWRkZW49ImZhbHNlIg0KICAgVW5oaWRlV2hlblVzZWQ9ImZhbHNlIiBOYW1lPSJDb2xvcmZ1bCBHcmlkIEFjY2VudCA1Ii8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iNjAiIFNlbWlIaWRkZW49ImZhbHNlIg0KICAgVW5oaWRlV2hlblVzZWQ9ImZhbHNlIiBOYW1lPSJMaWdodCBTaGFkaW5nIEFjY2VudCA2Ii8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iNjEiIFNlbWlIaWRkZW49ImZhbHNlIg0KICAgVW5oaWRlV2hlblVzZWQ9ImZhbHNlIiBOYW1lPSJMaWdodCBMaXN0IEFjY2VudCA2Ii8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iNjIiIFNlbWlIaWRkZW49ImZhbHNlIg0KICAgVW5oaWRlV2hlblVzZWQ9ImZhbHNlIiBOYW1lPSJMaWdodCBHcmlkIEFjY2VudCA2Ii8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iNjMiIFNlbWlIaWRkZW49ImZhbHNlIg0KICAgVW5oaWRlV2hlblVzZWQ9ImZhbHNlIiBOYW1lPSJNZWRpdW0gU2hhZGluZyAxIEFjY2VudCA2Ii8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iNjQiIFNlbWlIaWRkZW49ImZhbHNlIg0KICAgVW5oaWRlV2hlblVzZWQ9ImZhbHNlIiBOYW1lPSJNZWRpdW0gU2hhZGluZyAyIEFjY2VudCA2Ii8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iNjUiIFNlbWlIaWRkZW49ImZhbHNlIg0KICAgVW5oaWRlV2hlblVzZWQ9ImZhbHNlIiBOYW1lPSJNZWRpdW0gTGlzdCAxIEFjY2VudCA2Ii8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iNjYiIFNlbWlIaWRkZW49ImZhbHNlIg0KICAgVW5oaWRlV2hlblVzZWQ9ImZhbHNlIiBOYW1lPSJNZWRpdW0gTGlzdCAyIEFjY2VudCA2Ii8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iNjciIFNlbWlIaWRkZW49ImZhbHNlIg0KICAgVW5oaWRlV2hlblVzZWQ9ImZhbHNlIiBOYW1lPSJNZWRpdW0gR3JpZCAxIEFjY2VudCA2Ii8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iNjgiIFNlbWlIaWRkZW49ImZhbHNlIg0KICAgVW5oaWRlV2hlblVzZWQ9ImZhbHNlIiBOYW1lPSJNZWRpdW0gR3JpZCAyIEFjY2VudCA2Ii8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iNjkiIFNlbWlIaWRkZW49ImZhbHNlIg0KICAgVW5oaWRlV2hlblVzZWQ9ImZhbHNlIiBOYW1lPSJNZWRpdW0gR3JpZCAzIEFjY2VudCA2Ii8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iNzAiIFNlbWlIaWRkZW49ImZhbHNlIg0KICAgVW5oaWRlV2hlblVzZWQ9ImZhbHNlIiBOYW1lPSJEYXJrIExpc3QgQWNjZW50IDYiLz4NCiAgPHc6THNkRXhjZXB0aW9uIExvY2tlZD0iZmFsc2UiIFByaW9yaXR5PSI3MSIgU2VtaUhpZGRlbj0iZmFsc2UiDQogICBVbmhpZGVXaGVuVXNlZD0iZmFsc2UiIE5hbWU9IkNvbG9yZnVsIFNoYWRpbmcgQWNjZW50IDYiLz4NCiAgPHc6THNkRXhjZXB0aW9uIExvY2tlZD0iZmFsc2UiIFByaW9yaXR5PSI3MiIgU2VtaUhpZGRlbj0iZmFsc2UiDQogICBVbmhpZGVXaGVuVXNlZD0iZmFsc2UiIE5hbWU9IkNvbG9yZnVsIExpc3QgQWNjZW50IDYiLz4NCiAgPHc6THNkRXhjZXB0aW9uIExvY2tlZD0iZmFsc2UiIFByaW9yaXR5PSI3MyIgU2VtaUhpZGRlbj0iZmFsc2UiDQogICBVbmhpZGVXaGVuVXNlZD0iZmFsc2UiIE5hbWU9IkNvbG9yZnVsIEdyaWQgQWNjZW50IDYiLz4NCiAgPHc6THNkRXhjZXB0aW9uIExvY2tlZD0iZmFsc2UiIFByaW9yaXR5PSIxOSIgU2VtaUhpZGRlbj0iZmFsc2UiDQogICBVbmhpZGVXaGVuVXNlZD0iZmFsc2UiIFFGb3JtYXQ9InRydWUiIE5hbWU9IlN1YnRsZSBFbXBoYXNpcyIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjIxIiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgUUZvcm1hdD0idHJ1ZSIgTmFtZT0iSW50ZW5zZSBFbXBoYXNpcyIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjMxIiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgUUZvcm1hdD0idHJ1ZSIgTmFtZT0iU3VidGxlIFJlZmVyZW5jZSIvPg0KICA8dzpMc2RFeGNlcHRpb24gTG9ja2VkPSJmYWxzZSIgUHJpb3JpdHk9IjMyIiBTZW1pSGlkZGVuPSJmYWxzZSINCiAgIFVuaGlkZVdoZW5Vc2VkPSJmYWxzZSIgUUZvcm1hdD0idHJ1ZSIgTmFtZT0iSW50ZW5zZSBSZWZlcmVuY2UiLz4NCiAgPHc6THNkRXhjZXB0aW9uIExvY2tlZD0iZmFsc2UiIFByaW9yaXR5PSIzMyIgU2VtaUhpZGRlbj0iZmFsc2UiDQogICBVbmhpZGVXaGVuVXNlZD0iZmFsc2UiIFFGb3JtYXQ9InRydWUiIE5hbWU9IkJvb2sgVGl0bGUiLz4NCiAgPHc6THNkRXhjZXB0aW9uIExvY2tlZD0iZmFsc2UiIFByaW9yaXR5PSIzNyIgTmFtZT0iQmlibGlvZ3JhcGh5Ii8+DQogIDx3OkxzZEV4Y2VwdGlvbiBMb2NrZWQ9ImZhbHNlIiBQcmlvcml0eT0iMzkiIFFGb3JtYXQ9InRydWUiIE5hbWU9IlRPQyBIZWFkaW5nIi8+DQogPC93OkxhdGVudFN0eWxlcz4NCjwveG1sPjwhW2VuZGlmXS0tPg0KPHN0eWxlPg0KPCEtLQ0KIC8qIEZvbnQgRGVmaW5pdGlvbnMgKi8NCiBAZm9udC1mYWNlDQoJe2ZvbnQtZmFtaWx5OiJDYW1icmlhIE1hdGgiOw0KCXBhbm9zZS0xOjIgNCA1IDMgNSA0IDYgMyAyIDQ7DQoJbXNvLWZvbnQtY2hhcnNldDoxOw0KCW1zby1nZW5lcmljLWZvbnQtZmFtaWx5OnJvbWFuOw0KCW1zby1mb250LWZvcm1hdDpvdGhlcjsNCgltc28tZm9udC1waXRjaDp2YXJpYWJsZTsNCgltc28tZm9udC1zaWduYXR1cmU6MCAwIDAgMCAwIDA7fQ0KQGZvbnQtZmFjZQ0KCXtmb250LWZhbWlseTpDYWxpYnJpOw0KCXBhbm9zZS0xOjIgMTUgNSAyIDIgMiA0IDMgMiA0Ow0KCW1zby1mb250LWNoYXJzZXQ6MjA0Ow0KCW1zby1nZW5lcmljLWZvbnQtZmFtaWx5OnN3aXNzOw0KCW1zby1mb250LXBpdGNoOnZhcmlhYmxlOw0KCW1zby1mb250LXNpZ25hdHVyZTotNTIwMDkyOTI5IDEwNzM3ODYxMTEgOSAwIDQxNSAwO30NCkBmb250LWZhY2UNCgl7Zm9udC1mYW1pbHk6VGFob21hOw0KCXBhbm9zZS0xOjIgMTEgNiA0IDMgNSA0IDQgMiA0Ow0KCW1zby1mb250LWNoYXJzZXQ6MjA0Ow0KCW1zby1nZW5lcmljLWZvbnQtZmFtaWx5OnN3aXNzOw0KCW1zby1mb250LXBpdGNoOnZhcmlhYmxlOw0KCW1zby1mb250LXNpZ25hdHVyZTotNTIwMDgxNjY1IC0xMDczNzE3MTU3IDQxIDAgNjYwNDcgMDt9DQogLyogU3R5bGUgRGVmaW5pdGlvbnMgKi8NCiBwLk1zb05vcm1hbCwgbGkuTXNvTm9ybWFsLCBkaXYuTXNvTm9ybWFsDQoJe21zby1zdHlsZS11bmhpZGU6bm87DQoJbXNvLXN0eWxlLXFmb3JtYXQ6eWVzOw0KCW1zby1zdHlsZS1wYXJlbnQ6IiI7DQoJbWFyZ2luLXRvcDowY207DQoJbWFyZ2luLXJpZ2h0OjBjbTsNCgltYXJnaW4tYm90dG9tOjEwLjBwdDsNCgltYXJnaW4tbGVmdDowY207DQoJbGluZS1oZWlnaHQ6MTE1JTsNCgltc28tcGFnaW5hdGlvbjp3aWRvdy1vcnBoYW47DQoJZm9udC1zaXplOjExLjBwdDsNCglmb250LWZhbWlseToiQ2FsaWJyaSIsInNhbnMtc2VyaWYiOw0KCW1zby1hc2NpaS1mb250LWZhbWlseTpDYWxpYnJpOw0KCW1zby1hc2NpaS10aGVtZS1mb250Om1pbm9yLWxhdGluOw0KCW1zby1mYXJlYXN0LWZvbnQtZmFtaWx5OkNhbGlicmk7DQoJbXNvLWZhcmVhc3QtdGhlbWUtZm9udDptaW5vci1sYXRpbjsNCgltc28taGFuc2ktZm9udC1mYW1pbHk6Q2FsaWJyaTsNCgltc28taGFuc2ktdGhlbWUtZm9udDptaW5vci1sYXRpbjsNCgltc28tYmlkaS1mb250LWZhbWlseToiVGltZXMgTmV3IFJvbWFuIjsNCgltc28tYmlkaS10aGVtZS1mb250Om1pbm9yLWJpZGk7DQoJbXNvLWZhcmVhc3QtbGFuZ3VhZ2U6RU4tVVM7fQ0KYTpsaW5rLCBzcGFuLk1zb0h5cGVybGluaw0KCXttc28tc3R5bGUtbm9zaG93OnllczsNCgltc28tc3R5bGUtcHJpb3JpdHk6OTk7DQoJY29sb3I6Ymx1ZTsNCgltc28tdGhlbWVjb2xvcjpoeXBlcmxpbms7DQoJdGV4dC1kZWNvcmF0aW9uOnVuZGVybGluZTsNCgl0ZXh0LXVuZGVybGluZTpzaW5nbGU7fQ0KYTp2aXNpdGVkLCBzcGFuLk1zb0h5cGVybGlua0ZvbGxvd2VkDQoJe21zby1zdHlsZS1ub3Nob3c6eWVzOw0KCW1zby1zdHlsZS1wcmlvcml0eTo5OTsNCgljb2xvcjpwdXJwbGU7DQoJbXNvLXRoZW1lY29sb3I6Zm9sbG93ZWRoeXBlcmxpbms7DQoJdGV4dC1kZWNvcmF0aW9uOnVuZGVybGluZTsNCgl0ZXh0LXVuZGVybGluZTpzaW5nbGU7fQ0KcC5Nc29BY2V0YXRlLCBsaS5Nc29BY2V0YXRlLCBkaXYuTXNvQWNldGF0ZQ0KCXttc28tc3R5bGUtbm9zaG93OnllczsNCgltc28tc3R5bGUtcHJpb3JpdHk6OTk7DQoJbXNvLXN0eWxlLWxpbms6ItLl6vHyIOL77e7x6uggx+3g6iI7DQoJbWFyZ2luOjBjbTsNCgltYXJnaW4tYm90dG9tOi4wMDAxcHQ7DQoJbXNvLXBhZ2luYXRpb246d2lkb3ctb3JwaGFuOw0KCWZvbnQtc2l6ZTo4LjBwdDsNCglmb250LWZhbWlseToiVGFob21hIiwic2Fucy1zZXJpZiI7DQoJbXNvLWZhcmVhc3QtZm9udC1mYW1pbHk6Q2FsaWJyaTsNCgltc28tZmFyZWFzdC10aGVtZS1mb250Om1pbm9yLWxhdGluOw0KCW1zby1mYXJlYXN0LWxhbmd1YWdlOkVOLVVTO30NCnAuTXNvTm9TcGFjaW5nLCBsaS5Nc29Ob1NwYWNpbmcsIGRpdi5Nc29Ob1NwYWNpbmcNCgl7bXNvLXN0eWxlLXByaW9yaXR5OjE7DQoJbXNvLXN0eWxlLXVuaGlkZTpubzsNCgltc28tc3R5bGUtcWZvcm1hdDp5ZXM7DQoJbXNvLXN0eWxlLXBhcmVudDoiIjsNCgltYXJnaW46MGNtOw0KCW1hcmdpbi1ib3R0b206LjAwMDFwdDsNCgltc28tcGFnaW5hdGlvbjp3aWRvdy1vcnBoYW47DQoJZm9udC1zaXplOjExLjBwdDsNCglmb250LWZhbWlseToiQ2FsaWJyaSIsInNhbnMtc2VyaWYiOw0KCW1zby1hc2NpaS1mb250LWZhbWlseTpDYWxpYnJpOw0KCW1zby1hc2NpaS10aGVtZS1mb250Om1pbm9yLWxhdGluOw0KCW1zby1mYXJlYXN0LWZvbnQtZmFtaWx5OkNhbGlicmk7DQoJbXNvLWZhcmVhc3QtdGhlbWUtZm9udDptaW5vci1sYXRpbjsNCgltc28taGFuc2ktZm9udC1mYW1pbHk6Q2FsaWJyaTsNCgltc28taGFuc2ktdGhlbWUtZm9udDptaW5vci1sYXRpbjsNCgltc28tYmlkaS1mb250LWZhbWlseToiVGltZXMgTmV3IFJvbWFuIjsNCgltc28tYmlkaS10aGVtZS1mb250Om1pbm9yLWJpZGk7DQoJbXNvLWZhcmVhc3QtbGFuZ3VhZ2U6RU4tVVM7fQ0Kc3Bhbi5hDQoJe21zby1zdHlsZS1uYW1lOiLS5erx8iDi++3u8eroIMft4OoiOw0KCW1zby1zdHlsZS1ub3Nob3c6eWVzOw0KCW1zby1zdHlsZS1wcmlvcml0eTo5OTsNCgltc28tc3R5bGUtdW5oaWRlOm5vOw0KCW1zby1zdHlsZS1sb2NrZWQ6eWVzOw0KCW1zby1zdHlsZS1saW5rOiLS5erx8iDi++3u8eroIjsNCgltc28tYW5zaS1mb250LXNpemU6OC4wcHQ7DQoJbXNvLWJpZGktZm9udC1zaXplOjguMHB0Ow0KCWZvbnQtZmFtaWx5OiJUYWhvbWEiLCJzYW5zLXNlcmlmIjsNCgltc28tYXNjaWktZm9udC1mYW1pbHk6VGFob21hOw0KCW1zby1oYW5zaS1mb250LWZhbWlseTpUYWhvbWE7DQoJbXNvLWJpZGktZm9udC1mYW1pbHk6VGFob21hO30NCnAuaDEsIGxpLmgxLCBkaXYuaDENCgl7bXNvLXN0eWxlLW5hbWU6aDE7DQoJbXNvLXN0eWxlLXVuaGlkZTpubzsNCgltc28tbWFyZ2luLXRvcC1hbHQ6YXV0bzsNCgltYXJnaW4tcmlnaHQ6MGNtOw0KCW1zby1tYXJnaW4tYm90dG9tLWFsdDphdXRvOw0KCW1hcmdpbi1sZWZ0OjBjbTsNCgltc28tcGFnaW5hdGlvbjp3aWRvdy1vcnBoYW47DQoJZm9udC1zaXplOjEyLjBwdDsNCglmb250LWZhbWlseToiVGltZXMgTmV3IFJvbWFuIiwic2VyaWYiOw0KCW1zby1mYXJlYXN0LWZvbnQtZmFtaWx5OiJUaW1lcyBOZXcgUm9tYW4iO30NCnAuaDIsIGxpLmgyLCBkaXYuaDINCgl7bXNvLXN0eWxlLW5hbWU6aDI7DQoJbXNvLXN0eWxlLXVuaGlkZTpubzsNCgltc28tbWFyZ2luLXRvcC1hbHQ6YXV0bzsNCgltYXJnaW4tcmlnaHQ6MGNtOw0KCW1zby1tYXJnaW4tYm90dG9tLWFsdDphdXRvOw0KCW1hcmdpbi1sZWZ0OjBjbTsNCgltc28tcGFnaW5hdGlvbjp3aWRvdy1vcnBoYW47DQoJZm9udC1zaXplOjEyLjBwdDsNCglmb250LWZhbWlseToiVGltZXMgTmV3IFJvbWFuIiwic2VyaWYiOw0KCW1zby1mYXJlYXN0LWZvbnQtZmFtaWx5OiJUaW1lcyBOZXcgUm9tYW4iO30NCnNwYW4uYXBwbGUtY29udmVydGVkLXNwYWNlDQoJe21zby1zdHlsZS1uYW1lOmFwcGxlLWNvbnZlcnRlZC1zcGFjZTsNCgltc28tc3R5bGUtdW5oaWRlOm5vO30NCi5Nc29DaHBEZWZhdWx0DQoJe21zby1zdHlsZS10eXBlOmV4cG9ydC1vbmx5Ow0KCW1zby1kZWZhdWx0LXByb3BzOnllczsNCglmb250LXNpemU6MTAuMHB0Ow0KCW1zby1hbnNpLWZvbnQtc2l6ZToxMC4wcHQ7DQoJbXNvLWJpZGktZm9udC1zaXplOjEwLjBwdDsNCgltc28tYXNjaWktZm9udC1mYW1pbHk6Q2FsaWJyaTsNCgltc28tYXNjaWktdGhlbWUtZm9udDptaW5vci1sYXRpbjsNCgltc28tZmFyZWFzdC1mb250LWZhbWlseTpDYWxpYnJpOw0KCW1zby1mYXJlYXN0LXRoZW1lLWZvbnQ6bWlub3ItbGF0aW47DQoJbXNvLWhhbnNpLWZvbnQtZmFtaWx5OkNhbGlicmk7DQoJbXNvLWhhbnNpLXRoZW1lLWZvbnQ6bWlub3ItbGF0aW47DQoJbXNvLWJpZGktZm9udC1mYW1pbHk6IlRpbWVzIE5ldyBSb21hbiI7DQoJbXNvLWJpZGktdGhlbWUtZm9udDptaW5vci1iaWRpOw0KCW1zby1mYXJlYXN0LWxhbmd1YWdlOkVOLVVTO30NCkBwYWdlIFNlY3Rpb24xDQoJe3NpemU6NTk1LjNwdCA4NDEuOXB0Ow0KCW1hcmdpbjoyLjBjbSAxOTUuOTVwdCAyLjBjbSAzLjBjbTsNCgltc28taGVhZGVyLW1hcmdpbjozNS40cHQ7DQoJbXNvLWZvb3Rlci1tYXJnaW46MzUuNHB0Ow0KCW1zby1wYXBlci1zb3VyY2U6MDt9DQpkaXYuU2VjdGlvbjENCgl7cGFnZTpTZWN0aW9uMTt9DQotLT4NCjwvc3R5bGU+DQo8IS0tW2lmIGd0ZSBtc28gMTBdPg0KPHN0eWxlPg0KIC8qIFN0eWxlIERlZmluaXRpb25zICovDQogdGFibGUuTXNvTm9ybWFsVGFibGUNCgl7bXNvLXN0eWxlLW5hbWU6Is7h+/ft4P8g8uDh6+j24CI7DQoJbXNvLXRzdHlsZS1yb3diYW5kLXNpemU6MDsNCgltc28tdHN0eWxlLWNvbGJhbmQtc2l6ZTowOw0KCW1zby1zdHlsZS1ub3Nob3c6eWVzOw0KCW1zby1zdHlsZS1wcmlvcml0eTo5OTsNCgltc28tc3R5bGUtcWZvcm1hdDp5ZXM7DQoJbXNvLXN0eWxlLXBhcmVudDoiIjsNCgltc28tcGFkZGluZy1hbHQ6MGNtIDUuNHB0IDBjbSA1LjRwdDsNCgltc28tcGFyYS1tYXJnaW46MGNtOw0KCW1zby1wYXJhLW1hcmdpbi1ib3R0b206LjAwMDFwdDsNCgltc28tcGFnaW5hdGlvbjp3aWRvdy1vcnBoYW47DQoJZm9udC1zaXplOjEwLjBwdDsNCglmb250LWZhbWlseToiQ2FsaWJyaSIsInNhbnMtc2VyaWYiOw0KCW1zby1hc2NpaS1mb250LWZhbWlseTpDYWxpYnJpOw0KCW1zby1hc2NpaS10aGVtZS1mb250Om1pbm9yLWxhdGluOw0KCW1zby1oYW5zaS1mb250LWZhbWlseTpDYWxpYnJpOw0KCW1zby1oYW5zaS10aGVtZS1mb250Om1pbm9yLWxhdGluOw0KCW1zby1iaWRpLWZvbnQtZmFtaWx5OiJUaW1lcyBOZXcgUm9tYW4iOw0KCW1zby1iaWRpLXRoZW1lLWZvbnQ6bWlub3ItYmlkaTsNCgltc28tZmFyZWFzdC1sYW5ndWFnZTpFTi1VUzt9DQo8L3N0eWxlPg0KPCFbZW5kaWZdLS0+PCEtLVtpZiBndGUgbXNvIDldPjx4bWw+DQogPG86c2hhcGVkZWZhdWx0cyB2OmV4dD0iZWRpdCIgc3BpZG1heD0iNzE3MCIvPg0KPC94bWw+PCFbZW5kaWZdLS0+PCEtLVtpZiBndGUgbXNvIDldPjx4bWw+DQogPG86c2hhcGVsYXlvdXQgdjpleHQ9ImVkaXQiPg0KICA8bzppZG1hcCB2OmV4dD0iZWRpdCIgZGF0YT0iMSIvPg0KIDwvbzpzaGFwZWxheW91dD48L3htbD48IVtlbmRpZl0tLT4NCjwvaGVhZD4NCg0KPGJvZHkgbGFuZz1SVSBsaW5rPWJsdWUgdmxpbms9cHVycGxlIHN0eWxlPSd0YWItaW50ZXJ2YWw6MzUuNHB0Jz4NCg0KPGRpdiBjbGFzcz1TZWN0aW9uMT4NCg0KPHAgY2xhc3M9aDEgYWxpZ249Y2VudGVyIHN0eWxlPSd0ZXh0LWFsaWduOmNlbnRlcjtiYWNrZ3JvdW5kOndoaXRlJz48Yg0Kc3R5bGU9J21zby1iaWRpLWZvbnQtd2VpZ2h0Om5vcm1hbCc+PHNwYW4gc3R5bGU9J2ZvbnQtc2l6ZTo4LjBwdDtmb250LWZhbWlseToNCiJBcmlhbCIsInNhbnMtc2VyaWYiO2NvbG9yOmJsYWNrO21zby1uby1wcm9vZjp5ZXMnPjwhLS1baWYgZ3RlIHZtbCAxXT48djpzaGFwZXR5cGUNCiBpZD0iX3gwMDAwX3Q3NSIgY29vcmRzaXplPSIyMTYwMCwyMTYwMCIgbzpzcHQ9Ijc1IiBvOnByZWZlcnJlbGF0aXZlPSJ0Ig0KIHBhdGg9Im1ANEA1bEA0QDExQDlAMTFAOUA1eGUiIGZpbGxlZD0iZiIgc3Ryb2tlZD0iZiI+DQogPHY6c3Ryb2tlIGpvaW5zdHlsZT0ibWl0ZXIiLz4NCiA8djpmb3JtdWxhcz4NCiAgPHY6ZiBlcW49ImlmIGxpbmVEcmF3biBwaXhlbExpbmVXaWR0aCAwIi8+DQogIDx2OmYgZXFuPSJzdW0gQDAgMSAwIi8+DQogIDx2OmYgZXFuPSJzdW0gMCAwIEAxIi8+DQogIDx2OmYgZXFuPSJwcm9kIEAyIDEgMiIvPg0KICA8djpmIGVxbj0icHJvZCBAMyAyMTYwMCBwaXhlbFdpZHRoIi8+DQogIDx2OmYgZXFuPSJwcm9kIEAzIDIxNjAwIHBpeGVsSGVpZ2h0Ii8+DQogIDx2OmYgZXFuPSJzdW0gQDAgMCAxIi8+DQogIDx2OmYgZXFuPSJwcm9kIEA2IDEgMiIvPg0KICA8djpmIGVxbj0icHJvZCBANyAyMTYwMCBwaXhlbFdpZHRoIi8+DQogIDx2OmYgZXFuPSJzdW0gQDggMjE2MDAgMCIvPg0KICA8djpmIGVxbj0icHJvZCBANyAyMTYwMCBwaXhlbEhlaWdodCIvPg0KICA8djpmIGVxbj0ic3VtIEAxMCAyMTYwMCAwIi8+DQogPC92OmZvcm11bGFzPg0KIDx2OnBhdGggbzpleHRydXNpb25vaz0iZiIgZ3JhZGllbnRzaGFwZW9rPSJ0IiBvOmNvbm5lY3R0eXBlPSJyZWN0Ii8+DQogPG86bG9jayB2OmV4dD0iZWRpdCIgYXNwZWN0cmF0aW89InQiLz4NCjwvdjpzaGFwZXR5cGU+PHY6c2hhcGUgaWQ9ItDo8fPt7upfeDAwMjBfMCIgbzpzcGlkPSJfeDAwMDBfaTEwMjYiIHR5cGU9IiNfeDAwMDBfdDc1Ig0KIGFsdD0iZWFnbGUucG5nIiBzdHlsZT0nd2lkdGg6MjFwdDtoZWlnaHQ6MjIuNXB0O3Zpc2liaWxpdHk6dmlzaWJsZTsNCiBtc28td3JhcC1zdHlsZTpzcXVhcmUnPg0KIDx2OmltYWdlZGF0YSBzcmM9ImluZGV4LmZpbGVzL2ltYWdlMDAxLnBuZyIgbzp0aXRsZT0iZWFnbGUiLz4NCjwvdjpzaGFwZT48IVtlbmRpZl0tLT48IVtpZiAhdm1sXT48aW1nIHdpZHRoPTI4IGhlaWdodD0zMA0Kc3JjPSJpbmRleC5maWxlcy9pbWFnZTAwMS5wbmciIGFsdD1lYWdsZS5wbmcgdjpzaGFwZXM9ItDo8fPt7upfeDAwMjBfMCI+PCFbZW5kaWZdPjwvc3Bhbj48L2I+PGI+PHNwYW4NCmxhbmc9RU4tVVMgc3R5bGU9J2ZvbnQtc2l6ZTo4LjBwdDtmb250LWZhbWlseToiQXJpYWwiLCJzYW5zLXNlcmlmIjtjb2xvcjpibGFjazsNCm1zby1hbnNpLWxhbmd1YWdlOkVOLVVTJz48bzpwPjwvbzpwPjwvc3Bhbj48L2I+PC9wPg0KDQo8cCBjbGFzcz1oMSBhbGlnbj1jZW50ZXIgc3R5bGU9J3RleHQtYWxpZ246Y2VudGVyO2JhY2tncm91bmQ6d2hpdGUnPjxiPjxzcGFuDQpzdHlsZT0nZm9udC1zaXplOjguMHB0O2ZvbnQtZmFtaWx5OiJBcmlhbCIsInNhbnMtc2VyaWYiO2NvbG9yOmJsYWNrJz7MyM3I0dLF0NHSws4NCtHC38fIIMggzMDR0c7C29Ugys7MzNPNyMrA1sjJINDO0dHIydHKzskg1MXExdDA1sjIPG86cD48L286cD48L3NwYW4+PC9iPjwvcD4NCg0KPHAgY2xhc3M9aDIgYWxpZ249Y2VudGVyIHN0eWxlPSd0ZXh0LWFsaWduOmNlbnRlcjtiYWNrZ3JvdW5kOndoaXRlJz48c3Bhbg0Kc3R5bGU9J2ZvbnQtc2l6ZToxMC4wcHQ7Zm9udC1mYW1pbHk6IkFyaWFsIiwic2Fucy1zZXJpZiI7Y29sb3I6YmxhY2snPtTFxMXQwMvczcDfDQrRy9PGwcAgz84gzcDEx87Q0yDCINHUxdDFINHC38fILDxicj4NCsjN1M7QzMDWyM7NzdvVINLF1c3Oy87DyMkgyCDMwNHRzsLb1SDKzszM083IysDWyMkmbmJzcDs8YnI+DQo8L3NwYW4+PGEgaHJlZj0iaHR0cDovL3Jrbi5nb3YucnUvIj48c3BhbiBzdHlsZT0nZm9udC1zaXplOjEwLjBwdDtmb250LWZhbWlseToNCiJBcmlhbCIsInNhbnMtc2VyaWYiO2NvbG9yOmJsYWNrO21zby1uby1wcm9vZjp5ZXM7dGV4dC1kZWNvcmF0aW9uOm5vbmU7DQp0ZXh0LXVuZGVybGluZTpub25lJz48IS0tW2lmIGd0ZSB2bWwgMV0+PHY6c2hhcGUgaWQ9ItDo8fPt7upfeDAwMjBfMSIgbzpzcGlkPSJfeDAwMDBfaTEwMjUiDQogdHlwZT0iI194MDAwMF90NzUiIGFsdD0ibGFiZWwucG5nIiBocmVmPSJodHRwOi8vcmtuLmdvdi5ydS8iIHN0eWxlPSd3aWR0aDoxNTUuMjVwdDsNCiBoZWlnaHQ6MzMuNzVwdDt2aXNpYmlsaXR5OnZpc2libGU7bXNvLXdyYXAtc3R5bGU6c3F1YXJlJyBvOmJ1dHRvbj0idCI+DQogPHY6ZmlsbCBvOmRldGVjdG1vdXNlY2xpY2s9InQiLz4NCiA8djppbWFnZWRhdGEgc3JjPSJpbmRleC5maWxlcy9pbWFnZTAwNC5wbmciIG86dGl0bGU9ImxhYmVsIi8+DQo8L3Y6c2hhcGU+PCFbZW5kaWZdLS0+PCFbaWYgIXZtbF0+PHNwYW4gc3R5bGU9J21zby1pZ25vcmU6dmdsYXlvdXQnPjxpbWcNCmJvcmRlcj0wIHdpZHRoPTIwNyBoZWlnaHQ9NDUgc3JjPSJpbmRleC5maWxlcy9sYWJlbC5wbmciIGFsdD1sYWJlbC5wbmcNCnY6c2hhcGVzPSLQ6PHz7e7qX3gwMDIwXzEiPjwvc3Bhbj48IVtlbmRpZl0+PC9zcGFuPjwvYT48c3BhbiBzdHlsZT0nZm9udC1zaXplOg0KMTAuMHB0O2ZvbnQtZmFtaWx5OiJBcmlhbCIsInNhbnMtc2VyaWYiO2NvbG9yOmJsYWNrJz48bzpwPjwvbzpwPjwvc3Bhbj48L3A+DQoNCjxwIGNsYXNzPU1zb05vU3BhY2luZyBhbGlnbj1jZW50ZXIgc3R5bGU9J3RleHQtYWxpZ246Y2VudGVyJz48Yg0Kc3R5bGU9J21zby1iaWRpLWZvbnQtd2VpZ2h0Om5vcm1hbCc+PHNwYW4gc3R5bGU9J2ZvbnQtc2l6ZToxNi4wcHQ7Y29sb3I6IzA2NkI5RSc+KzcoNDk1KTk4Ny02OC0wMDxvOnA+PC9vOnA+PC9zcGFuPjwvYj48L3A+DQoNCjxwIGNsYXNzPU1zb05vU3BhY2luZyBhbGlnbj1jZW50ZXIgc3R5bGU9J3RleHQtYWxpZ246Y2VudGVyJz48c3Bhbg0Kc3R5bGU9J2NvbG9yOiMwNjZCOUUnPtfg8fsg8ODh7vL7PG86cD48L286cD48L3NwYW4+PC9wPg0KDQo8cCBjbGFzcz1Nc29Ob1NwYWNpbmcgYWxpZ249Y2VudGVyIHN0eWxlPSd0ZXh0LWFsaWduOmNlbnRlcic+PHNwYW4NCnN0eWxlPSdjb2xvcjojMDY2QjlFJz7P7S3X8iA4OjMwLTE3OjMwPG86cD48L286cD48L3NwYW4+PC9wPg0KDQo8cCBjbGFzcz1Nc29Ob1NwYWNpbmcgYWxpZ249Y2VudGVyIHN0eWxlPSd0ZXh0LWFsaWduOmNlbnRlcic+PHNwYW4NCnN0eWxlPSdjb2xvcjojMDY2QjlFJz7P8iA4OjMwLTE2OjE1PG86cD48L286cD48L3NwYW4+PC9wPg0KDQo8cCBjbGFzcz1Nc29Ob3JtYWwgYWxpZ249Y2VudGVyIHN0eWxlPSd0ZXh0LWFsaWduOmNlbnRlcic+PGIgc3R5bGU9J21zby1iaWRpLWZvbnQtd2VpZ2h0Og0Kbm9ybWFsJz48c3BhbiBzdHlsZT0nZm9udC1zaXplOjI4LjBwdDtsaW5lLWhlaWdodDoxMTUlJz48bzpwPiZuYnNwOzwvbzpwPjwvc3Bhbj48L2I+PC9wPg0KDQo8cCBjbGFzcz1Nc29Ob3JtYWwgYWxpZ249Y2VudGVyIHN0eWxlPSd0ZXh0LWFsaWduOmNlbnRlcic+PGIgc3R5bGU9J21zby1iaWRpLWZvbnQtd2VpZ2h0Og0Kbm9ybWFsJz48c3BhbiBzdHlsZT0nZm9udC1zaXplOjM2LjBwdDtsaW5lLWhlaWdodDoxMTUlO2NvbG9yOnJlZCc+0eDp8g0K5+Dh6+7q6PDu4uDtLjxvOnA+PC9vOnA+PC9zcGFuPjwvYj48L3A+DQoNCjxwIGNsYXNzPU1zb05vcm1hbCBhbGlnbj1jZW50ZXIgc3R5bGU9J3RleHQtYWxpZ246Y2VudGVyJz48YiBzdHlsZT0nbXNvLWJpZGktZm9udC13ZWlnaHQ6DQpub3JtYWwnPjxzcGFuIHN0eWxlPSdmb250LXNpemU6MTYuMHB0O2xpbmUtaGVpZ2h0OjExNSUnPsLu5+zu5u375SDv8Oj36O37DQrh6+7q6PDu4uroOjxvOnA+PC9vOnA+PC9zcGFuPjwvYj48L3A+DQoNCjxwIGNsYXNzPU1zb05vcm1hbCBhbGlnbj1jZW50ZXIgc3R5bGU9J3RleHQtYWxpZ246Y2VudGVyJz48YiBzdHlsZT0nbXNvLWJpZGktZm9udC13ZWlnaHQ6DQpub3JtYWwnPsXEyM3bySDQxcXR0tAg5O7s5e3t+/Ug6Ozl7Swg8+rg5+Dy5evl6SDx8vDg7ej2IPHg6fLu4iDiIPHl8ugNCqvI7fLl8O3l8rsg6CDx5fLl4vv1IODk8OXx7uIsIPHu5OXw5uD56OUg6O307vDs4Pbo/iwg8ODx7/Du8fLw4O3l7ejlIOru8u7w7ukg4g0K0O7x8ejp8eru6SDU5eTl8OD26Ogg5+Dv8OX55e3uLjxvOnA+PC9vOnA+PC9iPjwvcD4NCg0KPHAgY2xhc3M9TXNvTm9ybWFsIGFsaWduPWNlbnRlciBzdHlsZT0ndGV4dC1hbGlnbjpjZW50ZXInPsTl6fHy4vPl8iDt4A0K7vHt7uLg7ejoIPTl5OXw4Ov87e7j7iDn4Oru7eAg7vIgMjguMDcuMjAxMiBOIDEzOS3UxyCrziDi7eXx5e3o6CDo5+zl7eXt6Okg4g0K1OXk5fDg6/zt++kg5+Dq7u0gJnF1b3Q7ziDn4Pno8uUg5OXy5ekg7vIg6O307vDs4Pbo6Cwg7/Do9+jt//755ekg4vDl5CDo9Q0K5+Tu8O7i/P4g6CDw4Ofi6PLo/iZxdW90OyDoIO7y5OXr/O375SDn4Oru7e7k4PLl6/zt++Ug4Ory+yDQ7vHx6Onx6u7pDQrU5eTl8OD26Oi7LCD05eTl8ODr/O3u4+4g5+Dq7u3gIO7yIDI3IOj+6/8gMjAwNiDj7uTgILkgMTQ5LdTHIKvO4SDo7fTu8Ozg9ujoLA0K6O307vDs4Pbo7u3t+/Ug8uX17e7r7uPo//Ug6CDuIOfg+ejy5SDo7fTu8Ozg9ujouy48L3A+DQoNCjxwIGNsYXNzPU1zb05vcm1hbCBhbGlnbj1jZW50ZXIgc3R5bGU9J3RleHQtYWxpZ246Y2VudGVyJz7P8O7i5fDo8vwg7eAg8eDp8uUNCtDO0crOzM3AxMfO0OAgPGEgaHJlZj0iaHR0cDovL2VhaXMucmtuLmdvdi5ydS8iPmh0dHA6Ly9lYWlzLnJrbi5nb3YucnUvPC9hPjwvcD4NCg0KPHAgY2xhc3M9TXNvTm9ybWFsIGFsaWduPWNlbnRlciBzdHlsZT0ndGV4dC1hbGlnbjpjZW50ZXInPjxvOnA+Jm5ic3A7PC9vOnA+PC9wPg0KDQo8cCBjbGFzcz1Nc29Ob3JtYWwgYWxpZ249Y2VudGVyIHN0eWxlPSd0ZXh0LWFsaWduOmNlbnRlcic+PGIgc3R5bGU9J21zby1iaWRpLWZvbnQtd2VpZ2h0Og0Kbm9ybWFsJz7QxcXR0tAg5O7s5e3t+/Ug6Ozl7Swg8+rg5+Dy5evl6SDx8vDg7ej2IPHg6fLu4iDiIPHl8uggq8jt8uXw7eXyuyDoDQrx5fLl4vv1IODk8OXx7uIsIO/u5+Lu6//++ej1IOjk5e3y6PTo9ujw7uLg8vwg8eDp8vsg4iDx5fLoIKvI7fLl8O3l8rssDQrx7uTl8Obg+ejlIOjt9O7w7OD26P4sIPDg8e/w7vHy8ODt/+Xs8/4g8SDt4PDz+OXt6OXsIOjx6uv+9+jy5ev87fv1IO/w4OIuPG86cD48L286cD48L2I+PC9wPg0KDQo8cCBjbGFzcz1Nc29Ob3JtYWwgYWxpZ249Y2VudGVyIHN0eWxlPSd0ZXh0LWFsaWduOmNlbnRlcic+xOXp8fLi8+XyIO3gDQru8e3u4uDt6Ogg9OXk5fDg6/zt7uPuIOfg6u7t4CDu8iAyIOj+6/8gMjAxMyDj7uTgILkgMTg3LdTHIKvOIOLt5fHl7ejoDQro5+zl7eXt6Okg4iDu8uTl6/zt++Ug5+Dq7u3u5ODy5ev87fvlIODq8vsg0O7x8ejp8eru6SDU5eTl8OD26Ogg7+4g4u7v8O7x4OwNCufg+ejy+yDo7fLl6+vl6vLz4Ov87fv1IO/w4OIg4iDo7fTu8Ozg9uju7e3uLfLl6+Xq7uzs8+3o6uD26O7t7fv1IPHl8v/1uy48L3A+DQoNCjxwIGNsYXNzPU1zb05vcm1hbCBhbGlnbj1jZW50ZXIgc3R5bGU9J3RleHQtYWxpZ246Y2VudGVyJz7P8O7i5fDo8vwg7eAg8eDp8uUNCtDO0crOzM3AxMfO0OAgPGEgaHJlZj0iaHR0cDovL25hcC5ya24uZ292LnJ1L3JlZXN0ci8iPmh0dHA6Ly9uYXAucmtuLmdvdi5ydS9yZWVzdHIvPC9hPjwvcD4NCg0KPHAgY2xhc3M9TXNvTm9ybWFsIGFsaWduPWNlbnRlciBzdHlsZT0ndGV4dC1hbGlnbjpjZW50ZXInPjxvOnA+Jm5ic3A7PC9vOnA+PC9wPg0KDQo8cCBjbGFzcz1Nc29Ob3JtYWwgYWxpZ249Y2VudGVyIHN0eWxlPSd0ZXh0LWFsaWduOmNlbnRlcic+PGIgc3R5bGU9J21zby1iaWRpLWZvbnQtd2VpZ2h0Og0Kbm9ybWFsJz7UxcTF0MDL3M3bySDRz8jRzsog/erx8vDl7Ojx8vHq6PUg7ODy5fDo4Ovu4i48bzpwPjwvbzpwPjwvYj48L3A+DQoNCjxwIGNsYXNzPU1zb05vcm1hbCBhbGlnbj1jZW50ZXIgc3R5bGU9J3RleHQtYWxpZ246Y2VudGVyJz7E5enx8uLz5fIg7eANCu7x7e7i4O3o6CDx8uDy/OggMTMg1OXk5fDg6/zt7uPuIOfg6u7t4CDu8iAyNS4wNy4yMDAyILkgMTE0LdTHIKvODQrv8O7y6OLu5OXp8fLi6Ogg/erx8vDl7Ojx8vHq7ukg5OX/8uXr/O3u8fLouy48L3A+DQoNCjxwIGNsYXNzPU1zb05vcm1hbCBhbGlnbj1jZW50ZXIgc3R5bGU9J3RleHQtYWxpZ246Y2VudGVyJz7P8O7i5fDo8vwg7eAg8eDp8uUNCszIzcjR0sXQ0dLCwCDe0dLI1sjIINDUIDxhIGhyZWY9Imh0dHA6Ly9taW5qdXN0LnJ1L3J1L2V4dHJlbWlzdC1tYXRlcmlhbHMiPmh0dHA6Ly9taW5qdXN0LnJ1L3J1L2V4dHJlbWlzdC1tYXRlcmlhbHM8L2E+PC9wPg0KDQo8cCBjbGFzcz1Nc29Ob3JtYWwgYWxpZ249Y2VudGVyIHN0eWxlPSd0ZXh0LWFsaWduOmNlbnRlcic+PG86cD4mbmJzcDs8L286cD48L3A+DQoKPHAgY2xhc3M9TXNvTm9ybWFsIGFsaWduPWNlbnRlciBzdHlsZT0ndGV4dC1hbGlnbjpjZW50ZXInPjxiIHN0eWxlPSdtc28tYmlkaS1mb250LXdlaWdodDoNCm5vcm1hbCc+0+3o4uXw8eDr/O376SDx5fDi6PE8bzpwPjwvbzpwPjwvYj48L3A+DQoNCjxwIGNsYXNzPU1zb05vcm1hbCBhbGlnbj1jZW50ZXIgc3R5bGU9J3RleHQtYWxpZ246Y2VudGVyJz7v8O7i5fDq6CDu4/Dg7ej35e3o/yDk7vHy8+/gIOog8eDp8uDsIOggKOjr6Ckg8fLw4O3o9uDsIPHg6fLu4grx5fLoIKvI7fLl8O3l8rs8L3A+DQoNCjxwIGNsYXNzPU1zb05vcm1hbCBhbGlnbj1jZW50ZXIgc3R5bGU9J3RleHQtYWxpZ246Y2VudGVyJz7P8O7i5fDo8vwg7eAg8eDp8uUNCtDKzSA8YSBocmVmPSJodHRwOi8vYmxvY2tsaXN0LnJrbi5nb3YucnUiPmh0dHA6Ly9ibG9ja2xpc3QucmtuLmdvdi5ydTwvYT48L3A+DQoNCjxwIGNsYXNzPU1zb05vcm1hbCBhbGlnbj1jZW50ZXIgc3R5bGU9J3RleHQtYWxpZ246Y2VudGVyJz48bzpwPiZuYnNwOzwvbzpwPjwvcD4NCgoKDQo8cCBjbGFzcz1Nc29Ob3JtYWwgYWxpZ249Y2VudGVyIHN0eWxlPSd0ZXh0LWFsaWduOmNlbnRlcic+z/Do7e7x6OwgwuDsIPHi7ugNCujn4ujt5e3o/yDn4CDk7vHy4OLr5e3t++Ug7eXz5O7h8fLi4C48L3A+DQoNCjxwIGNsYXNzPU1zb05vcm1hbD48bzpwPiZuYnNwOzwvbzpwPjwvcD4NCg0KPC9kaXY+DQoNCjwvYm9keT4NCg0KPC9odG1sPg0K\\\", \\\"format\\\": \\\"base64\\\"}, \\\"headers\\\": {\\\"content-encoding\\\": \\\"\\\", \\\"Accept-Ranges\\\": \\\"bytes\\\", \\\"Server\\\": \\\"Apache/2.2.29 (FreeBSD) mod_ssl/2.2.29 OpenSSL/1.0.1j-freebsd DAV/2\\\", \\\"Last-Modified\\\": \\\"Wed, 27 Jun 2018 13:06:11 GMT\\\", \\\"ETag\\\": \\\"\\\\\\\"43a9801-7bcc-56f9f475836c0\\\\\\\"\\\", \\\"Date\\\": \\\"Tue, 03 Mar 2020 09:15:05 GMT\\\", \\\"Content-Type\\\": \\\"text/html\\\"}, \\\"code\\\": 200}}, {\\\"failure\\\": null, \\\"request\\\": {\\\"body\\\": null, \\\"headers\\\": {\\\"Accept-Language\\\": \\\"en-US;q=0.8,en;q=0.5\\\", \\\"Accept\\\": \\\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\\\", \\\"User-Agent\\\": \\\"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36\\\"}, \\\"url\\\": \\\"http://rutor.org/\\\", \\\"method\\\": \\\"GET\\\", \\\"tor\\\": {\\\"is_tor\\\": false, \\\"exit_name\\\": null, \\\"exit_ip\\\": null}}, \\\"response\\\": {\\\"body\\\": null, \\\"headers\\\": {\\\"Location\\\": \\\"http://89.223.47.135/index.html\\\", \\\"Pragma\\\": \\\"no-cache\\\", \\\"Cache-Control\\\": \\\"max-age=0, no-cache, no-store, must-revalidate\\\"}, \\\"code\\\": 302}}], \\\"tcp_connect\\\": [{\\\"status\\\": {\\\"failure\\\": null, \\\"success\\\": true, \\\"blocked\\\": false}, \\\"ip\\\": \\\"5.61.49.61\\\", \\\"port\\\": 80}], \\\"blocking\\\": \\\"http-diff\\\", \\\"status_code_match\\\": true}, \\\"software_version\\\": \\\"2.2.0\\\", \\\"test_runtime\\\": 1.55674409866333, \\\"test_start_time\\\": \\\"2020-03-03 08:52:44\\\", \\\"input_hashes\\\": [], \\\"software_name\\\": \\\"ooniprobe\\\", \\\"options\\\": [\\\"--file\\\", \\\"$citizenlab_${probe_cc}_urls\\\"], \\\"data_format_version\\\": \\\"0.2.0\\\", \\\"measurement_start_time\\\": \\\"2020-03-03 09:15:05\\\", \\\"test_version\\\": \\\"0.3.0\\\", \\\"probe_city\\\": null, \\\"test_name\\\": \\\"web_connectivity\\\", \\\"id\\\": \\\"8f175a20-7732-4cf8-bb5e-2af66c781572\\\", \\\"input\\\": \\\"http://rutor.org/\\\", \\\"probe_ip\\\": \\\"127.0.0.1\\\", \\\"probe_cc\\\": \\\"RU\\\", \\\"probe_asn\\\": \\\"AS42668\\\", \\\"annotations\\\": {\\\"platform\\\": \\\"linux\\\"}, \\\"test_helpers\\\": {\\\"backend\\\": {\\\"type\\\": \\\"onion\\\", \\\"address\\\": \\\"httpo://o7mcp5y4ibyjkcgs.onion\\\"}}, \\\"report_id\\\": \\\"20200303T085244Z_AS42668_UThI3Fdoo0IZ6610604dd0CGkhd7oQV6QLWWzZDVLJ35oGxBO4\\\", \\\"measurement_uid\\\": \\\"01202003039e13e3e38be1918d3a64c2ec27ea22\\\"}\\n\",\"category_code\":\"\",\"verification_status\":\"unverified\"}" +} \ No newline at end of file diff --git a/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-0120200303c6ba9056fe7973cc6b51d15e2ebe18_full-true.json b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-0120200303c6ba9056fe7973cc6b51d15e2ebe18_full-true.json new file mode 100644 index 000000000..da38287f0 --- /dev/null +++ b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-0120200303c6ba9056fe7973cc6b51d15e2ebe18_full-true.json @@ -0,0 +1,5 @@ +{ + "status": 200, + "contentType": "application/json", + "body": "{\"input\":\"http://www.efindlove.com/\",\"measurement_start_time\":\"2020-03-03T06:46:06Z\",\"measurement_uid\":\"0120200303c6ba9056fe7973cc6b51d15e2ebe18\",\"report_id\":\"20200303T073101Z_AS6830_ritWNm1FDBJJCm0SzcLhucF1wrRJM5zQVVssPXwxhwRitw949v\",\"test_name\":\"web_connectivity\",\"test_start_time\":\"2020-03-03T06:31:00Z\",\"probe_asn\":6830,\"probe_cc\":\"IE\",\"scores\":\"{\\\"blocking_general\\\":1.0,\\\"blocking_global\\\":0.0,\\\"blocking_country\\\":0.0,\\\"blocking_isp\\\":0.0,\\\"blocking_local\\\":0.0,\\\"analysis\\\":{\\\"blocking_type\\\":\\\"http-diff\\\"}}\",\"anomaly\":true,\"confirmed\":false,\"failure\":false,\"raw_measurement\":\"{\\\"test_keys\\\": {\\\"accessible\\\": false, \\\"control\\\": {\\\"tcp_connect\\\": {\\\"204.11.56.48:80\\\": {\\\"status\\\": true, \\\"failure\\\": null}}, \\\"http_request\\\": {\\\"body_length\\\": 272, \\\"status_code\\\": 200, \\\"title\\\": \\\"\\\", \\\"failure\\\": null, \\\"headers\\\": {\\\"Date\\\": \\\"Tue, 03 Mar 2020 07:46:08 GMT\\\", \\\"Cache-Control\\\": \\\"private\\\", \\\"Content-Type\\\": \\\"text/html; charset=UTF-8\\\", \\\"ntCoent-Length\\\": \\\"272\\\", \\\"Server\\\": \\\"Apache\\\"}}, \\\"dns\\\": {\\\"failure\\\": null, \\\"addrs\\\": [\\\"204.11.56.48\\\"]}}, \\\"control_failure\\\": null, \\\"socksproxy\\\": null, \\\"headers_match\\\": false, \\\"http_experiment_failure\\\": null, \\\"agent\\\": \\\"redirect\\\", \\\"title_match\\\": null, \\\"client_resolver\\\": \\\"89.101.251.71\\\", \\\"retries\\\": 1, \\\"dns_consistency\\\": \\\"consistent\\\", \\\"dns_experiment_failure\\\": null, \\\"body_proportion\\\": 0.034274193548387094, \\\"queries\\\": [{\\\"resolver_hostname\\\": null, \\\"query_type\\\": \\\"A\\\", \\\"hostname\\\": \\\"www.efindlove.com\\\", \\\"answers\\\": [{\\\"ipv4\\\": \\\"204.11.56.48\\\", \\\"answer_type\\\": \\\"A\\\"}], \\\"failure\\\": null, \\\"resolver_port\\\": null}], \\\"body_length_match\\\": false, \\\"requests\\\": [{\\\"failure\\\": null, \\\"request\\\": {\\\"body\\\": null, \\\"headers\\\": {\\\"Accept-Language\\\": \\\"en-US;q=0.8,en;q=0.5\\\", \\\"Accept\\\": \\\"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\\\", \\\"User-Agent\\\": \\\"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36\\\"}, \\\"url\\\": \\\"http://www.efindlove.com/\\\", \\\"method\\\": \\\"GET\\\", \\\"tor\\\": {\\\"is_tor\\\": false, \\\"exit_name\\\": null, \\\"exit_ip\\\": null}}, \\\"response\\\": {\\\"body\\\": \\\"\\\\r\\\\n\\\\r\\\\n\\\\r\\\\n\\\\r\\\\n\\\\r\\\\n\\\\r\\\\n
\\\\r\\\\n

Error. Page cannot be displayed. Please contact your service provider for more details. (17)

\\\\r\\\\n
\\\\r\\\\n\\\\r\\\\n\\\", \\\"headers\\\": {\\\"Date\\\": \\\"Tue, 03 Mar 2020 07:46:06 GMT\\\", \\\"Server\\\": \\\"Apache\\\", \\\"Content-Type\\\": \\\"text/html; charset=UTF-8\\\", \\\"content-encoding\\\": \\\"\\\"}, \\\"code\\\": 200}}], \\\"tcp_connect\\\": [{\\\"status\\\": {\\\"failure\\\": null, \\\"success\\\": true, \\\"blocked\\\": false}, \\\"ip\\\": \\\"204.11.56.48\\\", \\\"port\\\": 80}], \\\"blocking\\\": \\\"http-diff\\\", \\\"status_code_match\\\": true}, \\\"software_version\\\": \\\"2.0.2\\\", \\\"test_runtime\\\": 1.2352650165557861, \\\"test_start_time\\\": \\\"2020-03-03 07:31:00\\\", \\\"input_hashes\\\": [], \\\"software_name\\\": \\\"ooniprobe\\\", \\\"options\\\": [\\\"--file\\\", \\\"$citizenlab_global_urls\\\"], \\\"data_format_version\\\": \\\"0.2.0\\\", \\\"measurement_start_time\\\": \\\"2020-03-03 07:46:06\\\", \\\"test_version\\\": \\\"0.1.0\\\", \\\"probe_city\\\": null, \\\"test_name\\\": \\\"web_connectivity\\\", \\\"id\\\": \\\"d8d854c5-84ce-4b71-ba3a-7a55569c393f\\\", \\\"input\\\": \\\"http://www.efindlove.com/\\\", \\\"probe_ip\\\": \\\"127.0.0.1\\\", \\\"probe_cc\\\": \\\"IE\\\", \\\"probe_asn\\\": \\\"AS6830\\\", \\\"annotations\\\": {\\\"platform\\\": \\\"linux\\\"}, \\\"test_helpers\\\": {\\\"backend\\\": {\\\"type\\\": \\\"onion\\\", \\\"address\\\": \\\"httpo://y3zq5fwelrzkkv3s.onion\\\"}}, \\\"report_id\\\": \\\"20200303T073101Z_AS6830_ritWNm1FDBJJCm0SzcLhucF1wrRJM5zQVVssPXwxhwRitw949v\\\", \\\"measurement_uid\\\": \\\"0120200303c6ba9056fe7973cc6b51d15e2ebe18\\\"}\\n\",\"category_code\":\"\",\"verification_status\":\"unverified\"}" +} \ No newline at end of file diff --git a/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-01202003044cadd4e9b30806be0e72a6e05e161a_full-true.json b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-01202003044cadd4e9b30806be0e72a6e05e161a_full-true.json new file mode 100644 index 000000000..0c7ffbc34 --- /dev/null +++ b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-01202003044cadd4e9b30806be0e72a6e05e161a_full-true.json @@ -0,0 +1,5 @@ +{ + "status": 200, + "contentType": "application/json", + "body": "{\"input\":\"\",\"measurement_start_time\":\"2020-03-04T17:37:43Z\",\"measurement_uid\":\"01202003044cadd4e9b30806be0e72a6e05e161a\",\"report_id\":\"20200304T191012Z_AS42610_fqDY31xiRoWEdKd4GWtV84UYpXG2RlpjBK7kd8rTLHIItqMnej\",\"test_name\":\"facebook_messenger\",\"test_start_time\":\"2020-03-04T04:52:38Z\",\"probe_asn\":42610,\"probe_cc\":\"RU\",\"scores\":\"{\\\"blocking_general\\\":4.0,\\\"blocking_global\\\":0.0,\\\"blocking_country\\\":0.0,\\\"blocking_isp\\\":0.0,\\\"blocking_local\\\":0.0,\\\"facebook_b_api_dns_consistent\\\":false,\\\"facebook_b_graph_dns_consistent\\\":false,\\\"facebook_edge_dns_consistent\\\":false,\\\"facebook_external_cdn_dns_consistent\\\":false,\\\"facebook_scontent_cdn_dns_consistent\\\":false,\\\"facebook_star_dns_consistent\\\":false,\\\"facebook_stun_dns_consistent\\\":false,\\\"facebook_dns_blocking\\\":true}\",\"anomaly\":true,\"confirmed\":false,\"failure\":false,\"raw_measurement\":\"{\\\"test_keys\\\": {\\\"facebook_scontent_cdn_dns_consistent\\\": false, \\\"facebook_stun_reachable\\\": null, \\\"facebook_edge_dns_consistent\\\": false, \\\"facebook_scontent_cdn_reachable\\\": null, \\\"socksproxy\\\": null, \\\"facebook_star_dns_consistent\\\": false, \\\"queries\\\": [{\\\"resolver_hostname\\\": null, \\\"query_type\\\": \\\"A\\\", \\\"hostname\\\": \\\"b-graph.facebook.com\\\", \\\"answers\\\": [{\\\"hostname\\\": \\\"star-mini.c10r.facebook.com\\\", \\\"answer_type\\\": \\\"CNAME\\\"}, {\\\"ipv4\\\": \\\"157.240.194.35\\\", \\\"answer_type\\\": \\\"A\\\"}], \\\"failure\\\": null, \\\"resolver_port\\\": null}, {\\\"resolver_hostname\\\": null, \\\"query_type\\\": \\\"A\\\", \\\"hostname\\\": \\\"b-api.facebook.com\\\", \\\"answers\\\": [{\\\"hostname\\\": \\\"star-mini.c10r.facebook.com\\\", \\\"answer_type\\\": \\\"CNAME\\\"}, {\\\"ipv4\\\": \\\"157.240.194.35\\\", \\\"answer_type\\\": \\\"A\\\"}], \\\"failure\\\": null, \\\"resolver_port\\\": null}, {\\\"resolver_hostname\\\": null, \\\"query_type\\\": \\\"A\\\", \\\"hostname\\\": \\\"edge-mqtt.facebook.com\\\", \\\"answers\\\": [{\\\"hostname\\\": \\\"mqtt.c10r.facebook.com\\\", \\\"answer_type\\\": \\\"CNAME\\\"}, {\\\"ipv4\\\": \\\"157.240.194.11\\\", \\\"answer_type\\\": \\\"A\\\"}], \\\"failure\\\": null, \\\"resolver_port\\\": null}, {\\\"resolver_hostname\\\": null, \\\"query_type\\\": \\\"A\\\", \\\"hostname\\\": \\\"star.c10r.facebook.com\\\", \\\"answers\\\": [{\\\"ipv4\\\": \\\"157.240.194.18\\\", \\\"answer_type\\\": \\\"A\\\"}], \\\"failure\\\": null, \\\"resolver_port\\\": null}, {\\\"resolver_hostname\\\": null, \\\"query_type\\\": \\\"A\\\", \\\"hostname\\\": \\\"stun.fbsbx.com\\\", \\\"answers\\\": [{\\\"hostname\\\": \\\"stun.c10r.facebook.com\\\", \\\"answer_type\\\": \\\"CNAME\\\"}, {\\\"ipv4\\\": \\\"157.240.194.19\\\", \\\"answer_type\\\": \\\"A\\\"}], \\\"failure\\\": null, \\\"resolver_port\\\": null}, {\\\"resolver_hostname\\\": null, \\\"query_type\\\": \\\"A\\\", \\\"hostname\\\": \\\"external.xx.fbcdn.net\\\", \\\"answers\\\": [{\\\"hostname\\\": \\\"scontent.xx.fbcdn.net\\\", \\\"answer_type\\\": \\\"CNAME\\\"}, {\\\"ipv4\\\": \\\"157.240.194.27\\\", \\\"answer_type\\\": \\\"A\\\"}], \\\"failure\\\": null, \\\"resolver_port\\\": null}, {\\\"resolver_hostname\\\": null, \\\"query_type\\\": \\\"A\\\", \\\"hostname\\\": \\\"scontent.xx.fbcdn.net\\\", \\\"answers\\\": [{\\\"ipv4\\\": \\\"157.240.194.27\\\", \\\"answer_type\\\": \\\"A\\\"}], \\\"failure\\\": null, \\\"resolver_port\\\": null}], \\\"agent\\\": \\\"redirect\\\", \\\"facebook_star_reachable\\\": null, \\\"facebook_b_api_reachable\\\": null, \\\"facebook_tcp_blocking\\\": false, \\\"facebook_external_cdn_reachable\\\": null, \\\"facebook_b_graph_dns_consistent\\\": false, \\\"facebook_edge_reachable\\\": null, \\\"facebook_b_api_dns_consistent\\\": false, \\\"tcp_connect\\\": [], \\\"facebook_external_cdn_dns_consistent\\\": false, \\\"facebook_b_graph_reachable\\\": null, \\\"facebook_stun_dns_consistent\\\": false, \\\"facebook_dns_blocking\\\": true}, \\\"software_version\\\": \\\"2.3.0\\\", \\\"measurement_start_time\\\": \\\"2020-03-04 18:37:43\\\", \\\"test_start_time\\\": \\\"2020-03-04 05:52:38\\\", \\\"probe_asn\\\": \\\"AS42610\\\", \\\"input_hashes\\\": [], \\\"annotations\\\": {\\\"platform\\\": \\\"macos\\\"}, \\\"software_name\\\": \\\"ooniprobe\\\", \\\"options\\\": [], \\\"data_format_version\\\": \\\"0.2.0\\\", \\\"test_runtime\\\": 0.0772850513458252, \\\"test_version\\\": \\\"0.5.0\\\", \\\"test_name\\\": \\\"facebook_messenger\\\", \\\"input\\\": null, \\\"probe_ip\\\": \\\"127.0.0.1\\\", \\\"probe_cc\\\": \\\"RU\\\", \\\"probe_city\\\": null, \\\"id\\\": \\\"92c34e6b-1952-47a2-aa28-b2c5c3bc8d3e\\\", \\\"test_helpers\\\": {}, \\\"report_id\\\": \\\"20200304T191012Z_AS42610_fqDY31xiRoWEdKd4GWtV84UYpXG2RlpjBK7kd8rTLHIItqMnej\\\", \\\"measurement_uid\\\": \\\"01202003044cadd4e9b30806be0e72a6e05e161a\\\"}\\n\",\"category_code\":\"\",\"verification_status\":\"unverified\"}" +} \ No newline at end of file diff --git a/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-01202004070b44da76babb5b2787229c716eb5c0_full-true.json b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-01202004070b44da76babb5b2787229c716eb5c0_full-true.json new file mode 100644 index 000000000..5c576875b --- /dev/null +++ b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-01202004070b44da76babb5b2787229c716eb5c0_full-true.json @@ -0,0 +1,5 @@ +{ + "status": 200, + "contentType": "application/json", + "body": "{\"input\":\"\",\"measurement_start_time\":\"2020-04-07T21:52:13Z\",\"measurement_uid\":\"01202004070b44da76babb5b2787229c716eb5c0\",\"report_id\":\"20200407T235214Z_AS3269_EIlT6478yDwpzYNO8f54Xl12aN4AbkK82OuCUZSYHh3cTKNoYF\",\"test_name\":\"facebook_messenger\",\"test_start_time\":\"2020-04-07T21:52:12Z\",\"probe_asn\":3269,\"probe_cc\":\"IT\",\"scores\":\"{\\\"blocking_general\\\":0,\\\"blocking_global\\\":0.0,\\\"blocking_country\\\":0.0,\\\"blocking_isp\\\":0.0,\\\"blocking_local\\\":0.0}\",\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"raw_measurement\":\"{\\\"software_name\\\": \\\"ooniprobe-android\\\", \\\"software_version\\\": \\\"2.3.2\\\", \\\"test_runtime\\\": 0.1593019962310791, \\\"test_start_time\\\": \\\"2020-04-07 23:52:12\\\", \\\"test_name\\\": \\\"facebook_messenger\\\", \\\"test_keys\\\": {\\\"facebook_scontent_cdn_dns_consistent\\\": true, \\\"facebook_external_cdn_dns_consistent\\\": true, \\\"facebook_stun_reachable\\\": null, \\\"facebook_scontent_cdn_reachable\\\": true, \\\"tcp_connect\\\": [{\\\"status\\\": {\\\"failure\\\": false, \\\"success\\\": true}, \\\"ip\\\": \\\"31.13.86.36\\\", \\\"port\\\": 443}, {\\\"status\\\": {\\\"failure\\\": false, \\\"success\\\": true}, \\\"ip\\\": \\\"31.13.86.4\\\", \\\"port\\\": 443}, {\\\"status\\\": {\\\"failure\\\": false, \\\"success\\\": true}, \\\"ip\\\": \\\"31.13.86.2\\\", \\\"port\\\": 443}, {\\\"status\\\": {\\\"failure\\\": false, \\\"success\\\": true}, \\\"ip\\\": \\\"31.13.86.4\\\", \\\"port\\\": 443}, {\\\"status\\\": {\\\"failure\\\": false, \\\"success\\\": true}, \\\"ip\\\": \\\"31.13.86.8\\\", \\\"port\\\": 443}, {\\\"status\\\": {\\\"failure\\\": false, \\\"success\\\": true}, \\\"ip\\\": \\\"157.240.20.35\\\", \\\"port\\\": 443}], \\\"facebook_edge_reachable\\\": true, \\\"facebook_star_dns_consistent\\\": true, \\\"facebook_edge_dns_consistent\\\": true, \\\"facebook_star_reachable\\\": true, \\\"client_resolver\\\": \\\"172.253.194.1\\\", \\\"facebook_b_api_reachable\\\": true, \\\"facebook_tcp_blocking\\\": false, \\\"facebook_external_cdn_reachable\\\": true, \\\"facebook_b_graph_dns_consistent\\\": true, \\\"facebook_dns_blocking\\\": false, \\\"facebook_b_api_dns_consistent\\\": true, \\\"facebook_stun_dns_consistent\\\": true, \\\"queries\\\": [{\\\"engine\\\": \\\"system\\\", \\\"resolver_hostname\\\": null, \\\"query_type\\\": \\\"A\\\", \\\"hostname\\\": \\\"b-graph.facebook.com\\\", \\\"answers\\\": [{\\\"hostname\\\": \\\"star-mini.c10r.facebook.com\\\", \\\"answer_type\\\": \\\"CNAME\\\", \\\"ttl\\\": null}, {\\\"ipv4\\\": \\\"157.240.20.35\\\", \\\"answer_type\\\": \\\"A\\\", \\\"ttl\\\": null}], \\\"failure\\\": null, \\\"resolver_port\\\": null}, {\\\"engine\\\": \\\"system\\\", \\\"resolver_hostname\\\": null, \\\"query_type\\\": \\\"A\\\", \\\"hostname\\\": \\\"b-api.facebook.com\\\", \\\"answers\\\": [{\\\"hostname\\\": \\\"star-mini.c10r.facebook.com\\\", \\\"answer_type\\\": \\\"CNAME\\\", \\\"ttl\\\": null}, {\\\"ipv4\\\": \\\"31.13.86.36\\\", \\\"answer_type\\\": \\\"A\\\", \\\"ttl\\\": null}], \\\"failure\\\": null, \\\"resolver_port\\\": null}, {\\\"engine\\\": \\\"system\\\", \\\"resolver_hostname\\\": null, \\\"query_type\\\": \\\"A\\\", \\\"hostname\\\": \\\"edge-mqtt.facebook.com\\\", \\\"answers\\\": [{\\\"hostname\\\": \\\"mqtt.c10r.facebook.com\\\", \\\"answer_type\\\": \\\"CNAME\\\", \\\"ttl\\\": null}, {\\\"ipv4\\\": \\\"31.13.86.2\\\", \\\"answer_type\\\": \\\"A\\\", \\\"ttl\\\": null}], \\\"failure\\\": null, \\\"resolver_port\\\": null}, {\\\"engine\\\": \\\"system\\\", \\\"resolver_hostname\\\": null, \\\"query_type\\\": \\\"A\\\", \\\"hostname\\\": \\\"scontent.xx.fbcdn.net\\\", \\\"answers\\\": [{\\\"hostname\\\": \\\"scontent.xx.fbcdn.net\\\", \\\"answer_type\\\": \\\"CNAME\\\", \\\"ttl\\\": null}, {\\\"ipv4\\\": \\\"31.13.86.4\\\", \\\"answer_type\\\": \\\"A\\\", \\\"ttl\\\": null}], \\\"failure\\\": null, \\\"resolver_port\\\": null}, {\\\"engine\\\": \\\"system\\\", \\\"resolver_hostname\\\": null, \\\"query_type\\\": \\\"A\\\", \\\"hostname\\\": \\\"star.c10r.facebook.com\\\", \\\"answers\\\": [{\\\"hostname\\\": \\\"star.c10r.facebook.com\\\", \\\"answer_type\\\": \\\"CNAME\\\", \\\"ttl\\\": null}, {\\\"ipv4\\\": \\\"31.13.86.8\\\", \\\"answer_type\\\": \\\"A\\\", \\\"ttl\\\": null}], \\\"failure\\\": null, \\\"resolver_port\\\": null}, {\\\"engine\\\": \\\"system\\\", \\\"resolver_hostname\\\": null, \\\"query_type\\\": \\\"A\\\", \\\"hostname\\\": \\\"external.xx.fbcdn.net\\\", \\\"answers\\\": [{\\\"hostname\\\": \\\"scontent.xx.fbcdn.net\\\", \\\"answer_type\\\": \\\"CNAME\\\", \\\"ttl\\\": null}, {\\\"ipv4\\\": \\\"31.13.86.4\\\", \\\"answer_type\\\": \\\"A\\\", \\\"ttl\\\": null}], \\\"failure\\\": null, \\\"resolver_port\\\": null}, {\\\"engine\\\": \\\"system\\\", \\\"resolver_hostname\\\": null, \\\"query_type\\\": \\\"A\\\", \\\"hostname\\\": \\\"stun.fbsbx.com\\\", \\\"answers\\\": [{\\\"hostname\\\": \\\"stun.c10r.facebook.com\\\", \\\"answer_type\\\": \\\"CNAME\\\", \\\"ttl\\\": null}, {\\\"ipv4\\\": \\\"31.13.86.5\\\", \\\"answer_type\\\": \\\"A\\\", \\\"ttl\\\": null}], \\\"failure\\\": null, \\\"resolver_port\\\": null}], \\\"facebook_b_graph_reachable\\\": true}, \\\"probe_ip\\\": \\\"127.0.0.1\\\", \\\"id\\\": \\\"4a7fd22c-524b-4edd-8e59-2df80b959360\\\", \\\"data_format_version\\\": \\\"0.2.0\\\", \\\"measurement_start_time\\\": \\\"2020-04-07 23:52:13\\\", \\\"options\\\": [], \\\"test_version\\\": \\\"0.0.2\\\", \\\"input_hashes\\\": [], \\\"input\\\": null, \\\"probe_city\\\": null, \\\"report_id\\\": \\\"20200407T235214Z_AS3269_EIlT6478yDwpzYNO8f54Xl12aN4AbkK82OuCUZSYHh3cTKNoYF\\\", \\\"probe_asn\\\": \\\"AS3269\\\", \\\"annotations\\\": {\\\"engine_name\\\": \\\"libmeasurement_kit\\\", \\\"engine_version_full\\\": \\\"v0.10.11\\\", \\\"engine_version\\\": \\\"0.10.11\\\", \\\"platform\\\": \\\"android\\\", \\\"flavor\\\": \\\"full\\\", \\\"network_type\\\": \\\"wifi\\\"}, \\\"test_helpers\\\": {}, \\\"probe_cc\\\": \\\"IT\\\", \\\"measurement_uid\\\": \\\"01202004070b44da76babb5b2787229c716eb5c0\\\"}\\n\",\"category_code\":\"\",\"verification_status\":\"unverified\"}" +} \ No newline at end of file diff --git a/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20201029043459.005820_RU_webconnectivity_604f1cb2579d144d_full-true.json b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20201029043459.005820_RU_webconnectivity_604f1cb2579d144d_full-true.json new file mode 100644 index 000000000..566957a34 --- /dev/null +++ b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20201029043459.005820_RU_webconnectivity_604f1cb2579d144d_full-true.json @@ -0,0 +1,5 @@ +{ + "status": 200, + "contentType": "application/json", + "body": "{\"input\":\"http://www.pokerroom.com/\",\"measurement_start_time\":\"2020-10-29T04:59:31Z\",\"measurement_uid\":\"20201029043459.005820_RU_webconnectivity_604f1cb2579d144d\",\"report_id\":\"20201029T041242Z_webconnectivity_RU_51604_n1_I0rABGogC4OLATJx\",\"test_name\":\"web_connectivity\",\"test_start_time\":\"2020-10-29T04:12:41Z\",\"probe_asn\":51604,\"probe_cc\":\"RU\",\"scores\":\"{\\\"blocking_general\\\":0.0,\\\"blocking_global\\\":0.0,\\\"blocking_country\\\":0.0,\\\"blocking_isp\\\":0.0,\\\"blocking_local\\\":0.0}\",\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"raw_measurement\":\"{\\\"test_keys\\\":{\\\"accessible\\\":false,\\\"retries\\\":1,\\\"control_failure\\\":null,\\\"socksproxy\\\":null,\\\"http_experiment_failure\\\":\\\"response_never_received\\\",\\\"agent\\\":\\\"redirect\\\",\\\"headers_match\\\":null,\\\"client_resolver\\\":\\\"74.125.74.7\\\",\\\"control\\\":{\\\"tcp_connect\\\":{\\\"195.72.134.72:80\\\":{\\\"status\\\":true,\\\"failure\\\":null}},\\\"http_request\\\":{\\\"body_length\\\":-1,\\\"status_code\\\":-1,\\\"headers\\\":{},\\\"failure\\\":\\\"unknown_error\\\"},\\\"dns\\\":{\\\"failure\\\":null,\\\"addrs\\\":[\\\"195.72.134.72\\\"]}},\\\"dns_consistency\\\":\\\"consistent\\\",\\\"dns_experiment_failure\\\":null,\\\"status_code_match\\\":null,\\\"queries\\\":[{\\\"resolver_hostname\\\":null,\\\"query_type\\\":\\\"A\\\",\\\"hostname\\\":\\\"www.pokerroom.com\\\",\\\"answers\\\":[{\\\"ipv4\\\":\\\"195.72.134.72\\\",\\\"answer_type\\\":\\\"A\\\"}],\\\"failure\\\":null,\\\"resolver_port\\\":null}],\\\"body_length_match\\\":null,\\\"tcp_connect\\\":[{\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true,\\\"blocked\\\":false},\\\"ip\\\":\\\"195.72.134.72\\\",\\\"port\\\":80}],\\\"requests\\\":[{\\\"failure\\\":\\\"response_never_received\\\",\\\"request\\\":{\\\"body\\\":null,\\\"headers\\\":{\\\"Accept-Language\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 6.1) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/47.0.2526.106 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"url\\\":\\\"http:\\\\/\\\\/www.pokerroom.com\\\\/\\\",\\\"tor\\\":{\\\"is_tor\\\":false,\\\"exit_ip\\\":null,\\\"exit_name\\\":null}},\\\"response\\\":null},{\\\"failure\\\":\\\"response_never_received\\\",\\\"request\\\":{\\\"body\\\":null,\\\"headers\\\":{\\\"Accept-Language\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 6.1) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/47.0.2526.106 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"url\\\":\\\"http:\\\\/\\\\/www.pokerroom.com\\\\/\\\",\\\"tor\\\":{\\\"is_tor\\\":false,\\\"exit_ip\\\":null,\\\"exit_name\\\":null}},\\\"response\\\":null},{\\\"failure\\\":\\\"response_never_received\\\",\\\"request\\\":{\\\"body\\\":null,\\\"headers\\\":{\\\"Accept-Language\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 6.1) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/47.0.2526.106 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"url\\\":\\\"http:\\\\/\\\\/www.pokerroom.com\\\\/\\\",\\\"tor\\\":{\\\"is_tor\\\":false,\\\"exit_ip\\\":null,\\\"exit_name\\\":null}},\\\"response\\\":null}],\\\"blocking\\\":false},\\\"software_version\\\":\\\"2.1.0\\\",\\\"measurement_start_time\\\":\\\"2020-10-29 04:59:31\\\",\\\"test_start_time\\\":\\\"2020-10-29 04:12:41\\\",\\\"probe_asn\\\":\\\"AS51604\\\",\\\"test_name\\\":\\\"web_connectivity\\\",\\\"software_name\\\":\\\"ooniprobe\\\",\\\"annotations\\\":{\\\"platform\\\":\\\"linux\\\"},\\\"data_format_version\\\":\\\"0.2.0\\\",\\\"test_runtime\\\":0.6227068901,\\\"options\\\":[\\\"--file\\\",\\\"$citizenlab_global_urls\\\"],\\\"test_version\\\":\\\"0.1.0\\\",\\\"input_hashes\\\":[],\\\"input\\\":\\\"http:\\\\/\\\\/www.pokerroom.com\\\\/\\\",\\\"probe_ip\\\":\\\"127.0.0.1\\\",\\\"report_id\\\":\\\"20201029T041242Z_webconnectivity_RU_51604_n1_I0rABGogC4OLATJx\\\",\\\"probe_city\\\":null,\\\"id\\\":\\\"2bd8cd4f-245f-4703-a350-1c177d3f3fe8\\\",\\\"test_helpers\\\":{\\\"backend\\\":{\\\"type\\\":\\\"onion\\\",\\\"address\\\":\\\"httpo:\\\\/\\\\/y3zq5fwelrzkkv3s.onion\\\"}},\\\"probe_cc\\\":\\\"RU\\\"}\\n\",\"category_code\":\"\",\"verification_status\":\"unverified\"}" +} \ No newline at end of file diff --git a/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20210414233242.034345_BR_signal_390dca674022005a_full-true.json b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20210414233242.034345_BR_signal_390dca674022005a_full-true.json new file mode 100644 index 000000000..3bde09d2f --- /dev/null +++ b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20210414233242.034345_BR_signal_390dca674022005a_full-true.json @@ -0,0 +1,5 @@ +{ + "status": 200, + "contentType": "application/json", + "body": "{\"input\":\"\",\"measurement_start_time\":\"2021-04-14T23:32:39Z\",\"measurement_uid\":\"20210414233242.034345_BR_signal_390dca674022005a\",\"report_id\":\"20210414T233239Z_signal_BR_271354_n1_zCvPVXKJT7kxPQI4\",\"test_name\":\"signal\",\"test_start_time\":\"2021-04-14T23:32:39Z\",\"probe_asn\":271354,\"probe_cc\":\"BR\",\"scores\":\"{\\\"blocking_general\\\":0.0,\\\"blocking_global\\\":0.0,\\\"blocking_country\\\":0.0,\\\"blocking_isp\\\":0.0,\\\"blocking_local\\\":0.0}\",\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"raw_measurement\":\"{\\\"annotations\\\":{\\\"engine_name\\\":\\\"ooniprobe-engine\\\",\\\"engine_version\\\":\\\"3.9.1\\\",\\\"platform\\\":\\\"linux\\\"},\\\"data_format_version\\\":\\\"0.2.0\\\",\\\"extensions\\\":{\\\"dnst\\\":0,\\\"httpt\\\":0,\\\"netevents\\\":0,\\\"tcpconnect\\\":0,\\\"tlshandshake\\\":0,\\\"tunnel\\\":0},\\\"input\\\":null,\\\"measurement_start_time\\\":\\\"2021-04-14 23:32:39\\\",\\\"probe_asn\\\":\\\"AS271354\\\",\\\"probe_cc\\\":\\\"BR\\\",\\\"probe_ip\\\":\\\"127.0.0.1\\\",\\\"probe_network_name\\\":\\\"\\\",\\\"report_id\\\":\\\"20210414T233239Z_signal_BR_271354_n1_zCvPVXKJT7kxPQI4\\\",\\\"resolver_asn\\\":\\\"AS271354\\\",\\\"resolver_ip\\\":\\\"150.164.0.80\\\",\\\"resolver_network_name\\\":\\\"\\\",\\\"software_name\\\":\\\"ooniprobe-cli\\\",\\\"software_version\\\":\\\"3.9.1\\\",\\\"test_keys\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failed_operation\\\":null,\\\"failure\\\":null,\\\"network_events\\\":[{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":0.000110163},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":0.000125229},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.000231194},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.111189205},{\\\"address\\\":\\\"142.250.78.211:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.127046982},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_start\\\",\\\"t\\\":0.127064936},{\\\"failure\\\":null,\\\"num_bytes\\\":288,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.12727816},{\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.254987081},{\\\"failure\\\":null,\\\"num_bytes\\\":1029,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.255221861},{\\\"failure\\\":null,\\\"num_bytes\\\":64,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.255983835},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_done\\\",\\\"t\\\":0.256008464},{\\\"failure\\\":null,\\\"num_bytes\\\":86,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.256110192},{\\\"failure\\\":null,\\\"num_bytes\\\":207,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.256203731},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_headers\\\",\\\"t\\\":0.256205534},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_request\\\",\\\"t\\\":0.256205894},{\\\"failure\\\":null,\\\"num_bytes\\\":93,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.383012694},{\\\"failure\\\":null,\\\"num_bytes\\\":31,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.383072139},{\\\"failure\\\":null,\\\"num_bytes\\\":96,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.403864849},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_first_response_byte\\\",\\\"t\\\":0.403922701},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_metadata\\\",\\\"t\\\":0.403984973},{\\\"failure\\\":null,\\\"num_bytes\\\":144,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.40699965},{\\\"failure\\\":null,\\\"num_bytes\\\":39,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.407095307},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_body_snapshot\\\",\\\"t\\\":0.40711641},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":0.407117532},{\\\"failure\\\":null,\\\"num_bytes\\\":24,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.407149617},{\\\"failure\\\":\\\"unknown_failure: read tcp [scrubbed]->[scrubbed]: use of closed network connection\\\",\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.40742166},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":0.000271868},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":0.000275619},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.00034073},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.379155656},{\\\"address\\\":\\\"13.248.212.111:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.507043013},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_start\\\",\\\"t\\\":0.507061525},{\\\"failure\\\":null,\\\"num_bytes\\\":307,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.507267531},{\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.634980515},{\\\"failure\\\":null,\\\"num_bytes\\\":1961,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.635036774},{\\\"failure\\\":null,\\\"num_bytes\\\":126,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.636087314},{\\\"failure\\\":null,\\\"num_bytes\\\":120,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.763240999},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_done\\\",\\\"t\\\":0.763287702},{\\\"failure\\\":null,\\\"num_bytes\\\":93,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.763401191},{\\\"failure\\\":null,\\\"num_bytes\\\":227,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.763490637},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_headers\\\",\\\"t\\\":0.763491868},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_request\\\",\\\"t\\\":0.763492618},{\\\"failure\\\":null,\\\"num_bytes\\\":38,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.76353642},{\\\"failure\\\":null,\\\"num_bytes\\\":234,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.891002799},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_first_response_byte\\\",\\\"t\\\":0.891074111},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_metadata\\\",\\\"t\\\":0.891145719},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_body_snapshot\\\",\\\"t\\\":0.891152606},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":0.891153589},{\\\"failure\\\":null,\\\"num_bytes\\\":31,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.891210591},{\\\"failure\\\":\\\"unknown_failure: read tcp [scrubbed]->[scrubbed]: use of closed network connection\\\",\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.891546601},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":0.407587233},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":0.407596103},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.40766254},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.739324256},{\\\"address\\\":\\\"52.85.213.41:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.751045569},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_start\\\",\\\"t\\\":0.751056165},{\\\"failure\\\":null,\\\"num_bytes\\\":284,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.75123953},{\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.762978381},{\\\"failure\\\":null,\\\"num_bytes\\\":911,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.763213953},{\\\"failure\\\":null,\\\"num_bytes\\\":1073,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.766964774},{\\\"failure\\\":null,\\\"num_bytes\\\":64,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.76788458},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_done\\\",\\\"t\\\":0.767906408},{\\\"failure\\\":null,\\\"num_bytes\\\":86,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.767999876},{\\\"failure\\\":null,\\\"num_bytes\\\":204,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.768086703},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_headers\\\",\\\"t\\\":0.768088461},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_request\\\",\\\"t\\\":0.768089124},{\\\"failure\\\":null,\\\"num_bytes\\\":71,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.778977486},{\\\"failure\\\":null,\\\"num_bytes\\\":31,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.779071006},{\\\"failure\\\":null,\\\"num_bytes\\\":550,\\\"operation\\\":\\\"read\\\",\\\"t\\\":1.254996196},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_first_response_byte\\\",\\\"t\\\":1.255062502},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_metadata\\\",\\\"t\\\":1.255142223},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_body_snapshot\\\",\\\"t\\\":1.255148981},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":1.255149857},{\\\"failure\\\":null,\\\"num_bytes\\\":24,\\\"operation\\\":\\\"write\\\",\\\"t\\\":1.255202156},{\\\"failure\\\":\\\"unknown_failure: read tcp [scrubbed]->[scrubbed]: use of closed network connection\\\",\\\"operation\\\":\\\"read\\\",\\\"t\\\":1.255527755},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":0.891710911},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":0.89172098},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.891783747},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.99119341},{\\\"address\\\":\\\"104.18.28.74:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":1.003035686},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_start\\\",\\\"t\\\":1.003046223},{\\\"failure\\\":null,\\\"num_bytes\\\":285,\\\"operation\\\":\\\"write\\\",\\\"t\\\":1.003252087},{\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"t\\\":1.018977026},{\\\"failure\\\":null,\\\"num_bytes\\\":1027,\\\"operation\\\":\\\"read\\\",\\\"t\\\":1.019204891},{\\\"failure\\\":null,\\\"num_bytes\\\":64,\\\"operation\\\":\\\"write\\\",\\\"t\\\":1.019882034},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_done\\\",\\\"t\\\":1.019923888},{\\\"failure\\\":null,\\\"num_bytes\\\":86,\\\"operation\\\":\\\"write\\\",\\\"t\\\":1.020017382},{\\\"failure\\\":null,\\\"num_bytes\\\":205,\\\"operation\\\":\\\"write\\\",\\\"t\\\":1.02010412},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_headers\\\",\\\"t\\\":1.02010555},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_request\\\",\\\"t\\\":1.020106131},{\\\"failure\\\":null,\\\"num_bytes\\\":71,\\\"operation\\\":\\\"read\\\",\\\"t\\\":1.030970613},{\\\"failure\\\":null,\\\"num_bytes\\\":31,\\\"operation\\\":\\\"write\\\",\\\"t\\\":1.031041691},{\\\"failure\\\":null,\\\"num_bytes\\\":707,\\\"operation\\\":\\\"read\\\",\\\"t\\\":1.703022298},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_first_response_byte\\\",\\\"t\\\":1.703126431},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_metadata\\\",\\\"t\\\":1.703208141},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_body_snapshot\\\",\\\"t\\\":1.703214955},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":1.703215781},{\\\"failure\\\":null,\\\"num_bytes\\\":24,\\\"operation\\\":\\\"write\\\",\\\"t\\\":1.703285147},{\\\"failure\\\":\\\"unknown_failure: read tcp [scrubbed]->[scrubbed]: use of closed network connection\\\",\\\"operation\\\":\\\"read\\\",\\\"t\\\":1.703552252},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":0.000110158},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":0.000118784},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.000225658},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":1.243068163},{\\\"address\\\":\\\"20.62.208.25:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":1.369519221},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_start\\\",\\\"t\\\":1.369528286},{\\\"failure\\\":null,\\\"num_bytes\\\":294,\\\"operation\\\":\\\"write\\\",\\\"t\\\":1.369703628},{\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"t\\\":1.506986824},{\\\"failure\\\":null,\\\"num_bytes\\\":1034,\\\"operation\\\":\\\"read\\\",\\\"t\\\":1.507037196},{\\\"failure\\\":null,\\\"num_bytes\\\":126,\\\"operation\\\":\\\"write\\\",\\\"t\\\":1.50789155},{\\\"failure\\\":null,\\\"num_bytes\\\":51,\\\"operation\\\":\\\"read\\\",\\\"t\\\":1.638978371},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_done\\\",\\\"t\\\":1.639055348},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_headers\\\",\\\"t\\\":1.639188488},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_request\\\",\\\"t\\\":1.639190086},{\\\"failure\\\":null,\\\"num_bytes\\\":319,\\\"operation\\\":\\\"write\\\",\\\"t\\\":1.639235024},{\\\"failure\\\":null,\\\"num_bytes\\\":400,\\\"operation\\\":\\\"read\\\",\\\"t\\\":1.766980042},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_first_response_byte\\\",\\\"t\\\":1.766999005},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_metadata\\\",\\\"t\\\":1.767069526},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_body_snapshot\\\",\\\"t\\\":1.767101373},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":1.767102256},{\\\"failure\\\":null,\\\"num_bytes\\\":31,\\\"operation\\\":\\\"write\\\",\\\"t\\\":1.767178019},{\\\"failure\\\":\\\"unknown_failure: read tcp [scrubbed]->[scrubbed]: use of closed network connection\\\",\\\"operation\\\":\\\"read\\\",\\\"t\\\":1.767439761},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":1.703708535},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":1.903081937},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":1.255787841},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":1.255795404},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":1.255858498},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":1.731205988},{\\\"address\\\":\\\"34.235.20.181:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":1.859039371},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_start\\\",\\\"t\\\":1.859049875},{\\\"failure\\\":null,\\\"num_bytes\\\":289,\\\"operation\\\":\\\"write\\\",\\\"t\\\":1.859258705},{\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"t\\\":1.98697843},{\\\"failure\\\":null,\\\"num_bytes\\\":2027,\\\"operation\\\":\\\"read\\\",\\\"t\\\":1.987025782},{\\\"failure\\\":null,\\\"num_bytes\\\":126,\\\"operation\\\":\\\"write\\\",\\\"t\\\":1.988116723},{\\\"failure\\\":null,\\\"num_bytes\\\":120,\\\"operation\\\":\\\"read\\\",\\\"t\\\":2.115016738},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_done\\\",\\\"t\\\":2.115088127},{\\\"failure\\\":null,\\\"num_bytes\\\":93,\\\"operation\\\":\\\"write\\\",\\\"t\\\":2.115214475},{\\\"failure\\\":null,\\\"num_bytes\\\":215,\\\"operation\\\":\\\"write\\\",\\\"t\\\":2.115315186},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_headers\\\",\\\"t\\\":2.11531685},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_request\\\",\\\"t\\\":2.115317311},{\\\"failure\\\":null,\\\"num_bytes\\\":38,\\\"operation\\\":\\\"write\\\",\\\"t\\\":2.115362726},{\\\"failure\\\":null,\\\"num_bytes\\\":38,\\\"operation\\\":\\\"read\\\",\\\"t\\\":2.238977712},{\\\"failure\\\":null,\\\"num_bytes\\\":170,\\\"operation\\\":\\\"read\\\",\\\"t\\\":2.242786895},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_first_response_byte\\\",\\\"t\\\":2.242848208},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_metadata\\\",\\\"t\\\":2.242927542},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_body_snapshot\\\",\\\"t\\\":2.242950392},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":2.242951339},{\\\"failure\\\":null,\\\"num_bytes\\\":31,\\\"operation\\\":\\\"write\\\",\\\"t\\\":2.2430071},{\\\"failure\\\":\\\"unknown_failure: read tcp [scrubbed]->[scrubbed]: use of closed network connection\\\",\\\"operation\\\":\\\"read\\\",\\\"t\\\":2.243281244}],\\\"queries\\\":[{\\\"answers\\\":[{\\\"asn\\\":15169,\\\"as_org_name\\\":\\\"Google LLC\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"142.250.78.211\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"storage.signal.org\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.111189205},{\\\"answers\\\":[{\\\"asn\\\":15169,\\\"as_org_name\\\":\\\"Google LLC\\\",\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"2800:3f0:4004:802::2013\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"storage.signal.org\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.111189205},{\\\"answers\\\":[{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"13.248.212.111\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"76.223.92.165\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"textsecure-service.whispersystems.org\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.379155656},{\\\"answers\\\":[{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"52.85.213.41\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"52.85.213.116\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"52.85.213.16\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"52.85.213.6\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"cdn.signal.org\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.739324256},{\\\"answers\\\":[{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"2600:9000:20fa:a00:1d:4f32:50c0:93a1\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"2600:9000:20fa:aa00:1d:4f32:50c0:93a1\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"2600:9000:20fa:0:1d:4f32:50c0:93a1\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"2600:9000:20fa:8600:1d:4f32:50c0:93a1\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"2600:9000:20fa:6600:1d:4f32:50c0:93a1\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"2600:9000:20fa:1a00:1d:4f32:50c0:93a1\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"2600:9000:20fa:4000:1d:4f32:50c0:93a1\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"2600:9000:20fa:3600:1d:4f32:50c0:93a1\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"cdn.signal.org\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.739324256},{\\\"answers\\\":[{\\\"asn\\\":13335,\\\"as_org_name\\\":\\\"Cloudflare, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"104.18.28.74\\\",\\\"ttl\\\":null},{\\\"asn\\\":13335,\\\"as_org_name\\\":\\\"Cloudflare, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"104.18.29.74\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"cdn2.signal.org\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.99119341},{\\\"answers\\\":[{\\\"asn\\\":13335,\\\"as_org_name\\\":\\\"Cloudflare, Inc.\\\",\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"2606:4700::6812:1d4a\\\",\\\"ttl\\\":null},{\\\"asn\\\":13335,\\\"as_org_name\\\":\\\"Cloudflare, Inc.\\\",\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"2606:4700::6812:1c4a\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"cdn2.signal.org\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.99119341},{\\\"answers\\\":[{\\\"asn\\\":8075,\\\"as_org_name\\\":\\\"Microsoft Corporation\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"20.62.208.25\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"api.directory.signal.org\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":1.243068163},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"127.0.0.1\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"uptime.signal.org\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":1.903081937},{\\\"answers\\\":[{\\\"asn\\\":14618,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"34.235.20.181\\\",\\\"ttl\\\":null},{\\\"asn\\\":14618,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.85.249.204\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"sfu.voip.signal.org\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":1.731205988},{\\\"answers\\\":[{\\\"asn\\\":14618,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"2600:1f18:1228:4c01:9b37:f4ae:e4c2:e694\\\",\\\"ttl\\\":null},{\\\"asn\\\":14618,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"2600:1f18:1228:4c00:e1da:2735:f374:3741\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"sfu.voip.signal.org\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":1.731205988}],\\\"requests\\\":[{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US;q=0.8,en;q=0.5\\\"],[\\\"Host\\\",\\\"storage.signal.org\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/89.0.4389.90 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"Host\\\":\\\"storage.signal.org\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/89.0.4389.90 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"https:\\\\/\\\\/storage.signal.org\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"{\\\\\\\"code\\\\\\\":404,\\\\\\\"message\\\\\\\":\\\\\\\"HTTP 404 Not Found\\\\\\\"}\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":404,\\\"headers_list\\\":[[\\\"Content-Length\\\",\\\"43\\\"],[\\\"Content-Type\\\",\\\"application\\\\/json\\\"],[\\\"Date\\\",\\\"Wed, 14 Apr 2021 23:32:39 GMT\\\"],[\\\"Vary\\\",\\\"Accept-Encoding\\\"],[\\\"Via\\\",\\\"1.1 google\\\"]],\\\"headers\\\":{\\\"Content-Length\\\":\\\"43\\\",\\\"Content-Type\\\":\\\"application\\\\/json\\\",\\\"Date\\\":\\\"Wed, 14 Apr 2021 23:32:39 GMT\\\",\\\"Vary\\\":\\\"Accept-Encoding\\\",\\\"Via\\\":\\\"1.1 google\\\"}},\\\"t\\\":0.000110163},{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US;q=0.8,en;q=0.5\\\"],[\\\"Host\\\",\\\"textsecure-service.whispersystems.org\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/89.0.4389.90 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"Host\\\":\\\"textsecure-service.whispersystems.org\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/89.0.4389.90 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"https:\\\\/\\\\/textsecure-service.whispersystems.org\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"{\\\\\\\"code\\\\\\\":404,\\\\\\\"message\\\\\\\":\\\\\\\"HTTP 404 Not Found\\\\\\\"}\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":404,\\\"headers_list\\\":[[\\\"Content-Length\\\",\\\"43\\\"],[\\\"Content-Type\\\",\\\"application\\\\/json\\\"],[\\\"Date\\\",\\\"Wed, 14 Apr 2021 23:32:40 GMT\\\"],[\\\"X-Signal-Timestamp\\\",\\\"1618443160243\\\"]],\\\"headers\\\":{\\\"Content-Length\\\":\\\"43\\\",\\\"Content-Type\\\":\\\"application\\\\/json\\\",\\\"Date\\\":\\\"Wed, 14 Apr 2021 23:32:40 GMT\\\",\\\"X-Signal-Timestamp\\\":\\\"1618443160243\\\"}},\\\"t\\\":0.000271868},{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US;q=0.8,en;q=0.5\\\"],[\\\"Host\\\",\\\"cdn.signal.org\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/89.0.4389.90 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"Host\\\":\\\"cdn.signal.org\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/89.0.4389.90 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"https:\\\\/\\\\/cdn.signal.org\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"\\\\nAccessDenied<\\\\/Code>Access Denied<\\\\/Message>M8TH7Y26FKEE89GB<\\\\/RequestId>hEI+aOKezVjd6cHQSDCEVwrawVo4PulcJq1\\\\/JaGUKksbJYBouQSNl+M+HXiKdrxatkJRKr8+5os=<\\\\/HostId><\\\\/Error>\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":403,\\\"headers_list\\\":[[\\\"Content-Type\\\",\\\"application\\\\/xml\\\"],[\\\"Date\\\",\\\"Wed, 14 Apr 2021 23:32:40 GMT\\\"],[\\\"Server\\\",\\\"AmazonS3\\\"],[\\\"Via\\\",\\\"1.1 d32fe7eed019f3eb6d4b418469d9db03.cloudfront.net (CloudFront)\\\"],[\\\"X-Amz-Bucket-Region\\\",\\\"us-east-1\\\"],[\\\"X-Amz-Cf-Id\\\",\\\"C3EA5ToMWKDrlHkXqB-zHMIyhN6uAu3y_w2ZYK-YiPXk9r8pSBtTGQ==\\\"],[\\\"X-Amz-Cf-Pop\\\",\\\"GRU1-C2\\\"],[\\\"X-Cache\\\",\\\"Error from cloudfront\\\"]],\\\"headers\\\":{\\\"Content-Type\\\":\\\"application\\\\/xml\\\",\\\"Date\\\":\\\"Wed, 14 Apr 2021 23:32:40 GMT\\\",\\\"Server\\\":\\\"AmazonS3\\\",\\\"Via\\\":\\\"1.1 d32fe7eed019f3eb6d4b418469d9db03.cloudfront.net (CloudFront)\\\",\\\"X-Amz-Bucket-Region\\\":\\\"us-east-1\\\",\\\"X-Amz-Cf-Id\\\":\\\"C3EA5ToMWKDrlHkXqB-zHMIyhN6uAu3y_w2ZYK-YiPXk9r8pSBtTGQ==\\\",\\\"X-Amz-Cf-Pop\\\":\\\"GRU1-C2\\\",\\\"X-Cache\\\":\\\"Error from cloudfront\\\"}},\\\"t\\\":0.407587233},{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US;q=0.8,en;q=0.5\\\"],[\\\"Host\\\",\\\"cdn2.signal.org\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/89.0.4389.90 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"Host\\\":\\\"cdn2.signal.org\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/89.0.4389.90 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"https:\\\\/\\\\/cdn2.signal.org\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"AccessDenied<\\\\/Code>Access denied.<\\\\/Message><\\\\/Error>\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":403,\\\"headers_list\\\":[[\\\"Alt-Svc\\\",\\\"h3-27=\\\\\\\":443\\\\\\\"; ma=86400, h3-28=\\\\\\\":443\\\\\\\"; ma=86400, h3-29=\\\\\\\":443\\\\\\\"; ma=86400\\\"],[\\\"Cache-Control\\\",\\\"private, max-age=0\\\"],[\\\"Cf-Cache-Status\\\",\\\"EXPIRED\\\"],[\\\"Cf-Ray\\\",\\\"6400bc18cc6909dc-GIG\\\"],[\\\"Cf-Request-Id\\\",\\\"097453e37b000009dc11a9b000000001\\\"],[\\\"Content-Length\\\",\\\"111\\\"],[\\\"Content-Type\\\",\\\"application\\\\/xml; charset=UTF-8\\\"],[\\\"Date\\\",\\\"Wed, 14 Apr 2021 23:32:41 GMT\\\"],[\\\"Expect-Ct\\\",\\\"max-age=604800, report-uri=\\\\\\\"https:\\\\/\\\\/report-uri.cloudflare.com\\\\/cdn-cgi\\\\/beacon\\\\/expect-ct\\\\\\\"\\\"],[\\\"Expires\\\",\\\"Wed, 14 Apr 2021 23:32:40 GMT\\\"],[\\\"Server\\\",\\\"cloudflare\\\"],[\\\"Set-Cookie\\\",\\\"__cfduid=da73ff8e59b3d91e5e8e720717d548f2b1618443160; expires=Fri, 14-May-21 23:32:40 GMT; path=\\\\/; domain=.signal.org; HttpOnly; SameSite=Lax; Secure\\\"],[\\\"X-Guploader-Uploadid\\\",\\\"ABg5-UzW4GBlwykFGEKfZQaj3PK-XyjpmAiHwRJZ42uvR_D7ywKyGqBk57EONKyE_XJi8x_znHwPqKh0elFzpic40oU\\\"]],\\\"headers\\\":{\\\"Alt-Svc\\\":\\\"h3-27=\\\\\\\":443\\\\\\\"; ma=86400, h3-28=\\\\\\\":443\\\\\\\"; ma=86400, h3-29=\\\\\\\":443\\\\\\\"; ma=86400\\\",\\\"Cache-Control\\\":\\\"private, max-age=0\\\",\\\"Cf-Cache-Status\\\":\\\"EXPIRED\\\",\\\"Cf-Ray\\\":\\\"6400bc18cc6909dc-GIG\\\",\\\"Cf-Request-Id\\\":\\\"097453e37b000009dc11a9b000000001\\\",\\\"Content-Length\\\":\\\"111\\\",\\\"Content-Type\\\":\\\"application\\\\/xml; charset=UTF-8\\\",\\\"Date\\\":\\\"Wed, 14 Apr 2021 23:32:41 GMT\\\",\\\"Expect-Ct\\\":\\\"max-age=604800, report-uri=\\\\\\\"https:\\\\/\\\\/report-uri.cloudflare.com\\\\/cdn-cgi\\\\/beacon\\\\/expect-ct\\\\\\\"\\\",\\\"Expires\\\":\\\"Wed, 14 Apr 2021 23:32:40 GMT\\\",\\\"Server\\\":\\\"cloudflare\\\",\\\"Set-Cookie\\\":\\\"__cfduid=da73ff8e59b3d91e5e8e720717d548f2b1618443160; expires=Fri, 14-May-21 23:32:40 GMT; path=\\\\/; domain=.signal.org; HttpOnly; SameSite=Lax; Secure\\\",\\\"X-Guploader-Uploadid\\\":\\\"ABg5-UzW4GBlwykFGEKfZQaj3PK-XyjpmAiHwRJZ42uvR_D7ywKyGqBk57EONKyE_XJi8x_znHwPqKh0elFzpic40oU\\\"}},\\\"t\\\":0.891710911},{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US;q=0.8,en;q=0.5\\\"],[\\\"Host\\\",\\\"api.directory.signal.org\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/89.0.4389.90 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"Host\\\":\\\"api.directory.signal.org\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/89.0.4389.90 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"https:\\\\/\\\\/api.directory.signal.org\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"{\\\\\\\"code\\\\\\\":404,\\\\\\\"message\\\\\\\":\\\\\\\"HTTP 404 Not Found\\\\\\\"}\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":404,\\\"headers_list\\\":[[\\\"Connection\\\",\\\"keep-alive\\\"],[\\\"Content-Length\\\",\\\"43\\\"],[\\\"Content-Type\\\",\\\"application\\\\/json\\\"],[\\\"Date\\\",\\\"Wed, 14 Apr 2021 23:32:41 GMT\\\"],[\\\"Set-Cookie\\\",\\\"ApplicationGatewayAffinityCORS=9bb192b41b1cb3ead35cd45e884fcbe5; Path=\\\\/; SameSite=None; Secure\\\"],[\\\"Set-Cookie\\\",\\\"ApplicationGatewayAffinity=9bb192b41b1cb3ead35cd45e884fcbe5; Path=\\\\/\\\"]],\\\"headers\\\":{\\\"Connection\\\":\\\"keep-alive\\\",\\\"Content-Length\\\":\\\"43\\\",\\\"Content-Type\\\":\\\"application\\\\/json\\\",\\\"Date\\\":\\\"Wed, 14 Apr 2021 23:32:41 GMT\\\",\\\"Set-Cookie\\\":\\\"ApplicationGatewayAffinityCORS=9bb192b41b1cb3ead35cd45e884fcbe5; Path=\\\\/; SameSite=None; Secure\\\"}},\\\"t\\\":0.000110158},{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US;q=0.8,en;q=0.5\\\"],[\\\"Host\\\",\\\"sfu.voip.signal.org\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/89.0.4389.90 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"Host\\\":\\\"sfu.voip.signal.org\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/89.0.4389.90 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"https:\\\\/\\\\/sfu.voip.signal.org\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"{\\\\\\\"code\\\\\\\":404,\\\\\\\"message\\\\\\\":\\\\\\\"HTTP 404 Not Found\\\\\\\"}\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":404,\\\"headers_list\\\":[[\\\"Content-Length\\\",\\\"43\\\"],[\\\"Content-Type\\\",\\\"application\\\\/json\\\"],[\\\"Date\\\",\\\"Wed, 14 Apr 2021 23:32:41 GMT\\\"]],\\\"headers\\\":{\\\"Content-Length\\\":\\\"43\\\",\\\"Content-Type\\\":\\\"application\\\\/json\\\",\\\"Date\\\":\\\"Wed, 14 Apr 2021 23:32:41 GMT\\\"}},\\\"t\\\":1.255787841}],\\\"tcp_connect\\\":[{\\\"ip\\\":\\\"142.250.78.211\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.127046982},{\\\"ip\\\":\\\"13.248.212.111\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.507043013},{\\\"ip\\\":\\\"52.85.213.41\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.751045569},{\\\"ip\\\":\\\"104.18.28.74\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":1.003035686},{\\\"ip\\\":\\\"20.62.208.25\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":1.369519221},{\\\"ip\\\":\\\"34.235.20.181\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":1.859039371}],\\\"tls_handshakes\\\":[{\\\"cipher_suite\\\":\\\"TLS_AES_128_GCM_SHA256\\\",\\\"failure\\\":null,\\\"negotiated_protocol\\\":\\\"h2\\\",\\\"no_tls_verify\\\":false,\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIIEIzCCAwugAwIBAgICECYwDQYJKoZIhvcNAQELBQAwgY0xCzAJBgNVBAYTAlVTMRMwEQYDVQQIDApDYWxpZm9ybmlhMRYwFAYDVQQHDA1TYW4gRnJhbmNpc2NvMR0wGwYDVQQKDBRPcGVuIFdoaXNwZXIgU3lzdGVtczEdMBsGA1UECwwUT3BlbiBXaGlzcGVyIFN5c3RlbXMxEzARBgNVBAMMClRleHRTZWN1cmUwHhcNMTkwNjAxMDAwMDAwWhcNMzAwMTA3MDAyMTA2WjB9MQswCQYDVQQGEwJVUzETMBEGA1UECAwKQ2FsaWZvcm5pYTEdMBsGA1UECgwUT3BlbiBXaGlzcGVyIFN5c3RlbXMxHTAbBgNVBAsMFE9wZW4gV2hpc3BlciBTeXN0ZW1zMRswGQYDVQQDDBJzdG9yYWdlLnNpZ25hbC5vcmcwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCwfI+K4NNgP\\\\/1UT61JsJm0B2Fsn+vsfEYri31MkLzMIJIX2gurEiQkaZvrOjvr0t4u20roplJCGdBOTIQ7lA5W+JbuvetjCwQAiqKc16chPzL6SFeIR3\\\\/EuHdRqiNy74lE6hOw2wyqiguXucndVxYmgeLUTBDw8NpOAznRhT13\\\\/V7SaI7hu1Z78GchiAwjstso8xzaWQq337Rp99mnW0DiwFLxMR7a1fpKsAXOaTs9KBndysOof5RubOZhgaKLTF5NArszXqRHttUT1NtIWVO34TEnV1lCMlWt3Xado63XO\\\\/f4XJN2qUGroSOeLXK4HzKuRVksC80H3sZhm4va3DptAgMBAAGjgZswgZgwCQYDVR0TBAIwADAsBglghkgBhvhCAQ0EHxYdT3BlblNTTCBHZW5lcmF0ZWQgQ2VydGlmaWNhdGUwHQYDVR0OBBYEFBYeJP0ZL4FCY340H+apTO7gO2hoMB8GA1UdIwQYMBaAFAGLGPE\\\\/+zkZRG6Fhr6UZTKnMjyQMB0GA1UdEQQWMBSCEnN0b3JhZ2Uuc2lnbmFsLm9yZzANBgkqhkiG9w0BAQsFAAOCAQEAnJ3pcm1aFge9ChCnCqOdBBMBjFNBqDc+8\\\\/WdzmoopPh\\\\/t++vcqE60qFUDfXsu8ecX1rgbOk6U3PRKkqJ4g9V6M+WPeH09vAbNmMSern6JAH+\\\\/DCRJRb9202f3noWc5H091mnGM3dTG263jT8iRByjfCejPIzdj6uxjNWGuMopot\\\\/MVV1en8kgNbYu1mLeIXYfvzz4GTp4nCNg2b4rH6N\\\\/DOgP9KV1c+8nfIlyyNvfeOEp+V60+9gVMJY5A8Jh20YjAHd5rcEfJ9OapoJ3PhnDwjpHKQhQBImbhZhIOHqmODudzYE8WwMEBQn\\\\/zR5zO9X36OM0QzXKyemv7pjqw85mw==\\\",\\\"format\\\":\\\"base64\\\"}],\\\"server_name\\\":\\\"storage.signal.org\\\",\\\"t\\\":0.256008464,\\\"tags\\\":null,\\\"tls_version\\\":\\\"TLSv1.3\\\"},{\\\"cipher_suite\\\":\\\"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256\\\",\\\"failure\\\":null,\\\"negotiated_protocol\\\":\\\"h2\\\",\\\"no_tls_verify\\\":false,\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIID4zCCAsugAwIBAgICEBgwDQYJKoZIhvcNAQELBQAwgY0xCzAJBgNVBAYTAlVTMRMwEQYDVQQIDApDYWxpZm9ybmlhMRYwFAYDVQQHDA1TYW4gRnJhbmNpc2NvMR0wGwYDVQQKDBRPcGVuIFdoaXNwZXIgU3lzdGVtczEdMBsGA1UECwwUT3BlbiBXaGlzcGVyIFN5c3RlbXMxEzARBgNVBAMMClRleHRTZWN1cmUwHhcNMTkwMjE1MTczODE3WhcNMjkwMzEyMTgyMDIwWjCBkDELMAkGA1UEBhMCVVMxEzARBgNVBAgMCkNhbGlmb3JuaWExHTAbBgNVBAoMFE9wZW4gV2hpc3BlciBTeXN0ZW1zMR0wGwYDVQQLDBRPcGVuIFdoaXNwZXIgU3lzdGVtczEuMCwGA1UEAwwldGV4dHNlY3VyZS1zZXJ2aWNlLndoaXNwZXJzeXN0ZW1zLm9yZzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKzIEbXRRbfAosvPk4magHWzsHhwOzu7On7EA4xxqViHbN4ox4jl5Lh9mu6nVW0eBvxc9zQKPG0ijgQJN\\\\/SV53jFwjqqtr4JYTsHzKs6bgHlYH6sW3XHxePj5JFKSSXWY7lKNASVl5KkSmhaiYItEPExvSoPB9bNwupixZ5Ae0iIE\\\\/NYQA6yZXpQTY0dBU0l1q0pQeXzLXqgJetThzSXr6j5soNO2KyRoMBNbI42fPUYvWRCOUfyUNI2fb3qsuZD+QQ7YKxl5hgDBU8oNCNN80sNWjhh5nFEOWGj5lxl1qYTkp3sWJJGYD6cuQDJ1DrSKNbDUWnslIe+wvZfTx9+km0CAwEAAaNIMEYwRAYDVR0RBD0wO4IldGV4dHNlY3VyZS1zZXJ2aWNlLndoaXNwZXJzeXN0ZW1zLm9yZ4ISc2VydmljZS5zaWduYWwub3JnMA0GCSqGSIb3DQEBCwUAA4IBAQApay5HvPcMP+HE2vS3WOxL\\\\/ygG1o\\\\/q4zcO\\\\/VYOfA7q2yiFN2FDF8lEcwEqcDMAz2+hGK\\\\/fXi2gaIYq6fp3fL9OtzIrXmUNCB2I9PpuI4jj6xUtERecOXSaHE2C3TI3t7CIcvhbGU1OrJiDLbVFHE8RAetsJJyd2YWuzBwd9U3oWS4ZNzjlwQLTOiJpoApSKmMlQ6OVfgdr6rRTI1ocw+q4\\\\/wDxcYEhiLoMljy42A\\\\/WrwXzyUMDkcAtZHTjkUAuSLivn434nLcYXalMUIW8sQNLksKTqVH26MKS2t2HRVs4cwDfmtGzmWSLbgRBl\\\\/8Oquq5XLLNEUIM31NVcBUFpKhJ\\\",\\\"format\\\":\\\"base64\\\"},{\\\"data\\\":\\\"MIID7zCCAtegAwIBAgIJAIm6LatK5PNiMA0GCSqGSIb3DQEBBQUAMIGNMQswCQYDVQQGEwJVUzETMBEGA1UECAwKQ2FsaWZvcm5pYTEWMBQGA1UEBwwNU2FuIEZyYW5jaXNjbzEdMBsGA1UECgwUT3BlbiBXaGlzcGVyIFN5c3RlbXMxHTAbBgNVBAsMFE9wZW4gV2hpc3BlciBTeXN0ZW1zMRMwEQYDVQQDDApUZXh0U2VjdXJlMB4XDTEzMDMyNTIyMTgzNVoXDTIzMDMyMzIyMTgzNVowgY0xCzAJBgNVBAYTAlVTMRMwEQYDVQQIDApDYWxpZm9ybmlhMRYwFAYDVQQHDA1TYW4gRnJhbmNpc2NvMR0wGwYDVQQKDBRPcGVuIFdoaXNwZXIgU3lzdGVtczEdMBsGA1UECwwUT3BlbiBXaGlzcGVyIFN5c3RlbXMxEzARBgNVBAMMClRleHRTZWN1cmUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDBSWBpOCBDF0i4q2d4jAXkSXUGpbeWugVPQCjaL6qD9QDOxeW1afvfPo863i6Crq1KDxHpB36EwzVcjwLkFTIMeo7t9s1FQolAt3mErV2U0vie6Ves+yj6grSfxwIDAcdsKmI0a1SQCZlr3Q1tcHAkAKFRxYNawADyps5B+Zmqcgf653TXS5\\\\/0IPPQLocLn8GWLwOYNnYfBvILKDMItmZTtEbucdigxEA9mfIvvHADEbteLtVgwBm9R5vVvtwrD6CCxI3pgH7EH7kMP0Od93wLisvn1yhHY7FuYlrkYqdkMvWUrKoASVw4jb69vaeJCUdU+HCoXOSP1PQcL6WenNCHAgMBAAGjUDBOMB0GA1UdDgQWBBQBixjxP\\\\/s5GURuhYa+lGUypzI8kDAfBgNVHSMEGDAWgBQBixjxP\\\\/s5GURuhYa+lGUypzI8kDAMBgNVHRMEBTADAQH\\\\/MA0GCSqGSIb3DQEBBQUAA4IBAQB+Hr4hC56m0LvJAu1RK6NuPDbTMEN7\\\\/jMojFHxH4P3XPFfupjR+bkDq0pPOU6JjIxnrD1XD\\\\/EVmTTaTVY5iOheyv7UzJOefb2pLOc9qsuvI4fnaESh9bhzln+LXxtCrRPGhkxA1IMIo3J\\\\/s2WF\\\\/KVYZyciu6b4ubJ91XPAuBNZwImug7\\\\/srWvbpk0hq6A6z140WTVSKtJG7EP41kJe\\\\/oF4usY5J7LPkxK3LWzMJnb5EIJDmRvyH8pyRwWg6Qm6qiGFaI4nL8QU4La1x2en4DGXRaLMPRwjELNgQPodR38zoCMuA8gHZfZYYoZ7D7Q1wNUiVHcxuFrEeBaYJbLErwLV\\\",\\\"format\\\":\\\"base64\\\"}],\\\"server_name\\\":\\\"textsecure-service.whispersystems.org\\\",\\\"t\\\":0.763287702,\\\"tags\\\":null,\\\"tls_version\\\":\\\"TLSv1.2\\\"},{\\\"cipher_suite\\\":\\\"TLS_AES_128_GCM_SHA256\\\",\\\"failure\\\":null,\\\"negotiated_protocol\\\":\\\"h2\\\",\\\"no_tls_verify\\\":false,\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIIDoDCCAoigAwIBAgICEBcwDQYJKoZIhvcNAQELBQAwgY0xCzAJBgNVBAYTAlVTMRMwEQYDVQQIDApDYWxpZm9ybmlhMRYwFAYDVQQHDA1TYW4gRnJhbmNpc2NvMR0wGwYDVQQKDBRPcGVuIFdoaXNwZXIgU3lzdGVtczEdMBsGA1UECwwUT3BlbiBXaGlzcGVyIFN5c3RlbXMxEzARBgNVBAMMClRleHRTZWN1cmUwHhcNMTkwMjE1MTczODE3WhcNMjkwMzEyMTgxOTUwWjB5MQswCQYDVQQGEwJVUzETMBEGA1UECAwKQ2FsaWZvcm5pYTEdMBsGA1UECgwUT3BlbiBXaGlzcGVyIFN5c3RlbXMxHTAbBgNVBAsMFE9wZW4gV2hpc3BlciBTeXN0ZW1zMRcwFQYDVQQDDA5jZG4uc2lnbmFsLm9yZzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM18LQzkZEfWlg4hw\\\\/dBL9paXMIB8No3GZAgAy\\\\/09MbfinutJhogqyGsfD9QVwKOcVCvolxWRJxOVHLvfJ+j3OjaizipPSg4tJBcbN+9ZakhzUpPRoghEI4yiKrl0Sqi7vJNILC1JTYvkRytQ9n\\\\/4Jbs5Y2RBnRT1TPYTV57UYEJTbpi7gEiAWGj2rth0iCCvOasx+qhZEdPOn1e6lwVwWKHe0IcTRfT2CWMW01KVLcW86+adINJC\\\\/1ymCCoUyAve8Qsdf59G5bmObwjQzhxFqFhHY7QFfbJcvl0n1Cn1eglY+a\\\\/RyEDs5oux7VcZ8aj6P5GLiya+i08XBOQs3AuHwECAwEAAaMdMBswGQYDVR0RBBIwEIIOY2RuLnNpZ25hbC5vcmcwDQYJKoZIhvcNAQELBQADggEBAG\\\\/PlhcSBiL6fGKTGRpaoycPg7hJ9ziHLiB+y0QyB5wqO5derbp7SMXlOZV+SdL63ngqyVoN0iuC4BM7lU8DJithuOT+DkdBUHAdejNgRNl0tgpxiKFhl81NV1bHcDkHXtI6Eg31yWJKn5PkQX5bVICwoe1ebZJdERU+Uc4uf9IUgrJmkWNSNRRVNtXEiyL7WEbG3MlOE7UNzIJWYeBa\\\\/F7AWNItLd5fu9hbJvGq\\\\/pLUxVuNeSr2mrSxLF\\\\/UtUYOvxNSwLpLCNoS7wnv60ZtLmXBCZ8hswk\\\\/q79aWHy3ln5ByH72UEQs3psE2qaoOv8CGulVWMPSRA2lUjj3NNE1CfI=\\\",\\\"format\\\":\\\"base64\\\"},{\\\"data\\\":\\\"MIID7zCCAtegAwIBAgIJAIm6LatK5PNiMA0GCSqGSIb3DQEBBQUAMIGNMQswCQYDVQQGEwJVUzETMBEGA1UECAwKQ2FsaWZvcm5pYTEWMBQGA1UEBwwNU2FuIEZyYW5jaXNjbzEdMBsGA1UECgwUT3BlbiBXaGlzcGVyIFN5c3RlbXMxHTAbBgNVBAsMFE9wZW4gV2hpc3BlciBTeXN0ZW1zMRMwEQYDVQQDDApUZXh0U2VjdXJlMB4XDTEzMDMyNTIyMTgzNVoXDTIzMDMyMzIyMTgzNVowgY0xCzAJBgNVBAYTAlVTMRMwEQYDVQQIDApDYWxpZm9ybmlhMRYwFAYDVQQHDA1TYW4gRnJhbmNpc2NvMR0wGwYDVQQKDBRPcGVuIFdoaXNwZXIgU3lzdGVtczEdMBsGA1UECwwUT3BlbiBXaGlzcGVyIFN5c3RlbXMxEzARBgNVBAMMClRleHRTZWN1cmUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDBSWBpOCBDF0i4q2d4jAXkSXUGpbeWugVPQCjaL6qD9QDOxeW1afvfPo863i6Crq1KDxHpB36EwzVcjwLkFTIMeo7t9s1FQolAt3mErV2U0vie6Ves+yj6grSfxwIDAcdsKmI0a1SQCZlr3Q1tcHAkAKFRxYNawADyps5B+Zmqcgf653TXS5\\\\/0IPPQLocLn8GWLwOYNnYfBvILKDMItmZTtEbucdigxEA9mfIvvHADEbteLtVgwBm9R5vVvtwrD6CCxI3pgH7EH7kMP0Od93wLisvn1yhHY7FuYlrkYqdkMvWUrKoASVw4jb69vaeJCUdU+HCoXOSP1PQcL6WenNCHAgMBAAGjUDBOMB0GA1UdDgQWBBQBixjxP\\\\/s5GURuhYa+lGUypzI8kDAfBgNVHSMEGDAWgBQBixjxP\\\\/s5GURuhYa+lGUypzI8kDAMBgNVHRMEBTADAQH\\\\/MA0GCSqGSIb3DQEBBQUAA4IBAQB+Hr4hC56m0LvJAu1RK6NuPDbTMEN7\\\\/jMojFHxH4P3XPFfupjR+bkDq0pPOU6JjIxnrD1XD\\\\/EVmTTaTVY5iOheyv7UzJOefb2pLOc9qsuvI4fnaESh9bhzln+LXxtCrRPGhkxA1IMIo3J\\\\/s2WF\\\\/KVYZyciu6b4ubJ91XPAuBNZwImug7\\\\/srWvbpk0hq6A6z140WTVSKtJG7EP41kJe\\\\/oF4usY5J7LPkxK3LWzMJnb5EIJDmRvyH8pyRwWg6Qm6qiGFaI4nL8QU4La1x2en4DGXRaLMPRwjELNgQPodR38zoCMuA8gHZfZYYoZ7D7Q1wNUiVHcxuFrEeBaYJbLErwLV\\\",\\\"format\\\":\\\"base64\\\"}],\\\"server_name\\\":\\\"cdn.signal.org\\\",\\\"t\\\":0.767906408,\\\"tags\\\":null,\\\"tls_version\\\":\\\"TLSv1.3\\\"},{\\\"cipher_suite\\\":\\\"TLS_AES_128_GCM_SHA256\\\",\\\"failure\\\":null,\\\"negotiated_protocol\\\":\\\"h2\\\",\\\"no_tls_verify\\\":false,\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIIEHTCCAwWgAwIBAgICECwwDQYJKoZIhvcNAQELBQAwgY0xCzAJBgNVBAYTAlVTMRMwEQYDVQQIDApDYWxpZm9ybmlhMRYwFAYDVQQHDA1TYW4gRnJhbmNpc2NvMR0wGwYDVQQKDBRPcGVuIFdoaXNwZXIgU3lzdGVtczEdMBsGA1UECwwUT3BlbiBXaGlzcGVyIFN5c3RlbXMxEzARBgNVBAMMClRleHRTZWN1cmUwHhcNMTkwNjAxMDAwMDAwWhcNMzAwMzE4MTkxMTM2WjB6MQswCQYDVQQGEwJVUzETMBEGA1UECAwKQ2FsaWZvcm5pYTEdMBsGA1UECgwUT3BlbiBXaGlzcGVyIFN5c3RlbXMxHTAbBgNVBAsMFE9wZW4gV2hpc3BlciBTeXN0ZW1zMRgwFgYDVQQDDA9jZG4yLnNpZ25hbC5vcmcwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC7RvcmiCpeLRMrj3ntVuglVD+EuY9DvaeDRm0MF6\\\\/T\\\\/No2IGFqCNSxpvK821lmVVZyohWB3YhKmEQLEz31aNAGfwVzRNp477zKYHh0PG\\\\/\\\\/UTqayv6M5n0lPGmunV254plGG8028ZKW+kJRwEPJLPRj6F+1KbvEJLEXSvXF\\\\/wLYHoOcWcPNjJtgmWstmMPlANBQ7yZJ+a3IxU9wT40AhLOTtN5LXvfe9w19TUvVG5ZtJQFv66rjcLAHthmYTWPATUzf98uAnkzUXoj8eBthuSGczQ0TKTgCHPT4aCQcns22x99RHTDfhbDz9SYhlCsiEEeEYQm6z2rkd\\\\/zRe4mvEZ+PAgMBAAGjgZgwgZUwCQYDVR0TBAIwADAsBglghkgBhvhCAQ0EHxYdT3BlblNTTCBHZW5lcmF0ZWQgQ2VydGlmaWNhdGUwHQYDVR0OBBYEFLD5Cz5EcyGADdxcHQXKLYOyBIriMB8GA1UdIwQYMBaAFAGLGPE\\\\/+zkZRG6Fhr6UZTKnMjyQMBoGA1UdEQQTMBGCD2NkbjIuc2lnbmFsLm9yZzANBgkqhkiG9w0BAQsFAAOCAQEAMiI8izFaj6A77xiLb7x4FXqlj4XJaXFioL30YmHTP57CWCuShbFASvYIYIrcMrPI0imi\\\\/MojM7DTiW0PV47BAsk9p6JTcjRNmsLr3Ig2SEE5rm9f813RoCx8Bzii9\\\\/afMezIuaL0Cjyh+6db+8BTRUdoz+DaaxkvWM\\\\/xalMk6APZWoKcXqpJhRRGMa\\\\/SgFRprvEG7n6nip86NyneTdWL\\\\/6HbDNfDlS2kwDs7ZEK\\\\/\\\\/dt19BuXE6FZYYwWTRFP0L\\\\/j1JCT1RO0D5N4EzdmvCqms689AMCQQLamXsFqXBwsxDXSvrHK\\\\/KXicPvrCG7dN258NSDUYjwToFFEsc5s5MQq5A==\\\",\\\"format\\\":\\\"base64\\\"}],\\\"server_name\\\":\\\"cdn2.signal.org\\\",\\\"t\\\":1.019923888,\\\"tags\\\":null,\\\"tls_version\\\":\\\"TLSv1.3\\\"},{\\\"cipher_suite\\\":\\\"TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384\\\",\\\"failure\\\":null,\\\"negotiated_protocol\\\":\\\"http\\\\/1.1\\\",\\\"no_tls_verify\\\":false,\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIIEMDCCAxigAwIBAgICEDowDQYJKoZIhvcNAQELBQAwgY0xCzAJBgNVBAYTAlVTMRMwEQYDVQQIDApDYWxpZm9ybmlhMRYwFAYDVQQHDA1TYW4gRnJhbmNpc2NvMR0wGwYDVQQKDBRPcGVuIFdoaXNwZXIgU3lzdGVtczEdMBsGA1UECwwUT3BlbiBXaGlzcGVyIFN5c3RlbXMxEzARBgNVBAMMClRleHRTZWN1cmUwHhcNMTkwNjAxMDAwMDAwWhcNMzEwMTA5MDMzNzEwWjCBgzELMAkGA1UEBhMCVVMxEzARBgNVBAgMCkNhbGlmb3JuaWExHTAbBgNVBAoMFE9wZW4gV2hpc3BlciBTeXN0ZW1zMR0wGwYDVQQLDBRPcGVuIFdoaXNwZXIgU3lzdGVtczEhMB8GA1UEAwwYYXBpLmRpcmVjdG9yeS5zaWduYWwub3JnMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAz5QXsh6QPygdgwIY86CbopBAng5zHHknvD3pX3vOBkt7Gd6IlZ+Jle\\\\/QFblaqTFPTuU\\\\/VX1oT4OIc5ZTNb5g\\\\/LvKMTBRzEset9CeTjx5STRcmWRlPeu3AJPZZEOvCH3AN55GOOiF8FQpqoFVIhSUFS17iuRr3iGLA0Khn0Ink0qJouQuBqfrx8AL+r5dfTfEqs4sxpS34rxy5M8z7HrccxbdcBHkNfn\\\\/QRLVikmzpFIBhlMcd9C8orobx+9Zv1cTsyl7m95Ma6zm\\\\/aAVT1nPfKi9t666kYvuTezkehbOCsPqTuGZipQ8620vWs4o0u6X+t9JJfYaTHHFlAU+GuYzCQIDAQABo4GhMIGeMAkGA1UdEwQCMAAwLAYJYIZIAYb4QgENBB8WHU9wZW5TU0wgR2VuZXJhdGVkIENlcnRpZmljYXRlMB0GA1UdDgQWBBSvJRKESl+1u6wiVs7ju08VUdaFLzAfBgNVHSMEGDAWgBQBixjxP\\\\/s5GURuhYa+lGUypzI8kDAjBgNVHREEHDAaghhhcGkuZGlyZWN0b3J5LnNpZ25hbC5vcmcwDQYJKoZIhvcNAQELBQADggEBAFganu\\\\/WuRTlcn2NYQPBGjVLtFUmvxZ8Y0U9u3Vg+fj8hXkpC3IN0MlWslmKEIFJTYUJKpUqvmCPuhjvsaUKCsF1ECaydzl6Tt6nQZmc74epLxDCprbClM8iLDZS+0ojUZdF\\\\/fGjT16NnoUy1aT2BhpFsIQOZCqM40jf1sHWRSsvnojPu8\\\\/NzHWBuRjtHKMJ\\\\/I9knakOywrd3htDQdySadU+7uwKRnX\\\\/adRpvr3sYi\\\\/4cR5sHuf6bAmL6eCBiZ4yTkYTQ0sPjAEYCrC2HsQPfYMdAPPMWuMlxgRDJkYT9y18jb9FXF6xVf7HhPWQZUmeym0sPsdNE2uKBEuo2YZXxrE=\\\",\\\"format\\\":\\\"base64\\\"}],\\\"server_name\\\":\\\"api.directory.signal.org\\\",\\\"t\\\":1.639055348,\\\"tags\\\":null,\\\"tls_version\\\":\\\"TLSv1.2\\\"},{\\\"cipher_suite\\\":\\\"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256\\\",\\\"failure\\\":null,\\\"negotiated_protocol\\\":\\\"h2\\\",\\\"no_tls_verify\\\":false,\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIIEJTCCAw2gAwIBAgICEDUwDQYJKoZIhvcNAQELBQAwgY0xCzAJBgNVBAYTAlVTMRMwEQYDVQQIDApDYWxpZm9ybmlhMRYwFAYDVQQHDA1TYW4gRnJhbmNpc2NvMR0wGwYDVQQKDBRPcGVuIFdoaXNwZXIgU3lzdGVtczEdMBsGA1UECwwUT3BlbiBXaGlzcGVyIFN5c3RlbXMxEzARBgNVBAMMClRleHRTZWN1cmUwHhcNMTkwNjAxMDAwMDAwWhcNMzAxMTE4MjEyOTE5WjBfMQswCQYDVQQGEwJVUzETMBEGA1UECAwKQ2FsaWZvcm5pYTEdMBsGA1UECgwUT3BlbiBXaGlzcGVyIFN5c3RlbXMxHDAaBgNVBAMME3NmdS52b2lwLnNpZ25hbC5vcmcwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDJzNQshmvAVSiIJyROfGJtnquSAlhuWngW\\\\/NXVM1YcSGOyE\\\\/\\\\/4PlYqMcQTyQIgantYhegSjpf5HZjF7eV3tQ6n6vbaEhxwjrBV3K2ToeV4W1oPCsOXTfaSQAXaRiuCgTp7MqnQhNvPyOrjyfJ\\\\/vuoPYNbvIoKlrsEdI5UHO+u6VdiddbrzAtymI7U3mCKcfOjzsXQYkaWX21GpIgKsr8IWm9+WA4hLmSVOnLFQxVmeggZ4PjvxAtc63lPKzX5smoEtC2G56+ODKEICodJXaYY6vkQp4+JQGlQdy00TnTArDN4Ka6yKA34PnrL\\\\/6Degpvjahcnb+V5v9N\\\\/vgYbgJXAbAgMBAAGjgbswgbgwCQYDVR0TBAIwADAsBglghkgBhvhCAQ0EHxYdT3BlblNTTCBHZW5lcmF0ZWQgQ2VydGlmaWNhdGUwHQYDVR0OBBYEFJxTpwY8N7TRK8mpvwKiYphVZRYSMB8GA1UdIwQYMBaAFAGLGPE\\\\/+zkZRG6Fhr6UZTKnMjyQMD0GA1UdEQQ2MDSCE3NmdS52b2lwLnNpZ25hbC5vcmeCHXNmdS51cy1lYXN0LTEudm9pcC5zaWduYWwub3JnMA0GCSqGSIb3DQEBCwUAA4IBAQCnkyZ8QEpc7icGyiHPfVd8qbRPDqAkU0WxBCsx0cxnVDrn0HH+EwRTnD1L+7hWAN0RrexqFjKLIj4a36ZT6iMeVX03tDej3FJ8sCBIpIbPBQiU5ANbs0QsfgGmmM0u7Shc220sMdzoyRh63fAslBUEQQLLle5UIH2CPDkESCxhDEArel9BarNTRc0iEBu67+K4U0NyjNh1i5fLC1hHtRJWIh\\\\/Qup49htCzsfp8t4tN1KRLyC\\\\/ovQ0pyjaqObpMGtolNsOgDtyDuOX+QzpzLWcFt4IG3oGbB8GY7f3PIzHdF6tjRKXVgaMbQeWsCWmeV8yciLrP2daBIhJ+1Vw+8Tgk\\\",\\\"format\\\":\\\"base64\\\"},{\\\"data\\\":\\\"MIID7zCCAtegAwIBAgIJAIm6LatK5PNiMA0GCSqGSIb3DQEBBQUAMIGNMQswCQYDVQQGEwJVUzETMBEGA1UECAwKQ2FsaWZvcm5pYTEWMBQGA1UEBwwNU2FuIEZyYW5jaXNjbzEdMBsGA1UECgwUT3BlbiBXaGlzcGVyIFN5c3RlbXMxHTAbBgNVBAsMFE9wZW4gV2hpc3BlciBTeXN0ZW1zMRMwEQYDVQQDDApUZXh0U2VjdXJlMB4XDTEzMDMyNTIyMTgzNVoXDTIzMDMyMzIyMTgzNVowgY0xCzAJBgNVBAYTAlVTMRMwEQYDVQQIDApDYWxpZm9ybmlhMRYwFAYDVQQHDA1TYW4gRnJhbmNpc2NvMR0wGwYDVQQKDBRPcGVuIFdoaXNwZXIgU3lzdGVtczEdMBsGA1UECwwUT3BlbiBXaGlzcGVyIFN5c3RlbXMxEzARBgNVBAMMClRleHRTZWN1cmUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDBSWBpOCBDF0i4q2d4jAXkSXUGpbeWugVPQCjaL6qD9QDOxeW1afvfPo863i6Crq1KDxHpB36EwzVcjwLkFTIMeo7t9s1FQolAt3mErV2U0vie6Ves+yj6grSfxwIDAcdsKmI0a1SQCZlr3Q1tcHAkAKFRxYNawADyps5B+Zmqcgf653TXS5\\\\/0IPPQLocLn8GWLwOYNnYfBvILKDMItmZTtEbucdigxEA9mfIvvHADEbteLtVgwBm9R5vVvtwrD6CCxI3pgH7EH7kMP0Od93wLisvn1yhHY7FuYlrkYqdkMvWUrKoASVw4jb69vaeJCUdU+HCoXOSP1PQcL6WenNCHAgMBAAGjUDBOMB0GA1UdDgQWBBQBixjxP\\\\/s5GURuhYa+lGUypzI8kDAfBgNVHSMEGDAWgBQBixjxP\\\\/s5GURuhYa+lGUypzI8kDAMBgNVHRMEBTADAQH\\\\/MA0GCSqGSIb3DQEBBQUAA4IBAQB+Hr4hC56m0LvJAu1RK6NuPDbTMEN7\\\\/jMojFHxH4P3XPFfupjR+bkDq0pPOU6JjIxnrD1XD\\\\/EVmTTaTVY5iOheyv7UzJOefb2pLOc9qsuvI4fnaESh9bhzln+LXxtCrRPGhkxA1IMIo3J\\\\/s2WF\\\\/KVYZyciu6b4ubJ91XPAuBNZwImug7\\\\/srWvbpk0hq6A6z140WTVSKtJG7EP41kJe\\\\/oF4usY5J7LPkxK3LWzMJnb5EIJDmRvyH8pyRwWg6Qm6qiGFaI4nL8QU4La1x2en4DGXRaLMPRwjELNgQPodR38zoCMuA8gHZfZYYoZ7D7Q1wNUiVHcxuFrEeBaYJbLErwLV\\\",\\\"format\\\":\\\"base64\\\"}],\\\"server_name\\\":\\\"sfu.voip.signal.org\\\",\\\"t\\\":2.115088127,\\\"tags\\\":null,\\\"tls_version\\\":\\\"TLSv1.2\\\"}],\\\"signal_backend_status\\\":\\\"ok\\\",\\\"signal_backend_failure\\\":null},\\\"test_name\\\":\\\"signal\\\",\\\"test_runtime\\\":2.256337392,\\\"test_start_time\\\":\\\"2021-04-14 23:32:39\\\",\\\"test_version\\\":\\\"0.2.0\\\"}\\n\",\"category_code\":\"\",\"verification_status\":\"unverified\"}" +} \ No newline at end of file diff --git a/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20210415084230.511612_IR_signal_ed269d082953bf2e_full-true.json b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20210415084230.511612_IR_signal_ed269d082953bf2e_full-true.json new file mode 100644 index 000000000..d6650d9ae --- /dev/null +++ b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20210415084230.511612_IR_signal_ed269d082953bf2e_full-true.json @@ -0,0 +1,5 @@ +{ + "status": 200, + "contentType": "application/json", + "body": "{\"input\":\"\",\"measurement_start_time\":\"2021-04-15T08:42:27Z\",\"measurement_uid\":\"20210415084230.511612_IR_signal_ed269d082953bf2e\",\"report_id\":\"20210415T084229Z_signal_IR_43754_n1_Jxzkc6sOLFBybUZN\",\"test_name\":\"signal\",\"test_start_time\":\"2021-04-15T08:42:27Z\",\"probe_asn\":43754,\"probe_cc\":\"IR\",\"scores\":\"{\\\"blocking_general\\\":1.0,\\\"blocking_global\\\":0.0,\\\"blocking_country\\\":0.0,\\\"blocking_isp\\\":0.0,\\\"blocking_local\\\":0.0,\\\"analysis\\\":{\\\"signal_backend_failure\\\":\\\"dns_nxdomain_error\\\"}}\",\"anomaly\":true,\"confirmed\":false,\"failure\":false,\"raw_measurement\":\"{\\\"annotations\\\":{\\\"engine_name\\\":\\\"ooniprobe-engine\\\",\\\"engine_version\\\":\\\"3.9.2\\\",\\\"platform\\\":\\\"windows\\\"},\\\"data_format_version\\\":\\\"0.2.0\\\",\\\"extensions\\\":{\\\"dnst\\\":0,\\\"httpt\\\":0,\\\"netevents\\\":0,\\\"tcpconnect\\\":0,\\\"tlshandshake\\\":0,\\\"tunnel\\\":0},\\\"input\\\":null,\\\"measurement_start_time\\\":\\\"2021-04-15 08:42:27\\\",\\\"probe_asn\\\":\\\"AS43754\\\",\\\"probe_cc\\\":\\\"IR\\\",\\\"probe_ip\\\":\\\"127.0.0.1\\\",\\\"probe_network_name\\\":\\\"Asiatech Data Transmission company\\\",\\\"report_id\\\":\\\"20210415T084229Z_signal_IR_43754_n1_Jxzkc6sOLFBybUZN\\\",\\\"resolver_asn\\\":\\\"AS43754\\\",\\\"resolver_ip\\\":\\\"185.98.113.113\\\",\\\"resolver_network_name\\\":\\\"Asiatech Data Transmission company\\\",\\\"software_name\\\":\\\"ooniprobe-desktop-unattended\\\",\\\"software_version\\\":\\\"3.9.2\\\",\\\"test_keys\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failed_operation\\\":null,\\\"failure\\\":null,\\\"network_events\\\":[{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":0.0010017},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":0.0010017},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.0010017},{\\\"failure\\\":\\\"dns_nxdomain_error\\\",\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.0190038},{\\\"failure\\\":\\\"dns_nxdomain_error\\\",\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":0.0190038},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":0.0010017},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":0.0010017},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.0010017},{\\\"failure\\\":\\\"dns_nxdomain_error\\\",\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.0219982},{\\\"failure\\\":\\\"dns_nxdomain_error\\\",\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":0.0219982},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":0.0190038},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":0.0190038},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.0190038},{\\\"failure\\\":\\\"dns_nxdomain_error\\\",\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.0405418},{\\\"failure\\\":\\\"dns_nxdomain_error\\\",\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":0.0405418},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":0.0240034},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":0.0240034},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.0240034},{\\\"failure\\\":\\\"dns_nxdomain_error\\\",\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.0456917},{\\\"failure\\\":\\\"dns_nxdomain_error\\\",\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":0.0456917},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":0.0405418},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":0.0405418},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.0405418},{\\\"failure\\\":\\\"dns_nxdomain_error\\\",\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.0618044},{\\\"failure\\\":\\\"dns_nxdomain_error\\\",\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":0.0618044},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.0456917},{\\\"failure\\\":\\\"dns_nxdomain_error\\\",\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.0708055},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":0.0010017},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":0.0010017},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.0010017},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.0200018},{\\\"address\\\":\\\"76.223.92.165:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.2021612},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_start\\\",\\\"t\\\":0.2021612},{\\\"failure\\\":null,\\\"num_bytes\\\":307,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.2021612},{\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.3857772},{\\\"failure\\\":null,\\\"num_bytes\\\":1961,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.3857772},{\\\"failure\\\":null,\\\"num_bytes\\\":126,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.3872422},{\\\"failure\\\":null,\\\"num_bytes\\\":51,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.5658194},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_done\\\",\\\"t\\\":0.5658194},{\\\"failure\\\":null,\\\"num_bytes\\\":93,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.5658194},{\\\"failure\\\":null,\\\"num_bytes\\\":69,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.5658194},{\\\"failure\\\":null,\\\"num_bytes\\\":227,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.5658194},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_headers\\\",\\\"t\\\":0.5658194},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_request\\\",\\\"t\\\":0.5658194},{\\\"failure\\\":null,\\\"num_bytes\\\":38,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.5658194},{\\\"failure\\\":null,\\\"num_bytes\\\":38,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.7448697},{\\\"failure\\\":null,\\\"num_bytes\\\":157,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.7458701},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_first_response_byte\\\",\\\"t\\\":0.7458701},{\\\"failure\\\":null,\\\"num_bytes\\\":38,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.7458701},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_metadata\\\",\\\"t\\\":0.7468698},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_body_snapshot\\\",\\\"t\\\":0.7468698},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":0.7468698},{\\\"failure\\\":null,\\\"num_bytes\\\":31,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.7469293}],\\\"queries\\\":[{\\\"answers\\\":null,\\\"engine\\\":\\\"system\\\",\\\"failure\\\":\\\"dns_nxdomain_error\\\",\\\"hostname\\\":\\\"api.directory.signal.org\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.0190038},{\\\"answers\\\":null,\\\"engine\\\":\\\"system\\\",\\\"failure\\\":\\\"dns_nxdomain_error\\\",\\\"hostname\\\":\\\"api.directory.signal.org\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.0190038},{\\\"answers\\\":null,\\\"engine\\\":\\\"system\\\",\\\"failure\\\":\\\"dns_nxdomain_error\\\",\\\"hostname\\\":\\\"storage.signal.org\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.0219982},{\\\"answers\\\":null,\\\"engine\\\":\\\"system\\\",\\\"failure\\\":\\\"dns_nxdomain_error\\\",\\\"hostname\\\":\\\"storage.signal.org\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.0219982},{\\\"answers\\\":null,\\\"engine\\\":\\\"system\\\",\\\"failure\\\":\\\"dns_nxdomain_error\\\",\\\"hostname\\\":\\\"cdn.signal.org\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.0405418},{\\\"answers\\\":null,\\\"engine\\\":\\\"system\\\",\\\"failure\\\":\\\"dns_nxdomain_error\\\",\\\"hostname\\\":\\\"cdn.signal.org\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.0405418},{\\\"answers\\\":null,\\\"engine\\\":\\\"system\\\",\\\"failure\\\":\\\"dns_nxdomain_error\\\",\\\"hostname\\\":\\\"cdn2.signal.org\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.0456917},{\\\"answers\\\":null,\\\"engine\\\":\\\"system\\\",\\\"failure\\\":\\\"dns_nxdomain_error\\\",\\\"hostname\\\":\\\"cdn2.signal.org\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.0456917},{\\\"answers\\\":null,\\\"engine\\\":\\\"system\\\",\\\"failure\\\":\\\"dns_nxdomain_error\\\",\\\"hostname\\\":\\\"sfu.voip.signal.org\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.0618044},{\\\"answers\\\":null,\\\"engine\\\":\\\"system\\\",\\\"failure\\\":\\\"dns_nxdomain_error\\\",\\\"hostname\\\":\\\"sfu.voip.signal.org\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.0618044},{\\\"answers\\\":null,\\\"engine\\\":\\\"system\\\",\\\"failure\\\":\\\"dns_nxdomain_error\\\",\\\"hostname\\\":\\\"uptime.signal.org\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.0708055},{\\\"answers\\\":null,\\\"engine\\\":\\\"system\\\",\\\"failure\\\":\\\"dns_nxdomain_error\\\",\\\"hostname\\\":\\\"uptime.signal.org\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.0708055},{\\\"answers\\\":[{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"76.223.92.165\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"13.248.212.111\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"textsecure-service.whispersystems.org\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.0200018}],\\\"requests\\\":[{\\\"failure\\\":\\\"dns_nxdomain_error\\\",\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US;q=0.8,en;q=0.5\\\"],[\\\"Host\\\",\\\"api.directory.signal.org\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/89.0.4389.90 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"Host\\\":\\\"api.directory.signal.org\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/89.0.4389.90 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"https:\\\\/\\\\/api.directory.signal.org\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":0,\\\"headers_list\\\":null,\\\"headers\\\":null},\\\"t\\\":0.0010017},{\\\"failure\\\":\\\"dns_nxdomain_error\\\",\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US;q=0.8,en;q=0.5\\\"],[\\\"Host\\\",\\\"storage.signal.org\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/89.0.4389.90 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"Host\\\":\\\"storage.signal.org\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/89.0.4389.90 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"https:\\\\/\\\\/storage.signal.org\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":0,\\\"headers_list\\\":null,\\\"headers\\\":null},\\\"t\\\":0.0010017},{\\\"failure\\\":\\\"dns_nxdomain_error\\\",\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US;q=0.8,en;q=0.5\\\"],[\\\"Host\\\",\\\"cdn.signal.org\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/89.0.4389.90 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"Host\\\":\\\"cdn.signal.org\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/89.0.4389.90 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"https:\\\\/\\\\/cdn.signal.org\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":0,\\\"headers_list\\\":null,\\\"headers\\\":null},\\\"t\\\":0.0190038},{\\\"failure\\\":\\\"dns_nxdomain_error\\\",\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US;q=0.8,en;q=0.5\\\"],[\\\"Host\\\",\\\"cdn2.signal.org\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/89.0.4389.90 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"Host\\\":\\\"cdn2.signal.org\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/89.0.4389.90 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"https:\\\\/\\\\/cdn2.signal.org\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":0,\\\"headers_list\\\":null,\\\"headers\\\":null},\\\"t\\\":0.0240034},{\\\"failure\\\":\\\"dns_nxdomain_error\\\",\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US;q=0.8,en;q=0.5\\\"],[\\\"Host\\\",\\\"sfu.voip.signal.org\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/89.0.4389.90 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"Host\\\":\\\"sfu.voip.signal.org\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/89.0.4389.90 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"https:\\\\/\\\\/sfu.voip.signal.org\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":0,\\\"headers_list\\\":null,\\\"headers\\\":null},\\\"t\\\":0.0405418},{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US;q=0.8,en;q=0.5\\\"],[\\\"Host\\\",\\\"textsecure-service.whispersystems.org\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/89.0.4389.90 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"Host\\\":\\\"textsecure-service.whispersystems.org\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/89.0.4389.90 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"https:\\\\/\\\\/textsecure-service.whispersystems.org\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"{\\\\\\\"code\\\\\\\":404,\\\\\\\"message\\\\\\\":\\\\\\\"HTTP 404 Not Found\\\\\\\"}\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":404,\\\"headers_list\\\":[[\\\"Content-Length\\\",\\\"43\\\"],[\\\"Content-Type\\\",\\\"application\\\\/json\\\"],[\\\"Date\\\",\\\"Thu, 15 Apr 2021 08:42:30 GMT\\\"],[\\\"X-Signal-Timestamp\\\",\\\"1618476150152\\\"]],\\\"headers\\\":{\\\"Content-Length\\\":\\\"43\\\",\\\"Content-Type\\\":\\\"application\\\\/json\\\",\\\"Date\\\":\\\"Thu, 15 Apr 2021 08:42:30 GMT\\\",\\\"X-Signal-Timestamp\\\":\\\"1618476150152\\\"}},\\\"t\\\":0.0010017}],\\\"tcp_connect\\\":[{\\\"ip\\\":\\\"76.223.92.165\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.2021612}],\\\"tls_handshakes\\\":[{\\\"cipher_suite\\\":\\\"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256\\\",\\\"failure\\\":null,\\\"negotiated_protocol\\\":\\\"h2\\\",\\\"no_tls_verify\\\":false,\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIID4zCCAsugAwIBAgICEBgwDQYJKoZIhvcNAQELBQAwgY0xCzAJBgNVBAYTAlVTMRMwEQYDVQQIDApDYWxpZm9ybmlhMRYwFAYDVQQHDA1TYW4gRnJhbmNpc2NvMR0wGwYDVQQKDBRPcGVuIFdoaXNwZXIgU3lzdGVtczEdMBsGA1UECwwUT3BlbiBXaGlzcGVyIFN5c3RlbXMxEzARBgNVBAMMClRleHRTZWN1cmUwHhcNMTkwMjE1MTczODE3WhcNMjkwMzEyMTgyMDIwWjCBkDELMAkGA1UEBhMCVVMxEzARBgNVBAgMCkNhbGlmb3JuaWExHTAbBgNVBAoMFE9wZW4gV2hpc3BlciBTeXN0ZW1zMR0wGwYDVQQLDBRPcGVuIFdoaXNwZXIgU3lzdGVtczEuMCwGA1UEAwwldGV4dHNlY3VyZS1zZXJ2aWNlLndoaXNwZXJzeXN0ZW1zLm9yZzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKzIEbXRRbfAosvPk4magHWzsHhwOzu7On7EA4xxqViHbN4ox4jl5Lh9mu6nVW0eBvxc9zQKPG0ijgQJN\\\\/SV53jFwjqqtr4JYTsHzKs6bgHlYH6sW3XHxePj5JFKSSXWY7lKNASVl5KkSmhaiYItEPExvSoPB9bNwupixZ5Ae0iIE\\\\/NYQA6yZXpQTY0dBU0l1q0pQeXzLXqgJetThzSXr6j5soNO2KyRoMBNbI42fPUYvWRCOUfyUNI2fb3qsuZD+QQ7YKxl5hgDBU8oNCNN80sNWjhh5nFEOWGj5lxl1qYTkp3sWJJGYD6cuQDJ1DrSKNbDUWnslIe+wvZfTx9+km0CAwEAAaNIMEYwRAYDVR0RBD0wO4IldGV4dHNlY3VyZS1zZXJ2aWNlLndoaXNwZXJzeXN0ZW1zLm9yZ4ISc2VydmljZS5zaWduYWwub3JnMA0GCSqGSIb3DQEBCwUAA4IBAQApay5HvPcMP+HE2vS3WOxL\\\\/ygG1o\\\\/q4zcO\\\\/VYOfA7q2yiFN2FDF8lEcwEqcDMAz2+hGK\\\\/fXi2gaIYq6fp3fL9OtzIrXmUNCB2I9PpuI4jj6xUtERecOXSaHE2C3TI3t7CIcvhbGU1OrJiDLbVFHE8RAetsJJyd2YWuzBwd9U3oWS4ZNzjlwQLTOiJpoApSKmMlQ6OVfgdr6rRTI1ocw+q4\\\\/wDxcYEhiLoMljy42A\\\\/WrwXzyUMDkcAtZHTjkUAuSLivn434nLcYXalMUIW8sQNLksKTqVH26MKS2t2HRVs4cwDfmtGzmWSLbgRBl\\\\/8Oquq5XLLNEUIM31NVcBUFpKhJ\\\",\\\"format\\\":\\\"base64\\\"},{\\\"data\\\":\\\"MIID7zCCAtegAwIBAgIJAIm6LatK5PNiMA0GCSqGSIb3DQEBBQUAMIGNMQswCQYDVQQGEwJVUzETMBEGA1UECAwKQ2FsaWZvcm5pYTEWMBQGA1UEBwwNU2FuIEZyYW5jaXNjbzEdMBsGA1UECgwUT3BlbiBXaGlzcGVyIFN5c3RlbXMxHTAbBgNVBAsMFE9wZW4gV2hpc3BlciBTeXN0ZW1zMRMwEQYDVQQDDApUZXh0U2VjdXJlMB4XDTEzMDMyNTIyMTgzNVoXDTIzMDMyMzIyMTgzNVowgY0xCzAJBgNVBAYTAlVTMRMwEQYDVQQIDApDYWxpZm9ybmlhMRYwFAYDVQQHDA1TYW4gRnJhbmNpc2NvMR0wGwYDVQQKDBRPcGVuIFdoaXNwZXIgU3lzdGVtczEdMBsGA1UECwwUT3BlbiBXaGlzcGVyIFN5c3RlbXMxEzARBgNVBAMMClRleHRTZWN1cmUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDBSWBpOCBDF0i4q2d4jAXkSXUGpbeWugVPQCjaL6qD9QDOxeW1afvfPo863i6Crq1KDxHpB36EwzVcjwLkFTIMeo7t9s1FQolAt3mErV2U0vie6Ves+yj6grSfxwIDAcdsKmI0a1SQCZlr3Q1tcHAkAKFRxYNawADyps5B+Zmqcgf653TXS5\\\\/0IPPQLocLn8GWLwOYNnYfBvILKDMItmZTtEbucdigxEA9mfIvvHADEbteLtVgwBm9R5vVvtwrD6CCxI3pgH7EH7kMP0Od93wLisvn1yhHY7FuYlrkYqdkMvWUrKoASVw4jb69vaeJCUdU+HCoXOSP1PQcL6WenNCHAgMBAAGjUDBOMB0GA1UdDgQWBBQBixjxP\\\\/s5GURuhYa+lGUypzI8kDAfBgNVHSMEGDAWgBQBixjxP\\\\/s5GURuhYa+lGUypzI8kDAMBgNVHRMEBTADAQH\\\\/MA0GCSqGSIb3DQEBBQUAA4IBAQB+Hr4hC56m0LvJAu1RK6NuPDbTMEN7\\\\/jMojFHxH4P3XPFfupjR+bkDq0pPOU6JjIxnrD1XD\\\\/EVmTTaTVY5iOheyv7UzJOefb2pLOc9qsuvI4fnaESh9bhzln+LXxtCrRPGhkxA1IMIo3J\\\\/s2WF\\\\/KVYZyciu6b4ubJ91XPAuBNZwImug7\\\\/srWvbpk0hq6A6z140WTVSKtJG7EP41kJe\\\\/oF4usY5J7LPkxK3LWzMJnb5EIJDmRvyH8pyRwWg6Qm6qiGFaI4nL8QU4La1x2en4DGXRaLMPRwjELNgQPodR38zoCMuA8gHZfZYYoZ7D7Q1wNUiVHcxuFrEeBaYJbLErwLV\\\",\\\"format\\\":\\\"base64\\\"}],\\\"server_name\\\":\\\"textsecure-service.whispersystems.org\\\",\\\"t\\\":0.5658194,\\\"tags\\\":null,\\\"tls_version\\\":\\\"TLSv1.2\\\"}],\\\"signal_backend_status\\\":\\\"blocked\\\",\\\"signal_backend_failure\\\":\\\"dns_nxdomain_error\\\"},\\\"test_name\\\":\\\"signal\\\",\\\"test_runtime\\\":0.7635323,\\\"test_start_time\\\":\\\"2021-04-15 08:42:27\\\",\\\"test_version\\\":\\\"0.2.0\\\"}\\n\",\"category_code\":\"\",\"verification_status\":\"unverified\"}" +} \ No newline at end of file diff --git a/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20220121234007.821843_DE_psiphon_f90aefe2132c91d0_full-true.json b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20220121234007.821843_DE_psiphon_f90aefe2132c91d0_full-true.json new file mode 100644 index 000000000..84056c512 --- /dev/null +++ b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20220121234007.821843_DE_psiphon_f90aefe2132c91d0_full-true.json @@ -0,0 +1,5 @@ +{ + "status": 200, + "contentType": "application/json", + "body": "{\"input\":\"\",\"measurement_start_time\":\"2022-01-21T23:39:07Z\",\"measurement_uid\":\"20220121234007.821843_DE_psiphon_f90aefe2132c91d0\",\"report_id\":\"20220121T233907Z_psiphon_DE_8881_n1_UbfRaBjmCouBKTPq\",\"test_name\":\"psiphon\",\"test_start_time\":\"2022-01-21T23:39:07Z\",\"probe_asn\":8881,\"probe_cc\":\"DE\",\"scores\":\"{\\\"blocking_general\\\":1.0,\\\"blocking_global\\\":0.0,\\\"blocking_country\\\":0.0,\\\"blocking_isp\\\":0.0,\\\"blocking_local\\\":0.0,\\\"accuracy\\\":1.0,\\\"extra\\\":{\\\"test_runtime\\\":60.017031124,\\\"bootstrap_time\\\":0}}\",\"anomaly\":true,\"confirmed\":false,\"failure\":false,\"raw_measurement\":\"{\\\"annotations\\\":{\\\"engine_name\\\":\\\"ooniprobe-engine\\\",\\\"engine_version\\\":\\\"3.10.0-beta.3\\\",\\\"platform\\\":\\\"linux\\\"},\\\"data_format_version\\\":\\\"0.2.0\\\",\\\"extensions\\\":{\\\"dnst\\\":0,\\\"httpt\\\":0,\\\"netevents\\\":0,\\\"tcpconnect\\\":0,\\\"tlshandshake\\\":0,\\\"tunnel\\\":0},\\\"input\\\":null,\\\"measurement_start_time\\\":\\\"2022-01-21 23:39:07\\\",\\\"probe_asn\\\":\\\"AS8881\\\",\\\"probe_cc\\\":\\\"DE\\\",\\\"probe_ip\\\":\\\"127.0.0.1\\\",\\\"probe_network_name\\\":\\\"1&1 Versatel Deutschland GmbH\\\",\\\"report_id\\\":\\\"20220121T233907Z_psiphon_DE_8881_n1_UbfRaBjmCouBKTPq\\\",\\\"resolver_asn\\\":\\\"AS8881\\\",\\\"resolver_ip\\\":\\\"62.220.18.43\\\",\\\"resolver_network_name\\\":\\\"1&1 Versatel Deutschland GmbH\\\",\\\"software_name\\\":\\\"iThena-ooniprobe\\\",\\\"software_version\\\":\\\"1.0.0\\\",\\\"test_keys\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failed_operation\\\":\\\"top_level\\\",\\\"failure\\\":\\\"unknown_failure: clientlib: tunnel establishment timeout\\\",\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":null,\\\"tcp_connect\\\":null,\\\"tls_handshakes\\\":null,\\\"tunnel\\\":\\\"psiphon\\\",\\\"max_runtime\\\":60},\\\"test_name\\\":\\\"psiphon\\\",\\\"test_runtime\\\":60.017031124,\\\"test_start_time\\\":\\\"2022-01-21 23:39:07\\\",\\\"test_version\\\":\\\"0.5.0\\\"}\\n\",\"category_code\":\"\",\"verification_status\":\"unverified\"}" +} \ No newline at end of file diff --git a/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20221105223930.168194_JP_whatsapp_e3e891f975f0d5ef_full-true.json b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20221105223930.168194_JP_whatsapp_e3e891f975f0d5ef_full-true.json new file mode 100644 index 000000000..e59329754 --- /dev/null +++ b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20221105223930.168194_JP_whatsapp_e3e891f975f0d5ef_full-true.json @@ -0,0 +1,5 @@ +{ + "status": 200, + "contentType": "application/json", + "body": "{\"input\":\"\",\"measurement_start_time\":\"2022-11-05T22:39:29Z\",\"measurement_uid\":\"20221105223930.168194_JP_whatsapp_e3e891f975f0d5ef\",\"report_id\":\"20221105T223928Z_whatsapp_JP_55392_n1_aL6HH9GHYc1YbILm\",\"test_name\":\"whatsapp\",\"test_start_time\":\"2022-11-05T22:39:28Z\",\"probe_asn\":55392,\"probe_cc\":\"JP\",\"scores\":\"{\\\"blocking_general\\\":1.0,\\\"blocking_global\\\":0.0,\\\"blocking_country\\\":0.0,\\\"blocking_isp\\\":0.0,\\\"blocking_local\\\":0.0}\",\"anomaly\":true,\"confirmed\":false,\"failure\":false,\"raw_measurement\":\"{\\\"annotations\\\":{\\\"architecture\\\":\\\"arm\\\",\\\"engine_name\\\":\\\"ooniprobe-engine\\\",\\\"engine_version\\\":\\\"3.15.2\\\",\\\"flavor\\\":\\\"stableFdroid\\\",\\\"network_type\\\":\\\"vpn\\\",\\\"platform\\\":\\\"android\\\"},\\\"data_format_version\\\":\\\"0.2.0\\\",\\\"extensions\\\":{\\\"dnst\\\":0,\\\"httpt\\\":0,\\\"netevents\\\":0,\\\"tcpconnect\\\":0,\\\"tlshandshake\\\":0,\\\"tunnel\\\":0},\\\"input\\\":null,\\\"measurement_start_time\\\":\\\"2022-11-05 22:39:29\\\",\\\"probe_asn\\\":\\\"AS55392\\\",\\\"probe_cc\\\":\\\"JP\\\",\\\"probe_ip\\\":\\\"127.0.0.1\\\",\\\"probe_network_name\\\":\\\"INTERNET MULTIFEED CO.\\\",\\\"report_id\\\":\\\"20221105T223928Z_whatsapp_JP_55392_n1_aL6HH9GHYc1YbILm\\\",\\\"resolver_asn\\\":\\\"AS55392\\\",\\\"resolver_ip\\\":\\\"217.178.107.158\\\",\\\"resolver_network_name\\\":\\\"INTERNET MULTIFEED CO.\\\",\\\"software_name\\\":\\\"ooniprobe-android\\\",\\\"software_version\\\":\\\"3.7.1\\\",\\\"test_keys\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failed_operation\\\":null,\\\"failure\\\":null,\\\"network_events\\\":[{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":0.004101563},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":0.006673386},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.006844584},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.052066823},{\\\"address\\\":\\\"0.0.0.0:80\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.052675886},{\\\"failure\\\":null,\\\"num_bytes\\\":278,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.053055469},{\\\"failure\\\":null,\\\"num_bytes\\\":4096,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.075643855},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_metadata\\\",\\\"t\\\":0.075755782},{\\\"failure\\\":null,\\\"num_bytes\\\":901,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.075883959},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_body_snapshot\\\",\\\"t\\\":0.07601172},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":0.076015001},{\\\"failure\\\":\\\"connection_already_closed\\\",\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.076622136},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.037900678},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.10098625},{\\\"address\\\":\\\"0.0.0.0:5222\\\",\\\"failure\\\":\\\"connection_refused\\\",\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.101330677},{\\\"address\\\":\\\"[::]:5222\\\",\\\"failure\\\":\\\"connection_refused\\\",\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.102707604},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.053160417},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.100561875},{\\\"address\\\":\\\"0.0.0.0:5222\\\",\\\"failure\\\":\\\"connection_refused\\\",\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.101749115},{\\\"address\\\":\\\"[::]:5222\\\",\\\"failure\\\":\\\"connection_refused\\\",\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.103545156},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.077105886},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.107766511},{\\\"address\\\":\\\"0.0.0.0:5222\\\",\\\"failure\\\":\\\"connection_refused\\\",\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.117340678},{\\\"address\\\":\\\"[::]:5222\\\",\\\"failure\\\":\\\"connection_refused\\\",\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.120042865},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.103775521},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.137565626},{\\\"address\\\":\\\"0.0.0.0:5222\\\",\\\"failure\\\":\\\"connection_refused\\\",\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.138094636},{\\\"address\\\":\\\"[::]:5222\\\",\\\"failure\\\":\\\"connection_refused\\\",\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.13889974},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.120238542},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.151607396},{\\\"address\\\":\\\"0.0.0.0:5222\\\",\\\"failure\\\":\\\"connection_refused\\\",\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.152070417},{\\\"address\\\":\\\"[::]:5222\\\",\\\"failure\\\":\\\"connection_refused\\\",\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.152858802},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.116274376},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.157539896},{\\\"address\\\":\\\"0.0.0.0:5222\\\",\\\"failure\\\":\\\"connection_refused\\\",\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.158012761},{\\\"address\\\":\\\"[::]:5222\\\",\\\"failure\\\":\\\"connection_refused\\\",\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.158812292},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.161647344},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.163483177},{\\\"address\\\":\\\"0.0.0.0:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.163972188},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.146593855},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.180227448},{\\\"address\\\":\\\"0.0.0.0:5222\\\",\\\"failure\\\":\\\"connection_refused\\\",\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.181575365},{\\\"address\\\":\\\"[::]:5222\\\",\\\"failure\\\":\\\"connection_refused\\\",\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.184962187},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.153053125},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.192310677},{\\\"address\\\":\\\"0.0.0.0:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.19282224},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.164239271},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.20778474},{\\\"address\\\":\\\"0.0.0.0:5222\\\",\\\"failure\\\":\\\"connection_refused\\\",\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.208266042},{\\\"address\\\":\\\"[::]:5222\\\",\\\"failure\\\":\\\"connection_refused\\\",\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.209797865},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.198299792},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.235134531},{\\\"address\\\":\\\"0.0.0.0:5222\\\",\\\"failure\\\":\\\"connection_refused\\\",\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.235873282},{\\\"address\\\":\\\"[::]:5222\\\",\\\"failure\\\":\\\"connection_refused\\\",\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.237038542},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.193187552},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.242114844},{\\\"address\\\":\\\"0.0.0.0:5222\\\",\\\"failure\\\":\\\"connection_refused\\\",\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.2426575},{\\\"address\\\":\\\"[::]:5222\\\",\\\"failure\\\":\\\"connection_refused\\\",\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.243432552},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":0.210048334},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":0.210109584},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.210250105},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.212969323},{\\\"address\\\":\\\"0.0.0.0:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.232285834},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_start\\\",\\\"t\\\":0.232334792},{\\\"failure\\\":null,\\\"num_bytes\\\":286,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.23741448},{\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.25189974},{\\\"failure\\\":null,\\\"num_bytes\\\":839,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.25424849},{\\\"failure\\\":null,\\\"num_bytes\\\":30,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.258211615},{\\\"failure\\\":\\\"ssl_invalid_hostname\\\",\\\"operation\\\":\\\"tls_handshake_done\\\",\\\"t\\\":0.258298907},{\\\"failure\\\":\\\"ssl_invalid_hostname\\\",\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":0.258641719},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.258984636},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.267391407},{\\\"address\\\":\\\"0.0.0.0:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.269954948},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.237235365},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.265119219},{\\\"address\\\":\\\"0.0.0.0:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.271665365},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.270285782},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.275327604},{\\\"address\\\":\\\"0.0.0.0:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.280969011},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.275813282},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.302631563},{\\\"address\\\":\\\"0.0.0.0:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.30348125},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.281304844},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.309232969},{\\\"address\\\":\\\"0.0.0.0:5222\\\",\\\"failure\\\":\\\"connection_refused\\\",\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.309725886},{\\\"address\\\":\\\"[::]:5222\\\",\\\"failure\\\":\\\"connection_refused\\\",\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.310570417},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.310814844},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.312691511},{\\\"address\\\":\\\"0.0.0.0:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.313278386},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.313553386},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.31642974},{\\\"address\\\":\\\"0.0.0.0:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.318008386},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":0.243701823},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":0.243719011},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.243867292},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.298477553},{\\\"address\\\":\\\"0.0.0.0:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.299244584},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_start\\\",\\\"t\\\":0.29926099},{\\\"failure\\\":null,\\\"num_bytes\\\":284,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.302696979},{\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.330248646},{\\\"failure\\\":null,\\\"num_bytes\\\":839,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.334572812},{\\\"failure\\\":null,\\\"num_bytes\\\":30,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.335801355},{\\\"failure\\\":\\\"ssl_invalid_hostname\\\",\\\"operation\\\":\\\"tls_handshake_done\\\",\\\"t\\\":0.338339636},{\\\"failure\\\":\\\"ssl_invalid_hostname\\\",\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":0.339827396},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.318334532},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.320395313},{\\\"address\\\":\\\"0.0.0.0:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.344994635},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.303828021},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.343930885},{\\\"address\\\":\\\"0.0.0.0:5222\\\",\\\"failure\\\":\\\"connection_refused\\\",\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.344480521},{\\\"address\\\":\\\"[::]:5222\\\",\\\"failure\\\":\\\"connection_refused\\\",\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.348731094},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.349132136},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.351125782},{\\\"address\\\":\\\"0.0.0.0:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.355769115},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.352156198},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.357612917},{\\\"address\\\":\\\"0.0.0.0:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.359894427},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.361194844},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.368335365},{\\\"address\\\":\\\"0.0.0.0:5222\\\",\\\"failure\\\":\\\"connection_refused\\\",\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.370459584},{\\\"address\\\":\\\"[::]:5222\\\",\\\"failure\\\":\\\"connection_refused\\\",\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.383379583},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.341418646},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.387345782},{\\\"address\\\":\\\"0.0.0.0:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.387849532},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.397368386},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.406516615},{\\\"address\\\":\\\"0.0.0.0:5222\\\",\\\"failure\\\":\\\"connection_refused\\\",\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.407064011},{\\\"address\\\":\\\"[::]:5222\\\",\\\"failure\\\":\\\"connection_refused\\\",\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.408432605},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.408635313},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.413676719},{\\\"address\\\":\\\"0.0.0.0:5222\\\",\\\"failure\\\":\\\"connection_refused\\\",\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.414194479},{\\\"address\\\":\\\"[::]:5222\\\",\\\"failure\\\":\\\"connection_refused\\\",\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.415194739},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.356119063},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.411344271},{\\\"address\\\":\\\"0.0.0.0:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.413237083},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.383579583},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.389231928},{\\\"address\\\":\\\"0.0.0.0:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.411772396},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.417256459},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.421527448},{\\\"address\\\":\\\"0.0.0.0:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.422316823},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.415857292},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.419007136},{\\\"address\\\":\\\"0.0.0.0:5222\\\",\\\"failure\\\":\\\"connection_refused\\\",\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.419457448},{\\\"address\\\":\\\"[::]:5222\\\",\\\"failure\\\":\\\"connection_refused\\\",\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.423391042},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.415397917},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.41977948},{\\\"address\\\":\\\"0.0.0.0:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.426222553}],\\\"queries\\\":[{\\\"answers\\\":[{\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"0.0.0.0\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"web.whatsapp.com\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.052066823},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"::\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"web.whatsapp.com\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.052066823},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"0.0.0.0\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e9.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.10098625},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"::\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e9.whatsapp.net\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.10098625},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"0.0.0.0\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e3.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.100561875},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"::\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e3.whatsapp.net\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.100561875},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"0.0.0.0\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e2.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.107766511},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"::\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e2.whatsapp.net\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.107766511},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"0.0.0.0\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e7.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.137565626},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"::\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e7.whatsapp.net\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.137565626},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"0.0.0.0\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e15.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.151607396},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"::\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e15.whatsapp.net\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.151607396},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"0.0.0.0\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e6.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.157539896},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"::\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e6.whatsapp.net\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.157539896},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"0.0.0.0\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e9.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.163483177},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"::\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e9.whatsapp.net\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.163483177},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"0.0.0.0\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e14.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.180227448},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"::\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e14.whatsapp.net\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.180227448},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"0.0.0.0\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e1.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.192310677},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"::\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e1.whatsapp.net\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.192310677},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"0.0.0.0\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e4.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.20778474},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"::\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e4.whatsapp.net\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.20778474},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"0.0.0.0\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e8.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.235134531},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"::\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e8.whatsapp.net\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.235134531},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"0.0.0.0\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e11.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.242114844},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"::\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e11.whatsapp.net\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.242114844},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"0.0.0.0\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"web.whatsapp.com\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.212969323},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"::\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"web.whatsapp.com\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.212969323},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"0.0.0.0\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e2.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.267391407},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"::\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e2.whatsapp.net\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.267391407},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"0.0.0.0\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e15.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.265119219},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"::\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e15.whatsapp.net\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.265119219},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"0.0.0.0\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e7.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.275327604},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"::\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e7.whatsapp.net\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.275327604},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"0.0.0.0\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e10.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.302631563},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"::\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e10.whatsapp.net\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.302631563},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"0.0.0.0\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e13.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.309232969},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"::\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e13.whatsapp.net\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.309232969},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"0.0.0.0\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e8.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.312691511},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"::\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e8.whatsapp.net\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.312691511},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"0.0.0.0\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e13.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.31642974},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"::\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e13.whatsapp.net\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.31642974},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"0.0.0.0\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"v.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.298477553},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"::\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"v.whatsapp.net\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.298477553},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"0.0.0.0\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e14.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.320395313},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"::\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e14.whatsapp.net\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.320395313},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"0.0.0.0\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e5.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.343930885},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"::\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e5.whatsapp.net\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.343930885},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"0.0.0.0\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e3.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.351125782},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"::\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e3.whatsapp.net\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.351125782},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"0.0.0.0\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e4.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.357612917},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"::\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e4.whatsapp.net\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.357612917},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"0.0.0.0\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e1.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.368335365},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"::\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e1.whatsapp.net\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.368335365},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"0.0.0.0\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e16.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.387345782},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"::\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e16.whatsapp.net\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.387345782},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"0.0.0.0\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e10.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.406516615},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"::\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e10.whatsapp.net\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.406516615},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"0.0.0.0\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e16.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.413676719},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"::\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e16.whatsapp.net\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.413676719},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"0.0.0.0\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e12.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.411344271},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"::\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e12.whatsapp.net\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.411344271},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"0.0.0.0\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e11.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.389231928},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"::\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e11.whatsapp.net\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.389231928},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"0.0.0.0\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e6.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.421527448},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"::\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e6.whatsapp.net\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.421527448},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"0.0.0.0\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e12.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.419007136},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"::\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e12.whatsapp.net\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.419007136},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"0.0.0.0\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e5.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.41977948},{\\\"answers\\\":[{\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"::\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e5.whatsapp.net\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.41977948}],\\\"requests\\\":[{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US,en;q=0.9\\\"],[\\\"Host\\\",\\\"web.whatsapp.com\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US,en;q=0.9\\\",\\\"Host\\\":\\\"web.whatsapp.com\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"http:\\\\/\\\\/web.whatsapp.com\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"\\\\n\\\\n\\\\n\\\\n \\\\n \\\\n \\\\n \\\\n \\\\n <\\\\/linearGradient>\\\\n \\\\n \\\\n \\\\n <\\\\/defs>\\\\n \\\\n \\\\n \\\\n \\\\n image\\\\/svg+xml<\\\\/dc:format>\\\\n \\\\n <\\\\/dc:title>\\\\n <\\\\/cc:Work>\\\\n <\\\\/rdf:RDF>\\\\n <\\\\/metadata>\\\\n \\\\n<\\\\/svg>\\\\n\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":200,\\\"headers_list\\\":[[\\\"Content-Length\\\",\\\"4902\\\"],[\\\"Content-Type\\\",\\\"image\\\\/svg+xml\\\"],[\\\"Etag\\\",\\\"\\\\\\\"1655812555.4902\\\\\\\"\\\"]],\\\"headers\\\":{\\\"Content-Length\\\":\\\"4902\\\",\\\"Content-Type\\\":\\\"image\\\\/svg+xml\\\",\\\"Etag\\\":\\\"\\\\\\\"1655812555.4902\\\\\\\"\\\"}},\\\"t\\\":0.004101563},{\\\"failure\\\":\\\"ssl_invalid_hostname\\\",\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US,en;q=0.9\\\"],[\\\"Host\\\",\\\"web.whatsapp.com\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US,en;q=0.9\\\",\\\"Host\\\":\\\"web.whatsapp.com\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"https:\\\\/\\\\/web.whatsapp.com\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":0,\\\"headers_list\\\":null,\\\"headers\\\":null},\\\"t\\\":0.210048334},{\\\"failure\\\":\\\"ssl_invalid_hostname\\\",\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US,en;q=0.9\\\"],[\\\"Host\\\",\\\"v.whatsapp.net\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US,en;q=0.9\\\",\\\"Host\\\":\\\"v.whatsapp.net\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"https:\\\\/\\\\/v.whatsapp.net\\\\/v2\\\\/register\\\"},\\\"response\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":0,\\\"headers_list\\\":null,\\\"headers\\\":null},\\\"t\\\":0.243701823}],\\\"tcp_connect\\\":[{\\\"ip\\\":\\\"0.0.0.0\\\",\\\"port\\\":80,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.052675886},{\\\"ip\\\":\\\"0.0.0.0\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":\\\"connection_refused\\\",\\\"success\\\":false},\\\"t\\\":0.101330677},{\\\"ip\\\":\\\"::\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":\\\"connection_refused\\\",\\\"success\\\":false},\\\"t\\\":0.102707604},{\\\"ip\\\":\\\"0.0.0.0\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":\\\"connection_refused\\\",\\\"success\\\":false},\\\"t\\\":0.101749115},{\\\"ip\\\":\\\"::\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":\\\"connection_refused\\\",\\\"success\\\":false},\\\"t\\\":0.103545156},{\\\"ip\\\":\\\"0.0.0.0\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":\\\"connection_refused\\\",\\\"success\\\":false},\\\"t\\\":0.117340678},{\\\"ip\\\":\\\"::\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":\\\"connection_refused\\\",\\\"success\\\":false},\\\"t\\\":0.120042865},{\\\"ip\\\":\\\"0.0.0.0\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":\\\"connection_refused\\\",\\\"success\\\":false},\\\"t\\\":0.138094636},{\\\"ip\\\":\\\"::\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":\\\"connection_refused\\\",\\\"success\\\":false},\\\"t\\\":0.13889974},{\\\"ip\\\":\\\"0.0.0.0\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":\\\"connection_refused\\\",\\\"success\\\":false},\\\"t\\\":0.152070417},{\\\"ip\\\":\\\"::\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":\\\"connection_refused\\\",\\\"success\\\":false},\\\"t\\\":0.152858802},{\\\"ip\\\":\\\"0.0.0.0\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":\\\"connection_refused\\\",\\\"success\\\":false},\\\"t\\\":0.158012761},{\\\"ip\\\":\\\"::\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":\\\"connection_refused\\\",\\\"success\\\":false},\\\"t\\\":0.158812292},{\\\"ip\\\":\\\"0.0.0.0\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.163972188},{\\\"ip\\\":\\\"0.0.0.0\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":\\\"connection_refused\\\",\\\"success\\\":false},\\\"t\\\":0.181575365},{\\\"ip\\\":\\\"::\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":\\\"connection_refused\\\",\\\"success\\\":false},\\\"t\\\":0.184962187},{\\\"ip\\\":\\\"0.0.0.0\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.19282224},{\\\"ip\\\":\\\"0.0.0.0\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":\\\"connection_refused\\\",\\\"success\\\":false},\\\"t\\\":0.208266042},{\\\"ip\\\":\\\"::\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":\\\"connection_refused\\\",\\\"success\\\":false},\\\"t\\\":0.209797865},{\\\"ip\\\":\\\"0.0.0.0\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":\\\"connection_refused\\\",\\\"success\\\":false},\\\"t\\\":0.235873282},{\\\"ip\\\":\\\"::\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":\\\"connection_refused\\\",\\\"success\\\":false},\\\"t\\\":0.237038542},{\\\"ip\\\":\\\"0.0.0.0\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":\\\"connection_refused\\\",\\\"success\\\":false},\\\"t\\\":0.2426575},{\\\"ip\\\":\\\"::\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":\\\"connection_refused\\\",\\\"success\\\":false},\\\"t\\\":0.243432552},{\\\"ip\\\":\\\"0.0.0.0\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.232285834},{\\\"ip\\\":\\\"0.0.0.0\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.269954948},{\\\"ip\\\":\\\"0.0.0.0\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.271665365},{\\\"ip\\\":\\\"0.0.0.0\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.280969011},{\\\"ip\\\":\\\"0.0.0.0\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.30348125},{\\\"ip\\\":\\\"0.0.0.0\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":\\\"connection_refused\\\",\\\"success\\\":false},\\\"t\\\":0.309725886},{\\\"ip\\\":\\\"::\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":\\\"connection_refused\\\",\\\"success\\\":false},\\\"t\\\":0.310570417},{\\\"ip\\\":\\\"0.0.0.0\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.313278386},{\\\"ip\\\":\\\"0.0.0.0\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.318008386},{\\\"ip\\\":\\\"0.0.0.0\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.299244584},{\\\"ip\\\":\\\"0.0.0.0\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.344994635},{\\\"ip\\\":\\\"0.0.0.0\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":\\\"connection_refused\\\",\\\"success\\\":false},\\\"t\\\":0.344480521},{\\\"ip\\\":\\\"::\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":\\\"connection_refused\\\",\\\"success\\\":false},\\\"t\\\":0.348731094},{\\\"ip\\\":\\\"0.0.0.0\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.355769115},{\\\"ip\\\":\\\"0.0.0.0\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.359894427},{\\\"ip\\\":\\\"0.0.0.0\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":\\\"connection_refused\\\",\\\"success\\\":false},\\\"t\\\":0.370459584},{\\\"ip\\\":\\\"::\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":\\\"connection_refused\\\",\\\"success\\\":false},\\\"t\\\":0.383379583},{\\\"ip\\\":\\\"0.0.0.0\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.387849532},{\\\"ip\\\":\\\"0.0.0.0\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":\\\"connection_refused\\\",\\\"success\\\":false},\\\"t\\\":0.407064011},{\\\"ip\\\":\\\"::\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":\\\"connection_refused\\\",\\\"success\\\":false},\\\"t\\\":0.408432605},{\\\"ip\\\":\\\"0.0.0.0\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":\\\"connection_refused\\\",\\\"success\\\":false},\\\"t\\\":0.414194479},{\\\"ip\\\":\\\"::\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":\\\"connection_refused\\\",\\\"success\\\":false},\\\"t\\\":0.415194739},{\\\"ip\\\":\\\"0.0.0.0\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.413237083},{\\\"ip\\\":\\\"0.0.0.0\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.411772396},{\\\"ip\\\":\\\"0.0.0.0\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.422316823},{\\\"ip\\\":\\\"0.0.0.0\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":\\\"connection_refused\\\",\\\"success\\\":false},\\\"t\\\":0.419457448},{\\\"ip\\\":\\\"::\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":\\\"connection_refused\\\",\\\"success\\\":false},\\\"t\\\":0.423391042},{\\\"ip\\\":\\\"0.0.0.0\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.426222553}],\\\"tls_handshakes\\\":[{\\\"address\\\":\\\"127.0.0.1:443\\\",\\\"cipher_suite\\\":\\\"\\\",\\\"failure\\\":\\\"ssl_invalid_hostname\\\",\\\"negotiated_protocol\\\":\\\"\\\",\\\"no_tls_verify\\\":false,\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIIDLDCCAhSgAwIBAgIUaIyBWWs+uhs29nUg1XN6v52kpE4wDQYJKoZIhvcNAQELBQAwFDESMBAGA1UEAwwJbG9jYWxob3N0MB4XDTIxMDgxNTA4MDEyMFoXDTI0MDkxNDA4MDEyMFowFDESMBAGA1UEAwwJbG9jYWxob3N0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAug6VTEUA\\\\/te\\\\/2pqPuMhbNfkeNUg4P+pwoMij14Noz5hg6V5jRKADCb6eH+3VUvaZ2VM6kf4r6uNOcbZkxn1wo8dBzSVSiJ3NkiaFXesASrgoesm7GMZFPpV9HQAB4JwSdGOgXELUGevo4x8bdFnG6H8KIBRS8PiUADF8TPQNCSWnrufwB0a82cg7kqSGVJbHVrLy808oP02C7fWnGulvTZETdSOpBsaVQJhCX5pRs6Sdh0c0QNazIeLY1Flp+bVLLfJs1tCFDbKpMlCRQYN4jZxYvhRK4iEQoENSSXv5QyT3BcpX5J011k55VB1GLfnzNyPjvIdrjPDzh9whRkvdDQIDAQABo3YwdDBCBgNVHREEOzA5gglsb2NhbGhvc3SCESouZG91YmxlY2xpY2submV0ghMqLmcuZG91YmxlY2xpY2submV0hwR\\\\/AAABMAsGA1UdDwQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAMBgNVHRMEBTADAQH\\\\/MA0GCSqGSIb3DQEBCwUAA4IBAQCFoBPuwFLrFNIleNHXCssDwusUC5GXSM\\\\/sKV2pA6YQGirGu3hia5GAXFiyMhpO1m5igmeNnwc1BAkBbZrUitf0LYNvtemkrydagotNAoDCeZxSVllhUD6mXNp0jfWJXDNPjoy+t25Xs5Yonslj9fim+4SPhN1JCtblqo4cISjFBNJLu6Lljj8lyQkVGjzpqMdAnGdb4Q3OLdgqhY53rpJz6Smh9EPqEsA11h6QqgNPWKRtvC8NsJL5WCUQ8SmYU4UUDax5Vp1KTXY\\\\/C9EQTucAhst2Juxc1XJ2xyMdBmd1iWk0zbPokBSQ8HkS9NmoYFQIQG5i7eGl\\\\/GVftL88QaDy\\\",\\\"format\\\":\\\"base64\\\"}],\\\"server_name\\\":\\\"web.whatsapp.com\\\",\\\"t\\\":0.258298907,\\\"tags\\\":null,\\\"tls_version\\\":\\\"\\\"},{\\\"address\\\":\\\"127.0.0.1:443\\\",\\\"cipher_suite\\\":\\\"\\\",\\\"failure\\\":\\\"ssl_invalid_hostname\\\",\\\"negotiated_protocol\\\":\\\"\\\",\\\"no_tls_verify\\\":false,\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIIDLDCCAhSgAwIBAgIUaIyBWWs+uhs29nUg1XN6v52kpE4wDQYJKoZIhvcNAQELBQAwFDESMBAGA1UEAwwJbG9jYWxob3N0MB4XDTIxMDgxNTA4MDEyMFoXDTI0MDkxNDA4MDEyMFowFDESMBAGA1UEAwwJbG9jYWxob3N0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAug6VTEUA\\\\/te\\\\/2pqPuMhbNfkeNUg4P+pwoMij14Noz5hg6V5jRKADCb6eH+3VUvaZ2VM6kf4r6uNOcbZkxn1wo8dBzSVSiJ3NkiaFXesASrgoesm7GMZFPpV9HQAB4JwSdGOgXELUGevo4x8bdFnG6H8KIBRS8PiUADF8TPQNCSWnrufwB0a82cg7kqSGVJbHVrLy808oP02C7fWnGulvTZETdSOpBsaVQJhCX5pRs6Sdh0c0QNazIeLY1Flp+bVLLfJs1tCFDbKpMlCRQYN4jZxYvhRK4iEQoENSSXv5QyT3BcpX5J011k55VB1GLfnzNyPjvIdrjPDzh9whRkvdDQIDAQABo3YwdDBCBgNVHREEOzA5gglsb2NhbGhvc3SCESouZG91YmxlY2xpY2submV0ghMqLmcuZG91YmxlY2xpY2submV0hwR\\\\/AAABMAsGA1UdDwQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATAMBgNVHRMEBTADAQH\\\\/MA0GCSqGSIb3DQEBCwUAA4IBAQCFoBPuwFLrFNIleNHXCssDwusUC5GXSM\\\\/sKV2pA6YQGirGu3hia5GAXFiyMhpO1m5igmeNnwc1BAkBbZrUitf0LYNvtemkrydagotNAoDCeZxSVllhUD6mXNp0jfWJXDNPjoy+t25Xs5Yonslj9fim+4SPhN1JCtblqo4cISjFBNJLu6Lljj8lyQkVGjzpqMdAnGdb4Q3OLdgqhY53rpJz6Smh9EPqEsA11h6QqgNPWKRtvC8NsJL5WCUQ8SmYU4UUDax5Vp1KTXY\\\\/C9EQTucAhst2Juxc1XJ2xyMdBmd1iWk0zbPokBSQ8HkS9NmoYFQIQG5i7eGl\\\\/GVftL88QaDy\\\",\\\"format\\\":\\\"base64\\\"}],\\\"server_name\\\":\\\"v.whatsapp.net\\\",\\\"t\\\":0.338339636,\\\"tags\\\":null,\\\"tls_version\\\":\\\"\\\"}],\\\"registration_server_failure\\\":\\\"ssl_invalid_hostname\\\",\\\"registration_server_status\\\":\\\"blocked\\\",\\\"whatsapp_endpoints_blocked\\\":[],\\\"whatsapp_endpoints_dns_inconsistent\\\":[],\\\"whatsapp_endpoints_status\\\":\\\"ok\\\",\\\"whatsapp_web_failure\\\":\\\"ssl_invalid_hostname\\\",\\\"whatsapp_web_status\\\":\\\"blocked\\\"},\\\"test_name\\\":\\\"whatsapp\\\",\\\"test_runtime\\\":0.42799651,\\\"test_start_time\\\":\\\"2022-11-05 22:39:28\\\",\\\"test_version\\\":\\\"0.9.0\\\"}\\n\",\"category_code\":\"\",\"verification_status\":\"unverified\"}" +} \ No newline at end of file diff --git a/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20221109225810.435617_RU_telegram_ecbc73cacd8ea566_full-true.json b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20221109225810.435617_RU_telegram_ecbc73cacd8ea566_full-true.json new file mode 100644 index 000000000..cd1be8ae6 --- /dev/null +++ b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20221109225810.435617_RU_telegram_ecbc73cacd8ea566_full-true.json @@ -0,0 +1,5 @@ +{ + "status": 200, + "contentType": "application/json", + "body": "{\"input\":\"\",\"measurement_start_time\":\"2022-11-09T22:57:59Z\",\"measurement_uid\":\"20221109225810.435617_RU_telegram_ecbc73cacd8ea566\",\"report_id\":\"20221109T225726Z_telegram_RU_8402_n1_qnYloXASGMUg2G9O\",\"test_name\":\"telegram\",\"test_start_time\":\"2022-11-09T22:57:24Z\",\"probe_asn\":8402,\"probe_cc\":\"RU\",\"scores\":\"{\\\"blocking_general\\\":1.125,\\\"blocking_global\\\":0.0,\\\"blocking_country\\\":0.0,\\\"blocking_isp\\\":0.0,\\\"blocking_local\\\":0.0,\\\"web_failure\\\":\\\"generic_timeout_error\\\",\\\"accessible_endpoints\\\":14,\\\"unreachable_endpoints\\\":2,\\\"http_success_cnt\\\":12,\\\"http_failure_cnt\\\":0,\\\"msg\\\":\\\"failure: generic_timeout_error\\\"}\",\"anomaly\":true,\"confirmed\":false,\"failure\":false,\"raw_measurement\":\"{\\\"annotations\\\":{\\\"architecture\\\":\\\"arm64\\\",\\\"engine_name\\\":\\\"ooniprobe-engine\\\",\\\"engine_version\\\":\\\"3.15.2\\\",\\\"flavor\\\":\\\"stableFull\\\",\\\"network_type\\\":\\\"wifi\\\",\\\"origin\\\":\\\"autorun\\\",\\\"platform\\\":\\\"android\\\"},\\\"data_format_version\\\":\\\"0.2.0\\\",\\\"extensions\\\":{\\\"dnst\\\":0,\\\"httpt\\\":0,\\\"netevents\\\":0,\\\"tcpconnect\\\":0,\\\"tlshandshake\\\":0,\\\"tunnel\\\":0},\\\"input\\\":null,\\\"measurement_start_time\\\":\\\"2022-11-09 22:57:59\\\",\\\"probe_asn\\\":\\\"AS8402\\\",\\\"probe_cc\\\":\\\"RU\\\",\\\"probe_ip\\\":\\\"127.0.0.1\\\",\\\"probe_network_name\\\":\\\"PJSC \\\\\\\"Vimpelcom\\\\\\\"\\\",\\\"report_id\\\":\\\"20221109T225726Z_telegram_RU_8402_n1_qnYloXASGMUg2G9O\\\",\\\"resolver_asn\\\":\\\"AS15169\\\",\\\"resolver_ip\\\":\\\"74.125.74.6\\\",\\\"resolver_network_name\\\":\\\"Google LLC\\\",\\\"software_name\\\":\\\"ooniprobe-android-unattended\\\",\\\"software_version\\\":\\\"3.7.1\\\",\\\"test_keys\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failed_operation\\\":null,\\\"failure\\\":null,\\\"network_events\\\":[{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":0.000434077},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":0.000458847},{\\\"address\\\":\\\"149.154.175.50:80\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.361726154},{\\\"failure\\\":null,\\\"num_bytes\\\":296,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.362435616},{\\\"failure\\\":null,\\\"num_bytes\\\":324,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.821996847},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_metadata\\\",\\\"t\\\":0.82222177},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_body_snapshot\\\",\\\"t\\\":0.822379847},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":0.822384},{\\\"failure\\\":\\\"connection_already_closed\\\",\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.822734616},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":0.823049308},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":0.823069693},{\\\"address\\\":\\\"149.154.167.91:80\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.945862077},{\\\"failure\\\":null,\\\"num_bytes\\\":296,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.946665},{\\\"failure\\\":null,\\\"num_bytes\\\":337,\\\"operation\\\":\\\"read\\\",\\\"t\\\":1.041090308},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_metadata\\\",\\\"t\\\":1.041439462},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_body_snapshot\\\",\\\"t\\\":1.041814462},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":1.041818462},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":0.000911385},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":0.000932308},{\\\"address\\\":\\\"149.154.167.51:80\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.047612693},{\\\"failure\\\":null,\\\"num_bytes\\\":296,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.048088462},{\\\"failure\\\":null,\\\"num_bytes\\\":324,\\\"operation\\\":\\\"read\\\",\\\"t\\\":1.087609616},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_metadata\\\",\\\"t\\\":1.087785924},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_body_snapshot\\\",\\\"t\\\":1.087937154},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":1.087940462},{\\\"failure\\\":\\\"connection_already_closed\\\",\\\"operation\\\":\\\"read\\\",\\\"t\\\":1.088203616},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":1.088458539},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":1.088477462},{\\\"address\\\":\\\"95.161.76.100:80\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":1.135777},{\\\"failure\\\":null,\\\"num_bytes\\\":295,\\\"operation\\\":\\\"write\\\",\\\"t\\\":1.136291385},{\\\"failure\\\":null,\\\"num_bytes\\\":324,\\\"operation\\\":\\\"read\\\",\\\"t\\\":1.182831308},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_metadata\\\",\\\"t\\\":1.183105616},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_body_snapshot\\\",\\\"t\\\":1.183354},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":1.183357077},{\\\"failure\\\":\\\"connection_already_closed\\\",\\\"operation\\\":\\\"read\\\",\\\"t\\\":1.183962077},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":1.04210877},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":1.042130308},{\\\"address\\\":\\\"149.154.171.5:80\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":1.238460462},{\\\"failure\\\":null,\\\"num_bytes\\\":295,\\\"operation\\\":\\\"write\\\",\\\"t\\\":1.238926616},{\\\"failure\\\":null,\\\"num_bytes\\\":337,\\\"operation\\\":\\\"read\\\",\\\"t\\\":2.517693924},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_metadata\\\",\\\"t\\\":2.5178854619999997},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_body_snapshot\\\",\\\"t\\\":2.518381924},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":2.5183860769999997},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":2.5186989239999997},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":2.518719077},{\\\"address\\\":\\\"149.154.167.51:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":2.564454231},{\\\"failure\\\":null,\\\"num_bytes\\\":300,\\\"operation\\\":\\\"write\\\",\\\"t\\\":2.564881001},{\\\"failure\\\":null,\\\"num_bytes\\\":337,\\\"operation\\\":\\\"read\\\",\\\"t\\\":2.610723462},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_metadata\\\",\\\"t\\\":2.610946539},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_body_snapshot\\\",\\\"t\\\":2.611254077},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":2.611259308},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":1.185268308},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":1.185291847},{\\\"address\\\":\\\"149.154.175.50:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":1.539027462},{\\\"failure\\\":null,\\\"num_bytes\\\":300,\\\"operation\\\":\\\"write\\\",\\\"t\\\":1.539455077},{\\\"failure\\\":null,\\\"num_bytes\\\":324,\\\"operation\\\":\\\"read\\\",\\\"t\\\":2.688701385},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_metadata\\\",\\\"t\\\":2.688940616},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_body_snapshot\\\",\\\"t\\\":2.689245539},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":2.689250308},{\\\"failure\\\":\\\"connection_already_closed\\\",\\\"operation\\\":\\\"read\\\",\\\"t\\\":2.689639231},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":2.6116132309999998},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":2.6116354619999997},{\\\"address\\\":\\\"149.154.175.100:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":2.968243693},{\\\"failure\\\":null,\\\"num_bytes\\\":301,\\\"operation\\\":\\\"write\\\",\\\"t\\\":2.968659847},{\\\"failure\\\":null,\\\"num_bytes\\\":324,\\\"operation\\\":\\\"read\\\",\\\"t\\\":3.404122847},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_metadata\\\",\\\"t\\\":3.404323001},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_body_snapshot\\\",\\\"t\\\":3.404574231},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":3.4045783849999998},{\\\"failure\\\":\\\"connection_already_closed\\\",\\\"operation\\\":\\\"read\\\",\\\"t\\\":3.404925231},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":3.405296001},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":3.405327462},{\\\"address\\\":\\\"149.154.171.5:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":3.660879001},{\\\"failure\\\":null,\\\"num_bytes\\\":299,\\\"operation\\\":\\\"write\\\",\\\"t\\\":3.66135277},{\\\"failure\\\":null,\\\"num_bytes\\\":337,\\\"operation\\\":\\\"read\\\",\\\"t\\\":3.8688307699999998},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_metadata\\\",\\\"t\\\":3.869012693},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_body_snapshot\\\",\\\"t\\\":3.869313616},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":3.869329308},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":2.6899633080000003},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":2.689984924},{\\\"address\\\":\\\"149.154.167.91:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":2.733980539},{\\\"failure\\\":null,\\\"num_bytes\\\":300,\\\"operation\\\":\\\"write\\\",\\\"t\\\":2.734711077},{\\\"failure\\\":null,\\\"num_bytes\\\":337,\\\"operation\\\":\\\"read\\\",\\\"t\\\":4.018095308},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_metadata\\\",\\\"t\\\":4.018205001},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_body_snapshot\\\",\\\"t\\\":4.018332385},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":4.018336078},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":3.869592924},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":3.869611001},{\\\"address\\\":\\\"95.161.76.100:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":4.022193001},{\\\"failure\\\":null,\\\"num_bytes\\\":299,\\\"operation\\\":\\\"write\\\",\\\"t\\\":4.022533078},{\\\"failure\\\":null,\\\"num_bytes\\\":324,\\\"operation\\\":\\\"read\\\",\\\"t\\\":4.067716078},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_metadata\\\",\\\"t\\\":4.067830231},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_body_snapshot\\\",\\\"t\\\":4.067907154},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":4.067909924},{\\\"failure\\\":\\\"connection_already_closed\\\",\\\"operation\\\":\\\"read\\\",\\\"t\\\":4.068078693},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":4.068217924},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":4.068229308},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":4.068396308},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":4.086795539},{\\\"address\\\":\\\"149.154.167.99:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":4.131700924},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_start\\\",\\\"t\\\":4.131730693},{\\\"failure\\\":null,\\\"num_bytes\\\":286,\\\"operation\\\":\\\"write\\\",\\\"t\\\":4.133150847},{\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"t\\\":4.181163078},{\\\"failure\\\":null,\\\"num_bytes\\\":5179,\\\"operation\\\":\\\"read\\\",\\\"t\\\":4.188181462},{\\\"failure\\\":null,\\\"num_bytes\\\":80,\\\"operation\\\":\\\"write\\\",\\\"t\\\":4.193907616},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_done\\\",\\\"t\\\":4.19403077},{\\\"failure\\\":null,\\\"num_bytes\\\":86,\\\"operation\\\":\\\"write\\\",\\\"t\\\":4.194506693},{\\\"failure\\\":null,\\\"num_bytes\\\":202,\\\"operation\\\":\\\"write\\\",\\\"t\\\":4.195100385},{\\\"failure\\\":null,\\\"num_bytes\\\":831,\\\"operation\\\":\\\"read\\\",\\\"t\\\":4.326483847},{\\\"failure\\\":null,\\\"num_bytes\\\":31,\\\"operation\\\":\\\"write\\\",\\\"t\\\":4.326750693},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_metadata\\\",\\\"t\\\":4.326975462},{\\\"failure\\\":null,\\\"num_bytes\\\":1703,\\\"operation\\\":\\\"read\\\",\\\"t\\\":4.331191847},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_body_snapshot\\\",\\\"t\\\":4.331668231},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":4.331671308},{\\\"failure\\\":null,\\\"num_bytes\\\":24,\\\"operation\\\":\\\"write\\\",\\\"t\\\":4.332123693},{\\\"failure\\\":\\\"connection_already_closed\\\",\\\"operation\\\":\\\"read\\\",\\\"t\\\":4.332343462},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":0.001727539},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":0.001748539},{\\\"address\\\":\\\"149.154.175.100:80\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":1.352463462},{\\\"failure\\\":null,\\\"num_bytes\\\":297,\\\"operation\\\":\\\"write\\\",\\\"t\\\":1.353150539},{\\\"failure\\\":null,\\\"num_bytes\\\":324,\\\"operation\\\":\\\"read\\\",\\\"t\\\":4.378923539},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_metadata\\\",\\\"t\\\":4.37912877},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_body_snapshot\\\",\\\"t\\\":4.379252462},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":4.379255462},{\\\"failure\\\":\\\"connection_already_closed\\\",\\\"operation\\\":\\\"read\\\",\\\"t\\\":4.379485924},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":4.018608616},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":4.018625462},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":4.019431924},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":4.087201539},{\\\"address\\\":\\\"149.154.167.99:80\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":4.133493154},{\\\"failure\\\":null,\\\"num_bytes\\\":278,\\\"operation\\\":\\\"write\\\",\\\"t\\\":4.134087693},{\\\"failure\\\":null,\\\"num_bytes\\\":369,\\\"operation\\\":\\\"read\\\",\\\"t\\\":4.191607154},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_metadata\\\",\\\"t\\\":4.1917766929999996},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_body_snapshot\\\",\\\"t\\\":4.19198277},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":4.191993616},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":4.192085078},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":4.192101154},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":4.192328539},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":4.192368385},{\\\"address\\\":\\\"149.154.167.99:443\\\",\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":19.202312002},{\\\"address\\\":\\\"[2001:67c:4e8:f004::9]:443\\\",\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":34.211555618},{\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":34.211653926},{\\\"failure\\\":\\\"connection_already_closed\\\",\\\"operation\\\":\\\"read\\\",\\\"t\\\":34.216405079}],\\\"queries\\\":[{\\\"answers\\\":[{\\\"asn\\\":62041,\\\"as_org_name\\\":\\\"Telegram Messenger Inc\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"149.154.167.99\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"web.telegram.org\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":4.086795539},{\\\"answers\\\":[{\\\"asn\\\":62041,\\\"as_org_name\\\":\\\"Telegram Messenger Inc\\\",\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"2001:67c:4e8:f004::9\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"web.telegram.org\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":4.086795539},{\\\"answers\\\":[{\\\"asn\\\":62041,\\\"as_org_name\\\":\\\"Telegram Messenger Inc\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"149.154.167.99\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"web.telegram.org\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":4.087201539},{\\\"answers\\\":[{\\\"asn\\\":62041,\\\"as_org_name\\\":\\\"Telegram Messenger Inc\\\",\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"2001:67c:4e8:f004::9\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"web.telegram.org\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":4.087201539},{\\\"answers\\\":[{\\\"asn\\\":62041,\\\"as_org_name\\\":\\\"Telegram Messenger Inc\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"149.154.167.99\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"web.telegram.org\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":4.192368385},{\\\"answers\\\":[{\\\"asn\\\":62041,\\\"as_org_name\\\":\\\"Telegram Messenger Inc\\\",\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"2001:67c:4e8:f004::9\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"web.telegram.org\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":4.192368385}],\\\"requests\\\":[{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US,en;q=0.9\\\"],[\\\"Host\\\",\\\"149.154.175.50\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US,en;q=0.9\\\",\\\"Host\\\":\\\"149.154.175.50\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"POST\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"http:\\\\/\\\\/149.154.175.50\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"\\\\r\\\\n404 Not Found<\\\\/title><\\\\/head>\\\\r\\\\n<body bgcolor=\\\\\\\"white\\\\\\\">\\\\r\\\\n<center><h1>404 Not Found<\\\\/h1><\\\\/center>\\\\r\\\\n<hr><center>nginx\\\\/0.3.33<\\\\/center>\\\\r\\\\n<\\\\/body>\\\\r\\\\n<\\\\/html>\\\\r\\\\n\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":404,\\\"headers_list\\\":[[\\\"Connection\\\",\\\"keep-alive\\\"],[\\\"Content-Length\\\",\\\"169\\\"],[\\\"Content-Type\\\",\\\"text\\\\/html\\\"],[\\\"Date\\\",\\\"Wed, 09 Nov 2022 22:57:26 GMT\\\"],[\\\"Server\\\",\\\"nginx\\\\/0.3.33\\\"]],\\\"headers\\\":{\\\"Connection\\\":\\\"keep-alive\\\",\\\"Content-Length\\\":\\\"169\\\",\\\"Content-Type\\\":\\\"text\\\\/html\\\",\\\"Date\\\":\\\"Wed, 09 Nov 2022 22:57:26 GMT\\\",\\\"Server\\\":\\\"nginx\\\\/0.3.33\\\"}},\\\"t\\\":0.000434077},{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US,en;q=0.9\\\"],[\\\"Host\\\",\\\"149.154.167.91\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US,en;q=0.9\\\",\\\"Host\\\":\\\"149.154.167.91\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"POST\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"http:\\\\/\\\\/149.154.167.91\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"<html>\\\\r\\\\n<head><title>501 Not Implemented<\\\\/title><\\\\/head>\\\\r\\\\n<body bgcolor=\\\\\\\"white\\\\\\\">\\\\r\\\\n<center><h1>501 Not Implemented<\\\\/h1><\\\\/center>\\\\r\\\\n<hr><center>nginx\\\\/0.3.33<\\\\/center>\\\\r\\\\n<\\\\/body>\\\\r\\\\n<\\\\/html>\\\\r\\\\n\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":501,\\\"headers_list\\\":[[\\\"Content-Length\\\",\\\"181\\\"],[\\\"Content-Type\\\",\\\"text\\\\/html\\\"],[\\\"Date\\\",\\\"Wed, 09 Nov 2022 22:57:27 GMT\\\"],[\\\"Server\\\",\\\"nginx\\\\/0.3.33\\\"]],\\\"headers\\\":{\\\"Content-Length\\\":\\\"181\\\",\\\"Content-Type\\\":\\\"text\\\\/html\\\",\\\"Date\\\":\\\"Wed, 09 Nov 2022 22:57:27 GMT\\\",\\\"Server\\\":\\\"nginx\\\\/0.3.33\\\"}},\\\"t\\\":0.823049308},{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US,en;q=0.9\\\"],[\\\"Host\\\",\\\"149.154.167.51\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US,en;q=0.9\\\",\\\"Host\\\":\\\"149.154.167.51\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"POST\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"http:\\\\/\\\\/149.154.167.51\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"<html>\\\\r\\\\n<head><title>404 Not Found<\\\\/title><\\\\/head>\\\\r\\\\n<body bgcolor=\\\\\\\"white\\\\\\\">\\\\r\\\\n<center><h1>404 Not Found<\\\\/h1><\\\\/center>\\\\r\\\\n<hr><center>nginx\\\\/0.3.33<\\\\/center>\\\\r\\\\n<\\\\/body>\\\\r\\\\n<\\\\/html>\\\\r\\\\n\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":404,\\\"headers_list\\\":[[\\\"Connection\\\",\\\"keep-alive\\\"],[\\\"Content-Length\\\",\\\"169\\\"],[\\\"Content-Type\\\",\\\"text\\\\/html\\\"],[\\\"Date\\\",\\\"Wed, 09 Nov 2022 22:57:27 GMT\\\"],[\\\"Server\\\",\\\"nginx\\\\/0.3.33\\\"]],\\\"headers\\\":{\\\"Connection\\\":\\\"keep-alive\\\",\\\"Content-Length\\\":\\\"169\\\",\\\"Content-Type\\\":\\\"text\\\\/html\\\",\\\"Date\\\":\\\"Wed, 09 Nov 2022 22:57:27 GMT\\\",\\\"Server\\\":\\\"nginx\\\\/0.3.33\\\"}},\\\"t\\\":0.000911385},{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US,en;q=0.9\\\"],[\\\"Host\\\",\\\"95.161.76.100\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US,en;q=0.9\\\",\\\"Host\\\":\\\"95.161.76.100\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"POST\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"http:\\\\/\\\\/95.161.76.100\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"<html>\\\\r\\\\n<head><title>404 Not Found<\\\\/title><\\\\/head>\\\\r\\\\n<body bgcolor=\\\\\\\"white\\\\\\\">\\\\r\\\\n<center><h1>404 Not Found<\\\\/h1><\\\\/center>\\\\r\\\\n<hr><center>nginx\\\\/0.3.33<\\\\/center>\\\\r\\\\n<\\\\/body>\\\\r\\\\n<\\\\/html>\\\\r\\\\n\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":404,\\\"headers_list\\\":[[\\\"Connection\\\",\\\"keep-alive\\\"],[\\\"Content-Length\\\",\\\"169\\\"],[\\\"Content-Type\\\",\\\"text\\\\/html\\\"],[\\\"Date\\\",\\\"Wed, 09 Nov 2022 22:57:27 GMT\\\"],[\\\"Server\\\",\\\"nginx\\\\/0.3.33\\\"]],\\\"headers\\\":{\\\"Connection\\\":\\\"keep-alive\\\",\\\"Content-Length\\\":\\\"169\\\",\\\"Content-Type\\\":\\\"text\\\\/html\\\",\\\"Date\\\":\\\"Wed, 09 Nov 2022 22:57:27 GMT\\\",\\\"Server\\\":\\\"nginx\\\\/0.3.33\\\"}},\\\"t\\\":1.088458539},{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US,en;q=0.9\\\"],[\\\"Host\\\",\\\"149.154.171.5\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US,en;q=0.9\\\",\\\"Host\\\":\\\"149.154.171.5\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"POST\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"http:\\\\/\\\\/149.154.171.5\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"<html>\\\\r\\\\n<head><title>501 Not Implemented<\\\\/title><\\\\/head>\\\\r\\\\n<body bgcolor=\\\\\\\"white\\\\\\\">\\\\r\\\\n<center><h1>501 Not Implemented<\\\\/h1><\\\\/center>\\\\r\\\\n<hr><center>nginx\\\\/0.3.33<\\\\/center>\\\\r\\\\n<\\\\/body>\\\\r\\\\n<\\\\/html>\\\\r\\\\n\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":501,\\\"headers_list\\\":[[\\\"Content-Length\\\",\\\"181\\\"],[\\\"Content-Type\\\",\\\"text\\\\/html\\\"],[\\\"Date\\\",\\\"Wed, 09 Nov 2022 22:57:28 GMT\\\"],[\\\"Server\\\",\\\"nginx\\\\/0.3.33\\\"]],\\\"headers\\\":{\\\"Content-Length\\\":\\\"181\\\",\\\"Content-Type\\\":\\\"text\\\\/html\\\",\\\"Date\\\":\\\"Wed, 09 Nov 2022 22:57:28 GMT\\\",\\\"Server\\\":\\\"nginx\\\\/0.3.33\\\"}},\\\"t\\\":1.04210877},{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US,en;q=0.9\\\"],[\\\"Host\\\",\\\"149.154.167.51:443\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US,en;q=0.9\\\",\\\"Host\\\":\\\"149.154.167.51:443\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"POST\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"http:\\\\/\\\\/149.154.167.51:443\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"<html>\\\\r\\\\n<head><title>501 Not Implemented<\\\\/title><\\\\/head>\\\\r\\\\n<body bgcolor=\\\\\\\"white\\\\\\\">\\\\r\\\\n<center><h1>501 Not Implemented<\\\\/h1><\\\\/center>\\\\r\\\\n<hr><center>nginx\\\\/0.3.33<\\\\/center>\\\\r\\\\n<\\\\/body>\\\\r\\\\n<\\\\/html>\\\\r\\\\n\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":501,\\\"headers_list\\\":[[\\\"Content-Length\\\",\\\"181\\\"],[\\\"Content-Type\\\",\\\"text\\\\/html\\\"],[\\\"Date\\\",\\\"Wed, 09 Nov 2022 22:57:28 GMT\\\"],[\\\"Server\\\",\\\"nginx\\\\/0.3.33\\\"]],\\\"headers\\\":{\\\"Content-Length\\\":\\\"181\\\",\\\"Content-Type\\\":\\\"text\\\\/html\\\",\\\"Date\\\":\\\"Wed, 09 Nov 2022 22:57:28 GMT\\\",\\\"Server\\\":\\\"nginx\\\\/0.3.33\\\"}},\\\"t\\\":2.5186989239999997},{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US,en;q=0.9\\\"],[\\\"Host\\\",\\\"149.154.175.50:443\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US,en;q=0.9\\\",\\\"Host\\\":\\\"149.154.175.50:443\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"POST\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"http:\\\\/\\\\/149.154.175.50:443\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"<html>\\\\r\\\\n<head><title>404 Not Found<\\\\/title><\\\\/head>\\\\r\\\\n<body bgcolor=\\\\\\\"white\\\\\\\">\\\\r\\\\n<center><h1>404 Not Found<\\\\/h1><\\\\/center>\\\\r\\\\n<hr><center>nginx\\\\/0.3.33<\\\\/center>\\\\r\\\\n<\\\\/body>\\\\r\\\\n<\\\\/html>\\\\r\\\\n\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":404,\\\"headers_list\\\":[[\\\"Connection\\\",\\\"keep-alive\\\"],[\\\"Content-Length\\\",\\\"169\\\"],[\\\"Content-Type\\\",\\\"text\\\\/html\\\"],[\\\"Date\\\",\\\"Wed, 09 Nov 2022 22:57:28 GMT\\\"],[\\\"Server\\\",\\\"nginx\\\\/0.3.33\\\"]],\\\"headers\\\":{\\\"Connection\\\":\\\"keep-alive\\\",\\\"Content-Length\\\":\\\"169\\\",\\\"Content-Type\\\":\\\"text\\\\/html\\\",\\\"Date\\\":\\\"Wed, 09 Nov 2022 22:57:28 GMT\\\",\\\"Server\\\":\\\"nginx\\\\/0.3.33\\\"}},\\\"t\\\":1.185268308},{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US,en;q=0.9\\\"],[\\\"Host\\\",\\\"149.154.175.100:443\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US,en;q=0.9\\\",\\\"Host\\\":\\\"149.154.175.100:443\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"POST\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"http:\\\\/\\\\/149.154.175.100:443\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"<html>\\\\r\\\\n<head><title>404 Not Found<\\\\/title><\\\\/head>\\\\r\\\\n<body bgcolor=\\\\\\\"white\\\\\\\">\\\\r\\\\n<center><h1>404 Not Found<\\\\/h1><\\\\/center>\\\\r\\\\n<hr><center>nginx\\\\/0.3.33<\\\\/center>\\\\r\\\\n<\\\\/body>\\\\r\\\\n<\\\\/html>\\\\r\\\\n\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":404,\\\"headers_list\\\":[[\\\"Connection\\\",\\\"keep-alive\\\"],[\\\"Content-Length\\\",\\\"169\\\"],[\\\"Content-Type\\\",\\\"text\\\\/html\\\"],[\\\"Date\\\",\\\"Wed, 09 Nov 2022 22:57:29 GMT\\\"],[\\\"Server\\\",\\\"nginx\\\\/0.3.33\\\"]],\\\"headers\\\":{\\\"Connection\\\":\\\"keep-alive\\\",\\\"Content-Length\\\":\\\"169\\\",\\\"Content-Type\\\":\\\"text\\\\/html\\\",\\\"Date\\\":\\\"Wed, 09 Nov 2022 22:57:29 GMT\\\",\\\"Server\\\":\\\"nginx\\\\/0.3.33\\\"}},\\\"t\\\":2.6116132309999998},{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US,en;q=0.9\\\"],[\\\"Host\\\",\\\"149.154.171.5:443\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US,en;q=0.9\\\",\\\"Host\\\":\\\"149.154.171.5:443\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"POST\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"http:\\\\/\\\\/149.154.171.5:443\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"<html>\\\\r\\\\n<head><title>501 Not Implemented<\\\\/title><\\\\/head>\\\\r\\\\n<body bgcolor=\\\\\\\"white\\\\\\\">\\\\r\\\\n<center><h1>501 Not Implemented<\\\\/h1><\\\\/center>\\\\r\\\\n<hr><center>nginx\\\\/0.3.33<\\\\/center>\\\\r\\\\n<\\\\/body>\\\\r\\\\n<\\\\/html>\\\\r\\\\n\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":501,\\\"headers_list\\\":[[\\\"Content-Length\\\",\\\"181\\\"],[\\\"Content-Type\\\",\\\"text\\\\/html\\\"],[\\\"Date\\\",\\\"Wed, 09 Nov 2022 22:57:29 GMT\\\"],[\\\"Server\\\",\\\"nginx\\\\/0.3.33\\\"]],\\\"headers\\\":{\\\"Content-Length\\\":\\\"181\\\",\\\"Content-Type\\\":\\\"text\\\\/html\\\",\\\"Date\\\":\\\"Wed, 09 Nov 2022 22:57:29 GMT\\\",\\\"Server\\\":\\\"nginx\\\\/0.3.33\\\"}},\\\"t\\\":3.405296001},{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US,en;q=0.9\\\"],[\\\"Host\\\",\\\"149.154.167.91:443\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US,en;q=0.9\\\",\\\"Host\\\":\\\"149.154.167.91:443\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"POST\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"http:\\\\/\\\\/149.154.167.91:443\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"<html>\\\\r\\\\n<head><title>501 Not Implemented<\\\\/title><\\\\/head>\\\\r\\\\n<body bgcolor=\\\\\\\"white\\\\\\\">\\\\r\\\\n<center><h1>501 Not Implemented<\\\\/h1><\\\\/center>\\\\r\\\\n<hr><center>nginx\\\\/0.3.33<\\\\/center>\\\\r\\\\n<\\\\/body>\\\\r\\\\n<\\\\/html>\\\\r\\\\n\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":501,\\\"headers_list\\\":[[\\\"Content-Length\\\",\\\"181\\\"],[\\\"Content-Type\\\",\\\"text\\\\/html\\\"],[\\\"Date\\\",\\\"Wed, 09 Nov 2022 22:57:30 GMT\\\"],[\\\"Server\\\",\\\"nginx\\\\/0.3.33\\\"]],\\\"headers\\\":{\\\"Content-Length\\\":\\\"181\\\",\\\"Content-Type\\\":\\\"text\\\\/html\\\",\\\"Date\\\":\\\"Wed, 09 Nov 2022 22:57:30 GMT\\\",\\\"Server\\\":\\\"nginx\\\\/0.3.33\\\"}},\\\"t\\\":2.6899633080000003},{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US,en;q=0.9\\\"],[\\\"Host\\\",\\\"95.161.76.100:443\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US,en;q=0.9\\\",\\\"Host\\\":\\\"95.161.76.100:443\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"POST\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"http:\\\\/\\\\/95.161.76.100:443\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"<html>\\\\r\\\\n<head><title>404 Not Found<\\\\/title><\\\\/head>\\\\r\\\\n<body bgcolor=\\\\\\\"white\\\\\\\">\\\\r\\\\n<center><h1>404 Not Found<\\\\/h1><\\\\/center>\\\\r\\\\n<hr><center>nginx\\\\/0.3.33<\\\\/center>\\\\r\\\\n<\\\\/body>\\\\r\\\\n<\\\\/html>\\\\r\\\\n\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":404,\\\"headers_list\\\":[[\\\"Connection\\\",\\\"keep-alive\\\"],[\\\"Content-Length\\\",\\\"169\\\"],[\\\"Content-Type\\\",\\\"text\\\\/html\\\"],[\\\"Date\\\",\\\"Wed, 09 Nov 2022 22:57:30 GMT\\\"],[\\\"Server\\\",\\\"nginx\\\\/0.3.33\\\"]],\\\"headers\\\":{\\\"Connection\\\":\\\"keep-alive\\\",\\\"Content-Length\\\":\\\"169\\\",\\\"Content-Type\\\":\\\"text\\\\/html\\\",\\\"Date\\\":\\\"Wed, 09 Nov 2022 22:57:30 GMT\\\",\\\"Server\\\":\\\"nginx\\\\/0.3.33\\\"}},\\\"t\\\":3.869592924},{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US,en;q=0.9\\\"],[\\\"Host\\\",\\\"web.telegram.org\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US,en;q=0.9\\\",\\\"Host\\\":\\\"web.telegram.org\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"https:\\\\/\\\\/web.telegram.org\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"<!doctype html><html lang=en manifest=webogram.appcache ng-csp xmlns:ng=http:\\\\/\\\\/angularjs.org id=ng-app style=\\\\\\\"display: none;\\\\\\\"><head><meta charset=utf-8><meta name=viewport content=\\\\\\\"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no\\\\\\\"><title>Telegram Web<\\\\/title><link rel=stylesheet href=css\\\\/app.css><link rel=manifest href=manifest.webapp.json><link rel=icon href=favicon.ico type=image\\\\/x-icon><link rel=apple-touch-icon href=img\\\\/iphone_home120.png><link rel=apple-touch-icon sizes=120x120 href=img\\\\/iphone_home120.png><link rel=apple-touch-startup-image media=\\\\\\\"(device-width: 320px)\\\\\\\" href=img\\\\/iphone_startup.png><meta name=apple-mobile-web-app-title content=\\\\\\\"Telegram Web\\\\\\\"><meta name=mobile-web-app-capable content=yes><meta name=apple-mobile-web-app-capable content=yes><meta name=apple-mobile-web-app-status-bar-style content=black-translucent><meta name=theme-color content=#497495><meta name=google content=notranslate><meta property=og:title content=\\\\\\\"Telegram Web\\\\\\\"><meta property=og:url content=\\\\\\\"https:\\\\/\\\\/web.telegram.org\\\\/\\\\\\\"><meta property=og:image:width content=236><meta property=og:image:height content=236><meta property=og:image content=https:\\\\/\\\\/web.telegram.org\\\\/img\\\\/logo_share.png><meta property=og:site_name content=\\\\\\\"Telegram Web\\\\\\\"><meta property=description content=\\\\\\\"Welcome to the Web application of Telegram messenger. See https:\\\\/\\\\/github.com\\\\/zhukov\\\\/webogram for more info.\\\\\\\"><meta property=og:description content=\\\\\\\"Welcome to the Web application of Telegram messenger. See https:\\\\/\\\\/github.com\\\\/zhukov\\\\/webogram for more info.\\\\\\\"><\\\\/head><body><div class=page_wrap ng-view><\\\\/div><div id=notify_sound><\\\\/div><script src=js\\\\/app.js><\\\\/script><\\\\/body><\\\\/html>\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":200,\\\"headers_list\\\":[[\\\"Accept-Ranges\\\",\\\"bytes\\\"],[\\\"Cache-Control\\\",\\\"max-age=3600\\\"],[\\\"Content-Length\\\",\\\"1672\\\"],[\\\"Content-Type\\\",\\\"text\\\\/html\\\"],[\\\"Date\\\",\\\"Wed, 09 Nov 2022 22:57:30 GMT\\\"],[\\\"Etag\\\",\\\"\\\\\\\"5fdcb452-688\\\\\\\"\\\"],[\\\"Expires\\\",\\\"Wed, 09 Nov 2022 23:57:30 GMT\\\"],[\\\"Last-Modified\\\",\\\"Fri, 18 Dec 2020 13:53:22 GMT\\\"],[\\\"Server\\\",\\\"nginx\\\\/1.18.0\\\"],[\\\"X-Frame-Options\\\",\\\"deny\\\"]],\\\"headers\\\":{\\\"Accept-Ranges\\\":\\\"bytes\\\",\\\"Cache-Control\\\":\\\"max-age=3600\\\",\\\"Content-Length\\\":\\\"1672\\\",\\\"Content-Type\\\":\\\"text\\\\/html\\\",\\\"Date\\\":\\\"Wed, 09 Nov 2022 22:57:30 GMT\\\",\\\"Etag\\\":\\\"\\\\\\\"5fdcb452-688\\\\\\\"\\\",\\\"Expires\\\":\\\"Wed, 09 Nov 2022 23:57:30 GMT\\\",\\\"Last-Modified\\\":\\\"Fri, 18 Dec 2020 13:53:22 GMT\\\",\\\"Server\\\":\\\"nginx\\\\/1.18.0\\\",\\\"X-Frame-Options\\\":\\\"deny\\\"}},\\\"t\\\":4.068217924},{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US,en;q=0.9\\\"],[\\\"Host\\\",\\\"149.154.175.100\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US,en;q=0.9\\\",\\\"Host\\\":\\\"149.154.175.100\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"POST\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"http:\\\\/\\\\/149.154.175.100\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"<html>\\\\r\\\\n<head><title>404 Not Found<\\\\/title><\\\\/head>\\\\r\\\\n<body bgcolor=\\\\\\\"white\\\\\\\">\\\\r\\\\n<center><h1>404 Not Found<\\\\/h1><\\\\/center>\\\\r\\\\n<hr><center>nginx\\\\/0.3.33<\\\\/center>\\\\r\\\\n<\\\\/body>\\\\r\\\\n<\\\\/html>\\\\r\\\\n\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":404,\\\"headers_list\\\":[[\\\"Connection\\\",\\\"keep-alive\\\"],[\\\"Content-Length\\\",\\\"169\\\"],[\\\"Content-Type\\\",\\\"text\\\\/html\\\"],[\\\"Date\\\",\\\"Wed, 09 Nov 2022 22:57:30 GMT\\\"],[\\\"Server\\\",\\\"nginx\\\\/0.3.33\\\"]],\\\"headers\\\":{\\\"Connection\\\":\\\"keep-alive\\\",\\\"Content-Length\\\":\\\"169\\\",\\\"Content-Type\\\":\\\"text\\\\/html\\\",\\\"Date\\\":\\\"Wed, 09 Nov 2022 22:57:30 GMT\\\",\\\"Server\\\":\\\"nginx\\\\/0.3.33\\\"}},\\\"t\\\":0.001727539},{\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US,en;q=0.9\\\"],[\\\"Host\\\",\\\"web.telegram.org\\\"],[\\\"Referer\\\",\\\"http:\\\\/\\\\/web.telegram.org\\\\/\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US,en;q=0.9\\\",\\\"Host\\\":\\\"web.telegram.org\\\",\\\"Referer\\\":\\\"http:\\\\/\\\\/web.telegram.org\\\\/\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"https:\\\\/\\\\/web.telegram.org\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":0,\\\"headers_list\\\":null,\\\"headers\\\":null},\\\"t\\\":4.192085078},{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US,en;q=0.9\\\"],[\\\"Host\\\",\\\"web.telegram.org\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US,en;q=0.9\\\",\\\"Host\\\":\\\"web.telegram.org\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"http:\\\\/\\\\/web.telegram.org\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"<html>\\\\r\\\\n<head><title>301 Moved Permanently<\\\\/title><\\\\/head>\\\\r\\\\n<body>\\\\r\\\\n<center><h1>301 Moved Permanently<\\\\/h1><\\\\/center>\\\\r\\\\n<hr><center>nginx\\\\/1.18.0<\\\\/center>\\\\r\\\\n<\\\\/body>\\\\r\\\\n<\\\\/html>\\\\r\\\\n\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":301,\\\"headers_list\\\":[[\\\"Connection\\\",\\\"keep-alive\\\"],[\\\"Content-Length\\\",\\\"169\\\"],[\\\"Content-Type\\\",\\\"text\\\\/html\\\"],[\\\"Date\\\",\\\"Wed, 09 Nov 2022 22:57:30 GMT\\\"],[\\\"Location\\\",\\\"https:\\\\/\\\\/web.telegram.org\\\\/\\\"],[\\\"Server\\\",\\\"nginx\\\\/1.18.0\\\"]],\\\"headers\\\":{\\\"Connection\\\":\\\"keep-alive\\\",\\\"Content-Length\\\":\\\"169\\\",\\\"Content-Type\\\":\\\"text\\\\/html\\\",\\\"Date\\\":\\\"Wed, 09 Nov 2022 22:57:30 GMT\\\",\\\"Location\\\":\\\"https:\\\\/\\\\/web.telegram.org\\\\/\\\",\\\"Server\\\":\\\"nginx\\\\/1.18.0\\\"}},\\\"t\\\":4.018608616}],\\\"tcp_connect\\\":[{\\\"ip\\\":\\\"149.154.175.50\\\",\\\"port\\\":80,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.361726154},{\\\"ip\\\":\\\"149.154.167.91\\\",\\\"port\\\":80,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.945862077},{\\\"ip\\\":\\\"149.154.167.51\\\",\\\"port\\\":80,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.047612693},{\\\"ip\\\":\\\"95.161.76.100\\\",\\\"port\\\":80,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":1.135777},{\\\"ip\\\":\\\"149.154.171.5\\\",\\\"port\\\":80,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":1.238460462},{\\\"ip\\\":\\\"149.154.167.51\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":2.564454231},{\\\"ip\\\":\\\"149.154.175.50\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":1.539027462},{\\\"ip\\\":\\\"149.154.175.100\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":2.968243693},{\\\"ip\\\":\\\"149.154.171.5\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":3.660879001},{\\\"ip\\\":\\\"149.154.167.91\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":2.733980539},{\\\"ip\\\":\\\"95.161.76.100\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":4.022193001},{\\\"ip\\\":\\\"149.154.167.99\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":4.131700924},{\\\"ip\\\":\\\"149.154.175.100\\\",\\\"port\\\":80,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":1.352463462},{\\\"ip\\\":\\\"149.154.167.99\\\",\\\"port\\\":80,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":4.133493154},{\\\"ip\\\":\\\"149.154.167.99\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"success\\\":false},\\\"t\\\":19.202312002},{\\\"ip\\\":\\\"2001:67c:4e8:f004::9\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"success\\\":false},\\\"t\\\":34.211555618}],\\\"tls_handshakes\\\":[{\\\"address\\\":\\\"149.154.167.99:443\\\",\\\"cipher_suite\\\":\\\"TLS_AES_256_GCM_SHA384\\\",\\\"failure\\\":null,\\\"negotiated_protocol\\\":\\\"h2\\\",\\\"no_tls_verify\\\":false,\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIIGmzCCBYOgAwIBAgIJAKgeOknmnMZLMA0GCSqGSIb3DQEBCwUAMIG0MQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTEaMBgGA1UEChMRR29EYWRkeS5jb20sIEluYy4xLTArBgNVBAsTJGh0dHA6Ly9jZXJ0cy5nb2RhZGR5LmNvbS9yZXBvc2l0b3J5LzEzMDEGA1UEAxMqR28gRGFkZHkgU2VjdXJlIENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTIyMDgyOTAwMzkzNFoXDTIzMDkzMDAwMzkzNFowHTEbMBkGA1UEAwwSKi53ZWIudGVsZWdyYW0ub3JnMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1wRkux0GOYCXvEKeQDgPgdKgfXvXr8omUUj9uJh0+cOd8sfeVyBaxXfhZNAAWqJnOrkYPTxEvkHPQa7jS\\\\/aVd3MrUDMSRNGG6LuYWOGjGI700TBrPY5f64ApVwHMznP6r27z6wktyW5HzoEu\\\\/tU+XjeLneMvXT9kO3edX5v92dBLn7qRlkijHTol08prkr9hW1WO0atj5WmdyCuEaPbPmu08Gf29ygE1l1s3yJBjPdFccUB\\\\/qR67kWknTolnjU+QH8Hm4BRQsu1s7eRmDiuJNM2Aztp1\\\\/n5rOGHnspzMB9YAppb0aDiUljT+rH8IASQnRZKATiX66eEkY8b5+Od5KwIDAQABo4IDRDCCA0AwDAYDVR0TAQH\\\\/BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH\\\\/BAQDAgWgMDgGA1UdHwQxMC8wLaAroCmGJ2h0dHA6Ly9jcmwuZ29kYWRkeS5jb20vZ2RpZzJzMS00NDE4LmNybDBdBgNVHSAEVjBUMEgGC2CGSAGG\\\\/W0BBxcBMDkwNwYIKwYBBQUHAgEWK2h0dHA6Ly9jZXJ0aWZpY2F0ZXMuZ29kYWRkeS5jb20vcmVwb3NpdG9yeS8wCAYGZ4EMAQIBMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZ29kYWRkeS5jb20vMEAGCCsGAQUFBzAChjRodHRwOi8vY2VydGlmaWNhdGVzLmdvZGFkZHkuY29tL3JlcG9zaXRvcnkvZ2RpZzIuY3J0MB8GA1UdIwQYMBaAFEDCvSeOzDSDMKIz1\\\\/tss\\\\/C0LIDOMC8GA1UdEQQoMCaCEioud2ViLnRlbGVncmFtLm9yZ4IQd2ViLnRlbGVncmFtLm9yZzAdBgNVHQ4EFgQUR4ePZ7oUGAyMUSZM6BlIsW0jx5kwggF9BgorBgEEAdZ5AgQCBIIBbQSCAWkBZwB3AOg+0No+9QY1MudXKLyJa8kD08vREWvs62nhd31tBr1uAAABgucKGZUAAAQDAEgwRgIhAJ3lLLSdKsNtZAzzUpXh2u5dO4sz4Br19oeL6q6gaAkdAiEA0s0T0beLOBxwfBqIU1WQw+xAAX6YlLUX+iVgdNJHiHUAdQA1zxkbv7FsV78PrUxtQsu7ticgJlHqP+Eq76gDwzvWTAAAAYLnChrBAAAEAwBGMEQCIBsedQTSIPrKMe2GqDrSWNjb\\\\/ciKfqdAqLPzGEdKvf1OAiBnEJrMaeTLQqxHQfHmtl6o6P7G8E\\\\/GD+jwT7FuxNABgAB1AHoyjFTYty22IOo44FIe6YQWcDIThU070ivBOlejUutSAAABgucKG4MAAAQDAEYwRAIgfFvJYommOgz4mOLVCQrQwFqAYEIjrQmMkRwAJbbPHLUCIDHtqNXAmmNJlQL4Bc5pFOMH2HeQtjWOT\\\\/c1zIlgtY0NMA0GCSqGSIb3DQEBCwUAA4IBAQA2eUth3t2YKQwDp1M0pdqIiR7hWu3H+4Yv5hsvOnrGBoz8VNqt1AIUBd7GdOLPKPiMsTSTZL7fQU+YxMvIg+GD15sbHQ+KuaqQP2wBua+zfZ8EthuZ32Dwaq\\\\/m0fLAp+WVScDYG\\\\/x8QVC2DClD2UwKV7L6J7ReyR72IsXI6fEMFYnlMQTHK9DOA77f7+Q652Scd9yERTtY2SgTnTuBc1AthRQnmGv316WvI7Rv\\\\/MTxX3fNtwkfdGXOpPKP25cZ9nmlz4REOCZMoEoXYl6i9yzRyfRWR\\\\/hPMb1DDoT+QZz98GeIiUqdgsXEXFeMHnakFfnKuT34U2kxl7ZJdfA2Ryi6\\\",\\\"format\\\":\\\"base64\\\"},{\\\"data\\\":\\\"MIIE0DCCA7igAwIBAgIBBzANBgkqhkiG9w0BAQsFADCBgzELMAkGA1UEBhMCVVMxEDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxGjAYBgNVBAoTEUdvRGFkZHkuY29tLCBJbmMuMTEwLwYDVQQDEyhHbyBEYWRkeSBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTExMDUwMzA3MDAwMFoXDTMxMDUwMzA3MDAwMFowgbQxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMRowGAYDVQQKExFHb0RhZGR5LmNvbSwgSW5jLjEtMCsGA1UECxMkaHR0cDovL2NlcnRzLmdvZGFkZHkuY29tL3JlcG9zaXRvcnkvMTMwMQYDVQQDEypHbyBEYWRkeSBTZWN1cmUgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC54MsQ1K92vdSTYuswZLiBCGzDBNliF44v\\\\/z5lz4\\\\/OYuY8UhzaFkVLVat4a2ODYpDOD2lsmcgaFItMzEUz6ojcnqOvK\\\\/6AYZ15V8TPLvQ\\\\/MDxdR\\\\/yaFrzDN5ZBUY4RS1T4KL7QjL7wMDge87Am+GZHY23ecSZHjzhHU9FGHbTj3ADqRay9vHHZqm8A29vNMDp5T19MR\\\\/gd71vCxJ1gO7GyQ5HYpDNO6rPWJ0+tJYqlxvTV0KaudAVkV4i1RFXULSo6Pvi4vekyCgKUZMQWOlDxSq7neTOvDCAHf+jfBDnCaQJsY1L6d8EbyHSHyLmTGFBUNUtpTrw700kuH9zB0lL7AgMBAAGjggEaMIIBFjAPBgNVHRMBAf8EBTADAQH\\\\/MA4GA1UdDwEB\\\\/wQEAwIBBjAdBgNVHQ4EFgQUQMK9J47MNIMwojPX+2yz8LQsgM4wHwYDVR0jBBgwFoAUOpqFBxBnKLbv9r0FQW4gwZTaD94wNAYIKwYBBQUHAQEEKDAmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5nb2RhZGR5LmNvbS8wNQYDVR0fBC4wLDAqoCigJoYkaHR0cDovL2NybC5nb2RhZGR5LmNvbS9nZHJvb3QtZzIuY3JsMEYGA1UdIAQ\\\\/MD0wOwYEVR0gADAzMDEGCCsGAQUFBwIBFiVodHRwczovL2NlcnRzLmdvZGFkZHkuY29tL3JlcG9zaXRvcnkvMA0GCSqGSIb3DQEBCwUAA4IBAQAIfmyTEMg4uJapkEv\\\\/oV9PBO9sPpyIBslQj6Zz91cxG7685C\\\\/b+LrTW+C05+Z5Yg4MotdqY3MxtfWoSKQ7CC2iXZDXtHwlTxFWMMS2RJ17LJ3lXubvDGGqv+QqG+6EnriDfcFDzkSnE3ANkR\\\\/0yBOtg2DZ2HKocyQetawiDsoXiWJYRBuriSUBAA\\\\/NxBti21G00w9RKpv0vHP8ds42pM3Z2Czqrpv1KrKQ0U11GIo\\\\/ikGQI31bS\\\\/6kA1ibRrLDYGCD+H1QQc7CoZDDu+8CL9IVVO5EFdkKrqeKM+2xLXY2JtwE65\\\\/3YR8V3Idv7kaWKK2hJn0KCacuBKONvPi8BDAB\\\",\\\"format\\\":\\\"base64\\\"},{\\\"data\\\":\\\"MIIEfTCCA2WgAwIBAgIDG+cVMA0GCSqGSIb3DQEBCwUAMGMxCzAJBgNVBAYTAlVTMSEwHwYDVQQKExhUaGUgR28gRGFkZHkgR3JvdXAsIEluYy4xMTAvBgNVBAsTKEdvIERhZGR5IENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTQwMTAxMDcwMDAwWhcNMzEwNTMwMDcwMDAwWjCBgzELMAkGA1UEBhMCVVMxEDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxGjAYBgNVBAoTEUdvRGFkZHkuY29tLCBJbmMuMTEwLwYDVQQDEyhHbyBEYWRkeSBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAv3FiCPH6WTT3G8kYo\\\\/eASVjpIoMTpsUgQwE7hPHmhUmfJ+r2hBtOoLTbcJjHMgGxBT4HTu70+k8vWTAi56sZVmvigAf88xZ1gDlRe+X5NbZ0TqmNghPktj+pA4P6or6KFWp\\\\/3gvDthkUBcrqw6gElDtGfDIN8wBmIsiNaW02jBEYt9OyHGC0OPoCjM7T3UYH3go+6118yHz7sCtTpJJiaVElBWEaRIGMLKlDliPfrDqBmg4pxRyp6V0etp6eMAo5zvGIgPtLXcwy7IViQyU0AlYnAZG0O3AqP26x6JyIAX2f1PnbU21gnb8s51iruF9G\\\\/M7EGwM8CetJMVxpRrPgRwIDAQABo4IBFzCCARMwDwYDVR0TAQH\\\\/BAUwAwEB\\\\/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFDqahQcQZyi27\\\\/a9BUFuIMGU2g\\\\/eMB8GA1UdIwQYMBaAFNLEsNKR1EwRcbNhyz2h\\\\/t2oatTjMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZ29kYWRkeS5jb20vMDIGA1UdHwQrMCkwJ6AloCOGIWh0dHA6Ly9jcmwuZ29kYWRkeS5jb20vZ2Ryb290LmNybDBGBgNVHSAEPzA9MDsGBFUdIAAwMzAxBggrBgEFBQcCARYlaHR0cHM6Ly9jZXJ0cy5nb2RhZGR5LmNvbS9yZXBvc2l0b3J5LzANBgkqhkiG9w0BAQsFAAOCAQEAWQtTvZKGEacke+1bMc8dH2xwxbhuvk679r6XUOEwf7ooXGKUwuN+M\\\\/f7QnaF25UcjCJYdQkMiGVnOQoWCcWgOJekxSOTP7QYpgEGRJHjp2kntFolfzq3Ms3dhP8qOCkzpN1nsoX+oYggHFCJyNwq9kIDN0zmiN\\\\/VryTyscPfzLXs4Jlet0lUIDyUGAzHHFIYSaRt4bNYC8nY7NmuHDKOKHAN4v6mF56ED71XcLNa6R+ghlO773z\\\\/aQvgSMO3kwvIClTErF0UZzdsyqUvMQg3qm5vjLyb4lddJIGvl5echK1srDdMZvNhkREg5L4wn3qkKQmw4TRfZHcYQFHfjDCmrw==\\\",\\\"format\\\":\\\"base64\\\"},{\\\"data\\\":\\\"MIIEADCCAuigAwIBAgIBADANBgkqhkiG9w0BAQUFADBjMQswCQYDVQQGEwJVUzEhMB8GA1UEChMYVGhlIEdvIERhZGR5IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBEYWRkeSBDbGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA0MDYyOTE3MDYyMFoXDTM0MDYyOTE3MDYyMFowYzELMAkGA1UEBhMCVVMxITAfBgNVBAoTGFRoZSBHbyBEYWRkeSBHcm91cCwgSW5jLjExMC8GA1UECxMoR28gRGFkZHkgQ2xhc3MgMiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASAwDQYJKoZIhvcNAQEBBQADggENADCCAQgCggEBAN6d1+pXGEmhW+vXX0iG6r7d\\\\/+TvZxz0ZWizV3GgXne77ZtJ6XCAPVYYYwhv2vLM0D9\\\\/AlQiVBDYsoHUwHU9S3\\\\/Hd8M+eKsaA7Ugay9qK7HFiH7Eux6wwdhFJ2+qN1j3hybX2C32qRe3H3I2TqYXP2WYktsqbl2i\\\\/ojgC95\\\\/5Y0V4evLOtXiEqITLdiOr18SPaAIBQi2XKVlOARFmR6jYGB0xUGlcmIbYsUfb18aQr4CUWWoriMYavx4A6lNf4DD+qta\\\\/KFApMoZFv6yyO9ecw3ud72a9nmYvLEHZ6IVDd2gWMZEewo+YihfukEHU1jPEX44dMX4\\\\/7VpkI+EdOqXG68CAQOjgcAwgb0wHQYDVR0OBBYEFNLEsNKR1EwRcbNhyz2h\\\\/t2oatTjMIGNBgNVHSMEgYUwgYKAFNLEsNKR1EwRcbNhyz2h\\\\/t2oatTjoWekZTBjMQswCQYDVQQGEwJVUzEhMB8GA1UEChMYVGhlIEdvIERhZGR5IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBEYWRkeSBDbGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBADJL87LKPpH8EsahB4yOd6AzBhRckB4Y9wimPQoZ+YeAEW5p5JYXMP80kWNyOO7MHAGjHZQopDH2esRU1\\\\/blMVgDoszOYtuURXO1v0XJJLXVggKtI3lpjbi2Tc7PTMozI+gciKqdi0FuFskg5YmezTvacPd+mSYgFFQlq25zheabIZ0KbIIOqPjCDPoQHmyW74cNxA9hi63ugyuV+I6ShHI56yDqg+2DzZduCLzrTia2cyvk0\\\\/ZM\\\\/iZx4mERdEr\\\\/VxqHD3VILs9RaRegAhJhldXRQLIQTO7ErBBDpqWeCtWVYpoNz4iCxTIM5CufReYNnyicsbkqWletNw+vHX\\\\/bvZ8=\\\",\\\"format\\\":\\\"base64\\\"}],\\\"server_name\\\":\\\"web.telegram.org\\\",\\\"t\\\":4.19403077,\\\"tags\\\":null,\\\"tls_version\\\":\\\"TLSv1.3\\\"}],\\\"telegram_http_blocking\\\":false,\\\"telegram_tcp_blocking\\\":false,\\\"telegram_web_failure\\\":\\\"generic_timeout_error\\\",\\\"telegram_web_status\\\":\\\"blocked\\\"},\\\"test_name\\\":\\\"telegram\\\",\\\"test_runtime\\\":34.224868694,\\\"test_start_time\\\":\\\"2022-11-09 22:57:24\\\",\\\"test_version\\\":\\\"0.2.0\\\"}\\n\",\"category_code\":\"\",\"verification_status\":\"unverified\"}" +} \ No newline at end of file diff --git a/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20221110100919.165568_US_webconnectivity_782abf479bf32868_full-true.json b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20221110100919.165568_US_webconnectivity_782abf479bf32868_full-true.json new file mode 100644 index 000000000..f01a3667e --- /dev/null +++ b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20221110100919.165568_US_webconnectivity_782abf479bf32868_full-true.json @@ -0,0 +1,5 @@ +{ + "status": 200, + "contentType": "application/json", + "body": "{\"input\":\"https://www.theguardian.com/\",\"measurement_start_time\":\"2022-11-10T10:09:16Z\",\"measurement_uid\":\"20221110100919.165568_US_webconnectivity_782abf479bf32868\",\"report_id\":\"20221110T100756Z_webconnectivity_US_13335_n1_KWJqHUAPqMdtf2Up\",\"test_name\":\"web_connectivity\",\"test_start_time\":\"2022-11-10T10:07:53Z\",\"probe_asn\":13335,\"probe_cc\":\"US\",\"scores\":\"{\\\"blocking_general\\\":0.0,\\\"blocking_global\\\":0.0,\\\"blocking_country\\\":0.0,\\\"blocking_isp\\\":0.0,\\\"blocking_local\\\":0.0}\",\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"raw_measurement\":\"{\\\"annotations\\\":{\\\"architecture\\\":\\\"amd64\\\",\\\"engine_name\\\":\\\"ooniprobe-engine\\\",\\\"engine_version\\\":\\\"3.14.1\\\",\\\"platform\\\":\\\"windows\\\"},\\\"data_format_version\\\":\\\"0.2.0\\\",\\\"input\\\":\\\"https:\\\\/\\\\/www.theguardian.com\\\\/\\\",\\\"measurement_start_time\\\":\\\"2022-11-10 10:09:16\\\",\\\"probe_asn\\\":\\\"AS13335\\\",\\\"probe_cc\\\":\\\"US\\\",\\\"probe_ip\\\":\\\"127.0.0.1\\\",\\\"probe_network_name\\\":\\\"Cloudflare, Inc.\\\",\\\"report_id\\\":\\\"20221110T100756Z_webconnectivity_US_13335_n1_KWJqHUAPqMdtf2Up\\\",\\\"resolver_asn\\\":\\\"AS13335\\\",\\\"resolver_ip\\\":\\\"172.70.145.59\\\",\\\"resolver_network_name\\\":\\\"Cloudflare, Inc.\\\",\\\"software_name\\\":\\\"ooniprobe-desktop-unattended\\\",\\\"software_version\\\":\\\"3.14.1\\\",\\\"test_keys\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"client_resolver\\\":\\\"172.70.145.59\\\",\\\"retries\\\":null,\\\"socksproxy\\\":null,\\\"network_events\\\":[{\\\"address\\\":\\\"151.101.129.111:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.5419419,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_start\\\",\\\"t\\\":0.5419419,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":289,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.5424487,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.5938691,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":5063,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.5948553,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":64,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.595523,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_done\\\",\\\"t\\\":0.595523,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":24,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.595523,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"address\\\":\\\"151.101.1.111:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.5419419,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_start\\\",\\\"t\\\":0.5419419,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":289,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.5424487,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.6088643,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":5063,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.6088643,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":64,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.6098169,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_done\\\",\\\"t\\\":0.6098169,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":24,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.6098169,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"address\\\":\\\"[2a04:4e42:200::367]:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.6137457,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_start\\\",\\\"t\\\":0.6137457,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":289,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.6137457,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.6219828,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":703,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.6219828,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":2440,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.6222983,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":1220,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.6222983,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":700,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.6222983,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":64,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.6228068,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_done\\\",\\\"t\\\":0.6228068,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":24,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.6228068,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"address\\\":\\\"151.101.193.111:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.5426784,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_start\\\",\\\"t\\\":0.5426784,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":289,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.5426784,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.5961212,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":5035,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.596763,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":28,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.6473081,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":64,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.647913,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_done\\\",\\\"t\\\":0.647913,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":24,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.647913,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"address\\\":\\\"[2a04:4e42:600::367]:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.6514069,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_start\\\",\\\"t\\\":0.6514069,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":289,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.6514069,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.6741096,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":5063,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.6741096,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":64,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.675123,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_done\\\",\\\"t\\\":0.675123,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":24,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.675123,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"address\\\":\\\"[2a04:4e42:400::367]:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.6258805,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_start\\\",\\\"t\\\":0.6258805,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":289,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.6258805,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.6343992,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":4923,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.6353994,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":140,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.6784406,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":64,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.6793284,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_done\\\",\\\"t\\\":0.6793284,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":24,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.6793284,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"address\\\":\\\"[2a04:4e42::367]:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.6808277,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_start\\\",\\\"t\\\":0.6808277,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":289,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.6808277,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.6953464,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":5063,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.6953464,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":64,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.6961875,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_done\\\",\\\"t\\\":0.6961875,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":24,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.6961875,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"address\\\":\\\"151.101.65.111:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.6003443,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_start\\\",\\\"t\\\":0.6003443,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":289,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.6003443,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.6539211,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":4799,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.6549214,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":236,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.6568867,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":28,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.7172733,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":64,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.7183875,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_done\\\",\\\"t\\\":0.7183875,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":24,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.7183875,\\\"tags\\\":[\\\"tcptls_experiment\\\"]}],\\\"tls_handshakes\\\":[{\\\"cipher_suite\\\":\\\"TLS_AES_128_GCM_SHA256\\\",\\\"failure\\\":null,\\\"negotiated_protocol\\\":\\\"h2\\\",\\\"no_tls_verify\\\":false,\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIIJEzCCB\\\\/ugAwIBAgIQAfXyOtRaOWcTRyQVQR9d9jANBgkqhkiG9w0BAQsFADBYMQswCQYDVQQGEwJCRTEZMBcGA1UEChMQR2xvYmFsU2lnbiBudi1zYTEuMCwGA1UEAxMlR2xvYmFsU2lnbiBBdGxhcyBSMyBEViBUTFMgQ0EgMjAyMiBRMTAeFw0yMjAyMTcxODE4MThaFw0yMzAzMjExODE4MTdaMBoxGDAWBgNVBAMMD3RoZWd1YXJkaWFuLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALv6sCNb61ATYO32D3pJvRnYahjDzYbK2TqgJMBYcW1siIUniTA6YRDLd1lU5JWwdHZyN0bfn+avtnvJH29fpRTM3jAep+vw1RSgDqO2lPK2TmM81MjXhtFm5ljEtkEcOxO5EEb3mCdnwQqusI7T07TngsCu6DtmSfdfSjPGAtr9eqJhwFxY\\\\/Es0w2HpskF9wrSU9HskMtUlVNREbdIsDqflFoWrIopxjbxr12ylw6CThPluSbxZxEGedHd\\\\/+JJZM0iLJY+bbBMJo3GdMRMvSMxSK5G2biysNxLU\\\\/xApfPf+\\\\/K4\\\\/QKZ4KKMaEIOmrn1rPnSHgPaGT9x\\\\/SvGz3K8XV5MCAwEAAaOCBhUwggYRMIICygYDVR0RBIICwTCCAr2CD3RoZWd1YXJkaWFuLmNvbYIdKi5hZHZlcnRpc2luZy50aGVndWFyZGlhbi5jb22CGyouY29kZS5kZXYtZ3VhcmRpYW5hcGlzLmNvbYIaKi5jb2RlLmRldi10aGVndWFyZGlhbi5jb22CFSouZGV2LXRoZWd1YXJkaWFuLmNvbYIbKi5lZGl0b3JpYWwudGhlZ3VhcmRpYW4uY29tghcqLmVtYWlsLnRoZWd1YXJkaWFuLmNvbYIQKi5ndWFyZGlhbi5jby51a4ISKi5ndWFyZGlhbmFwaXMuY29tggwqLmd1aW0uY28udWuCECouZ3VpbWNvZGUuY28udWuCDSoub3BoYW4uY28udWuCGSoucWEuZGV2LWd1YXJkaWFuYXBpcy5jb22CGSouc2VydmljZS50aGVndWFyZGlhbi5jb22CEyoudGhlZ3VhcmRpYW4uY28udWuCESoudGhlZ3VhcmRpYW4uY29tghQqLnRoZWd1YXJkaWFuLmRlc2lnboIeYXBpLm5leHRnZW4uZ3VhcmRpYW5hcHBzLmNvLnVrgiNjb2RlLmFwaS5uZXh0Z2VuLmd1YXJkaWFuYXBwcy5jby51a4IRZGV2LWd1dG9vbHMuY28udWuCE2Rldi10aGVndWFyZGlhbi5jb22CBmd1LmNvbYIOZ3VhcmRpYW4uY28udWuCCmd1aW0uY28udWuCDWd1dG9vbHMuY28udWuCEGkuZ3VpbWNvZGUuY28udWuCEG1lZGlhLmd1aW0uY28udWuCEnBhc3RldXAuZ3VpbS5jby51a4IZc3Vic2NyaWJlLnRoZWd1YXJkaWFuLmNvbYIRdGhlZ3VhcmRpYW4uY28udWuCEnRoZWd1YXJkaWFuLmRlc2lnboIKd3d3Lmd1LmNvbYIWbXRhLXN0cy5vYnNlcnZlci5jby51azAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB0GA1UdDgQWBBQQr4yycxJVxCvCpSWUVaMkbo6kYzBXBgNVHSAEUDBOMAgGBmeBDAECATBCBgorBgEEAaAyCgEDMDQwMgYIKwYBBQUHAgEWJmh0dHBzOi8vd3d3Lmdsb2JhbHNpZ24uY29tL3JlcG9zaXRvcnkvMAwGA1UdEwEB\\\\/wQCMAAwgZ4GCCsGAQUFBwEBBIGRMIGOMEAGCCsGAQUFBzABhjRodHRwOi8vb2NzcC5nbG9iYWxzaWduLmNvbS9jYS9nc2F0bGFzcjNkdnRsc2NhMjAyMnExMEoGCCsGAQUFBzAChj5odHRwOi8vc2VjdXJlLmdsb2JhbHNpZ24uY29tL2NhY2VydC9nc2F0bGFzcjNkdnRsc2NhMjAyMnExLmNydDAfBgNVHSMEGDAWgBScKmfQtIMxW4DLKZZVdQk3OLg8pTBIBgNVHR8EQTA\\\\/MD2gO6A5hjdodHRwOi8vY3JsLmdsb2JhbHNpZ24uY29tL2NhL2dzYXRsYXNyM2R2dGxzY2EyMDIycTEuY3JsMIIBfgYKKwYBBAHWeQIEAgSCAW4EggFqAWgAdQCt9776fP8QyIudPZwePhhqtGcpXc+xDCTKhYY069yCigAAAX8I6A4rAAAEAwBGMEQCIDOXxg5DQNhcf0iUNDC6eXFs3icbBtLMGFgNk\\\\/49eA71AiBRYPwTJgSgcZpdR2N4phoebPc2PhZrzP\\\\/jliaGChRttgB2AG9Tdqwx8DEZ2JkApFEV\\\\/3cVHBHZAsEAKQaNsgiaN9kTAAABfwjoDpkAAAQDAEcwRQIgK01WpXqJFHs02r+E9aFkJPJoW5lM71KzpdtQJuwqocACIQDXApTS31APw4dN9tMro3zacRO3Oos8vhtfzS4KN\\\\/lD7gB3AFWB1MIWkDYBSuoLm1c8U\\\\/DA5Dh4cCUIFy+jqh0HE9MMAAABfwjoDpwAAAQDAEgwRgIhAKLOMKN4hDsnNjm3qKjVWEOPbvjoD00LfaYsN0Wd9fRtAiEA0QiKYu72xwGNqh6i6v18sM6KiYnq2fpcHOJ5SeHQUVwwDQYJKoZIhvcNAQELBQADggEBAMRjjx\\\\/LFs3rJOfngJ4qXKyTPZPwNYAoXAVTEzWDbGBv8IhSwcMifijdyLfxNFja5DPefyN9\\\\/pQgWDpO0RHUmEi8hs6HnTXi09iqImNPc+\\\\/FldrgeNP4rnVdpd0ndoFeykM1nM0lQK925jnsjFdYAtL4Q\\\\/1TG98Gc7eafrVf\\\\/1Tge86rzaMpW4\\\\/Sk1xKf1Nv8TWTFNsSnoqnht0Fr7aLFwZpoP+0FdwZTFevAZls4cPia69GnaUy7AXKmyH\\\\/10h1uJ+YkwOM+kRUpDQ7SDIFA5qyzBGghs8MhSdJUeGkMUzIzZ94fJOUZFl5PQpxexTOiMj5CvbtVVRK4zlzAg21IZ0=\\\",\\\"format\\\":\\\"base64\\\"},{\\\"data\\\":\\\"MIIExTCCA62gAwIBAgIQevszfllNI8dv23xMYpva1jANBgkqhkiG9w0BAQsFADBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSMzETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjAeFw0yMTEwMjAxMjAwMDBaFw0yNDEwMjAwMDAwMDBaMFgxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS4wLAYDVQQDEyVHbG9iYWxTaWduIEF0bGFzIFIzIERWIFRMUyBDQSAyMDIyIFExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA9hHdUSQoK3TlnrSsZ2GBd4heCa6uIXBWXA1Hiyt83JH\\\\/chvz82HqdKwEOPMAp0B6JRDsF9C1MwIDql74PhMTvLQ8bPj\\\\/bBA\\\\/4lx1YBd7H+E7DLGnCZxMIcw+uCbyKqtGW4q9KN\\\\/Gb9CA+AOFDfkvESP0h4N7AqiMi3KaZEgi3FTH6FHMow65qpMh2bghBEi4c\\\\/gdVZ4LVPqxXkXiX5GB+y6QlQ492fHFXY\\\\/nxhxT1zf1oCD3HSuFUm4WtwhAG5WJSfwPUoV65fxk+SPG9SanXv6TUcqXdhwWI7sQDzgPjIcYwhDU2OWjrm1d8KHvCas9xBPc+gKPUFg5FZCdEqRZIQIDAQABo4IBlTCCAZEwDgYDVR0PAQH\\\\/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH\\\\/AgEAMB0GA1UdDgQWBBScKmfQtIMxW4DLKZZVdQk3OLg8pTAfBgNVHSMEGDAWgBSP8Et\\\\/qC5FJK5NUPpjmove4t0bvDB7BggrBgEFBQcBAQRvMG0wLgYIKwYBBQUHMAGGImh0dHA6Ly9vY3NwMi5nbG9iYWxzaWduLmNvbS9yb290cjMwOwYIKwYBBQUHMAKGL2h0dHA6Ly9zZWN1cmUuZ2xvYmFsc2lnbi5jb20vY2FjZXJ0L3Jvb3QtcjMuY3J0MDYGA1UdHwQvMC0wK6ApoCeGJWh0dHA6Ly9jcmwuZ2xvYmFsc2lnbi5jb20vcm9vdC1yMy5jcmwwVwYDVR0gBFAwTjAIBgZngQwBAgEwQgYKKwYBBAGgMgoBAzA0MDIGCCsGAQUFBwIBFiZodHRwczovL3d3dy5nbG9iYWxzaWduLmNvbS9yZXBvc2l0b3J5LzANBgkqhkiG9w0BAQsFAAOCAQEASN2DQ+QHnjDag8lm+Ct9qtYVHqAC2lmi4KqWWF\\\\/eAIWV2F0nH56cC3KtFIW6V1ffHIuTcrJJ9UYUa8ptQz6zUJLxyRzHN1ieIM\\\\/wleI28555tPO40l0Lp2amiCxBwMMWZWDgki\\\\/LfONS9mg1SyqWd13FMU5NbP8OXPfRyUyUWBdii8BUvvYOoq8pY8VnYTrlTt9d9QPjEsF1ISiXe66\\\\/mEM0gfgn2+GiHQ9BKKLPxtfYo8RdMJ3B94jP7ZzZg0jOZMYsADZM\\\\/ctTSwhMYz40ZtmvqWa1zcvsx5FcevtWn32SONKK7lHZ1K9jiYbrV15POjl3blum4dQgjhMbYasq\\\\/w==\\\",\\\"format\\\":\\\"base64\\\"}],\\\"server_name\\\":\\\"www.theguardian.com\\\",\\\"t\\\":0.595523,\\\"tags\\\":[\\\"tcptls_experiment\\\"],\\\"tls_version\\\":\\\"TLSv1.3\\\"},{\\\"cipher_suite\\\":\\\"TLS_AES_128_GCM_SHA256\\\",\\\"failure\\\":null,\\\"negotiated_protocol\\\":\\\"h2\\\",\\\"no_tls_verify\\\":false,\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIIJEzCCB\\\\/ugAwIBAgIQAfXyOtRaOWcTRyQVQR9d9jANBgkqhkiG9w0BAQsFADBYMQswCQYDVQQGEwJCRTEZMBcGA1UEChMQR2xvYmFsU2lnbiBudi1zYTEuMCwGA1UEAxMlR2xvYmFsU2lnbiBBdGxhcyBSMyBEViBUTFMgQ0EgMjAyMiBRMTAeFw0yMjAyMTcxODE4MThaFw0yMzAzMjExODE4MTdaMBoxGDAWBgNVBAMMD3RoZWd1YXJkaWFuLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALv6sCNb61ATYO32D3pJvRnYahjDzYbK2TqgJMBYcW1siIUniTA6YRDLd1lU5JWwdHZyN0bfn+avtnvJH29fpRTM3jAep+vw1RSgDqO2lPK2TmM81MjXhtFm5ljEtkEcOxO5EEb3mCdnwQqusI7T07TngsCu6DtmSfdfSjPGAtr9eqJhwFxY\\\\/Es0w2HpskF9wrSU9HskMtUlVNREbdIsDqflFoWrIopxjbxr12ylw6CThPluSbxZxEGedHd\\\\/+JJZM0iLJY+bbBMJo3GdMRMvSMxSK5G2biysNxLU\\\\/xApfPf+\\\\/K4\\\\/QKZ4KKMaEIOmrn1rPnSHgPaGT9x\\\\/SvGz3K8XV5MCAwEAAaOCBhUwggYRMIICygYDVR0RBIICwTCCAr2CD3RoZWd1YXJkaWFuLmNvbYIdKi5hZHZlcnRpc2luZy50aGVndWFyZGlhbi5jb22CGyouY29kZS5kZXYtZ3VhcmRpYW5hcGlzLmNvbYIaKi5jb2RlLmRldi10aGVndWFyZGlhbi5jb22CFSouZGV2LXRoZWd1YXJkaWFuLmNvbYIbKi5lZGl0b3JpYWwudGhlZ3VhcmRpYW4uY29tghcqLmVtYWlsLnRoZWd1YXJkaWFuLmNvbYIQKi5ndWFyZGlhbi5jby51a4ISKi5ndWFyZGlhbmFwaXMuY29tggwqLmd1aW0uY28udWuCECouZ3VpbWNvZGUuY28udWuCDSoub3BoYW4uY28udWuCGSoucWEuZGV2LWd1YXJkaWFuYXBpcy5jb22CGSouc2VydmljZS50aGVndWFyZGlhbi5jb22CEyoudGhlZ3VhcmRpYW4uY28udWuCESoudGhlZ3VhcmRpYW4uY29tghQqLnRoZWd1YXJkaWFuLmRlc2lnboIeYXBpLm5leHRnZW4uZ3VhcmRpYW5hcHBzLmNvLnVrgiNjb2RlLmFwaS5uZXh0Z2VuLmd1YXJkaWFuYXBwcy5jby51a4IRZGV2LWd1dG9vbHMuY28udWuCE2Rldi10aGVndWFyZGlhbi5jb22CBmd1LmNvbYIOZ3VhcmRpYW4uY28udWuCCmd1aW0uY28udWuCDWd1dG9vbHMuY28udWuCEGkuZ3VpbWNvZGUuY28udWuCEG1lZGlhLmd1aW0uY28udWuCEnBhc3RldXAuZ3VpbS5jby51a4IZc3Vic2NyaWJlLnRoZWd1YXJkaWFuLmNvbYIRdGhlZ3VhcmRpYW4uY28udWuCEnRoZWd1YXJkaWFuLmRlc2lnboIKd3d3Lmd1LmNvbYIWbXRhLXN0cy5vYnNlcnZlci5jby51azAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB0GA1UdDgQWBBQQr4yycxJVxCvCpSWUVaMkbo6kYzBXBgNVHSAEUDBOMAgGBmeBDAECATBCBgorBgEEAaAyCgEDMDQwMgYIKwYBBQUHAgEWJmh0dHBzOi8vd3d3Lmdsb2JhbHNpZ24uY29tL3JlcG9zaXRvcnkvMAwGA1UdEwEB\\\\/wQCMAAwgZ4GCCsGAQUFBwEBBIGRMIGOMEAGCCsGAQUFBzABhjRodHRwOi8vb2NzcC5nbG9iYWxzaWduLmNvbS9jYS9nc2F0bGFzcjNkdnRsc2NhMjAyMnExMEoGCCsGAQUFBzAChj5odHRwOi8vc2VjdXJlLmdsb2JhbHNpZ24uY29tL2NhY2VydC9nc2F0bGFzcjNkdnRsc2NhMjAyMnExLmNydDAfBgNVHSMEGDAWgBScKmfQtIMxW4DLKZZVdQk3OLg8pTBIBgNVHR8EQTA\\\\/MD2gO6A5hjdodHRwOi8vY3JsLmdsb2JhbHNpZ24uY29tL2NhL2dzYXRsYXNyM2R2dGxzY2EyMDIycTEuY3JsMIIBfgYKKwYBBAHWeQIEAgSCAW4EggFqAWgAdQCt9776fP8QyIudPZwePhhqtGcpXc+xDCTKhYY069yCigAAAX8I6A4rAAAEAwBGMEQCIDOXxg5DQNhcf0iUNDC6eXFs3icbBtLMGFgNk\\\\/49eA71AiBRYPwTJgSgcZpdR2N4phoebPc2PhZrzP\\\\/jliaGChRttgB2AG9Tdqwx8DEZ2JkApFEV\\\\/3cVHBHZAsEAKQaNsgiaN9kTAAABfwjoDpkAAAQDAEcwRQIgK01WpXqJFHs02r+E9aFkJPJoW5lM71KzpdtQJuwqocACIQDXApTS31APw4dN9tMro3zacRO3Oos8vhtfzS4KN\\\\/lD7gB3AFWB1MIWkDYBSuoLm1c8U\\\\/DA5Dh4cCUIFy+jqh0HE9MMAAABfwjoDpwAAAQDAEgwRgIhAKLOMKN4hDsnNjm3qKjVWEOPbvjoD00LfaYsN0Wd9fRtAiEA0QiKYu72xwGNqh6i6v18sM6KiYnq2fpcHOJ5SeHQUVwwDQYJKoZIhvcNAQELBQADggEBAMRjjx\\\\/LFs3rJOfngJ4qXKyTPZPwNYAoXAVTEzWDbGBv8IhSwcMifijdyLfxNFja5DPefyN9\\\\/pQgWDpO0RHUmEi8hs6HnTXi09iqImNPc+\\\\/FldrgeNP4rnVdpd0ndoFeykM1nM0lQK925jnsjFdYAtL4Q\\\\/1TG98Gc7eafrVf\\\\/1Tge86rzaMpW4\\\\/Sk1xKf1Nv8TWTFNsSnoqnht0Fr7aLFwZpoP+0FdwZTFevAZls4cPia69GnaUy7AXKmyH\\\\/10h1uJ+YkwOM+kRUpDQ7SDIFA5qyzBGghs8MhSdJUeGkMUzIzZ94fJOUZFl5PQpxexTOiMj5CvbtVVRK4zlzAg21IZ0=\\\",\\\"format\\\":\\\"base64\\\"},{\\\"data\\\":\\\"MIIExTCCA62gAwIBAgIQevszfllNI8dv23xMYpva1jANBgkqhkiG9w0BAQsFADBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSMzETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjAeFw0yMTEwMjAxMjAwMDBaFw0yNDEwMjAwMDAwMDBaMFgxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS4wLAYDVQQDEyVHbG9iYWxTaWduIEF0bGFzIFIzIERWIFRMUyBDQSAyMDIyIFExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA9hHdUSQoK3TlnrSsZ2GBd4heCa6uIXBWXA1Hiyt83JH\\\\/chvz82HqdKwEOPMAp0B6JRDsF9C1MwIDql74PhMTvLQ8bPj\\\\/bBA\\\\/4lx1YBd7H+E7DLGnCZxMIcw+uCbyKqtGW4q9KN\\\\/Gb9CA+AOFDfkvESP0h4N7AqiMi3KaZEgi3FTH6FHMow65qpMh2bghBEi4c\\\\/gdVZ4LVPqxXkXiX5GB+y6QlQ492fHFXY\\\\/nxhxT1zf1oCD3HSuFUm4WtwhAG5WJSfwPUoV65fxk+SPG9SanXv6TUcqXdhwWI7sQDzgPjIcYwhDU2OWjrm1d8KHvCas9xBPc+gKPUFg5FZCdEqRZIQIDAQABo4IBlTCCAZEwDgYDVR0PAQH\\\\/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH\\\\/AgEAMB0GA1UdDgQWBBScKmfQtIMxW4DLKZZVdQk3OLg8pTAfBgNVHSMEGDAWgBSP8Et\\\\/qC5FJK5NUPpjmove4t0bvDB7BggrBgEFBQcBAQRvMG0wLgYIKwYBBQUHMAGGImh0dHA6Ly9vY3NwMi5nbG9iYWxzaWduLmNvbS9yb290cjMwOwYIKwYBBQUHMAKGL2h0dHA6Ly9zZWN1cmUuZ2xvYmFsc2lnbi5jb20vY2FjZXJ0L3Jvb3QtcjMuY3J0MDYGA1UdHwQvMC0wK6ApoCeGJWh0dHA6Ly9jcmwuZ2xvYmFsc2lnbi5jb20vcm9vdC1yMy5jcmwwVwYDVR0gBFAwTjAIBgZngQwBAgEwQgYKKwYBBAGgMgoBAzA0MDIGCCsGAQUFBwIBFiZodHRwczovL3d3dy5nbG9iYWxzaWduLmNvbS9yZXBvc2l0b3J5LzANBgkqhkiG9w0BAQsFAAOCAQEASN2DQ+QHnjDag8lm+Ct9qtYVHqAC2lmi4KqWWF\\\\/eAIWV2F0nH56cC3KtFIW6V1ffHIuTcrJJ9UYUa8ptQz6zUJLxyRzHN1ieIM\\\\/wleI28555tPO40l0Lp2amiCxBwMMWZWDgki\\\\/LfONS9mg1SyqWd13FMU5NbP8OXPfRyUyUWBdii8BUvvYOoq8pY8VnYTrlTt9d9QPjEsF1ISiXe66\\\\/mEM0gfgn2+GiHQ9BKKLPxtfYo8RdMJ3B94jP7ZzZg0jOZMYsADZM\\\\/ctTSwhMYz40ZtmvqWa1zcvsx5FcevtWn32SONKK7lHZ1K9jiYbrV15POjl3blum4dQgjhMbYasq\\\\/w==\\\",\\\"format\\\":\\\"base64\\\"}],\\\"server_name\\\":\\\"www.theguardian.com\\\",\\\"t\\\":0.6098169,\\\"tags\\\":[\\\"tcptls_experiment\\\"],\\\"tls_version\\\":\\\"TLSv1.3\\\"},{\\\"cipher_suite\\\":\\\"TLS_AES_128_GCM_SHA256\\\",\\\"failure\\\":null,\\\"negotiated_protocol\\\":\\\"h2\\\",\\\"no_tls_verify\\\":false,\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIIJEzCCB\\\\/ugAwIBAgIQAfXyOtRaOWcTRyQVQR9d9jANBgkqhkiG9w0BAQsFADBYMQswCQYDVQQGEwJCRTEZMBcGA1UEChMQR2xvYmFsU2lnbiBudi1zYTEuMCwGA1UEAxMlR2xvYmFsU2lnbiBBdGxhcyBSMyBEViBUTFMgQ0EgMjAyMiBRMTAeFw0yMjAyMTcxODE4MThaFw0yMzAzMjExODE4MTdaMBoxGDAWBgNVBAMMD3RoZWd1YXJkaWFuLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALv6sCNb61ATYO32D3pJvRnYahjDzYbK2TqgJMBYcW1siIUniTA6YRDLd1lU5JWwdHZyN0bfn+avtnvJH29fpRTM3jAep+vw1RSgDqO2lPK2TmM81MjXhtFm5ljEtkEcOxO5EEb3mCdnwQqusI7T07TngsCu6DtmSfdfSjPGAtr9eqJhwFxY\\\\/Es0w2HpskF9wrSU9HskMtUlVNREbdIsDqflFoWrIopxjbxr12ylw6CThPluSbxZxEGedHd\\\\/+JJZM0iLJY+bbBMJo3GdMRMvSMxSK5G2biysNxLU\\\\/xApfPf+\\\\/K4\\\\/QKZ4KKMaEIOmrn1rPnSHgPaGT9x\\\\/SvGz3K8XV5MCAwEAAaOCBhUwggYRMIICygYDVR0RBIICwTCCAr2CD3RoZWd1YXJkaWFuLmNvbYIdKi5hZHZlcnRpc2luZy50aGVndWFyZGlhbi5jb22CGyouY29kZS5kZXYtZ3VhcmRpYW5hcGlzLmNvbYIaKi5jb2RlLmRldi10aGVndWFyZGlhbi5jb22CFSouZGV2LXRoZWd1YXJkaWFuLmNvbYIbKi5lZGl0b3JpYWwudGhlZ3VhcmRpYW4uY29tghcqLmVtYWlsLnRoZWd1YXJkaWFuLmNvbYIQKi5ndWFyZGlhbi5jby51a4ISKi5ndWFyZGlhbmFwaXMuY29tggwqLmd1aW0uY28udWuCECouZ3VpbWNvZGUuY28udWuCDSoub3BoYW4uY28udWuCGSoucWEuZGV2LWd1YXJkaWFuYXBpcy5jb22CGSouc2VydmljZS50aGVndWFyZGlhbi5jb22CEyoudGhlZ3VhcmRpYW4uY28udWuCESoudGhlZ3VhcmRpYW4uY29tghQqLnRoZWd1YXJkaWFuLmRlc2lnboIeYXBpLm5leHRnZW4uZ3VhcmRpYW5hcHBzLmNvLnVrgiNjb2RlLmFwaS5uZXh0Z2VuLmd1YXJkaWFuYXBwcy5jby51a4IRZGV2LWd1dG9vbHMuY28udWuCE2Rldi10aGVndWFyZGlhbi5jb22CBmd1LmNvbYIOZ3VhcmRpYW4uY28udWuCCmd1aW0uY28udWuCDWd1dG9vbHMuY28udWuCEGkuZ3VpbWNvZGUuY28udWuCEG1lZGlhLmd1aW0uY28udWuCEnBhc3RldXAuZ3VpbS5jby51a4IZc3Vic2NyaWJlLnRoZWd1YXJkaWFuLmNvbYIRdGhlZ3VhcmRpYW4uY28udWuCEnRoZWd1YXJkaWFuLmRlc2lnboIKd3d3Lmd1LmNvbYIWbXRhLXN0cy5vYnNlcnZlci5jby51azAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB0GA1UdDgQWBBQQr4yycxJVxCvCpSWUVaMkbo6kYzBXBgNVHSAEUDBOMAgGBmeBDAECATBCBgorBgEEAaAyCgEDMDQwMgYIKwYBBQUHAgEWJmh0dHBzOi8vd3d3Lmdsb2JhbHNpZ24uY29tL3JlcG9zaXRvcnkvMAwGA1UdEwEB\\\\/wQCMAAwgZ4GCCsGAQUFBwEBBIGRMIGOMEAGCCsGAQUFBzABhjRodHRwOi8vb2NzcC5nbG9iYWxzaWduLmNvbS9jYS9nc2F0bGFzcjNkdnRsc2NhMjAyMnExMEoGCCsGAQUFBzAChj5odHRwOi8vc2VjdXJlLmdsb2JhbHNpZ24uY29tL2NhY2VydC9nc2F0bGFzcjNkdnRsc2NhMjAyMnExLmNydDAfBgNVHSMEGDAWgBScKmfQtIMxW4DLKZZVdQk3OLg8pTBIBgNVHR8EQTA\\\\/MD2gO6A5hjdodHRwOi8vY3JsLmdsb2JhbHNpZ24uY29tL2NhL2dzYXRsYXNyM2R2dGxzY2EyMDIycTEuY3JsMIIBfgYKKwYBBAHWeQIEAgSCAW4EggFqAWgAdQCt9776fP8QyIudPZwePhhqtGcpXc+xDCTKhYY069yCigAAAX8I6A4rAAAEAwBGMEQCIDOXxg5DQNhcf0iUNDC6eXFs3icbBtLMGFgNk\\\\/49eA71AiBRYPwTJgSgcZpdR2N4phoebPc2PhZrzP\\\\/jliaGChRttgB2AG9Tdqwx8DEZ2JkApFEV\\\\/3cVHBHZAsEAKQaNsgiaN9kTAAABfwjoDpkAAAQDAEcwRQIgK01WpXqJFHs02r+E9aFkJPJoW5lM71KzpdtQJuwqocACIQDXApTS31APw4dN9tMro3zacRO3Oos8vhtfzS4KN\\\\/lD7gB3AFWB1MIWkDYBSuoLm1c8U\\\\/DA5Dh4cCUIFy+jqh0HE9MMAAABfwjoDpwAAAQDAEgwRgIhAKLOMKN4hDsnNjm3qKjVWEOPbvjoD00LfaYsN0Wd9fRtAiEA0QiKYu72xwGNqh6i6v18sM6KiYnq2fpcHOJ5SeHQUVwwDQYJKoZIhvcNAQELBQADggEBAMRjjx\\\\/LFs3rJOfngJ4qXKyTPZPwNYAoXAVTEzWDbGBv8IhSwcMifijdyLfxNFja5DPefyN9\\\\/pQgWDpO0RHUmEi8hs6HnTXi09iqImNPc+\\\\/FldrgeNP4rnVdpd0ndoFeykM1nM0lQK925jnsjFdYAtL4Q\\\\/1TG98Gc7eafrVf\\\\/1Tge86rzaMpW4\\\\/Sk1xKf1Nv8TWTFNsSnoqnht0Fr7aLFwZpoP+0FdwZTFevAZls4cPia69GnaUy7AXKmyH\\\\/10h1uJ+YkwOM+kRUpDQ7SDIFA5qyzBGghs8MhSdJUeGkMUzIzZ94fJOUZFl5PQpxexTOiMj5CvbtVVRK4zlzAg21IZ0=\\\",\\\"format\\\":\\\"base64\\\"},{\\\"data\\\":\\\"MIIExTCCA62gAwIBAgIQevszfllNI8dv23xMYpva1jANBgkqhkiG9w0BAQsFADBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSMzETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjAeFw0yMTEwMjAxMjAwMDBaFw0yNDEwMjAwMDAwMDBaMFgxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS4wLAYDVQQDEyVHbG9iYWxTaWduIEF0bGFzIFIzIERWIFRMUyBDQSAyMDIyIFExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA9hHdUSQoK3TlnrSsZ2GBd4heCa6uIXBWXA1Hiyt83JH\\\\/chvz82HqdKwEOPMAp0B6JRDsF9C1MwIDql74PhMTvLQ8bPj\\\\/bBA\\\\/4lx1YBd7H+E7DLGnCZxMIcw+uCbyKqtGW4q9KN\\\\/Gb9CA+AOFDfkvESP0h4N7AqiMi3KaZEgi3FTH6FHMow65qpMh2bghBEi4c\\\\/gdVZ4LVPqxXkXiX5GB+y6QlQ492fHFXY\\\\/nxhxT1zf1oCD3HSuFUm4WtwhAG5WJSfwPUoV65fxk+SPG9SanXv6TUcqXdhwWI7sQDzgPjIcYwhDU2OWjrm1d8KHvCas9xBPc+gKPUFg5FZCdEqRZIQIDAQABo4IBlTCCAZEwDgYDVR0PAQH\\\\/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH\\\\/AgEAMB0GA1UdDgQWBBScKmfQtIMxW4DLKZZVdQk3OLg8pTAfBgNVHSMEGDAWgBSP8Et\\\\/qC5FJK5NUPpjmove4t0bvDB7BggrBgEFBQcBAQRvMG0wLgYIKwYBBQUHMAGGImh0dHA6Ly9vY3NwMi5nbG9iYWxzaWduLmNvbS9yb290cjMwOwYIKwYBBQUHMAKGL2h0dHA6Ly9zZWN1cmUuZ2xvYmFsc2lnbi5jb20vY2FjZXJ0L3Jvb3QtcjMuY3J0MDYGA1UdHwQvMC0wK6ApoCeGJWh0dHA6Ly9jcmwuZ2xvYmFsc2lnbi5jb20vcm9vdC1yMy5jcmwwVwYDVR0gBFAwTjAIBgZngQwBAgEwQgYKKwYBBAGgMgoBAzA0MDIGCCsGAQUFBwIBFiZodHRwczovL3d3dy5nbG9iYWxzaWduLmNvbS9yZXBvc2l0b3J5LzANBgkqhkiG9w0BAQsFAAOCAQEASN2DQ+QHnjDag8lm+Ct9qtYVHqAC2lmi4KqWWF\\\\/eAIWV2F0nH56cC3KtFIW6V1ffHIuTcrJJ9UYUa8ptQz6zUJLxyRzHN1ieIM\\\\/wleI28555tPO40l0Lp2amiCxBwMMWZWDgki\\\\/LfONS9mg1SyqWd13FMU5NbP8OXPfRyUyUWBdii8BUvvYOoq8pY8VnYTrlTt9d9QPjEsF1ISiXe66\\\\/mEM0gfgn2+GiHQ9BKKLPxtfYo8RdMJ3B94jP7ZzZg0jOZMYsADZM\\\\/ctTSwhMYz40ZtmvqWa1zcvsx5FcevtWn32SONKK7lHZ1K9jiYbrV15POjl3blum4dQgjhMbYasq\\\\/w==\\\",\\\"format\\\":\\\"base64\\\"}],\\\"server_name\\\":\\\"www.theguardian.com\\\",\\\"t\\\":0.6228068,\\\"tags\\\":[\\\"tcptls_experiment\\\"],\\\"tls_version\\\":\\\"TLSv1.3\\\"},{\\\"cipher_suite\\\":\\\"TLS_AES_128_GCM_SHA256\\\",\\\"failure\\\":null,\\\"negotiated_protocol\\\":\\\"h2\\\",\\\"no_tls_verify\\\":false,\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIIJEzCCB\\\\/ugAwIBAgIQAfXyOtRaOWcTRyQVQR9d9jANBgkqhkiG9w0BAQsFADBYMQswCQYDVQQGEwJCRTEZMBcGA1UEChMQR2xvYmFsU2lnbiBudi1zYTEuMCwGA1UEAxMlR2xvYmFsU2lnbiBBdGxhcyBSMyBEViBUTFMgQ0EgMjAyMiBRMTAeFw0yMjAyMTcxODE4MThaFw0yMzAzMjExODE4MTdaMBoxGDAWBgNVBAMMD3RoZWd1YXJkaWFuLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALv6sCNb61ATYO32D3pJvRnYahjDzYbK2TqgJMBYcW1siIUniTA6YRDLd1lU5JWwdHZyN0bfn+avtnvJH29fpRTM3jAep+vw1RSgDqO2lPK2TmM81MjXhtFm5ljEtkEcOxO5EEb3mCdnwQqusI7T07TngsCu6DtmSfdfSjPGAtr9eqJhwFxY\\\\/Es0w2HpskF9wrSU9HskMtUlVNREbdIsDqflFoWrIopxjbxr12ylw6CThPluSbxZxEGedHd\\\\/+JJZM0iLJY+bbBMJo3GdMRMvSMxSK5G2biysNxLU\\\\/xApfPf+\\\\/K4\\\\/QKZ4KKMaEIOmrn1rPnSHgPaGT9x\\\\/SvGz3K8XV5MCAwEAAaOCBhUwggYRMIICygYDVR0RBIICwTCCAr2CD3RoZWd1YXJkaWFuLmNvbYIdKi5hZHZlcnRpc2luZy50aGVndWFyZGlhbi5jb22CGyouY29kZS5kZXYtZ3VhcmRpYW5hcGlzLmNvbYIaKi5jb2RlLmRldi10aGVndWFyZGlhbi5jb22CFSouZGV2LXRoZWd1YXJkaWFuLmNvbYIbKi5lZGl0b3JpYWwudGhlZ3VhcmRpYW4uY29tghcqLmVtYWlsLnRoZWd1YXJkaWFuLmNvbYIQKi5ndWFyZGlhbi5jby51a4ISKi5ndWFyZGlhbmFwaXMuY29tggwqLmd1aW0uY28udWuCECouZ3VpbWNvZGUuY28udWuCDSoub3BoYW4uY28udWuCGSoucWEuZGV2LWd1YXJkaWFuYXBpcy5jb22CGSouc2VydmljZS50aGVndWFyZGlhbi5jb22CEyoudGhlZ3VhcmRpYW4uY28udWuCESoudGhlZ3VhcmRpYW4uY29tghQqLnRoZWd1YXJkaWFuLmRlc2lnboIeYXBpLm5leHRnZW4uZ3VhcmRpYW5hcHBzLmNvLnVrgiNjb2RlLmFwaS5uZXh0Z2VuLmd1YXJkaWFuYXBwcy5jby51a4IRZGV2LWd1dG9vbHMuY28udWuCE2Rldi10aGVndWFyZGlhbi5jb22CBmd1LmNvbYIOZ3VhcmRpYW4uY28udWuCCmd1aW0uY28udWuCDWd1dG9vbHMuY28udWuCEGkuZ3VpbWNvZGUuY28udWuCEG1lZGlhLmd1aW0uY28udWuCEnBhc3RldXAuZ3VpbS5jby51a4IZc3Vic2NyaWJlLnRoZWd1YXJkaWFuLmNvbYIRdGhlZ3VhcmRpYW4uY28udWuCEnRoZWd1YXJkaWFuLmRlc2lnboIKd3d3Lmd1LmNvbYIWbXRhLXN0cy5vYnNlcnZlci5jby51azAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB0GA1UdDgQWBBQQr4yycxJVxCvCpSWUVaMkbo6kYzBXBgNVHSAEUDBOMAgGBmeBDAECATBCBgorBgEEAaAyCgEDMDQwMgYIKwYBBQUHAgEWJmh0dHBzOi8vd3d3Lmdsb2JhbHNpZ24uY29tL3JlcG9zaXRvcnkvMAwGA1UdEwEB\\\\/wQCMAAwgZ4GCCsGAQUFBwEBBIGRMIGOMEAGCCsGAQUFBzABhjRodHRwOi8vb2NzcC5nbG9iYWxzaWduLmNvbS9jYS9nc2F0bGFzcjNkdnRsc2NhMjAyMnExMEoGCCsGAQUFBzAChj5odHRwOi8vc2VjdXJlLmdsb2JhbHNpZ24uY29tL2NhY2VydC9nc2F0bGFzcjNkdnRsc2NhMjAyMnExLmNydDAfBgNVHSMEGDAWgBScKmfQtIMxW4DLKZZVdQk3OLg8pTBIBgNVHR8EQTA\\\\/MD2gO6A5hjdodHRwOi8vY3JsLmdsb2JhbHNpZ24uY29tL2NhL2dzYXRsYXNyM2R2dGxzY2EyMDIycTEuY3JsMIIBfgYKKwYBBAHWeQIEAgSCAW4EggFqAWgAdQCt9776fP8QyIudPZwePhhqtGcpXc+xDCTKhYY069yCigAAAX8I6A4rAAAEAwBGMEQCIDOXxg5DQNhcf0iUNDC6eXFs3icbBtLMGFgNk\\\\/49eA71AiBRYPwTJgSgcZpdR2N4phoebPc2PhZrzP\\\\/jliaGChRttgB2AG9Tdqwx8DEZ2JkApFEV\\\\/3cVHBHZAsEAKQaNsgiaN9kTAAABfwjoDpkAAAQDAEcwRQIgK01WpXqJFHs02r+E9aFkJPJoW5lM71KzpdtQJuwqocACIQDXApTS31APw4dN9tMro3zacRO3Oos8vhtfzS4KN\\\\/lD7gB3AFWB1MIWkDYBSuoLm1c8U\\\\/DA5Dh4cCUIFy+jqh0HE9MMAAABfwjoDpwAAAQDAEgwRgIhAKLOMKN4hDsnNjm3qKjVWEOPbvjoD00LfaYsN0Wd9fRtAiEA0QiKYu72xwGNqh6i6v18sM6KiYnq2fpcHOJ5SeHQUVwwDQYJKoZIhvcNAQELBQADggEBAMRjjx\\\\/LFs3rJOfngJ4qXKyTPZPwNYAoXAVTEzWDbGBv8IhSwcMifijdyLfxNFja5DPefyN9\\\\/pQgWDpO0RHUmEi8hs6HnTXi09iqImNPc+\\\\/FldrgeNP4rnVdpd0ndoFeykM1nM0lQK925jnsjFdYAtL4Q\\\\/1TG98Gc7eafrVf\\\\/1Tge86rzaMpW4\\\\/Sk1xKf1Nv8TWTFNsSnoqnht0Fr7aLFwZpoP+0FdwZTFevAZls4cPia69GnaUy7AXKmyH\\\\/10h1uJ+YkwOM+kRUpDQ7SDIFA5qyzBGghs8MhSdJUeGkMUzIzZ94fJOUZFl5PQpxexTOiMj5CvbtVVRK4zlzAg21IZ0=\\\",\\\"format\\\":\\\"base64\\\"},{\\\"data\\\":\\\"MIIExTCCA62gAwIBAgIQevszfllNI8dv23xMYpva1jANBgkqhkiG9w0BAQsFADBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSMzETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjAeFw0yMTEwMjAxMjAwMDBaFw0yNDEwMjAwMDAwMDBaMFgxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS4wLAYDVQQDEyVHbG9iYWxTaWduIEF0bGFzIFIzIERWIFRMUyBDQSAyMDIyIFExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA9hHdUSQoK3TlnrSsZ2GBd4heCa6uIXBWXA1Hiyt83JH\\\\/chvz82HqdKwEOPMAp0B6JRDsF9C1MwIDql74PhMTvLQ8bPj\\\\/bBA\\\\/4lx1YBd7H+E7DLGnCZxMIcw+uCbyKqtGW4q9KN\\\\/Gb9CA+AOFDfkvESP0h4N7AqiMi3KaZEgi3FTH6FHMow65qpMh2bghBEi4c\\\\/gdVZ4LVPqxXkXiX5GB+y6QlQ492fHFXY\\\\/nxhxT1zf1oCD3HSuFUm4WtwhAG5WJSfwPUoV65fxk+SPG9SanXv6TUcqXdhwWI7sQDzgPjIcYwhDU2OWjrm1d8KHvCas9xBPc+gKPUFg5FZCdEqRZIQIDAQABo4IBlTCCAZEwDgYDVR0PAQH\\\\/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH\\\\/AgEAMB0GA1UdDgQWBBScKmfQtIMxW4DLKZZVdQk3OLg8pTAfBgNVHSMEGDAWgBSP8Et\\\\/qC5FJK5NUPpjmove4t0bvDB7BggrBgEFBQcBAQRvMG0wLgYIKwYBBQUHMAGGImh0dHA6Ly9vY3NwMi5nbG9iYWxzaWduLmNvbS9yb290cjMwOwYIKwYBBQUHMAKGL2h0dHA6Ly9zZWN1cmUuZ2xvYmFsc2lnbi5jb20vY2FjZXJ0L3Jvb3QtcjMuY3J0MDYGA1UdHwQvMC0wK6ApoCeGJWh0dHA6Ly9jcmwuZ2xvYmFsc2lnbi5jb20vcm9vdC1yMy5jcmwwVwYDVR0gBFAwTjAIBgZngQwBAgEwQgYKKwYBBAGgMgoBAzA0MDIGCCsGAQUFBwIBFiZodHRwczovL3d3dy5nbG9iYWxzaWduLmNvbS9yZXBvc2l0b3J5LzANBgkqhkiG9w0BAQsFAAOCAQEASN2DQ+QHnjDag8lm+Ct9qtYVHqAC2lmi4KqWWF\\\\/eAIWV2F0nH56cC3KtFIW6V1ffHIuTcrJJ9UYUa8ptQz6zUJLxyRzHN1ieIM\\\\/wleI28555tPO40l0Lp2amiCxBwMMWZWDgki\\\\/LfONS9mg1SyqWd13FMU5NbP8OXPfRyUyUWBdii8BUvvYOoq8pY8VnYTrlTt9d9QPjEsF1ISiXe66\\\\/mEM0gfgn2+GiHQ9BKKLPxtfYo8RdMJ3B94jP7ZzZg0jOZMYsADZM\\\\/ctTSwhMYz40ZtmvqWa1zcvsx5FcevtWn32SONKK7lHZ1K9jiYbrV15POjl3blum4dQgjhMbYasq\\\\/w==\\\",\\\"format\\\":\\\"base64\\\"}],\\\"server_name\\\":\\\"www.theguardian.com\\\",\\\"t\\\":0.647913,\\\"tags\\\":[\\\"tcptls_experiment\\\"],\\\"tls_version\\\":\\\"TLSv1.3\\\"},{\\\"cipher_suite\\\":\\\"TLS_AES_128_GCM_SHA256\\\",\\\"failure\\\":null,\\\"negotiated_protocol\\\":\\\"h2\\\",\\\"no_tls_verify\\\":false,\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIIJEzCCB\\\\/ugAwIBAgIQAfXyOtRaOWcTRyQVQR9d9jANBgkqhkiG9w0BAQsFADBYMQswCQYDVQQGEwJCRTEZMBcGA1UEChMQR2xvYmFsU2lnbiBudi1zYTEuMCwGA1UEAxMlR2xvYmFsU2lnbiBBdGxhcyBSMyBEViBUTFMgQ0EgMjAyMiBRMTAeFw0yMjAyMTcxODE4MThaFw0yMzAzMjExODE4MTdaMBoxGDAWBgNVBAMMD3RoZWd1YXJkaWFuLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALv6sCNb61ATYO32D3pJvRnYahjDzYbK2TqgJMBYcW1siIUniTA6YRDLd1lU5JWwdHZyN0bfn+avtnvJH29fpRTM3jAep+vw1RSgDqO2lPK2TmM81MjXhtFm5ljEtkEcOxO5EEb3mCdnwQqusI7T07TngsCu6DtmSfdfSjPGAtr9eqJhwFxY\\\\/Es0w2HpskF9wrSU9HskMtUlVNREbdIsDqflFoWrIopxjbxr12ylw6CThPluSbxZxEGedHd\\\\/+JJZM0iLJY+bbBMJo3GdMRMvSMxSK5G2biysNxLU\\\\/xApfPf+\\\\/K4\\\\/QKZ4KKMaEIOmrn1rPnSHgPaGT9x\\\\/SvGz3K8XV5MCAwEAAaOCBhUwggYRMIICygYDVR0RBIICwTCCAr2CD3RoZWd1YXJkaWFuLmNvbYIdKi5hZHZlcnRpc2luZy50aGVndWFyZGlhbi5jb22CGyouY29kZS5kZXYtZ3VhcmRpYW5hcGlzLmNvbYIaKi5jb2RlLmRldi10aGVndWFyZGlhbi5jb22CFSouZGV2LXRoZWd1YXJkaWFuLmNvbYIbKi5lZGl0b3JpYWwudGhlZ3VhcmRpYW4uY29tghcqLmVtYWlsLnRoZWd1YXJkaWFuLmNvbYIQKi5ndWFyZGlhbi5jby51a4ISKi5ndWFyZGlhbmFwaXMuY29tggwqLmd1aW0uY28udWuCECouZ3VpbWNvZGUuY28udWuCDSoub3BoYW4uY28udWuCGSoucWEuZGV2LWd1YXJkaWFuYXBpcy5jb22CGSouc2VydmljZS50aGVndWFyZGlhbi5jb22CEyoudGhlZ3VhcmRpYW4uY28udWuCESoudGhlZ3VhcmRpYW4uY29tghQqLnRoZWd1YXJkaWFuLmRlc2lnboIeYXBpLm5leHRnZW4uZ3VhcmRpYW5hcHBzLmNvLnVrgiNjb2RlLmFwaS5uZXh0Z2VuLmd1YXJkaWFuYXBwcy5jby51a4IRZGV2LWd1dG9vbHMuY28udWuCE2Rldi10aGVndWFyZGlhbi5jb22CBmd1LmNvbYIOZ3VhcmRpYW4uY28udWuCCmd1aW0uY28udWuCDWd1dG9vbHMuY28udWuCEGkuZ3VpbWNvZGUuY28udWuCEG1lZGlhLmd1aW0uY28udWuCEnBhc3RldXAuZ3VpbS5jby51a4IZc3Vic2NyaWJlLnRoZWd1YXJkaWFuLmNvbYIRdGhlZ3VhcmRpYW4uY28udWuCEnRoZWd1YXJkaWFuLmRlc2lnboIKd3d3Lmd1LmNvbYIWbXRhLXN0cy5vYnNlcnZlci5jby51azAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB0GA1UdDgQWBBQQr4yycxJVxCvCpSWUVaMkbo6kYzBXBgNVHSAEUDBOMAgGBmeBDAECATBCBgorBgEEAaAyCgEDMDQwMgYIKwYBBQUHAgEWJmh0dHBzOi8vd3d3Lmdsb2JhbHNpZ24uY29tL3JlcG9zaXRvcnkvMAwGA1UdEwEB\\\\/wQCMAAwgZ4GCCsGAQUFBwEBBIGRMIGOMEAGCCsGAQUFBzABhjRodHRwOi8vb2NzcC5nbG9iYWxzaWduLmNvbS9jYS9nc2F0bGFzcjNkdnRsc2NhMjAyMnExMEoGCCsGAQUFBzAChj5odHRwOi8vc2VjdXJlLmdsb2JhbHNpZ24uY29tL2NhY2VydC9nc2F0bGFzcjNkdnRsc2NhMjAyMnExLmNydDAfBgNVHSMEGDAWgBScKmfQtIMxW4DLKZZVdQk3OLg8pTBIBgNVHR8EQTA\\\\/MD2gO6A5hjdodHRwOi8vY3JsLmdsb2JhbHNpZ24uY29tL2NhL2dzYXRsYXNyM2R2dGxzY2EyMDIycTEuY3JsMIIBfgYKKwYBBAHWeQIEAgSCAW4EggFqAWgAdQCt9776fP8QyIudPZwePhhqtGcpXc+xDCTKhYY069yCigAAAX8I6A4rAAAEAwBGMEQCIDOXxg5DQNhcf0iUNDC6eXFs3icbBtLMGFgNk\\\\/49eA71AiBRYPwTJgSgcZpdR2N4phoebPc2PhZrzP\\\\/jliaGChRttgB2AG9Tdqwx8DEZ2JkApFEV\\\\/3cVHBHZAsEAKQaNsgiaN9kTAAABfwjoDpkAAAQDAEcwRQIgK01WpXqJFHs02r+E9aFkJPJoW5lM71KzpdtQJuwqocACIQDXApTS31APw4dN9tMro3zacRO3Oos8vhtfzS4KN\\\\/lD7gB3AFWB1MIWkDYBSuoLm1c8U\\\\/DA5Dh4cCUIFy+jqh0HE9MMAAABfwjoDpwAAAQDAEgwRgIhAKLOMKN4hDsnNjm3qKjVWEOPbvjoD00LfaYsN0Wd9fRtAiEA0QiKYu72xwGNqh6i6v18sM6KiYnq2fpcHOJ5SeHQUVwwDQYJKoZIhvcNAQELBQADggEBAMRjjx\\\\/LFs3rJOfngJ4qXKyTPZPwNYAoXAVTEzWDbGBv8IhSwcMifijdyLfxNFja5DPefyN9\\\\/pQgWDpO0RHUmEi8hs6HnTXi09iqImNPc+\\\\/FldrgeNP4rnVdpd0ndoFeykM1nM0lQK925jnsjFdYAtL4Q\\\\/1TG98Gc7eafrVf\\\\/1Tge86rzaMpW4\\\\/Sk1xKf1Nv8TWTFNsSnoqnht0Fr7aLFwZpoP+0FdwZTFevAZls4cPia69GnaUy7AXKmyH\\\\/10h1uJ+YkwOM+kRUpDQ7SDIFA5qyzBGghs8MhSdJUeGkMUzIzZ94fJOUZFl5PQpxexTOiMj5CvbtVVRK4zlzAg21IZ0=\\\",\\\"format\\\":\\\"base64\\\"},{\\\"data\\\":\\\"MIIExTCCA62gAwIBAgIQevszfllNI8dv23xMYpva1jANBgkqhkiG9w0BAQsFADBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSMzETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjAeFw0yMTEwMjAxMjAwMDBaFw0yNDEwMjAwMDAwMDBaMFgxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS4wLAYDVQQDEyVHbG9iYWxTaWduIEF0bGFzIFIzIERWIFRMUyBDQSAyMDIyIFExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA9hHdUSQoK3TlnrSsZ2GBd4heCa6uIXBWXA1Hiyt83JH\\\\/chvz82HqdKwEOPMAp0B6JRDsF9C1MwIDql74PhMTvLQ8bPj\\\\/bBA\\\\/4lx1YBd7H+E7DLGnCZxMIcw+uCbyKqtGW4q9KN\\\\/Gb9CA+AOFDfkvESP0h4N7AqiMi3KaZEgi3FTH6FHMow65qpMh2bghBEi4c\\\\/gdVZ4LVPqxXkXiX5GB+y6QlQ492fHFXY\\\\/nxhxT1zf1oCD3HSuFUm4WtwhAG5WJSfwPUoV65fxk+SPG9SanXv6TUcqXdhwWI7sQDzgPjIcYwhDU2OWjrm1d8KHvCas9xBPc+gKPUFg5FZCdEqRZIQIDAQABo4IBlTCCAZEwDgYDVR0PAQH\\\\/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH\\\\/AgEAMB0GA1UdDgQWBBScKmfQtIMxW4DLKZZVdQk3OLg8pTAfBgNVHSMEGDAWgBSP8Et\\\\/qC5FJK5NUPpjmove4t0bvDB7BggrBgEFBQcBAQRvMG0wLgYIKwYBBQUHMAGGImh0dHA6Ly9vY3NwMi5nbG9iYWxzaWduLmNvbS9yb290cjMwOwYIKwYBBQUHMAKGL2h0dHA6Ly9zZWN1cmUuZ2xvYmFsc2lnbi5jb20vY2FjZXJ0L3Jvb3QtcjMuY3J0MDYGA1UdHwQvMC0wK6ApoCeGJWh0dHA6Ly9jcmwuZ2xvYmFsc2lnbi5jb20vcm9vdC1yMy5jcmwwVwYDVR0gBFAwTjAIBgZngQwBAgEwQgYKKwYBBAGgMgoBAzA0MDIGCCsGAQUFBwIBFiZodHRwczovL3d3dy5nbG9iYWxzaWduLmNvbS9yZXBvc2l0b3J5LzANBgkqhkiG9w0BAQsFAAOCAQEASN2DQ+QHnjDag8lm+Ct9qtYVHqAC2lmi4KqWWF\\\\/eAIWV2F0nH56cC3KtFIW6V1ffHIuTcrJJ9UYUa8ptQz6zUJLxyRzHN1ieIM\\\\/wleI28555tPO40l0Lp2amiCxBwMMWZWDgki\\\\/LfONS9mg1SyqWd13FMU5NbP8OXPfRyUyUWBdii8BUvvYOoq8pY8VnYTrlTt9d9QPjEsF1ISiXe66\\\\/mEM0gfgn2+GiHQ9BKKLPxtfYo8RdMJ3B94jP7ZzZg0jOZMYsADZM\\\\/ctTSwhMYz40ZtmvqWa1zcvsx5FcevtWn32SONKK7lHZ1K9jiYbrV15POjl3blum4dQgjhMbYasq\\\\/w==\\\",\\\"format\\\":\\\"base64\\\"}],\\\"server_name\\\":\\\"www.theguardian.com\\\",\\\"t\\\":0.675123,\\\"tags\\\":[\\\"tcptls_experiment\\\"],\\\"tls_version\\\":\\\"TLSv1.3\\\"},{\\\"cipher_suite\\\":\\\"TLS_AES_128_GCM_SHA256\\\",\\\"failure\\\":null,\\\"negotiated_protocol\\\":\\\"h2\\\",\\\"no_tls_verify\\\":false,\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIIJEzCCB\\\\/ugAwIBAgIQAfXyOtRaOWcTRyQVQR9d9jANBgkqhkiG9w0BAQsFADBYMQswCQYDVQQGEwJCRTEZMBcGA1UEChMQR2xvYmFsU2lnbiBudi1zYTEuMCwGA1UEAxMlR2xvYmFsU2lnbiBBdGxhcyBSMyBEViBUTFMgQ0EgMjAyMiBRMTAeFw0yMjAyMTcxODE4MThaFw0yMzAzMjExODE4MTdaMBoxGDAWBgNVBAMMD3RoZWd1YXJkaWFuLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALv6sCNb61ATYO32D3pJvRnYahjDzYbK2TqgJMBYcW1siIUniTA6YRDLd1lU5JWwdHZyN0bfn+avtnvJH29fpRTM3jAep+vw1RSgDqO2lPK2TmM81MjXhtFm5ljEtkEcOxO5EEb3mCdnwQqusI7T07TngsCu6DtmSfdfSjPGAtr9eqJhwFxY\\\\/Es0w2HpskF9wrSU9HskMtUlVNREbdIsDqflFoWrIopxjbxr12ylw6CThPluSbxZxEGedHd\\\\/+JJZM0iLJY+bbBMJo3GdMRMvSMxSK5G2biysNxLU\\\\/xApfPf+\\\\/K4\\\\/QKZ4KKMaEIOmrn1rPnSHgPaGT9x\\\\/SvGz3K8XV5MCAwEAAaOCBhUwggYRMIICygYDVR0RBIICwTCCAr2CD3RoZWd1YXJkaWFuLmNvbYIdKi5hZHZlcnRpc2luZy50aGVndWFyZGlhbi5jb22CGyouY29kZS5kZXYtZ3VhcmRpYW5hcGlzLmNvbYIaKi5jb2RlLmRldi10aGVndWFyZGlhbi5jb22CFSouZGV2LXRoZWd1YXJkaWFuLmNvbYIbKi5lZGl0b3JpYWwudGhlZ3VhcmRpYW4uY29tghcqLmVtYWlsLnRoZWd1YXJkaWFuLmNvbYIQKi5ndWFyZGlhbi5jby51a4ISKi5ndWFyZGlhbmFwaXMuY29tggwqLmd1aW0uY28udWuCECouZ3VpbWNvZGUuY28udWuCDSoub3BoYW4uY28udWuCGSoucWEuZGV2LWd1YXJkaWFuYXBpcy5jb22CGSouc2VydmljZS50aGVndWFyZGlhbi5jb22CEyoudGhlZ3VhcmRpYW4uY28udWuCESoudGhlZ3VhcmRpYW4uY29tghQqLnRoZWd1YXJkaWFuLmRlc2lnboIeYXBpLm5leHRnZW4uZ3VhcmRpYW5hcHBzLmNvLnVrgiNjb2RlLmFwaS5uZXh0Z2VuLmd1YXJkaWFuYXBwcy5jby51a4IRZGV2LWd1dG9vbHMuY28udWuCE2Rldi10aGVndWFyZGlhbi5jb22CBmd1LmNvbYIOZ3VhcmRpYW4uY28udWuCCmd1aW0uY28udWuCDWd1dG9vbHMuY28udWuCEGkuZ3VpbWNvZGUuY28udWuCEG1lZGlhLmd1aW0uY28udWuCEnBhc3RldXAuZ3VpbS5jby51a4IZc3Vic2NyaWJlLnRoZWd1YXJkaWFuLmNvbYIRdGhlZ3VhcmRpYW4uY28udWuCEnRoZWd1YXJkaWFuLmRlc2lnboIKd3d3Lmd1LmNvbYIWbXRhLXN0cy5vYnNlcnZlci5jby51azAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB0GA1UdDgQWBBQQr4yycxJVxCvCpSWUVaMkbo6kYzBXBgNVHSAEUDBOMAgGBmeBDAECATBCBgorBgEEAaAyCgEDMDQwMgYIKwYBBQUHAgEWJmh0dHBzOi8vd3d3Lmdsb2JhbHNpZ24uY29tL3JlcG9zaXRvcnkvMAwGA1UdEwEB\\\\/wQCMAAwgZ4GCCsGAQUFBwEBBIGRMIGOMEAGCCsGAQUFBzABhjRodHRwOi8vb2NzcC5nbG9iYWxzaWduLmNvbS9jYS9nc2F0bGFzcjNkdnRsc2NhMjAyMnExMEoGCCsGAQUFBzAChj5odHRwOi8vc2VjdXJlLmdsb2JhbHNpZ24uY29tL2NhY2VydC9nc2F0bGFzcjNkdnRsc2NhMjAyMnExLmNydDAfBgNVHSMEGDAWgBScKmfQtIMxW4DLKZZVdQk3OLg8pTBIBgNVHR8EQTA\\\\/MD2gO6A5hjdodHRwOi8vY3JsLmdsb2JhbHNpZ24uY29tL2NhL2dzYXRsYXNyM2R2dGxzY2EyMDIycTEuY3JsMIIBfgYKKwYBBAHWeQIEAgSCAW4EggFqAWgAdQCt9776fP8QyIudPZwePhhqtGcpXc+xDCTKhYY069yCigAAAX8I6A4rAAAEAwBGMEQCIDOXxg5DQNhcf0iUNDC6eXFs3icbBtLMGFgNk\\\\/49eA71AiBRYPwTJgSgcZpdR2N4phoebPc2PhZrzP\\\\/jliaGChRttgB2AG9Tdqwx8DEZ2JkApFEV\\\\/3cVHBHZAsEAKQaNsgiaN9kTAAABfwjoDpkAAAQDAEcwRQIgK01WpXqJFHs02r+E9aFkJPJoW5lM71KzpdtQJuwqocACIQDXApTS31APw4dN9tMro3zacRO3Oos8vhtfzS4KN\\\\/lD7gB3AFWB1MIWkDYBSuoLm1c8U\\\\/DA5Dh4cCUIFy+jqh0HE9MMAAABfwjoDpwAAAQDAEgwRgIhAKLOMKN4hDsnNjm3qKjVWEOPbvjoD00LfaYsN0Wd9fRtAiEA0QiKYu72xwGNqh6i6v18sM6KiYnq2fpcHOJ5SeHQUVwwDQYJKoZIhvcNAQELBQADggEBAMRjjx\\\\/LFs3rJOfngJ4qXKyTPZPwNYAoXAVTEzWDbGBv8IhSwcMifijdyLfxNFja5DPefyN9\\\\/pQgWDpO0RHUmEi8hs6HnTXi09iqImNPc+\\\\/FldrgeNP4rnVdpd0ndoFeykM1nM0lQK925jnsjFdYAtL4Q\\\\/1TG98Gc7eafrVf\\\\/1Tge86rzaMpW4\\\\/Sk1xKf1Nv8TWTFNsSnoqnht0Fr7aLFwZpoP+0FdwZTFevAZls4cPia69GnaUy7AXKmyH\\\\/10h1uJ+YkwOM+kRUpDQ7SDIFA5qyzBGghs8MhSdJUeGkMUzIzZ94fJOUZFl5PQpxexTOiMj5CvbtVVRK4zlzAg21IZ0=\\\",\\\"format\\\":\\\"base64\\\"},{\\\"data\\\":\\\"MIIExTCCA62gAwIBAgIQevszfllNI8dv23xMYpva1jANBgkqhkiG9w0BAQsFADBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSMzETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjAeFw0yMTEwMjAxMjAwMDBaFw0yNDEwMjAwMDAwMDBaMFgxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS4wLAYDVQQDEyVHbG9iYWxTaWduIEF0bGFzIFIzIERWIFRMUyBDQSAyMDIyIFExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA9hHdUSQoK3TlnrSsZ2GBd4heCa6uIXBWXA1Hiyt83JH\\\\/chvz82HqdKwEOPMAp0B6JRDsF9C1MwIDql74PhMTvLQ8bPj\\\\/bBA\\\\/4lx1YBd7H+E7DLGnCZxMIcw+uCbyKqtGW4q9KN\\\\/Gb9CA+AOFDfkvESP0h4N7AqiMi3KaZEgi3FTH6FHMow65qpMh2bghBEi4c\\\\/gdVZ4LVPqxXkXiX5GB+y6QlQ492fHFXY\\\\/nxhxT1zf1oCD3HSuFUm4WtwhAG5WJSfwPUoV65fxk+SPG9SanXv6TUcqXdhwWI7sQDzgPjIcYwhDU2OWjrm1d8KHvCas9xBPc+gKPUFg5FZCdEqRZIQIDAQABo4IBlTCCAZEwDgYDVR0PAQH\\\\/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH\\\\/AgEAMB0GA1UdDgQWBBScKmfQtIMxW4DLKZZVdQk3OLg8pTAfBgNVHSMEGDAWgBSP8Et\\\\/qC5FJK5NUPpjmove4t0bvDB7BggrBgEFBQcBAQRvMG0wLgYIKwYBBQUHMAGGImh0dHA6Ly9vY3NwMi5nbG9iYWxzaWduLmNvbS9yb290cjMwOwYIKwYBBQUHMAKGL2h0dHA6Ly9zZWN1cmUuZ2xvYmFsc2lnbi5jb20vY2FjZXJ0L3Jvb3QtcjMuY3J0MDYGA1UdHwQvMC0wK6ApoCeGJWh0dHA6Ly9jcmwuZ2xvYmFsc2lnbi5jb20vcm9vdC1yMy5jcmwwVwYDVR0gBFAwTjAIBgZngQwBAgEwQgYKKwYBBAGgMgoBAzA0MDIGCCsGAQUFBwIBFiZodHRwczovL3d3dy5nbG9iYWxzaWduLmNvbS9yZXBvc2l0b3J5LzANBgkqhkiG9w0BAQsFAAOCAQEASN2DQ+QHnjDag8lm+Ct9qtYVHqAC2lmi4KqWWF\\\\/eAIWV2F0nH56cC3KtFIW6V1ffHIuTcrJJ9UYUa8ptQz6zUJLxyRzHN1ieIM\\\\/wleI28555tPO40l0Lp2amiCxBwMMWZWDgki\\\\/LfONS9mg1SyqWd13FMU5NbP8OXPfRyUyUWBdii8BUvvYOoq8pY8VnYTrlTt9d9QPjEsF1ISiXe66\\\\/mEM0gfgn2+GiHQ9BKKLPxtfYo8RdMJ3B94jP7ZzZg0jOZMYsADZM\\\\/ctTSwhMYz40ZtmvqWa1zcvsx5FcevtWn32SONKK7lHZ1K9jiYbrV15POjl3blum4dQgjhMbYasq\\\\/w==\\\",\\\"format\\\":\\\"base64\\\"}],\\\"server_name\\\":\\\"www.theguardian.com\\\",\\\"t\\\":0.6793284,\\\"tags\\\":[\\\"tcptls_experiment\\\"],\\\"tls_version\\\":\\\"TLSv1.3\\\"},{\\\"cipher_suite\\\":\\\"TLS_AES_128_GCM_SHA256\\\",\\\"failure\\\":null,\\\"negotiated_protocol\\\":\\\"h2\\\",\\\"no_tls_verify\\\":false,\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIIJEzCCB\\\\/ugAwIBAgIQAfXyOtRaOWcTRyQVQR9d9jANBgkqhkiG9w0BAQsFADBYMQswCQYDVQQGEwJCRTEZMBcGA1UEChMQR2xvYmFsU2lnbiBudi1zYTEuMCwGA1UEAxMlR2xvYmFsU2lnbiBBdGxhcyBSMyBEViBUTFMgQ0EgMjAyMiBRMTAeFw0yMjAyMTcxODE4MThaFw0yMzAzMjExODE4MTdaMBoxGDAWBgNVBAMMD3RoZWd1YXJkaWFuLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALv6sCNb61ATYO32D3pJvRnYahjDzYbK2TqgJMBYcW1siIUniTA6YRDLd1lU5JWwdHZyN0bfn+avtnvJH29fpRTM3jAep+vw1RSgDqO2lPK2TmM81MjXhtFm5ljEtkEcOxO5EEb3mCdnwQqusI7T07TngsCu6DtmSfdfSjPGAtr9eqJhwFxY\\\\/Es0w2HpskF9wrSU9HskMtUlVNREbdIsDqflFoWrIopxjbxr12ylw6CThPluSbxZxEGedHd\\\\/+JJZM0iLJY+bbBMJo3GdMRMvSMxSK5G2biysNxLU\\\\/xApfPf+\\\\/K4\\\\/QKZ4KKMaEIOmrn1rPnSHgPaGT9x\\\\/SvGz3K8XV5MCAwEAAaOCBhUwggYRMIICygYDVR0RBIICwTCCAr2CD3RoZWd1YXJkaWFuLmNvbYIdKi5hZHZlcnRpc2luZy50aGVndWFyZGlhbi5jb22CGyouY29kZS5kZXYtZ3VhcmRpYW5hcGlzLmNvbYIaKi5jb2RlLmRldi10aGVndWFyZGlhbi5jb22CFSouZGV2LXRoZWd1YXJkaWFuLmNvbYIbKi5lZGl0b3JpYWwudGhlZ3VhcmRpYW4uY29tghcqLmVtYWlsLnRoZWd1YXJkaWFuLmNvbYIQKi5ndWFyZGlhbi5jby51a4ISKi5ndWFyZGlhbmFwaXMuY29tggwqLmd1aW0uY28udWuCECouZ3VpbWNvZGUuY28udWuCDSoub3BoYW4uY28udWuCGSoucWEuZGV2LWd1YXJkaWFuYXBpcy5jb22CGSouc2VydmljZS50aGVndWFyZGlhbi5jb22CEyoudGhlZ3VhcmRpYW4uY28udWuCESoudGhlZ3VhcmRpYW4uY29tghQqLnRoZWd1YXJkaWFuLmRlc2lnboIeYXBpLm5leHRnZW4uZ3VhcmRpYW5hcHBzLmNvLnVrgiNjb2RlLmFwaS5uZXh0Z2VuLmd1YXJkaWFuYXBwcy5jby51a4IRZGV2LWd1dG9vbHMuY28udWuCE2Rldi10aGVndWFyZGlhbi5jb22CBmd1LmNvbYIOZ3VhcmRpYW4uY28udWuCCmd1aW0uY28udWuCDWd1dG9vbHMuY28udWuCEGkuZ3VpbWNvZGUuY28udWuCEG1lZGlhLmd1aW0uY28udWuCEnBhc3RldXAuZ3VpbS5jby51a4IZc3Vic2NyaWJlLnRoZWd1YXJkaWFuLmNvbYIRdGhlZ3VhcmRpYW4uY28udWuCEnRoZWd1YXJkaWFuLmRlc2lnboIKd3d3Lmd1LmNvbYIWbXRhLXN0cy5vYnNlcnZlci5jby51azAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB0GA1UdDgQWBBQQr4yycxJVxCvCpSWUVaMkbo6kYzBXBgNVHSAEUDBOMAgGBmeBDAECATBCBgorBgEEAaAyCgEDMDQwMgYIKwYBBQUHAgEWJmh0dHBzOi8vd3d3Lmdsb2JhbHNpZ24uY29tL3JlcG9zaXRvcnkvMAwGA1UdEwEB\\\\/wQCMAAwgZ4GCCsGAQUFBwEBBIGRMIGOMEAGCCsGAQUFBzABhjRodHRwOi8vb2NzcC5nbG9iYWxzaWduLmNvbS9jYS9nc2F0bGFzcjNkdnRsc2NhMjAyMnExMEoGCCsGAQUFBzAChj5odHRwOi8vc2VjdXJlLmdsb2JhbHNpZ24uY29tL2NhY2VydC9nc2F0bGFzcjNkdnRsc2NhMjAyMnExLmNydDAfBgNVHSMEGDAWgBScKmfQtIMxW4DLKZZVdQk3OLg8pTBIBgNVHR8EQTA\\\\/MD2gO6A5hjdodHRwOi8vY3JsLmdsb2JhbHNpZ24uY29tL2NhL2dzYXRsYXNyM2R2dGxzY2EyMDIycTEuY3JsMIIBfgYKKwYBBAHWeQIEAgSCAW4EggFqAWgAdQCt9776fP8QyIudPZwePhhqtGcpXc+xDCTKhYY069yCigAAAX8I6A4rAAAEAwBGMEQCIDOXxg5DQNhcf0iUNDC6eXFs3icbBtLMGFgNk\\\\/49eA71AiBRYPwTJgSgcZpdR2N4phoebPc2PhZrzP\\\\/jliaGChRttgB2AG9Tdqwx8DEZ2JkApFEV\\\\/3cVHBHZAsEAKQaNsgiaN9kTAAABfwjoDpkAAAQDAEcwRQIgK01WpXqJFHs02r+E9aFkJPJoW5lM71KzpdtQJuwqocACIQDXApTS31APw4dN9tMro3zacRO3Oos8vhtfzS4KN\\\\/lD7gB3AFWB1MIWkDYBSuoLm1c8U\\\\/DA5Dh4cCUIFy+jqh0HE9MMAAABfwjoDpwAAAQDAEgwRgIhAKLOMKN4hDsnNjm3qKjVWEOPbvjoD00LfaYsN0Wd9fRtAiEA0QiKYu72xwGNqh6i6v18sM6KiYnq2fpcHOJ5SeHQUVwwDQYJKoZIhvcNAQELBQADggEBAMRjjx\\\\/LFs3rJOfngJ4qXKyTPZPwNYAoXAVTEzWDbGBv8IhSwcMifijdyLfxNFja5DPefyN9\\\\/pQgWDpO0RHUmEi8hs6HnTXi09iqImNPc+\\\\/FldrgeNP4rnVdpd0ndoFeykM1nM0lQK925jnsjFdYAtL4Q\\\\/1TG98Gc7eafrVf\\\\/1Tge86rzaMpW4\\\\/Sk1xKf1Nv8TWTFNsSnoqnht0Fr7aLFwZpoP+0FdwZTFevAZls4cPia69GnaUy7AXKmyH\\\\/10h1uJ+YkwOM+kRUpDQ7SDIFA5qyzBGghs8MhSdJUeGkMUzIzZ94fJOUZFl5PQpxexTOiMj5CvbtVVRK4zlzAg21IZ0=\\\",\\\"format\\\":\\\"base64\\\"},{\\\"data\\\":\\\"MIIExTCCA62gAwIBAgIQevszfllNI8dv23xMYpva1jANBgkqhkiG9w0BAQsFADBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSMzETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjAeFw0yMTEwMjAxMjAwMDBaFw0yNDEwMjAwMDAwMDBaMFgxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS4wLAYDVQQDEyVHbG9iYWxTaWduIEF0bGFzIFIzIERWIFRMUyBDQSAyMDIyIFExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA9hHdUSQoK3TlnrSsZ2GBd4heCa6uIXBWXA1Hiyt83JH\\\\/chvz82HqdKwEOPMAp0B6JRDsF9C1MwIDql74PhMTvLQ8bPj\\\\/bBA\\\\/4lx1YBd7H+E7DLGnCZxMIcw+uCbyKqtGW4q9KN\\\\/Gb9CA+AOFDfkvESP0h4N7AqiMi3KaZEgi3FTH6FHMow65qpMh2bghBEi4c\\\\/gdVZ4LVPqxXkXiX5GB+y6QlQ492fHFXY\\\\/nxhxT1zf1oCD3HSuFUm4WtwhAG5WJSfwPUoV65fxk+SPG9SanXv6TUcqXdhwWI7sQDzgPjIcYwhDU2OWjrm1d8KHvCas9xBPc+gKPUFg5FZCdEqRZIQIDAQABo4IBlTCCAZEwDgYDVR0PAQH\\\\/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH\\\\/AgEAMB0GA1UdDgQWBBScKmfQtIMxW4DLKZZVdQk3OLg8pTAfBgNVHSMEGDAWgBSP8Et\\\\/qC5FJK5NUPpjmove4t0bvDB7BggrBgEFBQcBAQRvMG0wLgYIKwYBBQUHMAGGImh0dHA6Ly9vY3NwMi5nbG9iYWxzaWduLmNvbS9yb290cjMwOwYIKwYBBQUHMAKGL2h0dHA6Ly9zZWN1cmUuZ2xvYmFsc2lnbi5jb20vY2FjZXJ0L3Jvb3QtcjMuY3J0MDYGA1UdHwQvMC0wK6ApoCeGJWh0dHA6Ly9jcmwuZ2xvYmFsc2lnbi5jb20vcm9vdC1yMy5jcmwwVwYDVR0gBFAwTjAIBgZngQwBAgEwQgYKKwYBBAGgMgoBAzA0MDIGCCsGAQUFBwIBFiZodHRwczovL3d3dy5nbG9iYWxzaWduLmNvbS9yZXBvc2l0b3J5LzANBgkqhkiG9w0BAQsFAAOCAQEASN2DQ+QHnjDag8lm+Ct9qtYVHqAC2lmi4KqWWF\\\\/eAIWV2F0nH56cC3KtFIW6V1ffHIuTcrJJ9UYUa8ptQz6zUJLxyRzHN1ieIM\\\\/wleI28555tPO40l0Lp2amiCxBwMMWZWDgki\\\\/LfONS9mg1SyqWd13FMU5NbP8OXPfRyUyUWBdii8BUvvYOoq8pY8VnYTrlTt9d9QPjEsF1ISiXe66\\\\/mEM0gfgn2+GiHQ9BKKLPxtfYo8RdMJ3B94jP7ZzZg0jOZMYsADZM\\\\/ctTSwhMYz40ZtmvqWa1zcvsx5FcevtWn32SONKK7lHZ1K9jiYbrV15POjl3blum4dQgjhMbYasq\\\\/w==\\\",\\\"format\\\":\\\"base64\\\"}],\\\"server_name\\\":\\\"www.theguardian.com\\\",\\\"t\\\":0.6961875,\\\"tags\\\":[\\\"tcptls_experiment\\\"],\\\"tls_version\\\":\\\"TLSv1.3\\\"},{\\\"cipher_suite\\\":\\\"TLS_AES_128_GCM_SHA256\\\",\\\"failure\\\":null,\\\"negotiated_protocol\\\":\\\"h2\\\",\\\"no_tls_verify\\\":false,\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIIJEzCCB\\\\/ugAwIBAgIQAfXyOtRaOWcTRyQVQR9d9jANBgkqhkiG9w0BAQsFADBYMQswCQYDVQQGEwJCRTEZMBcGA1UEChMQR2xvYmFsU2lnbiBudi1zYTEuMCwGA1UEAxMlR2xvYmFsU2lnbiBBdGxhcyBSMyBEViBUTFMgQ0EgMjAyMiBRMTAeFw0yMjAyMTcxODE4MThaFw0yMzAzMjExODE4MTdaMBoxGDAWBgNVBAMMD3RoZWd1YXJkaWFuLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALv6sCNb61ATYO32D3pJvRnYahjDzYbK2TqgJMBYcW1siIUniTA6YRDLd1lU5JWwdHZyN0bfn+avtnvJH29fpRTM3jAep+vw1RSgDqO2lPK2TmM81MjXhtFm5ljEtkEcOxO5EEb3mCdnwQqusI7T07TngsCu6DtmSfdfSjPGAtr9eqJhwFxY\\\\/Es0w2HpskF9wrSU9HskMtUlVNREbdIsDqflFoWrIopxjbxr12ylw6CThPluSbxZxEGedHd\\\\/+JJZM0iLJY+bbBMJo3GdMRMvSMxSK5G2biysNxLU\\\\/xApfPf+\\\\/K4\\\\/QKZ4KKMaEIOmrn1rPnSHgPaGT9x\\\\/SvGz3K8XV5MCAwEAAaOCBhUwggYRMIICygYDVR0RBIICwTCCAr2CD3RoZWd1YXJkaWFuLmNvbYIdKi5hZHZlcnRpc2luZy50aGVndWFyZGlhbi5jb22CGyouY29kZS5kZXYtZ3VhcmRpYW5hcGlzLmNvbYIaKi5jb2RlLmRldi10aGVndWFyZGlhbi5jb22CFSouZGV2LXRoZWd1YXJkaWFuLmNvbYIbKi5lZGl0b3JpYWwudGhlZ3VhcmRpYW4uY29tghcqLmVtYWlsLnRoZWd1YXJkaWFuLmNvbYIQKi5ndWFyZGlhbi5jby51a4ISKi5ndWFyZGlhbmFwaXMuY29tggwqLmd1aW0uY28udWuCECouZ3VpbWNvZGUuY28udWuCDSoub3BoYW4uY28udWuCGSoucWEuZGV2LWd1YXJkaWFuYXBpcy5jb22CGSouc2VydmljZS50aGVndWFyZGlhbi5jb22CEyoudGhlZ3VhcmRpYW4uY28udWuCESoudGhlZ3VhcmRpYW4uY29tghQqLnRoZWd1YXJkaWFuLmRlc2lnboIeYXBpLm5leHRnZW4uZ3VhcmRpYW5hcHBzLmNvLnVrgiNjb2RlLmFwaS5uZXh0Z2VuLmd1YXJkaWFuYXBwcy5jby51a4IRZGV2LWd1dG9vbHMuY28udWuCE2Rldi10aGVndWFyZGlhbi5jb22CBmd1LmNvbYIOZ3VhcmRpYW4uY28udWuCCmd1aW0uY28udWuCDWd1dG9vbHMuY28udWuCEGkuZ3VpbWNvZGUuY28udWuCEG1lZGlhLmd1aW0uY28udWuCEnBhc3RldXAuZ3VpbS5jby51a4IZc3Vic2NyaWJlLnRoZWd1YXJkaWFuLmNvbYIRdGhlZ3VhcmRpYW4uY28udWuCEnRoZWd1YXJkaWFuLmRlc2lnboIKd3d3Lmd1LmNvbYIWbXRhLXN0cy5vYnNlcnZlci5jby51azAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB0GA1UdDgQWBBQQr4yycxJVxCvCpSWUVaMkbo6kYzBXBgNVHSAEUDBOMAgGBmeBDAECATBCBgorBgEEAaAyCgEDMDQwMgYIKwYBBQUHAgEWJmh0dHBzOi8vd3d3Lmdsb2JhbHNpZ24uY29tL3JlcG9zaXRvcnkvMAwGA1UdEwEB\\\\/wQCMAAwgZ4GCCsGAQUFBwEBBIGRMIGOMEAGCCsGAQUFBzABhjRodHRwOi8vb2NzcC5nbG9iYWxzaWduLmNvbS9jYS9nc2F0bGFzcjNkdnRsc2NhMjAyMnExMEoGCCsGAQUFBzAChj5odHRwOi8vc2VjdXJlLmdsb2JhbHNpZ24uY29tL2NhY2VydC9nc2F0bGFzcjNkdnRsc2NhMjAyMnExLmNydDAfBgNVHSMEGDAWgBScKmfQtIMxW4DLKZZVdQk3OLg8pTBIBgNVHR8EQTA\\\\/MD2gO6A5hjdodHRwOi8vY3JsLmdsb2JhbHNpZ24uY29tL2NhL2dzYXRsYXNyM2R2dGxzY2EyMDIycTEuY3JsMIIBfgYKKwYBBAHWeQIEAgSCAW4EggFqAWgAdQCt9776fP8QyIudPZwePhhqtGcpXc+xDCTKhYY069yCigAAAX8I6A4rAAAEAwBGMEQCIDOXxg5DQNhcf0iUNDC6eXFs3icbBtLMGFgNk\\\\/49eA71AiBRYPwTJgSgcZpdR2N4phoebPc2PhZrzP\\\\/jliaGChRttgB2AG9Tdqwx8DEZ2JkApFEV\\\\/3cVHBHZAsEAKQaNsgiaN9kTAAABfwjoDpkAAAQDAEcwRQIgK01WpXqJFHs02r+E9aFkJPJoW5lM71KzpdtQJuwqocACIQDXApTS31APw4dN9tMro3zacRO3Oos8vhtfzS4KN\\\\/lD7gB3AFWB1MIWkDYBSuoLm1c8U\\\\/DA5Dh4cCUIFy+jqh0HE9MMAAABfwjoDpwAAAQDAEgwRgIhAKLOMKN4hDsnNjm3qKjVWEOPbvjoD00LfaYsN0Wd9fRtAiEA0QiKYu72xwGNqh6i6v18sM6KiYnq2fpcHOJ5SeHQUVwwDQYJKoZIhvcNAQELBQADggEBAMRjjx\\\\/LFs3rJOfngJ4qXKyTPZPwNYAoXAVTEzWDbGBv8IhSwcMifijdyLfxNFja5DPefyN9\\\\/pQgWDpO0RHUmEi8hs6HnTXi09iqImNPc+\\\\/FldrgeNP4rnVdpd0ndoFeykM1nM0lQK925jnsjFdYAtL4Q\\\\/1TG98Gc7eafrVf\\\\/1Tge86rzaMpW4\\\\/Sk1xKf1Nv8TWTFNsSnoqnht0Fr7aLFwZpoP+0FdwZTFevAZls4cPia69GnaUy7AXKmyH\\\\/10h1uJ+YkwOM+kRUpDQ7SDIFA5qyzBGghs8MhSdJUeGkMUzIzZ94fJOUZFl5PQpxexTOiMj5CvbtVVRK4zlzAg21IZ0=\\\",\\\"format\\\":\\\"base64\\\"},{\\\"data\\\":\\\"MIIExTCCA62gAwIBAgIQevszfllNI8dv23xMYpva1jANBgkqhkiG9w0BAQsFADBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSMzETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjAeFw0yMTEwMjAxMjAwMDBaFw0yNDEwMjAwMDAwMDBaMFgxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS4wLAYDVQQDEyVHbG9iYWxTaWduIEF0bGFzIFIzIERWIFRMUyBDQSAyMDIyIFExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA9hHdUSQoK3TlnrSsZ2GBd4heCa6uIXBWXA1Hiyt83JH\\\\/chvz82HqdKwEOPMAp0B6JRDsF9C1MwIDql74PhMTvLQ8bPj\\\\/bBA\\\\/4lx1YBd7H+E7DLGnCZxMIcw+uCbyKqtGW4q9KN\\\\/Gb9CA+AOFDfkvESP0h4N7AqiMi3KaZEgi3FTH6FHMow65qpMh2bghBEi4c\\\\/gdVZ4LVPqxXkXiX5GB+y6QlQ492fHFXY\\\\/nxhxT1zf1oCD3HSuFUm4WtwhAG5WJSfwPUoV65fxk+SPG9SanXv6TUcqXdhwWI7sQDzgPjIcYwhDU2OWjrm1d8KHvCas9xBPc+gKPUFg5FZCdEqRZIQIDAQABo4IBlTCCAZEwDgYDVR0PAQH\\\\/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH\\\\/AgEAMB0GA1UdDgQWBBScKmfQtIMxW4DLKZZVdQk3OLg8pTAfBgNVHSMEGDAWgBSP8Et\\\\/qC5FJK5NUPpjmove4t0bvDB7BggrBgEFBQcBAQRvMG0wLgYIKwYBBQUHMAGGImh0dHA6Ly9vY3NwMi5nbG9iYWxzaWduLmNvbS9yb290cjMwOwYIKwYBBQUHMAKGL2h0dHA6Ly9zZWN1cmUuZ2xvYmFsc2lnbi5jb20vY2FjZXJ0L3Jvb3QtcjMuY3J0MDYGA1UdHwQvMC0wK6ApoCeGJWh0dHA6Ly9jcmwuZ2xvYmFsc2lnbi5jb20vcm9vdC1yMy5jcmwwVwYDVR0gBFAwTjAIBgZngQwBAgEwQgYKKwYBBAGgMgoBAzA0MDIGCCsGAQUFBwIBFiZodHRwczovL3d3dy5nbG9iYWxzaWduLmNvbS9yZXBvc2l0b3J5LzANBgkqhkiG9w0BAQsFAAOCAQEASN2DQ+QHnjDag8lm+Ct9qtYVHqAC2lmi4KqWWF\\\\/eAIWV2F0nH56cC3KtFIW6V1ffHIuTcrJJ9UYUa8ptQz6zUJLxyRzHN1ieIM\\\\/wleI28555tPO40l0Lp2amiCxBwMMWZWDgki\\\\/LfONS9mg1SyqWd13FMU5NbP8OXPfRyUyUWBdii8BUvvYOoq8pY8VnYTrlTt9d9QPjEsF1ISiXe66\\\\/mEM0gfgn2+GiHQ9BKKLPxtfYo8RdMJ3B94jP7ZzZg0jOZMYsADZM\\\\/ctTSwhMYz40ZtmvqWa1zcvsx5FcevtWn32SONKK7lHZ1K9jiYbrV15POjl3blum4dQgjhMbYasq\\\\/w==\\\",\\\"format\\\":\\\"base64\\\"}],\\\"server_name\\\":\\\"www.theguardian.com\\\",\\\"t\\\":0.7183875,\\\"tags\\\":[\\\"tcptls_experiment\\\"],\\\"tls_version\\\":\\\"TLSv1.3\\\"}],\\\"queries\\\":[{\\\"answers\\\":[{\\\"asn\\\":54113,\\\"as_org_name\\\":\\\"Fastly\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"151.101.1.111\\\",\\\"ttl\\\":null},{\\\"asn\\\":54113,\\\"as_org_name\\\":\\\"Fastly\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"151.101.65.111\\\",\\\"ttl\\\":null},{\\\"asn\\\":54113,\\\"as_org_name\\\":\\\"Fastly\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"151.101.129.111\\\",\\\"ttl\\\":null},{\\\"asn\\\":54113,\\\"as_org_name\\\":\\\"Fastly\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"151.101.193.111\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"www.theguardian.com\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.0204721},{\\\"answers\\\":[{\\\"asn\\\":54113,\\\"as_org_name\\\":\\\"Fastly\\\",\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"2a04:4e42::367\\\",\\\"ttl\\\":null},{\\\"asn\\\":54113,\\\"as_org_name\\\":\\\"Fastly\\\",\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"2a04:4e42:200::367\\\",\\\"ttl\\\":null},{\\\"asn\\\":54113,\\\"as_org_name\\\":\\\"Fastly\\\",\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"2a04:4e42:400::367\\\",\\\"ttl\\\":null},{\\\"asn\\\":54113,\\\"as_org_name\\\":\\\"Fastly\\\",\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"2a04:4e42:600::367\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"www.theguardian.com\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.0204721}],\\\"dns_experiment_failure\\\":null,\\\"dns_consistency\\\":\\\"consistent\\\",\\\"control_failure\\\":null,\\\"control\\\":{\\\"tcp_connect\\\":{\\\"151.101.1.111:443\\\":{\\\"status\\\":true,\\\"failure\\\":null},\\\"151.101.129.111:443\\\":{\\\"status\\\":true,\\\"failure\\\":null},\\\"151.101.193.111:443\\\":{\\\"status\\\":true,\\\"failure\\\":null},\\\"151.101.65.111:443\\\":{\\\"status\\\":true,\\\"failure\\\":null},\\\"[2a04:4e42:200::367]:443\\\":{\\\"status\\\":true,\\\"failure\\\":null},\\\"[2a04:4e42:400::367]:443\\\":{\\\"status\\\":true,\\\"failure\\\":null},\\\"[2a04:4e42:600::367]:443\\\":{\\\"status\\\":true,\\\"failure\\\":null},\\\"[2a04:4e42::367]:443\\\":{\\\"status\\\":true,\\\"failure\\\":null}},\\\"http_request\\\":{\\\"body_length\\\":1261261,\\\"failure\\\":null,\\\"title\\\":\\\"News, sport and opinion from the Guardian's US edition | The Guardian\\\",\\\"headers\\\":{\\\"Accept-Ranges\\\":\\\"bytes\\\",\\\"Age\\\":\\\"72\\\",\\\"Cache-Control\\\":\\\"max-age=60, stale-while-revalidate=6, stale-if-error=864000, private,no-transform\\\",\\\"Content-Length\\\":\\\"1261261\\\",\\\"Content-Security-Policy\\\":\\\"default-src https:; script-src https: 'unsafe-inline' 'unsafe-eval' blob: 'unsafe-inline'; frame-src https: data:; style-src https: 'unsafe-inline'; img-src https: data: blob:; media-src https: data: blob:; font-src https: data:; connect-src https: wss: blob:; child-src https: blob:; object-src 'none'; base-uri https:\\\\/\\\\/*.gracenote.com\\\",\\\"Content-Type\\\":\\\"text\\\\/html; charset=UTF-8\\\",\\\"Date\\\":\\\"Thu, 10 Nov 2022 10:09:17 GMT\\\",\\\"Etag\\\":\\\"W\\\\/\\\\\\\"hash1080896318753603739\\\\\\\"\\\",\\\"Feature-Policy\\\":\\\"camera 'none'; microphone 'none'; midi 'none'; geolocation 'none'\\\",\\\"Link\\\":\\\"<https:\\\\/\\\\/assets.guim.co.uk\\\\/stylesheets\\\\/2d0779d877d57475b954545ae07253b6\\\\/facia.garnett.css>; rel=preload; as=style; nopush,<https:\\\\/\\\\/assets.guim.co.uk\\\\/polyfill.io\\\\/v3\\\\/polyfill.min.js?rum=0&features=es6,es7,es2017,default-3.6,HTMLPictureElement,IntersectionObserver,IntersectionObserverEntry,fetch,navigator.sendBeacon,performance.now,Object.fromEntries,Promise.allSettled&flags=gated&callback=guardianPolyfilled&unknown=polyfill&clearCache=5>; rel=preload; as=script; nopush,<https:\\\\/\\\\/assets.guim.co.uk\\\\/javascripts\\\\/70cbe56e9560dcdb706b\\\\/graun.standard.js>; rel=preload; as=script; nopush\\\",\\\"Onion-Location\\\":\\\"https:\\\\/\\\\/www.guardian2zotagl6tmjucg3lrhxdk4dw3lhbqnkvvkywawy3oqfoprid.onion\\\\/us\\\",\\\"Permissions-Policy\\\":\\\"camera=(), microphone=(), midi=(), geolocation=(), interest-cohort=()\\\",\\\"Referrer-Policy\\\":\\\"no-referrer-when-downgrade\\\",\\\"Set-Cookie\\\":\\\"GU_mvt_id=279866; expires=Wed, 08 Feb 2023 10:09:17 GMT; path=\\\\/; domain=.theguardian.com; Secure\\\",\\\"Strict-Transport-Security\\\":\\\"max-age=63072000; includeSubDomains; preload\\\",\\\"Vary\\\":\\\"Accept-Encoding,User-Agent\\\",\\\"X-Content-Type-Options\\\":\\\"nosniff\\\",\\\"X-Frame-Options\\\":\\\"SAMEORIGIN\\\",\\\"X-Gu-Edition\\\":\\\"us\\\",\\\"X-Timer\\\":\\\"S1668074958.837092,VS0,VE2\\\",\\\"X-Xss-Protection\\\":\\\"1; mode=block\\\"},\\\"status_code\\\":200},\\\"dns\\\":{\\\"failure\\\":null,\\\"addrs\\\":[\\\"151.101.1.111\\\",\\\"151.101.65.111\\\",\\\"151.101.129.111\\\",\\\"151.101.193.111\\\",\\\"2a04:4e42::367\\\",\\\"2a04:4e42:200::367\\\",\\\"2a04:4e42:400::367\\\",\\\"2a04:4e42:600::367\\\"]}},\\\"tcp_connect\\\":[{\\\"ip\\\":\\\"151.101.129.111\\\",\\\"port\\\":443,\\\"status\\\":{\\\"blocked\\\":false,\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.5419419},{\\\"ip\\\":\\\"151.101.1.111\\\",\\\"port\\\":443,\\\"status\\\":{\\\"blocked\\\":false,\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.5419419},{\\\"ip\\\":\\\"2a04:4e42:200::367\\\",\\\"port\\\":443,\\\"status\\\":{\\\"blocked\\\":false,\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.6137457},{\\\"ip\\\":\\\"151.101.193.111\\\",\\\"port\\\":443,\\\"status\\\":{\\\"blocked\\\":false,\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.5426784},{\\\"ip\\\":\\\"2a04:4e42:600::367\\\",\\\"port\\\":443,\\\"status\\\":{\\\"blocked\\\":false,\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.6514069},{\\\"ip\\\":\\\"2a04:4e42:400::367\\\",\\\"port\\\":443,\\\"status\\\":{\\\"blocked\\\":false,\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.6258805},{\\\"ip\\\":\\\"2a04:4e42::367\\\",\\\"port\\\":443,\\\"status\\\":{\\\"blocked\\\":false,\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.6808277},{\\\"ip\\\":\\\"151.101.65.111\\\",\\\"port\\\":443,\\\"status\\\":{\\\"blocked\\\":false,\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.6003443}],\\\"requests\\\":[{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US,en;q=0.9\\\"],[\\\"Cookie\\\",\\\"GU_mvt_id=989184; GU_geo_country=SG\\\"],[\\\"Host\\\",\\\"www.theguardian.com\\\"],[\\\"Referer\\\",\\\"https:\\\\/\\\\/www.theguardian.com\\\\/\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/96.0.4664.110 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US,en;q=0.9\\\",\\\"Cookie\\\":\\\"GU_mvt_id=989184; GU_geo_country=SG\\\",\\\"Host\\\":\\\"www.theguardian.com\\\",\\\"Referer\\\":\\\"https:\\\\/\\\\/www.theguardian.com\\\\/\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/96.0.4664.110 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"https:\\\\/\\\\/www.theguardian.com\\\\/international\\\"},\\\"response\\\":{\\\"body\\\":\\\"\\\\n<!DOCTYPE html>\\\\n<html id=\\\\\\\"js-context\\\\\\\" class=\\\\\\\"js-off is-not-modern id--signed-out\\\\\\\" lang=\\\\\\\"en\\\\\\\" data-page-path=\\\\\\\"\\\\/international\\\\\\\">\\\\n\\\\n\\\\n <head>\\\\n\\\\n\\\\n \\\\n<!--\\\\n __ __ _ _ _\\\\n \\\\\\\\ \\\\\\\\ \\\\/ \\\\/__ __ _ _ __ ___ | |__ (_)_ __(_)_ __ __ _\\\\n \\\\\\\\ \\\\\\\\ \\\\/\\\\\\\\ \\\\/ \\\\/ _ \\\\\\\\ \\\\/ _` | '__\\\\/ _ \\\\\\\\ | '_ \\\\\\\\| | '__| | '_ \\\\\\\\ \\\\/ _` |\\\\n \\\\\\\\ V V \\\\/ __\\\\/ | (_| | | | __\\\\/ | | | | | | | | | | | (_| |\\\\n \\\\\\\\_\\\\/\\\\\\\\_\\\\/ \\\\\\\\___| \\\\\\\\__,_|_| \\\\\\\\___| |_| |_|_|_| |_|_| |_|\\\\\\\\__, |\\\\n |___\\\\/\\\\n Ever thought about joining us?\\\\n https:\\\\/\\\\/workforus.theguardian.com\\\\/careers\\\\/product-engineering\\\\/\\\\n --->\\\\n\\\\n\\\\n \\\\n<title>News, sport and opinion from the Guardian's global edition | The Guardian<\\\\/title>\\\\n\\\\n\\\\n \\\\n\\\\n<meta charset=\\\\\\\"utf-8\\\\\\\">\\\\n\\\\n <meta name=\\\\\\\"description\\\\\\\" content=\\\\\\\"Latest international news, sport and comment from the Guardian\\\\\\\" \\\\/>\\\\n\\\\n\\\\n<meta http-equiv=\\\\\\\"X-UA-Compatible\\\\\\\" content=\\\\\\\"IE=Edge\\\\\\\" \\\\/>\\\\n<meta name=\\\\\\\"format-detection\\\\\\\" content=\\\\\\\"telephone=no\\\\\\\" \\\\/>\\\\n<meta name=\\\\\\\"HandheldFriendly\\\\\\\" content=\\\\\\\"True\\\\\\\" \\\\/>\\\\n<meta name=\\\\\\\"viewport\\\\\\\" content=\\\\\\\"width=device-width,minimum-scale=1,initial-scale=1\\\\\\\">\\\\n\\\\n\\\\n<link rel=\\\\\\\"dns-prefetch\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/assets.guim.co.uk\\\\/\\\\\\\" \\\\/>\\\\n<link rel=\\\\\\\"dns-prefetch\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/i.guim.co.uk\\\\\\\" \\\\/>\\\\n<link rel=\\\\\\\"dns-prefetch\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/api.nextgen.guardianapps.co.uk\\\\\\\" \\\\/>\\\\n<link rel=\\\\\\\"dns-prefetch\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/hits-secure.theguardian.com\\\\\\\" \\\\/>\\\\n<link rel=\\\\\\\"dns-prefetch\\\\\\\" href=\\\\\\\"\\\\/\\\\/j.ophan.co.uk\\\\\\\" \\\\/>\\\\n<link rel=\\\\\\\"dns-prefetch\\\\\\\" href=\\\\\\\"\\\\/\\\\/ophan.theguardian.com\\\\\\\" \\\\/>\\\\n<link rel=\\\\\\\"dns-prefetch\\\\\\\" href=\\\\\\\"\\\\/\\\\/phar.gu-web.net\\\\\\\" \\\\/>\\\\n\\\\n<link rel=\\\\\\\"preconnect\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/assets.guim.co.uk\\\\/\\\\\\\" \\\\/>\\\\n<link rel=\\\\\\\"preconnect\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/i.guim.co.uk\\\\\\\" \\\\/>\\\\n<link rel=\\\\\\\"preconnect\\\\\\\" href=\\\\\\\"\\\\/\\\\/interactive.guim.co.uk\\\\\\\" \\\\/>\\\\n\\\\n <link rel=\\\\\\\"preconnect\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/sourcepoint.theguardian.com\\\\\\\" \\\\/>\\\\n\\\\n\\\\n<link rel=\\\\\\\"apple-touch-icon\\\\\\\" sizes=\\\\\\\"152x152\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/assets.guim.co.uk\\\\/images\\\\/favicons\\\\/fee5e2d638d1c35f6d501fa397e53329\\\\/152x152.png\\\\\\\" \\\\/>\\\\n<link rel=\\\\\\\"apple-touch-icon\\\\\\\" sizes=\\\\\\\"144x144\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/assets.guim.co.uk\\\\/images\\\\/favicons\\\\/1fe70b29879674433702d5266abcb0d4\\\\/144x144.png\\\\\\\" \\\\/>\\\\n<link rel=\\\\\\\"apple-touch-icon\\\\\\\" sizes=\\\\\\\"120x120\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/assets.guim.co.uk\\\\/images\\\\/favicons\\\\/c58143bd2a5b5426b6256cd90ba6eb47\\\\/120x120.png\\\\\\\" \\\\/>\\\\n<link rel=\\\\\\\"apple-touch-icon\\\\\\\" sizes=\\\\\\\"114x114\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/assets.guim.co.uk\\\\/images\\\\/favicons\\\\/68cbd5cf267598abd6a026f229ef6b45\\\\/114x114.png\\\\\\\" \\\\/>\\\\n<link rel=\\\\\\\"apple-touch-icon\\\\\\\" sizes=\\\\\\\"72x72\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/assets.guim.co.uk\\\\/images\\\\/favicons\\\\/873381bf11d58e20f551905d51575117\\\\/72x72.png\\\\\\\" \\\\/>\\\\n<link rel=\\\\\\\"apple-touch-icon-precomposed\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/assets.guim.co.uk\\\\/images\\\\/favicons\\\\/6a2aa0ea5b4b6183e92d0eac49e2f58b\\\\/57x57.png\\\\\\\" \\\\/>\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n <link rel=\\\\\\\"shortcut icon\\\\\\\" type=\\\\\\\"image\\\\/png\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/assets.guim.co.uk\\\\/images\\\\/favicons\\\\/46bd2faa1ab438684a6d4528a655a8bd\\\\/32x32.ico\\\\\\\" \\\\/>\\\\n\\\\n\\\\n\\\\n\\\\n <link rel=\\\\\\\"alternate\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/www.theguardian.com\\\\/uk\\\\\\\" hreflang=\\\\\\\"en-GB\\\\\\\" \\\\/>\\\\n\\\\n <link rel=\\\\\\\"alternate\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/www.theguardian.com\\\\/us\\\\\\\" hreflang=\\\\\\\"en-US\\\\\\\" \\\\/>\\\\n\\\\n <link rel=\\\\\\\"alternate\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/www.theguardian.com\\\\/au\\\\\\\" hreflang=\\\\\\\"en-AU\\\\\\\" \\\\/>\\\\n\\\\n <link rel=\\\\\\\"alternate\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/www.theguardian.com\\\\/international\\\\\\\" hreflang=\\\\\\\"en\\\\\\\" \\\\/>\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n<link rel=\\\\\\\"canonical\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/www.theguardian.com\\\\/international\\\\\\\" \\\\/>\\\\n\\\\n<meta name=\\\\\\\"apple-mobile-web-app-title\\\\\\\" content=\\\\\\\"Guardian\\\\\\\" \\\\/>\\\\n<meta name=\\\\\\\"application-name\\\\\\\" content=\\\\\\\"The Guardian\\\\\\\" \\\\/>\\\\n<meta name=\\\\\\\"msapplication-TileColor\\\\\\\" content=\\\\\\\"#052962\\\\\\\" \\\\/>\\\\n<meta name=\\\\\\\"theme-color\\\\\\\" content=\\\\\\\"#052962\\\\\\\">\\\\n<meta name=\\\\\\\"msapplication-TileImage\\\\\\\" content=\\\\\\\"https:\\\\/\\\\/assets.guim.co.uk\\\\/images\\\\/favicons\\\\/023dafadbf5ef53e0865e4baaaa32b3b\\\\/windows_tile_144_b.png\\\\\\\" \\\\/>\\\\n\\\\n\\\\n\\\\n\\\\n<link rel=\\\\\\\"publisher\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/plus.google.com\\\\/113000071431138202574\\\\\\\" \\\\/>\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n \\\\n <meta property=\\\\\\\"og:url\\\\\\\" content=\\\\\\\"http:\\\\/\\\\/www.theguardian.com\\\\/international\\\\\\\" \\\\/>\\\\n \\\\n <meta property=\\\\\\\"og:description\\\\\\\" content=\\\\\\\"Latest international news, sport and comment from the Guardian\\\\\\\" \\\\/>\\\\n \\\\n <meta property=\\\\\\\"og:image\\\\\\\" content=\\\\\\\"https:\\\\/\\\\/assets.guim.co.uk\\\\/images\\\\/eada8aa27c12fe2d5afa3a89d3fbae0d\\\\/fallback-logo.png\\\\\\\" \\\\/>\\\\n \\\\n <meta property=\\\\\\\"al:ios:url\\\\\\\" content=\\\\\\\"gnmguardian:\\\\/\\\\/international?contenttype=front&source=applinks\\\\\\\" \\\\/>\\\\n \\\\n <meta property=\\\\\\\"fb:app_id\\\\\\\" content=\\\\\\\"180444840287\\\\\\\" \\\\/>\\\\n \\\\n <meta property=\\\\\\\"og:type\\\\\\\" content=\\\\\\\"website\\\\\\\" \\\\/>\\\\n \\\\n <meta property=\\\\\\\"al:ios:app_store_id\\\\\\\" content=\\\\\\\"409128287\\\\\\\" \\\\/>\\\\n \\\\n <meta property=\\\\\\\"al:ios:app_name\\\\\\\" content=\\\\\\\"The Guardian\\\\\\\" \\\\/>\\\\n \\\\n <meta property=\\\\\\\"og:site_name\\\\\\\" content=\\\\\\\"the Guardian\\\\\\\" \\\\/>\\\\n \\\\n \\\\n <meta name=\\\\\\\"twitter:app:id:iphone\\\\\\\" content=\\\\\\\"409128287\\\\\\\" \\\\/>\\\\n \\\\n <meta name=\\\\\\\"twitter:app:name:googleplay\\\\\\\" content=\\\\\\\"The Guardian\\\\\\\" \\\\/>\\\\n \\\\n <meta name=\\\\\\\"twitter:app:name:ipad\\\\\\\" content=\\\\\\\"The Guardian\\\\\\\" \\\\/>\\\\n \\\\n <meta name=\\\\\\\"twitter:card\\\\\\\" content=\\\\\\\"summary\\\\\\\" \\\\/>\\\\n \\\\n <meta name=\\\\\\\"twitter:app:name:iphone\\\\\\\" content=\\\\\\\"The Guardian\\\\\\\" \\\\/>\\\\n \\\\n <meta name=\\\\\\\"twitter:app:id:ipad\\\\\\\" content=\\\\\\\"409128287\\\\\\\" \\\\/>\\\\n \\\\n <meta name=\\\\\\\"twitter:app:id:googleplay\\\\\\\" content=\\\\\\\"com.guardian\\\\\\\" \\\\/>\\\\n \\\\n <meta name=\\\\\\\"twitter:app:url:iphone\\\\\\\" content=\\\\\\\"gnmguardian:\\\\/\\\\/international?contenttype=front&source=twitter\\\\\\\" \\\\/>\\\\n \\\\n <meta name=\\\\\\\"twitter:site\\\\\\\" content=\\\\\\\"@guardian\\\\\\\" \\\\/>\\\\n \\\\n <meta name=\\\\\\\"twitter:app:url:ipad\\\\\\\" content=\\\\\\\"gnmguardian:\\\\/\\\\/international?contenttype=front&source=twitter\\\\\\\" \\\\/>\\\\n \\\\n \\\\n\\\\n\\\\n<meta name=\\\\\\\"twitter:dnt\\\\\\\" content=\\\\\\\"on\\\\\\\">\\\\n\\\\n\\\\n\\\\n\\\\n <meta property=\\\\\\\"fb:pages\\\\\\\" content=\\\\\\\"10513336322\\\\\\\" \\\\/>\\\\n\\\\n <meta property=\\\\\\\"fb:pages\\\\\\\" content=\\\\\\\"456740217686384\\\\\\\" \\\\/>\\\\n\\\\n <meta property=\\\\\\\"fb:pages\\\\\\\" content=\\\\\\\"516977308337360\\\\\\\" \\\\/>\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n <script data-schema=\\\\\\\"Organization\\\\\\\" type=\\\\\\\"application\\\\/ld+json\\\\\\\">\\\\n {\\\\\\\"name\\\\\\\":\\\\\\\"The Guardian\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"http:\\\\/\\\\/www.theguardian.com\\\\/\\\\\\\",\\\\\\\"logo\\\\\\\":{\\\\\\\"@type\\\\\\\":\\\\\\\"ImageObject\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"https:\\\\/\\\\/uploads.guim.co.uk\\\\/2018\\\\/01\\\\/31\\\\/TheGuardian_AMP.png\\\\\\\",\\\\\\\"width\\\\\\\":190,\\\\\\\"height\\\\\\\":60},\\\\\\\"sameAs\\\\\\\":[\\\\\\\"https:\\\\/\\\\/www.facebook.com\\\\/theguardian\\\\\\\",\\\\\\\"https:\\\\/\\\\/twitter.com\\\\/guardian\\\\\\\",\\\\\\\"https:\\\\/\\\\/www.youtube.com\\\\/user\\\\/TheGuardian\\\\\\\",\\\\\\\"https:\\\\/\\\\/www.wikidata.org\\\\/wiki\\\\/Q11148\\\\\\\"],\\\\\\\"@type\\\\\\\":\\\\\\\"Organization\\\\\\\",\\\\\\\"@context\\\\\\\":\\\\\\\"http:\\\\/\\\\/schema.org\\\\\\\"}\\\\n <\\\\/script>\\\\n\\\\n <script data-schema=\\\\\\\"WebPage\\\\\\\" type=\\\\\\\"application\\\\/ld+json\\\\\\\">\\\\n {\\\\\\\"@id\\\\\\\":\\\\\\\"https:\\\\/\\\\/www.theguardian.com\\\\/international\\\\\\\",\\\\\\\"potentialAction\\\\\\\":{\\\\\\\"@type\\\\\\\":\\\\\\\"ViewAction\\\\\\\",\\\\\\\"target\\\\\\\":\\\\\\\"android-app:\\\\/\\\\/com.guardian\\\\/https\\\\/www.theguardian.com\\\\/international\\\\\\\"},\\\\\\\"@type\\\\\\\":\\\\\\\"WebPage\\\\\\\",\\\\\\\"@context\\\\\\\":\\\\\\\"http:\\\\/\\\\/schema.org\\\\\\\"}\\\\n <\\\\/script>\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n <link rel=\\\\\\\"alternate\\\\\\\" href=\\\\\\\"ios-app:\\\\/\\\\/409128287\\\\/gnmguardian\\\\/international?contenttype=front&source=google\\\\\\\" \\\\/>\\\\n\\\\n\\\\n\\\\n<meta name=\\\\\\\"robots\\\\\\\" content=\\\\\\\"max-image-preview:large\\\\\\\">\\\\n\\\\n\\\\n \\\\n\\\\n<meta name=\\\\\\\"twitter:url\\\\\\\" content=\\\\\\\"https:\\\\/\\\\/www.theguardian.com\\\\/international\\\\\\\" \\\\/>\\\\n<meta property=\\\\\\\"og:title\\\\\\\" content=\\\\\\\"News, sport and opinion from the Guardian's global edition | The Guardian\\\\\\\" \\\\/>\\\\n<link rel=\\\\\\\"alternate\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/www.theguardian.com\\\\/international\\\\/rss\\\\\\\" title=\\\\\\\"RSS\\\\\\\" type=\\\\\\\"application\\\\/rss+xml\\\\\\\" >\\\\n\\\\n\\\\n \\\\n\\\\n\\\\n \\\\n\\\\n\\\\n<style class=\\\\\\\"webfont js-loggable\\\\\\\">\\\\n@font-face { font-family: \\\\\\\"GH Guardian Headline\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/noalts-not-hinted\\\\/GHGuardianHeadline-Light.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-Light.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-Light.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 300; font-style: normal; font-display: swap; } @font-face { font-family: \\\\\\\"Guardian Egyptian Web\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/noalts-not-hinted\\\\/GHGuardianHeadline-Light.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-Light.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-Light.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 300; font-style: normal; font-display: swap; } @font-face { font-family: \\\\\\\"GH Guardian Headline\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/noalts-not-hinted\\\\/GHGuardianHeadline-LightItalic.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-LightItalic.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-LightItalic.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 300; font-style: italic; font-display: swap; } @font-face { font-family: \\\\\\\"Guardian Egyptian Web\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/noalts-not-hinted\\\\/GHGuardianHeadline-LightItalic.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-LightItalic.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-LightItalic.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 300; font-style: italic; font-display: swap; } @font-face { font-family: \\\\\\\"GH Guardian Headline\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/noalts-not-hinted\\\\/GHGuardianHeadline-Medium.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/noalts-not-hinted\\\\/GHGuardianHeadline-Medium.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-Medium.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 500; font-style: normal; font-display: swap; } @font-face { font-family: \\\\\\\"Guardian Egyptian Web\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/noalts-not-hinted\\\\/GHGuardianHeadline-Medium.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/noalts-not-hinted\\\\/GHGuardianHeadline-Medium.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-Medium.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 500; font-style: normal; font-display: swap; } @font-face { font-family: \\\\\\\"GH Guardian Headline\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/noalts-not-hinted\\\\/GHGuardianHeadline-MediumItalic.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-MediumItalic.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-MediumItalic.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 500; font-style: italic; font-display: swap; } @font-face { font-family: \\\\\\\"Guardian Egyptian Web\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/noalts-not-hinted\\\\/GHGuardianHeadline-MediumItalic.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-MediumItalic.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-MediumItalic.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 500; font-style: italic; font-display: swap; } @font-face { font-family: \\\\\\\"GH Guardian Headline\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/noalts-not-hinted\\\\/GHGuardianHeadline-Bold.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-Bold.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-Bold.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 700; font-style: normal; font-display: swap; } @font-face { font-family: \\\\\\\"Guardian Egyptian Web\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/noalts-not-hinted\\\\/GHGuardianHeadline-Bold.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-Bold.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-Bold.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 700; font-style: normal; font-display: swap; } @font-face { font-family: \\\\\\\"GH Guardian Headline\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/noalts-not-hinted\\\\/GHGuardianHeadline-BoldItalic.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-BoldItalic.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-BoldItalic.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 700; font-style: italic; font-display: swap; } @font-face { font-family: \\\\\\\"Guardian Egyptian Web\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/noalts-not-hinted\\\\/GHGuardianHeadline-BoldItalic.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-BoldItalic.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-BoldItalic.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 700; font-style: italic; font-display: swap; } @font-face { font-family: \\\\\\\"GuardianTextEgyptian\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/noalts-not-hinted\\\\/GuardianTextEgyptian-Regular.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/noalts-not-hinted\\\\/GuardianTextEgyptian-Regular.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/latin1-not-hinted\\\\/GuardianTextEgyptian-Regular.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 400; font-style: normal; font-display: swap; } @font-face { font-family: \\\\\\\"Guardian Text Egyptian Web\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/noalts-not-hinted\\\\/GuardianTextEgyptian-Regular.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/noalts-not-hinted\\\\/GuardianTextEgyptian-Regular.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/latin1-not-hinted\\\\/GuardianTextEgyptian-Regular.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 400; font-style: normal; font-display: swap; } @font-face { font-family: \\\\\\\"GuardianTextEgyptian\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/noalts-not-hinted\\\\/GuardianTextEgyptian-RegularItalic.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/latin1-not-hinted\\\\/GuardianTextEgyptian-RegularItalic.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/latin1-not-hinted\\\\/GuardianTextEgyptian-RegularItalic.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 400; font-style: italic; font-display: swap; } @font-face { font-family: \\\\\\\"Guardian Text Egyptian Web\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/noalts-not-hinted\\\\/GuardianTextEgyptian-RegularItalic.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/latin1-not-hinted\\\\/GuardianTextEgyptian-RegularItalic.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/latin1-not-hinted\\\\/GuardianTextEgyptian-RegularItalic.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 400; font-style: italic; font-display: swap; } @font-face { font-family: \\\\\\\"GuardianTextEgyptian\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/noalts-not-hinted\\\\/GuardianTextEgyptian-Bold.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/latin1-not-hinted\\\\/GuardianTextEgyptian-Bold.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/latin1-not-hinted\\\\/GuardianTextEgyptian-Bold.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 700; font-style: normal; font-display: swap; } @font-face { font-family: \\\\\\\"Guardian Text Egyptian Web\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/noalts-not-hinted\\\\/GuardianTextEgyptian-Bold.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/latin1-not-hinted\\\\/GuardianTextEgyptian-Bold.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/latin1-not-hinted\\\\/GuardianTextEgyptian-Bold.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 700; font-style: normal; font-display: swap; } @font-face { font-family: \\\\\\\"GuardianTextEgyptian\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/noalts-not-hinted\\\\/GuardianTextEgyptian-BoldItalic.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/latin1-not-hinted\\\\/GuardianTextEgyptian-BoldItalic.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/latin1-not-hinted\\\\/GuardianTextEgyptian-BoldItalic.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 700; font-style: italic; font-display: swap; } @font-face { font-family: \\\\\\\"Guardian Text Egyptian Web\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/noalts-not-hinted\\\\/GuardianTextEgyptian-BoldItalic.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/latin1-not-hinted\\\\/GuardianTextEgyptian-BoldItalic.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/latin1-not-hinted\\\\/GuardianTextEgyptian-BoldItalic.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 700; font-style: italic; font-display: swap; } @font-face { font-family: \\\\\\\"GuardianTextSans\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/noalts-not-hinted\\\\/GuardianTextSans-Regular.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/noalts-not-hinted\\\\/GuardianTextSans-Regular.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/latin1-not-hinted\\\\/GuardianTextSans-Regular.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 400; font-style: normal; font-display: swap; } @font-face { font-family: \\\\\\\"Guardian Text Sans Web\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/noalts-not-hinted\\\\/GuardianTextSans-Regular.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/noalts-not-hinted\\\\/GuardianTextSans-Regular.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/latin1-not-hinted\\\\/GuardianTextSans-Regular.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 400; font-style: normal; font-display: swap; } @font-face { font-family: \\\\\\\"GuardianTextSans\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/noalts-not-hinted\\\\/GuardianTextSans-RegularItalic.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/latin1-not-hinted\\\\/GuardianTextSans-RegularItalic.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/latin1-not-hinted\\\\/GuardianTextSans-RegularItalic.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 400; font-style: italic; font-display: swap; } @font-face { font-family: \\\\\\\"Guardian Text Sans Web\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/noalts-not-hinted\\\\/GuardianTextSans-RegularItalic.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/latin1-not-hinted\\\\/GuardianTextSans-RegularItalic.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/latin1-not-hinted\\\\/GuardianTextSans-RegularItalic.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 400; font-style: italic; font-display: swap; } @font-face { font-family: \\\\\\\"GuardianTextSans\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/noalts-not-hinted\\\\/GuardianTextSans-Bold.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/latin1-not-hinted\\\\/GuardianTextSans-Bold.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/latin1-not-hinted\\\\/GuardianTextSans-Bold.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 700; font-style: normal; font-display: swap; } @font-face { font-family: \\\\\\\"Guardian Text Sans Web\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/noalts-not-hinted\\\\/GuardianTextSans-Bold.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/latin1-not-hinted\\\\/GuardianTextSans-Bold.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/latin1-not-hinted\\\\/GuardianTextSans-Bold.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 700; font-style: normal; font-display: swap; } @font-face { font-family: \\\\\\\"GuardianTextSans\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/noalts-not-hinted\\\\/GuardianTextSans-BoldItalic.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/latin1-not-hinted\\\\/GuardianTextSans-BoldItalic.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/latin1-not-hinted\\\\/GuardianTextSans-BoldItalic.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 700; font-style: italic; font-display: swap; } @font-face { font-family: \\\\\\\"Guardian Text Sans Web\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/noalts-not-hinted\\\\/GuardianTextSans-BoldItalic.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/latin1-not-hinted\\\\/GuardianTextSans-BoldItalic.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/latin1-not-hinted\\\\/GuardianTextSans-BoldItalic.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 700; font-style: italic; font-display: swap; }\\\\n<\\\\/style>\\\\n\\\\n\\\\n\\\\n\\\\n<style class=\\\\\\\"js-loggable\\\\\\\">\\\\n .svg .i,\\\\n .svg .caption:before,\\\\n .svg figcaption:before,\\\\n .svg blockquote.quoted:before {\\\\n background-image: none;\\\\n }\\\\n .is-updating {\\\\n background-image: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/images\\\\/f2465f9293ea046b91128035ecf4cdd5\\\\/auto-update-activity.gif);\\\\n }\\\\n .is-updating--dark {\\\\n background-image: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/images\\\\/614abf55ccbb65d1bb691aa8bf64fd7f\\\\/auto-update-activity-dark.gif);\\\\n }\\\\n .tweet__user-name:before {\\\\n background-image: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/images\\\\/twitter\\\\/ca807fd6567f678fc0981a4ab6904fbe\\\\/bird.svg);\\\\n }\\\\n\\\\n .no-svg .inline-guardian-logo-160 { background-image: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/images\\\\/logo\\\\/c53d8a40a4962863a36388902a43f279\\\\/guardian-logo-160.png); }\\\\n .no-svg .inline-guardian-logo-320 { background-image: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/images\\\\/logo\\\\/951ac05886372ebb77554a9dd4ae420f\\\\/guardian-logo-320.png); }\\\\n .no-svg .inline-observer-logo-160 { background-image: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/images\\\\/logo\\\\/bee4ad72a1badb16d72a86484d192a1c\\\\/observer-logo-160.png); }\\\\n .no-svg .inline-observer-logo-320 { background-image: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/images\\\\/logo\\\\/c5669a2096d808752b0d5798be09ab0f\\\\/observer-logo-320.png); }\\\\n<\\\\/style>\\\\n\\\\n\\\\n<!--[if (lt IE 9)&(!IEMobile)]>\\\\n\\\\n\\\\n\\\\n\\\\n <link rel=\\\\\\\"stylesheet\\\\\\\" type=\\\\\\\"text\\\\/css\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/assets.guim.co.uk\\\\/stylesheets\\\\/8b0d3a943dd2fdd528c3efe07ddbb8ba\\\\/old-ie.head.facia.garnett.css\\\\\\\" media=\\\\\\\"only x\\\\\\\" \\\\/>\\\\n <noscript>\\\\n <link rel=\\\\\\\"stylesheet\\\\\\\" type=\\\\\\\"text\\\\/css\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/assets.guim.co.uk\\\\/stylesheets\\\\/8b0d3a943dd2fdd528c3efe07ddbb8ba\\\\/old-ie.head.facia.garnett.css\\\\\\\" \\\\/>\\\\n <\\\\/noscript>\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n <link rel=\\\\\\\"stylesheet\\\\\\\" type=\\\\\\\"text\\\\/css\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/assets.guim.co.uk\\\\/stylesheets\\\\/4b4180c1ce46e63f05aa6ef5ecff85ab\\\\/old-ie.content.garnett.css\\\\\\\" media=\\\\\\\"only x\\\\\\\" \\\\/>\\\\n <noscript>\\\\n <link rel=\\\\\\\"stylesheet\\\\\\\" type=\\\\\\\"text\\\\/css\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/assets.guim.co.uk\\\\/stylesheets\\\\/4b4180c1ce46e63f05aa6ef5ecff85ab\\\\/old-ie.content.garnett.css\\\\\\\" \\\\/>\\\\n <\\\\/noscript>\\\\n\\\\n\\\\n<![endif]-->\\\\n\\\\n\\\\n<!--[if (IE 9)&(!IEMobile)]>\\\\n\\\\n\\\\n\\\\n\\\\n <link rel=\\\\\\\"stylesheet\\\\\\\" type=\\\\\\\"text\\\\/css\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/assets.guim.co.uk\\\\/stylesheets\\\\/f83a90fd0722c2c8930b6effd921de38\\\\/ie9.content.garnett.css\\\\\\\" media=\\\\\\\"only x\\\\\\\" \\\\/>\\\\n <noscript>\\\\n <link rel=\\\\\\\"stylesheet\\\\\\\" type=\\\\\\\"text\\\\/css\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/assets.guim.co.uk\\\\/stylesheets\\\\/f83a90fd0722c2c8930b6effd921de38\\\\/ie9.content.garnett.css\\\\\\\" \\\\/>\\\\n <\\\\/noscript>\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n <link rel=\\\\\\\"stylesheet\\\\\\\" type=\\\\\\\"text\\\\/css\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/assets.guim.co.uk\\\\/stylesheets\\\\/fdbf0ae97cec6ced5ab5154450223765\\\\/ie9.head.facia.garnett.css\\\\\\\" media=\\\\\\\"only x\\\\\\\" \\\\/>\\\\n <noscript>\\\\n <link rel=\\\\\\\"stylesheet\\\\\\\" type=\\\\\\\"text\\\\/css\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/assets.guim.co.uk\\\\/stylesheets\\\\/fdbf0ae97cec6ced5ab5154450223765\\\\/ie9.head.facia.garnett.css\\\\\\\" \\\\/>\\\\n <\\\\/noscript>\\\\n\\\\n\\\\n<![endif]-->\\\\n\\\\n\\\\n<!--[if (gt IE 9)|(IEMobile)]><!-->\\\\n\\\\n<style class=\\\\\\\"js-loggable\\\\\\\">\\\\n \\\\n\\\\n html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:0.0625rem dotted}b,strong{font-weight:bold}dfn{font-style:italic}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 0}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0;-webkit-font-smoothing:antialiased}button{overflow:visible}button,select{text-transform:none}.button{outline:0}button,html input[type='button'],input[type='reset'],input[type='submit']{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type='checkbox'],input[type='radio']{box-sizing:border-box;padding:0}input[type='number']::-webkit-inner-spin-button,input[type='number']::-webkit-outer-spin-button{height:auto}input[type='search']{-webkit-appearance:textfield;box-sizing:content-box}input[type='search']::-webkit-search-cancel-button,input[type='search']::-webkit-search-decoration{-webkit-appearance:none}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}html{overflow-y:scroll}html.iframed{overflow-y:auto}html.iframed--overflow-hidden{overflow:hidden}body{background-color:#ffffff}.is-modern .has-membership-access-requirement{visibility:hidden !important}::-moz-selection{background:#ffe500;color:#121212}::selection{background:#ffe500;color:#121212}head{font-family:'mobile'}@media (min-width: 30em){head{font-family:'mobileLandscape'}}@media (min-width: 46.25em){head{font-family:'tablet'}}@media (min-width: 61.25em){head{font-family:'desktop'}}@media (min-width: 71.25em){head{font-family:'leftCol'}}@media (min-width: 81.25em){head{font-family:'wide'}}body:after{border:0 !important;clip:rect(0 0 0 0) !important;height:0.0625rem !important;margin:-0.0625rem !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:0.0625rem !important;content:'mobile'}@media (min-width: 30em){body:after{content:'mobileLandscape'}}@media (min-width: 46.25em){body:after{content:'tablet'}}@media (min-width: 61.25em){body:after{content:'desktop'}}@media (min-width: 71.25em){body:after{content:'leftCol'}}@media (min-width: 81.25em){body:after{content:'wide'}}.dateline{font-size:0.8125rem;line-height:1.125rem;font-family:\\\\\\\"Guardian Text Sans Web\\\\\\\",\\\\\\\"Helvetica Neue\\\\\\\",Helvetica,Arial,\\\\\\\"Lucida Grande\\\\\\\",sans-serif;color:#767676}@media (min-width: 46.25em){.dateline{font-size:0.875rem;line-height:1.25rem}}.dateline i{vertical-align:baseline}.relative-timestamp{display:block;color:#767676;margin:0}.relative-timestamp span{display:inline-block}.relative-timestamp__icon{vertical-align:-0.125rem}ol,ul{list-style-position:inside}a,button,input[type='button'],input[type='submit']{-ms-touch-action:manipulation;touch-action:manipulation}html{font-family:\\\\\\\"Guardian Text Egyptian Web\\\\\\\",Georgia,serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}body{line-height:1.5;color:#121212}html,body{text-rendering:optimizeSpeed}.should-kern body{text-rendering:optimizeLegibility;-webkit-font-feature-settings:'kern';font-feature-settings:'kern';-webkit-font-kerning:normal;font-kerning:normal;-webkit-font-variant-ligatures:common-ligatures;font-variant-ligatures:common-ligatures}h1,h2,h3,h4,h5,h6{margin:0}blockquote{margin:0}p{margin-top:0;margin-bottom:0.5rem}h3{font-size:1.0625rem;line-height:1.5rem;font-family:\\\\\\\"Guardian Text Egyptian Web\\\\\\\",Georgia,serif;font-weight:normal;margin-bottom:0.4375rem}.type-5{font-size:1.125rem;line-height:1.5rem;font-family:\\\\\\\"Guardian Egyptian Web\\\\\\\",Georgia,serif;font-weight:normal}.u-unstyled,.inline-list,.linkslist{margin:0;list-style:none}a,.u-fauxlink{color:#005689;cursor:pointer;text-decoration:none}a:hover,a:focus,.u-fauxlink:hover,.u-fauxlink:focus{text-decoration:underline}a:active,.u-fauxlink:active{color:#00b2ff;text-decoration:none}.u-h{border:0 !important;clip:rect(0 0 0 0) !important;height:0.0625rem !important;margin:-0.0625rem !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:0.0625rem !important}@media (max-width: 19.99em){.hide-until-mobile{display:none !important}}@media (max-width: 29.99em){.hide-until-mobile-landscape{display:none !important}}@media (max-width: 46.24em){.hide-until-tablet{display:none !important}}@media (max-width: 41.24em){.hide-until-phablet{display:none !important}}@media (max-width: 71.24em){.hide-until-leftcol{display:none !important}}@media (max-width: 81.24em){.hide-until-wide{display:none !important}}@media (max-width: 61.24em){.hide-until-desktop{display:none !important}}@media (min-width: 30em){.hide-from-mobile-landscape{display:none !important}}@media (min-width: 46.25em){.hide-from-tablet{display:none !important}}@media (min-width: 61.25em){.hide-from-desktop{display:none !important}}@media (min-width: 71.25em){.hide-from-leftcol{display:none !important}}@media (min-width: 81.25em){.hide-from-wide{display:none !important}}.is-hidden,[hidden]{display:none !important}@media (min-width: 46.25em){.mobile-only{display:none !important}}.hide-on-mobile{display:none !important}@media (min-width: 46.25em){.hide-on-mobile{display:block !important}}.hide-on-mobile-inline{display:none !important}@media (min-width: 46.25em){.hide-on-mobile-inline{display:inline !important}}@media (min-width: 20em) and (max-width: 61.24em){.hide-on-tablet{display:none !important}}.u-cf:after,.u-cf:before{content:'';display:table}.u-cf:after{clear:both}.u-baseline-top{margin-top:0.75rem}.skip:focus,.skip:active{font-size:80%;display:block;color:#041f4a;text-decoration:none;position:static !important;width:100% !important;height:1.125rem !important;text-align:center}.u-responsive-ratio{width:100%;padding-bottom:60%;position:relative;overflow:hidden}.u-responsive-ratio img,.u-responsive-ratio object,.u-responsive-ratio embed,.u-responsive-ratio iframe,.u-responsive-ratio svg,.u-responsive-ratio video{width:100%;height:100%;position:absolute;top:0;left:0}.u-responsive-aligner{margin:0 auto;width:100%}.u-responsive-ratio--hd{padding-bottom:56.25%}.u-responsive-ratio--letterbox{padding-bottom:40%}.u-text-hyphenate{word-wrap:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto}.u-test-ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.u-button-reset{display:block;margin:0;padding:0;border:0;width:100%;background:transparent}.u-button-reset:focus{outline:0}.u-underline{text-decoration:none !important;border-bottom:0.0625rem solid #dcdcdc;transition:border-color .15s ease-out}.u-underline:hover,.u-underline:focus{border-color:#6e99b3}.u-underline:active{border-color:#00b2ff}.u-nobr{white-space:nowrap}.flushp{padding:0 !important}.flushp--top{padding-top:0 !important}.meta-button{background:transparent;border:0;margin:0;padding:0}.u-font-weight-normal{font-weight:normal}.u-vertical-align-middle-icon svg{vertical-align:middle}.u-faux-block-link{position:relative}.u-faux-block-link a,.u-faux-block-link abbr[title],.u-faux-block-link__promote{position:relative;z-index:1}.u-faux-block-link__overlay{top:0;right:0;bottom:0;left:0;overflow:hidden;text-indent:200%;white-space:nowrap;background:rgba(0,0,0,0)}a.u-faux-block-link__overlay{position:absolute;z-index:0;opacity:0}a.u-faux-block-link__overlay:focus{outline:none}.u-faux-block-link--hover .u-faux-block-link__cta{text-decoration:underline}dt{font-weight:bold}menu,ol,ul{padding:0;margin-left:1.5625rem}nav ul,nav ol{list-style:none;list-style-image:none}.inline-list__item{display:inline-block}.inline-icon{fill:#ffffff}.inline-icon svg{overflow:visible}.inline-icon--light-grey{fill:#dcdcdc}.inline-icon--black{fill:#121212}.inline-close--small svg{height:100%;width:45%}.inline-tone-fill{fill:#005689}.inline-icon__fallback{display:none}.inline-icon__fallback{display:none !important}.no-svg .inline-icon{display:none !important}.no-svg .inline-icon__fallback{display:block !important}.gs-container{position:relative;margin:0 auto}@media (min-width: 46.25em){.gs-container{max-width:46.25rem}}@media (min-width: 61.25em){.gs-container{max-width:61.25rem}}@media (min-width: 71.25em){.gs-container{max-width:71.25rem}}@media (min-width: 81.25em){.gs-container{max-width:81.25rem}}@media (max-width: 29.99em){.content__head:not(.tonal__head--tone-dead):not(.tonal__head--tone-live):not(.tonal__head--tone-media):not(.content__head--crossword):not(.content__head--interactive){margin-right:-0.625rem;margin-left:-0.625rem}}@media (min-width: 30em) and (max-width: 41.24em){.content__head:not(.tonal__head--tone-dead):not(.tonal__head--tone-live):not(.tonal__head--tone-media):not(.content__head--crossword):not(.content__head--interactive){margin-right:-1.25rem;margin-left:-1.25rem}}@media (min-width: 41.25em) and (max-width: 46.24em){.media-primary,.content__head{margin-left:-1.25rem;margin-right:-1.25rem}}@media (max-width: 61.24em){.nav-is-open{overflow:hidden;width:100%}}@media (min-width: 61.25em){.nav-is-open{overflow-x:hidden}}.new-header{background-color:#052962;position:relative}.new-header:not(.new-header--slim){margin-bottom:0}@media (min-width: 46.25em){.new-header{display:block}}@media (min-width: 81.25em){.has-page-skin .new-header .gs-container{width:61.25rem}}.new-header__inner:after,.new-header__inner:before{content:'';display:table}.new-header__inner:after{clear:both}.new-header__edition-container{position:absolute;top:0;z-index:1072;-webkit-transform:translateX(100%);transform:translateX(100%)}@media (min-width: 61.25em){.new-header__edition-container{right:7.5rem;width:6.875rem}}@media (min-width: 81.25em){body:not(.has-page-skin) .new-header__edition-container{right:12.3125rem;width:12.3125rem}}.new-header__edition-container .top-bar__item__seperator{margin-left:0}.new-header__menu-toggle{display:block;outline:0;position:relative}@media (max-width: 61.24em){.new-header__menu-toggle{position:absolute;right:0.3125rem;bottom:3.625rem}}@media (max-width: 61.24em) and (min-width: 22.5em){.new-header__menu-toggle{right:0.3125rem;bottom:-0.1875rem}}@media (max-width: 61.24em) and (min-width: 30em){.new-header__menu-toggle{right:1.125rem}}@media (max-width: 61.24em) and (min-width: 46.25em){.new-header__menu-toggle{bottom:0.1875rem}}@media (max-width: 61.24em){.new-header--slim .new-header__menu-toggle{top:0.1875rem;bottom:auto}}.new-header__menu-toggle:active{outline:0}.new-header__logo{float:right;margin-top:0.625rem;margin-right:3.375rem;margin-bottom:1.5rem}@media (min-width: 22.5em){.new-header__logo{margin-right:0.625rem}}@media (min-width: 30em){.new-header__logo{margin-right:1.25rem}}@media (min-width: 61.25em){.new-header__logo{margin-top:0.3125rem;margin-bottom:1.125rem;position:relative;z-index:1071}}@media (min-width: 81.25em){body:not(.has-page-skin) .new-header__logo{margin-right:6rem}}.new-header--slim .new-header__logo{position:absolute;margin:0;right:2.625rem;top:0.1875rem;z-index:1070}@media (min-width: 30em){body:not(.has-page-skin) .new-header--slim .new-header__logo{margin-right:0;right:3.25rem}}@media (min-width: 61.25em){body:not(.has-page-skin) .new-header--slim .new-header__logo{right:1.25rem}}@media (min-width: 61.25em){.new-header--slim.new-header--open .new-header__logo{z-index:1072}}.inline-the-guardian-roundel__svg{height:2.625rem;width:2.625rem}.inline-the-guardian-roundel__svg path:nth-child(1){fill:#fff}.inline-the-guardian-roundel__svg path:nth-child(2){fill:#052962}.inline-the-guardian-logo__svg{display:block;height:2.75rem;width:8.4375rem}@media (min-width: 22.5em){.inline-the-guardian-logo__svg{height:3.5rem;width:10.9375rem}}@media (min-width: 46.25em){.inline-the-guardian-logo__svg{height:4.5rem;width:14rem}}@media (min-width: 61.25em){.inline-the-guardian-logo__svg{height:5.9375rem;width:18.4375rem}}.inline-the-guardian-logo__svg path{fill:#fff}.inline-guardian-best-website-logo{display:block;height:auto;width:9.125rem}@media (min-width: 22.5em){.inline-guardian-best-website-logo{width:12.1875rem}}@media (min-width: 46.25em){.inline-guardian-best-website-logo{width:14rem}}@media (min-width: 61.25em){.inline-guardian-best-website-logo{width:18.4375rem}}.new-header--slim{height:3rem}.menu{background-color:#052962;box-sizing:border-box;font-size:1.25rem;left:0;line-height:1;margin-right:1.6875rem;padding-bottom:1.5rem;top:0;z-index:1070}@media (max-width: 61.24em){.menu{-webkit-transform:translateX(-110%);transform:translateX(-110%);transition:-webkit-transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);transition:transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);transition:transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);-webkit-overflow-scrolling:touch;box-shadow:0.1875rem 0 1rem rgba(0,0,0,0.4);bottom:0;height:100%;overflow:auto;padding-top:0.375rem;position:fixed;right:0;transition:-webkit-transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);transition:transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);transition:transform 0.2s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);will-change:transform}}@media (min-width: 22.5em){.menu{margin-right:1.8125rem}}@media (min-width: 30em){.menu{margin-right:2.5625rem}}@media (min-width: 61.25em){.menu{display:none;position:absolute;padding-bottom:0;padding-top:0;top:100%;left:0;right:0;width:100%}@supports (width: 100vw){.menu{left:50%;right:50%;width:100vw;margin-left:-50vw;margin-right:-50vw}}.new-header--slim .menu{top:2.625rem}}@media (max-width: 61.24em){.new-header--open .menu{-webkit-transform:translateX(0%);transform:translateX(0%);transition:-webkit-transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);transition:transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);transition:transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.4s cubic-bezier(0.23, 1, 0.32, 1)}}@media (min-width: 61.25em){.new-header--open .menu{display:block}}x:-o-prefocus .menu{display:none}.menu__inner{box-sizing:border-box}@media (max-width: 61.24em){.menu__inner.gs-container{max-width:none}}@media (min-width: 61.25em){.menu__inner{background-color:#052962;border:0.0625rem solid #506991;border-bottom:0;border-top:0;box-sizing:border-box;padding:0 1.25rem}.new-header--slim .menu__inner{border-color:transparent}}.menu__overlay{background-color:rgba(0,0,0,0.5);height:100%;left:0;opacity:0;position:fixed;top:0;transition:opacity 0.2s cubic-bezier(0.23, 1, 0.32, 1);width:0;z-index:1069}.new-header--open .menu__overlay{opacity:1;width:100%}@media (min-width: 61.25em){.menu__overlay{display:none}}.menu-group{box-sizing:border-box;display:-webkit-flex;display:-ms-flexbox;display:flex;font-size:1.125rem;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;list-style:none;margin:0;padding:0 0 0.75rem;position:relative}@media (min-width: 61.25em){.menu-group{display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;padding-bottom:0}}@media (max-width: 61.24em){[aria-expanded='false'] ~ .menu-group{display:none}}.menu-group--primary{padding-top:0}@media (min-width: 61.25em){.menu-group--primary{-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-order:1;-ms-flex-order:1;order:1}}.menu-group--secondary{background-color:#041f4a;margin-top:0;padding-top:0}@media (min-width: 61.25em){.menu-group--secondary{background-color:transparent;padding-bottom:0;width:100%}}.menu-group--membership{padding-bottom:0;position:relative}.menu-group--editions,.menu-group--membership{padding-bottom:0}.menu-group--editions .menu-group,.menu-group--membership .menu-group{background-color:#041f4a}@media (min-width: 61.25em){.menu-group--footer{bottom:0;left:42.4375rem;padding-left:0.625rem;position:absolute;top:0;width:8.375rem}}@media (min-width: 71.25em){body:not(.has-page-skin) .menu-group--footer{left:50.5625rem;width:10rem}}@media (min-width: 61.25em){.menu-group--footer:before,.menu-group--primary>.menu-item:not(:first-child):before,.menu-group--brand-extensions:before{content:'';position:absolute;left:0;top:0;bottom:0;border-left:0.0625rem solid #506991}}.menu-group--brand-extensions{position:absolute;right:1.875rem;top:-2.625rem;bottom:0;padding:2.625rem 1.25rem 0.75rem 0.625rem;width:8.1875rem}@media (min-width: 71.25em){body:not(.has-page-skin) .menu-group--brand-extensions{width:8.75rem}}@media (min-width: 81.25em){body:not(.has-page-skin) .menu-group--brand-extensions{width:18.75rem;padding-top:0.625rem}}.menu-item{box-sizing:border-box;overflow:hidden;position:relative;width:100%}@media (min-width: 61.25em){.menu-group--primary>.menu-item{float:left;overflow:visible;width:8.375rem;padding:0 0.625rem 0.75rem}.menu-group--primary>.menu-item:first-child{padding-left:0;width:7.6875rem}}@media (min-width: 71.25em){body:not(.has-page-skin) .menu-group--primary>.menu-item{width:10rem}body:not(.has-page-skin) .menu-group--primary>.menu-item:first-child{width:9.3125rem}}.menu-item-divider{height:0.0625rem;width:100%;background:#506991;border:0;margin:0.375rem 0 0 3.125rem}@media (min-width: 46.25em){.menu-item-divider{margin-left:3.75rem}}@media (min-width: 61.25em){.menu-item-divider{margin-left:0.375rem 0}}.menu-item__title{font-size:1rem;line-height:1.375rem;font-family:\\\\\\\"Guardian Text Sans Web\\\\\\\",\\\\\\\"Helvetica Neue\\\\\\\",Helvetica,Arial,\\\\\\\"Lucida Grande\\\\\\\",sans-serif;background-color:transparent;border:0;box-sizing:border-box;color:#fff;cursor:pointer;display:inline-block;font-size:1.25rem;outline:none;padding:0.5rem 1.9375rem 0.5rem 3.125rem;position:relative;text-align:left;width:100%}.menu-group--membership .menu-item__title{color:#ffe500;font-weight:700}@media (min-width: 46.25em){.menu-item__title{padding-left:3.75rem}}@media (min-width: 61.25em){.menu-item__title{font-size:1rem;line-height:1.2;padding:0.375rem 0}}.menu-item__title:hover,.menu-item__title:focus{color:#ffe500;text-decoration:none}.menu-item__title:focus{text-decoration:underline}.menu-item__title>*{pointer-events:none}@media (max-width: 61.24em){.menu-group--primary>*:not(:last-child)>.menu-item__title:not([aria-expanded='true']):after,.menu-item__title[data-link-name='nav2 : The Guardian app']:not([aria-expanded='true']):after,.menu-item__title[data-link-name='nav2 : facebook']:not([aria-expanded='true']):after,.menu-group--footer>*:first-child .menu-item__title:not([aria-expanded='true']):after,.menu-group--membership>*:first-child .menu-item__title:not([aria-expanded='true']):after{background-color:#506991;bottom:0;content:'';display:block;height:0.0625rem;left:3.125rem;right:0;position:absolute}}@media (max-width: 61.24em) and (min-width: 46.25em){.menu-group--primary>*:not(:last-child)>.menu-item__title:not([aria-expanded='true']):after,.menu-item__title[data-link-name='nav2 : The Guardian app']:not([aria-expanded='true']):after,.menu-item__title[data-link-name='nav2 : facebook']:not([aria-expanded='true']):after,.menu-group--footer>*:first-child .menu-item__title:not([aria-expanded='true']):after,.menu-group--membership>*:first-child .menu-item__title:not([aria-expanded='true']):after{left:3.75rem}}@media (max-width: 61.24em){.menu-item__title[data-link-name='nav2 : The Guardian app'],.menu-item__title[data-link-name='nav2 : facebook'],.menu-group--footer>*:first-child .menu-item__title{margin-top:1.5rem}.menu-item__title[data-link-name='nav2 : The Guardian app']:after,.menu-item__title[data-link-name='nav2 : facebook']:after,.menu-group--footer>*:first-child .menu-item__title:after{bottom:auto;top:0}}@media (max-width: 61.24em){.menu-group--membership>*:first-child .menu-item__title:not([aria-expanded='true']):after{bottom:auto;top:0}}.menu-group--primary>.menu-item>.menu-item__title{font-size:1.5rem;line-height:1.6875rem;font-family:\\\\\\\"Guardian Egyptian Web\\\\\\\",Georgia,serif;font-weight:normal;font-weight:700;color:#fff;padding-bottom:1.125rem;padding-top:0.375rem}.menu-item--brand-extension{margin-right:0;margin-top:-0.375rem;padding-bottom:0}.menu-item__title--brand-extension{font-size:1.25rem;line-height:1.4375rem;font-family:\\\\\\\"Guardian Egyptian Web\\\\\\\",Georgia,serif;font-weight:normal;font-weight:700}@media (min-width: 81.25em){body:not(.has-page-skin) .menu-item__title--brand-extension{font-size:1.5rem;line-height:1.6875rem;padding-top:0.3125rem}}.menu-item__icon,.menu-item__toggle{left:1.5625rem;position:absolute}@media (min-width: 46.25em){.menu-item__icon,.menu-item__toggle{left:2.1875rem}}@media (min-width: 61.25em){.menu-item__icon,.menu-item__toggle{display:none}}.menu-item__toggle{margin-top:-0.25rem}[aria-expanded='true']>.menu-item__toggle{margin-top:0.125rem}.menu-item__toggle:before{border:0.125rem solid currentColor;border-top:0;border-left:0;content:'';display:inline-block;height:0.5rem;-webkit-transform:rotate(45deg);transform:rotate(45deg);width:0.5rem}[aria-expanded='true']>.menu-item__toggle:before{-webkit-transform:rotate(-135deg);transform:rotate(-135deg)}.menu-item__icon{margin-left:-0.1875rem}.menu-item__icon .inline-icon__svg{fill:currentColor}.menu-item__icon .inline-home__svg{height:1rem;width:1rem}.menu-item__icon .inline-log-off__svg{height:.8em}.menu-item__icon .inline-share-facebook__svg,.menu-item__icon .inline-share-twitter__svg{margin-left:-0.375rem;margin-top:-0.3125rem}.menu-search{box-sizing:border-box;display:block;margin-left:0.8125rem;max-width:23.75rem;position:relative;width:100%;margin-bottom:1.5rem;margin-right:2.5625rem}@media (min-width: 46.25em){.menu-search{margin-left:1.375rem}}.menu-search__search-box{font-size:1rem;line-height:1.375rem;font-family:\\\\\\\"Guardian Text Sans Web\\\\\\\",\\\\\\\"Helvetica Neue\\\\\\\",Helvetica,Arial,\\\\\\\"Lucida Grande\\\\\\\",sans-serif;background-color:rgba(255,255,255,0.1);border:0;border-radius:62.5rem;box-sizing:border-box;color:#fff;font-size:1.25rem;height:2.25rem;padding-left:2.375rem;vertical-align:middle;width:100%}.menu-search__search-box::-webkit-input-placeholder{color:#fff}.menu-search__search-box::-moz-placeholder{color:#fff}.menu-search__search-box:-ms-input-placeholder{color:#fff}.menu-search__search-box::-ms-input-placeholder{color:#fff}.menu-search__search-box::placeholder{color:#fff}.menu-search__search-box:focus{outline:none;padding-right:2.5rem}.menu-search__search-box:focus::-webkit-input-placeholder{opacity:0}.menu-search__search-box:focus::-moz-placeholder{opacity:0}.menu-search__search-box:focus:-ms-input-placeholder{opacity:0}.menu-search__search-box:focus::-ms-input-placeholder{opacity:0}.menu-search__search-box:focus::placeholder{opacity:0}.menu-search__glass{position:absolute;left:0.625rem;top:0.4375rem}.menu-search__glass .inline-search-36__svg{fill:#fff;height:1.375rem;width:1.375rem}.menu-search__submit{background:transparent;border:0;bottom:0;cursor:pointer;display:block;opacity:0;pointer-events:none;position:absolute;right:0;top:0;width:3.125rem}.menu-search__submit:before,.menu-search__submit:after{border:0.125rem solid #fff;border-left:0;border-top:0;content:'';display:block;position:absolute;right:0.875rem}.menu-search__submit:before{height:0.75rem;top:0.6875rem;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);width:0.75rem}@media (min-width: 61.25em){.menu-search__submit:before{top:0.875rem}}.menu-search__submit:after{border-right:0;top:1.0625rem;width:1.25rem}.menu-search__search-box:focus ~ .menu-search__submit,.menu-search__submit:focus,.menu-search__submit:active{opacity:1;outline:none;pointer-events:all}.pillars{clear:right;margin:0;padding:0 0 0 0.625rem}.new-header:not(.new-header--slim) .pillars:after{content:'';border:0.0625rem solid #506991;border-bottom:0;position:absolute;bottom:0;left:0;right:0;height:2.25rem}@media (max-width: 46.24em){.new-header:not(.new-header--slim) .pillars:after{border-left:0;border-right:0}}@media (min-width: 46.25em){.new-header:not(.new-header--slim) .pillars:after{height:3rem}}@media (min-width: 61.25em){.new-header:not(.new-header--slim) .pillars:after{height:2.625rem}}@media (min-width: 30em){.pillars{padding-left:1.25rem}}@media (min-width: 61.25em){.new-header--open .pillars{z-index:1070}}@media (max-width: 46.24em){.new-header--slim .pillars{display:none}}.pillars__item{display:block;float:left}@media (max-width: 29.99em){.pillars__item{-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;text-align:center}}@media (min-width: 61.25em){.pillars__item{width:8.375rem}}@media (min-width: 71.25em){body:not(.has-page-skin) .pillars__item{width:10rem}}.pillars__item:first-child{margin-left:-1.25rem}@media (min-width: 61.25em){.pillars__item:first-child{width:9rem}}@media (min-width: 71.25em){body:not(.has-page-skin) .pillars__item:first-child{width:10.625rem}}.pillars__item:first-child .pillar-link{padding-left:1.25rem}.pillars__item:first-child .pillar-link:before{content:none}.pillar-link{box-sizing:border-box;font-family:\\\\\\\"Guardian Egyptian Web\\\\\\\",Georgia,serif;font-weight:900;color:#fff;cursor:pointer;display:block;font-size:0.9625rem;height:2.25rem;line-height:1;padding:0.5625rem 0.3125rem 0;position:relative;overflow:hidden;z-index:1}@media (min-width: 22.5em){.pillar-link{font-size:0.98125rem;padding:0.5625rem 0.25rem 0}}@media (min-width: 23.125em){.pillar-link{font-size:1rem;padding:0.5625rem 0.3125rem 0}}@media (min-width: 30em){.pillar-link{font-size:1.125rem;padding:0.4375rem 0.25rem 0}}@media (min-width: 46.25em){.pillar-link{font-size:1.375rem;padding-top:0.6875rem;height:3rem;padding-right:1.25rem;padding-left:0.625rem}.new-header--slim .pillar-link{height:3rem;padding-top:0.6875rem}}@media (min-width: 61.25em){.pillar-link{padding-top:0.4375rem;height:2.625rem}}@media (min-width: 81.25em){body:not(.has-page-skin) .pillar-link{font-size:1.5rem}}.pillar-link:before,.pillar-link:not(.pillar-link--dropdown):after{bottom:0;content:'';display:block;left:0;position:absolute}.pillar-link:before{border-left:0.0625rem solid #506991;top:0;z-index:1}@media (min-width: 46.25em){.pillar-link:before{bottom:1.0625rem}}@media (min-width: 61.25em){.pillar-link:before{bottom:.6em}.new-header--open .pillar-link:before{bottom:0}}.pillar-link:after{border-top:0.25rem solid currentColor;left:0.0625rem;right:0;top:-0.25rem;transition:-webkit-transform .3s ease-in-out;transition:transform .3s ease-in-out;transition:transform .3s ease-in-out, -webkit-transform .3s ease-in-out}.pillar-link:hover,.pillar-link:focus{color:#fff;text-decoration:none}.pillar-link:hover:after,.pillar-link:focus:after{-webkit-transform:translateY(0.25rem);transform:translateY(0.25rem)}@media (min-width: 61.25em){.new-header--open .pillar-link:hover,.new-header--open .pillar-link:focus{color:#ffe500}.new-header--open .pillar-link:after{-webkit-transform:translateY(0.25rem);transform:translateY(0.25rem)}}.pillar-link--current-section:after{-webkit-transform:translateY(0.25rem);transform:translateY(0.25rem)}.pillar-link--dropdown__icon{border:0.0625rem solid currentColor;border-left:transparent;border-top:transparent;display:inline-block;height:0.375rem;margin-left:0.125rem;-webkit-transform:translateY(-0.1875rem) rotate(45deg);transform:translateY(-0.1875rem) rotate(45deg);transition:-webkit-transform 250ms ease-out;transition:transform 250ms ease-out;transition:transform 250ms ease-out, -webkit-transform 250ms ease-out;vertical-align:middle;width:0.375rem}.pillar-link--dropdown:hover .pillar-link--dropdown__icon{-webkit-transform:translateY(0) rotate(45deg);transform:translateY(0) rotate(45deg)}.new-header--open .pillar-link--dropdown .pillar-link--dropdown__icon{-webkit-transform:translateY(0.0625rem) rotate(-135deg);transform:translateY(0.0625rem) rotate(-135deg)}.new-header--open .pillar-link--dropdown:hover .pillar-link--dropdown__icon{-webkit-transform:translateY(-0.125rem) rotate(-135deg);transform:translateY(-0.125rem) rotate(-135deg)}.pillar-link--sections{color:#fff;font-weight:300;float:left;padding-right:0.3125rem;transition:color 250ms ease-out}.pillar-link--sections:hover,.pillar-link--sections:focus{color:#ffe500}.new-header__cta-bar{padding-top:2.4375rem;padding-left:0.625rem;max-width:21.25rem}@media (min-width: 22.5em){.new-header__cta-bar{padding-top:2.75rem}}@media (min-width: 30em){.new-header__cta-bar{padding-left:1.25rem}}@media (min-width: 46.25em){.new-header__cta-bar{padding-top:0.25rem;padding-bottom:1.25rem}}@media (min-width: 61.25em){.new-header__cta-bar{max-width:20rem}}@media (min-width: 71.25em){body:not(.has-page-skin) .new-header__cta-bar{max-width:31.25rem}}.new-header--slim .new-header__cta-bar{padding-top:0.5rem}@media (min-width: 46.25em){.new-header--slim .new-header__cta-bar{display:none}}@media (min-width: 71.25em){body:not(.has-page-skin) .new-header__cta-bar .cta-bar__heading{font-size:1.75rem;line-height:2rem}}.cta-bar__text{display:block;margin:0.1875rem 0 0.5625rem}@media (max-width: 46.24em){.cta-bar__text{border-top:0.0625rem solid #506991;padding-top:0.1875rem}}.cta-bar__text--no-border{border-top:0}.cta-bar__heading{font-size:1.25rem;line-height:1.4375rem;font-family:\\\\\\\"Guardian Egyptian Web\\\\\\\",Georgia,serif;font-weight:normal;color:#ffe500;font-weight:700}@media (min-width: 61.25em){.cta-bar__heading{font-size:1.5rem;line-height:1.6875rem}}@media (min-width: 71.25em){body:not(.has-page-skin) .cta-bar__heading{font-size:2.125rem;line-height:2.375rem}}.cta-bar__subheading{font-size:1rem;line-height:1.375rem;font-family:\\\\\\\"Guardian Text Sans Web\\\\\\\",\\\\\\\"Helvetica Neue\\\\\\\",Helvetica,Arial,\\\\\\\"Lucida Grande\\\\\\\",sans-serif;color:#fff;font-weight:400;line-height:1.2;margin-top:0.1875rem}.cta-bar__cta{font-size:1rem;line-height:1.375rem;font-family:\\\\\\\"Guardian Text Sans Web\\\\\\\",\\\\\\\"Helvetica Neue\\\\\\\",Helvetica,Arial,\\\\\\\"Lucida Grande\\\\\\\",sans-serif;font-weight:700;background-color:#ffe500;border-radius:1.125rem;box-sizing:border-box;color:#052962;display:block;line-height:1;height:1.8125rem;padding:0.375rem 0.6875rem 0;margin-bottom:0.375rem;margin-right:0.625rem;position:relative;float:left}@media (min-width: 22.5em){.cta-bar__cta{padding:0.375rem 2rem 0 0.625rem}}.cta-bar__cta .inline-arrow-right{margin:0 -0.125rem 0 0}@media (min-width: 46.25em){.cta-bar__cta{height:2rem;padding:0.4375rem 2.125rem 0 0.75rem}}.cta-bar__cta .inline-arrow-right{position:absolute;height:2rem;width:2rem;right:0.1875rem;top:50%;-webkit-transform:translate(0, -50%);transform:translate(0, -50%);transition:-webkit-transform .3s ease-in-out;transition:transform .3s ease-in-out;transition:transform .3s ease-in-out, -webkit-transform .3s ease-in-out}@media (max-width: 22.49em){.cta-bar__cta .inline-arrow-right{display:none}}.cta-bar__cta .inline-arrow-right__svg{fill:currentColor;height:2rem;width:2rem}.cta-bar__cta:hover,.cta-bar__cta:focus{color:#052962;text-decoration:none}.cta-bar__cta:hover .inline-arrow-right,.cta-bar__cta:focus .inline-arrow-right{-webkit-transform:translate(0.1875rem, -50%);transform:translate(0.1875rem, -50%)}.cta-bar__cta--white-inline{color:#121212;background-color:#fff;float:none;display:inline-block}.new-header__top-bar{position:absolute;left:0.625rem;top:0}@media (min-width: 30em){.new-header__top-bar{left:1.25rem}}@media (min-width: 46.25em){.new-header__top-bar{left:auto;right:12.8125rem}}@media (min-width: 61.25em){.new-header__top-bar{right:16.625rem}}@media (min-width: 81.25em){body:not(.has-page-skin) .new-header__top-bar{right:21.375rem}}.top-bar__item{font-size:0.8125rem;line-height:1.125rem;font-family:\\\\\\\"Guardian Text Sans Web\\\\\\\",\\\\\\\"Helvetica Neue\\\\\\\",Helvetica,Arial,\\\\\\\"Lucida Grande\\\\\\\",sans-serif;font-size:1rem;color:#fff;float:left;line-height:1;padding-top:0.375rem;position:relative;z-index:1072}.top-bar__item:hover,.top-bar__item:focus{color:#ffe500;text-decoration:none}@media (min-width: 22.5em){.top-bar__item{padding-top:0.75rem}}@media (min-width: 46.25em){.top-bar__item{padding:0.5625rem 0.41667rem}}.top-bar__commercial-items{position:relative;float:left;margin-right:0.625rem}.top-bar__item__icon__svg{fill:currentColor;float:left;height:1.125rem;width:1.125rem;margin:-0.0625rem 0.25rem 0 0}.top-bar__item__seperator{border-left:0.0625rem solid #506991;position:absolute;left:0;top:0;height:1.5rem}.new-header__user-account-container{float:left;position:relative;z-index:1010}.new-header--open .new-header__user-account-container{z-index:1010}@media (max-width: 46.24em){.dropdown--open{overflow:hidden;width:100%}}.dropdown-menu-fallback{display:none}.dropdown-menu-fallback:checked ~ .dropdown-menu{display:block}@media (max-width: 46.24em){.dropdown-menu-fallback[aria-expanded=true] ~ .my-account__overlay{background:linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.2) 30%);border:0;position:fixed;display:block;left:0;right:0;top:0;bottom:0;width:100%}}.dropdown-menu{display:none;position:absolute;top:1.875rem;right:0;width:13.75rem;background-color:#fff;border-radius:0.1875rem;padding:0.375rem 0;margin:0;box-shadow:0 0 0 0.0625rem rgba(0,0,0,0.1);z-index:1073}.dropdown-menu>hr{height:0;border:0;border-top:0.0625rem solid #ededed;display:block;top:0;margin:-0.0625rem 0 0 1.25rem}@media (max-width: 46.24em){.dropdown-menu{position:fixed;border-radius:0;top:2.25rem;left:0;right:0;width:auto;max-height:calc(100% - 3.125rem);overflow:auto}.dropdown-menu>hr{margin-left:0.625rem}}@media (max-width: 46.24em) and (min-width: 22.5em){.dropdown-menu{top:2.125rem}}@media (max-width: 46.24em) and (min-width: 30em){.dropdown-menu>hr{margin-left:1.25rem}}.dropdown-menu--open{display:block}.dropdown-menu__title{font-size:1rem;line-height:1.375rem;font-family:\\\\\\\"Guardian Text Sans Web\\\\\\\",\\\\\\\"Helvetica Neue\\\\\\\",Helvetica,Arial,\\\\\\\"Lucida Grande\\\\\\\",sans-serif;color:#121212;cursor:pointer;display:block;letter-spacing:.01rem;outline:none;padding:0.4375rem 1.25rem 0.9375rem 0.625rem;position:relative;box-sizing:border-box;margin-top:-0.0625rem}@media (min-width: 30em){.dropdown-menu__title{padding-left:1.25rem}}.dropdown-menu__title:hover,.dropdown-menu__title:focus{color:#121212;background-color:#ededed;text-decoration:none}.dropdown-menu__title:before{content:'';border-top:0.0625rem solid #ededed;display:block;position:absolute;top:0;left:1.25rem;right:0}.dropdown-menu.dropdown-menu--light .dropdown-menu__title:before{display:none}.dropdown-menu__item:first-child .dropdown-menu__title:before{content:none}.dropdown-menu__title .inline-icon{position:relative;display:inline-block;height:.8em;width:1em}.dropdown-menu__title .inline-icon>svg{position:absolute;height:.8em;width:.8em}.dropdown-menu__title .inline-icon>svg g{fill:#121212}@supports (fill: currentColor){.dropdown-menu__title .inline-icon>svg g{fill:currentColor}}.dropdown-menu__title--active{font-weight:bold}.dropdown-menu__title--active:after{content:'';border:0.125rem solid #333;border-top:0;border-right:0;position:absolute;top:0.8125rem;right:1.25rem;width:0.625rem;height:0.25rem;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.gsc-search-box{position:relative !important}.gsc-search-button,.gsib_a{margin:0 !important;padding:0 !important;width:0 !important}.gsc-search-button-v2{padding:0.4375rem 0.5625rem 0.5rem !important;left:0 !important}.gsc-search-button-v2 svg{fill:#052962 !important;height:1.25rem !important;width:1.25rem !important}.gsst_a{padding:0.5625rem 0 0 0.6875rem !important}.sc-control-cse{padding:0.1875rem 0 !important}.gsib_b,.gsc-search-button-v2{border:0 !important;box-sizing:border-box !important;height:2.625rem !important;width:2.625rem !important;margin:0 !important;background-color:transparent !important;position:absolute !important;right:0 !important;top:0 !important}.gsc-input-box{border:0 !important}.gsib_a{border:0 !important;box-shadow:none !important}.gsib_a .gsc-input{padding:0 !important;margin:0 !important;box-sizing:border-box !important;background-position-x:2.5rem !important;text-indent:5.625rem !important;border:0.0625rem solid #dcdcdc !important;border-radius:62.4375rem !important;height:2.625rem !important;box-shadow:none !important;width:31.25rem !important}.gsib_a .gsc-input:hover,.gsib_a .gsc-input:focus{outline:0}.gsib_a .gsc-input:focus{text-indent:2.625rem !important}.gsib_a .gsc-input:not(:-moz-placeholder-shown){text-indent:2.625rem !important}.gsib_a .gsc-input:not(:-ms-input-placeholder){text-indent:2.625rem !important}.gsib_a .gsc-input:not(:placeholder-shown){text-indent:2.625rem !important}.gstl_50,.gssb_c{z-index:1071 !important}.gsc-completion-container,.gsc-input{font-family:\\\\\\\"Guardian Text Sans Web\\\\\\\",\\\\\\\"Helvetica Neue\\\\\\\",Helvetica,Arial,\\\\\\\"Lucida Grande\\\\\\\",sans-serif;padding:0 !important;margin:0 !important}.subnav{background-color:#ffffff;height:2.25rem;overflow:hidden;position:relative}@media (min-width: 46.25em){.subnav{height:2.625rem}}.subnav .gs-container{box-sizing:border-box}.subnav .gs-container:after,.subnav .gs-container:before{content:'';display:table}.subnav .gs-container:after{clear:both}@media (min-width: 46.25em){.subnav .gs-container{border:0.0625rem solid #dcdcdc;border-top:0;border-bottom:0}}.footer__primary .subnav .gs-container{border-top:0.0625rem solid #dcdcdc}.subnav--expanded{height:auto}.subnav--expanded .subnav-link--toggle-more{float:left}.subnav__list{box-sizing:border-box;line-height:1;list-style:none;margin:0;max-width:calc(100% - 3.75rem);padding:0 0.3125rem}@media (min-width: 30em){.subnav__list{max-width:calc(100% - 4.375rem);padding:0 0.9375rem}}.subnav--expanded .subnav__list{padding-bottom:0.75rem;max-width:100%;width:100%}.subnav__item:not(.subnav__item--toggle-more){display:block;float:left}.subnav__item--parent:after{content:'';display:inline-block;width:0;height:0;border-top:0.375rem solid transparent;border-bottom:0.375rem solid transparent;border-left:0.625rem solid #121212}.new-header__multiline{background:#fff}.new-header__multiline .gs-container:after{background-image:repeating-linear-gradient(to bottom, #dcdcdc, #dcdcdc 0.0625rem, transparent 0.0625rem, transparent 0.25rem);background-repeat:repeat-x;background-position:bottom;background-size:0.0625rem 0.8125rem;background-color:#ffffff;content:'';display:block;height:0.8125rem}@media (min-width: 46.25em){.new-header__multiline .gs-container:after{border:0.0625rem solid #dcdcdc;border-top:0;border-bottom:0}}.subnav--comment{background-color:#fef9f5}.subnav--comment .gs-container{border-color:#dcdcdc}.subnav--comment ~ .new-header__multiline{background-color:#fef9f5}.subnav--comment ~ .new-header__multiline .gs-container:after{background-image:repeating-linear-gradient(to bottom, #dcdcdc, #dcdcdc 0.0625rem, transparent 0.0625rem, transparent 0.25rem);background-repeat:repeat-x;background-position:bottom;background-size:0.0625rem 0.8125rem;background-color:#fef9f5;border-color:#dcdcdc}.subnav--media{background-color:#121212}.subnav--media .gs-container{border-color:#333}.subnav--media ~ .new-header__multiline{background-color:#121212}.subnav--media ~ .new-header__multiline .gs-container:after{background-image:repeating-linear-gradient(to bottom, #333, #333 0.0625rem, transparent 0.0625rem, transparent 0.25rem);background-repeat:repeat-x;background-position:bottom;background-size:0.0625rem 0.8125rem;background-color:#121212;border-color:#333}.subnav--media .subnav-link{color:#fff}.subnav-link{font-size:0.75rem;line-height:1rem;font-family:\\\\\\\"Guardian Text Sans Web\\\\\\\",\\\\\\\"Helvetica Neue\\\\\\\",Helvetica,Arial,\\\\\\\"Lucida Grande\\\\\\\",sans-serif;color:#121212;display:block;height:2.25rem;line-height:2.25rem;padding:0 0.25rem;position:relative}@media (min-width: 22.5em){.subnav-link{font-size:0.875rem}}@media (min-width: 46.25em){.subnav-link{font-size:1rem;line-height:1.375rem;height:2.625rem;line-height:2.625rem}}@media (max-width: 46.24em){.subnav-link:after{border-bottom:0.0625rem solid #dcdcdc;bottom:-0.0625rem;content:'';left:0.3125rem;position:absolute;right:-624.9375rem}}.subnav__item--parent .subnav-link{display:inline-block;font-weight:700}.subnav-link:hover,.subnav-link:focus{color:#333}.subnav-link--toggle-more{background:transparent;border:0;color:#767676}.subnav-link--toggle-more:hover,.subnav-link--toggle-more:focus{color:#767676;outline:0}.subnav-link--current-section,.subnav-link--current-section:hover,.subnav-link--current-section:focus{font-weight:700}.veggie-burger{background-color:#ffe500;cursor:pointer;display:block;height:2.625rem;width:2.625rem;position:relative;border:0;border-radius:50%;outline:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:1069}.new-header--open .veggie-burger{z-index:1071}x:-o-prefocus .veggie-burger{display:none}.veggie-burger__icon{top:50%;display:block;margin-top:-0.0625rem;left:0;right:0;margin-left:auto;margin-right:auto}.veggie-burger__icon,.veggie-burger__icon:before,.veggie-burger__icon:after{background-color:currentColor;content:'';height:0.125rem;left:0;position:absolute;width:1.25rem}.veggie-burger__icon:before{top:-0.375rem}.veggie-burger__icon:after{bottom:-0.375rem}.new-header--open .veggie-burger__icon{background-color:transparent}.new-header--open .veggie-burger__icon:before{top:0;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.new-header--open .veggie-burger__icon:after{bottom:0;-webkit-transform:rotate(45deg);transform:rotate(45deg)}@media (max-width: 61.24em){.veggie-burger-fallback:checked ~ .menu{-webkit-transform:translateX(0%);transform:translateX(0%);transition:-webkit-transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);transition:transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);transition:transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.4s cubic-bezier(0.23, 1, 0.32, 1)}}@media (min-width: 61.25em){.veggie-burger-fallback:checked ~ .menu{display:block}}@media (max-width: 61.24em){.veggie-burger-fallback:checked ~ .menu__overlay{opacity:1;width:100%}}.veggie-burger-fallback:checked ~ .veggie-burger{z-index:1071}.veggie-burger-fallback:checked ~ .veggie-burger .veggie-burger__icon{background-color:transparent}.veggie-burger-fallback:checked ~ .veggie-burger .veggie-burger__icon:before{top:0;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.veggie-burger-fallback:checked ~ .veggie-burger .veggie-burger__icon:after{bottom:0;-webkit-transform:rotate(45deg);transform:rotate(45deg)}@media (min-width: 61.25em){.veggie-burger-fallback:checked ~ .veggie-burger .veggie-burger__label{border:0 !important;clip:rect(0 0 0 0) !important;height:0.0625rem !important;margin:-0.0625rem !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:0.0625rem !important}}.veggie-burger-fallback:focus ~ .new-header__menu-toggle .pillar-link{color:#fff}.main-menu-toggle-button{border:0;padding:0;background:none}.edition-picker-toggle-button{border:0;background:none;text-align:left}@media (max-width: 46.24em){.dropdown--open .my-account{z-index:1071}}.my-account-toggle-button{border:0;background:none;text-align:left}@media (max-width: 46.24em){.my-account-toggle-button{padding-left:0}}.my-account--icon svg{height:1.125rem;width:1.125rem}@media (min-width: 22.5em){.my-account--icon svg{height:1.4375rem;width:1.4375rem}}@media (max-width: 46.24em){.dropdown--open .my-account--icon:before,.dropdown--open .my-account--icon:after{content:'';display:block;position:absolute;left:50%;bottom:0.4375rem;width:0;height:0;-webkit-transform:translateX(-50%);transform:translateX(-50%);z-index:1071}.dropdown--open .my-account--icon:before{border-left:0.4375rem solid transparent;border-right:0.4375rem solid transparent;border-bottom:0.4375rem solid rgba(0,0,0,0.1)}.dropdown--open .my-account--icon:after{border-left:0.375rem solid transparent;border-right:0.375rem solid transparent;border-bottom:0.375rem solid #fff}}.subnav__list[data-pillar-title='News'] .subnav__item--parent:after{border-left-color:#c70000}.subnav__list[data-pillar-title='News'] .subnav-link:hover,.subnav__list[data-pillar-title='News'] .subnav-link:focus{color:#c70000;text-decoration:none}.subnav__list[data-pillar-title='Opinion'] .subnav__item--parent:after{border-left-color:#e05e00}.subnav__list[data-pillar-title='Opinion'] .subnav-link:hover,.subnav__list[data-pillar-title='Opinion'] .subnav-link:focus{color:#e05e00;text-decoration:none}.subnav__list[data-pillar-title='Sport'] .subnav__item--parent:after{border-left-color:#0084c6}.subnav__list[data-pillar-title='Sport'] .subnav-link:hover,.subnav__list[data-pillar-title='Sport'] .subnav-link:focus{color:#0084c6;text-decoration:none}.subnav__list[data-pillar-title='Culture'] .subnav__item--parent:after{border-left-color:#a1845c}.subnav__list[data-pillar-title='Culture'] .subnav-link:hover,.subnav__list[data-pillar-title='Culture'] .subnav-link:focus{color:#a1845c;text-decoration:none}.subnav__list[data-pillar-title='Lifestyle'] .subnav__item--parent:after{border-left-color:#bb3b80}.subnav__list[data-pillar-title='Lifestyle'] .subnav-link:hover,.subnav__list[data-pillar-title='Lifestyle'] .subnav-link:focus{color:#bb3b80;text-decoration:none}.pillar-link.pillar-link--News:after{border-color:#ff4e36}.pillar-link.pillar-link--Opinion:after{border-color:#ff7f0f}.pillar-link.pillar-link--Sport:after{border-color:#00b2ff}.pillar-link.pillar-link--Culture:after{border-color:#eacca0}.pillar-link.pillar-link--Lifestyle:after{border-color:#ffabdb}.monocolumn-wrapper{padding-left:0.625rem;padding-right:0.625rem}@media (min-width: 30em){.monocolumn-wrapper{padding-left:1.25rem;padding-right:1.25rem}}@media (min-width: 46.25em){.monocolumn-wrapper{max-width:38.75rem;margin-left:auto;margin-right:auto}}.monocolumn-wrapper .page-header{margin-left:0;margin-right:0}@media (min-width: 61.25em){.monocolumn-wrapper--no-limit-desktop{max-width:none}}.component{margin-bottom:1.25rem}.component--rhc{display:none}@media (min-width: 61.25em){.component--rhc{display:block;margin-top:2.25rem}}.component--rhc:first-child{margin-top:0}.component--rhc:last-child{margin-bottom:2.25rem}@media (min-width: 46.25em){.gs-container{max-width:46.25rem}}@media (min-width: 61.25em){.gs-container{max-width:61.25rem}}@media (min-width: 71.25em){.gs-container{max-width:71.25rem}}@media (min-width: 81.25em){.gs-container{max-width:81.25rem}}.img--inline{float:left;clear:left;width:7.125rem}@media (min-width: 30em){.img--inline{width:8.75rem}}.img--inline figcaption{padding-top:0.25rem;word-wrap:break-word}.loading,.preload-msg{padding:3.125rem 3.125rem 15.625rem;text-align:center}.loading .loading__link,.loading .accessible-link,.preload-msg .loading__link,.preload-msg .accessible-link{font-size:0.8125rem;line-height:1.125rem;font-family:\\\\\\\"Guardian Text Sans Web\\\\\\\",\\\\\\\"Helvetica Neue\\\\\\\",Helvetica,Arial,\\\\\\\"Lucida Grande\\\\\\\",sans-serif;display:inline-block}.loading .loading__animation,.preload-msg .is-updating{display:block;margin:0.625rem auto}.l-side-margins{position:relative;height:100%}@media (min-width: 46.25em){.l-side-margins:after,.l-side-margins:before{content:'';position:absolute;z-index:1;top:0;height:100%;width:0;pointer-events:none}.l-side-margins:before{left:0;border-right:0.0625rem solid rgba(118,118,118,0.3)}.l-side-margins:after{right:0;border-left:0.0625rem solid rgba(118,118,118,0.3)}.l-side-margins:before,.l-side-margins:after{width:calc((100% - 46.25rem) \\\\/ 2)}}@media (min-width: 61.25em){.l-side-margins:before,.l-side-margins:after{width:calc((100% - 61.25rem) \\\\/ 2)}}@media (min-width: 71.25em){.l-side-margins:before,.l-side-margins:after{width:calc((100% - 71.25rem) \\\\/ 2)}}@media (min-width: 81.25em){.l-side-margins:before,.l-side-margins:after{width:calc((100% - 81.25rem) \\\\/ 2)}.has-page-skin .l-side-margins{margin-left:auto;margin-right:auto;width:61.25rem}}@media (min-width: 46.25em){.l-side-margins--media:after,.l-side-margins--media:before{background:rgba(0,0,0,0.25);border-color:#333}.container__banding+.container__banding .l-side-margins--media:after,.container__banding+.container__banding .l-side-margins--media:before{background:rgba(18,18,18,0.15)}}@media (min-width: 46.25em){.l-side-margins--paidfor:after,.l-side-margins--paidfor:before{border-color:#999}}@media (min-width: 46.25em){.l-row{display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-align-content:stretch;-ms-flex-line-pack:stretch;align-content:stretch;-webkit-align-items:stretch;-ms-flex-align:stretch;align-items:stretch;width:100%}.l-row--reverse{-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.l-row__item{-webkit-flex:1;-ms-flex:1;flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;width:0}.l-row__item--boost-1{-webkit-flex-grow:1.5;-ms-flex-positive:1.5;flex-grow:1.5}.l-row__item--boost-2{-webkit-flex-grow:2;-ms-flex-positive:2;flex-grow:2}}@media (max-width: 46.24em){.l-row--layout-m{display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.l-row--layout-m .l-row__item{-webkit-flex-basis:50%;-ms-flex-preferred-size:50%;flex-basis:50%}.l-row--layout-m .l-row__item--break-m{-webkit-flex:1 100%;-ms-flex:1 100%;flex:1 100%}}.has-no-flex .l-row{width:58.75rem}.has-no-flex .l-row:after,.has-no-flex .l-row:before{content:'';display:table}.has-no-flex .l-row:after{clear:both}.has-no-flex .l-row__item{float:left}.has-no-flex .l-row--items-2 .l-row__item{width:29.375rem}.has-no-flex .l-row--items-3 .l-row__item{width:19.58333rem}.has-no-flex .l-row--items-4 .l-row__item{width:14.6875rem}.popup--default{background:#fff;border-radius:0.1875rem;box-shadow:0 0 0 0.0625rem rgba(0,0,0,0.1);left:0;top:2.6875rem;padding:0}.popup{box-sizing:border-box;position:absolute;margin:0;list-style:none;min-width:8.75rem}@media (min-width: 30em){.popup{right:auto;bottom:auto;top:2.8125rem}}@media (min-width: 46.25em){.brand-bar__item--has-control .popup{left:2.875rem}}.l-header--is-slim .brand-bar__item--has-control .popup{left:0}@media (min-width: 46.25em){.brand-bar__item--right .popup{left:auto;right:0}}.popup__group{z-index:3;margin:0;padding:0 0.625rem}.popup__group-header{font-size:0.8125rem;line-height:1.125rem;font-family:\\\\\\\"Guardian Text Sans Web\\\\\\\",\\\\\\\"Helvetica Neue\\\\\\\",Helvetica,Arial,\\\\\\\"Lucida Grande\\\\\\\",sans-serif;color:#767676;padding:0.375rem 0.625rem;border-top:0.0625rem solid #dcdcdc;padding-bottom:0;margin:0}.popup__group-header:first-of-type{border-top:0}.has-popup{cursor:default;position:relative}.popup-container{position:relative;z-index:11}.popup__toggle{cursor:pointer}.popup__toggle:after{content:'';display:inline-block;width:0.25rem;height:0.25rem;-webkit-transform:translateY(-0.125rem) rotate(45deg);transform:translateY(-0.125rem) rotate(45deg);border:0.0625rem solid currentColor;border-left:transparent;border-top:transparent;margin-left:0.125rem;vertical-align:middle;-webkit-backface-visibility:hidden;transition:-webkit-transform 250ms ease-out;transition:transform 250ms ease-out;transition:transform 250ms ease-out, -webkit-transform 250ms ease-out}.popup__toggle:hover,.popup__toggle:focus{text-decoration:none}.popup__toggle:hover:after,.popup__toggle:focus:after{-webkit-transform:translateY(0) rotate(45deg);transform:translateY(0) rotate(45deg)}.popup__toggle.is-active:after,.is-active>.popup__toggle:after,.popup__toggle[aria-expanded=true]:after,[aria-expanded=true] ~ .popup__toggle:after,.is-not-modern .brand-bar__item--has-control:hover .popup__toggle:after,.is-not-modern .is-signed-in.brand-bar__item--profile:hover .popup__toggle:after{-webkit-transform:translateY(0.0625rem) rotate(-135deg);transform:translateY(0.0625rem) rotate(-135deg)}.popup__toggle.is-active:hover:after,.is-active>.popup__toggle:hover:after,.popup__toggle[aria-expanded=true]:hover:after,[aria-expanded=true] ~ .popup__toggle:hover:after,.is-not-modern .brand-bar__item--has-control:hover .popup__toggle:hover:after,.is-not-modern .is-signed-in.brand-bar__item--profile:hover .popup__toggle:hover:after{-webkit-transform:translateY(-0.0625rem) rotate(-135deg);transform:translateY(-0.0625rem) rotate(-135deg)}@media (max-width: 46.24em){.l-header .popup__toggle:after{display:none}}.l-header--is-slim.l-header .popup__toggle:after{display:none}.popup__item{display:block;line-height:2.25rem}.popup__item a{border-bottom:0.0625rem solid #dcdcdc}.popup__item:last-child{border-bottom:0}.popup__item,.popup__action{text-align:left}.popup .brand-bar__item--action,.popup .brand-bar__item--action:hover{display:block;white-space:nowrap;color:#121212;line-height:2.25rem}.popup .brand-bar__item--inline-action{display:inline-block !important;margin-right:0.3125rem}.brand-bar__item--profile:not(.is-signed-in) .popup__toggle:before,.brand-bar__item--profile:not(.is-signed-in) .popup__toggle:after{display:none !important}.popup--search{background-color:#fff;border-radius:0.1875rem;box-shadow:0 0 0 0.0625rem rgba(0,0,0,0.1);padding:0.75rem 1.25rem 0;top:1.875rem;z-index:1071;outline:0;left:auto;right:15.625rem}@media (min-width: 81.25em){body:not(.has-page-skin) .popup--search{right:20.3125rem}}.ad-slot{position:relative;z-index:1010;overflow:initial}.js-off .ad-slot{display:none}.aside-slot-container{min-height:17.125rem}.aside-slot-container>:last-child{padding-bottom:0;margin-bottom:1.5rem}.ad-slot--right,.ad-slot--comments{position:-webkit-sticky;position:sticky;top:0}.has-sticky .paidfor-band ~ .content__main .ad-slot--right,.has-sticky .paidfor-band ~ .content__main .ad-slot--comments{top:2.875rem}.ad-slot--right.is-sticky,.ad-slot--comments.is-sticky{width:18.75rem}.ad-slot__label{font-size:0.75rem;line-height:1.25rem;position:relative;height:1.5rem;max-height:1.5rem;background-color:#f6f6f6;padding:0 0.5rem;border-top:0.0625rem solid #dcdcdc;color:#767676;text-align:left;box-sizing:border-box;font-family:\\\\\\\"Guardian Text Sans Web\\\\\\\",\\\\\\\"Helvetica Neue\\\\\\\",Helvetica,Arial,\\\\\\\"Lucida Grande\\\\\\\",sans-serif}.ad-slot--dark .ad-slot__label{color:#dcdcdc;border-top-color:#333;background-color:transparent}.ad-slot--sky .ad-slot__label{width:10rem}.ad-slot__label--toggle{margin:0 auto}@media (max-width: 46.24em){.ad-slot__label--toggle{display:none}}.ad-slot__label.visible{visibility:initial}.ad-slot__label.hidden{visibility:hidden}.top-banner-ad-container{background-color:#f6f6f6;border-bottom:0.0625rem solid #dcdcdc;min-height:7.125rem;padding-bottom:1.125rem;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;top:0}@media (max-width: 46.24em){.top-banner-ad-container{display:none !important}}.top-banner-ad-container:not(.top-banner-ad-container--not-sticky){position:-webkit-sticky;position:sticky;z-index:1020}@media (min-width: 61.25em){.top-banner-ad-container:not(.top-banner-ad-container--not-sticky){z-index:1080}}.top-banner-ad-container--fabric{overflow:hidden}.sticky-top-banner-ad{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);contain:layout;z-index:1090;position:fixed;top:0}.sticky-top-banner-ad--animate{will-change:transform;transition:height 1s cubic-bezier(0, 0, 0, 0.985)}.ad-slot--top-banner-ad{text-align:center}@media (min-width: 81.25em){.ad-slot--top-banner-ad .ad-slot__label{margin:0}}@media (min-width: 81.25em){.has-page-skin .ad-slot--top-banner-ad{text-align:center}}.ad-slot--crossword-banner,.ad-slot--top-banner-ad-desktop{margin:0 auto;min-height:5.625rem;padding-bottom:0;text-align:left;display:block}@media (max-width: 46.24em){.ad-slot--crossword-banner,.ad-slot--top-banner-ad-desktop{display:none}}.ad-slot--crossword-banner.ad-slot--fabric>.ad-slot__label,.ad-slot--top-banner-ad-desktop.ad-slot--fabric>.ad-slot__label{box-sizing:content-box;margin-left:0.625rem;margin-right:0.625rem}@media (min-width: 30em){.ad-slot--crossword-banner.ad-slot--fabric>.ad-slot__label,.ad-slot--top-banner-ad-desktop.ad-slot--fabric>.ad-slot__label{margin-left:1.25rem;margin-right:1.25rem}}@media (min-width: 41.25em){.ad-slot--crossword-banner.ad-slot--fabric>.ad-slot__label,.ad-slot--top-banner-ad-desktop.ad-slot--fabric>.ad-slot__label{margin-left:auto;margin-right:auto;width:38.75rem}}@media (min-width: 46.25em){.ad-slot--crossword-banner.ad-slot--fabric>.ad-slot__label,.ad-slot--top-banner-ad-desktop.ad-slot--fabric>.ad-slot__label{padding-left:1.25rem;padding-right:1.25rem}}@media (min-width: 46.25em){.ad-slot--crossword-banner.ad-slot--fabric>.ad-slot__label,.ad-slot--top-banner-ad-desktop.ad-slot--fabric>.ad-slot__label{width:43.75rem}}@media (min-width: 61.25em){.ad-slot--crossword-banner.ad-slot--fabric>.ad-slot__label,.ad-slot--top-banner-ad-desktop.ad-slot--fabric>.ad-slot__label{width:58.75rem}}@media (min-width: 71.25em){.ad-slot--crossword-banner.ad-slot--fabric>.ad-slot__label,.ad-slot--top-banner-ad-desktop.ad-slot--fabric>.ad-slot__label{width:68.75rem}}@media (min-width: 81.25em){.ad-slot--crossword-banner.ad-slot--fabric>.ad-slot__label,.ad-slot--top-banner-ad-desktop.ad-slot--fabric>.ad-slot__label{width:78.75rem}}.ad-slot--crossword-banner.ad-slot--fluid,.ad-slot--top-banner-ad-desktop.ad-slot--fluid{width:100%}.ad-slot--inline,.ad-slot--container-inline,.ad-slot--container-inline.ad-slot--fluid,.ad-slot--gallery-inline,.ad-slot--liveblog-inline{width:18.75rem;margin:0.75rem auto;min-width:18.75rem;min-height:17.125rem;text-align:center}@media (min-width: 30em){.ad-slot--inline,.ad-slot--container-inline,.ad-slot--container-inline.ad-slot--fluid,.ad-slot--gallery-inline,.ad-slot--liveblog-inline{width:20rem}}@media (min-width: 46.25em){.ad-slot--inline,.ad-slot--container-inline,.ad-slot--container-inline.ad-slot--fluid,.ad-slot--gallery-inline,.ad-slot--liveblog-inline{width:auto}}.content--immersive-article .ad-slot--offset-right{clear:both}@media (min-width: 30em){.ad-slot--liveblog-inline,.ad-slot--container-inline,.ad-slot--container-inline.ad-slot--fluid{margin-top:0}}@media (min-width: 46.25em){.ad-slot--liveblog-inline,.ad-slot--container-inline,.ad-slot--container-inline.ad-slot--fluid{margin:0 0.625rem}}.ad-slot--gallery-inline{background-color:#121212;margin-left:0}@media (min-width: 30em){.ad-slot--gallery-inline{width:18.75rem}}@media (min-width: 46.25em){.ad-slot--gallery-inline{width:auto}}@media (min-width: 61.25em){.ad-slot--gallery-inline,.ad-slot--gallery-inline .ad-slot__label{text-align:left}}.ad-slot--right,.ad-slot--inline,.ad-slot--container-inline{background-color:#f6f6f6}@media (min-width: 46.25em){.ad-slot--right,.ad-slot--inline,.ad-slot--container-inline{width:18.75rem}}@media (min-width: 46.25em){.ad-slot--inline{float:right;margin-top:0.25rem;margin-left:1.25rem}}@media (min-width: 46.25em) and (max-width: 71.24em){.ad-slot--inline{clear:left}}.ad-slot--dark{background-color:#181818}.ad-slot--container-inline:not(.ad-slot--fluid):not(.ad-slot--gc):not(.ad-slot--mostpop) .ad-slot__content{margin:0 auto}@media (min-width: 46.25em){.ad-slot--container-inline:not(.ad-slot--fluid):not(.ad-slot--gc):not(.ad-slot--mostpop){position:relative;height:auto}.content-footer .ad-slot--container-inline:not(.ad-slot--fluid):not(.ad-slot--gc):not(.ad-slot--mostpop){width:18.75rem}.linkslist-container .ad-slot--container-inline:not(.ad-slot--fluid):not(.ad-slot--gc):not(.ad-slot--mostpop){position:absolute;top:0;right:0}.ad-slot--container-inline:not(.ad-slot--fluid):not(.ad-slot--gc):not(.ad-slot--mostpop) .ad-slot__label{padding:0 1.25rem}.ad-slot--container-inline:not(.ad-slot--fluid):not(.ad-slot--gc):not(.ad-slot--mostpop) .ad-slot__content{position:absolute;right:0;bottom:0;left:0;top:1.5rem;height:15.625rem}}@media (min-width: 46.25em){.ad-slot--liveblog-inline:not(.ad-slot--outstream){padding-bottom:1.5rem}.ad-slot--liveblog-inline:not(.ad-slot--outstream)>div:not(.ad-slot__label){width:18.75rem;margin-left:auto;margin-right:auto}}.ad-slot--liveblog-inline{background-color:#ededed}.ad-slot--liveblog-inline .ad-slot__label{color:#767676;border-top-color:#dcdcdc}.ad-slot--mpu-banner-ad{display:none;width:18.75rem;min-height:17.125rem;margin-bottom:1.5rem}@media (min-width: 61.25em){.ad-slot--mpu-banner-ad{display:block}}.ad-slot--adfeature{background-color:#dcdcdc}.ad-slot--outstream{background:transparent;height:auto}@media (min-width: 20em){.ad-slot--outstream{width:18.75rem;min-height:auto}}@media (min-width: 41.25em){.ad-slot--outstream{float:none;width:38.75rem;margin:0.25rem 0 0}.ad-slot--outstream>div.ad-slot__label{margin-left:2.1875rem;margin-right:2.1875rem}}@media (min-width: 81.25em){.has-page-skin .ad-slot--commercial-component,.has-page-skin .ad-slot--commercial-component-high{margin-left:auto;margin-right:auto;width:61.25rem}}.fc-container--commercial .ad-slot--commercial-component-high{margin-bottom:1.5rem}.ad-slot--im{float:left;width:8.125rem}@media (min-width: 30em){.ad-slot--im{width:13.75rem}}.ad-slot--im:not(.ad-slot--rendered){width:0;height:0}.ad-slot--im.ad-slot--rendered{margin:0.3125rem 0.625rem 0.375rem 0}@media (min-width: 30em){.ad-slot--im.ad-slot--rendered{margin-bottom:0.75rem;margin-right:1.25rem}}@media (min-width: 30em){.ad-slot--inline-book,.ad-slot--books-inline{width:8.75rem}}@media (min-width: 46.25em) and (max-width: 71.24em){.fc-container--sponsored .fc-container:first-child .fc-container__header+.fc-container__body,.fc-container--paid-content .fc-container:first-child .fc-container__header+.fc-container__body,.fc-container--sponsored .fc-container__header+.fc-container__body,.fc-container--paid-content .fc-container__header+.fc-container__body{margin-top:4.875rem}}.ad-slot--page-skin{height:0;overflow:hidden}@media (min-width: 20em) and (max-width: 81.24em){.has-page-skin{background-image:none !important}}.ad-slot--fluid{min-height:15.625rem;line-height:0.625rem;padding:0;margin:0}.ad-slot--fluid:not(.ad-slot--im):not(.ad-slot--carrot):not(.ad-slot--offset-right){width:100%}@media (min-width: 20em) and (max-width: 29.99em){.ad-slot--fluid.ad-slot--liveblog-inline{margin-left:-0.625rem;margin-right:-0.625rem}}@media (min-width: 30em) and (max-width: 46.24em){.ad-slot--fluid.ad-slot--liveblog-inline{margin-left:-1.25rem;margin-right:-1.25rem}}.ad-slot--merchandising,.ad-slot--merchandising-high{min-height:15.625rem}.ad-slot--carrot{min-height:0;padding:0;margin:0.3125rem 1.25rem 0.75rem 0;float:left;clear:both}@media (max-width: 29.99em){.ad-slot--carrot{width:8.125rem;margin-bottom:0.375rem;margin-right:0.625rem}}@media (min-width: 30em){.ad-slot--carrot{width:13.75rem}}@media (min-width: 81.25em){.ad-slot--carrot{margin-left:-15rem}}.ad-slot--gc .ad-slot__label{display:none}.ad-slot--fabric-v1{min-height:15.625rem}.ad-slot--fabric{overflow:hidden;width:auto;min-height:15.625rem;padding-left:0;padding-right:0;padding-bottom:0}@media (min-width: 81.25em){.ad-slot--fabric.ad-slot--top-banner-ad-desktop{margin-left:0}}.ad-slot--fabric-v1,.ad-slot--fluid250{width:auto;margin-left:0;padding:0}.ad-slot--fabric-v1 .ad-slot__label,.ad-slot--fluid250 .ad-slot__label{display:none}@media (min-width: 61.25em){.ad-slot--fluid250{min-height:15.625rem}}@media (min-width: 61.25em){.ad-slot--offset-right{margin-right:-20rem}}@media (min-width: 81.25em){.ad-slot--offset-right{margin-right:-25rem}}.ad-slot--offset-right.ad-slot--sky{width:10rem;min-width:10rem}.ad-slot--survey{height:0}.ad-slot--unruly{width:100%}@media (min-width: 46.25em){.ad-slot--unruly{float:none;margin-left:0}}.mobilesticky-container{position:fixed;bottom:0;width:20rem;margin:0 auto;right:0;left:0;z-index:1010}@media (min-width: 41.25em){.mobilesticky-container{display:none}}.ad-slot__close-button{display:none;position:absolute;right:0.1875rem;top:0.1875rem;padding:0;border:0;height:1.3125rem;width:1.3125rem;background-color:transparent}.ad-slot__close-button svg{height:0.75rem;width:0.75rem;stroke:#121212;fill:#121212;stroke-linecap:round;stroke-width:0;text-align:center}.ad-slot--mobile-sticky .ad-slot__label .ad-slot__close-button{display:block}.ad-slot__close-button__x{stroke:#121212;fill:transparent;stroke-linecap:round;stroke-width:2;text-align:center}.ad-slot--collapse{display:none}.bz-custom-container ~ #bannerandheader>.top-banner-ad-container{display:none}@media (max-width: 61.24em){.podcast__secondary .ad-slot--right{display:none}}.ad-slot--interscroller{height:85vh;margin-bottom:0.75rem;position:relative}.media:after,.media:before,.media__body:after,.media__body:before{content:'';display:table}.media:after,.media__body:after{clear:both}.media__img{margin-right:0.9375rem}.media__img img{display:block}.media__container--hidden{display:none !important}.media__placeholder--active{display:block;position:relative}.media__container--active{display:block}.media__placeholder--hidden{display:none !important}.page-header{font-size:1.25rem;line-height:1.4375rem;font-family:\\\\\\\"Guardian Egyptian Web\\\\\\\",Georgia,serif;font-weight:normal;padding:0 0 1rem;margin:0 0.625rem 0.25rem;border-bottom:0.0625rem dotted #dcdcdc}@media (min-width: 30em){.page-header{margin-left:1.25rem;margin-right:1.25rem}}.page-sub-header{font-size:1.0625rem;line-height:1.25rem;font-family:\\\\\\\"Guardian Egyptian Web\\\\\\\",Georgia,serif;font-weight:900;padding:0.125rem 0 0.25rem;margin-bottom:0.75rem}.no-indent-article__zone .page-sub-header,.monocolumn-wrapper .page-sub-header,.fc-container__inner .page-sub-header{margin-left:0;margin-right:0}.page-sub-header>a{display:block}.message{padding:0.6875rem;background-color:#ffffee}.rounded-icon{border-radius:62.5rem;display:inline-block;vertical-align:middle;position:relative}.centered-icon svg{top:0;bottom:0;right:0;left:0;margin:auto;position:absolute}.rich-link{background-color:#ededed;margin:0;position:relative;overflow:hidden}.rich-link a{color:inherit}.rich-link .u-faux-block-link--hover{background-color:#ededed}.rich-link__title{font:inherit;line-height:inherit;padding:0}.rich-link .rich-link__header{font-size:1.25rem;line-height:1.4375rem;font-family:\\\\\\\"Guardian Egyptian Web\\\\\\\",Georgia,serif;font-weight:normal;font-weight:500;padding:0.25rem 0.3125rem 0.5em;box-sizing:border-box;min-height:2.25rem}.rich-link__read-more{padding-left:0.3125rem}.rich-link__arrow{display:inline-block}.rich-link__read-more-text{font-size:0.875rem;line-height:1.0625rem;font-family:\\\\\\\"Guardian Egyptian Web\\\\\\\",Georgia,serif;font-weight:normal;display:inline-block;height:1.875rem;line-height:1.625rem;padding-left:0.125rem;vertical-align:top;font-weight:500}.rich-link__link .u-faux-block-link__overlay{z-index:2}.rich-link__container{position:relative}.rich-link__container:before{background-color:#00b2ff;content:'';position:absolute;top:0;left:0;right:0;height:0.0625rem;z-index:2}.rich-link__container:after{content:'';display:table;clear:both}.element-rich-link{float:left;margin:0.3125rem 1.25rem 0.75rem 0;clear:both}@media (min-width: 61.25em){.element-rich-link{clear:left}}@media (max-width: 29.99em){.element-rich-link{width:8.125rem;margin-bottom:0.375rem;margin-right:0.625rem}.element-rich-link .rich-link__header{font-size:0.875rem;line-height:1.0625rem}}@media (min-width: 30em){.element-rich-link{width:13.75rem}}@media (min-width: 71.25em){.element-rich-link{margin-left:-10rem}.element-rich-link.element--supporting{width:18.75rem}}@media (min-width: 81.25em){.element-rich-link{margin-left:-15rem}.element-rich-link.element--supporting{width:23.75rem}}.reveal-caption{position:absolute;right:0.3125rem;width:2rem;height:2rem;z-index:1;background-color:rgba(18,18,18,0.6);border-radius:50%}.reveal-caption:hover{background-color:#121212}.reveal-caption--img{bottom:0.375rem}.caption--main{max-width:33.75rem;padding:0.5rem 0.625rem 1.5rem}@media (min-width: 46.25em){.caption--main{max-width:38.75rem;padding-left:0;padding-right:0}}@media (min-width: 61.25em){.caption--main{max-width:none}}@media (max-width: 46.24em){.caption--main.caption--img{position:absolute;left:0;right:0;bottom:0;background:rgba(18,18,18,0.8);color:#ffffff;display:none;padding:0.375rem 2.5rem 0.75rem 0.625rem;max-width:100%}.caption--main.caption--img a{color:currentColor}}@media (max-width: 46.24em){.caption--main.caption--video,.content__main-column--image .caption--main{padding-bottom:0}}@media (max-width: 46.24em){.reveal-caption__checkbox:checked ~ .caption--main{display:block}.reveal-caption__checkbox:checked ~ .reveal-caption{background-color:#121212}.reveal-caption__checkbox:checked ~ .reveal-caption:hover{background-color:#121212}.reveal-caption__checkbox:focus ~ .reveal-caption{background-color:#121212}}.linkslist-container{position:relative;margin:0 !important}@media (min-width: 46.25em){.linkslist-container{margin-top:0.5625rem}}.linkslist-container.tone-feature:before{background:#fec8d3}.linkslist-container.tone-comment:before{background:#767676}.linkslist-container.tone-media:before{background:#ffe500}.linkslist-container.show-more--hidden,.linkslist-container.show-more--hidden:before{display:none}.linkslist{margin-top:0;width:100%}@media (min-width: 46.25em) and (max-width: 61.24em){.linkslist .fc-slice__item{width:50%}.linkslist .fc-slice__item:nth-child(2n+1){clear:both}.linkslist .fc-slice__item:nth-child(2n+1):before{border:0}.linkslist .fc-slice__item:nth-child(2n+1):nth-last-child(-n+4),.linkslist .fc-slice__item:nth-child(2n+2):nth-last-child(-n+3){padding-bottom:0}.linkslist .fc-slice__item:nth-child(2n+1):nth-last-child(-n+2),.linkslist .fc-slice__item:nth-child(2n+2):last-child{padding-top:0.75rem}}@media (min-width: 61.25em){.linkslist .fc-slice__item{width:33.33333%}.linkslist .fc-slice__item:nth-child(3n+1){clear:both}.linkslist .fc-slice__item:nth-child(3n+1):before{border:0}.linkslist .fc-slice__item:nth-child(3n+1):nth-last-child(-n+6),.linkslist .fc-slice__item:nth-child(3n+2):nth-last-child(-n+5),.linkslist .fc-slice__item:nth-child(3n+3):nth-last-child(-n+4){padding-bottom:0}.linkslist .fc-slice__item:nth-child(3n+1):nth-last-child(-n+3),.linkslist .fc-slice__item:nth-child(3n+2):nth-last-child(-n+2),.linkslist .fc-slice__item:nth-child(3n+3):last-child{padding-top:0.75rem}}@media (min-width: 46.25em){.linkslist .fc-slice__item{-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-webkit-flex-basis:50%;-ms-flex-preferred-size:50%;flex-basis:50%}}@media (min-width: 61.25em){.linkslist .fc-slice__item{-webkit-flex-basis:33.33333%;-ms-flex-preferred-size:33.33333%;flex-basis:33.33333%}}.linkslist .item--has-cutout{padding-bottom:1.875rem}.fc-container__inner,.facia-container__inner,.fc-container__pagination,.index-page-header{overflow:hidden;position:relative;margin-left:0.625rem;margin-right:0.625rem}@media (min-width: 30em){.fc-container__inner,.facia-container__inner,.fc-container__pagination,.index-page-header{margin-left:1.25rem;margin-right:1.25rem}}@media (min-width: 46.25em){.fc-container__inner,.facia-container__inner,.fc-container__pagination,.index-page-header{margin-left:auto;margin-right:auto;padding-left:1.25rem;padding-right:1.25rem;width:38.75rem}}@media (min-width: 46.25em){.fc-container__inner,.facia-container__inner,.fc-container__pagination,.index-page-header{width:43.75rem}}@media (min-width: 61.25em){.fc-container__inner,.facia-container__inner,.fc-container__pagination,.index-page-header{width:58.75rem}}@media (min-width: 71.25em){.fc-container__inner,.facia-container__inner,.fc-container__pagination,.index-page-header{width:68.75rem}}@media (min-width: 81.25em){.fc-container__inner,.facia-container__inner,.fc-container__pagination,.index-page-header{width:78.75rem}}@media (min-width: 46.25em){.fc-container__inner--full-span,.facia-container__inner--full-span{width:46.25rem}}@media (min-width: 61.25em){.fc-container__inner--full-span,.facia-container__inner--full-span{width:61.25rem}}@media (min-width: 71.25em){.fc-container__inner--full-span,.facia-container__inner--full-span{width:71.25rem}}@media (min-width: 81.25em){.fc-container__inner--full-span,.facia-container__inner--full-span{width:81.25rem}}@media (min-width: 46.25em){.fc-container__inner--full-span,.facia-container__inner--full-span{padding-left:0;padding-right:0}}.js-on .js-hidden,.js-off .js-visible,.is-modern .modern-hidden,.is-not-modern .modern-visible{display:none}.is-off{display:none}.current{font-weight:bold}.is-on{display:block}.has-cursor{cursor:pointer}.maxed{width:100%}.shut>.panel{overflow:hidden;position:relative;max-height:0;padding-top:0}.update{float:right}.is-updating{display:none;width:2.5rem;height:1.25rem;background-size:100%;margin-top:1.125rem}.is-updating.is-active{display:inline-block}.is-scroll-blocked{overflow:hidden}.is-updating-cursor{cursor:wait}body.is-updating-js .u-block-during-update{pointer-events:none}.is-updating--dark{width:2.25rem;height:0.75rem}.is-live-icon{padding:0.0625rem 0.25rem 0.125rem;margin:0.0625rem 0.1875rem 0 0;font-size:0.625rem;font-style:normal;line-height:1;color:#ffffff;background-color:#ec1c1c;display:inline-block}.id--signed-out .sign-in-required{display:none}.is-sticky{position:fixed;top:0}.l-list{width:100%}@media (min-width: 46.25em){.l-list{display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}}.l-list__item{float:left;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-webkit-flex-basis:100%;-ms-flex-preferred-size:100%;flex-basis:100%}@media (min-width: 46.25em){.l-row--cols-2 .l-row__item--span-1{width:50%;float:left;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto}}@media (min-width: 46.25em){.l-row--cols-2 .l-row__item--span-2{width:100%;float:left;-webkit-flex:2 1 auto;-ms-flex:2 1 auto;flex:2 1 auto}}@media (min-width: 46.25em){.l-row--cols-2 .l-row__item--span-3{width:150%;float:left;-webkit-flex:3 1 auto;-ms-flex:3 1 auto;flex:3 1 auto}}@media (min-width: 46.25em){.l-row--cols-2 .l-row__item--span-4{width:200%;float:left;-webkit-flex:4 1 auto;-ms-flex:4 1 auto;flex:4 1 auto}}@media (min-width: 46.25em){.l-row--cols-2 .l-row__item--span-5{width:250%;float:left;-webkit-flex:5 1 auto;-ms-flex:5 1 auto;flex:5 1 auto}}@media (min-width: 46.25em){.l-row--cols-3 .l-row__item--span-1{width:33.33333%;float:left;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto}}@media (min-width: 46.25em){.l-row--cols-3 .l-row__item--span-2{width:66.66667%;float:left;-webkit-flex:2 1 auto;-ms-flex:2 1 auto;flex:2 1 auto}}@media (min-width: 46.25em){.l-row--cols-3 .l-row__item--span-3{width:100%;float:left;-webkit-flex:3 1 auto;-ms-flex:3 1 auto;flex:3 1 auto}}@media (min-width: 46.25em){.l-row--cols-3 .l-row__item--span-4{width:133.33333%;float:left;-webkit-flex:4 1 auto;-ms-flex:4 1 auto;flex:4 1 auto}}@media (min-width: 46.25em){.l-row--cols-3 .l-row__item--span-5{width:166.66667%;float:left;-webkit-flex:5 1 auto;-ms-flex:5 1 auto;flex:5 1 auto}}@media (min-width: 46.25em){.l-row--cols-4 .l-row__item--span-1{width:25%;float:left;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto}}@media (min-width: 46.25em){.l-row--cols-4 .l-row__item--span-2{width:50%;float:left;-webkit-flex:2 1 auto;-ms-flex:2 1 auto;flex:2 1 auto}}@media (min-width: 46.25em){.l-row--cols-4 .l-row__item--span-3{width:75%;float:left;-webkit-flex:3 1 auto;-ms-flex:3 1 auto;flex:3 1 auto}}@media (min-width: 46.25em){.l-row--cols-4 .l-row__item--span-4{width:100%;float:left;-webkit-flex:4 1 auto;-ms-flex:4 1 auto;flex:4 1 auto}}@media (min-width: 46.25em){.l-row--cols-4 .l-row__item--span-5{width:125%;float:left;-webkit-flex:5 1 auto;-ms-flex:5 1 auto;flex:5 1 auto}}@media (min-width: 46.25em){.l-list--columns-1 .l-list__item{width:100%;-webkit-flex-basis:100%;-ms-flex-preferred-size:100%;flex-basis:100%}.l-list--columns-1 .l-list__item:nth-child(1n+1){clear:both}.l-list--columns-1 .l-list__item:nth-child(1n+1):before{border:0}.l-list--columns-1 .l-list__item:nth-last-child(1):nth-child(1n+1),.l-list--columns-1 .l-list__item:nth-last-child(1):nth-child(1n+1) ~ .l-list__item{padding-bottom:0}}@media (min-width: 46.25em){.l-list--columns-2 .l-list__item{width:50%;-webkit-flex-basis:50%;-ms-flex-preferred-size:50%;flex-basis:50%}.l-list--columns-2 .l-list__item:nth-child(2n+1){clear:both}.l-list--columns-2 .l-list__item:nth-child(2n+1):before{border:0}.l-list--columns-2 .l-list__item:nth-last-child(2):nth-child(2n+1),.l-list--columns-2 .l-list__item:nth-last-child(2):nth-child(2n+1) ~ .l-list__item{padding-bottom:0}}@media (min-width: 46.25em){.l-list--columns-3 .l-list__item{width:33.33333%;-webkit-flex-basis:33.33333%;-ms-flex-preferred-size:33.33333%;flex-basis:33.33333%}.l-list--columns-3 .l-list__item:nth-child(3n+1){clear:both}.l-list--columns-3 .l-list__item:nth-child(3n+1):before{border:0}.l-list--columns-3 .l-list__item:nth-last-child(3):nth-child(3n+1),.l-list--columns-3 .l-list__item:nth-last-child(3):nth-child(3n+1) ~ .l-list__item{padding-bottom:0}}@media (min-width: 46.25em){.l-list--columns-4 .l-list__item{width:25%;-webkit-flex-basis:25%;-ms-flex-preferred-size:25%;flex-basis:25%}.l-list--columns-4 .l-list__item:nth-child(4n+1){clear:both}.l-list--columns-4 .l-list__item:nth-child(4n+1):before{border:0}.l-list--columns-4 .l-list__item:nth-last-child(4):nth-child(4n+1),.l-list--columns-4 .l-list__item:nth-last-child(4):nth-child(4n+1) ~ .l-list__item{padding-bottom:0}}.fc-container .fc-container__inner{border-top:0.0625rem solid #dcdcdc}.fc-container,.facia-container{position:relative;padding-bottom:0.75rem;margin-bottom:0}.fc-container:after,.fc-container:before,.facia-container:after,.facia-container:before{content:'';display:table}.fc-container:after,.facia-container:after{clear:both}@media (min-width: 81.25em){.has-page-skin .fc-container,.has-page-skin .facia-container{overflow:hidden;margin-left:auto;margin-right:auto;width:61.25rem}}.fc-container--commercial{padding-bottom:0}.fc-container__inner,.facia-container__inner{padding-top:0.1875rem}@media (min-width: 46.25em){.fc-container__inner,.facia-container__inner{padding-top:0.375rem}}@media (min-width: 81.25em){.has-page-skin .fc-container__inner,.has-page-skin .facia-container__inner{width:58.75rem}}@media (min-width: 81.25em){.has-page-skin .fc-container__pagination{width:58.75rem}}.fc-container--rolled-up .fc-container--rolled-up-hide{display:none}.fc-slice-wrapper{padding-top:0.00063rem;margin:0 -0.625rem}.show-more--hidden .fc-slice-wrapper{display:none}.fc-container__header,.container__header{position:relative}@media (min-width: 46.25em) and (max-width: 71.24em){.fc-container--paid-for .fc-container__header,.fc-container[data-sponsorship] .fc-container__header,.fc-container[data-sponsorship] .fc-container:first-child .fc-container__header,.fc-container--paid-for .container__header,.fc-container[data-sponsorship] .container__header,.fc-container[data-sponsorship] .fc-container:first-child .container__header{float:left}}@media (min-width: 46.25em) and (max-width: 61.24em){.fc-container--paid-for .fc-container__header,.fc-container[data-sponsorship] .fc-container__header,.fc-container[data-sponsorship] .fc-container:first-child .fc-container__header,.fc-container--paid-for .container__header,.fc-container[data-sponsorship] .container__header,.fc-container[data-sponsorship] .fc-container:first-child .container__header{width:50%;padding-right:0.625rem}}@media (min-width: 61.25em) and (max-width: 71.24em){.fc-container--paid-for .fc-container__header,.fc-container[data-sponsorship] .fc-container__header,.fc-container[data-sponsorship] .fc-container:first-child .fc-container__header,.fc-container--paid-for .container__header,.fc-container[data-sponsorship] .container__header,.fc-container[data-sponsorship] .fc-container:first-child .container__header{width:66%;padding-right:0.625rem}}@media (min-width: 71.25em){.fc-container__header,.container__header{float:left;width:8.75rem}}@media (min-width: 81.25em){.fc-container__header,.container__header{width:13.75rem}.has-page-skin .fc-container__header,.has-page-skin .container__header{width:auto;float:none}}@media (max-width: 71.24em){.fc-container__header .fc-container__header__title{float:left;padding-right:0.3125rem}.fc-container--tag .fc-container__header{border-bottom:0}}@media (min-width: 46.25em) and (max-width: 71.24em){.fc-container--tag .fc-container__header{float:left;clear:left}}.fc-container__header__title,.fc-container__header__title>h2,.fc-container__title__text,.fc-container__header__title--sticky,.container__title{font-size:1.5rem;line-height:1.6875rem;font-family:\\\\\\\"Guardian Egyptian Web\\\\\\\",Georgia,serif;font-weight:normal;font-weight:700;position:relative;padding-bottom:0.25rem;color:#121212}@media (min-width: 81.25em){.has-page-skin .fc-container__header__title,.has-page-skin .fc-container__header__title>h2,.has-page-skin .fc-container__title__text,.has-page-skin .fc-container__header__title--sticky,.has-page-skin .container__title{float:left;width:18.75rem}}.has-page-skin .fc-container__header__title:after,.has-page-skin .fc-container__header__title>h2:after,.has-page-skin .fc-container__title__text:after,.has-page-skin .fc-container__header__title--sticky:after,.has-page-skin .container__title:after{display:none}.fc-container__header__title a,.fc-container__header__title>h2 a,.fc-container__title__text a,.fc-container__header__title--sticky a,.container__title a{color:inherit}.fc-container__header__title a:hover,.fc-container__header__title>h2 a:hover,.fc-container__title__text a:hover,.fc-container__header__title--sticky a:hover,.container__title a:hover{border-bottom:0.0625rem solid #c70000}.fc-container__header__title a:hover .inline-icon,.fc-container__header__title>h2 a:hover .inline-icon,.fc-container__title__text a:hover .inline-icon,.fc-container__header__title--sticky a:hover .inline-icon,.container__title a:hover .inline-icon{fill:#00b2ff}.fc-container__header__title a .inline-icon,.fc-container__header__title>h2 a .inline-icon,.fc-container__title__text a .inline-icon,.fc-container__header__title--sticky a .inline-icon,.container__title a .inline-icon{fill:#005689;position:relative;height:.7em;width:1em}.fc-container__header__title:after{content:'';display:none;position:absolute;height:1.875rem;width:0.0625rem;background-color:#dcdcdc;right:-0.6875rem;top:-0.375rem}@media (min-width: 71.25em){.fc-container__header__title:after{display:block}}.fc-container__header__title .has-page-skin:after{display:none}@media (min-width: 71.25em){.fc-container__title__text:after{display:none}}.fc-container__header__title--sticky{display:block;width:100%;text-align:left;margin-left:-1.25rem;padding:0.375rem 0 0 1.25rem;background:#ffffff;border:0}.fc-container__header__title--sticky button{color:#dcdcdc;font-weight:500;text-align:left;background:#ffffff;margin:0;padding:0;border:0;cursor:pointer}.fc-container__header__title--sticky:last-child{padding-bottom:1.5rem}.fc-container__header__title--stickies{display:none;visibility:hidden;margin-top:6.25rem}.has-page-skin .fc-container__header__title--stickies{display:none}.fc-container__header__title--stickies.fixed{position:fixed;bottom:0;z-index:99}@media (min-width: 71.25em){.fc-container__header__title--stickies{display:block;width:8.75rem}}@media (min-width: 81.25em){.fc-container__header__title--stickies{width:13.75rem}}.fc-container__header__image{display:table-cell;margin:0 1.25rem 0 0;overflow:hidden;float:left}@media (min-width: 71.25em){.fc-container__header__image{float:none;display:block;margin:0 0 0.75rem}}.fc-container__header__image img{display:block;width:5rem}@media (min-width: 61.25em){.fc-container__header__image img{width:6.25rem}}.fc-container__header__description{font-size:1.0625rem;line-height:1.25rem;font-family:\\\\\\\"Guardian Egyptian Web\\\\\\\",Georgia,serif;font-weight:normal;padding-bottom:0.375rem;color:#767676;clear:left;font-weight:500}@media (min-width: 46.25em){.fc-container__header__description{padding-bottom:0.75rem}}@media (min-width: 71.25em){.fc-container__header__description{width:8.75rem;float:left;margin-top:0;word-break:normal;overflow-wrap:anywhere}}@media (min-width: 81.25em){.fc-container__header__description{width:13.75rem}}.fc-container__header__description a{color:#333}@media (max-width: 71.24em){.fc-container__header__social__action{position:absolute;right:0;top:0}.fc-container__header__social__action+.fc-container__header__social__action{display:none}}@media (min-width: 71.25em){.fc-container__header__social__action{border-top:0.0625rem dotted #dcdcdc;padding-top:0.375rem;margin-top:0.75rem;width:100%}.fc-container__header__social__action+.fc-container__header__social__action{border-top:0;margin-top:0;padding-top:0}}.fc-container__header__description--image{vertical-align:middle;display:table-cell}@media (min-width: 61.25em){.fc-container__header__description--image{max-width:33.75rem}}@media (min-width: 71.25em){.fc-container__header__description--image{display:block;height:auto;clear:both}}.fc-today{font-size:1.0625rem;line-height:1.25rem;font-family:\\\\\\\"Guardian Egyptian Web\\\\\\\",Georgia,serif;font-weight:normal;line-height:1rem;font-weight:600;display:none;margin:0.25rem 0 0.75rem}@media (min-width: 46.25em){.fc-today{display:block}}.fc-today .fc-today__sub{color:#c70000}@media (min-width: 81.25em){.has-page-skin .fc-today .fc-today__sub{border-top:0;margin-top:0}}@media (min-width: 71.25em){.fc-today__sub{display:block}}@media (min-width: 81.25em){.has-page-skin .fc-today__sub{display:inline}}@media (min-width: 46.25em){.fc-show-more--mobile-only .button--show-more{display:none}}@media (max-width: 46.24em){.js-on .fc-show-more--hidden .fc-show-more--hide-on-mobile{display:none !important}}.js-on .fc-show-more--hidden .fc-show-more--hide{display:none !important}.fc-container__updated{font-size:0.875rem;line-height:1.0625rem;font-family:\\\\\\\"Guardian Egyptian Web\\\\\\\",Georgia,serif;font-weight:normal;display:block;position:absolute;right:0;bottom:0;padding-bottom:0.375rem;color:#767676}@media (min-width: 71.25em){.fc-container__updated{position:static;margin-top:1.25rem;border-top:0.0625rem dotted #dcdcdc;padding-top:0.1875rem}}@media (min-width: 81.25em){.has-page-skin .fc-container__updated{position:absolute;bottom:0;border-top:0}}.fc-timestamp{display:inline-block}.fc-container__body,.container__body{padding-top:0.375rem;padding-bottom:0.75rem;opacity:1;transition:opacity .25s linear}@media (min-width: 46.25em){.fc-container__body,.container__body{padding-top:0.1875rem}}@media (min-width: 71.25em){.fc-container__body,.container__body{margin-left:10rem}}@media (min-width: 81.25em){.fc-container__body,.container__body{margin-left:15rem;width:58.75rem}.has-page-skin .fc-container__body,.has-page-skin .container__body{margin-left:0;clear:left}}@media (max-width: 71.24em){.fc-container__body,.container__body{clear:left}}@media (min-width: 71.25em) and (max-width: 81.24em){.fc-container--will-have-toggle .fc-container__body,.fc-container--has-toggle .fc-container__body,.fc-container--will-have-toggle .container__body,.fc-container--has-toggle .container__body{padding-top:2.25rem}}.fc-container__body--is-hidden{opacity:0;transition:opacity .25s linear}.fc-container__toggle{font-size:0.875rem;line-height:1.25rem;font-family:\\\\\\\"Guardian Text Sans Web\\\\\\\",\\\\\\\"Helvetica Neue\\\\\\\",Helvetica,Arial,\\\\\\\"Lucida Grande\\\\\\\",sans-serif;background-color:transparent;position:absolute;top:0.25rem;right:0;border:0;padding:0;color:#767676;text-align:right;min-width:3.75rem}.fc-container__toggle:hover,.fc-container__toggle:focus{color:#121212}[data-component='headlines'] .fc-container__toggle{display:none}@media (min-width: 71.25em){.fc-container__toggle{left:68.75rem;-webkit-transform:translateX(-100%);transform:translateX(-100%)}}@media (min-width: 81.25em){.fc-container__toggle{left:78.75rem}.has-page-skin .fc-container__toggle{left:auto}}.fc-container--media .fc-container__inner,.fc-container--media .fc-slice__item+.fc-slice__item:before{border-color:#333}.fc-container--media .fc-container__header__title{color:#ededed}@media (max-width: 46.24em){.fc-container--media .fc-item__media-wrapper{padding-left:0 !important}}.fc-date-headline{font-size:1.0625rem;line-height:1.25rem;font-family:\\\\\\\"Guardian Egyptian Web\\\\\\\",Georgia,serif;font-weight:normal;color:#121212;display:block;padding-bottom:0.375rem}.fc-container--tag{padding-bottom:0}.fc-container--tag .fc-container__inner{border-top:0.0625rem solid #dcdcdc}.fc-trending-topics{border-top:0 !important}.facia-page,.index-page{background-color:#ffffff}.index-page-header{padding-top:0.375rem;padding-bottom:0.75rem}.has-page-skin .index-page-header{width:58.75rem}.index-page-header__content{width:100%}@media (min-width: 81.25em){.index-page-header__content{width:73.75rem}.has-page-skin .index-page-header__content{width:100%}}.index-page-header__title{display:block;line-height:1.25rem;font-size:1.25rem;line-height:1.4375rem;font-family:\\\\\\\"Guardian Egyptian Web\\\\\\\",Georgia,serif;font-weight:900}.index-page-header__title,.index-page-header__title a{color:#121212}@media (min-width: 71.25em){.index-page-header__title{float:left;width:8.75rem;margin-right:1.25rem}}@media (min-width: 81.25em){.index-page-header__title{width:13.75rem}.has-page-skin .index-page-header__title{float:none}}@media (min-width: 71.25em) and (max-width: 81.24em){.index-page-header__title{font-size:1.25rem;line-height:1.5rem}}.index-page-header__description{font-size:1.0625rem;line-height:1.25rem;font-family:\\\\\\\"Guardian Egyptian Web\\\\\\\",Georgia,serif;font-weight:normal;color:#767676}@media (min-width: 71.25em){.index-page-header__description{float:left}}@media (min-width: 81.25em){.has-page-skin .index-page-header__description{float:none}}@media (min-width: 46.25em){.index-page-header__description{width:50%}}.index-page-header__image-wrapper{overflow:hidden;float:right}.index-page-header__image{display:block;float:right;height:5rem}@media (min-width: 61.25em){.index-page-header__image{height:6.25rem}}.index-page-header__image-wrapper--contributor-circle{border-radius:62.5rem}@media (max-width: 61.24em){.fc-container--lazy-load{display:none}.is-not-modern .fc-container--lazy-load{display:block}}.gallery__most-popular h2.fc-container__title__text{color:#dcdcdc}.gallery__most-popular h2.fc-container__title__text:hover{text-decoration:underline}.gallery__most-popular h2.fc-container__title__text:after{display:none}.fc-aus-territory__container{padding:0 0.625rem 1.5rem}@media (min-width: 41.25em){.fc-aus-territory__container{-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start}}@media (min-width: 46.25em){.fc-aus-territory__container{padding:0 0 1.5rem}}.fc-aus-territory__accordion-header{display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;border:0;background-color:transparent;padding:0}@media (min-width: 41.25em){.fc-aus-territory__accordion-header{-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start}}.fc-aus-territory__accordion-header__headline{font-size:1.0625rem;line-height:1.25rem;font-family:\\\\\\\"Guardian Egyptian Web\\\\\\\",Georgia,serif;font-weight:normal;line-height:1.625rem;font-weight:bold;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex}.fc-aus-territory__accordion-arrow{display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;width:1.5625rem;height:0.9375rem;margin-left:0.3125rem}.fc-aus-territory__body__accordion-body{font-size:1rem;line-height:1.375rem;font-family:\\\\\\\"Guardian Text Sans Web\\\\\\\",\\\\\\\"Helvetica Neue\\\\\\\",Helvetica,Arial,\\\\\\\"Lucida Grande\\\\\\\",sans-serif;margin-top:0.375rem;margin-bottom:0.75rem}.fc-aus-territory__body__accordion-body--bold{font-weight:bold}@media (min-width: 41.25em){.fc-aus-territory__body__accordion-body{max-width:30.9375rem}}@media (min-width: 46.25em){.fc-aus-territory__body__accordion-body{max-width:41.25rem}}.fc-aus-territory__territory-button{font-size:1.125rem;line-height:1.125rem;font-family:\\\\\\\"Guardian Text Sans Web\\\\\\\",\\\\\\\"Helvetica Neue\\\\\\\",Helvetica,Arial,\\\\\\\"Lucida Grande\\\\\\\",sans-serif;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;background-color:#ffffff;border-radius:0.3125rem;margin-top:0.375rem;height:2.375rem;border:0.125rem solid #707070;margin-right:0}@media (min-width: 41.25em){.fc-aus-territory__territory-button{width:10.3125rem;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;margin-top:0.75rem;margin-right:0.1875rem}}.fc-aus-territory__territory-button--secondary{border:0;padding:0}@media (min-width: 41.25em){.fc-aus-territory__territory-button--secondary{width:auto;margin-top:0.375rem}}@media (min-width: 46.25em){.fc-aus-territory__territory-button--secondary{width:10.3125rem;margin-top:0.75rem}}.fc-aus-territory__territory-button--selected{background-color:#dcdcdc;border:0.25rem solid #121212}.fc-container--video{padding-bottom:0;margin-bottom:0.75rem}.fc-container--video .gs-container{background-color:#121212}.fc-container--video .fc-container__inner{border-top:0}.fc-container--video .fc-container__toggle{color:#dcdcdc}.fc-container--video .fc-container__toggle:hover,.fc-container--video .fc-container__toggle:focus{color:#fff}.fc-container--video .fc-item__image-container{display:block}.fc-container--video .u-responsive-ratio{padding-bottom:56.3%}.fc-container--video .gu-media-wrapper .vjs-paused.vjs-has-started .vjs-control-bar{bottom:-3.75rem}@media (min-width: 61.25em){.fc-container--video .vjs-big-play-button{display:none}}.fc-container--video .media__container--hidden{display:block !important;position:absolute;top:0;left:0;right:0;bottom:0;pointer-events:none;z-index:2}.fc-container--video .media__container--hidden video{display:none}.fc-container--video .gu-media-wrapper{background-color:transparent}@media (min-width: 61.25em){.fc-container--video .fc-item__video-fallback,.fc-container--video .gu-media{opacity:.3;transition:opacity .4s ease-out}}.fc-container--video .treats__treat{background-color:transparent;border-color:rgba(255,255,255,0.3)}.fc-container--video .treats__treat:hover{border-color:#ffffff;background-color:#ffffff;color:#121212}@media (max-width: 61.24em){.fc-container--video .u-responsive-ratio video{top:inherit;bottom:0;height:auto}.fc-container--video .fc-item__video-container .vjs-big-play-button{top:3.375rem}.fc-container--video .fc-item__video-fallback{margin-top:6.75rem}}.fc-container--video-no-fill-sides{background-color:transparent}.video-title{color:#ffffff;display:block;margin-bottom:0.75rem}.video-title:after{content:none}.video-title a:hover{color:#ffffff;border-bottom:#ffffff}.video-playlist{position:relative;overflow:hidden}@media (min-width: 61.25em) and (max-width: 71.24em){.video-playlist{background-color:#050505}.has-page-skin .video-playlist{background-color:transparent}}.video-playlist--end .video-playlist__control--next,.video-playlist--start .video-playlist__control--prev{opacity:0;pointer-events:none}.video-playlist__inner{margin:0;font-size:0;white-space:nowrap;padding-right:0.625rem}@media (min-width: 30em){.video-playlist__inner{padding-right:1.25rem}}@media (max-width: 61.24em){.video-playlist__inner{overflow-x:scroll;overflow-y:hidden;-webkit-overflow-scrolling:touch;-webkit-transform:none !important;transform:none !important}}@media (min-width: 61.25em){.video-playlist__inner{padding-right:0;transition:-webkit-transform .4s ease-out;transition:transform .4s ease-out;transition:transform .4s ease-out, -webkit-transform .4s ease-out}}.video-playlist__inner::-webkit-scrollbar{display:none}.video-playlist__inner .video-playlist__item{background-color:#121212}.video-playlist__control{display:none}@media (min-width: 61.25em){.video-playlist__control{width:8.75rem;position:absolute;display:block;top:0;bottom:0;z-index:2;cursor:pointer}.video-playlist__control:hover .video-playlist__icon,.video-playlist__control:focus .video-playlist__icon{background-color:#ffe500}.video-playlist__control:hover .video-playlist__icon svg,.video-playlist__control:focus .video-playlist__icon svg{fill:#121212}}.video-playlist__control--prev{left:0}@media (min-width: 71.25em){.video-playlist__control--prev{width:11.25rem}.has-page-skin .video-playlist__control--prev{width:8.75rem}}@media (min-width: 81.25em){.video-playlist__control--prev{width:16.25rem}.has-page-skin .video-playlist__control--prev{width:8.75rem}}.video-playlist__control--prev .video-playlist__icon{right:1.25rem}.video-playlist__control--prev .video-playlist__icon svg{margin-left:-0.125rem}.video-playlist__control--next{right:0}@media (min-width: 71.25em){.video-playlist__control--next{width:16.25rem}.has-page-skin .video-playlist__control--next{width:8.75rem}}@media (min-width: 81.25em){.video-playlist__control--next{width:21.25rem}.has-page-skin .video-playlist__control--next{width:8.75rem}}.video-playlist__control--next .video-playlist__icon{left:1.25rem}.video-playlist__control--next .video-playlist__icon svg{margin-right:-0.125rem}.video-playlist__icon{position:absolute;top:0;bottom:0;width:1.875rem;height:1.875rem;margin:auto;border-radius:50%;background-color:rgba(0,0,0,0.5);text-align:center}.video-playlist__icon svg{fill:#ffffff;width:0.5625rem;height:1.875rem}.youtube-media-atom__play-button{background-color:#121212;border-radius:50%;color:transparent}.video-playlist__item{position:relative;display:inline-block;vertical-align:top;width:70%;background-color:#121212;margin-left:0.625rem;margin-bottom:0.75rem}@media (min-width: 30em){.video-playlist__item{margin-left:1.25rem}}@media (min-width: 61.25em){.video-playlist__item{width:43.75rem;margin:0}}@media (max-width: 46.24em){.video-playlist__item .video-container-overlay-link{z-index:3}}@media (min-width: 61.25em) and (max-width: 71.24em){.video-playlist__item--first{margin-left:8.75rem}.has-page-skin .video-playlist__item--first{margin-left:0}}@media (min-width: 71.25em){.video-playlist__item--first{margin-left:0}.has-page-skin .video-playlist__item--first{margin-left:0}}.video-playlist__item--active .vjs-big-play-button{display:block}.video-playlist__item--active .fc-item__video-fallback,.video-playlist__item--active .gu-media,.video-playlist__item--active .video-overlay{opacity:1}.fc-item--pillar-news.video-playlist__item.video-playlist__item--paid-for .fc-item__kicker,.fc-item--pillar-news.video-playlist__item.video-playlist__item--paid-for .video-overlay__duration{color:#69d1ca}.fc-item--pillar-news.video-playlist__item.video-playlist__item--paid-for .vjs-big-play-button .vjs-control-text{background-color:#69d1ca}.fc-item--pillar-news.video-playlist__item.video-playlist__item--paid-for .video-overlay{border-top-color:#69d1ca}.vjs-big-play-button .vjs-control-text,.youtube-media-atom__play-button.vjs-control-text{border-radius:50%;position:absolute;bottom:0.75rem;left:0.75rem;transition:-webkit-transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);transition:transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);transition:transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:3.75rem;height:3.75rem}.vjs-big-play-button .vjs-control-text .inline-play svg,.youtube-media-atom__play-button.vjs-control-text .inline-play svg{position:absolute;top:50%;left:49%;padding:0;margin:0;-webkit-transform:translate(-40%, -50%);transform:translate(-40%, -50%);fill:#ffffff;width:1.5rem}.fc-item--full-media-75-tablet .vjs-big-play-button .vjs-control-text,.fc-item--full-media-50-tablet .vjs-big-play-button .vjs-control-text,.fc-item--three-quarters-tablet .vjs-big-play-button .vjs-control-text,.fc-item--half-tablet .vjs-big-play-button .vjs-control-text,.fc-item--full-media-75-tablet .youtube-media-atom__play-button.vjs-control-text,.fc-item--full-media-50-tablet .youtube-media-atom__play-button.vjs-control-text,.fc-item--three-quarters-tablet .youtube-media-atom__play-button.vjs-control-text,.fc-item--half-tablet .youtube-media-atom__play-button.vjs-control-text{border-radius:50%;position:absolute;bottom:0.625rem;left:0.625rem;transition:-webkit-transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);transition:transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);transition:transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:3.125rem;height:3.125rem}.fc-item--full-media-75-tablet .vjs-big-play-button .vjs-control-text .inline-play svg,.fc-item--full-media-50-tablet .vjs-big-play-button .vjs-control-text .inline-play svg,.fc-item--three-quarters-tablet .vjs-big-play-button .vjs-control-text .inline-play svg,.fc-item--half-tablet .vjs-big-play-button .vjs-control-text .inline-play svg,.fc-item--full-media-75-tablet .youtube-media-atom__play-button.vjs-control-text .inline-play svg,.fc-item--full-media-50-tablet .youtube-media-atom__play-button.vjs-control-text .inline-play svg,.fc-item--three-quarters-tablet .youtube-media-atom__play-button.vjs-control-text .inline-play svg,.fc-item--half-tablet .youtube-media-atom__play-button.vjs-control-text .inline-play svg{position:absolute;top:50%;left:49%;padding:0;margin:0;-webkit-transform:translate(-40%, -50%);transform:translate(-40%, -50%);fill:#ffffff;width:1.25rem}@media (min-width: 30em){.fc-item--full-media-75-tablet .vjs-big-play-button .vjs-control-text,.fc-item--full-media-50-tablet .vjs-big-play-button .vjs-control-text,.fc-item--three-quarters-tablet .vjs-big-play-button .vjs-control-text,.fc-item--half-tablet .vjs-big-play-button .vjs-control-text,.fc-item--full-media-75-tablet .youtube-media-atom__play-button.vjs-control-text,.fc-item--full-media-50-tablet .youtube-media-atom__play-button.vjs-control-text,.fc-item--three-quarters-tablet .youtube-media-atom__play-button.vjs-control-text,.fc-item--half-tablet .youtube-media-atom__play-button.vjs-control-text{border-radius:50%;position:absolute;bottom:0.75rem;left:0.75rem;transition:-webkit-transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);transition:transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);transition:transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:3.75rem;height:3.75rem}.fc-item--full-media-75-tablet .vjs-big-play-button .vjs-control-text .inline-play svg,.fc-item--full-media-50-tablet .vjs-big-play-button .vjs-control-text .inline-play svg,.fc-item--three-quarters-tablet .vjs-big-play-button .vjs-control-text .inline-play svg,.fc-item--half-tablet .vjs-big-play-button .vjs-control-text .inline-play svg,.fc-item--full-media-75-tablet .youtube-media-atom__play-button.vjs-control-text .inline-play svg,.fc-item--full-media-50-tablet .youtube-media-atom__play-button.vjs-control-text .inline-play svg,.fc-item--three-quarters-tablet .youtube-media-atom__play-button.vjs-control-text .inline-play svg,.fc-item--half-tablet .youtube-media-atom__play-button.vjs-control-text .inline-play svg{position:absolute;top:50%;left:49%;padding:0;margin:0;-webkit-transform:translate(-40%, -50%);transform:translate(-40%, -50%);fill:#ffffff;width:1.5rem}}.fc-item--third-tablet .vjs-big-play-button .vjs-control-text,.fc-item--third-tablet .youtube-media-atom__play-button.vjs-control-text{border-radius:50%;position:absolute;bottom:0.625rem;left:0.625rem;transition:-webkit-transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);transition:transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);transition:transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:3.125rem;height:3.125rem}.fc-item--third-tablet .vjs-big-play-button .vjs-control-text .inline-play svg,.fc-item--third-tablet .youtube-media-atom__play-button.vjs-control-text .inline-play svg{position:absolute;top:50%;left:49%;padding:0;margin:0;-webkit-transform:translate(-40%, -50%);transform:translate(-40%, -50%);fill:#ffffff;width:1.25rem}@media (min-width: 30em) and (max-width: 46.24em){.fc-item--third-tablet .vjs-big-play-button .vjs-control-text,.fc-item--third-tablet .youtube-media-atom__play-button.vjs-control-text{border-radius:50%;position:absolute;bottom:0.75rem;left:0.75rem;transition:-webkit-transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);transition:transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);transition:transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:3.75rem;height:3.75rem}.fc-item--third-tablet .vjs-big-play-button .vjs-control-text .inline-play svg,.fc-item--third-tablet .youtube-media-atom__play-button.vjs-control-text .inline-play svg{position:absolute;top:50%;left:49%;padding:0;margin:0;-webkit-transform:translate(-40%, -50%);transform:translate(-40%, -50%);fill:#ffffff;width:1.5rem}}@media (min-width: 46.25em){.fc-item--standard-tablet .vjs-big-play-button .vjs-control-text,.fc-item--standard-tablet .youtube-media-atom__play-button.vjs-control-text{border-radius:50%;position:absolute;bottom:0.525rem;left:0.525rem;transition:-webkit-transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);transition:transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);transition:transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:2.625rem;height:2.625rem}.fc-item--standard-tablet .vjs-big-play-button .vjs-control-text .inline-play svg,.fc-item--standard-tablet .youtube-media-atom__play-button.vjs-control-text .inline-play svg{position:absolute;top:50%;left:49%;padding:0;marg\\\",\\\"body_is_truncated\\\":true,\\\"code\\\":200,\\\"headers_list\\\":[[\\\"Accept-Ranges\\\",\\\"bytes\\\"],[\\\"Age\\\",\\\"124\\\"],[\\\"Cache-Control\\\",\\\"max-age=60, stale-while-revalidate=6, stale-if-error=864000, private,no-transform\\\"],[\\\"Content-Length\\\",\\\"1063252\\\"],[\\\"Content-Security-Policy\\\",\\\"default-src https:; script-src https: 'unsafe-inline' 'unsafe-eval' blob: 'unsafe-inline'; frame-src https: data:; style-src https: 'unsafe-inline'; img-src https: data: blob:; media-src https: data: blob:; font-src https: data:; connect-src https: wss: blob:; child-src https: blob:; object-src 'none'; base-uri https:\\\\/\\\\/*.gracenote.com\\\"],[\\\"Content-Type\\\",\\\"text\\\\/html; charset=UTF-8\\\"],[\\\"Date\\\",\\\"Thu, 10 Nov 2022 10:09:18 GMT\\\"],[\\\"Etag\\\",\\\"W\\\\/\\\\\\\"hash-8716927810522215298\\\\\\\"\\\"],[\\\"Feature-Policy\\\",\\\"camera 'none'; microphone 'none'; midi 'none'; geolocation 'none'\\\"],[\\\"Link\\\",\\\"<https:\\\\/\\\\/assets.guim.co.uk\\\\/stylesheets\\\\/2d0779d877d57475b954545ae07253b6\\\\/facia.garnett.css>; rel=preload; as=style; nopush,<https:\\\\/\\\\/assets.guim.co.uk\\\\/polyfill.io\\\\/v3\\\\/polyfill.min.js?rum=0&features=es6,es7,es2017,default-3.6,HTMLPictureElement,IntersectionObserver,IntersectionObserverEntry,fetch,navigator.sendBeacon,performance.now,Object.fromEntries,Promise.allSettled&flags=gated&callback=guardianPolyfilled&unknown=polyfill&clearCache=5>; rel=preload; as=script; nopush,<https:\\\\/\\\\/assets.guim.co.uk\\\\/javascripts\\\\/70cbe56e9560dcdb706b\\\\/graun.standard.js>; rel=preload; as=script; nopush\\\"],[\\\"Onion-Location\\\",\\\"https:\\\\/\\\\/www.guardian2zotagl6tmjucg3lrhxdk4dw3lhbqnkvvkywawy3oqfoprid.onion\\\\/international\\\"],[\\\"Permissions-Policy\\\",\\\"camera=(), microphone=(), midi=(), geolocation=(), interest-cohort=()\\\"],[\\\"Referrer-Policy\\\",\\\"no-referrer-when-downgrade\\\"],[\\\"Set-Cookie\\\",\\\"GU_mvt_id=989184; expires=Wed, 08 Feb 2023 10:09:18 GMT; path=\\\\/; domain=.theguardian.com; Secure\\\"],[\\\"Set-Cookie\\\",\\\"GU_geo_country=SG; path=\\\\/; Secure\\\"],[\\\"Strict-Transport-Security\\\",\\\"max-age=63072000; includeSubDomains; preload\\\"],[\\\"Vary\\\",\\\"Accept-Encoding,User-Agent\\\"],[\\\"X-Content-Type-Options\\\",\\\"nosniff\\\"],[\\\"X-Frame-Options\\\",\\\"SAMEORIGIN\\\"],[\\\"X-Gu-Edition\\\",\\\"int\\\"],[\\\"X-Timer\\\",\\\"S1668074958.363145,VS0,VE3\\\"],[\\\"X-Xss-Protection\\\",\\\"1; mode=block\\\"]],\\\"headers\\\":{\\\"Accept-Ranges\\\":\\\"bytes\\\",\\\"Age\\\":\\\"124\\\",\\\"Cache-Control\\\":\\\"max-age=60, stale-while-revalidate=6, stale-if-error=864000, private,no-transform\\\",\\\"Content-Length\\\":\\\"1063252\\\",\\\"Content-Security-Policy\\\":\\\"default-src https:; script-src https: 'unsafe-inline' 'unsafe-eval' blob: 'unsafe-inline'; frame-src https: data:; style-src https: 'unsafe-inline'; img-src https: data: blob:; media-src https: data: blob:; font-src https: data:; connect-src https: wss: blob:; child-src https: blob:; object-src 'none'; base-uri https:\\\\/\\\\/*.gracenote.com\\\",\\\"Content-Type\\\":\\\"text\\\\/html; charset=UTF-8\\\",\\\"Date\\\":\\\"Thu, 10 Nov 2022 10:09:18 GMT\\\",\\\"Etag\\\":\\\"W\\\\/\\\\\\\"hash-8716927810522215298\\\\\\\"\\\",\\\"Feature-Policy\\\":\\\"camera 'none'; microphone 'none'; midi 'none'; geolocation 'none'\\\",\\\"Link\\\":\\\"<https:\\\\/\\\\/assets.guim.co.uk\\\\/stylesheets\\\\/2d0779d877d57475b954545ae07253b6\\\\/facia.garnett.css>; rel=preload; as=style; nopush,<https:\\\\/\\\\/assets.guim.co.uk\\\\/polyfill.io\\\\/v3\\\\/polyfill.min.js?rum=0&features=es6,es7,es2017,default-3.6,HTMLPictureElement,IntersectionObserver,IntersectionObserverEntry,fetch,navigator.sendBeacon,performance.now,Object.fromEntries,Promise.allSettled&flags=gated&callback=guardianPolyfilled&unknown=polyfill&clearCache=5>; rel=preload; as=script; nopush,<https:\\\\/\\\\/assets.guim.co.uk\\\\/javascripts\\\\/70cbe56e9560dcdb706b\\\\/graun.standard.js>; rel=preload; as=script; nopush\\\",\\\"Onion-Location\\\":\\\"https:\\\\/\\\\/www.guardian2zotagl6tmjucg3lrhxdk4dw3lhbqnkvvkywawy3oqfoprid.onion\\\\/international\\\",\\\"Permissions-Policy\\\":\\\"camera=(), microphone=(), midi=(), geolocation=(), interest-cohort=()\\\",\\\"Referrer-Policy\\\":\\\"no-referrer-when-downgrade\\\",\\\"Set-Cookie\\\":\\\"GU_mvt_id=989184; expires=Wed, 08 Feb 2023 10:09:18 GMT; path=\\\\/; domain=.theguardian.com; Secure\\\",\\\"Strict-Transport-Security\\\":\\\"max-age=63072000; includeSubDomains; preload\\\",\\\"Vary\\\":\\\"Accept-Encoding,User-Agent\\\",\\\"X-Content-Type-Options\\\":\\\"nosniff\\\",\\\"X-Frame-Options\\\":\\\"SAMEORIGIN\\\",\\\"X-Gu-Edition\\\":\\\"int\\\",\\\"X-Timer\\\":\\\"S1668074958.363145,VS0,VE3\\\",\\\"X-Xss-Protection\\\":\\\"1; mode=block\\\"}},\\\"t\\\":0.8139505},{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US,en;q=0.9\\\"],[\\\"Host\\\",\\\"www.theguardian.com\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/96.0.4664.110 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US,en;q=0.9\\\",\\\"Host\\\":\\\"www.theguardian.com\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/96.0.4664.110 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"https:\\\\/\\\\/www.theguardian.com\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":302,\\\"headers_list\\\":[[\\\"Accept-Ranges\\\",\\\"bytes\\\"],[\\\"Cache-Control\\\",\\\"max-age=0,no-transform\\\"],[\\\"Content-Length\\\",\\\"0\\\"],[\\\"Content-Security-Policy\\\",\\\"default-src https:; script-src https: 'unsafe-inline' 'unsafe-eval' blob: 'unsafe-inline'; frame-src https: data:; style-src https: 'unsafe-inline'; img-src https: data: blob:; media-src https: data: blob:; font-src https: data:; connect-src https: wss: blob:; child-src https: blob:; object-src 'none'; base-uri https:\\\\/\\\\/*.gracenote.com\\\"],[\\\"Date\\\",\\\"Thu, 10 Nov 2022 10:09:18 GMT\\\"],[\\\"Feature-Policy\\\",\\\"camera 'none'; microphone 'none'; midi 'none'; geolocation 'none'\\\"],[\\\"Location\\\",\\\"\\\\/international\\\"],[\\\"Permissions-Policy\\\",\\\"camera=(), microphone=(), midi=(), geolocation=(), interest-cohort=()\\\"],[\\\"Referrer-Policy\\\",\\\"no-referrer-when-downgrade\\\"],[\\\"Retry-After\\\",\\\"0\\\"],[\\\"Set-Cookie\\\",\\\"GU_mvt_id=989184; expires=Wed, 08 Feb 2023 10:09:18 GMT; path=\\\\/; domain=.theguardian.com; Secure\\\"],[\\\"Set-Cookie\\\",\\\"GU_geo_country=SG; path=\\\\/; Secure\\\"],[\\\"Strict-Transport-Security\\\",\\\"max-age=63072000; includeSubDomains; preload\\\"],[\\\"X-Content-Type-Options\\\",\\\"nosniff\\\"],[\\\"X-Frame-Options\\\",\\\"SAMEORIGIN\\\"],[\\\"X-Gu-Edition\\\",\\\"int\\\"],[\\\"X-Timer\\\",\\\"S1668074958.325045,VS0,VE0\\\"],[\\\"X-Xss-Protection\\\",\\\"1; mode=block\\\"]],\\\"headers\\\":{\\\"Accept-Ranges\\\":\\\"bytes\\\",\\\"Cache-Control\\\":\\\"max-age=0,no-transform\\\",\\\"Content-Length\\\":\\\"0\\\",\\\"Content-Security-Policy\\\":\\\"default-src https:; script-src https: 'unsafe-inline' 'unsafe-eval' blob: 'unsafe-inline'; frame-src https: data:; style-src https: 'unsafe-inline'; img-src https: data: blob:; media-src https: data: blob:; font-src https: data:; connect-src https: wss: blob:; child-src https: blob:; object-src 'none'; base-uri https:\\\\/\\\\/*.gracenote.com\\\",\\\"Date\\\":\\\"Thu, 10 Nov 2022 10:09:18 GMT\\\",\\\"Feature-Policy\\\":\\\"camera 'none'; microphone 'none'; midi 'none'; geolocation 'none'\\\",\\\"Location\\\":\\\"\\\\/international\\\",\\\"Permissions-Policy\\\":\\\"camera=(), microphone=(), midi=(), geolocation=(), interest-cohort=()\\\",\\\"Referrer-Policy\\\":\\\"no-referrer-when-downgrade\\\",\\\"Retry-After\\\":\\\"0\\\",\\\"Set-Cookie\\\":\\\"GU_mvt_id=989184; expires=Wed, 08 Feb 2023 10:09:18 GMT; path=\\\\/; domain=.theguardian.com; Secure\\\",\\\"Strict-Transport-Security\\\":\\\"max-age=63072000; includeSubDomains; preload\\\",\\\"X-Content-Type-Options\\\":\\\"nosniff\\\",\\\"X-Frame-Options\\\":\\\"SAMEORIGIN\\\",\\\"X-Gu-Edition\\\":\\\"int\\\",\\\"X-Timer\\\":\\\"S1668074958.325045,VS0,VE0\\\",\\\"X-Xss-Protection\\\":\\\"1; mode=block\\\"}},\\\"t\\\":0.7199977}],\\\"http_experiment_failure\\\":null,\\\"body_length_match\\\":null,\\\"body_proportion\\\":0,\\\"status_code_match\\\":true,\\\"headers_match\\\":true,\\\"title_match\\\":null,\\\"accessible\\\":true,\\\"blocking\\\":false,\\\"x_status\\\":1,\\\"x_dns_runtime\\\":20979300,\\\"x_th_runtime\\\":516838300,\\\"x_tcptls_runtime\\\":180032900,\\\"x_http_runtime\\\":232735300},\\\"test_name\\\":\\\"web_connectivity\\\",\\\"test_runtime\\\":0.9554328,\\\"test_start_time\\\":\\\"2022-11-10 10:07:53\\\",\\\"test_version\\\":\\\"0.4.1\\\"}\\n\",\"category_code\":\"NEWS\",\"verification_status\":\"unverified\"}" +} \ No newline at end of file diff --git a/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20221110102858.395748_US_telegram_b2b51fffce62b986_full-true.json b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20221110102858.395748_US_telegram_b2b51fffce62b986_full-true.json new file mode 100644 index 000000000..015604da4 --- /dev/null +++ b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20221110102858.395748_US_telegram_b2b51fffce62b986_full-true.json @@ -0,0 +1,5 @@ +{ + "status": 200, + "contentType": "application/json", + "body": "{\"input\":\"\",\"measurement_start_time\":\"2022-11-10T10:28:56Z\",\"measurement_uid\":\"20221110102858.395748_US_telegram_b2b51fffce62b986\",\"report_id\":\"20221110T102855Z_telegram_US_7018_n1_HKJ2sF9m0lP7JMsW\",\"test_name\":\"telegram\",\"test_start_time\":\"2022-11-10T10:28:55Z\",\"probe_asn\":7018,\"probe_cc\":\"US\",\"scores\":\"{\\\"blocking_general\\\":0.0,\\\"blocking_global\\\":0.0,\\\"blocking_country\\\":0.0,\\\"blocking_isp\\\":0.0,\\\"blocking_local\\\":0.0,\\\"web_failure\\\":null,\\\"accessible_endpoints\\\":15,\\\"unreachable_endpoints\\\":0,\\\"http_success_cnt\\\":12,\\\"http_failure_cnt\\\":0}\",\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"raw_measurement\":\"{\\\"annotations\\\":{\\\"engine_name\\\":\\\"ooniprobe-engine\\\",\\\"engine_version\\\":\\\"3.10.0-beta.3\\\",\\\"platform\\\":\\\"linux\\\"},\\\"data_format_version\\\":\\\"0.2.0\\\",\\\"extensions\\\":{\\\"dnst\\\":0,\\\"httpt\\\":0,\\\"netevents\\\":0,\\\"tcpconnect\\\":0,\\\"tlshandshake\\\":0,\\\"tunnel\\\":0},\\\"input\\\":null,\\\"measurement_start_time\\\":\\\"2022-11-10 10:28:56\\\",\\\"probe_asn\\\":\\\"AS7018\\\",\\\"probe_cc\\\":\\\"US\\\",\\\"probe_ip\\\":\\\"127.0.0.1\\\",\\\"probe_network_name\\\":\\\"AT&T Services, Inc.\\\",\\\"report_id\\\":\\\"20221110T102855Z_telegram_US_7018_n1_HKJ2sF9m0lP7JMsW\\\",\\\"resolver_asn\\\":\\\"AS7018\\\",\\\"resolver_ip\\\":\\\"12.121.91.19\\\",\\\"resolver_network_name\\\":\\\"AT&T Services, Inc.\\\",\\\"software_name\\\":\\\"iThena-ooniprobe\\\",\\\"software_version\\\":\\\"1.0.0\\\",\\\"test_keys\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failed_operation\\\":null,\\\"failure\\\":null,\\\"network_events\\\":[{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":0.000251663},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":0.000263237},{\\\"address\\\":\\\"149.154.175.50:80\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.104130477},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_headers\\\",\\\"t\\\":0.10421381},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_request\\\",\\\"t\\\":0.104215069},{\\\"failure\\\":null,\\\"num_bytes\\\":300,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.104237513},{\\\"failure\\\":null,\\\"num_bytes\\\":324,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.195710642},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_first_response_byte\\\",\\\"t\\\":0.195720105},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_metadata\\\",\\\"t\\\":0.195811826},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_body_snapshot\\\",\\\"t\\\":0.195936787},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":0.195938083},{\\\"failure\\\":\\\"unknown_failure: read tcp [scrubbed]->[scrubbed]: use of closed network connection\\\",\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.196634703},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":0.000726342},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":0.000731582},{\\\"address\\\":\\\"149.154.175.100:80\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.103835352},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_headers\\\",\\\"t\\\":0.103984868},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_request\\\",\\\"t\\\":0.103987146},{\\\"failure\\\":null,\\\"num_bytes\\\":301,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.104076941},{\\\"failure\\\":null,\\\"num_bytes\\\":324,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.197166437},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_first_response_byte\\\",\\\"t\\\":0.197172196},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_metadata\\\",\\\"t\\\":0.197215659},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_body_snapshot\\\",\\\"t\\\":0.197255417},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":0.197256084},{\\\"failure\\\":\\\"unknown_failure: read tcp [scrubbed]->[scrubbed]: use of closed network connection\\\",\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.197617098},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":0.000967838},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":0.000972283},{\\\"address\\\":\\\"149.154.167.51:80\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.151806396},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_headers\\\",\\\"t\\\":0.151972319},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_request\\\",\\\"t\\\":0.151974893},{\\\"failure\\\":null,\\\"num_bytes\\\":300,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.152047115},{\\\"failure\\\":null,\\\"num_bytes\\\":337,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.311721424},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_first_response_byte\\\",\\\"t\\\":0.311732442},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_metadata\\\",\\\"t\\\":0.311823997},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_body_snapshot\\\",\\\"t\\\":0.311998957},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":0.312000272},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":0.196784516},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":0.196795294},{\\\"address\\\":\\\"149.154.167.91:80\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.363820523},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_headers\\\",\\\"t\\\":0.363981855},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_request\\\",\\\"t\\\":0.363984373},{\\\"failure\\\":null,\\\"num_bytes\\\":300,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.364029576},{\\\"failure\\\":null,\\\"num_bytes\\\":337,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.523734867},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_first_response_byte\\\",\\\"t\\\":0.523745052},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_metadata\\\",\\\"t\\\":0.523829495},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_body_snapshot\\\",\\\"t\\\":0.523939327},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":0.523940827},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":0.197734504},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":0.197740504},{\\\"address\\\":\\\"149.154.171.5:80\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.4118024},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_headers\\\",\\\"t\\\":0.411941158},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_request\\\",\\\"t\\\":0.411943824},{\\\"failure\\\":null,\\\"num_bytes\\\":299,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.411983435},{\\\"failure\\\":null,\\\"num_bytes\\\":337,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.616088002},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_first_response_byte\\\",\\\"t\\\":0.616092983},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_metadata\\\",\\\"t\\\":0.616145298},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_body_snapshot\\\",\\\"t\\\":0.616282444},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":0.616284129},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":0.312211195},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":0.312244121},{\\\"address\\\":\\\"95.161.76.100:80\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.475806859},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_headers\\\",\\\"t\\\":0.475953413},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_request\\\",\\\"t\\\":0.475955783},{\\\"failure\\\":null,\\\"num_bytes\\\":299,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.475999357},{\\\"failure\\\":null,\\\"num_bytes\\\":324,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.63970826},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_first_response_byte\\\",\\\"t\\\":0.639717705},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_metadata\\\",\\\"t\\\":0.639795259},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_body_snapshot\\\",\\\"t\\\":0.639847981},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":0.639849666},{\\\"failure\\\":\\\"unknown_failure: read tcp [scrubbed]->[scrubbed]: use of closed network connection\\\",\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.649320909},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":0.524072566},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":0.524082584},{\\\"address\\\":\\\"149.154.175.50:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.615822672},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_headers\\\",\\\"t\\\":0.616015373},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_request\\\",\\\"t\\\":0.616018429},{\\\"failure\\\":null,\\\"num_bytes\\\":304,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.616063021},{\\\"failure\\\":null,\\\"num_bytes\\\":337,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.707716573},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_first_response_byte\\\",\\\"t\\\":0.707728054},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_metadata\\\",\\\"t\\\":0.70783859},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_body_snapshot\\\",\\\"t\\\":0.707955977},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":0.707957385},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":0.656014727},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":0.656041875},{\\\"address\\\":\\\"149.154.175.100:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.735816012},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_headers\\\",\\\"t\\\":0.735956955},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_request\\\",\\\"t\\\":0.735959566},{\\\"failure\\\":null,\\\"num_bytes\\\":305,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.736004787},{\\\"failure\\\":null,\\\"num_bytes\\\":324,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.820643693},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_first_response_byte\\\",\\\"t\\\":0.820654155},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_metadata\\\",\\\"t\\\":0.820749432},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_body_snapshot\\\",\\\"t\\\":0.820826524},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":0.820827764},{\\\"failure\\\":\\\"unknown_failure: read tcp [scrubbed]->[scrubbed]: use of closed network connection\\\",\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.821410127},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":0.616476108},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":0.6164857},{\\\"address\\\":\\\"149.154.167.51:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.775823144},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_headers\\\",\\\"t\\\":0.775986327},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_request\\\",\\\"t\\\":0.775988901},{\\\"failure\\\":null,\\\"num_bytes\\\":304,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.776049289},{\\\"failure\\\":null,\\\"num_bytes\\\":324,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.95173068},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_first_response_byte\\\",\\\"t\\\":0.95174168},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_metadata\\\",\\\"t\\\":0.95183142},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_body_snapshot\\\",\\\"t\\\":0.951886123},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":0.951887604},{\\\"failure\\\":\\\"unknown_failure: read tcp [scrubbed]->[scrubbed]: use of closed network connection\\\",\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.952321339},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":0.708106105},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":0.708116734},{\\\"address\\\":\\\"149.154.167.91:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.85983302},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_headers\\\",\\\"t\\\":0.860004333},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_request\\\",\\\"t\\\":0.86000674},{\\\"failure\\\":null,\\\"num_bytes\\\":304,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.860050999},{\\\"failure\\\":null,\\\"num_bytes\\\":337,\\\"operation\\\":\\\"read\\\",\\\"t\\\":1.01972179},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_first_response_byte\\\",\\\"t\\\":1.01973453},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_metadata\\\",\\\"t\\\":1.019831622},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_body_snapshot\\\",\\\"t\\\":1.019939991},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":1.019941602},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":0.821549143},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":0.821560254},{\\\"address\\\":\\\"149.154.171.5:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":1.027782275},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_headers\\\",\\\"t\\\":1.02791768},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_request\\\",\\\"t\\\":1.027920291},{\\\"failure\\\":null,\\\"num_bytes\\\":303,\\\"operation\\\":\\\"write\\\",\\\"t\\\":1.027965531},{\\\"failure\\\":null,\\\"num_bytes\\\":324,\\\"operation\\\":\\\"read\\\",\\\"t\\\":1.231712177},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_first_response_byte\\\",\\\"t\\\":1.231723603},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_metadata\\\",\\\"t\\\":1.231813769},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_body_snapshot\\\",\\\"t\\\":1.231875601},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":1.231876823},{\\\"failure\\\":\\\"unknown_failure: read tcp [scrubbed]->[scrubbed]: use of closed network connection\\\",\\\"operation\\\":\\\"read\\\",\\\"t\\\":1.232501871},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":0.952458837},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":0.952469356},{\\\"address\\\":\\\"95.161.76.100:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":1.107789001},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_headers\\\",\\\"t\\\":1.107936036},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_request\\\",\\\"t\\\":1.10793861},{\\\"failure\\\":null,\\\"num_bytes\\\":303,\\\"operation\\\":\\\"write\\\",\\\"t\\\":1.107983128},{\\\"failure\\\":null,\\\"num_bytes\\\":324,\\\"operation\\\":\\\"read\\\",\\\"t\\\":1.2677022519999999},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_first_response_byte\\\",\\\"t\\\":1.2677096780000001},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_metadata\\\",\\\"t\\\":1.267806621},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_body_snapshot\\\",\\\"t\\\":1.26791236},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":1.267913638},{\\\"failure\\\":\\\"unknown_failure: read tcp [scrubbed]->[scrubbed]: use of closed network connection\\\",\\\"operation\\\":\\\"read\\\",\\\"t\\\":1.2683725209999999},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":1.232641387},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":1.232651924},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":1.232738886},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":1.244006606},{\\\"address\\\":\\\"149.154.167.99:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":1.39581865},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_start\\\",\\\"t\\\":1.395834649},{\\\"failure\\\":null,\\\"num_bytes\\\":286,\\\"operation\\\":\\\"write\\\",\\\"t\\\":1.396412531},{\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"t\\\":1.55171725},{\\\"failure\\\":null,\\\"num_bytes\\\":5179,\\\"operation\\\":\\\"read\\\",\\\"t\\\":1.5524681660000001},{\\\"failure\\\":null,\\\"num_bytes\\\":80,\\\"operation\\\":\\\"write\\\",\\\"t\\\":1.554994503},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_done\\\",\\\"t\\\":1.555030428},{\\\"failure\\\":null,\\\"num_bytes\\\":86,\\\"operation\\\":\\\"write\\\",\\\"t\\\":1.555177371},{\\\"failure\\\":null,\\\"num_bytes\\\":206,\\\"operation\\\":\\\"write\\\",\\\"t\\\":1.555327683},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_headers\\\",\\\"t\\\":1.555329832},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_request\\\",\\\"t\\\":1.555330535},{\\\"failure\\\":null,\\\"num_bytes\\\":2534,\\\"operation\\\":\\\"read\\\",\\\"t\\\":1.707728423},{\\\"failure\\\":null,\\\"num_bytes\\\":31,\\\"operation\\\":\\\"write\\\",\\\"t\\\":1.707860348},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_first_response_byte\\\",\\\"t\\\":1.707997679},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_metadata\\\",\\\"t\\\":1.7081702509999999},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_body_snapshot\\\",\\\"t\\\":1.70820425},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":1.708205658},{\\\"failure\\\":null,\\\"num_bytes\\\":24,\\\"operation\\\":\\\"write\\\",\\\"t\\\":1.708266342},{\\\"failure\\\":\\\"unknown_failure: read tcp [scrubbed]->[scrubbed]: use of closed network connection\\\",\\\"operation\\\":\\\"read\\\",\\\"t\\\":1.708661596},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":1.020083266},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":1.020092933},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":1.020176284},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":1.096067102},{\\\"address\\\":\\\"149.154.167.99:80\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":1.244195362},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_headers\\\",\\\"t\\\":1.244321601},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_request\\\",\\\"t\\\":1.2443241569999999},{\\\"failure\\\":null,\\\"num_bytes\\\":282,\\\"operation\\\":\\\"write\\\",\\\"t\\\":1.244359249},{\\\"failure\\\":null,\\\"num_bytes\\\":369,\\\"operation\\\":\\\"read\\\",\\\"t\\\":1.399696413},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_first_response_byte\\\",\\\"t\\\":1.399708653},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_metadata\\\",\\\"t\\\":1.399782504},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_body_snapshot\\\",\\\"t\\\":1.399824707},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":1.3998259659999999},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":1.39986791},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":1.399875614},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":1.399959946},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":1.400023705},{\\\"address\\\":\\\"149.154.167.99:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":1.55547657},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_start\\\",\\\"t\\\":1.555485237},{\\\"failure\\\":null,\\\"num_bytes\\\":286,\\\"operation\\\":\\\"write\\\",\\\"t\\\":1.5600551569999999},{\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"t\\\":1.7197150589999999},{\\\"failure\\\":null,\\\"num_bytes\\\":5179,\\\"operation\\\":\\\"read\\\",\\\"t\\\":1.720477364},{\\\"failure\\\":null,\\\"num_bytes\\\":80,\\\"operation\\\":\\\"write\\\",\\\"t\\\":1.722865091},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_done\\\",\\\"t\\\":1.722902258},{\\\"failure\\\":null,\\\"num_bytes\\\":86,\\\"operation\\\":\\\"write\\\",\\\"t\\\":1.7230587370000001},{\\\"failure\\\":null,\\\"num_bytes\\\":226,\\\"operation\\\":\\\"write\\\",\\\"t\\\":1.7232142160000001},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_headers\\\",\\\"t\\\":1.723216179},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_request\\\",\\\"t\\\":1.72321729},{\\\"failure\\\":null,\\\"num_bytes\\\":2534,\\\"operation\\\":\\\"read\\\",\\\"t\\\":1.875716659},{\\\"failure\\\":null,\\\"num_bytes\\\":31,\\\"operation\\\":\\\"write\\\",\\\"t\\\":1.875850916},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_first_response_byte\\\",\\\"t\\\":1.875914952},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_metadata\\\",\\\"t\\\":1.8761278940000001},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_body_snapshot\\\",\\\"t\\\":1.87614382},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":1.87614506},{\\\"failure\\\":\\\"unknown_failure: read tcp [scrubbed]->[scrubbed]: use of closed network connection\\\",\\\"operation\\\":\\\"read\\\",\\\"t\\\":1.8766997380000001},{\\\"failure\\\":null,\\\"num_bytes\\\":24,\\\"operation\\\":\\\"write\\\",\\\"t\\\":1.87675546},{\\\"failure\\\":\\\"unknown_failure: read tcp [scrubbed]->[scrubbed]: use of closed network connection\\\",\\\"operation\\\":\\\"read\\\",\\\"t\\\":1.8770264559999998}],\\\"queries\\\":[{\\\"answers\\\":[{\\\"asn\\\":62041,\\\"as_org_name\\\":\\\"Telegram Messenger Inc\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"149.154.167.99\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"web.telegram.org\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":1.244006606},{\\\"answers\\\":[{\\\"asn\\\":62041,\\\"as_org_name\\\":\\\"Telegram Messenger Inc\\\",\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"2001:67c:4e8:f004::9\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"web.telegram.org\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":1.244006606},{\\\"answers\\\":[{\\\"asn\\\":62041,\\\"as_org_name\\\":\\\"Telegram Messenger Inc\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"149.154.167.99\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"web.telegram.org\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":1.096067102},{\\\"answers\\\":[{\\\"asn\\\":62041,\\\"as_org_name\\\":\\\"Telegram Messenger Inc\\\",\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"2001:67c:4e8:f004::9\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"web.telegram.org\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":1.096067102},{\\\"answers\\\":[{\\\"asn\\\":62041,\\\"as_org_name\\\":\\\"Telegram Messenger Inc\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"149.154.167.99\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"web.telegram.org\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":1.400023705},{\\\"answers\\\":[{\\\"asn\\\":62041,\\\"as_org_name\\\":\\\"Telegram Messenger Inc\\\",\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"2001:67c:4e8:f004::9\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"web.telegram.org\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":1.400023705}],\\\"requests\\\":[{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US;q=0.8,en;q=0.5\\\"],[\\\"Host\\\",\\\"149.154.175.50\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"Host\\\":\\\"149.154.175.50\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"POST\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"http:\\\\/\\\\/149.154.175.50\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"<html>\\\\r\\\\n<head><title>404 Not Found<\\\\/title><\\\\/head>\\\\r\\\\n<body bgcolor=\\\\\\\"white\\\\\\\">\\\\r\\\\n<center><h1>404 Not Found<\\\\/h1><\\\\/center>\\\\r\\\\n<hr><center>nginx\\\\/0.3.33<\\\\/center>\\\\r\\\\n<\\\\/body>\\\\r\\\\n<\\\\/html>\\\\r\\\\n\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":404,\\\"headers_list\\\":[[\\\"Connection\\\",\\\"keep-alive\\\"],[\\\"Content-Length\\\",\\\"169\\\"],[\\\"Content-Type\\\",\\\"text\\\\/html\\\"],[\\\"Date\\\",\\\"Thu, 10 Nov 2022 10:28:56 GMT\\\"],[\\\"Server\\\",\\\"nginx\\\\/0.3.33\\\"]],\\\"headers\\\":{\\\"Connection\\\":\\\"keep-alive\\\",\\\"Content-Length\\\":\\\"169\\\",\\\"Content-Type\\\":\\\"text\\\\/html\\\",\\\"Date\\\":\\\"Thu, 10 Nov 2022 10:28:56 GMT\\\",\\\"Server\\\":\\\"nginx\\\\/0.3.33\\\"}},\\\"t\\\":0.000251663},{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US;q=0.8,en;q=0.5\\\"],[\\\"Host\\\",\\\"149.154.175.100\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"Host\\\":\\\"149.154.175.100\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"POST\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"http:\\\\/\\\\/149.154.175.100\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"<html>\\\\r\\\\n<head><title>404 Not Found<\\\\/title><\\\\/head>\\\\r\\\\n<body bgcolor=\\\\\\\"white\\\\\\\">\\\\r\\\\n<center><h1>404 Not Found<\\\\/h1><\\\\/center>\\\\r\\\\n<hr><center>nginx\\\\/0.3.33<\\\\/center>\\\\r\\\\n<\\\\/body>\\\\r\\\\n<\\\\/html>\\\\r\\\\n\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":404,\\\"headers_list\\\":[[\\\"Connection\\\",\\\"keep-alive\\\"],[\\\"Content-Length\\\",\\\"169\\\"],[\\\"Content-Type\\\",\\\"text\\\\/html\\\"],[\\\"Date\\\",\\\"Thu, 10 Nov 2022 10:28:56 GMT\\\"],[\\\"Server\\\",\\\"nginx\\\\/0.3.33\\\"]],\\\"headers\\\":{\\\"Connection\\\":\\\"keep-alive\\\",\\\"Content-Length\\\":\\\"169\\\",\\\"Content-Type\\\":\\\"text\\\\/html\\\",\\\"Date\\\":\\\"Thu, 10 Nov 2022 10:28:56 GMT\\\",\\\"Server\\\":\\\"nginx\\\\/0.3.33\\\"}},\\\"t\\\":0.000726342},{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US;q=0.8,en;q=0.5\\\"],[\\\"Host\\\",\\\"149.154.167.51\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"Host\\\":\\\"149.154.167.51\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"POST\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"http:\\\\/\\\\/149.154.167.51\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"<html>\\\\r\\\\n<head><title>501 Not Implemented<\\\\/title><\\\\/head>\\\\r\\\\n<body bgcolor=\\\\\\\"white\\\\\\\">\\\\r\\\\n<center><h1>501 Not Implemented<\\\\/h1><\\\\/center>\\\\r\\\\n<hr><center>nginx\\\\/0.3.33<\\\\/center>\\\\r\\\\n<\\\\/body>\\\\r\\\\n<\\\\/html>\\\\r\\\\n\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":501,\\\"headers_list\\\":[[\\\"Content-Length\\\",\\\"181\\\"],[\\\"Content-Type\\\",\\\"text\\\\/html\\\"],[\\\"Date\\\",\\\"Thu, 10 Nov 2022 10:28:56 GMT\\\"],[\\\"Server\\\",\\\"nginx\\\\/0.3.33\\\"]],\\\"headers\\\":{\\\"Content-Length\\\":\\\"181\\\",\\\"Content-Type\\\":\\\"text\\\\/html\\\",\\\"Date\\\":\\\"Thu, 10 Nov 2022 10:28:56 GMT\\\",\\\"Server\\\":\\\"nginx\\\\/0.3.33\\\"}},\\\"t\\\":0.000967838},{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US;q=0.8,en;q=0.5\\\"],[\\\"Host\\\",\\\"149.154.167.91\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"Host\\\":\\\"149.154.167.91\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"POST\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"http:\\\\/\\\\/149.154.167.91\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"<html>\\\\r\\\\n<head><title>501 Not Implemented<\\\\/title><\\\\/head>\\\\r\\\\n<body bgcolor=\\\\\\\"white\\\\\\\">\\\\r\\\\n<center><h1>501 Not Implemented<\\\\/h1><\\\\/center>\\\\r\\\\n<hr><center>nginx\\\\/0.3.33<\\\\/center>\\\\r\\\\n<\\\\/body>\\\\r\\\\n<\\\\/html>\\\\r\\\\n\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":501,\\\"headers_list\\\":[[\\\"Content-Length\\\",\\\"181\\\"],[\\\"Content-Type\\\",\\\"text\\\\/html\\\"],[\\\"Date\\\",\\\"Thu, 10 Nov 2022 10:28:56 GMT\\\"],[\\\"Server\\\",\\\"nginx\\\\/0.3.33\\\"]],\\\"headers\\\":{\\\"Content-Length\\\":\\\"181\\\",\\\"Content-Type\\\":\\\"text\\\\/html\\\",\\\"Date\\\":\\\"Thu, 10 Nov 2022 10:28:56 GMT\\\",\\\"Server\\\":\\\"nginx\\\\/0.3.33\\\"}},\\\"t\\\":0.196784516},{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US;q=0.8,en;q=0.5\\\"],[\\\"Host\\\",\\\"149.154.171.5\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"Host\\\":\\\"149.154.171.5\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"POST\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"http:\\\\/\\\\/149.154.171.5\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"<html>\\\\r\\\\n<head><title>501 Not Implemented<\\\\/title><\\\\/head>\\\\r\\\\n<body bgcolor=\\\\\\\"white\\\\\\\">\\\\r\\\\n<center><h1>501 Not Implemented<\\\\/h1><\\\\/center>\\\\r\\\\n<hr><center>nginx\\\\/0.3.33<\\\\/center>\\\\r\\\\n<\\\\/body>\\\\r\\\\n<\\\\/html>\\\\r\\\\n\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":501,\\\"headers_list\\\":[[\\\"Content-Length\\\",\\\"181\\\"],[\\\"Content-Type\\\",\\\"text\\\\/html\\\"],[\\\"Date\\\",\\\"Thu, 10 Nov 2022 10:28:56 GMT\\\"],[\\\"Server\\\",\\\"nginx\\\\/0.3.33\\\"]],\\\"headers\\\":{\\\"Content-Length\\\":\\\"181\\\",\\\"Content-Type\\\":\\\"text\\\\/html\\\",\\\"Date\\\":\\\"Thu, 10 Nov 2022 10:28:56 GMT\\\",\\\"Server\\\":\\\"nginx\\\\/0.3.33\\\"}},\\\"t\\\":0.197734504},{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US;q=0.8,en;q=0.5\\\"],[\\\"Host\\\",\\\"95.161.76.100\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"Host\\\":\\\"95.161.76.100\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"POST\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"http:\\\\/\\\\/95.161.76.100\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"<html>\\\\r\\\\n<head><title>404 Not Found<\\\\/title><\\\\/head>\\\\r\\\\n<body bgcolor=\\\\\\\"white\\\\\\\">\\\\r\\\\n<center><h1>404 Not Found<\\\\/h1><\\\\/center>\\\\r\\\\n<hr><center>nginx\\\\/0.3.33<\\\\/center>\\\\r\\\\n<\\\\/body>\\\\r\\\\n<\\\\/html>\\\\r\\\\n\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":404,\\\"headers_list\\\":[[\\\"Connection\\\",\\\"keep-alive\\\"],[\\\"Content-Length\\\",\\\"169\\\"],[\\\"Content-Type\\\",\\\"text\\\\/html\\\"],[\\\"Date\\\",\\\"Thu, 10 Nov 2022 10:28:56 GMT\\\"],[\\\"Server\\\",\\\"nginx\\\\/0.3.33\\\"]],\\\"headers\\\":{\\\"Connection\\\":\\\"keep-alive\\\",\\\"Content-Length\\\":\\\"169\\\",\\\"Content-Type\\\":\\\"text\\\\/html\\\",\\\"Date\\\":\\\"Thu, 10 Nov 2022 10:28:56 GMT\\\",\\\"Server\\\":\\\"nginx\\\\/0.3.33\\\"}},\\\"t\\\":0.312211195},{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US;q=0.8,en;q=0.5\\\"],[\\\"Host\\\",\\\"149.154.175.50:443\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"Host\\\":\\\"149.154.175.50:443\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"POST\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"http:\\\\/\\\\/149.154.175.50:443\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"<html>\\\\r\\\\n<head><title>501 Not Implemented<\\\\/title><\\\\/head>\\\\r\\\\n<body bgcolor=\\\\\\\"white\\\\\\\">\\\\r\\\\n<center><h1>501 Not Implemented<\\\\/h1><\\\\/center>\\\\r\\\\n<hr><center>nginx\\\\/0.3.33<\\\\/center>\\\\r\\\\n<\\\\/body>\\\\r\\\\n<\\\\/html>\\\\r\\\\n\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":501,\\\"headers_list\\\":[[\\\"Content-Length\\\",\\\"181\\\"],[\\\"Content-Type\\\",\\\"text\\\\/html\\\"],[\\\"Date\\\",\\\"Thu, 10 Nov 2022 10:28:56 GMT\\\"],[\\\"Server\\\",\\\"nginx\\\\/0.3.33\\\"]],\\\"headers\\\":{\\\"Content-Length\\\":\\\"181\\\",\\\"Content-Type\\\":\\\"text\\\\/html\\\",\\\"Date\\\":\\\"Thu, 10 Nov 2022 10:28:56 GMT\\\",\\\"Server\\\":\\\"nginx\\\\/0.3.33\\\"}},\\\"t\\\":0.524072566},{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US;q=0.8,en;q=0.5\\\"],[\\\"Host\\\",\\\"149.154.175.100:443\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"Host\\\":\\\"149.154.175.100:443\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"POST\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"http:\\\\/\\\\/149.154.175.100:443\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"<html>\\\\r\\\\n<head><title>404 Not Found<\\\\/title><\\\\/head>\\\\r\\\\n<body bgcolor=\\\\\\\"white\\\\\\\">\\\\r\\\\n<center><h1>404 Not Found<\\\\/h1><\\\\/center>\\\\r\\\\n<hr><center>nginx\\\\/0.3.33<\\\\/center>\\\\r\\\\n<\\\\/body>\\\\r\\\\n<\\\\/html>\\\\r\\\\n\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":404,\\\"headers_list\\\":[[\\\"Connection\\\",\\\"keep-alive\\\"],[\\\"Content-Length\\\",\\\"169\\\"],[\\\"Content-Type\\\",\\\"text\\\\/html\\\"],[\\\"Date\\\",\\\"Thu, 10 Nov 2022 10:28:56 GMT\\\"],[\\\"Server\\\",\\\"nginx\\\\/0.3.33\\\"]],\\\"headers\\\":{\\\"Connection\\\":\\\"keep-alive\\\",\\\"Content-Length\\\":\\\"169\\\",\\\"Content-Type\\\":\\\"text\\\\/html\\\",\\\"Date\\\":\\\"Thu, 10 Nov 2022 10:28:56 GMT\\\",\\\"Server\\\":\\\"nginx\\\\/0.3.33\\\"}},\\\"t\\\":0.656014727},{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US;q=0.8,en;q=0.5\\\"],[\\\"Host\\\",\\\"149.154.167.51:443\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"Host\\\":\\\"149.154.167.51:443\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"POST\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"http:\\\\/\\\\/149.154.167.51:443\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"<html>\\\\r\\\\n<head><title>404 Not Found<\\\\/title><\\\\/head>\\\\r\\\\n<body bgcolor=\\\\\\\"white\\\\\\\">\\\\r\\\\n<center><h1>404 Not Found<\\\\/h1><\\\\/center>\\\\r\\\\n<hr><center>nginx\\\\/0.3.33<\\\\/center>\\\\r\\\\n<\\\\/body>\\\\r\\\\n<\\\\/html>\\\\r\\\\n\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":404,\\\"headers_list\\\":[[\\\"Connection\\\",\\\"keep-alive\\\"],[\\\"Content-Length\\\",\\\"169\\\"],[\\\"Content-Type\\\",\\\"text\\\\/html\\\"],[\\\"Date\\\",\\\"Thu, 10 Nov 2022 10:28:56 GMT\\\"],[\\\"Server\\\",\\\"nginx\\\\/0.3.33\\\"]],\\\"headers\\\":{\\\"Connection\\\":\\\"keep-alive\\\",\\\"Content-Length\\\":\\\"169\\\",\\\"Content-Type\\\":\\\"text\\\\/html\\\",\\\"Date\\\":\\\"Thu, 10 Nov 2022 10:28:56 GMT\\\",\\\"Server\\\":\\\"nginx\\\\/0.3.33\\\"}},\\\"t\\\":0.616476108},{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US;q=0.8,en;q=0.5\\\"],[\\\"Host\\\",\\\"149.154.167.91:443\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"Host\\\":\\\"149.154.167.91:443\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"POST\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"http:\\\\/\\\\/149.154.167.91:443\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"<html>\\\\r\\\\n<head><title>501 Not Implemented<\\\\/title><\\\\/head>\\\\r\\\\n<body bgcolor=\\\\\\\"white\\\\\\\">\\\\r\\\\n<center><h1>501 Not Implemented<\\\\/h1><\\\\/center>\\\\r\\\\n<hr><center>nginx\\\\/0.3.33<\\\\/center>\\\\r\\\\n<\\\\/body>\\\\r\\\\n<\\\\/html>\\\\r\\\\n\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":501,\\\"headers_list\\\":[[\\\"Content-Length\\\",\\\"181\\\"],[\\\"Content-Type\\\",\\\"text\\\\/html\\\"],[\\\"Date\\\",\\\"Thu, 10 Nov 2022 10:28:56 GMT\\\"],[\\\"Server\\\",\\\"nginx\\\\/0.3.33\\\"]],\\\"headers\\\":{\\\"Content-Length\\\":\\\"181\\\",\\\"Content-Type\\\":\\\"text\\\\/html\\\",\\\"Date\\\":\\\"Thu, 10 Nov 2022 10:28:56 GMT\\\",\\\"Server\\\":\\\"nginx\\\\/0.3.33\\\"}},\\\"t\\\":0.708106105},{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US;q=0.8,en;q=0.5\\\"],[\\\"Host\\\",\\\"149.154.171.5:443\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"Host\\\":\\\"149.154.171.5:443\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"POST\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"http:\\\\/\\\\/149.154.171.5:443\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"<html>\\\\r\\\\n<head><title>404 Not Found<\\\\/title><\\\\/head>\\\\r\\\\n<body bgcolor=\\\\\\\"white\\\\\\\">\\\\r\\\\n<center><h1>404 Not Found<\\\\/h1><\\\\/center>\\\\r\\\\n<hr><center>nginx\\\\/0.3.33<\\\\/center>\\\\r\\\\n<\\\\/body>\\\\r\\\\n<\\\\/html>\\\\r\\\\n\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":404,\\\"headers_list\\\":[[\\\"Connection\\\",\\\"keep-alive\\\"],[\\\"Content-Length\\\",\\\"169\\\"],[\\\"Content-Type\\\",\\\"text\\\\/html\\\"],[\\\"Date\\\",\\\"Thu, 10 Nov 2022 10:28:57 GMT\\\"],[\\\"Server\\\",\\\"nginx\\\\/0.3.33\\\"]],\\\"headers\\\":{\\\"Connection\\\":\\\"keep-alive\\\",\\\"Content-Length\\\":\\\"169\\\",\\\"Content-Type\\\":\\\"text\\\\/html\\\",\\\"Date\\\":\\\"Thu, 10 Nov 2022 10:28:57 GMT\\\",\\\"Server\\\":\\\"nginx\\\\/0.3.33\\\"}},\\\"t\\\":0.821549143},{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US;q=0.8,en;q=0.5\\\"],[\\\"Host\\\",\\\"95.161.76.100:443\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"Host\\\":\\\"95.161.76.100:443\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"POST\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"http:\\\\/\\\\/95.161.76.100:443\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"<html>\\\\r\\\\n<head><title>404 Not Found<\\\\/title><\\\\/head>\\\\r\\\\n<body bgcolor=\\\\\\\"white\\\\\\\">\\\\r\\\\n<center><h1>404 Not Found<\\\\/h1><\\\\/center>\\\\r\\\\n<hr><center>nginx\\\\/0.3.33<\\\\/center>\\\\r\\\\n<\\\\/body>\\\\r\\\\n<\\\\/html>\\\\r\\\\n\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":404,\\\"headers_list\\\":[[\\\"Connection\\\",\\\"keep-alive\\\"],[\\\"Content-Length\\\",\\\"169\\\"],[\\\"Content-Type\\\",\\\"text\\\\/html\\\"],[\\\"Date\\\",\\\"Thu, 10 Nov 2022 10:28:57 GMT\\\"],[\\\"Server\\\",\\\"nginx\\\\/0.3.33\\\"]],\\\"headers\\\":{\\\"Connection\\\":\\\"keep-alive\\\",\\\"Content-Length\\\":\\\"169\\\",\\\"Content-Type\\\":\\\"text\\\\/html\\\",\\\"Date\\\":\\\"Thu, 10 Nov 2022 10:28:57 GMT\\\",\\\"Server\\\":\\\"nginx\\\\/0.3.33\\\"}},\\\"t\\\":0.952458837},{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US;q=0.8,en;q=0.5\\\"],[\\\"Host\\\",\\\"web.telegram.org\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"Host\\\":\\\"web.telegram.org\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"https:\\\\/\\\\/web.telegram.org\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"<!doctype html><html lang=en manifest=webogram.appcache ng-csp xmlns:ng=http:\\\\/\\\\/angularjs.org id=ng-app style=\\\\\\\"display: none;\\\\\\\"><head><meta charset=utf-8><meta name=viewport content=\\\\\\\"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no\\\\\\\"><title>Telegram Web<\\\\/title><link rel=stylesheet href=css\\\\/app.css><link rel=manifest href=manifest.webapp.json><link rel=icon href=favicon.ico type=image\\\\/x-icon><link rel=apple-touch-icon href=img\\\\/iphone_home120.png><link rel=apple-touch-icon sizes=120x120 href=img\\\\/iphone_home120.png><link rel=apple-touch-startup-image media=\\\\\\\"(device-width: 320px)\\\\\\\" href=img\\\\/iphone_startup.png><meta name=apple-mobile-web-app-title content=\\\\\\\"Telegram Web\\\\\\\"><meta name=mobile-web-app-capable content=yes><meta name=apple-mobile-web-app-capable content=yes><meta name=apple-mobile-web-app-status-bar-style content=black-translucent><meta name=theme-color content=#497495><meta name=google content=notranslate><meta property=og:title content=\\\\\\\"Telegram Web\\\\\\\"><meta property=og:url content=\\\\\\\"https:\\\\/\\\\/web.telegram.org\\\\/\\\\\\\"><meta property=og:image:width content=236><meta property=og:image:height content=236><meta property=og:image content=https:\\\\/\\\\/web.telegram.org\\\\/img\\\\/logo_share.png><meta property=og:site_name content=\\\\\\\"Telegram Web\\\\\\\"><meta property=description content=\\\\\\\"Welcome to the Web application of Telegram messenger. See https:\\\\/\\\\/github.com\\\\/zhukov\\\\/webogram for more info.\\\\\\\"><meta property=og:description content=\\\\\\\"Welcome to the Web application of Telegram messenger. See https:\\\\/\\\\/github.com\\\\/zhukov\\\\/webogram for more info.\\\\\\\"><\\\\/head><body><div class=page_wrap ng-view><\\\\/div><div id=notify_sound><\\\\/div><script src=js\\\\/app.js><\\\\/script><\\\\/body><\\\\/html>\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":200,\\\"headers_list\\\":[[\\\"Accept-Ranges\\\",\\\"bytes\\\"],[\\\"Cache-Control\\\",\\\"max-age=3600\\\"],[\\\"Content-Length\\\",\\\"1672\\\"],[\\\"Content-Type\\\",\\\"text\\\\/html\\\"],[\\\"Date\\\",\\\"Thu, 10 Nov 2022 10:28:57 GMT\\\"],[\\\"Etag\\\",\\\"\\\\\\\"5fdcb452-688\\\\\\\"\\\"],[\\\"Expires\\\",\\\"Thu, 10 Nov 2022 11:28:57 GMT\\\"],[\\\"Last-Modified\\\",\\\"Fri, 18 Dec 2020 13:53:22 GMT\\\"],[\\\"Server\\\",\\\"nginx\\\\/1.18.0\\\"],[\\\"X-Frame-Options\\\",\\\"deny\\\"]],\\\"headers\\\":{\\\"Accept-Ranges\\\":\\\"bytes\\\",\\\"Cache-Control\\\":\\\"max-age=3600\\\",\\\"Content-Length\\\":\\\"1672\\\",\\\"Content-Type\\\":\\\"text\\\\/html\\\",\\\"Date\\\":\\\"Thu, 10 Nov 2022 10:28:57 GMT\\\",\\\"Etag\\\":\\\"\\\\\\\"5fdcb452-688\\\\\\\"\\\",\\\"Expires\\\":\\\"Thu, 10 Nov 2022 11:28:57 GMT\\\",\\\"Last-Modified\\\":\\\"Fri, 18 Dec 2020 13:53:22 GMT\\\",\\\"Server\\\":\\\"nginx\\\\/1.18.0\\\",\\\"X-Frame-Options\\\":\\\"deny\\\"}},\\\"t\\\":1.232641387},{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US;q=0.8,en;q=0.5\\\"],[\\\"Host\\\",\\\"web.telegram.org\\\"],[\\\"Referer\\\",\\\"http:\\\\/\\\\/web.telegram.org\\\\/\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"Host\\\":\\\"web.telegram.org\\\",\\\"Referer\\\":\\\"http:\\\\/\\\\/web.telegram.org\\\\/\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"https:\\\\/\\\\/web.telegram.org\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"<!doctype html><html lang=en manifest=webogram.appcache ng-csp xmlns:ng=http:\\\\/\\\\/angularjs.org id=ng-app style=\\\\\\\"display: none;\\\\\\\"><head><meta charset=utf-8><meta name=viewport content=\\\\\\\"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no\\\\\\\"><title>Telegram Web<\\\\/title><link rel=stylesheet href=css\\\\/app.css><link rel=manifest href=manifest.webapp.json><link rel=icon href=favicon.ico type=image\\\\/x-icon><link rel=apple-touch-icon href=img\\\\/iphone_home120.png><link rel=apple-touch-icon sizes=120x120 href=img\\\\/iphone_home120.png><link rel=apple-touch-startup-image media=\\\\\\\"(device-width: 320px)\\\\\\\" href=img\\\\/iphone_startup.png><meta name=apple-mobile-web-app-title content=\\\\\\\"Telegram Web\\\\\\\"><meta name=mobile-web-app-capable content=yes><meta name=apple-mobile-web-app-capable content=yes><meta name=apple-mobile-web-app-status-bar-style content=black-translucent><meta name=theme-color content=#497495><meta name=google content=notranslate><meta property=og:title content=\\\\\\\"Telegram Web\\\\\\\"><meta property=og:url content=\\\\\\\"https:\\\\/\\\\/web.telegram.org\\\\/\\\\\\\"><meta property=og:image:width content=236><meta property=og:image:height content=236><meta property=og:image content=https:\\\\/\\\\/web.telegram.org\\\\/img\\\\/logo_share.png><meta property=og:site_name content=\\\\\\\"Telegram Web\\\\\\\"><meta property=description content=\\\\\\\"Welcome to the Web application of Telegram messenger. See https:\\\\/\\\\/github.com\\\\/zhukov\\\\/webogram for more info.\\\\\\\"><meta property=og:description content=\\\\\\\"Welcome to the Web application of Telegram messenger. See https:\\\\/\\\\/github.com\\\\/zhukov\\\\/webogram for more info.\\\\\\\"><\\\\/head><body><div class=page_wrap ng-view><\\\\/div><div id=notify_sound><\\\\/div><script src=js\\\\/app.js><\\\\/script><\\\\/body><\\\\/html>\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":200,\\\"headers_list\\\":[[\\\"Accept-Ranges\\\",\\\"bytes\\\"],[\\\"Cache-Control\\\",\\\"max-age=3600\\\"],[\\\"Content-Length\\\",\\\"1672\\\"],[\\\"Content-Type\\\",\\\"text\\\\/html\\\"],[\\\"Date\\\",\\\"Thu, 10 Nov 2022 10:28:57 GMT\\\"],[\\\"Etag\\\",\\\"\\\\\\\"5fdcb452-688\\\\\\\"\\\"],[\\\"Expires\\\",\\\"Thu, 10 Nov 2022 11:28:57 GMT\\\"],[\\\"Last-Modified\\\",\\\"Fri, 18 Dec 2020 13:53:22 GMT\\\"],[\\\"Server\\\",\\\"nginx\\\\/1.18.0\\\"],[\\\"X-Frame-Options\\\",\\\"deny\\\"]],\\\"headers\\\":{\\\"Accept-Ranges\\\":\\\"bytes\\\",\\\"Cache-Control\\\":\\\"max-age=3600\\\",\\\"Content-Length\\\":\\\"1672\\\",\\\"Content-Type\\\":\\\"text\\\\/html\\\",\\\"Date\\\":\\\"Thu, 10 Nov 2022 10:28:57 GMT\\\",\\\"Etag\\\":\\\"\\\\\\\"5fdcb452-688\\\\\\\"\\\",\\\"Expires\\\":\\\"Thu, 10 Nov 2022 11:28:57 GMT\\\",\\\"Last-Modified\\\":\\\"Fri, 18 Dec 2020 13:53:22 GMT\\\",\\\"Server\\\":\\\"nginx\\\\/1.18.0\\\",\\\"X-Frame-Options\\\":\\\"deny\\\"}},\\\"t\\\":1.39986791},{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US;q=0.8,en;q=0.5\\\"],[\\\"Host\\\",\\\"web.telegram.org\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"Host\\\":\\\"web.telegram.org\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"http:\\\\/\\\\/web.telegram.org\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"<html>\\\\r\\\\n<head><title>301 Moved Permanently<\\\\/title><\\\\/head>\\\\r\\\\n<body>\\\\r\\\\n<center><h1>301 Moved Permanently<\\\\/h1><\\\\/center>\\\\r\\\\n<hr><center>nginx\\\\/1.18.0<\\\\/center>\\\\r\\\\n<\\\\/body>\\\\r\\\\n<\\\\/html>\\\\r\\\\n\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":301,\\\"headers_list\\\":[[\\\"Connection\\\",\\\"keep-alive\\\"],[\\\"Content-Length\\\",\\\"169\\\"],[\\\"Content-Type\\\",\\\"text\\\\/html\\\"],[\\\"Date\\\",\\\"Thu, 10 Nov 2022 10:28:57 GMT\\\"],[\\\"Location\\\",\\\"https:\\\\/\\\\/web.telegram.org\\\\/\\\"],[\\\"Server\\\",\\\"nginx\\\\/1.18.0\\\"]],\\\"headers\\\":{\\\"Connection\\\":\\\"keep-alive\\\",\\\"Content-Length\\\":\\\"169\\\",\\\"Content-Type\\\":\\\"text\\\\/html\\\",\\\"Date\\\":\\\"Thu, 10 Nov 2022 10:28:57 GMT\\\",\\\"Location\\\":\\\"https:\\\\/\\\\/web.telegram.org\\\\/\\\",\\\"Server\\\":\\\"nginx\\\\/1.18.0\\\"}},\\\"t\\\":1.020083266}],\\\"tcp_connect\\\":[{\\\"ip\\\":\\\"149.154.175.50\\\",\\\"port\\\":80,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.104130477},{\\\"ip\\\":\\\"149.154.175.100\\\",\\\"port\\\":80,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.103835352},{\\\"ip\\\":\\\"149.154.167.51\\\",\\\"port\\\":80,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.151806396},{\\\"ip\\\":\\\"149.154.167.91\\\",\\\"port\\\":80,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.363820523},{\\\"ip\\\":\\\"149.154.171.5\\\",\\\"port\\\":80,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.4118024},{\\\"ip\\\":\\\"95.161.76.100\\\",\\\"port\\\":80,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.475806859},{\\\"ip\\\":\\\"149.154.175.50\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.615822672},{\\\"ip\\\":\\\"149.154.175.100\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.735816012},{\\\"ip\\\":\\\"149.154.167.51\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.775823144},{\\\"ip\\\":\\\"149.154.167.91\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.85983302},{\\\"ip\\\":\\\"149.154.171.5\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":1.027782275},{\\\"ip\\\":\\\"95.161.76.100\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":1.107789001},{\\\"ip\\\":\\\"149.154.167.99\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":1.39581865},{\\\"ip\\\":\\\"149.154.167.99\\\",\\\"port\\\":80,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":1.244195362},{\\\"ip\\\":\\\"149.154.167.99\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":1.55547657}],\\\"tls_handshakes\\\":[{\\\"cipher_suite\\\":\\\"TLS_AES_256_GCM_SHA384\\\",\\\"failure\\\":null,\\\"negotiated_protocol\\\":\\\"h2\\\",\\\"no_tls_verify\\\":false,\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIIGmzCCBYOgAwIBAgIJAKgeOknmnMZLMA0GCSqGSIb3DQEBCwUAMIG0MQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTEaMBgGA1UEChMRR29EYWRkeS5jb20sIEluYy4xLTArBgNVBAsTJGh0dHA6Ly9jZXJ0cy5nb2RhZGR5LmNvbS9yZXBvc2l0b3J5LzEzMDEGA1UEAxMqR28gRGFkZHkgU2VjdXJlIENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTIyMDgyOTAwMzkzNFoXDTIzMDkzMDAwMzkzNFowHTEbMBkGA1UEAwwSKi53ZWIudGVsZWdyYW0ub3JnMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1wRkux0GOYCXvEKeQDgPgdKgfXvXr8omUUj9uJh0+cOd8sfeVyBaxXfhZNAAWqJnOrkYPTxEvkHPQa7jS\\\\/aVd3MrUDMSRNGG6LuYWOGjGI700TBrPY5f64ApVwHMznP6r27z6wktyW5HzoEu\\\\/tU+XjeLneMvXT9kO3edX5v92dBLn7qRlkijHTol08prkr9hW1WO0atj5WmdyCuEaPbPmu08Gf29ygE1l1s3yJBjPdFccUB\\\\/qR67kWknTolnjU+QH8Hm4BRQsu1s7eRmDiuJNM2Aztp1\\\\/n5rOGHnspzMB9YAppb0aDiUljT+rH8IASQnRZKATiX66eEkY8b5+Od5KwIDAQABo4IDRDCCA0AwDAYDVR0TAQH\\\\/BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH\\\\/BAQDAgWgMDgGA1UdHwQxMC8wLaAroCmGJ2h0dHA6Ly9jcmwuZ29kYWRkeS5jb20vZ2RpZzJzMS00NDE4LmNybDBdBgNVHSAEVjBUMEgGC2CGSAGG\\\\/W0BBxcBMDkwNwYIKwYBBQUHAgEWK2h0dHA6Ly9jZXJ0aWZpY2F0ZXMuZ29kYWRkeS5jb20vcmVwb3NpdG9yeS8wCAYGZ4EMAQIBMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZ29kYWRkeS5jb20vMEAGCCsGAQUFBzAChjRodHRwOi8vY2VydGlmaWNhdGVzLmdvZGFkZHkuY29tL3JlcG9zaXRvcnkvZ2RpZzIuY3J0MB8GA1UdIwQYMBaAFEDCvSeOzDSDMKIz1\\\\/tss\\\\/C0LIDOMC8GA1UdEQQoMCaCEioud2ViLnRlbGVncmFtLm9yZ4IQd2ViLnRlbGVncmFtLm9yZzAdBgNVHQ4EFgQUR4ePZ7oUGAyMUSZM6BlIsW0jx5kwggF9BgorBgEEAdZ5AgQCBIIBbQSCAWkBZwB3AOg+0No+9QY1MudXKLyJa8kD08vREWvs62nhd31tBr1uAAABgucKGZUAAAQDAEgwRgIhAJ3lLLSdKsNtZAzzUpXh2u5dO4sz4Br19oeL6q6gaAkdAiEA0s0T0beLOBxwfBqIU1WQw+xAAX6YlLUX+iVgdNJHiHUAdQA1zxkbv7FsV78PrUxtQsu7ticgJlHqP+Eq76gDwzvWTAAAAYLnChrBAAAEAwBGMEQCIBsedQTSIPrKMe2GqDrSWNjb\\\\/ciKfqdAqLPzGEdKvf1OAiBnEJrMaeTLQqxHQfHmtl6o6P7G8E\\\\/GD+jwT7FuxNABgAB1AHoyjFTYty22IOo44FIe6YQWcDIThU070ivBOlejUutSAAABgucKG4MAAAQDAEYwRAIgfFvJYommOgz4mOLVCQrQwFqAYEIjrQmMkRwAJbbPHLUCIDHtqNXAmmNJlQL4Bc5pFOMH2HeQtjWOT\\\\/c1zIlgtY0NMA0GCSqGSIb3DQEBCwUAA4IBAQA2eUth3t2YKQwDp1M0pdqIiR7hWu3H+4Yv5hsvOnrGBoz8VNqt1AIUBd7GdOLPKPiMsTSTZL7fQU+YxMvIg+GD15sbHQ+KuaqQP2wBua+zfZ8EthuZ32Dwaq\\\\/m0fLAp+WVScDYG\\\\/x8QVC2DClD2UwKV7L6J7ReyR72IsXI6fEMFYnlMQTHK9DOA77f7+Q652Scd9yERTtY2SgTnTuBc1AthRQnmGv316WvI7Rv\\\\/MTxX3fNtwkfdGXOpPKP25cZ9nmlz4REOCZMoEoXYl6i9yzRyfRWR\\\\/hPMb1DDoT+QZz98GeIiUqdgsXEXFeMHnakFfnKuT34U2kxl7ZJdfA2Ryi6\\\",\\\"format\\\":\\\"base64\\\"},{\\\"data\\\":\\\"MIIE0DCCA7igAwIBAgIBBzANBgkqhkiG9w0BAQsFADCBgzELMAkGA1UEBhMCVVMxEDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxGjAYBgNVBAoTEUdvRGFkZHkuY29tLCBJbmMuMTEwLwYDVQQDEyhHbyBEYWRkeSBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTExMDUwMzA3MDAwMFoXDTMxMDUwMzA3MDAwMFowgbQxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMRowGAYDVQQKExFHb0RhZGR5LmNvbSwgSW5jLjEtMCsGA1UECxMkaHR0cDovL2NlcnRzLmdvZGFkZHkuY29tL3JlcG9zaXRvcnkvMTMwMQYDVQQDEypHbyBEYWRkeSBTZWN1cmUgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC54MsQ1K92vdSTYuswZLiBCGzDBNliF44v\\\\/z5lz4\\\\/OYuY8UhzaFkVLVat4a2ODYpDOD2lsmcgaFItMzEUz6ojcnqOvK\\\\/6AYZ15V8TPLvQ\\\\/MDxdR\\\\/yaFrzDN5ZBUY4RS1T4KL7QjL7wMDge87Am+GZHY23ecSZHjzhHU9FGHbTj3ADqRay9vHHZqm8A29vNMDp5T19MR\\\\/gd71vCxJ1gO7GyQ5HYpDNO6rPWJ0+tJYqlxvTV0KaudAVkV4i1RFXULSo6Pvi4vekyCgKUZMQWOlDxSq7neTOvDCAHf+jfBDnCaQJsY1L6d8EbyHSHyLmTGFBUNUtpTrw700kuH9zB0lL7AgMBAAGjggEaMIIBFjAPBgNVHRMBAf8EBTADAQH\\\\/MA4GA1UdDwEB\\\\/wQEAwIBBjAdBgNVHQ4EFgQUQMK9J47MNIMwojPX+2yz8LQsgM4wHwYDVR0jBBgwFoAUOpqFBxBnKLbv9r0FQW4gwZTaD94wNAYIKwYBBQUHAQEEKDAmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5nb2RhZGR5LmNvbS8wNQYDVR0fBC4wLDAqoCigJoYkaHR0cDovL2NybC5nb2RhZGR5LmNvbS9nZHJvb3QtZzIuY3JsMEYGA1UdIAQ\\\\/MD0wOwYEVR0gADAzMDEGCCsGAQUFBwIBFiVodHRwczovL2NlcnRzLmdvZGFkZHkuY29tL3JlcG9zaXRvcnkvMA0GCSqGSIb3DQEBCwUAA4IBAQAIfmyTEMg4uJapkEv\\\\/oV9PBO9sPpyIBslQj6Zz91cxG7685C\\\\/b+LrTW+C05+Z5Yg4MotdqY3MxtfWoSKQ7CC2iXZDXtHwlTxFWMMS2RJ17LJ3lXubvDGGqv+QqG+6EnriDfcFDzkSnE3ANkR\\\\/0yBOtg2DZ2HKocyQetawiDsoXiWJYRBuriSUBAA\\\\/NxBti21G00w9RKpv0vHP8ds42pM3Z2Czqrpv1KrKQ0U11GIo\\\\/ikGQI31bS\\\\/6kA1ibRrLDYGCD+H1QQc7CoZDDu+8CL9IVVO5EFdkKrqeKM+2xLXY2JtwE65\\\\/3YR8V3Idv7kaWKK2hJn0KCacuBKONvPi8BDAB\\\",\\\"format\\\":\\\"base64\\\"},{\\\"data\\\":\\\"MIIEfTCCA2WgAwIBAgIDG+cVMA0GCSqGSIb3DQEBCwUAMGMxCzAJBgNVBAYTAlVTMSEwHwYDVQQKExhUaGUgR28gRGFkZHkgR3JvdXAsIEluYy4xMTAvBgNVBAsTKEdvIERhZGR5IENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTQwMTAxMDcwMDAwWhcNMzEwNTMwMDcwMDAwWjCBgzELMAkGA1UEBhMCVVMxEDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxGjAYBgNVBAoTEUdvRGFkZHkuY29tLCBJbmMuMTEwLwYDVQQDEyhHbyBEYWRkeSBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAv3FiCPH6WTT3G8kYo\\\\/eASVjpIoMTpsUgQwE7hPHmhUmfJ+r2hBtOoLTbcJjHMgGxBT4HTu70+k8vWTAi56sZVmvigAf88xZ1gDlRe+X5NbZ0TqmNghPktj+pA4P6or6KFWp\\\\/3gvDthkUBcrqw6gElDtGfDIN8wBmIsiNaW02jBEYt9OyHGC0OPoCjM7T3UYH3go+6118yHz7sCtTpJJiaVElBWEaRIGMLKlDliPfrDqBmg4pxRyp6V0etp6eMAo5zvGIgPtLXcwy7IViQyU0AlYnAZG0O3AqP26x6JyIAX2f1PnbU21gnb8s51iruF9G\\\\/M7EGwM8CetJMVxpRrPgRwIDAQABo4IBFzCCARMwDwYDVR0TAQH\\\\/BAUwAwEB\\\\/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFDqahQcQZyi27\\\\/a9BUFuIMGU2g\\\\/eMB8GA1UdIwQYMBaAFNLEsNKR1EwRcbNhyz2h\\\\/t2oatTjMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZ29kYWRkeS5jb20vMDIGA1UdHwQrMCkwJ6AloCOGIWh0dHA6Ly9jcmwuZ29kYWRkeS5jb20vZ2Ryb290LmNybDBGBgNVHSAEPzA9MDsGBFUdIAAwMzAxBggrBgEFBQcCARYlaHR0cHM6Ly9jZXJ0cy5nb2RhZGR5LmNvbS9yZXBvc2l0b3J5LzANBgkqhkiG9w0BAQsFAAOCAQEAWQtTvZKGEacke+1bMc8dH2xwxbhuvk679r6XUOEwf7ooXGKUwuN+M\\\\/f7QnaF25UcjCJYdQkMiGVnOQoWCcWgOJekxSOTP7QYpgEGRJHjp2kntFolfzq3Ms3dhP8qOCkzpN1nsoX+oYggHFCJyNwq9kIDN0zmiN\\\\/VryTyscPfzLXs4Jlet0lUIDyUGAzHHFIYSaRt4bNYC8nY7NmuHDKOKHAN4v6mF56ED71XcLNa6R+ghlO773z\\\\/aQvgSMO3kwvIClTErF0UZzdsyqUvMQg3qm5vjLyb4lddJIGvl5echK1srDdMZvNhkREg5L4wn3qkKQmw4TRfZHcYQFHfjDCmrw==\\\",\\\"format\\\":\\\"base64\\\"},{\\\"data\\\":\\\"MIIEADCCAuigAwIBAgIBADANBgkqhkiG9w0BAQUFADBjMQswCQYDVQQGEwJVUzEhMB8GA1UEChMYVGhlIEdvIERhZGR5IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBEYWRkeSBDbGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA0MDYyOTE3MDYyMFoXDTM0MDYyOTE3MDYyMFowYzELMAkGA1UEBhMCVVMxITAfBgNVBAoTGFRoZSBHbyBEYWRkeSBHcm91cCwgSW5jLjExMC8GA1UECxMoR28gRGFkZHkgQ2xhc3MgMiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASAwDQYJKoZIhvcNAQEBBQADggENADCCAQgCggEBAN6d1+pXGEmhW+vXX0iG6r7d\\\\/+TvZxz0ZWizV3GgXne77ZtJ6XCAPVYYYwhv2vLM0D9\\\\/AlQiVBDYsoHUwHU9S3\\\\/Hd8M+eKsaA7Ugay9qK7HFiH7Eux6wwdhFJ2+qN1j3hybX2C32qRe3H3I2TqYXP2WYktsqbl2i\\\\/ojgC95\\\\/5Y0V4evLOtXiEqITLdiOr18SPaAIBQi2XKVlOARFmR6jYGB0xUGlcmIbYsUfb18aQr4CUWWoriMYavx4A6lNf4DD+qta\\\\/KFApMoZFv6yyO9ecw3ud72a9nmYvLEHZ6IVDd2gWMZEewo+YihfukEHU1jPEX44dMX4\\\\/7VpkI+EdOqXG68CAQOjgcAwgb0wHQYDVR0OBBYEFNLEsNKR1EwRcbNhyz2h\\\\/t2oatTjMIGNBgNVHSMEgYUwgYKAFNLEsNKR1EwRcbNhyz2h\\\\/t2oatTjoWekZTBjMQswCQYDVQQGEwJVUzEhMB8GA1UEChMYVGhlIEdvIERhZGR5IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBEYWRkeSBDbGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBADJL87LKPpH8EsahB4yOd6AzBhRckB4Y9wimPQoZ+YeAEW5p5JYXMP80kWNyOO7MHAGjHZQopDH2esRU1\\\\/blMVgDoszOYtuURXO1v0XJJLXVggKtI3lpjbi2Tc7PTMozI+gciKqdi0FuFskg5YmezTvacPd+mSYgFFQlq25zheabIZ0KbIIOqPjCDPoQHmyW74cNxA9hi63ugyuV+I6ShHI56yDqg+2DzZduCLzrTia2cyvk0\\\\/ZM\\\\/iZx4mERdEr\\\\/VxqHD3VILs9RaRegAhJhldXRQLIQTO7ErBBDpqWeCtWVYpoNz4iCxTIM5CufReYNnyicsbkqWletNw+vHX\\\\/bvZ8=\\\",\\\"format\\\":\\\"base64\\\"}],\\\"server_name\\\":\\\"web.telegram.org\\\",\\\"t\\\":1.555030428,\\\"tags\\\":null,\\\"tls_version\\\":\\\"TLSv1.3\\\"},{\\\"cipher_suite\\\":\\\"TLS_AES_256_GCM_SHA384\\\",\\\"failure\\\":null,\\\"negotiated_protocol\\\":\\\"h2\\\",\\\"no_tls_verify\\\":false,\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIIGmzCCBYOgAwIBAgIJAKgeOknmnMZLMA0GCSqGSIb3DQEBCwUAMIG0MQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTEaMBgGA1UEChMRR29EYWRkeS5jb20sIEluYy4xLTArBgNVBAsTJGh0dHA6Ly9jZXJ0cy5nb2RhZGR5LmNvbS9yZXBvc2l0b3J5LzEzMDEGA1UEAxMqR28gRGFkZHkgU2VjdXJlIENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTIyMDgyOTAwMzkzNFoXDTIzMDkzMDAwMzkzNFowHTEbMBkGA1UEAwwSKi53ZWIudGVsZWdyYW0ub3JnMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1wRkux0GOYCXvEKeQDgPgdKgfXvXr8omUUj9uJh0+cOd8sfeVyBaxXfhZNAAWqJnOrkYPTxEvkHPQa7jS\\\\/aVd3MrUDMSRNGG6LuYWOGjGI700TBrPY5f64ApVwHMznP6r27z6wktyW5HzoEu\\\\/tU+XjeLneMvXT9kO3edX5v92dBLn7qRlkijHTol08prkr9hW1WO0atj5WmdyCuEaPbPmu08Gf29ygE1l1s3yJBjPdFccUB\\\\/qR67kWknTolnjU+QH8Hm4BRQsu1s7eRmDiuJNM2Aztp1\\\\/n5rOGHnspzMB9YAppb0aDiUljT+rH8IASQnRZKATiX66eEkY8b5+Od5KwIDAQABo4IDRDCCA0AwDAYDVR0TAQH\\\\/BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH\\\\/BAQDAgWgMDgGA1UdHwQxMC8wLaAroCmGJ2h0dHA6Ly9jcmwuZ29kYWRkeS5jb20vZ2RpZzJzMS00NDE4LmNybDBdBgNVHSAEVjBUMEgGC2CGSAGG\\\\/W0BBxcBMDkwNwYIKwYBBQUHAgEWK2h0dHA6Ly9jZXJ0aWZpY2F0ZXMuZ29kYWRkeS5jb20vcmVwb3NpdG9yeS8wCAYGZ4EMAQIBMHYGCCsGAQUFBwEBBGowaDAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZ29kYWRkeS5jb20vMEAGCCsGAQUFBzAChjRodHRwOi8vY2VydGlmaWNhdGVzLmdvZGFkZHkuY29tL3JlcG9zaXRvcnkvZ2RpZzIuY3J0MB8GA1UdIwQYMBaAFEDCvSeOzDSDMKIz1\\\\/tss\\\\/C0LIDOMC8GA1UdEQQoMCaCEioud2ViLnRlbGVncmFtLm9yZ4IQd2ViLnRlbGVncmFtLm9yZzAdBgNVHQ4EFgQUR4ePZ7oUGAyMUSZM6BlIsW0jx5kwggF9BgorBgEEAdZ5AgQCBIIBbQSCAWkBZwB3AOg+0No+9QY1MudXKLyJa8kD08vREWvs62nhd31tBr1uAAABgucKGZUAAAQDAEgwRgIhAJ3lLLSdKsNtZAzzUpXh2u5dO4sz4Br19oeL6q6gaAkdAiEA0s0T0beLOBxwfBqIU1WQw+xAAX6YlLUX+iVgdNJHiHUAdQA1zxkbv7FsV78PrUxtQsu7ticgJlHqP+Eq76gDwzvWTAAAAYLnChrBAAAEAwBGMEQCIBsedQTSIPrKMe2GqDrSWNjb\\\\/ciKfqdAqLPzGEdKvf1OAiBnEJrMaeTLQqxHQfHmtl6o6P7G8E\\\\/GD+jwT7FuxNABgAB1AHoyjFTYty22IOo44FIe6YQWcDIThU070ivBOlejUutSAAABgucKG4MAAAQDAEYwRAIgfFvJYommOgz4mOLVCQrQwFqAYEIjrQmMkRwAJbbPHLUCIDHtqNXAmmNJlQL4Bc5pFOMH2HeQtjWOT\\\\/c1zIlgtY0NMA0GCSqGSIb3DQEBCwUAA4IBAQA2eUth3t2YKQwDp1M0pdqIiR7hWu3H+4Yv5hsvOnrGBoz8VNqt1AIUBd7GdOLPKPiMsTSTZL7fQU+YxMvIg+GD15sbHQ+KuaqQP2wBua+zfZ8EthuZ32Dwaq\\\\/m0fLAp+WVScDYG\\\\/x8QVC2DClD2UwKV7L6J7ReyR72IsXI6fEMFYnlMQTHK9DOA77f7+Q652Scd9yERTtY2SgTnTuBc1AthRQnmGv316WvI7Rv\\\\/MTxX3fNtwkfdGXOpPKP25cZ9nmlz4REOCZMoEoXYl6i9yzRyfRWR\\\\/hPMb1DDoT+QZz98GeIiUqdgsXEXFeMHnakFfnKuT34U2kxl7ZJdfA2Ryi6\\\",\\\"format\\\":\\\"base64\\\"},{\\\"data\\\":\\\"MIIE0DCCA7igAwIBAgIBBzANBgkqhkiG9w0BAQsFADCBgzELMAkGA1UEBhMCVVMxEDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxGjAYBgNVBAoTEUdvRGFkZHkuY29tLCBJbmMuMTEwLwYDVQQDEyhHbyBEYWRkeSBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTExMDUwMzA3MDAwMFoXDTMxMDUwMzA3MDAwMFowgbQxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMRowGAYDVQQKExFHb0RhZGR5LmNvbSwgSW5jLjEtMCsGA1UECxMkaHR0cDovL2NlcnRzLmdvZGFkZHkuY29tL3JlcG9zaXRvcnkvMTMwMQYDVQQDEypHbyBEYWRkeSBTZWN1cmUgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC54MsQ1K92vdSTYuswZLiBCGzDBNliF44v\\\\/z5lz4\\\\/OYuY8UhzaFkVLVat4a2ODYpDOD2lsmcgaFItMzEUz6ojcnqOvK\\\\/6AYZ15V8TPLvQ\\\\/MDxdR\\\\/yaFrzDN5ZBUY4RS1T4KL7QjL7wMDge87Am+GZHY23ecSZHjzhHU9FGHbTj3ADqRay9vHHZqm8A29vNMDp5T19MR\\\\/gd71vCxJ1gO7GyQ5HYpDNO6rPWJ0+tJYqlxvTV0KaudAVkV4i1RFXULSo6Pvi4vekyCgKUZMQWOlDxSq7neTOvDCAHf+jfBDnCaQJsY1L6d8EbyHSHyLmTGFBUNUtpTrw700kuH9zB0lL7AgMBAAGjggEaMIIBFjAPBgNVHRMBAf8EBTADAQH\\\\/MA4GA1UdDwEB\\\\/wQEAwIBBjAdBgNVHQ4EFgQUQMK9J47MNIMwojPX+2yz8LQsgM4wHwYDVR0jBBgwFoAUOpqFBxBnKLbv9r0FQW4gwZTaD94wNAYIKwYBBQUHAQEEKDAmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5nb2RhZGR5LmNvbS8wNQYDVR0fBC4wLDAqoCigJoYkaHR0cDovL2NybC5nb2RhZGR5LmNvbS9nZHJvb3QtZzIuY3JsMEYGA1UdIAQ\\\\/MD0wOwYEVR0gADAzMDEGCCsGAQUFBwIBFiVodHRwczovL2NlcnRzLmdvZGFkZHkuY29tL3JlcG9zaXRvcnkvMA0GCSqGSIb3DQEBCwUAA4IBAQAIfmyTEMg4uJapkEv\\\\/oV9PBO9sPpyIBslQj6Zz91cxG7685C\\\\/b+LrTW+C05+Z5Yg4MotdqY3MxtfWoSKQ7CC2iXZDXtHwlTxFWMMS2RJ17LJ3lXubvDGGqv+QqG+6EnriDfcFDzkSnE3ANkR\\\\/0yBOtg2DZ2HKocyQetawiDsoXiWJYRBuriSUBAA\\\\/NxBti21G00w9RKpv0vHP8ds42pM3Z2Czqrpv1KrKQ0U11GIo\\\\/ikGQI31bS\\\\/6kA1ibRrLDYGCD+H1QQc7CoZDDu+8CL9IVVO5EFdkKrqeKM+2xLXY2JtwE65\\\\/3YR8V3Idv7kaWKK2hJn0KCacuBKONvPi8BDAB\\\",\\\"format\\\":\\\"base64\\\"},{\\\"data\\\":\\\"MIIEfTCCA2WgAwIBAgIDG+cVMA0GCSqGSIb3DQEBCwUAMGMxCzAJBgNVBAYTAlVTMSEwHwYDVQQKExhUaGUgR28gRGFkZHkgR3JvdXAsIEluYy4xMTAvBgNVBAsTKEdvIERhZGR5IENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTQwMTAxMDcwMDAwWhcNMzEwNTMwMDcwMDAwWjCBgzELMAkGA1UEBhMCVVMxEDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxGjAYBgNVBAoTEUdvRGFkZHkuY29tLCBJbmMuMTEwLwYDVQQDEyhHbyBEYWRkeSBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAv3FiCPH6WTT3G8kYo\\\\/eASVjpIoMTpsUgQwE7hPHmhUmfJ+r2hBtOoLTbcJjHMgGxBT4HTu70+k8vWTAi56sZVmvigAf88xZ1gDlRe+X5NbZ0TqmNghPktj+pA4P6or6KFWp\\\\/3gvDthkUBcrqw6gElDtGfDIN8wBmIsiNaW02jBEYt9OyHGC0OPoCjM7T3UYH3go+6118yHz7sCtTpJJiaVElBWEaRIGMLKlDliPfrDqBmg4pxRyp6V0etp6eMAo5zvGIgPtLXcwy7IViQyU0AlYnAZG0O3AqP26x6JyIAX2f1PnbU21gnb8s51iruF9G\\\\/M7EGwM8CetJMVxpRrPgRwIDAQABo4IBFzCCARMwDwYDVR0TAQH\\\\/BAUwAwEB\\\\/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFDqahQcQZyi27\\\\/a9BUFuIMGU2g\\\\/eMB8GA1UdIwQYMBaAFNLEsNKR1EwRcbNhyz2h\\\\/t2oatTjMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZ29kYWRkeS5jb20vMDIGA1UdHwQrMCkwJ6AloCOGIWh0dHA6Ly9jcmwuZ29kYWRkeS5jb20vZ2Ryb290LmNybDBGBgNVHSAEPzA9MDsGBFUdIAAwMzAxBggrBgEFBQcCARYlaHR0cHM6Ly9jZXJ0cy5nb2RhZGR5LmNvbS9yZXBvc2l0b3J5LzANBgkqhkiG9w0BAQsFAAOCAQEAWQtTvZKGEacke+1bMc8dH2xwxbhuvk679r6XUOEwf7ooXGKUwuN+M\\\\/f7QnaF25UcjCJYdQkMiGVnOQoWCcWgOJekxSOTP7QYpgEGRJHjp2kntFolfzq3Ms3dhP8qOCkzpN1nsoX+oYggHFCJyNwq9kIDN0zmiN\\\\/VryTyscPfzLXs4Jlet0lUIDyUGAzHHFIYSaRt4bNYC8nY7NmuHDKOKHAN4v6mF56ED71XcLNa6R+ghlO773z\\\\/aQvgSMO3kwvIClTErF0UZzdsyqUvMQg3qm5vjLyb4lddJIGvl5echK1srDdMZvNhkREg5L4wn3qkKQmw4TRfZHcYQFHfjDCmrw==\\\",\\\"format\\\":\\\"base64\\\"},{\\\"data\\\":\\\"MIIEADCCAuigAwIBAgIBADANBgkqhkiG9w0BAQUFADBjMQswCQYDVQQGEwJVUzEhMB8GA1UEChMYVGhlIEdvIERhZGR5IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBEYWRkeSBDbGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA0MDYyOTE3MDYyMFoXDTM0MDYyOTE3MDYyMFowYzELMAkGA1UEBhMCVVMxITAfBgNVBAoTGFRoZSBHbyBEYWRkeSBHcm91cCwgSW5jLjExMC8GA1UECxMoR28gRGFkZHkgQ2xhc3MgMiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASAwDQYJKoZIhvcNAQEBBQADggENADCCAQgCggEBAN6d1+pXGEmhW+vXX0iG6r7d\\\\/+TvZxz0ZWizV3GgXne77ZtJ6XCAPVYYYwhv2vLM0D9\\\\/AlQiVBDYsoHUwHU9S3\\\\/Hd8M+eKsaA7Ugay9qK7HFiH7Eux6wwdhFJ2+qN1j3hybX2C32qRe3H3I2TqYXP2WYktsqbl2i\\\\/ojgC95\\\\/5Y0V4evLOtXiEqITLdiOr18SPaAIBQi2XKVlOARFmR6jYGB0xUGlcmIbYsUfb18aQr4CUWWoriMYavx4A6lNf4DD+qta\\\\/KFApMoZFv6yyO9ecw3ud72a9nmYvLEHZ6IVDd2gWMZEewo+YihfukEHU1jPEX44dMX4\\\\/7VpkI+EdOqXG68CAQOjgcAwgb0wHQYDVR0OBBYEFNLEsNKR1EwRcbNhyz2h\\\\/t2oatTjMIGNBgNVHSMEgYUwgYKAFNLEsNKR1EwRcbNhyz2h\\\\/t2oatTjoWekZTBjMQswCQYDVQQGEwJVUzEhMB8GA1UEChMYVGhlIEdvIERhZGR5IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBEYWRkeSBDbGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBADJL87LKPpH8EsahB4yOd6AzBhRckB4Y9wimPQoZ+YeAEW5p5JYXMP80kWNyOO7MHAGjHZQopDH2esRU1\\\\/blMVgDoszOYtuURXO1v0XJJLXVggKtI3lpjbi2Tc7PTMozI+gciKqdi0FuFskg5YmezTvacPd+mSYgFFQlq25zheabIZ0KbIIOqPjCDPoQHmyW74cNxA9hi63ugyuV+I6ShHI56yDqg+2DzZduCLzrTia2cyvk0\\\\/ZM\\\\/iZx4mERdEr\\\\/VxqHD3VILs9RaRegAhJhldXRQLIQTO7ErBBDpqWeCtWVYpoNz4iCxTIM5CufReYNnyicsbkqWletNw+vHX\\\\/bvZ8=\\\",\\\"format\\\":\\\"base64\\\"}],\\\"server_name\\\":\\\"web.telegram.org\\\",\\\"t\\\":1.722902258,\\\"tags\\\":null,\\\"tls_version\\\":\\\"TLSv1.3\\\"}],\\\"telegram_http_blocking\\\":false,\\\"telegram_tcp_blocking\\\":false,\\\"telegram_web_failure\\\":null,\\\"telegram_web_status\\\":\\\"ok\\\"},\\\"test_name\\\":\\\"telegram\\\",\\\"test_runtime\\\":1.877369359,\\\"test_start_time\\\":\\\"2022-11-10 10:28:55\\\",\\\"test_version\\\":\\\"0.2.0\\\"}\\n\",\"category_code\":\"\",\"verification_status\":\"unverified\"}" +} \ No newline at end of file diff --git a/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20221110103854.762862_US_whatsapp_cb48f652956e71e0_full-true.json b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20221110103854.762862_US_whatsapp_cb48f652956e71e0_full-true.json new file mode 100644 index 000000000..3f312602b --- /dev/null +++ b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20221110103854.762862_US_whatsapp_cb48f652956e71e0_full-true.json @@ -0,0 +1,5 @@ +{ + "status": 200, + "contentType": "application/json", + "body": "{\"input\":\"\",\"measurement_start_time\":\"2022-11-10T10:38:53Z\",\"measurement_uid\":\"20221110103854.762862_US_whatsapp_cb48f652956e71e0\",\"report_id\":\"20221110T103853Z_whatsapp_US_7922_n1_JPLapx8JfJ0J4nf4\",\"test_name\":\"whatsapp\",\"test_start_time\":\"2022-11-10T10:38:53Z\",\"probe_asn\":7922,\"probe_cc\":\"US\",\"scores\":\"{\\\"blocking_general\\\":0.0,\\\"blocking_global\\\":0.0,\\\"blocking_country\\\":0.0,\\\"blocking_isp\\\":0.0,\\\"blocking_local\\\":0.0,\\\"analysis\\\":{\\\"registration_server_accessible\\\":true,\\\"whatsapp_web_accessible\\\":true,\\\"whatsapp_endpoints_accessible\\\":true}}\",\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"raw_measurement\":\"{\\\"annotations\\\":{\\\"architecture\\\":\\\"arm64\\\",\\\"engine_name\\\":\\\"ooniprobe-engine\\\",\\\"engine_version\\\":\\\"3.15.2\\\",\\\"flavor\\\":\\\"stableFull\\\",\\\"network_type\\\":\\\"wifi\\\",\\\"origin\\\":\\\"autorun\\\",\\\"platform\\\":\\\"android\\\"},\\\"data_format_version\\\":\\\"0.2.0\\\",\\\"extensions\\\":{\\\"dnst\\\":0,\\\"httpt\\\":0,\\\"netevents\\\":0,\\\"tcpconnect\\\":0,\\\"tlshandshake\\\":0,\\\"tunnel\\\":0},\\\"input\\\":null,\\\"measurement_start_time\\\":\\\"2022-11-10 10:38:53\\\",\\\"probe_asn\\\":\\\"AS7922\\\",\\\"probe_cc\\\":\\\"US\\\",\\\"probe_ip\\\":\\\"127.0.0.1\\\",\\\"probe_network_name\\\":\\\"Comcast Cable Communications, LLC\\\",\\\"report_id\\\":\\\"20221110T103853Z_whatsapp_US_7922_n1_JPLapx8JfJ0J4nf4\\\",\\\"resolver_asn\\\":\\\"AS7922\\\",\\\"resolver_ip\\\":\\\"69.252.230.229\\\",\\\"resolver_network_name\\\":\\\"Comcast Cable Communications, LLC\\\",\\\"software_name\\\":\\\"ooniprobe-android-unattended\\\",\\\"software_version\\\":\\\"3.7.1\\\",\\\"test_keys\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failed_operation\\\":null,\\\"failure\\\":null,\\\"network_events\\\":[{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.003807917},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.032962659},{\\\"address\\\":\\\"3.33.252.61:5222\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.054030109},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.004533542},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.035161618},{\\\"address\\\":\\\"15.197.210.208:5222\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.057861777},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.058686725},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.064860371},{\\\"address\\\":\\\"3.33.252.61:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.083472769},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.055231307},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.073653393},{\\\"address\\\":\\\"15.197.210.208:5222\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.093163968},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.084011571},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.10606449},{\\\"address\\\":\\\"3.33.252.61:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.118930376},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.094215947},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.121517929},{\\\"address\\\":\\\"3.33.221.48:5222\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.138626316},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.119411418},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.144411785},{\\\"address\\\":\\\"15.197.206.217:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.155353036},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":0.000653125},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":0.00070901},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.002027813},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.032246618},{\\\"address\\\":\\\"157.240.245.60:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.053641047},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_start\\\",\\\"t\\\":0.053953495},{\\\"failure\\\":null,\\\"num_bytes\\\":284,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.05770287},{\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.074596466},{\\\"failure\\\":null,\\\"num_bytes\\\":1800,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.075927091},{\\\"failure\\\":null,\\\"num_bytes\\\":852,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.076088862},{\\\"failure\\\":null,\\\"num_bytes\\\":64,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.079197352},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_done\\\",\\\"t\\\":0.07932657},{\\\"failure\\\":null,\\\"num_bytes\\\":86,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.079809383},{\\\"failure\\\":null,\\\"num_bytes\\\":210,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.080388498},{\\\"failure\\\":null,\\\"num_bytes\\\":105,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.095457301},{\\\"failure\\\":null,\\\"num_bytes\\\":31,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.095595634},{\\\"failure\\\":null,\\\"num_bytes\\\":35,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.097098655},{\\\"failure\\\":null,\\\"num_bytes\\\":181,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.173917205},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_metadata\\\",\\\"t\\\":0.174227934},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_body_snapshot\\\",\\\"t\\\":0.174297674},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":0.174300642},{\\\"failure\\\":null,\\\"num_bytes\\\":24,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.174613871},{\\\"failure\\\":\\\"connection_already_closed\\\",\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.175120642},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.155865693},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.161357828},{\\\"address\\\":\\\"15.197.206.217:5222\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.17727632},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.13913517},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.168196475},{\\\"address\\\":\\\"15.197.206.217:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.188548196},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.175515799},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.209797},{\\\"address\\\":\\\"15.197.206.217:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.2300982},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.177845226},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.209798771},{\\\"address\\\":\\\"15.197.210.208:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.230431637},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.230632054},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.233411846},{\\\"address\\\":\\\"15.197.206.217:5222\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.251382681},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.252002473},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.254028411},{\\\"address\\\":\\\"15.197.206.217:5222\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.272385027},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.231189085},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.275140809},{\\\"address\\\":\\\"15.197.210.208:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.290946591},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":0.189849081},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":0.189879654},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.190374863},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.220510439},{\\\"address\\\":\\\"157.240.245.60:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.240860805},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_start\\\",\\\"t\\\":0.240932055},{\\\"failure\\\":null,\\\"num_bytes\\\":286,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.243698253},{\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.264881328},{\\\"failure\\\":null,\\\"num_bytes\\\":1800,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.266024506},{\\\"failure\\\":null,\\\"num_bytes\\\":852,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.26609362},{\\\"failure\\\":null,\\\"num_bytes\\\":64,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.271179194},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_done\\\",\\\"t\\\":0.271309454},{\\\"failure\\\":null,\\\"num_bytes\\\":86,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.271945548},{\\\"failure\\\":null,\\\"num_bytes\\\":202,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.272374298},{\\\"failure\\\":null,\\\"num_bytes\\\":105,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.283972007},{\\\"failure\\\":null,\\\"num_bytes\\\":31,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.284163622},{\\\"failure\\\":null,\\\"num_bytes\\\":35,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.295172217},{\\\"failure\\\":null,\\\"num_bytes\\\":1897,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.327074512},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_metadata\\\",\\\"t\\\":0.327454512},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_body_snapshot\\\",\\\"t\\\":0.32762722},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":0.327630293},{\\\"failure\\\":null,\\\"num_bytes\\\":24,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.327872376},{\\\"failure\\\":\\\"connection_already_closed\\\",\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.328135658},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.273325079},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.326328314},{\\\"address\\\":\\\"15.197.206.217:5222\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.342759513},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.328545814},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.331672377},{\\\"address\\\":\\\"3.33.221.48:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.346417222},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.291364873},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.331991387},{\\\"address\\\":\\\"15.197.206.217:5222\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.356077171},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.356556806},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.36158889},{\\\"address\\\":\\\"15.197.210.208:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.37718061},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.344087274},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.368368787},{\\\"address\\\":\\\"3.33.252.61:5222\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.386504674},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.346925659},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.39054608},{\\\"address\\\":\\\"15.197.206.217:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.406646186},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.378389933},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.403190821},{\\\"address\\\":\\\"15.197.206.217:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.418588479},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.407185718},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.409281239},{\\\"address\\\":\\\"15.197.210.208:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.425003011},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.418943115},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.424422126},{\\\"address\\\":\\\"3.33.252.61:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.436577075},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.387028216},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.41839676},{\\\"address\\\":\\\"3.33.252.61:5222\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.436728481},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.425368844},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.427149574},{\\\"address\\\":\\\"15.197.206.217:5222\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.445963951},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.437273429},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.440874158},{\\\"address\\\":\\\"15.197.210.208:5222\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.457960931},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.436950408},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.438530981},{\\\"address\\\":\\\"3.33.252.61:5222\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.458146608},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.446352336},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.452840149},{\\\"address\\\":\\\"3.33.252.61:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.466677338},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.458784369},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.461990463},{\\\"address\\\":\\\"15.197.206.217:5222\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.479563069},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.458457806},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.462941713},{\\\"address\\\":\\\"15.197.206.217:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.479624475},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.46690489},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.468812807},{\\\"address\\\":\\\"15.197.206.217:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.487926871},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.479947912},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.484077965},{\\\"address\\\":\\\"15.197.210.208:5222\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.501862394},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":0.480388121},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":0.480404631},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_start\\\",\\\"t\\\":0.480577131},{\\\"failure\\\":null,\\\"operation\\\":\\\"resolve_done\\\",\\\"t\\\":0.489340465},{\\\"address\\\":\\\"157.240.245.60:80\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.505498175},{\\\"failure\\\":null,\\\"num_bytes\\\":278,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.505843436},{\\\"failure\\\":null,\\\"num_bytes\\\":244,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.56393891},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_metadata\\\",\\\"t\\\":0.564198598},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_body_snapshot\\\",\\\"t\\\":0.564287817},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":0.564339535}],\\\"queries\\\":[{\\\"answers\\\":[{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.252.61\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.221.48\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.210.208\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.206.217\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e4.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.032962659},{\\\"answers\\\":[{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.210.208\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.206.217\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.221.48\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.252.61\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e2.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.035161618},{\\\"answers\\\":[{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.252.61\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.221.48\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.210.208\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.206.217\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e4.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.064860371},{\\\"answers\\\":[{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.210.208\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.252.61\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.206.217\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.221.48\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e5.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.073653393},{\\\"answers\\\":[{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.252.61\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.210.208\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.221.48\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.206.217\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e16.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.10606449},{\\\"answers\\\":[{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.221.48\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.210.208\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.206.217\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.252.61\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e3.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.121517929},{\\\"answers\\\":[{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.206.217\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.210.208\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.252.61\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.221.48\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e8.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.144411785},{\\\"answers\\\":[{\\\"asn\\\":32934,\\\"as_org_name\\\":\\\"Facebook, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"157.240.245.60\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"v.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.032246618},{\\\"answers\\\":[{\\\"asn\\\":32934,\\\"as_org_name\\\":\\\"Facebook, Inc.\\\",\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"2a03:2880:f272:c7:face:b00c:0:167\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"v.whatsapp.net\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.032246618},{\\\"answers\\\":[{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.206.217\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.210.208\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.252.61\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.221.48\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e8.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.161357828},{\\\"answers\\\":[{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.206.217\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.210.208\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.252.61\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.221.48\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e12.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.168196475},{\\\"answers\\\":[{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.206.217\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.221.48\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.252.61\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.210.208\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e7.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.209797},{\\\"answers\\\":[{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.210.208\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.252.61\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.221.48\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.206.217\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e13.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.209798771},{\\\"answers\\\":[{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.206.217\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.221.48\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.252.61\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.210.208\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e7.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.233411846},{\\\"answers\\\":[{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.206.217\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.210.208\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.252.61\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.221.48\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e12.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.254028411},{\\\"answers\\\":[{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.210.208\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.252.61\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.206.217\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.221.48\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e10.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.275140809},{\\\"answers\\\":[{\\\"asn\\\":32934,\\\"as_org_name\\\":\\\"Facebook, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"157.240.245.60\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"web.whatsapp.com\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.220510439},{\\\"answers\\\":[{\\\"asn\\\":32934,\\\"as_org_name\\\":\\\"Facebook, Inc.\\\",\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"2a03:2880:f272:c7:face:b00c:0:167\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"web.whatsapp.com\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.220510439},{\\\"answers\\\":[{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.206.217\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.252.61\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.221.48\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.210.208\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e15.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.326328314},{\\\"answers\\\":[{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.221.48\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.210.208\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.206.217\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.252.61\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e3.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.331672377},{\\\"answers\\\":[{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.206.217\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.252.61\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.221.48\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.210.208\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e11.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.331991387},{\\\"answers\\\":[{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.210.208\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.206.217\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.221.48\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.252.61\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e2.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.36158889},{\\\"answers\\\":[{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.252.61\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.210.208\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.206.217\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.221.48\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e9.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.368368787},{\\\"answers\\\":[{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.206.217\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.221.48\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.252.61\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.210.208\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e6.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.39054608},{\\\"answers\\\":[{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.206.217\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.210.208\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.252.61\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.221.48\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e14.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.403190821},{\\\"answers\\\":[{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.210.208\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.252.61\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.206.217\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.221.48\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e5.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.409281239},{\\\"answers\\\":[{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.252.61\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.210.208\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.206.217\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.221.48\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e9.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.424422126},{\\\"answers\\\":[{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.252.61\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.221.48\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.206.217\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.210.208\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e1.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.41839676},{\\\"answers\\\":[{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.206.217\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.210.208\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.252.61\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.221.48\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e14.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.427149574},{\\\"answers\\\":[{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.210.208\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.252.61\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.206.217\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.221.48\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e10.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.440874158},{\\\"answers\\\":[{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.252.61\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.210.208\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.221.48\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.206.217\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e16.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.438530981},{\\\"answers\\\":[{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.252.61\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.221.48\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.206.217\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.210.208\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e1.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.452840149},{\\\"answers\\\":[{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.206.217\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.221.48\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.252.61\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.210.208\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e6.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.461990463},{\\\"answers\\\":[{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.206.217\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.252.61\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.221.48\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.210.208\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e15.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.462941713},{\\\"answers\\\":[{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.206.217\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.252.61\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.221.48\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.210.208\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e11.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.468812807},{\\\"answers\\\":[{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.210.208\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.252.61\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"3.33.221.48\\\",\\\"ttl\\\":null},{\\\"asn\\\":16509,\\\"as_org_name\\\":\\\"Amazon.com, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"15.197.206.217\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"e13.whatsapp.net\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.484077965},{\\\"answers\\\":[{\\\"asn\\\":32934,\\\"as_org_name\\\":\\\"Facebook, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"157.240.245.60\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"web.whatsapp.com\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.489340465},{\\\"answers\\\":[{\\\"asn\\\":32934,\\\"as_org_name\\\":\\\"Facebook, Inc.\\\",\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"2a03:2880:f272:c7:face:b00c:0:167\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"web.whatsapp.com\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.489340465}],\\\"requests\\\":[{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US,en;q=0.9\\\"],[\\\"Host\\\",\\\"v.whatsapp.net\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US,en;q=0.9\\\",\\\"Host\\\":\\\"v.whatsapp.net\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"https:\\\\/\\\\/v.whatsapp.net\\\\/v2\\\\/register\\\"},\\\"response\\\":{\\\"body\\\":\\\"{\\\\\\\"param\\\\\\\":\\\\\\\"authkey\\\\\\\",\\\\\\\"reason\\\\\\\":\\\\\\\"missing_param\\\\\\\",\\\\\\\"status\\\\\\\":\\\\\\\"fail\\\\\\\"}\\\\n\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":200,\\\"headers_list\\\":[[\\\"Content-Length\\\",\\\"61\\\"],[\\\"Content-Type\\\",\\\"text\\\\/json ; charset=utf-8\\\"],[\\\"Date\\\",\\\"Thu, 10 Nov 2022 10:38:54 GMT\\\"],[\\\"Server\\\",\\\"Yaws 2.0.9\\\"],[\\\"X-Fb-Trip-Id\\\",\\\"1679558926\\\"]],\\\"headers\\\":{\\\"Content-Length\\\":\\\"61\\\",\\\"Content-Type\\\":\\\"text\\\\/json ; charset=utf-8\\\",\\\"Date\\\":\\\"Thu, 10 Nov 2022 10:38:54 GMT\\\",\\\"Server\\\":\\\"Yaws 2.0.9\\\",\\\"X-Fb-Trip-Id\\\":\\\"1679558926\\\"}},\\\"t\\\":0.000653125},{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US,en;q=0.9\\\"],[\\\"Host\\\",\\\"web.whatsapp.com\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US,en;q=0.9\\\",\\\"Host\\\":\\\"web.whatsapp.com\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"https:\\\\/\\\\/web.whatsapp.com\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"<!DOCTYPE html><html lang=\\\\\\\"en\\\\\\\" id=\\\\\\\"facebook\\\\\\\"><head><title>Error<\\\\/title><meta charset=\\\\\\\"utf-8\\\\\\\" \\\\/><meta http-equiv=\\\\\\\"Cache-Control\\\\\\\" content=\\\\\\\"no-cache\\\\\\\" \\\\/><meta name=\\\\\\\"robots\\\\\\\" content=\\\\\\\"noindex,nofollow\\\\\\\" \\\\/><style nonce=\\\\\\\"wfWasHre\\\\\\\">html, body { color: #333; font-family: 'Lucida Grande', 'Tahoma', 'Verdana', 'Arial', sans-serif; margin: 0; padding: 0; text-align: center;}\\\\n#header { height: 30px; padding-bottom: 10px; padding-top: 10px; text-align: center;}\\\\n#icon { width: 30px;}\\\\n.core { margin: auto; padding: 1em 0; text-align: left; width: 904px;}\\\\nh1 { font-size: 18px;}\\\\np { font-size: 13px;}\\\\n.footer { border-top: 1px solid #ddd; color: #777; float: left; font-size: 11px; padding: 5px 8px 6px 0; width: 904px;}<\\\\/style><\\\\/head><body><div id=\\\\\\\"header\\\\\\\"><a href=\\\\\\\"\\\\/\\\\/www.facebook.com\\\\/\\\\\\\"><img id=\\\\\\\"icon\\\\\\\" src=\\\\\\\"\\\\/\\\\/static.facebook.com\\\\/images\\\\/logos\\\\/facebook_2x.png\\\\\\\" \\\\/><\\\\/a><\\\\/div><div class=\\\\\\\"core\\\\\\\"><h1>Sorry, something went wrong.<\\\\/h1><p>We're working on getting this fixed as soon as we can.<\\\\/p><p><a id=\\\\\\\"back\\\\\\\" href=\\\\\\\"\\\\/\\\\/www.facebook.com\\\\/\\\\\\\">Go Back<\\\\/a><\\\\/p><div class=\\\\\\\"footer\\\\\\\"> Meta © 2022 · <a href=\\\\\\\"\\\\/\\\\/www.facebook.com\\\\/help\\\\/?ref=href052\\\\\\\">Help<\\\\/a><\\\\/div><\\\\/div><script nonce=\\\\\\\"wfWasHre\\\\\\\">\\\\n document.getElementById(\\\\\\\"back\\\\\\\").onclick = function() {\\\\n if (history.length > 1) {\\\\n history.back();\\\\n return false;\\\\n }\\\\n };\\\\n <\\\\/script><\\\\/body><\\\\/html><!-- @codegen-command : phps GenerateErrorPages --><!-- @generated SignedSource<<aa30090ace0190809cb1ff902c2ba23b>> -->\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":400,\\\"headers_list\\\":[[\\\"Alt-Svc\\\",\\\"h3=\\\\\\\":443\\\\\\\"; ma=86400\\\"],[\\\"Content-Length\\\",\\\"1542\\\"],[\\\"Content-Type\\\",\\\"text\\\\/html; charset=\\\\\\\"utf-8\\\\\\\"\\\"],[\\\"Cross-Origin-Opener-Policy\\\",\\\"unsafe-none\\\"],[\\\"Date\\\",\\\"Thu, 10 Nov 2022 10:38:54 GMT\\\"],[\\\"Priority\\\",\\\"u=3,i\\\"],[\\\"Strict-Transport-Security\\\",\\\"max-age=31536000; preload; includeSubDomains\\\"],[\\\"Vary\\\",\\\"Sec-Fetch-Site, Sec-Fetch-Mode\\\"],[\\\"Vary\\\",\\\"Accept-Encoding\\\"],[\\\"X-Fb-Debug\\\",\\\"WnFEJMe4hAHq9BgjNE6cxF7FdppxqjjfF2bPCSzBpDeG4qdcMfPnjm6y\\\\/MZl+y7UEFgdWeE03+15OXnLtZe\\\\/PA==\\\"],[\\\"X-Fb-Trip-Id\\\",\\\"1679558926\\\"]],\\\"headers\\\":{\\\"Alt-Svc\\\":\\\"h3=\\\\\\\":443\\\\\\\"; ma=86400\\\",\\\"Content-Length\\\":\\\"1542\\\",\\\"Content-Type\\\":\\\"text\\\\/html; charset=\\\\\\\"utf-8\\\\\\\"\\\",\\\"Cross-Origin-Opener-Policy\\\":\\\"unsafe-none\\\",\\\"Date\\\":\\\"Thu, 10 Nov 2022 10:38:54 GMT\\\",\\\"Priority\\\":\\\"u=3,i\\\",\\\"Strict-Transport-Security\\\":\\\"max-age=31536000; preload; includeSubDomains\\\",\\\"Vary\\\":\\\"Sec-Fetch-Site, Sec-Fetch-Mode\\\",\\\"X-Fb-Debug\\\":\\\"WnFEJMe4hAHq9BgjNE6cxF7FdppxqjjfF2bPCSzBpDeG4qdcMfPnjm6y\\\\/MZl+y7UEFgdWeE03+15OXnLtZe\\\\/PA==\\\",\\\"X-Fb-Trip-Id\\\":\\\"1679558926\\\"}},\\\"t\\\":0.189849081},{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US,en;q=0.9\\\"],[\\\"Host\\\",\\\"web.whatsapp.com\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US,en;q=0.9\\\",\\\"Host\\\":\\\"web.whatsapp.com\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/100.0.4896.127 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"http:\\\\/\\\\/web.whatsapp.com\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":302,\\\"headers_list\\\":[[\\\"Alt-Svc\\\",\\\"h3=\\\\\\\":443\\\\\\\"; ma=86400\\\"],[\\\"Connection\\\",\\\"keep-alive\\\"],[\\\"Content-Length\\\",\\\"0\\\"],[\\\"Content-Type\\\",\\\"text\\\\/plain\\\"],[\\\"Date\\\",\\\"Thu, 10 Nov 2022 10:38:54 GMT\\\"],[\\\"Location\\\",\\\"https:\\\\/\\\\/web.whatsapp.com\\\\/\\\"],[\\\"Server\\\",\\\"proxygen-bolt\\\"],[\\\"X-Fb-Trip-Id\\\",\\\"1679558926\\\"]],\\\"headers\\\":{\\\"Alt-Svc\\\":\\\"h3=\\\\\\\":443\\\\\\\"; ma=86400\\\",\\\"Connection\\\":\\\"keep-alive\\\",\\\"Content-Length\\\":\\\"0\\\",\\\"Content-Type\\\":\\\"text\\\\/plain\\\",\\\"Date\\\":\\\"Thu, 10 Nov 2022 10:38:54 GMT\\\",\\\"Location\\\":\\\"https:\\\\/\\\\/web.whatsapp.com\\\\/\\\",\\\"Server\\\":\\\"proxygen-bolt\\\",\\\"X-Fb-Trip-Id\\\":\\\"1679558926\\\"}},\\\"t\\\":0.480388121}],\\\"tcp_connect\\\":[{\\\"ip\\\":\\\"3.33.252.61\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.054030109},{\\\"ip\\\":\\\"15.197.210.208\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.057861777},{\\\"ip\\\":\\\"3.33.252.61\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.083472769},{\\\"ip\\\":\\\"15.197.210.208\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.093163968},{\\\"ip\\\":\\\"3.33.252.61\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.118930376},{\\\"ip\\\":\\\"3.33.221.48\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.138626316},{\\\"ip\\\":\\\"15.197.206.217\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.155353036},{\\\"ip\\\":\\\"157.240.245.60\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.053641047},{\\\"ip\\\":\\\"15.197.206.217\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.17727632},{\\\"ip\\\":\\\"15.197.206.217\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.188548196},{\\\"ip\\\":\\\"15.197.206.217\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.2300982},{\\\"ip\\\":\\\"15.197.210.208\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.230431637},{\\\"ip\\\":\\\"15.197.206.217\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.251382681},{\\\"ip\\\":\\\"15.197.206.217\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.272385027},{\\\"ip\\\":\\\"15.197.210.208\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.290946591},{\\\"ip\\\":\\\"157.240.245.60\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.240860805},{\\\"ip\\\":\\\"15.197.206.217\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.342759513},{\\\"ip\\\":\\\"3.33.221.48\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.346417222},{\\\"ip\\\":\\\"15.197.206.217\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.356077171},{\\\"ip\\\":\\\"15.197.210.208\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.37718061},{\\\"ip\\\":\\\"3.33.252.61\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.386504674},{\\\"ip\\\":\\\"15.197.206.217\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.406646186},{\\\"ip\\\":\\\"15.197.206.217\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.418588479},{\\\"ip\\\":\\\"15.197.210.208\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.425003011},{\\\"ip\\\":\\\"3.33.252.61\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.436577075},{\\\"ip\\\":\\\"3.33.252.61\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.436728481},{\\\"ip\\\":\\\"15.197.206.217\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.445963951},{\\\"ip\\\":\\\"15.197.210.208\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.457960931},{\\\"ip\\\":\\\"3.33.252.61\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.458146608},{\\\"ip\\\":\\\"3.33.252.61\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.466677338},{\\\"ip\\\":\\\"15.197.206.217\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.479563069},{\\\"ip\\\":\\\"15.197.206.217\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.479624475},{\\\"ip\\\":\\\"15.197.206.217\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.487926871},{\\\"ip\\\":\\\"15.197.210.208\\\",\\\"port\\\":5222,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.501862394},{\\\"ip\\\":\\\"157.240.245.60\\\",\\\"port\\\":80,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.505498175}],\\\"tls_handshakes\\\":[{\\\"address\\\":\\\"157.240.245.60:443\\\",\\\"cipher_suite\\\":\\\"TLS_CHACHA20_POLY1305_SHA256\\\",\\\"failure\\\":null,\\\"negotiated_protocol\\\":\\\"h2\\\",\\\"no_tls_verify\\\":false,\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIIGTTCCBTWgAwIBAgIQBSDz+wxUmdkwsimr7Clk3DANBgkqhkiG9w0BAQsFADBwMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMS8wLQYDVQQDEyZEaWdpQ2VydCBTSEEyIEhpZ2ggQXNzdXJhbmNlIFNlcnZlciBDQTAeFw0yMjA4MTkwMDAwMDBaFw0yMjExMTcyMzU5NTlaMGkxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRMwEQYDVQQHEwpNZW5sbyBQYXJrMRcwFQYDVQQKEw5GYWNlYm9vaywgSW5jLjEXMBUGA1UEAwwOKi53aGF0c2FwcC5uZXQwWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAAQcmLILQF\\\\/aSnb2WwbNwyQQt2AQVDvpylFc8Ea3a90fH8qjL0TLR3lXgWhT9Zn+DpDxeEdy3oiuqtN2p4IIDYemo4IDszCCA68wHwYDVR0jBBgwFoAUUWj\\\\/kK8CB3U8zNllZGKiErhZcjswHQYDVR0OBBYEFI35ng2nS19RwSfavCkNPiGqew3UMHQGA1UdEQRtMGuCDioud2hhdHNhcHAubmV0ghIqLmNkbi53aGF0c2FwcC5uZXSCEiouc25yLndoYXRzYXBwLm5ldIIOKi53aGF0c2FwcC5jb22CBXdhLm1lggx3aGF0c2FwcC5jb22CDHdoYXRzYXBwLm5ldDAOBgNVHQ8BAf8EBAMCB4AwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMHUGA1UdHwRuMGwwNKAyoDCGLmh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9zaGEyLWhhLXNlcnZlci1nNi5jcmwwNKAyoDCGLmh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9zaGEyLWhhLXNlcnZlci1nNi5jcmwwPgYDVR0gBDcwNTAzBgZngQwBAgIwKTAnBggrBgEFBQcCARYbaHR0cDovL3d3dy5kaWdpY2VydC5jb20vQ1BTMIGDBggrBgEFBQcBAQR3MHUwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBNBggrBgEFBQcwAoZBaHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0U0hBMkhpZ2hBc3N1cmFuY2VTZXJ2ZXJDQS5jcnQwCQYDVR0TBAIwADCCAX4GCisGAQQB1nkCBAIEggFuBIIBagFoAHYAKXm+8J45OSHwVnOfY6V35b5XfZxgCvj5TV0mXCVdx4QAAAGCs8HlnwAABAMARzBFAiEAwLSD01ntgGs03yMo5yOgOhSW1CqzGGntGTAfQmfdi0wCIBozTXWS6OCH\\\\/BJrRGVR9XNVzKPxxj6AvkxPsqbCwl0VAHYAUaOw9f0BeZxWbbg3eI8MpHrMGyfL956IQpoN\\\\/tSLBeUAAAGCs8HmGQAABAMARzBFAiEAj49LmTJfaKYFdaLvSBsyMgro7mzs2hBiEN4HNBvnKIACID4XHYc8N7OIrLxM7A5S8ksZojgF\\\\/GmB6TeuTWKKQIJ8AHYA36Veq2iCTx9sre64X04+WurNohKkal6OOxLAIERcKnMAAAGCs8Hl2AAABAMARzBFAiEA6bduQbFWP4W2gR44+5y0lRwnrZGc738Av+YfJy8OnkYCIGdmJgyyjwQOCNL9mavH16vBTtVYPAHHa30T0aoJun3wMA0GCSqGSIb3DQEBCwUAA4IBAQATi5VL5Y9ycHW+YdEY+gH3PG8p0oN26wy2Ku6qPLlM+XuGOeydk9PqzuRh1xA0KyHNb6ZrPAThsuzvY4B4VmV+yosodfWUx\\\\/Xj6Xb5JiA4\\\\/39mMvCFsBdIrEY785oUFx2\\\\/gYTgI16bRzlbKI5mqHqIUhcENBAr8GFMsDvec806tYY\\\\/svVv60QbNfEsmaEdnYHD7STh9x2GJyck4mgQqMKsMUqNta4NIitUy0z2letHj2dv4q\\\\/ntaO4ic\\\\/XFc\\\\/3e53dTg4xl2QKCKxfZDSxACkeKQEJzb\\\\/1PfDjQ4Ggz3VwHT9MCm3iuc0JPP+lGSDuknVAgc6ftXqJp7VaAlxPxnAY\\\",\\\"format\\\":\\\"base64\\\"},{\\\"data\\\":\\\"MIIEsTCCA5mgAwIBAgIQBOHnpNxc8vNtwCtCuF0VnzANBgkqhkiG9w0BAQsFADBsMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTEzMTAyMjEyMDAwMFoXDTI4MTAyMjEyMDAwMFowcDELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTEvMC0GA1UEAxMmRGlnaUNlcnQgU0hBMiBIaWdoIEFzc3VyYW5jZSBTZXJ2ZXIgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC24C\\\\/CJAbIbQRf1+8KZAayfSImZRauQkCbztyfn3YHPsMwVYcZuU+UDlqUH1VWtMICKq\\\\/QmO4LQNfE0DtyyBSe75CxEamu0si4QzrZCwvV1ZX1QK\\\\/IHe1NnF9Xt4ZQaJn1itrSxwUfqJfJ3KSxgoQtxq2lnMcZgqaFD15EWCo3j\\\\/018QsIJzJa9buLnqS9UdAn4t07QjOjBSjEuyjMmqwrIw14xnvmXnG3Sj4I+4G3FhahnSMSTeXXkgisdaScus0Xsh5ENWV\\\\/UyU50RwKmmMbGZJ0aAo3wsJSSMs5WqK24V3B3aAguCGikyZvFEohQcftbZvySC\\\\/zA\\\\/WiaJJTL17jAgMBAAGjggFJMIIBRTASBgNVHRMBAf8ECDAGAQH\\\\/AgEAMA4GA1UdDwEB\\\\/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNAYIKwYBBQUHAQEEKDAmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wSwYDVR0fBEQwQjBAoD6gPIY6aHR0cDovL2NybDQuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0SGlnaEFzc3VyYW5jZUVWUm9vdENBLmNybDA9BgNVHSAENjA0MDIGBFUdIAAwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAdBgNVHQ4EFgQUUWj\\\\/kK8CB3U8zNllZGKiErhZcjswHwYDVR0jBBgwFoAUsT7DaQP4v0cB1JgmGggC72NkK8MwDQYJKoZIhvcNAQELBQADggEBABiKlYkD5m3fXPwdaOpKj4PWUS+Na0QWnqxj9dJubISZi6qBcYRb7TROsLd5kinMLYBq8I4g4Xmk\\\\/gNHE+r1hspZcX30BJZr01lYPf7TMSVcGDiEo+afgv2MW5gxTs14nhr9hctJqvIni5ly\\\\/D6q1UEL2tU2ob8cbkdJf17ZSHwD2f2LSaCYJkJA69aSEaRkCldUxPUd1gJea6zuxICaEnL6VpPX\\\\/78whQYwvwt\\\\/Tv9XBZ0k7YXDK\\\\/umdaisLRbvfXknsuvCnQsH6qqF0wGjIChBWUMo0oHjqvbsezt3tkBigAVBRQHvFwY+3sAzm2fTYS5yh+Rp\\\\/BIAV0AecPUeybQ=\\\",\\\"format\\\":\\\"base64\\\"}],\\\"server_name\\\":\\\"v.whatsapp.net\\\",\\\"t\\\":0.07932657,\\\"tags\\\":null,\\\"tls_version\\\":\\\"TLSv1.3\\\"},{\\\"address\\\":\\\"157.240.245.60:443\\\",\\\"cipher_suite\\\":\\\"TLS_CHACHA20_POLY1305_SHA256\\\",\\\"failure\\\":null,\\\"negotiated_protocol\\\":\\\"h2\\\",\\\"no_tls_verify\\\":false,\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIIGTTCCBTWgAwIBAgIQBSDz+wxUmdkwsimr7Clk3DANBgkqhkiG9w0BAQsFADBwMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMS8wLQYDVQQDEyZEaWdpQ2VydCBTSEEyIEhpZ2ggQXNzdXJhbmNlIFNlcnZlciBDQTAeFw0yMjA4MTkwMDAwMDBaFw0yMjExMTcyMzU5NTlaMGkxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRMwEQYDVQQHEwpNZW5sbyBQYXJrMRcwFQYDVQQKEw5GYWNlYm9vaywgSW5jLjEXMBUGA1UEAwwOKi53aGF0c2FwcC5uZXQwWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAAQcmLILQF\\\\/aSnb2WwbNwyQQt2AQVDvpylFc8Ea3a90fH8qjL0TLR3lXgWhT9Zn+DpDxeEdy3oiuqtN2p4IIDYemo4IDszCCA68wHwYDVR0jBBgwFoAUUWj\\\\/kK8CB3U8zNllZGKiErhZcjswHQYDVR0OBBYEFI35ng2nS19RwSfavCkNPiGqew3UMHQGA1UdEQRtMGuCDioud2hhdHNhcHAubmV0ghIqLmNkbi53aGF0c2FwcC5uZXSCEiouc25yLndoYXRzYXBwLm5ldIIOKi53aGF0c2FwcC5jb22CBXdhLm1lggx3aGF0c2FwcC5jb22CDHdoYXRzYXBwLm5ldDAOBgNVHQ8BAf8EBAMCB4AwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMHUGA1UdHwRuMGwwNKAyoDCGLmh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9zaGEyLWhhLXNlcnZlci1nNi5jcmwwNKAyoDCGLmh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9zaGEyLWhhLXNlcnZlci1nNi5jcmwwPgYDVR0gBDcwNTAzBgZngQwBAgIwKTAnBggrBgEFBQcCARYbaHR0cDovL3d3dy5kaWdpY2VydC5jb20vQ1BTMIGDBggrBgEFBQcBAQR3MHUwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBNBggrBgEFBQcwAoZBaHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0U0hBMkhpZ2hBc3N1cmFuY2VTZXJ2ZXJDQS5jcnQwCQYDVR0TBAIwADCCAX4GCisGAQQB1nkCBAIEggFuBIIBagFoAHYAKXm+8J45OSHwVnOfY6V35b5XfZxgCvj5TV0mXCVdx4QAAAGCs8HlnwAABAMARzBFAiEAwLSD01ntgGs03yMo5yOgOhSW1CqzGGntGTAfQmfdi0wCIBozTXWS6OCH\\\\/BJrRGVR9XNVzKPxxj6AvkxPsqbCwl0VAHYAUaOw9f0BeZxWbbg3eI8MpHrMGyfL956IQpoN\\\\/tSLBeUAAAGCs8HmGQAABAMARzBFAiEAj49LmTJfaKYFdaLvSBsyMgro7mzs2hBiEN4HNBvnKIACID4XHYc8N7OIrLxM7A5S8ksZojgF\\\\/GmB6TeuTWKKQIJ8AHYA36Veq2iCTx9sre64X04+WurNohKkal6OOxLAIERcKnMAAAGCs8Hl2AAABAMARzBFAiEA6bduQbFWP4W2gR44+5y0lRwnrZGc738Av+YfJy8OnkYCIGdmJgyyjwQOCNL9mavH16vBTtVYPAHHa30T0aoJun3wMA0GCSqGSIb3DQEBCwUAA4IBAQATi5VL5Y9ycHW+YdEY+gH3PG8p0oN26wy2Ku6qPLlM+XuGOeydk9PqzuRh1xA0KyHNb6ZrPAThsuzvY4B4VmV+yosodfWUx\\\\/Xj6Xb5JiA4\\\\/39mMvCFsBdIrEY785oUFx2\\\\/gYTgI16bRzlbKI5mqHqIUhcENBAr8GFMsDvec806tYY\\\\/svVv60QbNfEsmaEdnYHD7STh9x2GJyck4mgQqMKsMUqNta4NIitUy0z2letHj2dv4q\\\\/ntaO4ic\\\\/XFc\\\\/3e53dTg4xl2QKCKxfZDSxACkeKQEJzb\\\\/1PfDjQ4Ggz3VwHT9MCm3iuc0JPP+lGSDuknVAgc6ftXqJp7VaAlxPxnAY\\\",\\\"format\\\":\\\"base64\\\"},{\\\"data\\\":\\\"MIIEsTCCA5mgAwIBAgIQBOHnpNxc8vNtwCtCuF0VnzANBgkqhkiG9w0BAQsFADBsMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTEzMTAyMjEyMDAwMFoXDTI4MTAyMjEyMDAwMFowcDELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTEvMC0GA1UEAxMmRGlnaUNlcnQgU0hBMiBIaWdoIEFzc3VyYW5jZSBTZXJ2ZXIgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC24C\\\\/CJAbIbQRf1+8KZAayfSImZRauQkCbztyfn3YHPsMwVYcZuU+UDlqUH1VWtMICKq\\\\/QmO4LQNfE0DtyyBSe75CxEamu0si4QzrZCwvV1ZX1QK\\\\/IHe1NnF9Xt4ZQaJn1itrSxwUfqJfJ3KSxgoQtxq2lnMcZgqaFD15EWCo3j\\\\/018QsIJzJa9buLnqS9UdAn4t07QjOjBSjEuyjMmqwrIw14xnvmXnG3Sj4I+4G3FhahnSMSTeXXkgisdaScus0Xsh5ENWV\\\\/UyU50RwKmmMbGZJ0aAo3wsJSSMs5WqK24V3B3aAguCGikyZvFEohQcftbZvySC\\\\/zA\\\\/WiaJJTL17jAgMBAAGjggFJMIIBRTASBgNVHRMBAf8ECDAGAQH\\\\/AgEAMA4GA1UdDwEB\\\\/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNAYIKwYBBQUHAQEEKDAmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wSwYDVR0fBEQwQjBAoD6gPIY6aHR0cDovL2NybDQuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0SGlnaEFzc3VyYW5jZUVWUm9vdENBLmNybDA9BgNVHSAENjA0MDIGBFUdIAAwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAdBgNVHQ4EFgQUUWj\\\\/kK8CB3U8zNllZGKiErhZcjswHwYDVR0jBBgwFoAUsT7DaQP4v0cB1JgmGggC72NkK8MwDQYJKoZIhvcNAQELBQADggEBABiKlYkD5m3fXPwdaOpKj4PWUS+Na0QWnqxj9dJubISZi6qBcYRb7TROsLd5kinMLYBq8I4g4Xmk\\\\/gNHE+r1hspZcX30BJZr01lYPf7TMSVcGDiEo+afgv2MW5gxTs14nhr9hctJqvIni5ly\\\\/D6q1UEL2tU2ob8cbkdJf17ZSHwD2f2LSaCYJkJA69aSEaRkCldUxPUd1gJea6zuxICaEnL6VpPX\\\\/78whQYwvwt\\\\/Tv9XBZ0k7YXDK\\\\/umdaisLRbvfXknsuvCnQsH6qqF0wGjIChBWUMo0oHjqvbsezt3tkBigAVBRQHvFwY+3sAzm2fTYS5yh+Rp\\\\/BIAV0AecPUeybQ=\\\",\\\"format\\\":\\\"base64\\\"}],\\\"server_name\\\":\\\"web.whatsapp.com\\\",\\\"t\\\":0.271309454,\\\"tags\\\":null,\\\"tls_version\\\":\\\"TLSv1.3\\\"}],\\\"registration_server_failure\\\":null,\\\"registration_server_status\\\":\\\"ok\\\",\\\"whatsapp_endpoints_blocked\\\":[],\\\"whatsapp_endpoints_dns_inconsistent\\\":[],\\\"whatsapp_endpoints_status\\\":\\\"ok\\\",\\\"whatsapp_web_failure\\\":null,\\\"whatsapp_web_status\\\":\\\"ok\\\"},\\\"test_name\\\":\\\"whatsapp\\\",\\\"test_runtime\\\":0.56570964,\\\"test_start_time\\\":\\\"2022-11-10 10:38:53\\\",\\\"test_version\\\":\\\"0.9.0\\\"}\\n\",\"category_code\":\"\",\"verification_status\":\"unverified\"}" +} \ No newline at end of file diff --git a/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20221110104928.397322_IR_httpheaderfieldmanipulation_33ed804ee27d4955_full-true.json b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20221110104928.397322_IR_httpheaderfieldmanipulation_33ed804ee27d4955_full-true.json new file mode 100644 index 000000000..d996a7f94 --- /dev/null +++ b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20221110104928.397322_IR_httpheaderfieldmanipulation_33ed804ee27d4955_full-true.json @@ -0,0 +1,5 @@ +{ + "status": 200, + "contentType": "application/json", + "body": "{\"input\":\"\",\"measurement_start_time\":\"2022-11-10T10:49:28Z\",\"measurement_uid\":\"20221110104928.397322_IR_httpheaderfieldmanipulation_33ed804ee27d4955\",\"report_id\":\"20221110T104927Z_httpheaderfieldmanipulation_IR_58224_n1_voFn4ODgxZHJCpoy\",\"test_name\":\"http_header_field_manipulation\",\"test_start_time\":\"2022-11-10T10:49:27Z\",\"probe_asn\":58224,\"probe_cc\":\"IR\",\"scores\":\"{\\\"blocking_general\\\":1.0,\\\"blocking_global\\\":0.0,\\\"blocking_country\\\":0.0,\\\"blocking_isp\\\":0.0,\\\"blocking_local\\\":0.0,\\\"msg\\\":\\\"Malformed ctrl_headers\\\"}\",\"anomaly\":true,\"confirmed\":false,\"failure\":false,\"raw_measurement\":\"{\\\"annotations\\\":{\\\"architecture\\\":\\\"amd64\\\",\\\"engine_name\\\":\\\"ooniprobe-engine\\\",\\\"engine_version\\\":\\\"3.16.3\\\",\\\"platform\\\":\\\"windows\\\"},\\\"data_format_version\\\":\\\"0.2.0\\\",\\\"extensions\\\":{\\\"dnst\\\":0,\\\"httpt\\\":0,\\\"netevents\\\":0,\\\"tcpconnect\\\":0,\\\"tlshandshake\\\":0,\\\"tunnel\\\":0},\\\"input\\\":null,\\\"measurement_start_time\\\":\\\"2022-11-10 10:49:28\\\",\\\"probe_asn\\\":\\\"AS58224\\\",\\\"probe_cc\\\":\\\"IR\\\",\\\"probe_ip\\\":\\\"127.0.0.1\\\",\\\"probe_network_name\\\":\\\"Iran Telecommunication Company PJS\\\",\\\"report_id\\\":\\\"20221110T104927Z_httpheaderfieldmanipulation_IR_58224_n1_voFn4ODgxZHJCpoy\\\",\\\"resolver_asn\\\":\\\"AS15169\\\",\\\"resolver_ip\\\":\\\"172.253.13.129\\\",\\\"resolver_network_name\\\":\\\"Google LLC\\\",\\\"software_name\\\":\\\"ooniprobe-desktop-unattended\\\",\\\"software_version\\\":\\\"3.16.3\\\",\\\"test_helpers\\\":{\\\"backend\\\":\\\"http:\\\\/\\\\/37.218.241.94:80\\\"},\\\"test_keys\\\":{\\\"agent\\\":\\\"agent\\\",\\\"failure\\\":\\\"json_parse_error\\\",\\\"requests\\\":[{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"ACcePT\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"aCCEPT-CHArset\\\",\\\"ISO-8859-1,utf-8;q=0.7,*;q=0.3\\\"],[\\\"aCCEPT-ENCodinG\\\",\\\"gzip,deflate,sdch\\\"],[\\\"aCCEPT-LANguagE\\\",\\\"en-US,en;q=0.9\\\"],[\\\"hOST\\\",\\\"dmnkkVgOdqQqypR.com\\\"],[\\\"uSER-aGeNT\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/104.0.0.0 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"ACcePT\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"aCCEPT-CHArset\\\":\\\"ISO-8859-1,utf-8;q=0.7,*;q=0.3\\\",\\\"aCCEPT-ENCodinG\\\":\\\"gzip,deflate,sdch\\\",\\\"aCCEPT-LANguagE\\\":\\\"en-US,en;q=0.9\\\",\\\"hOST\\\":\\\"dmnkkVgOdqQqypR.com\\\",\\\"uSER-aGeNT\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/104.0.0.0 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GeT\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"\\\",\\\"url\\\":\\\"http:\\\\/\\\\/37.218.241.94:80\\\"},\\\"response\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":200,\\\"headers_list\\\":[[\\\"Content-Length\\\",\\\"0\\\"],[\\\"Date\\\",\\\"Thu, 10 Nov 2022 10:49:28 GMT\\\"],[\\\"X-Correlation-Id\\\",\\\"aaaaaaaa\\\"]],\\\"headers\\\":{\\\"Content-Length\\\":\\\"0\\\",\\\"Date\\\":\\\"Thu, 10 Nov 2022 10:49:28 GMT\\\",\\\"X-Correlation-Id\\\":\\\"aaaaaaaa\\\"}},\\\"t\\\":0}],\\\"socksproxy\\\":null,\\\"tampering\\\":{\\\"header_field_name\\\":false,\\\"header_field_number\\\":false,\\\"header_field_value\\\":false,\\\"header_name_capitalization\\\":false,\\\"header_name_diff\\\":[],\\\"request_line_capitalization\\\":false,\\\"total\\\":true}},\\\"test_name\\\":\\\"http_header_field_manipulation\\\",\\\"test_runtime\\\":1.0322094,\\\"test_start_time\\\":\\\"2022-11-10 10:49:27\\\",\\\"test_version\\\":\\\"0.2.0\\\"}\\n\",\"category_code\":\"\",\"verification_status\":\"unverified\"}" +} \ No newline at end of file diff --git a/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20221110105049.153143_DE_ndt_b15c26280f8b5993_full-true.json b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20221110105049.153143_DE_ndt_b15c26280f8b5993_full-true.json new file mode 100644 index 000000000..9c5e725b3 --- /dev/null +++ b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20221110105049.153143_DE_ndt_b15c26280f8b5993_full-true.json @@ -0,0 +1,5 @@ +{ + "status": 200, + "contentType": "application/json", + "body": "{\"input\":\"\",\"measurement_start_time\":\"2022-11-10T10:50:28Z\",\"measurement_uid\":\"20221110105049.153143_DE_ndt_b15c26280f8b5993\",\"report_id\":\"20221110T105028Z_ndt_DE_3209_n1_9eyIJwUdcD6u3WgC\",\"test_name\":\"ndt\",\"test_start_time\":\"2022-11-10T10:50:28Z\",\"probe_asn\":3209,\"probe_cc\":\"DE\",\"scores\":\"{}\",\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"raw_measurement\":\"{\\\"annotations\\\":{\\\"engine_name\\\":\\\"ooniprobe-engine\\\",\\\"engine_version\\\":\\\"3.10.0-beta.3\\\",\\\"platform\\\":\\\"linux\\\"},\\\"data_format_version\\\":\\\"0.2.0\\\",\\\"input\\\":null,\\\"measurement_start_time\\\":\\\"2022-11-10 10:50:28\\\",\\\"probe_asn\\\":\\\"AS3209\\\",\\\"probe_cc\\\":\\\"DE\\\",\\\"probe_ip\\\":\\\"127.0.0.1\\\",\\\"probe_network_name\\\":\\\"Vodafone GmbH\\\",\\\"report_id\\\":\\\"20221110T105028Z_ndt_DE_3209_n1_9eyIJwUdcD6u3WgC\\\",\\\"resolver_asn\\\":\\\"AS3209\\\",\\\"resolver_ip\\\":\\\"88.134.228.97\\\",\\\"resolver_network_name\\\":\\\"Vodafone GmbH\\\",\\\"software_name\\\":\\\"iThena-ooniprobe\\\",\\\"software_version\\\":\\\"1.0.0\\\",\\\"test_keys\\\":{\\\"download\\\":[{\\\"AppInfo\\\":{\\\"NumBytes\\\":360448,\\\"ElapsedTime\\\":251465},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"download\\\"},{\\\"AppInfo\\\":{\\\"NumBytes\\\":1048576,\\\"ElapsedTime\\\":500021},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"download\\\"},{\\\"AppInfo\\\":{\\\"NumBytes\\\":1966080,\\\"ElapsedTime\\\":750508},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"download\\\"},{\\\"AppInfo\\\":{\\\"NumBytes\\\":2883584,\\\"ElapsedTime\\\":1000443},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"download\\\"},{\\\"AppInfo\\\":{\\\"NumBytes\\\":3670016,\\\"ElapsedTime\\\":1251043},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"download\\\"},{\\\"Origin\\\":\\\"server\\\",\\\"Test\\\":\\\"download\\\",\\\"TCPInfo\\\":{\\\"State\\\":1,\\\"CAState\\\":0,\\\"Retransmits\\\":0,\\\"Probes\\\":0,\\\"Backoff\\\":0,\\\"Options\\\":7,\\\"WScale\\\":119,\\\"AppLimited\\\":0,\\\"RTO\\\":284000,\\\"ATO\\\":40000,\\\"SndMSS\\\":1428,\\\"RcvMSS\\\":620,\\\"Unacked\\\":79,\\\"Sacked\\\":0,\\\"Lost\\\":0,\\\"Retrans\\\":0,\\\"Fackets\\\":0,\\\"LastDataSent\\\":0,\\\"LastAckSent\\\":0,\\\"LastDataRecv\\\":504,\\\"LastAckRecv\\\":8,\\\"PMTU\\\":1500,\\\"RcvSsThresh\\\":64096,\\\"RTT\\\":80306,\\\"RTTVar\\\":37740,\\\"SndSsThresh\\\":2147483647,\\\"SndCwnd\\\":621,\\\"AdvMSS\\\":1428,\\\"Reordering\\\":3,\\\"RcvRTT\\\":0,\\\"RcvSpace\\\":14400,\\\"TotalRetrans\\\":0,\\\"PacingRate\\\":12126606,\\\"MaxPacingRate\\\":-1,\\\"BytesAcked\\\":1015521,\\\"BytesReceived\\\":980,\\\"SegsOut\\\":796,\\\"SegsIn\\\":49,\\\"NotsentBytes\\\":2846004,\\\"MinRTT\\\":38481,\\\"DataSegsIn\\\":3,\\\"DataSegsOut\\\":793,\\\"DeliveryRate\\\":4243338,\\\"BusyTime\\\":544000,\\\"RWndLimited\\\":0,\\\"SndBufLimited\\\":0,\\\"Delivered\\\":715,\\\"DeliveredCE\\\":0,\\\"BytesSent\\\":1128333,\\\"BytesRetrans\\\":0,\\\"DSackDups\\\":0,\\\"ReordSeen\\\":0,\\\"ElapsedTime\\\":500553}},{\\\"AppInfo\\\":{\\\"NumBytes\\\":4719718,\\\"ElapsedTime\\\":1501020},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"download\\\"},{\\\"AppInfo\\\":{\\\"NumBytes\\\":5768294,\\\"ElapsedTime\\\":1751367},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"download\\\"},{\\\"AppInfo\\\":{\\\"NumBytes\\\":6816870,\\\"ElapsedTime\\\":2000523},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"download\\\"},{\\\"AppInfo\\\":{\\\"NumBytes\\\":7865446,\\\"ElapsedTime\\\":2250412},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"download\\\"},{\\\"Origin\\\":\\\"server\\\",\\\"Test\\\":\\\"download\\\",\\\"TCPInfo\\\":{\\\"State\\\":1,\\\"CAState\\\":0,\\\"Retransmits\\\":0,\\\"Probes\\\":0,\\\"Backoff\\\":0,\\\"Options\\\":7,\\\"WScale\\\":119,\\\"AppLimited\\\":0,\\\"RTO\\\":520000,\\\"ATO\\\":40000,\\\"SndMSS\\\":1428,\\\"RcvMSS\\\":620,\\\"Unacked\\\":132,\\\"Sacked\\\":0,\\\"Lost\\\":0,\\\"Retrans\\\":0,\\\"Fackets\\\":0,\\\"LastDataSent\\\":0,\\\"LastAckSent\\\":0,\\\"LastDataRecv\\\":1240,\\\"LastAckRecv\\\":36,\\\"PMTU\\\":1500,\\\"RcvSsThresh\\\":64096,\\\"RTT\\\":124306,\\\"RTTVar\\\":65853,\\\"SndSsThresh\\\":140,\\\"SndCwnd\\\":546,\\\"AdvMSS\\\":1428,\\\"Reordering\\\":3,\\\"RcvRTT\\\":0,\\\"RcvSpace\\\":14400,\\\"TotalRetrans\\\":0,\\\"PacingRate\\\":4316184,\\\"MaxPacingRate\\\":-1,\\\"BytesAcked\\\":3460257,\\\"BytesReceived\\\":980,\\\"SegsOut\\\":2561,\\\"SegsIn\\\":74,\\\"NotsentBytes\\\":3924144,\\\"MinRTT\\\":38481,\\\"DataSegsIn\\\":3,\\\"DataSegsOut\\\":2558,\\\"DeliveryRate\\\":4359804,\\\"BusyTime\\\":1280000,\\\"RWndLimited\\\":0,\\\"SndBufLimited\\\":0,\\\"Delivered\\\":2427,\\\"DeliveredCE\\\":0,\\\"BytesSent\\\":3648753,\\\"BytesRetrans\\\":0,\\\"DSackDups\\\":0,\\\"ReordSeen\\\":0,\\\"ElapsedTime\\\":1235493}},{\\\"AppInfo\\\":{\\\"NumBytes\\\":8390862,\\\"ElapsedTime\\\":2500528},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"download\\\"},{\\\"AppInfo\\\":{\\\"NumBytes\\\":9439438,\\\"ElapsedTime\\\":2750845},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"download\\\"},{\\\"AppInfo\\\":{\\\"NumBytes\\\":10488014,\\\"ElapsedTime\\\":3000348},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"download\\\"},{\\\"Origin\\\":\\\"server\\\",\\\"Test\\\":\\\"download\\\",\\\"TCPInfo\\\":{\\\"State\\\":1,\\\"CAState\\\":0,\\\"Retransmits\\\":0,\\\"Probes\\\":0,\\\"Backoff\\\":0,\\\"Options\\\":7,\\\"WScale\\\":119,\\\"AppLimited\\\":0,\\\"RTO\\\":380000,\\\"ATO\\\":40000,\\\"SndMSS\\\":1428,\\\"RcvMSS\\\":620,\\\"Unacked\\\":528,\\\"Sacked\\\":0,\\\"Lost\\\":0,\\\"Retrans\\\":0,\\\"Fackets\\\":0,\\\"LastDataSent\\\":0,\\\"LastAckSent\\\":0,\\\"LastDataRecv\\\":464,\\\"LastAckRecv\\\":124,\\\"PMTU\\\":1500,\\\"RcvSsThresh\\\":64096,\\\"RTT\\\":122691,\\\"RTTVar\\\":58073,\\\"SndSsThresh\\\":140,\\\"SndCwnd\\\":548,\\\"AdvMSS\\\":1428,\\\"Reordering\\\":3,\\\"RcvRTT\\\":0,\\\"RcvSpace\\\":14400,\\\"TotalRetrans\\\":0,\\\"PacingRate\\\":4332279,\\\"MaxPacingRate\\\":-1,\\\"BytesAcked\\\":5509437,\\\"BytesReceived\\\":1027,\\\"SegsOut\\\":4393,\\\"SegsIn\\\":95,\\\"NotsentBytes\\\":3365796,\\\"MinRTT\\\":38481,\\\"DataSegsIn\\\":4,\\\"DataSegsOut\\\":4389,\\\"DeliveryRate\\\":2704235,\\\"BusyTime\\\":1952000,\\\"RWndLimited\\\":0,\\\"SndBufLimited\\\":0,\\\"Delivered\\\":3862,\\\"DeliveredCE\\\":0,\\\"BytesSent\\\":6263421,\\\"BytesRetrans\\\":0,\\\"DSackDups\\\":0,\\\"ReordSeen\\\":0,\\\"ElapsedTime\\\":1909460}},{\\\"AppInfo\\\":{\\\"NumBytes\\\":11537719,\\\"ElapsedTime\\\":3250616},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"download\\\"},{\\\"Origin\\\":\\\"server\\\",\\\"Test\\\":\\\"download\\\",\\\"TCPInfo\\\":{\\\"State\\\":1,\\\"CAState\\\":0,\\\"Retransmits\\\":0,\\\"Probes\\\":0,\\\"Backoff\\\":0,\\\"Options\\\":7,\\\"WScale\\\":119,\\\"AppLimited\\\":0,\\\"RTO\\\":368000,\\\"ATO\\\":40000,\\\"SndMSS\\\":1428,\\\"RcvMSS\\\":620,\\\"Unacked\\\":547,\\\"Sacked\\\":0,\\\"Lost\\\":0,\\\"Retrans\\\":0,\\\"Fackets\\\":0,\\\"LastDataSent\\\":36,\\\"LastAckSent\\\":0,\\\"LastDataRecv\\\":1020,\\\"LastAckRecv\\\":76,\\\"PMTU\\\":1500,\\\"RcvSsThresh\\\":64096,\\\"RTT\\\":129723,\\\"RTTVar\\\":52011,\\\"SndSsThresh\\\":140,\\\"SndCwnd\\\":548,\\\"AdvMSS\\\":1428,\\\"Reordering\\\":3,\\\"RcvRTT\\\":0,\\\"RcvSpace\\\":14400,\\\"TotalRetrans\\\":0,\\\"PacingRate\\\":4332279,\\\"MaxPacingRate\\\":-1,\\\"BytesAcked\\\":7384401,\\\"BytesReceived\\\":1027,\\\"SegsOut\\\":5725,\\\"SegsIn\\\":122,\\\"NotsentBytes\\\":2941680,\\\"MinRTT\\\":38481,\\\"DataSegsIn\\\":4,\\\"DataSegsOut\\\":5721,\\\"DeliveryRate\\\":2510356,\\\"BusyTime\\\":2508000,\\\"RWndLimited\\\":0,\\\"SndBufLimited\\\":0,\\\"Delivered\\\":5175,\\\"DeliveredCE\\\":0,\\\"BytesSent\\\":8165517,\\\"BytesRetrans\\\":0,\\\"DSackDups\\\":0,\\\"ReordSeen\\\":0,\\\"ElapsedTime\\\":2466186}},{\\\"AppInfo\\\":{\\\"NumBytes\\\":12587426,\\\"ElapsedTime\\\":3500188},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"download\\\"},{\\\"AppInfo\\\":{\\\"NumBytes\\\":13636002,\\\"ElapsedTime\\\":3750053},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"download\\\"},{\\\"Origin\\\":\\\"server\\\",\\\"Test\\\":\\\"download\\\",\\\"TCPInfo\\\":{\\\"State\\\":1,\\\"CAState\\\":0,\\\"Retransmits\\\":0,\\\"Probes\\\":0,\\\"Backoff\\\":0,\\\"Options\\\":7,\\\"WScale\\\":119,\\\"AppLimited\\\":0,\\\"RTO\\\":392000,\\\"ATO\\\":40000,\\\"SndMSS\\\":1428,\\\"RcvMSS\\\":620,\\\"Unacked\\\":305,\\\"Sacked\\\":0,\\\"Lost\\\":0,\\\"Retrans\\\":0,\\\"Fackets\\\":0,\\\"LastDataSent\\\":0,\\\"LastAckSent\\\":0,\\\"LastDataRecv\\\":396,\\\"LastAckRecv\\\":4,\\\"PMTU\\\":1500,\\\"RcvSsThresh\\\":64096,\\\"RTT\\\":115852,\\\"RTTVar\\\":45061,\\\"SndSsThresh\\\":140,\\\"SndCwnd\\\":550,\\\"AdvMSS\\\":1428,\\\"Reordering\\\":3,\\\"RcvRTT\\\":0,\\\"RcvSpace\\\":14400,\\\"TotalRetrans\\\":0,\\\"PacingRate\\\":5415349,\\\"MaxPacingRate\\\":-1,\\\"BytesAcked\\\":9245085,\\\"BytesReceived\\\":1074,\\\"SegsOut\\\":6787,\\\"SegsIn\\\":141,\\\"NotsentBytes\\\":3547152,\\\"MinRTT\\\":38481,\\\"DataSegsIn\\\":5,\\\"DataSegsOut\\\":6782,\\\"DeliveryRate\\\":1126450,\\\"BusyTime\\\":2920000,\\\"RWndLimited\\\":0,\\\"SndBufLimited\\\":0,\\\"Delivered\\\":6478,\\\"DeliveredCE\\\":0,\\\"BytesSent\\\":9680625,\\\"BytesRetrans\\\":0,\\\"DSackDups\\\":0,\\\"ReordSeen\\\":0,\\\"ElapsedTime\\\":2876276}},{\\\"AppInfo\\\":{\\\"NumBytes\\\":14685706,\\\"ElapsedTime\\\":4000494},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"download\\\"},{\\\"AppInfo\\\":{\\\"NumBytes\\\":15734282,\\\"ElapsedTime\\\":4250991},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"download\\\"},{\\\"Origin\\\":\\\"server\\\",\\\"Test\\\":\\\"download\\\",\\\"TCPInfo\\\":{\\\"State\\\":1,\\\"CAState\\\":0,\\\"Retransmits\\\":0,\\\"Probes\\\":0,\\\"Backoff\\\":0,\\\"Options\\\":7,\\\"WScale\\\":119,\\\"AppLimited\\\":0,\\\"RTO\\\":384000,\\\"ATO\\\":40000,\\\"SndMSS\\\":1428,\\\"RcvMSS\\\":620,\\\"Unacked\\\":512,\\\"Sacked\\\":0,\\\"Lost\\\":0,\\\"Retrans\\\":0,\\\"Fackets\\\":0,\\\"LastDataSent\\\":0,\\\"LastAckSent\\\":0,\\\"LastDataRecv\\\":220,\\\"LastAckRecv\\\":20,\\\"PMTU\\\":1500,\\\"RcvSsThresh\\\":64096,\\\"RTT\\\":157159,\\\"RTTVar\\\":31747,\\\"SndSsThresh\\\":140,\\\"SndCwnd\\\":602,\\\"AdvMSS\\\":1428,\\\"Reordering\\\":3,\\\"RcvRTT\\\":0,\\\"RcvSpace\\\":14400,\\\"TotalRetrans\\\":0,\\\"PacingRate\\\":3568297,\\\"MaxPacingRate\\\":-1,\\\"BytesAcked\\\":11538453,\\\"BytesReceived\\\":1121,\\\"SegsOut\\\":8601,\\\"SegsIn\\\":167,\\\"NotsentBytes\\\":2564688,\\\"MinRTT\\\":38481,\\\"DataSegsIn\\\":6,\\\"DataSegsOut\\\":8595,\\\"DeliveryRate\\\":3843017,\\\"BusyTime\\\":3544000,\\\"RWndLimited\\\":0,\\\"SndBufLimited\\\":0,\\\"Delivered\\\":8084,\\\"DeliveredCE\\\":0,\\\"BytesSent\\\":12269589,\\\"BytesRetrans\\\":0,\\\"DSackDups\\\":0,\\\"ReordSeen\\\":0,\\\"ElapsedTime\\\":3502214}},{\\\"AppInfo\\\":{\\\"NumBytes\\\":16783989,\\\"ElapsedTime\\\":4501223},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"download\\\"},{\\\"Origin\\\":\\\"server\\\",\\\"Test\\\":\\\"download\\\",\\\"TCPInfo\\\":{\\\"State\\\":1,\\\"CAState\\\":0,\\\"Retransmits\\\":0,\\\"Probes\\\":0,\\\"Backoff\\\":0,\\\"Options\\\":7,\\\"WScale\\\":119,\\\"AppLimited\\\":0,\\\"RTO\\\":440000,\\\"ATO\\\":40000,\\\"SndMSS\\\":1428,\\\"RcvMSS\\\":620,\\\"Unacked\\\":257,\\\"Sacked\\\":0,\\\"Lost\\\":0,\\\"Retrans\\\":0,\\\"Fackets\\\":0,\\\"LastDataSent\\\":4,\\\"LastAckSent\\\":0,\\\"LastDataRecv\\\":80,\\\"LastAckRecv\\\":28,\\\"PMTU\\\":1500,\\\"RcvSsThresh\\\":64096,\\\"RTT\\\":168073,\\\"RTTVar\\\":56169,\\\"SndSsThresh\\\":140,\\\"SndCwnd\\\":606,\\\"AdvMSS\\\":1428,\\\"Reordering\\\":3,\\\"RcvRTT\\\":0,\\\"RcvSpace\\\":14400,\\\"TotalRetrans\\\":0,\\\"PacingRate\\\":4757729,\\\"MaxPacingRate\\\":-1,\\\"BytesAcked\\\":12406677,\\\"BytesReceived\\\":1168,\\\"SegsOut\\\":8954,\\\"SegsIn\\\":176,\\\"NotsentBytes\\\":3474324,\\\"MinRTT\\\":38481,\\\"DataSegsIn\\\":7,\\\"DataSegsOut\\\":8948,\\\"DeliveryRate\\\":3052631,\\\"BusyTime\\\":3720000,\\\"RWndLimited\\\":0,\\\"SndBufLimited\\\":0,\\\"Delivered\\\":8692,\\\"DeliveredCE\\\":0,\\\"BytesSent\\\":12773673,\\\"BytesRetrans\\\":0,\\\"DSackDups\\\":0,\\\"ReordSeen\\\":0,\\\"ElapsedTime\\\":3674640}},{\\\"AppInfo\\\":{\\\"NumBytes\\\":17833695,\\\"ElapsedTime\\\":5000494},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"download\\\"},{\\\"Origin\\\":\\\"server\\\",\\\"Test\\\":\\\"download\\\",\\\"TCPInfo\\\":{\\\"State\\\":1,\\\"CAState\\\":0,\\\"Retransmits\\\":0,\\\"Probes\\\":0,\\\"Backoff\\\":0,\\\"Options\\\":7,\\\"WScale\\\":119,\\\"AppLimited\\\":0,\\\"RTO\\\":364000,\\\"ATO\\\":40000,\\\"SndMSS\\\":1428,\\\"RcvMSS\\\":620,\\\"Unacked\\\":347,\\\"Sacked\\\":0,\\\"Lost\\\":0,\\\"Retrans\\\":0,\\\"Fackets\\\":0,\\\"LastDataSent\\\":0,\\\"LastAckSent\\\":0,\\\"LastDataRecv\\\":28,\\\"LastAckRecv\\\":28,\\\"PMTU\\\":1500,\\\"RcvSsThresh\\\":64096,\\\"RTT\\\":123273,\\\"RTTVar\\\":31213,\\\"SndSsThresh\\\":140,\\\"SndCwnd\\\":606,\\\"AdvMSS\\\":1428,\\\"Reordering\\\":3,\\\"RcvRTT\\\":0,\\\"RcvSpace\\\":14400,\\\"TotalRetrans\\\":0,\\\"PacingRate\\\":4757729,\\\"MaxPacingRate\\\":-1,\\\"BytesAcked\\\":13807545,\\\"BytesReceived\\\":1215,\\\"SegsOut\\\":10026,\\\"SegsIn\\\":189,\\\"NotsentBytes\\\":3551436,\\\"MinRTT\\\":38481,\\\"DataSegsIn\\\":8,\\\"DataSegsOut\\\":10019,\\\"DeliveryRate\\\":4353704,\\\"BusyTime\\\":4048000,\\\"RWndLimited\\\":0,\\\"SndBufLimited\\\":0,\\\"Delivered\\\":9673,\\\"DeliveredCE\\\":0,\\\"BytesSent\\\":14303061,\\\"BytesRetrans\\\":0,\\\"DSackDups\\\":0,\\\"ReordSeen\\\":0,\\\"ElapsedTime\\\":4003126}},{\\\"AppInfo\\\":{\\\"NumBytes\\\":18883403,\\\"ElapsedTime\\\":5250152},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"download\\\"},{\\\"AppInfo\\\":{\\\"NumBytes\\\":19931979,\\\"ElapsedTime\\\":5500807},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"download\\\"},{\\\"Origin\\\":\\\"server\\\",\\\"Test\\\":\\\"download\\\",\\\"TCPInfo\\\":{\\\"State\\\":1,\\\"CAState\\\":0,\\\"Retransmits\\\":0,\\\"Probes\\\":0,\\\"Backoff\\\":0,\\\"Options\\\":7,\\\"WScale\\\":119,\\\"AppLimited\\\":0,\\\"RTO\\\":408000,\\\"ATO\\\":40000,\\\"SndMSS\\\":1428,\\\"RcvMSS\\\":620,\\\"Unacked\\\":522,\\\"Sacked\\\":0,\\\"Lost\\\":0,\\\"Retrans\\\":0,\\\"Fackets\\\":0,\\\"LastDataSent\\\":0,\\\"LastAckSent\\\":0,\\\"LastDataRecv\\\":16,\\\"LastAckRecv\\\":4,\\\"PMTU\\\":1500,\\\"RcvSsThresh\\\":64096,\\\"RTT\\\":166385,\\\"RTTVar\\\":15198,\\\"SndSsThresh\\\":140,\\\"SndCwnd\\\":604,\\\"AdvMSS\\\":1428,\\\"Reordering\\\":3,\\\"RcvRTT\\\":0,\\\"RcvSpace\\\":14400,\\\"TotalRetrans\\\":0,\\\"PacingRate\\\":4743826,\\\"MaxPacingRate\\\":-1,\\\"BytesAcked\\\":16890597,\\\"BytesReceived\\\":1309,\\\"SegsOut\\\":12361,\\\"SegsIn\\\":230,\\\"NotsentBytes\\\":1889244,\\\"MinRTT\\\":38481,\\\"DataSegsIn\\\":10,\\\"DataSegsOut\\\":12353,\\\"DeliveryRate\\\":3278654,\\\"BusyTime\\\":4892000,\\\"RWndLimited\\\":0,\\\"SndBufLimited\\\":0,\\\"Delivered\\\":11832,\\\"DeliveredCE\\\":0,\\\"BytesSent\\\":17636013,\\\"BytesRetrans\\\":0,\\\"DSackDups\\\":0,\\\"ReordSeen\\\":0,\\\"ElapsedTime\\\":4849782}},{\\\"AppInfo\\\":{\\\"NumBytes\\\":20981688,\\\"ElapsedTime\\\":5750269},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"download\\\"},{\\\"AppInfo\\\":{\\\"NumBytes\\\":22030264,\\\"ElapsedTime\\\":6001063},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"download\\\"},{\\\"Origin\\\":\\\"server\\\",\\\"Test\\\":\\\"download\\\",\\\"TCPInfo\\\":{\\\"State\\\":1,\\\"CAState\\\":0,\\\"Retransmits\\\":0,\\\"Probes\\\":0,\\\"Backoff\\\":0,\\\"Options\\\":7,\\\"WScale\\\":119,\\\"AppLimited\\\":0,\\\"RTO\\\":436000,\\\"ATO\\\":40000,\\\"SndMSS\\\":1428,\\\"RcvMSS\\\":620,\\\"Unacked\\\":297,\\\"Sacked\\\":0,\\\"Lost\\\":0,\\\"Retrans\\\":0,\\\"Fackets\\\":0,\\\"LastDataSent\\\":0,\\\"LastAckSent\\\":0,\\\"LastDataRecv\\\":168,\\\"LastAckRecv\\\":8,\\\"PMTU\\\":1500,\\\"RcvSsThresh\\\":64096,\\\"RTT\\\":193210,\\\"RTTVar\\\":43067,\\\"SndSsThresh\\\":140,\\\"SndCwnd\\\":604,\\\"AdvMSS\\\":1428,\\\"Reordering\\\":3,\\\"RcvRTT\\\":0,\\\"RcvSpace\\\":14400,\\\"TotalRetrans\\\":0,\\\"PacingRate\\\":4743826,\\\"MaxPacingRate\\\":-1,\\\"BytesAcked\\\":17421813,\\\"BytesReceived\\\":1309,\\\"SegsOut\\\":12508,\\\"SegsIn\\\":233,\\\"NotsentBytes\\\":3607128,\\\"MinRTT\\\":38481,\\\"DataSegsIn\\\":10,\\\"DataSegsOut\\\":12500,\\\"DeliveryRate\\\":3588934,\\\"BusyTime\\\":5044000,\\\"RWndLimited\\\":0,\\\"SndBufLimited\\\":0,\\\"Delivered\\\":12204,\\\"DeliveredCE\\\":0,\\\"BytesSent\\\":17845929,\\\"BytesRetrans\\\":0,\\\"DSackDups\\\":0,\\\"ReordSeen\\\":0,\\\"ElapsedTime\\\":5000103}},{\\\"AppInfo\\\":{\\\"NumBytes\\\":23079974,\\\"ElapsedTime\\\":6250783},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"download\\\"},{\\\"AppInfo\\\":{\\\"NumBytes\\\":24128550,\\\"ElapsedTime\\\":6500016},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"download\\\"},{\\\"Origin\\\":\\\"server\\\",\\\"Test\\\":\\\"download\\\",\\\"TCPInfo\\\":{\\\"State\\\":1,\\\"CAState\\\":0,\\\"Retransmits\\\":0,\\\"Probes\\\":0,\\\"Backoff\\\":0,\\\"Options\\\":7,\\\"WScale\\\":119,\\\"AppLimited\\\":0,\\\"RTO\\\":372000,\\\"ATO\\\":40000,\\\"SndMSS\\\":1428,\\\"RcvMSS\\\":620,\\\"Unacked\\\":183,\\\"Sacked\\\":0,\\\"Lost\\\":0,\\\"Retrans\\\":0,\\\"Fackets\\\":0,\\\"LastDataSent\\\":0,\\\"LastAckSent\\\":0,\\\"LastDataRecv\\\":300,\\\"LastAckRecv\\\":12,\\\"PMTU\\\":1500,\\\"RcvSsThresh\\\":64096,\\\"RTT\\\":155297,\\\"RTTVar\\\":28174,\\\"SndSsThresh\\\":140,\\\"SndCwnd\\\":604,\\\"AdvMSS\\\":1428,\\\"Reordering\\\":3,\\\"RcvRTT\\\":0,\\\"RcvSpace\\\":14400,\\\"TotalRetrans\\\":0,\\\"PacingRate\\\":4743826,\\\"MaxPacingRate\\\":-1,\\\"BytesAcked\\\":19058301,\\\"BytesReceived\\\":1356,\\\"SegsOut\\\":13541,\\\"SegsIn\\\":258,\\\"NotsentBytes\\\":3804192,\\\"MinRTT\\\":38481,\\\"DataSegsIn\\\":11,\\\"DataSegsOut\\\":13532,\\\"DeliveryRate\\\":2061472,\\\"BusyTime\\\":5468000,\\\"RWndLimited\\\":0,\\\"SndBufLimited\\\":0,\\\"Delivered\\\":13350,\\\"DeliveredCE\\\":0,\\\"BytesSent\\\":19319625,\\\"BytesRetrans\\\":0,\\\"DSackDups\\\":0,\\\"ReordSeen\\\":0,\\\"ElapsedTime\\\":5423184}},{\\\"AppInfo\\\":{\\\"NumBytes\\\":25178261,\\\"ElapsedTime\\\":6750193},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"download\\\"},{\\\"Origin\\\":\\\"server\\\",\\\"Test\\\":\\\"download\\\",\\\"TCPInfo\\\":{\\\"State\\\":1,\\\"CAState\\\":0,\\\"Retransmits\\\":0,\\\"Probes\\\":0,\\\"Backoff\\\":0,\\\"Options\\\":7,\\\"WScale\\\":119,\\\"AppLimited\\\":0,\\\"RTO\\\":332000,\\\"ATO\\\":40000,\\\"SndMSS\\\":1428,\\\"RcvMSS\\\":620,\\\"Unacked\\\":429,\\\"Sacked\\\":0,\\\"Lost\\\":0,\\\"Retrans\\\":0,\\\"Fackets\\\":0,\\\"LastDataSent\\\":0,\\\"LastAckSent\\\":0,\\\"LastDataRecv\\\":240,\\\"LastAckRecv\\\":48,\\\"PMTU\\\":1500,\\\"RcvSsThresh\\\":64096,\\\"RTT\\\":113612,\\\"RTTVar\\\":19018,\\\"SndSsThresh\\\":140,\\\"SndCwnd\\\":566,\\\"AdvMSS\\\":1428,\\\"Reordering\\\":3,\\\"RcvRTT\\\":0,\\\"RcvSpace\\\":14400,\\\"TotalRetrans\\\":0,\\\"PacingRate\\\":4443339,\\\"MaxPacingRate\\\":-1,\\\"BytesAcked\\\":20784753,\\\"BytesReceived\\\":1403,\\\"SegsOut\\\":14997,\\\"SegsIn\\\":283,\\\"NotsentBytes\\\":3268692,\\\"MinRTT\\\":38481,\\\"DataSegsIn\\\":12,\\\"DataSegsOut\\\":14987,\\\"DeliveryRate\\\":3684393,\\\"BusyTime\\\":5952000,\\\"RWndLimited\\\":0,\\\"SndBufLimited\\\":0,\\\"Delivered\\\":14559,\\\"DeliveredCE\\\":0,\\\"BytesSent\\\":21397365,\\\"BytesRetrans\\\":0,\\\"DSackDups\\\":0,\\\"ReordSeen\\\":0,\\\"ElapsedTime\\\":5908874}},{\\\"AppInfo\\\":{\\\"NumBytes\\\":26227972,\\\"ElapsedTime\\\":7000243},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"download\\\"},{\\\"Origin\\\":\\\"server\\\",\\\"Test\\\":\\\"download\\\",\\\"TCPInfo\\\":{\\\"State\\\":1,\\\"CAState\\\":0,\\\"Retransmits\\\":0,\\\"Probes\\\":0,\\\"Backoff\\\":0,\\\"Options\\\":7,\\\"WScale\\\":119,\\\"AppLimited\\\":0,\\\"RTO\\\":356000,\\\"ATO\\\":40000,\\\"SndMSS\\\":1428,\\\"RcvMSS\\\":620,\\\"Unacked\\\":261,\\\"Sacked\\\":0,\\\"Lost\\\":0,\\\"Retrans\\\":0,\\\"Fackets\\\":0,\\\"LastDataSent\\\":0,\\\"LastAckSent\\\":0,\\\"LastDataRecv\\\":124,\\\"LastAckRecv\\\":0,\\\"PMTU\\\":1500,\\\"RcvSsThresh\\\":64096,\\\"RTT\\\":118825,\\\"RTTVar\\\":39801,\\\"SndSsThresh\\\":140,\\\"SndCwnd\\\":566,\\\"AdvMSS\\\":1428,\\\"Reordering\\\":3,\\\"RcvRTT\\\":0,\\\"RcvSpace\\\":14400,\\\"TotalRetrans\\\":0,\\\"PacingRate\\\":4443339,\\\"MaxPacingRate\\\":-1,\\\"BytesAcked\\\":22386969,\\\"BytesReceived\\\":1450,\\\"SegsOut\\\":15952,\\\"SegsIn\\\":300,\\\"NotsentBytes\\\":3384360,\\\"MinRTT\\\":38481,\\\"DataSegsIn\\\":13,\\\"DataSegsOut\\\":15941,\\\"DeliveryRate\\\":1683150,\\\"BusyTime\\\":6348000,\\\"RWndLimited\\\":0,\\\"SndBufLimited\\\":0,\\\"Delivered\\\":15681,\\\"DeliveredCE\\\":0,\\\"BytesSent\\\":22759677,\\\"BytesRetrans\\\":0,\\\"DSackDups\\\":0,\\\"ReordSeen\\\":0,\\\"ElapsedTime\\\":6305222}},{\\\"AppInfo\\\":{\\\"NumBytes\\\":27277682,\\\"ElapsedTime\\\":7250398},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"download\\\"},{\\\"AppInfo\\\":{\\\"NumBytes\\\":28326258,\\\"ElapsedTime\\\":7750443},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"download\\\"},{\\\"Origin\\\":\\\"server\\\",\\\"Test\\\":\\\"download\\\",\\\"TCPInfo\\\":{\\\"State\\\":1,\\\"CAState\\\":0,\\\"Retransmits\\\":0,\\\"Probes\\\":0,\\\"Backoff\\\":0,\\\"Options\\\":7,\\\"WScale\\\":119,\\\"AppLimited\\\":0,\\\"RTO\\\":320000,\\\"ATO\\\":40000,\\\"SndMSS\\\":1428,\\\"RcvMSS\\\":620,\\\"Unacked\\\":497,\\\"Sacked\\\":0,\\\"Lost\\\":0,\\\"Retrans\\\":0,\\\"Fackets\\\":0,\\\"LastDataSent\\\":0,\\\"LastAckSent\\\":0,\\\"LastDataRecv\\\":212,\\\"LastAckRecv\\\":60,\\\"PMTU\\\":1500,\\\"RcvSsThresh\\\":64096,\\\"RTT\\\":109991,\\\"RTTVar\\\":22978,\\\"SndSsThresh\\\":140,\\\"SndCwnd\\\":566,\\\"AdvMSS\\\":1428,\\\"Reordering\\\":3,\\\"RcvRTT\\\":0,\\\"RcvSpace\\\":14400,\\\"TotalRetrans\\\":0,\\\"PacingRate\\\":4445699,\\\"MaxPacingRate\\\":-1,\\\"BytesAcked\\\":24890253,\\\"BytesReceived\\\":1497,\\\"SegsOut\\\":17941,\\\"SegsIn\\\":331,\\\"NotsentBytes\\\":2214828,\\\"MinRTT\\\":38481,\\\"DataSegsIn\\\":14,\\\"DataSegsOut\\\":17930,\\\"DeliveryRate\\\":2421131,\\\"BusyTime\\\":7048000,\\\"RWndLimited\\\":0,\\\"SndBufLimited\\\":0,\\\"Delivered\\\":17434,\\\"DeliveredCE\\\":0,\\\"BytesSent\\\":25599969,\\\"BytesRetrans\\\":0,\\\"DSackDups\\\":0,\\\"ReordSeen\\\":0,\\\"ElapsedTime\\\":7005902}},{\\\"AppInfo\\\":{\\\"NumBytes\\\":29375969,\\\"ElapsedTime\\\":8000251},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"download\\\"},{\\\"Origin\\\":\\\"server\\\",\\\"Test\\\":\\\"download\\\",\\\"TCPInfo\\\":{\\\"State\\\":1,\\\"CAState\\\":0,\\\"Retransmits\\\":0,\\\"Probes\\\":0,\\\"Backoff\\\":0,\\\"Options\\\":7,\\\"WScale\\\":119,\\\"AppLimited\\\":0,\\\"RTO\\\":324000,\\\"ATO\\\":40000,\\\"SndMSS\\\":1428,\\\"RcvMSS\\\":620,\\\"Unacked\\\":496,\\\"Sacked\\\":0,\\\"Lost\\\":0,\\\"Retrans\\\":0,\\\"Fackets\\\":0,\\\"LastDataSent\\\":0,\\\"LastAckSent\\\":0,\\\"LastDataRecv\\\":236,\\\"LastAckRecv\\\":60,\\\"PMTU\\\":1500,\\\"RcvSsThresh\\\":64096,\\\"RTT\\\":119294,\\\"RTTVar\\\":24671,\\\"SndSsThresh\\\":140,\\\"SndCwnd\\\":566,\\\"AdvMSS\\\":1428,\\\"Reordering\\\":3,\\\"RcvRTT\\\":0,\\\"RcvSpace\\\":14400,\\\"TotalRetrans\\\":0,\\\"PacingRate\\\":4445699,\\\"MaxPacingRate\\\":-1,\\\"BytesAcked\\\":25971249,\\\"BytesReceived\\\":1544,\\\"SegsOut\\\":18698,\\\"SegsIn\\\":341,\\\"NotsentBytes\\\":2613240,\\\"MinRTT\\\":38481,\\\"DataSegsIn\\\":15,\\\"DataSegsOut\\\":18686,\\\"DeliveryRate\\\":4184591,\\\"BusyTime\\\":7292000,\\\"RWndLimited\\\":0,\\\"SndBufLimited\\\":0,\\\"Delivered\\\":18191,\\\"DeliveredCE\\\":0,\\\"BytesSent\\\":26679537,\\\"BytesRetrans\\\":0,\\\"DSackDups\\\":0,\\\"ReordSeen\\\":0,\\\"ElapsedTime\\\":7248437}},{\\\"AppInfo\\\":{\\\"NumBytes\\\":30425680,\\\"ElapsedTime\\\":8250032},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"download\\\"},{\\\"AppInfo\\\":{\\\"NumBytes\\\":31474256,\\\"ElapsedTime\\\":8500925},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"download\\\"},{\\\"AppInfo\\\":{\\\"NumBytes\\\":32522832,\\\"ElapsedTime\\\":8750616},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"download\\\"},{\\\"Origin\\\":\\\"server\\\",\\\"Test\\\":\\\"download\\\",\\\"TCPInfo\\\":{\\\"State\\\":1,\\\"CAState\\\":0,\\\"Retransmits\\\":0,\\\"Probes\\\":0,\\\"Backoff\\\":0,\\\"Options\\\":7,\\\"WScale\\\":119,\\\"AppLimited\\\":0,\\\"RTO\\\":324000,\\\"ATO\\\":40000,\\\"SndMSS\\\":1428,\\\"RcvMSS\\\":620,\\\"Unacked\\\":293,\\\"Sacked\\\":0,\\\"Lost\\\":0,\\\"Retrans\\\":0,\\\"Fackets\\\":0,\\\"LastDataSent\\\":0,\\\"LastAckSent\\\":0,\\\"LastDataRecv\\\":4,\\\"LastAckRecv\\\":4,\\\"PMTU\\\":1500,\\\"RcvSsThresh\\\":64096,\\\"RTT\\\":107641,\\\"RTTVar\\\":13938,\\\"SndSsThresh\\\":140,\\\"SndCwnd\\\":566,\\\"AdvMSS\\\":1428,\\\"Reordering\\\":3,\\\"RcvRTT\\\":0,\\\"RcvSpace\\\":14400,\\\"TotalRetrans\\\":0,\\\"PacingRate\\\":4445699,\\\"MaxPacingRate\\\":-1,\\\"BytesAcked\\\":28463109,\\\"BytesReceived\\\":1638,\\\"SegsOut\\\":20240,\\\"SegsIn\\\":371,\\\"NotsentBytes\\\":3431484,\\\"MinRTT\\\":38481,\\\"DataSegsIn\\\":17,\\\"DataSegsOut\\\":20228,\\\"DeliveryRate\\\":2743600,\\\"BusyTime\\\":7916000,\\\"RWndLimited\\\":0,\\\"SndBufLimited\\\":0,\\\"Delivered\\\":19936,\\\"DeliveredCE\\\":0,\\\"BytesSent\\\":28881513,\\\"BytesRetrans\\\":0,\\\"DSackDups\\\":0,\\\"ReordSeen\\\":0,\\\"ElapsedTime\\\":7873489}},{\\\"AppInfo\\\":{\\\"NumBytes\\\":33572540,\\\"ElapsedTime\\\":9001430},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"download\\\"},{\\\"AppInfo\\\":{\\\"NumBytes\\\":34621116,\\\"ElapsedTime\\\":9250423},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"download\\\"},{\\\"Origin\\\":\\\"server\\\",\\\"Test\\\":\\\"download\\\",\\\"TCPInfo\\\":{\\\"State\\\":1,\\\"CAState\\\":0,\\\"Retransmits\\\":0,\\\"Probes\\\":0,\\\"Backoff\\\":0,\\\"Options\\\":7,\\\"WScale\\\":119,\\\"AppLimited\\\":0,\\\"RTO\\\":308000,\\\"ATO\\\":40000,\\\"SndMSS\\\":1428,\\\"RcvMSS\\\":620,\\\"Unacked\\\":321,\\\"Sacked\\\":0,\\\"Lost\\\":0,\\\"Retrans\\\":0,\\\"Fackets\\\":0,\\\"LastDataSent\\\":0,\\\"LastAckSent\\\":0,\\\"LastDataRecv\\\":176,\\\"LastAckRecv\\\":8,\\\"PMTU\\\":1500,\\\"RcvSsThresh\\\":64096,\\\"RTT\\\":100616,\\\"RTTVar\\\":16178,\\\"SndSsThresh\\\":140,\\\"SndCwnd\\\":576,\\\"AdvMSS\\\":1428,\\\"Reordering\\\":3,\\\"RcvRTT\\\":0,\\\"RcvSpace\\\":14400,\\\"TotalRetrans\\\":0,\\\"PacingRate\\\":4522211,\\\"MaxPacingRate\\\":-1,\\\"BytesAcked\\\":30003921,\\\"BytesReceived\\\":1685,\\\"SegsOut\\\":21347,\\\"SegsIn\\\":391,\\\"NotsentBytes\\\":3457188,\\\"MinRTT\\\":38481,\\\"DataSegsIn\\\":18,\\\"DataSegsOut\\\":21335,\\\"DeliveryRate\\\":3644944,\\\"BusyTime\\\":8328000,\\\"RWndLimited\\\":0,\\\"SndBufLimited\\\":0,\\\"Delivered\\\":21015,\\\"DeliveredCE\\\":0,\\\"BytesSent\\\":30462309,\\\"BytesRetrans\\\":0,\\\"DSackDups\\\":0,\\\"ReordSeen\\\":0,\\\"ElapsedTime\\\":8284057}},{\\\"AppInfo\\\":{\\\"NumBytes\\\":35670826,\\\"ElapsedTime\\\":9750502},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"download\\\"}],\\\"failure\\\":null,\\\"protocol\\\":7,\\\"server\\\":{\\\"hostname\\\":\\\"ndt-mlab3-prg02.mlab-oti.measurement-lab.org\\\",\\\"site\\\":\\\"prg02\\\"},\\\"summary\\\":{\\\"avg_rtt\\\":100.616,\\\"download\\\":29266.860643712076,\\\"mss\\\":1428,\\\"max_rtt\\\":193.21,\\\"min_rtt\\\":38.481,\\\"ping\\\":38.481,\\\"retransmit_rate\\\":0,\\\"upload\\\":12117.596243211232},\\\"upload\\\":[{\\\"AppInfo\\\":{\\\"NumBytes\\\":984064,\\\"ElapsedTime\\\":250614},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"upload\\\"},{\\\"AppInfo\\\":{\\\"NumBytes\\\":1442816,\\\"ElapsedTime\\\":501254},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"upload\\\"},{\\\"AppInfo\\\":{\\\"NumBytes\\\":1836032,\\\"ElapsedTime\\\":751459},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"upload\\\"},{\\\"AppInfo\\\":{\\\"NumBytes\\\":2098176,\\\"ElapsedTime\\\":1000646},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"upload\\\"},{\\\"AppInfo\\\":{\\\"NumBytes\\\":2622464,\\\"ElapsedTime\\\":1250418},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"upload\\\"},{\\\"AppInfo\\\":{\\\"NumBytes\\\":2884608,\\\"ElapsedTime\\\":1501224},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"upload\\\"},{\\\"AppInfo\\\":{\\\"NumBytes\\\":3408896,\\\"ElapsedTime\\\":2001244},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"upload\\\"},{\\\"AppInfo\\\":{\\\"NumBytes\\\":3671040,\\\"ElapsedTime\\\":2251102},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"upload\\\"},{\\\"AppInfo\\\":{\\\"NumBytes\\\":4195328,\\\"ElapsedTime\\\":2500091},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"upload\\\"},{\\\"AppInfo\\\":{\\\"NumBytes\\\":4719616,\\\"ElapsedTime\\\":2750256},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"upload\\\"},{\\\"AppInfo\\\":{\\\"NumBytes\\\":5243904,\\\"ElapsedTime\\\":3000131},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"upload\\\"},{\\\"AppInfo\\\":{\\\"NumBytes\\\":5768192,\\\"ElapsedTime\\\":3500841},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"upload\\\"},{\\\"AppInfo\\\":{\\\"NumBytes\\\":6292480,\\\"ElapsedTime\\\":4001150},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"upload\\\"},{\\\"AppInfo\\\":{\\\"NumBytes\\\":6816768,\\\"ElapsedTime\\\":4250893},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"upload\\\"},{\\\"AppInfo\\\":{\\\"NumBytes\\\":7341056,\\\"ElapsedTime\\\":4751089},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"upload\\\"},{\\\"AppInfo\\\":{\\\"NumBytes\\\":7865344,\\\"ElapsedTime\\\":5000868},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"upload\\\"},{\\\"AppInfo\\\":{\\\"NumBytes\\\":8389632,\\\"ElapsedTime\\\":5501532},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"upload\\\"},{\\\"AppInfo\\\":{\\\"NumBytes\\\":9438208,\\\"ElapsedTime\\\":6000620},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"upload\\\"},{\\\"AppInfo\\\":{\\\"NumBytes\\\":10486784,\\\"ElapsedTime\\\":6750319},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"upload\\\"},{\\\"AppInfo\\\":{\\\"NumBytes\\\":11535360,\\\"ElapsedTime\\\":7250397},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"upload\\\"},{\\\"AppInfo\\\":{\\\"NumBytes\\\":12583936,\\\"ElapsedTime\\\":8250141},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"upload\\\"},{\\\"AppInfo\\\":{\\\"NumBytes\\\":13632512,\\\"ElapsedTime\\\":9000142},\\\"Origin\\\":\\\"client\\\",\\\"Test\\\":\\\"upload\\\"}]},\\\"test_name\\\":\\\"ndt\\\",\\\"test_runtime\\\":20.960538012,\\\"test_start_time\\\":\\\"2022-11-10 10:50:28\\\",\\\"test_version\\\":\\\"0.8.0\\\"}\\n\",\"category_code\":\"\",\"verification_status\":\"unverified\"}" +} \ No newline at end of file diff --git a/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20221110105736.694076_ES_httpheaderfieldmanipulation_ea459e693b3d42a2_full-true.json b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20221110105736.694076_ES_httpheaderfieldmanipulation_ea459e693b3d42a2_full-true.json new file mode 100644 index 000000000..bc70137c9 --- /dev/null +++ b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20221110105736.694076_ES_httpheaderfieldmanipulation_ea459e693b3d42a2_full-true.json @@ -0,0 +1,5 @@ +{ + "status": 200, + "contentType": "application/json", + "body": "{\"input\":\"\",\"measurement_start_time\":\"2022-11-10T10:57:36Z\",\"measurement_uid\":\"20221110105736.694076_ES_httpheaderfieldmanipulation_ea459e693b3d42a2\",\"report_id\":\"20221110T105736Z_httpheaderfieldmanipulation_ES_57269_n1_8SnGox89HKlVQoDJ\",\"test_name\":\"http_header_field_manipulation\",\"test_start_time\":\"2022-11-10T10:57:36Z\",\"probe_asn\":57269,\"probe_cc\":\"ES\",\"scores\":\"{\\\"blocking_general\\\":0.0,\\\"blocking_global\\\":0.0,\\\"blocking_country\\\":0.0,\\\"blocking_isp\\\":0.0,\\\"blocking_local\\\":0.0}\",\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"raw_measurement\":\"{\\\"annotations\\\":{\\\"engine_name\\\":\\\"ooniprobe-engine\\\",\\\"engine_version\\\":\\\"3.10.0-beta.3\\\",\\\"platform\\\":\\\"linux\\\"},\\\"data_format_version\\\":\\\"0.2.0\\\",\\\"extensions\\\":{\\\"dnst\\\":0,\\\"httpt\\\":0,\\\"netevents\\\":0,\\\"tcpconnect\\\":0,\\\"tlshandshake\\\":0,\\\"tunnel\\\":0},\\\"input\\\":null,\\\"measurement_start_time\\\":\\\"2022-11-10 10:57:36\\\",\\\"probe_asn\\\":\\\"AS57269\\\",\\\"probe_cc\\\":\\\"ES\\\",\\\"probe_ip\\\":\\\"127.0.0.1\\\",\\\"probe_network_name\\\":\\\"DIGI SPAIN TELECOM S.L.U.\\\",\\\"report_id\\\":\\\"20221110T105736Z_httpheaderfieldmanipulation_ES_57269_n1_8SnGox89HKlVQoDJ\\\",\\\"resolver_asn\\\":\\\"AS57269\\\",\\\"resolver_ip\\\":\\\"2a0c:5a80:0:3::2\\\",\\\"resolver_network_name\\\":\\\"DIGI SPAIN TELECOM S.L.U.\\\",\\\"software_name\\\":\\\"iThena-ooniprobe\\\",\\\"software_version\\\":\\\"1.0.0\\\",\\\"test_helpers\\\":{\\\"backend\\\":\\\"http:\\\\/\\\\/37.218.241.94:80\\\"},\\\"test_keys\\\":{\\\"agent\\\":\\\"agent\\\",\\\"failure\\\":null,\\\"requests\\\":[{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"ACCEpT-CHArSeT\\\",\\\"ISO-8859-1,utf-8;q=0.7,*;q=0.3\\\"],[\\\"AccEpT\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"aCCEPT-encodInG\\\",\\\"gzip,deflate,sdch\\\"],[\\\"aCCEPt-laNguaGe\\\",\\\"en-US;q=0.8,en;q=0.5\\\"],[\\\"hoSt\\\",\\\"QCygTdlHqPeVwPa.com\\\"],[\\\"usEr-aGent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"ACCEpT-CHArSeT\\\":\\\"ISO-8859-1,utf-8;q=0.7,*;q=0.3\\\",\\\"AccEpT\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"aCCEPT-encodInG\\\":\\\"gzip,deflate,sdch\\\",\\\"aCCEPt-laNguaGe\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"hoSt\\\":\\\"QCygTdlHqPeVwPa.com\\\",\\\"usEr-aGent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GeT\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"\\\",\\\"url\\\":\\\"http:\\\\/\\\\/37.218.241.94:80\\\"},\\\"response\\\":{\\\"body\\\":\\\"{\\\\\\\"headers_dict\\\\\\\": {\\\\\\\"aCCEPt-laNguaGe\\\\\\\": [\\\\\\\"en-US;q=0.8,en;q=0.5\\\\\\\"], \\\\\\\"aCCEPT-encodInG\\\\\\\": [\\\\\\\"gzip,deflate,sdch\\\\\\\"], \\\\\\\"AccEpT\\\\\\\": [\\\\\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\\\\\"], \\\\\\\"usEr-aGent\\\\\\\": [\\\\\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\\\\\"], \\\\\\\"ACCEpT-CHArSeT\\\\\\\": [\\\\\\\"ISO-8859-1,utf-8;q=0.7,*;q=0.3\\\\\\\"], \\\\\\\"hoSt\\\\\\\": [\\\\\\\"QCygTdlHqPeVwPa.com\\\\\\\"]}, \\\\\\\"request_line\\\\\\\": \\\\\\\"GeT \\\\/ HTTP\\\\/1.1\\\\\\\", \\\\\\\"request_headers\\\\\\\": [[\\\\\\\"hoSt\\\\\\\", \\\\\\\"QCygTdlHqPeVwPa.com\\\\\\\"], [\\\\\\\"usEr-aGent\\\\\\\", \\\\\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\\\\\"], [\\\\\\\"AccEpT\\\\\\\", \\\\\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\\\\\"], [\\\\\\\"ACCEpT-CHArSeT\\\\\\\", \\\\\\\"ISO-8859-1,utf-8;q=0.7,*;q=0.3\\\\\\\"], [\\\\\\\"aCCEPT-encodInG\\\\\\\", \\\\\\\"gzip,deflate,sdch\\\\\\\"], [\\\\\\\"aCCEPt-laNguaGe\\\\\\\", \\\\\\\"en-US;q=0.8,en;q=0.5\\\\\\\"]]}\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":200,\\\"headers_list\\\":[],\\\"headers\\\":{}},\\\"t\\\":0}],\\\"socksproxy\\\":null,\\\"tampering\\\":{\\\"header_field_name\\\":false,\\\"header_field_number\\\":false,\\\"header_field_value\\\":false,\\\"header_name_capitalization\\\":false,\\\"header_name_diff\\\":[],\\\"request_line_capitalization\\\":false,\\\"total\\\":false}},\\\"test_name\\\":\\\"http_header_field_manipulation\\\",\\\"test_runtime\\\":0.304485898,\\\"test_start_time\\\":\\\"2022-11-10 10:57:36\\\",\\\"test_version\\\":\\\"0.2.0\\\"}\\n\",\"category_code\":\"\",\"verification_status\":\"unverified\"}" +} \ No newline at end of file diff --git a/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20221110105942.212061_TR_httpinvalidrequestline_f99ce62beb3badb9_full-true.json b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20221110105942.212061_TR_httpinvalidrequestline_f99ce62beb3badb9_full-true.json new file mode 100644 index 000000000..2780afde1 --- /dev/null +++ b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20221110105942.212061_TR_httpinvalidrequestline_f99ce62beb3badb9_full-true.json @@ -0,0 +1,5 @@ +{ + "status": 200, + "contentType": "application/json", + "body": "{\"input\":\"\",\"measurement_start_time\":\"2022-11-10T10:59:36Z\",\"measurement_uid\":\"20221110105942.212061_TR_httpinvalidrequestline_f99ce62beb3badb9\",\"report_id\":\"20221110T105936Z_httpinvalidrequestline_TR_47331_n1_fB1HONVuo6bJAcbz\",\"test_name\":\"http_invalid_request_line\",\"test_start_time\":\"2022-11-10T10:59:36Z\",\"probe_asn\":47331,\"probe_cc\":\"TR\",\"scores\":\"{\\\"blocking_general\\\":0.0,\\\"blocking_global\\\":0.0,\\\"blocking_country\\\":0.0,\\\"blocking_isp\\\":0.0,\\\"blocking_local\\\":0.0}\",\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"raw_measurement\":\"{\\\"annotations\\\":{\\\"engine_name\\\":\\\"ooniprobe-engine\\\",\\\"engine_version\\\":\\\"3.10.0-beta.3\\\",\\\"platform\\\":\\\"macos\\\"},\\\"data_format_version\\\":\\\"0.2.0\\\",\\\"input\\\":null,\\\"measurement_start_time\\\":\\\"2022-11-10 10:59:36\\\",\\\"probe_asn\\\":\\\"AS47331\\\",\\\"probe_cc\\\":\\\"TR\\\",\\\"probe_ip\\\":\\\"127.0.0.1\\\",\\\"probe_network_name\\\":\\\"TTNet A.S.\\\",\\\"report_id\\\":\\\"20221110T105936Z_httpinvalidrequestline_TR_47331_n1_fB1HONVuo6bJAcbz\\\",\\\"resolver_asn\\\":\\\"AS16509\\\",\\\"resolver_ip\\\":\\\"18.158.253.104\\\",\\\"resolver_network_name\\\":\\\"Amazon.com, Inc.\\\",\\\"software_name\\\":\\\"ooniprobe-desktop-unattended\\\",\\\"software_version\\\":\\\"3.10.0-beta.3\\\",\\\"test_helpers\\\":{\\\"backend\\\":\\\"37.218.241.93\\\"},\\\"test_keys\\\":{\\\"failure_list\\\":[null,null,null,null,null],\\\"received\\\":[\\\"GET cache_object:\\\\/\\\\/localhost\\\\/ HTTP\\\\/1.0\\\\n\\\\r\\\",\\\"GET \\\\/ HTTP\\\\/SMV\\\\r\\\\n\\\",\\\"RFRG \\\\/ HTTP\\\\/1.1\\\\n\\\\r\\\",\\\"AIVGNPFKDZCYRSCMUZWXENYKCPWPELTVVKMPKKODGSSIZGEYXKWPWEHTKALXNUYIHCKUWEZQDTIJVNICJKXCHOVGPASQLMVYZDSWRWQHBEIQCHMRUTSNRCYSMLOQTWFYYPEGTGMJCFHPWFKPXRNRSVCKRZIXZWHDUIZNQMDNEVCPDOUNUYMLYERAJOFCBMCYWXGDORLONZZMXTXMHCIKAQXWUKKUCPTAETAXMETPHMOSHKMORYORYTIELWLUBAMXTSNNFGNMRTDGFPKGVPPCYZOQIBWGFNXKCCQPTYUTAYHULBOVFUYJIYRHNYGQAWXDTHNFRABNIQQKNBWSXWZTVFTPXYRAADXWRPJQZFRYRSVCTAVGLDYRBMWRYVZVTMCXWHFTMMWZIKZFTZXOFQFFDEPMVFSUJTNFXCRWMAWQERXRGDPABZPERIHRNMMSLAEMOLKPSUXWJADEAZHUFSVSEBCXXRHPJSSSNVNLVKIPICRCVXSDMBFGZYDZCDGYRPEXWXTJYZKEIHXBVSAKOLFFJVASJIFWIVQCVICKRWYCXTLGNILYTWVXNGCNZCFONPSMGTDPUHHUIHCRMJIYJVOIOBDUQNMPBIQWDTFMJBSWPZXJTDQRYNNQEZSUONJZPNWQTYSLBRQEJTDZEAKCKUZBXWGIZTJPCUIHTQLCLDWTHDOOHUWZQUFALKHOTWILDDEQDWXJCIRLVVFPBAUAGIBBURPLKXTZCHYFJKZOBRKFEHJGVVIQJBNGGXVCOTBQYECNMLOVSEOHVHVMMNDBYKIRNPBVTNMYOXRWJWQUWVKQSJVCRHIAEESEBRSVOHNQYHIRRTUKCIVKCOUOAADKMUKCLEOTSWBDUBIBQZJWRBPVNVWUHLQMLTVEOZTBZNICYSPSTQFIOBVVUWIVCDKDNTHDKVYEFQKGXEFGJYAQCAKQZSFZQZNFDSKHJFVURYEOSFSOOCLGGCJYGQBBMBMQTEQAVZZSGXRZDEXQILBOOSQZYMFNYBWGWQRDUTFFNXBSZLBF \\\\/ HTTP\\\\/1.1\\\\r\\\\n\\\",\\\"AZFGC AIVGY OCDJH FSVIR\\\\r\\\\n\\\"],\\\"sent\\\":[\\\"GET cache_object:\\\\/\\\\/localhost\\\\/ HTTP\\\\/1.0\\\\n\\\\r\\\",\\\"GET \\\\/ HTTP\\\\/SMV\\\\r\\\\n\\\",\\\"RFRG \\\\/ HTTP\\\\/1.1\\\\n\\\\r\\\",\\\"AIVGNPFKDZCYRSCMUZWXENYKCPWPELTVVKMPKKODGSSIZGEYXKWPWEHTKALXNUYIHCKUWEZQDTIJVNICJKXCHOVGPASQLMVYZDSWRWQHBEIQCHMRUTSNRCYSMLOQTWFYYPEGTGMJCFHPWFKPXRNRSVCKRZIXZWHDUIZNQMDNEVCPDOUNUYMLYERAJOFCBMCYWXGDORLONZZMXTXMHCIKAQXWUKKUCPTAETAXMETPHMOSHKMORYORYTIELWLUBAMXTSNNFGNMRTDGFPKGVPPCYZOQIBWGFNXKCCQPTYUTAYHULBOVFUYJIYRHNYGQAWXDTHNFRABNIQQKNBWSXWZTVFTPXYRAADXWRPJQZFRYRSVCTAVGLDYRBMWRYVZVTMCXWHFTMMWZIKZFTZXOFQFFDEPMVFSUJTNFXCRWMAWQERXRGDPABZPERIHRNMMSLAEMOLKPSUXWJADEAZHUFSVSEBCXXRHPJSSSNVNLVKIPICRCVXSDMBFGZYDZCDGYRPEXWXTJYZKEIHXBVSAKOLFFJVASJIFWIVQCVICKRWYCXTLGNILYTWVXNGCNZCFONPSMGTDPUHHUIHCRMJIYJVOIOBDUQNMPBIQWDTFMJBSWPZXJTDQRYNNQEZSUONJZPNWQTYSLBRQEJTDZEAKCKUZBXWGIZTJPCUIHTQLCLDWTHDOOHUWZQUFALKHOTWILDDEQDWXJCIRLVVFPBAUAGIBBURPLKXTZCHYFJKZOBRKFEHJGVVIQJBNGGXVCOTBQYECNMLOVSEOHVHVMMNDBYKIRNPBVTNMYOXRWJWQUWVKQSJVCRHIAEESEBRSVOHNQYHIRRTUKCIVKCOUOAADKMUKCLEOTSWBDUBIBQZJWRBPVNVWUHLQMLTVEOZTBZNICYSPSTQFIOBVVUWIVCDKDNTHDKVYEFQKGXEFGJYAQCAKQZSFZQZNFDSKHJFVURYEOSFSOOCLGGCJYGQBBMBMQTEQAVZZSGXRZDEXQILBOOSQZYMFNYBWGWQRDUTFFNXBSZLBF \\\\/ HTTP\\\\/1.1\\\\r\\\\n\\\",\\\"AZFGC AIVGY OCDJH FSVIR\\\\r\\\\n\\\"],\\\"tampering_list\\\":[false,false,false,false,false],\\\"tampering\\\":false},\\\"test_name\\\":\\\"http_invalid_request_line\\\",\\\"test_runtime\\\":5.175979365,\\\"test_start_time\\\":\\\"2022-11-10 10:59:36\\\",\\\"test_version\\\":\\\"0.2.0\\\"}\\n\",\"category_code\":\"\",\"verification_status\":\"unverified\"}" +} \ No newline at end of file diff --git a/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20221110105947.714767_US_httpinvalidrequestline_48ce6c10181803ab_full-true.json b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20221110105947.714767_US_httpinvalidrequestline_48ce6c10181803ab_full-true.json new file mode 100644 index 000000000..b8128e24c --- /dev/null +++ b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20221110105947.714767_US_httpinvalidrequestline_48ce6c10181803ab_full-true.json @@ -0,0 +1,5 @@ +{ + "status": 200, + "contentType": "application/json", + "body": "{\"input\":\"\",\"measurement_start_time\":\"2022-11-10T10:59:45Z\",\"measurement_uid\":\"20221110105947.714767_US_httpinvalidrequestline_48ce6c10181803ab\",\"report_id\":\"20221110T105942Z_httpinvalidrequestline_US_13335_n1_cwbvshRglfEgMGAF\",\"test_name\":\"http_invalid_request_line\",\"test_start_time\":\"2022-11-10T10:59:40Z\",\"probe_asn\":13335,\"probe_cc\":\"US\",\"scores\":\"{\\\"blocking_general\\\":1.0,\\\"blocking_global\\\":0.0,\\\"blocking_country\\\":0.0,\\\"blocking_isp\\\":0.0,\\\"blocking_local\\\":0.0}\",\"anomaly\":true,\"confirmed\":false,\"failure\":false,\"raw_measurement\":\"{\\\"annotations\\\":{\\\"architecture\\\":\\\"amd64\\\",\\\"engine_name\\\":\\\"ooniprobe-engine\\\",\\\"engine_version\\\":\\\"3.14.1\\\",\\\"platform\\\":\\\"windows\\\"},\\\"data_format_version\\\":\\\"0.2.0\\\",\\\"input\\\":null,\\\"measurement_start_time\\\":\\\"2022-11-10 10:59:45\\\",\\\"probe_asn\\\":\\\"AS13335\\\",\\\"probe_cc\\\":\\\"US\\\",\\\"probe_ip\\\":\\\"127.0.0.1\\\",\\\"probe_network_name\\\":\\\"Cloudflare, Inc.\\\",\\\"report_id\\\":\\\"20221110T105942Z_httpinvalidrequestline_US_13335_n1_cwbvshRglfEgMGAF\\\",\\\"resolver_asn\\\":\\\"AS13335\\\",\\\"resolver_ip\\\":\\\"172.70.145.59\\\",\\\"resolver_network_name\\\":\\\"Cloudflare, Inc.\\\",\\\"software_name\\\":\\\"ooniprobe-desktop-unattended\\\",\\\"software_version\\\":\\\"3.14.1\\\",\\\"test_keys\\\":{\\\"failure_list\\\":[null,null,null,null,null],\\\"received\\\":[\\\"GET \\\\/ HTTP\\\\/QKV\\\\r\\\\n\\\",\\\"GNDJ \\\\/ HTTP\\\\/1.1\\\\n\\\\r\\\",\\\"YQWRO YQWRO YQWRO YQWRO\\\\r\\\\n\\\",\\\"\\\",\\\"YQWROAXJTLUFLTZSJLTBOIJSCHDEVJQDFHTOEXSQOVTKTENYTXXXZBDNGNFXZKODQCQQIAAFHZIXBWLRYICAEJLRZOLVILPDWNCYKWOVGBVIMMMOYXMSQCGAEVEQDDXDKYFIAZHMTIVJCZDGXFMNLQPPJMPASSKITXUPUROXIWTVLWSWFVRCMAJDOXYURFQMKKBRHYYLICGWUJYYYSVYFJEDIBATRDUAASVIFTAXFYGSQUFTZSWMMWFTLPRRPFTLPBSDLULMTFLZCIWDRLXWYVWNNRTYGWDHDTILOBHTMFIHHEIGAVNTWBYRNUEOMUSSRBTBBITFKAZLUYQQNGJBEBTABXAZEZJDIZWYZIEVLJNDWOEZFHPUVPKMIXTEEGGHHFTPPJRMBGGQGXWIJIHHLPSQAIGFHJUNKHSHPANQDQVZQCPUSPHSQKWKANWNLKAOHOIFULWHZUYARYTDXBACAXABVAKTJWIAYXJLRYBIJEOKNQONOIQKPESUQUZCNQEIFVEYCRIVCJGBOFETFWDLGPLHIELPERTVCHVBAVVIMTYFKVGHTXBAEEFRUFAJGVKLZVONOWFAWTRYLUUOXIZCSZOWPHHVFTNQGMXZBELNOXCNUFUVPCCLIJDJEQPLOMTKIZXVSOHYJCKMKRFZHFCUQUZYCJFIDXCPMZYQHOVCQIFKBSAUYOKZSBUPEQMDNGFNIWQUPGFDMWVJAXZZMUJAJCMBFDLCGPDECDLADKMVMTJOVNFIFKKVEINNUYGGFAAKMJXNDFCDRJSMZIMKEYYRYOUWUCEXHFURFHPKKFCTKRDGZDSSOXHDNHYGJPPSKFVJBOFGUGDLSCZSDNPLFWKBLVQRRNKJGEFKRPLNWGNIBBHMEBZEEELYUARYGJWLKXNXPXOROQEQONZYPZTTHWUWWSGUTQSWJCMYDAGGFMAJACVCGVNSVVBFRCOYATJMLNWLTUNLKZYFAUTIRSHKWZTMJBUQCHCAPIHGGILYKBROJMWTBEXNMJKWSWBMESYSXPDR \\\\/ HTTP\\\\/1.1\\\\r\\\\n\\\"],\\\"sent\\\":[\\\"GET \\\\/ HTTP\\\\/QKV\\\\r\\\\n\\\",\\\"GNDJ \\\\/ HTTP\\\\/1.1\\\\n\\\\r\\\",\\\"YQWRO YQWRO YQWRO YQWRO\\\\r\\\\n\\\",\\\"GET cache_object:\\\\/\\\\/localhost\\\\/ HTTP\\\\/1.0\\\\n\\\\r\\\",\\\"YQWROAXJTLUFLTZSJLTBOIJSCHDEVJQDFHTOEXSQOVTKTENYTXXXZBDNGNFXZKODQCQQIAAFHZIXBWLRYICAEJLRZOLVILPDWNCYKWOVGBVIMMMOYXMSQCGAEVEQDDXDKYFIAZHMTIVJCZDGXFMNLQPPJMPASSKITXUPUROXIWTVLWSWFVRCMAJDOXYURFQMKKBRHYYLICGWUJYYYSVYFJEDIBATRDUAASVIFTAXFYGSQUFTZSWMMWFTLPRRPFTLPBSDLULMTFLZCIWDRLXWYVWNNRTYGWDHDTILOBHTMFIHHEIGAVNTWBYRNUEOMUSSRBTBBITFKAZLUYQQNGJBEBTABXAZEZJDIZWYZIEVLJNDWOEZFHPUVPKMIXTEEGGHHFTPPJRMBGGQGXWIJIHHLPSQAIGFHJUNKHSHPANQDQVZQCPUSPHSQKWKANWNLKAOHOIFULWHZUYARYTDXBACAXABVAKTJWIAYXJLRYBIJEOKNQONOIQKPESUQUZCNQEIFVEYCRIVCJGBOFETFWDLGPLHIELPERTVCHVBAVVIMTYFKVGHTXBAEEFRUFAJGVKLZVONOWFAWTRYLUUOXIZCSZOWPHHVFTNQGMXZBELNOXCNUFUVPCCLIJDJEQPLOMTKIZXVSOHYJCKMKRFZHFCUQUZYCJFIDXCPMZYQHOVCQIFKBSAUYOKZSBUPEQMDNGFNIWQUPGFDMWVJAXZZMUJAJCMBFDLCGPDECDLADKMVMTJOVNFIFKKVEINNUYGGFAAKMJXNDFCDRJSMZIMKEYYRYOUWUCEXHFURFHPKKFCTKRDGZDSSOXHDNHYGJPPSKFVJBOFGUGDLSCZSDNPLFWKBLVQRRNKJGEFKRPLNWGNIBBHMEBZEEELYUARYGJWLKXNXPXOROQEQONZYPZTTHWUWWSGUTQSWJCMYDAGGFMAJACVCGVNSVVBFRCOYATJMLNWLTUNLKZYFAUTIRSHKWZTMJBUQCHCAPIHGGILYKBROJMWTBEXNMJKWSWBMESYSXPDR \\\\/ HTTP\\\\/1.1\\\\r\\\\n\\\"],\\\"tampering_list\\\":[false,false,false,true,false],\\\"tampering\\\":true},\\\"test_name\\\":\\\"http_invalid_request_line\\\",\\\"test_runtime\\\":5.0207507,\\\"test_start_time\\\":\\\"2022-11-10 10:59:40\\\",\\\"test_version\\\":\\\"0.2.0\\\"}\\n\",\"category_code\":\"\",\"verification_status\":\"unverified\"}" +} \ No newline at end of file diff --git a/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20221110111106.870773_US_dash_2d879e766e4a5bde_full-true.json b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20221110111106.870773_US_dash_2d879e766e4a5bde_full-true.json new file mode 100644 index 000000000..bf914d379 --- /dev/null +++ b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20221110111106.870773_US_dash_2d879e766e4a5bde_full-true.json @@ -0,0 +1,5 @@ +{ + "status": 200, + "contentType": "application/json", + "body": "{\"input\":\"\",\"measurement_start_time\":\"2022-11-10T11:11:04Z\",\"measurement_uid\":\"20221110111106.870773_US_dash_2d879e766e4a5bde\",\"report_id\":\"20221110T111104Z_dash_US_19969_n1_kyclVb6Fj9VuW3A9\",\"test_name\":\"dash\",\"test_start_time\":\"2022-11-10T11:11:04Z\",\"probe_asn\":19969,\"probe_cc\":\"US\",\"scores\":\"{\\\"blocking_general\\\":0.0,\\\"blocking_global\\\":0.0,\\\"blocking_country\\\":0.0,\\\"blocking_isp\\\":0.0,\\\"blocking_local\\\":0.0}\",\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"raw_measurement\":\"{\\\"annotations\\\":{\\\"_probe_engine_sanitize_test_keys\\\":\\\"true\\\",\\\"engine_name\\\":\\\"ooniprobe-engine\\\",\\\"engine_version\\\":\\\"3.10.0-beta.3\\\",\\\"platform\\\":\\\"linux\\\"},\\\"data_format_version\\\":\\\"0.2.0\\\",\\\"input\\\":null,\\\"measurement_start_time\\\":\\\"2022-11-10 11:11:04\\\",\\\"probe_asn\\\":\\\"AS19969\\\",\\\"probe_cc\\\":\\\"US\\\",\\\"probe_ip\\\":\\\"127.0.0.1\\\",\\\"probe_network_name\\\":\\\"Joe's Datacenter, LLC\\\",\\\"report_id\\\":\\\"20221110T111104Z_dash_US_19969_n1_kyclVb6Fj9VuW3A9\\\",\\\"resolver_asn\\\":\\\"AS42\\\",\\\"resolver_ip\\\":\\\"66.185.112.249\\\",\\\"resolver_network_name\\\":\\\"WoodyNet\\\",\\\"software_name\\\":\\\"iThena-ooniprobe\\\",\\\"software_version\\\":\\\"1.0.0\\\",\\\"test_keys\\\":{\\\"server\\\":{\\\"hostname\\\":\\\"neubot-mlab-mlab2-ord05.mlab-oti.measurement-lab.org\\\",\\\"site\\\":\\\"ord05\\\"},\\\"simple\\\":{\\\"connect_latency\\\":0.013599914,\\\"median_bitrate\\\":539093,\\\"min_playout_delay\\\":0},\\\"failure\\\":null,\\\"receiver_data\\\":[{\\\"connect_time\\\":0.013599914,\\\"delta_sys_time\\\":0,\\\"delta_user_time\\\":0,\\\"elapsed\\\":0.094994133,\\\"elapsed_target\\\":2,\\\"internal_address\\\":\\\"\\\",\\\"iteration\\\":0,\\\"platform\\\":\\\"linux\\\",\\\"rate\\\":3000,\\\"real_address\\\":\\\"[scrubbed]\\\",\\\"received\\\":750000,\\\"remote_address\\\":\\\"\\\",\\\"request_ticks\\\":1.4492e-5,\\\"server_url\\\":\\\"https:\\\\/\\\\/neubot-mlab-mlab2-ord05.mlab-oti.measurement-lab.org\\\\/dash\\\\/download\\\\/750000\\\",\\\"timestamp\\\":1668078665,\\\"uuid\\\":\\\"\\\",\\\"version\\\":\\\"0.008000000\\\"},{\\\"connect_time\\\":0.013599914,\\\"delta_sys_time\\\":0,\\\"delta_user_time\\\":0,\\\"elapsed\\\":0.141035333,\\\"elapsed_target\\\":2,\\\"internal_address\\\":\\\"\\\",\\\"iteration\\\":1,\\\"platform\\\":\\\"linux\\\",\\\"rate\\\":63161,\\\"real_address\\\":\\\"[scrubbed]\\\",\\\"received\\\":7500000,\\\"remote_address\\\":\\\"\\\",\\\"request_ticks\\\":0.095089959,\\\"server_url\\\":\\\"https:\\\\/\\\\/neubot-mlab-mlab2-ord05.mlab-oti.measurement-lab.org\\\\/dash\\\\/download\\\\/15790250\\\",\\\"timestamp\\\":1668078665,\\\"uuid\\\":\\\"\\\",\\\"version\\\":\\\"0.008000000\\\"},{\\\"connect_time\\\":0.013599914,\\\"delta_sys_time\\\":0,\\\"delta_user_time\\\":0,\\\"elapsed\\\":0.116335875,\\\"elapsed_target\\\":2,\\\"internal_address\\\":\\\"\\\",\\\"iteration\\\":2,\\\"platform\\\":\\\"linux\\\",\\\"rate\\\":425425,\\\"real_address\\\":\\\"[scrubbed]\\\",\\\"received\\\":7500000,\\\"remote_address\\\":\\\"\\\",\\\"request_ticks\\\":0.236205298,\\\"server_url\\\":\\\"https:\\\\/\\\\/neubot-mlab-mlab2-ord05.mlab-oti.measurement-lab.org\\\\/dash\\\\/download\\\\/106356250\\\",\\\"timestamp\\\":1668078665,\\\"uuid\\\":\\\"\\\",\\\"version\\\":\\\"0.008000000\\\"},{\\\"connect_time\\\":0.013599914,\\\"delta_sys_time\\\":0,\\\"delta_user_time\\\":0,\\\"elapsed\\\":0.106205292,\\\"elapsed_target\\\":2,\\\"internal_address\\\":\\\"\\\",\\\"iteration\\\":3,\\\"platform\\\":\\\"linux\\\",\\\"rate\\\":515748,\\\"real_address\\\":\\\"[scrubbed]\\\",\\\"received\\\":7500000,\\\"remote_address\\\":\\\"\\\",\\\"request_ticks\\\":0.352635655,\\\"server_url\\\":\\\"https:\\\\/\\\\/neubot-mlab-mlab2-ord05.mlab-oti.measurement-lab.org\\\\/dash\\\\/download\\\\/128937000\\\",\\\"timestamp\\\":1668078665,\\\"uuid\\\":\\\"\\\",\\\"version\\\":\\\"0.008000000\\\"},{\\\"connect_time\\\":0.013599914,\\\"delta_sys_time\\\":0,\\\"delta_user_time\\\":0,\\\"elapsed\\\":0.111297917,\\\"elapsed_target\\\":2,\\\"internal_address\\\":\\\"\\\",\\\"iteration\\\":4,\\\"platform\\\":\\\"linux\\\",\\\"rate\\\":564943,\\\"real_address\\\":\\\"[scrubbed]\\\",\\\"received\\\":7500000,\\\"remote_address\\\":\\\"\\\",\\\"request_ticks\\\":0.458952652,\\\"server_url\\\":\\\"https:\\\\/\\\\/neubot-mlab-mlab2-ord05.mlab-oti.measurement-lab.org\\\\/dash\\\\/download\\\\/141235750\\\",\\\"timestamp\\\":1668078665,\\\"uuid\\\":\\\"\\\",\\\"version\\\":\\\"0.008000000\\\"},{\\\"connect_time\\\":0.013599914,\\\"delta_sys_time\\\":0,\\\"delta_user_time\\\":0,\\\"elapsed\\\":0.102303273,\\\"elapsed_target\\\":2,\\\"internal_address\\\":\\\"\\\",\\\"iteration\\\":5,\\\"platform\\\":\\\"linux\\\",\\\"rate\\\":539093,\\\"real_address\\\":\\\"[scrubbed]\\\",\\\"received\\\":7500000,\\\"remote_address\\\":\\\"\\\",\\\"request_ticks\\\":0.570334576,\\\"server_url\\\":\\\"https:\\\\/\\\\/neubot-mlab-mlab2-ord05.mlab-oti.measurement-lab.org\\\\/dash\\\\/download\\\\/134773250\\\",\\\"timestamp\\\":1668078665,\\\"uuid\\\":\\\"\\\",\\\"version\\\":\\\"0.008000000\\\"},{\\\"connect_time\\\":0.013599914,\\\"delta_sys_time\\\":0,\\\"delta_user_time\\\":0,\\\"elapsed\\\":0.117548637,\\\"elapsed_target\\\":2,\\\"internal_address\\\":\\\"\\\",\\\"iteration\\\":6,\\\"platform\\\":\\\"linux\\\",\\\"rate\\\":586491,\\\"real_address\\\":\\\"[scrubbed]\\\",\\\"received\\\":7500000,\\\"remote_address\\\":\\\"\\\",\\\"request_ticks\\\":0.672714261,\\\"server_url\\\":\\\"https:\\\\/\\\\/neubot-mlab-mlab2-ord05.mlab-oti.measurement-lab.org\\\\/dash\\\\/download\\\\/146622750\\\",\\\"timestamp\\\":1668078665,\\\"uuid\\\":\\\"\\\",\\\"version\\\":\\\"0.008000000\\\"},{\\\"connect_time\\\":0.013599914,\\\"delta_sys_time\\\":0,\\\"delta_user_time\\\":0,\\\"elapsed\\\":0.11272035,\\\"elapsed_target\\\":2,\\\"internal_address\\\":\\\"\\\",\\\"iteration\\\":7,\\\"platform\\\":\\\"linux\\\",\\\"rate\\\":510427,\\\"real_address\\\":\\\"[scrubbed]\\\",\\\"received\\\":7500000,\\\"remote_address\\\":\\\"\\\",\\\"request_ticks\\\":0.790336183,\\\"server_url\\\":\\\"https:\\\\/\\\\/neubot-mlab-mlab2-ord05.mlab-oti.measurement-lab.org\\\\/dash\\\\/download\\\\/127606750\\\",\\\"timestamp\\\":1668078665,\\\"uuid\\\":\\\"\\\",\\\"version\\\":\\\"0.008000000\\\"},{\\\"connect_time\\\":0.013599914,\\\"delta_sys_time\\\":0,\\\"delta_user_time\\\":0,\\\"elapsed\\\":0.107835731,\\\"elapsed_target\\\":2,\\\"internal_address\\\":\\\"\\\",\\\"iteration\\\":8,\\\"platform\\\":\\\"linux\\\",\\\"rate\\\":532290,\\\"real_address\\\":\\\"[scrubbed]\\\",\\\"received\\\":7500000,\\\"remote_address\\\":\\\"\\\",\\\"request_ticks\\\":0.903153447,\\\"server_url\\\":\\\"https:\\\\/\\\\/neubot-mlab-mlab2-ord05.mlab-oti.measurement-lab.org\\\\/dash\\\\/download\\\\/133072500\\\",\\\"timestamp\\\":1668078666,\\\"uuid\\\":\\\"\\\",\\\"version\\\":\\\"0.008000000\\\"},{\\\"connect_time\\\":0.013599914,\\\"delta_sys_time\\\":0,\\\"delta_user_time\\\":0,\\\"elapsed\\\":0.107376651,\\\"elapsed_target\\\":2,\\\"internal_address\\\":\\\"\\\",\\\"iteration\\\":9,\\\"platform\\\":\\\"linux\\\",\\\"rate\\\":556401,\\\"real_address\\\":\\\"[scrubbed]\\\",\\\"received\\\":7500000,\\\"remote_address\\\":\\\"\\\",\\\"request_ticks\\\":1.011069077,\\\"server_url\\\":\\\"https:\\\\/\\\\/neubot-mlab-mlab2-ord05.mlab-oti.measurement-lab.org\\\\/dash\\\\/download\\\\/139100250\\\",\\\"timestamp\\\":1668078666,\\\"uuid\\\":\\\"\\\",\\\"version\\\":\\\"0.008000000\\\"},{\\\"connect_time\\\":0.013599914,\\\"delta_sys_time\\\":0,\\\"delta_user_time\\\":0,\\\"elapsed\\\":0.128139169,\\\"elapsed_target\\\":2,\\\"internal_address\\\":\\\"\\\",\\\"iteration\\\":10,\\\"platform\\\":\\\"linux\\\",\\\"rate\\\":558780,\\\"real_address\\\":\\\"[scrubbed]\\\",\\\"received\\\":7500000,\\\"remote_address\\\":\\\"\\\",\\\"request_ticks\\\":1.126237201,\\\"server_url\\\":\\\"https:\\\\/\\\\/neubot-mlab-mlab2-ord05.mlab-oti.measurement-lab.org\\\\/dash\\\\/download\\\\/139695000\\\",\\\"timestamp\\\":1668078666,\\\"uuid\\\":\\\"\\\",\\\"version\\\":\\\"0.008000000\\\"},{\\\"connect_time\\\":0.013599914,\\\"delta_sys_time\\\":0,\\\"delta_user_time\\\":0,\\\"elapsed\\\":0.104280423,\\\"elapsed_target\\\":2,\\\"internal_address\\\":\\\"\\\",\\\"iteration\\\":11,\\\"platform\\\":\\\"linux\\\",\\\"rate\\\":468240,\\\"real_address\\\":\\\"[scrubbed]\\\",\\\"received\\\":7500000,\\\"remote_address\\\":\\\"\\\",\\\"request_ticks\\\":1.254469585,\\\"server_url\\\":\\\"https:\\\\/\\\\/neubot-mlab-mlab2-ord05.mlab-oti.measurement-lab.org\\\\/dash\\\\/download\\\\/117060000\\\",\\\"timestamp\\\":1668078666,\\\"uuid\\\":\\\"\\\",\\\"version\\\":\\\"0.008000000\\\"},{\\\"connect_time\\\":0.013599914,\\\"delta_sys_time\\\":0,\\\"delta_user_time\\\":0,\\\"elapsed\\\":0.107657839,\\\"elapsed_target\\\":2,\\\"internal_address\\\":\\\"\\\",\\\"iteration\\\":12,\\\"platform\\\":\\\"linux\\\",\\\"rate\\\":575371,\\\"real_address\\\":\\\"[scrubbed]\\\",\\\"received\\\":7500000,\\\"remote_address\\\":\\\"\\\",\\\"request_ticks\\\":1.358842863,\\\"server_url\\\":\\\"https:\\\\/\\\\/neubot-mlab-mlab2-ord05.mlab-oti.measurement-lab.org\\\\/dash\\\\/download\\\\/143842750\\\",\\\"timestamp\\\":1668078666,\\\"uuid\\\":\\\"\\\",\\\"version\\\":\\\"0.008000000\\\"},{\\\"connect_time\\\":0.013599914,\\\"delta_sys_time\\\":0,\\\"delta_user_time\\\":0,\\\"elapsed\\\":0.108095009,\\\"elapsed_target\\\":2,\\\"internal_address\\\":\\\"\\\",\\\"iteration\\\":13,\\\"platform\\\":\\\"linux\\\",\\\"rate\\\":557321,\\\"real_address\\\":\\\"[scrubbed]\\\",\\\"received\\\":7500000,\\\"remote_address\\\":\\\"\\\",\\\"request_ticks\\\":1.47028436,\\\"server_url\\\":\\\"https:\\\\/\\\\/neubot-mlab-mlab2-ord05.mlab-oti.measurement-lab.org\\\\/dash\\\\/download\\\\/139330250\\\",\\\"timestamp\\\":1668078666,\\\"uuid\\\":\\\"\\\",\\\"version\\\":\\\"0.008000000\\\"},{\\\"connect_time\\\":0.013599914,\\\"delta_sys_time\\\":0,\\\"delta_user_time\\\":0,\\\"elapsed\\\":0.120137354,\\\"elapsed_target\\\":2,\\\"internal_address\\\":\\\"\\\",\\\"iteration\\\":14,\\\"platform\\\":\\\"linux\\\",\\\"rate\\\":555067,\\\"real_address\\\":\\\"[scrubbed]\\\",\\\"received\\\":7500000,\\\"remote_address\\\":\\\"\\\",\\\"request_ticks\\\":1.578523443,\\\"server_url\\\":\\\"https:\\\\/\\\\/neubot-mlab-mlab2-ord05.mlab-oti.measurement-lab.org\\\\/dash\\\\/download\\\\/138766750\\\",\\\"timestamp\\\":1668078666,\\\"uuid\\\":\\\"\\\",\\\"version\\\":\\\"0.008000000\\\"}]},\\\"test_name\\\":\\\"dash\\\",\\\"test_runtime\\\":2.099214521,\\\"test_start_time\\\":\\\"2022-11-10 11:11:04\\\",\\\"test_version\\\":\\\"0.12.0\\\"}\\n\",\"category_code\":\"\",\"verification_status\":\"unverified\"}" +} \ No newline at end of file diff --git a/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20221110112249.613770_US_psiphon_58f1cff53798e088_full-true.json b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20221110112249.613770_US_psiphon_58f1cff53798e088_full-true.json new file mode 100644 index 000000000..c93c617cf --- /dev/null +++ b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20221110112249.613770_US_psiphon_58f1cff53798e088_full-true.json @@ -0,0 +1,5 @@ +{ + "status": 200, + "contentType": "application/json", + "body": "{\"input\":\"\",\"measurement_start_time\":\"2022-11-10T11:22:43Z\",\"measurement_uid\":\"20221110112249.613770_US_psiphon_58f1cff53798e088\",\"report_id\":\"20221110T112242Z_psiphon_US_7018_n1_clM85Z0Pof3RqXdp\",\"test_name\":\"psiphon\",\"test_start_time\":\"2022-11-10T11:22:42Z\",\"probe_asn\":7018,\"probe_cc\":\"US\",\"scores\":\"{\\\"blocking_general\\\":0.0,\\\"blocking_global\\\":0.0,\\\"blocking_country\\\":0.0,\\\"blocking_isp\\\":0.0,\\\"blocking_local\\\":0.0,\\\"accuracy\\\":1.0,\\\"extra\\\":{\\\"test_runtime\\\":6.49099775,\\\"bootstrap_time\\\":5.866181014}}\",\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"raw_measurement\":\"{\\\"annotations\\\":{\\\"engine_name\\\":\\\"ooniprobe-engine\\\",\\\"engine_version\\\":\\\"3.10.0-beta.3\\\",\\\"platform\\\":\\\"linux\\\"},\\\"data_format_version\\\":\\\"0.2.0\\\",\\\"extensions\\\":{\\\"dnst\\\":0,\\\"httpt\\\":0,\\\"netevents\\\":0,\\\"tcpconnect\\\":0,\\\"tlshandshake\\\":0,\\\"tunnel\\\":0},\\\"input\\\":null,\\\"measurement_start_time\\\":\\\"2022-11-10 11:22:43\\\",\\\"probe_asn\\\":\\\"AS7018\\\",\\\"probe_cc\\\":\\\"US\\\",\\\"probe_ip\\\":\\\"127.0.0.1\\\",\\\"probe_network_name\\\":\\\"AT&T Services, Inc.\\\",\\\"report_id\\\":\\\"20221110T112242Z_psiphon_US_7018_n1_clM85Z0Pof3RqXdp\\\",\\\"resolver_asn\\\":\\\"AS7018\\\",\\\"resolver_ip\\\":\\\"12.121.90.21\\\",\\\"resolver_network_name\\\":\\\"AT&T Services, Inc.\\\",\\\"software_name\\\":\\\"iThena-ooniprobe\\\",\\\"software_version\\\":\\\"1.0.0\\\",\\\"test_keys\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"bootstrap_time\\\":5.866181014,\\\"failed_operation\\\":null,\\\"failure\\\":null,\\\"network_events\\\":[{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_start\\\",\\\"t\\\":6.023421804},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_request_metadata\\\",\\\"t\\\":6.023426729},{\\\"address\\\":\\\"127.0.0.1:46511\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":6.030836078},{\\\"failure\\\":null,\\\"num_bytes\\\":3,\\\"operation\\\":\\\"write\\\",\\\"t\\\":6.030860465},{\\\"failure\\\":null,\\\"num_bytes\\\":2,\\\"operation\\\":\\\"read\\\",\\\"t\\\":6.038005799},{\\\"failure\\\":null,\\\"num_bytes\\\":21,\\\"operation\\\":\\\"write\\\",\\\"t\\\":6.038026739},{\\\"failure\\\":null,\\\"num_bytes\\\":4,\\\"operation\\\":\\\"read\\\",\\\"t\\\":6.192439965},{\\\"failure\\\":null,\\\"num_bytes\\\":6,\\\"operation\\\":\\\"read\\\",\\\"t\\\":6.192445128},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_start\\\",\\\"t\\\":6.192451658},{\\\"failure\\\":null,\\\"num_bytes\\\":284,\\\"operation\\\":\\\"write\\\",\\\"t\\\":6.192650337},{\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"t\\\":6.268753163},{\\\"failure\\\":null,\\\"num_bytes\\\":3769,\\\"operation\\\":\\\"read\\\",\\\"t\\\":6.268930728},{\\\"failure\\\":null,\\\"num_bytes\\\":64,\\\"operation\\\":\\\"write\\\",\\\"t\\\":6.290361703},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_done\\\",\\\"t\\\":6.290378238},{\\\"failure\\\":null,\\\"num_bytes\\\":86,\\\"operation\\\":\\\"write\\\",\\\"t\\\":6.290452234},{\\\"failure\\\":null,\\\"num_bytes\\\":214,\\\"operation\\\":\\\"write\\\",\\\"t\\\":6.290561159},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_headers\\\",\\\"t\\\":6.290562575},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_wrote_request\\\",\\\"t\\\":6.290572267},{\\\"failure\\\":null,\\\"num_bytes\\\":93,\\\"operation\\\":\\\"read\\\",\\\"t\\\":6.350291515},{\\\"failure\\\":null,\\\"num_bytes\\\":31,\\\"operation\\\":\\\"write\\\",\\\"t\\\":6.350316829},{\\\"failure\\\":null,\\\"num_bytes\\\":931,\\\"operation\\\":\\\"read\\\",\\\"t\\\":6.363649898},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_first_response_byte\\\",\\\"t\\\":6.363716032},{\\\"failure\\\":null,\\\"num_bytes\\\":39,\\\"operation\\\":\\\"write\\\",\\\"t\\\":6.363771078},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_metadata\\\",\\\"t\\\":6.363793636},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_response_body_snapshot\\\",\\\"t\\\":6.363798559},{\\\"failure\\\":null,\\\"operation\\\":\\\"http_transaction_done\\\",\\\"t\\\":6.363799194},{\\\"failure\\\":null,\\\"num_bytes\\\":24,\\\"operation\\\":\\\"write\\\",\\\"t\\\":6.363839036},{\\\"failure\\\":\\\"unknown_failure: read tcp [scrubbed]->[scrubbed]: use of closed network connection\\\",\\\"operation\\\":\\\"read\\\",\\\"t\\\":6.377962966}],\\\"queries\\\":null,\\\"requests\\\":[{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US;q=0.8,en;q=0.5\\\"],[\\\"Host\\\",\\\"www.google.com\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"Host\\\":\\\"www.google.com\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"https:\\\\/\\\\/www.google.com\\\\/humans.txt\\\"},\\\"response\\\":{\\\"body\\\":\\\"Google is built by a large team of engineers, designers, researchers, robots, and others in many different sites across the globe. It is updated continuously, and built with more tools and technologies than we can shake a stick at. If you'd like to help us out, see careers.google.com.\\\\n\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":200,\\\"headers_list\\\":[[\\\"Accept-Ranges\\\",\\\"bytes\\\"],[\\\"Alt-Svc\\\",\\\"h3=\\\\\\\":443\\\\\\\"; ma=2592000,h3-29=\\\\\\\":443\\\\\\\"; ma=2592000,h3-Q050=\\\\\\\":443\\\\\\\"; ma=2592000,h3-Q046=\\\\\\\":443\\\\\\\"; ma=2592000,h3-Q043=\\\\\\\":443\\\\\\\"; ma=2592000,quic=\\\\\\\":443\\\\\\\"; ma=2592000; v=\\\\\\\"46,43\\\\\\\"\\\"],[\\\"Cache-Control\\\",\\\"private, max-age=0\\\"],[\\\"Content-Length\\\",\\\"286\\\"],[\\\"Content-Type\\\",\\\"text\\\\/plain\\\"],[\\\"Cross-Origin-Opener-Policy-Report-Only\\\",\\\"same-origin; report-to=\\\\\\\"static-on-bigtable\\\\\\\"\\\"],[\\\"Cross-Origin-Resource-Policy\\\",\\\"cross-origin\\\"],[\\\"Date\\\",\\\"Thu, 10 Nov 2022 11:22:49 GMT\\\"],[\\\"Expires\\\",\\\"Thu, 10 Nov 2022 11:22:49 GMT\\\"],[\\\"Last-Modified\\\",\\\"Mon, 01 Jul 2019 19:30:00 GMT\\\"],[\\\"Report-To\\\",\\\"{\\\\\\\"group\\\\\\\":\\\\\\\"static-on-bigtable\\\\\\\",\\\\\\\"max_age\\\\\\\":2592000,\\\\\\\"endpoints\\\\\\\":[{\\\\\\\"url\\\\\\\":\\\\\\\"https:\\\\/\\\\/csp.withgoogle.com\\\\/csp\\\\/report-to\\\\/static-on-bigtable\\\\\\\"}]}\\\"],[\\\"Server\\\",\\\"sffe\\\"],[\\\"Vary\\\",\\\"Accept-Encoding\\\"],[\\\"X-Content-Type-Options\\\",\\\"nosniff\\\"],[\\\"X-Xss-Protection\\\",\\\"0\\\"]],\\\"headers\\\":{\\\"Accept-Ranges\\\":\\\"bytes\\\",\\\"Alt-Svc\\\":\\\"h3=\\\\\\\":443\\\\\\\"; ma=2592000,h3-29=\\\\\\\":443\\\\\\\"; ma=2592000,h3-Q050=\\\\\\\":443\\\\\\\"; ma=2592000,h3-Q046=\\\\\\\":443\\\\\\\"; ma=2592000,h3-Q043=\\\\\\\":443\\\\\\\"; ma=2592000,quic=\\\\\\\":443\\\\\\\"; ma=2592000; v=\\\\\\\"46,43\\\\\\\"\\\",\\\"Cache-Control\\\":\\\"private, max-age=0\\\",\\\"Content-Length\\\":\\\"286\\\",\\\"Content-Type\\\":\\\"text\\\\/plain\\\",\\\"Cross-Origin-Opener-Policy-Report-Only\\\":\\\"same-origin; report-to=\\\\\\\"static-on-bigtable\\\\\\\"\\\",\\\"Cross-Origin-Resource-Policy\\\":\\\"cross-origin\\\",\\\"Date\\\":\\\"Thu, 10 Nov 2022 11:22:49 GMT\\\",\\\"Expires\\\":\\\"Thu, 10 Nov 2022 11:22:49 GMT\\\",\\\"Last-Modified\\\":\\\"Mon, 01 Jul 2019 19:30:00 GMT\\\",\\\"Report-To\\\":\\\"{\\\\\\\"group\\\\\\\":\\\\\\\"static-on-bigtable\\\\\\\",\\\\\\\"max_age\\\\\\\":2592000,\\\\\\\"endpoints\\\\\\\":[{\\\\\\\"url\\\\\\\":\\\\\\\"https:\\\\/\\\\/csp.withgoogle.com\\\\/csp\\\\/report-to\\\\/static-on-bigtable\\\\\\\"}]}\\\",\\\"Server\\\":\\\"sffe\\\",\\\"Vary\\\":\\\"Accept-Encoding\\\",\\\"X-Content-Type-Options\\\":\\\"nosniff\\\",\\\"X-Xss-Protection\\\":\\\"0\\\"}},\\\"t\\\":6.023421804}],\\\"socksproxy\\\":\\\"socks5:\\\\/\\\\/127.0.0.1:46511\\\",\\\"tcp_connect\\\":[{\\\"ip\\\":\\\"127.0.0.1\\\",\\\"port\\\":46511,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":6.030836078}],\\\"tls_handshakes\\\":[{\\\"cipher_suite\\\":\\\"TLS_AES_128_GCM_SHA256\\\",\\\"failure\\\":null,\\\"negotiated_protocol\\\":\\\"h2\\\",\\\"no_tls_verify\\\":false,\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIIEhjCCA26gAwIBAgIRAIGnSAxq9cl3Enfafpo9aMEwDQYJKoZIhvcNAQELBQAwRjELMAkGA1UEBhMCVVMxIjAgBgNVBAoTGUdvb2dsZSBUcnVzdCBTZXJ2aWNlcyBMTEMxEzARBgNVBAMTCkdUUyBDQSAxQzMwHhcNMjIxMDE3MDgxODU3WhcNMjMwMTA5MDgxODU2WjAZMRcwFQYDVQQDEw53d3cuZ29vZ2xlLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABBnrjpwWorUsTwEB7fA8wodHqOqRKdyBQ406AkkPiRjp7bWMTUROxua8tVUi0QctADBPrb103J+e2Ee3o\\\\/dZMy6jggJlMIICYTAOBgNVHQ8BAf8EBAMCB4AwEwYDVR0lBAwwCgYIKwYBBQUHAwEwDAYDVR0TAQH\\\\/BAIwADAdBgNVHQ4EFgQUJbBPZaQP5Z2lTXWnLIvPj2AM3SYwHwYDVR0jBBgwFoAUinR\\\\/r4XN7pXNPZzQ4kYU83E1HScwagYIKwYBBQUHAQEEXjBcMCcGCCsGAQUFBzABhhtodHRwOi8vb2NzcC5wa2kuZ29vZy9ndHMxYzMwMQYIKwYBBQUHMAKGJWh0dHA6Ly9wa2kuZ29vZy9yZXBvL2NlcnRzL2d0czFjMy5kZXIwGQYDVR0RBBIwEIIOd3d3Lmdvb2dsZS5jb20wIQYDVR0gBBowGDAIBgZngQwBAgEwDAYKKwYBBAHWeQIFAzA8BgNVHR8ENTAzMDGgL6AthitodHRwOi8vY3Jscy5wa2kuZ29vZy9ndHMxYzMvbW9WRGZJU2lhMmsuY3JsMIIBAgYKKwYBBAHWeQIEAgSB8wSB8ADuAHUArfe++nz\\\\/EMiLnT2cHj4YarRnKV3PsQwkyoWGNOvcgooAAAGD5T05NAAABAMARjBEAiBNo4cn2Eyc\\\\/ge6R+qbdDg\\\\/kD8Pf0XupuzxZlLy2OvIvAIgI0wX7tEkHeynWZV5RRNwrW7vOjZBpKuyelE2BTr2gxcAdQB6MoxU2LcttiDqOOBSHumEFnAyE4VNO9IrwTpXo1LrUgAAAYPlPTk3AAAEAwBGMEQCIB774m1pakzCQKhDSmAUP51XrIrfrSHE\\\\/BrgBU34Jn\\\\/CAiBIsCkm\\\\/nILUGKjYkyDbencNU6gkTLxMmofOMQWam6A6DANBgkqhkiG9w0BAQsFAAOCAQEA8LO4cgmViPSxMl2g94yxNGmdPHiSfgz9tSxKv6\\\\/njAuNJmDbMR0PDXBrYRIrWGGiR99e+zbDbeKwUoJbWfFJf4weWLEXLdKOcAGJT6nWT46Y2KRGfZ520W+AlqU3+QVshVTmSoub\\\\/k93A4QKLODRns2567ulr7tRgerFwf4GpODsPMz0Nsdh\\\\/EIWgQaeK1dLjE5D64WBtC1b0D2\\\\/JxFiD1BjXMCkYToe2\\\\/ltqCY1SHSCjGIBTFO1dLiG353k1jDRwxfXZOA4I7Ei1SA5Jz3My5rX3vReT8mf4JHiFw35+YFPN\\\\/ppfQbhKRq4q1mOpnQUPn3fuX5iNRIMSi+Bf8U56Q==\\\",\\\"format\\\":\\\"base64\\\"},{\\\"data\\\":\\\"MIIFljCCA36gAwIBAgINAgO8U1lrNMcY9QFQZjANBgkqhkiG9w0BAQsFADBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjEwHhcNMjAwODEzMDAwMDQyWhcNMjcwOTMwMDAwMDQyWjBGMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzETMBEGA1UEAxMKR1RTIENBIDFDMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPWI3+dijB43+DdCkH9sh9D7ZYIl\\\\/ejLa6T\\\\/belaI+KZ9hzpkgOZE3wJCor6QtZeViSqejOEH9Hpabu5dOxXTGZok3c3VVP+ORBNtzS7XyV3NzsXlOo85Z3VvMO0Q+sup0fvsEQRY9i0QYXdQTBIkxu\\\\/t\\\\/bgRQIh4JZCF8\\\\/ZK2VWNAcmBA2o\\\\/X3KLu\\\\/qSHw3TT8An4Pf73WELnlXXPxXbhqW\\\\/\\\\/yMmqaZviXZf5YsBvcRKgKAgOtjGDxQSYflispfGStZloEAoPtR28p3CwvJlk\\\\/vcEnHXG0g\\\\/Zm0tOLKLnf9LdwLtmsTDIwZKxeWmLnwi\\\\/agJ7u2441Rj72ux5uxiZ0CAwEAAaOCAYAwggF8MA4GA1UdDwEB\\\\/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwEgYDVR0TAQH\\\\/BAgwBgEB\\\\/wIBADAdBgNVHQ4EFgQUinR\\\\/r4XN7pXNPZzQ4kYU83E1HScwHwYDVR0jBBgwFoAU5K8rJnEaK0gnhS9SZizv8IkTcT4waAYIKwYBBQUHAQEEXDBaMCYGCCsGAQUFBzABhhpodHRwOi8vb2NzcC5wa2kuZ29vZy9ndHNyMTAwBggrBgEFBQcwAoYkaHR0cDovL3BraS5nb29nL3JlcG8vY2VydHMvZ3RzcjEuZGVyMDQGA1UdHwQtMCswKaAnoCWGI2h0dHA6Ly9jcmwucGtpLmdvb2cvZ3RzcjEvZ3RzcjEuY3JsMFcGA1UdIARQME4wOAYKKwYBBAHWeQIFAzAqMCgGCCsGAQUFBwIBFhxodHRwczovL3BraS5nb29nL3JlcG9zaXRvcnkvMAgGBmeBDAECATAIBgZngQwBAgIwDQYJKoZIhvcNAQELBQADggIBAIl9rCBcDDy+mqhXlRu0rvqrpXJxtDaV\\\\/d9AEQNMwkYUuxQkq\\\\/BQcSLbrcRuf8\\\\/xam\\\\/IgxvYzolfh2yHuKkMo5uhYpSTld9brmYZCwKWnvy15xBpPnrLRklfRuFBsdeYTWU0AIAaP0+fbH9JAIFTQaSSIYKCGvGjRFsqUBITTcFTNvNCCK9U+o53UxtkOCcXCb1YyRt8OS1b887U7ZfbFAO\\\\/CVMkH8IMBHmYJvJh8VNS\\\\/UKMG2YrPxWhu\\\\/\\\\/2m+OBmgEGcYk1KCTd4b3rGS3hSMs9WYNRtHTGnXzGsYZbr8w0xNPM1IERlQCh9BIiAfq0g3GvjLeMcySsN1PCAJA\\\\/Ef5c7TaUEDu9Ka7ixzpiO2xj2YC\\\\/WXGsYye5TBeg2vZzFb8q3o\\\\/zpWwygTMD0IZRcZk0upONXbVRWPeyk+gB9lm+cZv9TSjOz23HFtz30dZGm6fKa+l3D\\\\/2gthsjgx0QGtkJAITgRNOidSOzNIb2ILCkXhAd4FJGAJ2xDx8hcFH1mt0G\\\\/FX0Kw4zd8NLQsLxdxP8c4CU6x+7Nz\\\\/OAipmsHMdMqUybDKwjuDEI\\\\/9bfU1lcKwrmz3O2+BtjjKAvpafkmO8l7tdufThcV4q5O8DIrGKZTqPwJNl1IXNDw9bg1kWRxYtnCQ6yICmJhSFm\\\\/Y3m6xv+cXDBlHz4n\\\\/FsRC6UfTd\\\",\\\"format\\\":\\\"base64\\\"},{\\\"data\\\":\\\"MIIFYjCCBEqgAwIBAgIQd70NbNs2+RrqIQ\\\\/E8FjTDTANBgkqhkiG9w0BAQsFADBXMQswCQYDVQQGEwJCRTEZMBcGA1UEChMQR2xvYmFsU2lnbiBudi1zYTEQMA4GA1UECxMHUm9vdCBDQTEbMBkGA1UEAxMSR2xvYmFsU2lnbiBSb290IENBMB4XDTIwMDYxOTAwMDA0MloXDTI4MDEyODAwMDA0MlowRzELMAkGA1UEBhMCVVMxIjAgBgNVBAoTGUdvb2dsZSBUcnVzdCBTZXJ2aWNlcyBMTEMxFDASBgNVBAMTC0dUUyBSb290IFIxMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAthECix7joXebO9y\\\\/lD63ladAPKH9gvl9MgaCcfb2jH\\\\/76Nu8ai6Xl6OMS\\\\/kr9rH5zoQdsfnFl97vufKj6bwSiV6nqlKr+CMny6SxnGPb15l+8Ape62im9MZaRw1NEDPjTrETo8gYbEvs\\\\/AmQ351kKSUjB6G00j0uYODP0gmHu81I8E3CwnqIiru6z1kZ1q+PsAewnjHxgsHA3y6mbWwZDrXYfiYaRQM9sHmklCitD38m5agI\\\\/pboPGiUU+6DOogrFZYJsuB6jC511pzrp1Zkj5ZPaK49l8KEj8C8QMALXL32h7M1bKwYUH+E4EzNktMg6TO8UpmvMrUpsyUqtEj5cuHKZPfmghCN6J3Cioj6OGaK\\\\/GP5Afl4\\\\/Xtcd\\\\/p2h\\\\/rs37EOeZVXtL0m79YB0esWCruOC7XFxYpVq9Os6pFLKcwZpDIlTirxZUTQAs6qzkm06p98g7BAe+dDq6dso499iYH6TKX\\\\/1Y7DzkvgtdizjkXPdsDtQCv9Uw+wp9U7DbGKogPeMa3Md+pvez7W35EiEua++tgy\\\\/BBjFFFy3l3WFpO9KWgz7zpm7AeKJt8T11dleCfeXkkUAKIAf5qoIbapsZWwpbkNFhHax2xIPEDgfg1azVY80ZcFuctL7TlLnMQ\\\\/0lUTbiSw1nH69MG6zO0b9f6BQdgAmD06yK56mDcYBZUCAwEAAaOCATgwggE0MA4GA1UdDwEB\\\\/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH\\\\/MB0GA1UdDgQWBBTkrysmcRorSCeFL1JmLO\\\\/wiRNxPjAfBgNVHSMEGDAWgBRge2YaRQ2XyolQL30EzTSo\\\\/\\\\/z9SzBgBggrBgEFBQcBAQRUMFIwJQYIKwYBBQUHMAGGGWh0dHA6Ly9vY3NwLnBraS5nb29nL2dzcjEwKQYIKwYBBQUHMAKGHWh0dHA6Ly9wa2kuZ29vZy9nc3IxL2dzcjEuY3J0MDIGA1UdHwQrMCkwJ6AloCOGIWh0dHA6Ly9jcmwucGtpLmdvb2cvZ3NyMS9nc3IxLmNybDA7BgNVHSAENDAyMAgGBmeBDAECATAIBgZngQwBAgIwDQYLKwYBBAHWeQIFAwIwDQYLKwYBBAHWeQIFAwMwDQYJKoZIhvcNAQELBQADggEBADSkHrEoo9C0dhemMXoh6dFSPsjbdBZBiLg9NR3t5P+T4Vxfq7vqfM\\\\/b5A3Ri1fyJm9bvhdGaJQ3b2t6yMAYN\\\\/olUazsaL+yyEn9WprKASOshIArAoyZl+tJaox118fessmXn1hIVw41oeQa1v1vg4Fv74zPl6\\\\/AhSrw9U5pCZEt4Wi4wStz6dTZ\\\\/CLANx8LZh1J7QJVj2fhMtfTJr9w4z30Z209fOU0iOMy+qduBmpvvYuR7hZL6Dupszfnw0Skfths18dG9ZKb59UhvmaSGZRVbNQpsg3BZlvid0lIKO2d1xozclOzgjXPYovJJIultzkMu34qQb9Sz\\\\/yilrbCgj8=\\\",\\\"format\\\":\\\"base64\\\"}],\\\"server_name\\\":\\\"www.google.com\\\",\\\"t\\\":6.290378238,\\\"tags\\\":null,\\\"tls_version\\\":\\\"TLSv1.3\\\"}],\\\"tunnel\\\":\\\"psiphon\\\",\\\"max_runtime\\\":60},\\\"test_name\\\":\\\"psiphon\\\",\\\"test_runtime\\\":6.49099775,\\\"test_start_time\\\":\\\"2022-11-10 11:22:42\\\",\\\"test_version\\\":\\\"0.5.0\\\"}\\n\",\"category_code\":\"\",\"verification_status\":\"unverified\"}" +} \ No newline at end of file diff --git a/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20221110112405.003769_US_tor_56e03d764ee82e8f_full-true.json b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20221110112405.003769_US_tor_56e03d764ee82e8f_full-true.json new file mode 100644 index 000000000..099d1c435 --- /dev/null +++ b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20221110112405.003769_US_tor_56e03d764ee82e8f_full-true.json @@ -0,0 +1,5 @@ +{ + "status": 200, + "contentType": "application/json", + "body": "{\"input\":\"\",\"measurement_start_time\":\"2022-11-10T11:23:02Z\",\"measurement_uid\":\"20221110112405.003769_US_tor_56e03d764ee82e8f\",\"report_id\":\"20221110T112301Z_tor_US_7018_n1_uszAjDiPyoWLMyuV\",\"test_name\":\"tor\",\"test_start_time\":\"2022-11-10T11:23:01Z\",\"probe_asn\":7018,\"probe_cc\":\"US\",\"scores\":\"{\\\"blocking_general\\\":0.37142857142857144,\\\"blocking_global\\\":0.0,\\\"blocking_country\\\":0.0,\\\"blocking_isp\\\":0.0,\\\"blocking_local\\\":0.0,\\\"extra\\\":{\\\"test_runtime\\\":62.503275441}}\",\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"raw_measurement\":\"{\\\"annotations\\\":{\\\"_probe_engine_sanitize_test_keys\\\":\\\"true\\\",\\\"engine_name\\\":\\\"ooniprobe-engine\\\",\\\"engine_version\\\":\\\"3.10.0-beta.3\\\",\\\"platform\\\":\\\"linux\\\"},\\\"data_format_version\\\":\\\"0.2.0\\\",\\\"extensions\\\":{\\\"dnst\\\":0,\\\"httpt\\\":0,\\\"netevents\\\":0,\\\"tcpconnect\\\":0,\\\"tlshandshake\\\":0},\\\"input\\\":null,\\\"measurement_start_time\\\":\\\"2022-11-10 11:23:02\\\",\\\"probe_asn\\\":\\\"AS7018\\\",\\\"probe_cc\\\":\\\"US\\\",\\\"probe_ip\\\":\\\"127.0.0.1\\\",\\\"probe_network_name\\\":\\\"AT&T Services, Inc.\\\",\\\"report_id\\\":\\\"20221110T112301Z_tor_US_7018_n1_uszAjDiPyoWLMyuV\\\",\\\"resolver_asn\\\":\\\"AS7018\\\",\\\"resolver_ip\\\":\\\"12.121.90.17\\\",\\\"resolver_network_name\\\":\\\"AT&T Services, Inc.\\\",\\\"software_name\\\":\\\"iThena-ooniprobe\\\",\\\"software_version\\\":\\\"1.0.0\\\",\\\"test_keys\\\":{\\\"dir_port_total\\\":10,\\\"dir_port_accessible\\\":10,\\\"obfs4_total\\\":15,\\\"obfs4_accessible\\\":2,\\\"or_port_dirauth_total\\\":10,\\\"or_port_dirauth_accessible\\\":10,\\\"or_port_total\\\":0,\\\"or_port_accessible\\\":0,\\\"targets\\\":{\\\"128.31.0.39:9101\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":null,\\\"network_events\\\":[{\\\"address\\\":\\\"128.31.0.39:9101\\\",\\\"conn_id\\\":3,\\\"dial_id\\\":83,\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.903653811},{\\\"conn_id\\\":3,\\\"failure\\\":null,\\\"num_bytes\\\":243,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.904115173},{\\\"conn_id\\\":3,\\\"failure\\\":null,\\\"num_bytes\\\":99,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.9457271},{\\\"conn_id\\\":3,\\\"failure\\\":null,\\\"num_bytes\\\":6,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.945827529},{\\\"conn_id\\\":3,\\\"failure\\\":null,\\\"num_bytes\\\":276,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.946017284},{\\\"conn_id\\\":3,\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":1.0827369980000001},{\\\"conn_id\\\":3,\\\"failure\\\":null,\\\"num_bytes\\\":651,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":1.083289919},{\\\"conn_id\\\":3,\\\"failure\\\":null,\\\"num_bytes\\\":74,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":1.08385639},{\\\"conn_id\\\":3,\\\"failure\\\":null,\\\"num_bytes\\\":24,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":1.083913449}],\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":null}},\\\"target_address\\\":\\\"128.31.0.39:9101\\\",\\\"target_name\\\":\\\"moria1\\\",\\\"target_protocol\\\":\\\"or_port_dirauth\\\",\\\"tcp_connect\\\":[{\\\"conn_id\\\":3,\\\"dial_id\\\":83,\\\"ip\\\":\\\"128.31.0.39\\\",\\\"port\\\":9101,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.903653811}],\\\"tls_handshakes\\\":[{\\\"cipher_suite\\\":\\\"TLS_AES_256_GCM_SHA384\\\",\\\"conn_id\\\":6,\\\"failure\\\":null,\\\"negotiated_protocol\\\":\\\"\\\",\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIICRTCCAa6gAwIBAgIIeMlIprmqpRkwDQYJKoZIhvcNAQELBQAwJjEkMCIGA1UEAwwbd3d3LnFneHlzY21kNHVqNGIzM2J6ZmMuY29tMB4XDTIyMTEwMTAwMDAwMFoXDTIyMTEyMTAwMDAwMFowIDEeMBwGA1UEAwwVd3d3Lnh3Znd5c29qdWY0c2MubmV0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzQvqBCaJOuMvAG22QXavv9cCmfK4JF0zy1xiYgZGy9w5t56J6Gv6EqL+KvDlJFUtcke1gf1IQnMR7JsUWvbZOC4i30tJMn+ikCHmlAQy\\\\/RJUnyDfLsmb88pXuqSktYKfAldmqzqok5CNvGaGd9ALIzsKRtH2bfJTc24Yc8Se5Vo\\\\/9UjBYUy\\\\/hbaItTb7hpfZvGmwKAQ3+i6UQswJZkiI6DHexdcZ6y8BtsKN5lgSK5y9f8A6\\\\/UXUqyXTLBZ\\\\/TcAWeqamY6j3SVKp+iNOK\\\\/8GIswqAB+OMmc2Rjs\\\\/0fLPGOe9rWAgUYI\\\\/mXVhyAh6M5I75B2z0aIDES6ZLP4LM9RxyQIDAQABMA0GCSqGSIb3DQEBCwUAA4GBAGh0Hjpfx3hYJ5USGUSVZoDF52u9szKJ9lKP3xCekCCrfaW55RXpSR9afELBsYQfUs2765aNTm3lHODSdYrDzoYEy6W\\\\/f98xIA5w31C1r1LVCcCdyiuORhaPw3jM+WuBSF\\\\/xl9nZizfQOuPKtnzOe4TlEYAb5Ocs1XBBIyJnGDC1\\\",\\\"format\\\":\\\"base64\\\"}],\\\"t\\\":1.083871265,\\\"tls_version\\\":\\\"TLSv1.3\\\"}]},\\\"128.31.0.39:9131\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":null,\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":[{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US;q=0.8,en;q=0.5\\\"],[\\\"Host\\\",\\\"128.31.0.39:9131\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"Host\\\":\\\"128.31.0.39:9131\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"url\\\":\\\"http:\\\\/\\\\/128.31.0.39:9131\\\\/tor\\\\/status-vote\\\\/current\\\\/consensus.z\\\"},\\\"response\\\":{\\\"body\\\":{\\\"data\\\":\\\"eNrs\\\\/Wdz40i2NQp\\\\/n1+Bj\\\\/cNdokwCSDBOHPjgaN3oCdvnJiABwhHwhL89W8mVNVdgsS2M+eU+HS3iiIlkgI2Ezu3WXut2M6rJA2+ZLmeF9mX0k4zP4kJ5h9lkttff0qYSZzZcVZk\\\\/\\\\/j53pfIzr3EIhj6H6Ue+tYX3cntlKBJmv5CUV8okqCoHkmir384qZ15X4o498M3v6e\\\\/\\\\/v719e9\\\\/D779Psn92P1i2aFeEwxJ4n\\\\/\\\\/MEPfjvNvx5sR5At4YV+oL3p48fSfXh\\\\/Rbx4xX1Lz613wy132l7vc1+\\\\/81+\\\\/w63fh63eK\\\\/HaH+naH\\\\/nYHNHf4NwfAvzkAHh3A94\\\\/Am0fsmw==\\\",\\\"format\\\":\\\"base64\\\"},\\\"body_is_truncated\\\":true,\\\"code\\\":200,\\\"headers_list\\\":[[\\\"Content-Encoding\\\",\\\"deflate\\\"],[\\\"Expires\\\",\\\"Thu, 10 Nov 2022 12:00:00 GMT\\\"],[\\\"Vary\\\",\\\"X-Or-Diff-From-Consensus\\\"],[\\\"Date\\\",\\\"Thu, 10 Nov 2022 11:23:33 GMT\\\"],[\\\"Content-Type\\\",\\\"text\\\\/plain\\\"],[\\\"X-Your-Address-Is\\\",\\\"[scrubbed]\\\"]],\\\"headers\\\":{\\\"Content-Encoding\\\":\\\"deflate\\\",\\\"Content-Type\\\":\\\"text\\\\/plain\\\",\\\"Date\\\":\\\"Thu, 10 Nov 2022 11:23:33 GMT\\\",\\\"Expires\\\":\\\"Thu, 10 Nov 2022 12:00:00 GMT\\\",\\\"Vary\\\":\\\"X-Or-Diff-From-Consensus\\\",\\\"X-Your-Address-Is\\\":\\\"[scrubbed]\\\"}},\\\"transaction_id\\\":2}],\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":null}},\\\"target_address\\\":\\\"128.31.0.39:9131\\\",\\\"target_name\\\":\\\"moria1\\\",\\\"target_protocol\\\":\\\"dir_port\\\",\\\"tcp_connect\\\":[{\\\"conn_id\\\":7,\\\"dial_id\\\":88,\\\"ip\\\":\\\"128.31.0.39\\\",\\\"port\\\":9131,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":31.279124992,\\\"transaction_id\\\":2}],\\\"tls_handshakes\\\":null},\\\"131.188.40.189:443\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":null,\\\"network_events\\\":[{\\\"address\\\":\\\"131.188.40.189:443\\\",\\\"conn_id\\\":29,\\\"dial_id\\\":109,\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":39.8337291},{\\\"conn_id\\\":29,\\\"failure\\\":null,\\\"num_bytes\\\":243,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":39.834235648},{\\\"conn_id\\\":29,\\\"failure\\\":null,\\\"num_bytes\\\":99,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":39.970671672},{\\\"conn_id\\\":29,\\\"failure\\\":null,\\\"num_bytes\\\":6,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":39.970765048},{\\\"conn_id\\\":29,\\\"failure\\\":null,\\\"num_bytes\\\":276,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":39.971015284},{\\\"conn_id\\\":29,\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":40.105542168},{\\\"conn_id\\\":29,\\\"failure\\\":null,\\\"num_bytes\\\":656,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":40.106167164},{\\\"conn_id\\\":29,\\\"failure\\\":null,\\\"num_bytes\\\":74,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":40.106858089},{\\\"conn_id\\\":29,\\\"failure\\\":null,\\\"num_bytes\\\":24,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":40.106932887}],\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":null}},\\\"target_address\\\":\\\"131.188.40.189:443\\\",\\\"target_name\\\":\\\"gabelmoo\\\",\\\"target_protocol\\\":\\\"or_port_dirauth\\\",\\\"tcp_connect\\\":[{\\\"conn_id\\\":29,\\\"dial_id\\\":109,\\\"ip\\\":\\\"131.188.40.189\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":39.8337291}],\\\"tls_handshakes\\\":[{\\\"cipher_suite\\\":\\\"TLS_AES_256_GCM_SHA384\\\",\\\"conn_id\\\":4,\\\"failure\\\":null,\\\"negotiated_protocol\\\":\\\"\\\",\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIICSjCCAbOgAwIBAgIJAMJ1e6aih\\\\/ZFMA0GCSqGSIb3DQEBCwUAMCQxIjAgBgNVBAMMGXd3dy56b2ZndTIyeHBwcGVrNWQzZC5jb20wHhcNMjIwOTE0MDAwMDAwWhcNMjMwMzA3MjM1OTU5WjAmMSQwIgYDVQQDDBt3d3cuZTNseW4zMmF4bXI1cGJlamhwYi5uZXQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDch0cduBKjeMOyf2XTXKeBHNJeva9URqzNkAmoPbh6tHKFzEdWC9v965f7AvSu9t0+s2P35rLrN49ZmJk3sGTqiTvRgSUfBXQp0yHO45bWBHfv95dMQFBpHX7XpbWiVSJXm2bKBo\\\\/sFmNtq0FgmhNU4TgOhfxSSa3Ezk6D8r9iQeAsGbGsHj7JZrlUuWlmVQRU\\\\/Ivi9NOSBb+KHtVWefT8so7aYYRNQWm9aTNA+YHsRYFj3OEyI5PuVgx8a2qFzlX3SAa178VIluLs3\\\\/2a67Rod48y4ZdRJZQ75DfFhni6yV7kfirfocJOXPRqBC4XeMO0aLcZIwpWo1YzYOMlF4HBAgMBAAEwDQYJKoZIhvcNAQELBQADgYEAn4enTSYS2IekaR+ftVYaJpDR7FzyKG2pybuPROMxOiz9Kdaojjz+6DrGBEDivAxZdbz5ZmgxWp4xX+0MupIxsgp7inVRIY5dsarJ3Sqo3\\\\/nq5w4yruG2cKMivvlRUZC7uma+YQKUA5JEEwZOKLCUhAKcsT9iC8v5Wi6F2QzaNRM=\\\",\\\"format\\\":\\\"base64\\\"}],\\\"t\\\":40.106876317,\\\"tls_version\\\":\\\"TLSv1.3\\\"}]},\\\"131.188.40.189:80\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":null,\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":[{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Host\\\",\\\"131.188.40.189:80\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"],[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US;q=0.8,en;q=0.5\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"Host\\\":\\\"131.188.40.189:80\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"url\\\":\\\"http:\\\\/\\\\/131.188.40.189:80\\\\/tor\\\\/status-vote\\\\/current\\\\/consensus.z\\\"},\\\"response\\\":{\\\"body\\\":{\\\"data\\\":\\\"eNrs\\\\/Wdz40i2NQp\\\\/n1+Bj\\\\/cNdokwCSDBOHPjgaN3oCdvnJiABwhHwhL89W8mVNVdgsS2M+eU+HS3iiIlkgI2Ezu3WXut2M6rJA2+ZLmeF9mX0k4zP4kJ5h9lkttff0qYSZzZcVZk\\\\/\\\\/j53pfIzr3EIhj6H6Ue+tYX3cntlKBJmv5CUV8okqCoHkmir384qZ15X4o498M3v6e\\\\/\\\\/v719e9\\\\/D779Psn92P1i2aFeEwxJ4n\\\\/\\\\/MEPfjvNvx5sR5At4YV+oL3p48fSfXh\\\\/Rbx4xX1Lz613wy132l7vc1+\\\\/81+\\\\/w63fh63eK\\\\/HaH+naH\\\\/nYHNHf4NwfAvzkAHh3A94\\\\/Am0fsmw==\\\",\\\"format\\\":\\\"base64\\\"},\\\"body_is_truncated\\\":true,\\\"code\\\":200,\\\"headers_list\\\":[[\\\"Date\\\",\\\"Thu, 10 Nov 2022 11:23:42 GMT\\\"],[\\\"Content-Type\\\",\\\"text\\\\/plain\\\"],[\\\"X-Your-Address-Is\\\",\\\"[scrubbed]\\\"],[\\\"Content-Encoding\\\",\\\"deflate\\\"],[\\\"Expires\\\",\\\"Thu, 10 Nov 2022 12:00:00 GMT\\\"],[\\\"Vary\\\",\\\"X-Or-Diff-From-Consensus\\\"]],\\\"headers\\\":{\\\"Content-Encoding\\\":\\\"deflate\\\",\\\"Content-Type\\\":\\\"text\\\\/plain\\\",\\\"Date\\\":\\\"Thu, 10 Nov 2022 11:23:42 GMT\\\",\\\"Expires\\\":\\\"Thu, 10 Nov 2022 12:00:00 GMT\\\",\\\"Vary\\\":\\\"X-Or-Diff-From-Consensus\\\",\\\"X-Your-Address-Is\\\":\\\"[scrubbed]\\\"}},\\\"transaction_id\\\":9}],\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":null}},\\\"target_address\\\":\\\"131.188.40.189:80\\\",\\\"target_name\\\":\\\"gabelmoo\\\",\\\"target_protocol\\\":\\\"dir_port\\\",\\\"tcp_connect\\\":[{\\\"conn_id\\\":30,\\\"dial_id\\\":110,\\\"ip\\\":\\\"131.188.40.189\\\",\\\"port\\\":80,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":40.241173777,\\\"transaction_id\\\":9}],\\\"tls_handshakes\\\":null},\\\"154.35.175.225:443\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":null,\\\"network_events\\\":[{\\\"address\\\":\\\"154.35.175.225:443\\\",\\\"conn_id\\\":20,\\\"dial_id\\\":100,\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":34.146862009},{\\\"conn_id\\\":20,\\\"failure\\\":null,\\\"num_bytes\\\":243,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":34.151223083},{\\\"conn_id\\\":20,\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":34.207009059},{\\\"conn_id\\\":20,\\\"failure\\\":null,\\\"num_bytes\\\":485,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":34.207075825},{\\\"conn_id\\\":20,\\\"failure\\\":null,\\\"num_bytes\\\":126,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":34.207996593},{\\\"conn_id\\\":20,\\\"failure\\\":null,\\\"num_bytes\\\":51,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":34.261063218},{\\\"conn_id\\\":20,\\\"failure\\\":null,\\\"num_bytes\\\":31,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":34.261212396}],\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":null}},\\\"target_address\\\":\\\"154.35.175.225:443\\\",\\\"target_name\\\":\\\"Faravahar\\\",\\\"target_protocol\\\":\\\"or_port_dirauth\\\",\\\"tcp_connect\\\":[{\\\"conn_id\\\":20,\\\"dial_id\\\":100,\\\"ip\\\":\\\"154.35.175.225\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":34.146862009}],\\\"tls_handshakes\\\":[{\\\"cipher_suite\\\":\\\"TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384\\\",\\\"conn_id\\\":4,\\\"failure\\\":null,\\\"negotiated_protocol\\\":\\\"\\\",\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIICPjCCAaegAwIBAgIIEYIK84YGeRwwDQYJKoZIhvcNAQELBQAwGzEZMBcGA1UEAwwQd3d3LjNrcTV6c3dpLmNvbTAeFw0yMjA5MTEwMDAwMDBaFw0yMjEyMTMwMDAwMDBaMCQxIjAgBgNVBAMMGXd3dy42NXhyZ21uYmh0d2VrbGxzai5uZXQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCv12FHqvnMREz5li1JMCFZnYni7PfPwM00ynoRms83Gu2DUPCx++YWjTRWdDxKje\\\\/riehESEemwbq0wJTUNaPu38HdJRfJMUjyNWVnsN73G9pxqxEUyPvSpclL1G2jf9Es8790thZKonRGxepH72fdHZjXdETAOJu\\\\/J81pfH4OoTLLJjbQcb6aqm2v8ylA4rcs+1KbxViOXSwRBLTRUAZUtJUeKd\\\\/qTavsvfWF+9xgDhsWKozq5+JGUYXXVaB7T4Rp\\\\/EUOU8wlWL77vN9OSyDQRQlVtv12rskMezb7vDBhzywzkwWAo9FlJLjdNj5HYIFt8XLQuwLAlKuZ159OpodNAgMBAAEwDQYJKoZIhvcNAQELBQADgYEAX\\\\/XlHDTOmlIEbiQPaakJE1znkJBTnTRu5WDnM0r+IQPBZtJAtaDcINM8de7Kt00hQB8fvJPIo15i+2OP+O7iKVXSzlpT0IjOs2KKrFNqPIqVzCfV7t1eoNGE4DYBdbpqDnyZGYEPNY74x1UwL4HydNjDXBSeQz0nBxR9hEnDgKY=\\\",\\\"format\\\":\\\"base64\\\"}],\\\"t\\\":34.261150099,\\\"tls_version\\\":\\\"TLSv1.2\\\"}]},\\\"154.35.175.225:80\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":null,\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":[{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Host\\\",\\\"154.35.175.225:80\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"],[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US;q=0.8,en;q=0.5\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"Host\\\":\\\"154.35.175.225:80\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"url\\\":\\\"http:\\\\/\\\\/154.35.175.225:80\\\\/tor\\\\/status-vote\\\\/current\\\\/consensus.z\\\"},\\\"response\\\":{\\\"body\\\":{\\\"data\\\":\\\"eNrs\\\\/Wdz40i2NQp\\\\/n1+Bj\\\\/cNdokwCSDBOHPjgaN3oCdvnJiABwhHwhL89W8mVNVdgsS2M+eU+HS3iiIlkgI2Ezu3WXut2M6rJA2+ZLmeF9mX0k4zP4kJ5h9lkttff0qYSZzZcVZk\\\\/\\\\/j53pfIzr3EIhj6H6Ue+tYX3cntlKBJmv5CUV8okqCoHkmir384qZ15X4o498M3v6e\\\\/\\\\/v719e9\\\\/D779Psn92P1i2aFeEwxJ4n\\\\/\\\\/MEPfjvNvx5sR5At4YV+oL3p48fSfXh\\\\/Rbx4xX1Lz613wy132l7vc1+\\\\/81+\\\\/w63fh63eK\\\\/HaH+naH\\\\/nYHNHf4NwfAvzkAHh3A94\\\\/Am0fsmw==\\\",\\\"format\\\":\\\"base64\\\"},\\\"body_is_truncated\\\":true,\\\"code\\\":200,\\\"headers_list\\\":[[\\\"X-Your-Address-Is\\\",\\\"[scrubbed]\\\"],[\\\"Content-Encoding\\\",\\\"deflate\\\"],[\\\"Expires\\\",\\\"Thu, 10 Nov 2022 12:00:00 GMT\\\"],[\\\"Vary\\\",\\\"X-Or-Diff-From-Consensus\\\"],[\\\"Date\\\",\\\"Thu, 10 Nov 2022 11:23:42 GMT\\\"],[\\\"Content-Type\\\",\\\"text\\\\/plain\\\"]],\\\"headers\\\":{\\\"Content-Encoding\\\":\\\"deflate\\\",\\\"Content-Type\\\":\\\"text\\\\/plain\\\",\\\"Date\\\":\\\"Thu, 10 Nov 2022 11:23:42 GMT\\\",\\\"Expires\\\":\\\"Thu, 10 Nov 2022 12:00:00 GMT\\\",\\\"Vary\\\":\\\"X-Or-Diff-From-Consensus\\\",\\\"X-Your-Address-Is\\\":\\\"[scrubbed]\\\"}},\\\"transaction_id\\\":10}],\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":null}},\\\"target_address\\\":\\\"154.35.175.225:80\\\",\\\"target_name\\\":\\\"Faravahar\\\",\\\"target_protocol\\\":\\\"dir_port\\\",\\\"tcp_connect\\\":[{\\\"conn_id\\\":31,\\\"dial_id\\\":111,\\\"ip\\\":\\\"154.35.175.225\\\",\\\"port\\\":80,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":40.420381277,\\\"transaction_id\\\":10}],\\\"tls_handshakes\\\":null},\\\"171.25.193.9:443\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":null,\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":[{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Host\\\",\\\"171.25.193.9:443\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"],[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US;q=0.8,en;q=0.5\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"Host\\\":\\\"171.25.193.9:443\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"url\\\":\\\"http:\\\\/\\\\/171.25.193.9:443\\\\/tor\\\\/status-vote\\\\/current\\\\/consensus.z\\\"},\\\"response\\\":{\\\"body\\\":{\\\"data\\\":\\\"eNrs\\\\/Wdz40i2NQp\\\\/n1+Bj\\\\/cNdokwCSDBOHPjgaN3oCdvnJiABwhHwhL89W8mVNVdgsS2M+eU+HS3iiIlkgI2Ezu3WXut2M6rJA2+ZLmeF9mX0k4zP4kJ5h9lkttff0qYSZzZcVZk\\\\/\\\\/j53pfIzr3EIhj6H6Ue+tYX3cntlKBJmv5CUV8okqCoHkmir384qZ15X4o498M3v6e\\\\/\\\\/v719e9\\\\/D779Psn92P1i2aFeEwxJ4n\\\\/\\\\/MEPfjvNvx5sR5At4YV+oL3p48fSfXh\\\\/Rbx4xX1Lz613wy132l7vc1+\\\\/81+\\\\/w63fh63eK\\\\/HaH+naH\\\\/nYHNHf4NwfAvzkAHh3A94\\\\/Am0fsmw==\\\",\\\"format\\\":\\\"base64\\\"},\\\"body_is_truncated\\\":true,\\\"code\\\":200,\\\"headers_list\\\":[[\\\"Date\\\",\\\"Thu, 10 Nov 2022 11:23:34 GMT\\\"],[\\\"Content-Type\\\",\\\"text\\\\/plain\\\"],[\\\"X-Your-Address-Is\\\",\\\"[scrubbed]\\\"],[\\\"Content-Encoding\\\",\\\"deflate\\\"],[\\\"Expires\\\",\\\"Thu, 10 Nov 2022 12:00:00 GMT\\\"],[\\\"Vary\\\",\\\"X-Or-Diff-From-Consensus\\\"]],\\\"headers\\\":{\\\"Content-Encoding\\\":\\\"deflate\\\",\\\"Content-Type\\\":\\\"text\\\\/plain\\\",\\\"Date\\\":\\\"Thu, 10 Nov 2022 11:23:34 GMT\\\",\\\"Expires\\\":\\\"Thu, 10 Nov 2022 12:00:00 GMT\\\",\\\"Vary\\\":\\\"X-Or-Diff-From-Consensus\\\",\\\"X-Your-Address-Is\\\":\\\"[scrubbed]\\\"}},\\\"transaction_id\\\":5}],\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":null}},\\\"target_address\\\":\\\"171.25.193.9:443\\\",\\\"target_name\\\":\\\"maatuska\\\",\\\"target_protocol\\\":\\\"dir_port\\\",\\\"tcp_connect\\\":[{\\\"conn_id\\\":14,\\\"dial_id\\\":94,\\\"ip\\\":\\\"171.25.193.9\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":32.495867096,\\\"transaction_id\\\":5}],\\\"tls_handshakes\\\":null},\\\"171.25.193.9:80\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":null,\\\"network_events\\\":[{\\\"address\\\":\\\"171.25.193.9:80\\\",\\\"conn_id\\\":24,\\\"dial_id\\\":105,\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":38.616509713},{\\\"conn_id\\\":24,\\\"failure\\\":null,\\\"num_bytes\\\":243,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":38.61702534},{\\\"conn_id\\\":24,\\\"failure\\\":null,\\\"num_bytes\\\":99,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":38.762975006},{\\\"conn_id\\\":24,\\\"failure\\\":null,\\\"num_bytes\\\":6,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":38.763078858},{\\\"conn_id\\\":24,\\\"failure\\\":null,\\\"num_bytes\\\":276,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":38.763327907},{\\\"conn_id\\\":24,\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":38.935041042},{\\\"conn_id\\\":24,\\\"failure\\\":null,\\\"num_bytes\\\":656,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":38.935729173},{\\\"conn_id\\\":24,\\\"failure\\\":null,\\\"num_bytes\\\":74,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":38.936425475},{\\\"conn_id\\\":24,\\\"failure\\\":null,\\\"num_bytes\\\":24,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":38.936501531}],\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":null}},\\\"target_address\\\":\\\"171.25.193.9:80\\\",\\\"target_name\\\":\\\"maatuska\\\",\\\"target_protocol\\\":\\\"or_port_dirauth\\\",\\\"tcp_connect\\\":[{\\\"conn_id\\\":24,\\\"dial_id\\\":105,\\\"ip\\\":\\\"171.25.193.9\\\",\\\"port\\\":80,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":38.616509713}],\\\"tls_handshakes\\\":[{\\\"cipher_suite\\\":\\\"TLS_AES_256_GCM_SHA384\\\",\\\"conn_id\\\":25,\\\"failure\\\":null,\\\"negotiated_protocol\\\":\\\"\\\",\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIICSjCCAbOgAwIBAgIJAPeOlS2BuzTKMA0GCSqGSIb3DQEBCwUAMCYxJDAiBgNVBAMMG3d3dy5hNGtnd3N2NWFqZXJrNWFkeHp3LmNvbTAeFw0yMjA5MjIwMDAwMDBaFw0yMjExMjUwMDAwMDBaMCQxIjAgBgNVBAMMGXd3dy5mb2FwN2x2N3ppZnZ0b2xyby5uZXQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC+lPYfHghSPGcM6Lt7jgsH3Ftnc1hEF2FUtAgkl0x6vkTev695GyVzZ+KeYH2F8KKHlDZzR3eRm616D0nIyytK9qrIvTV4sW5LY9EXCbun5h40EnCeU9V9J3d1rIlqGui\\\\/W\\\\/K5kh9QtlOgc3FVx4dsD1u4rFZaYQdrmcXmrPyFYU1v\\\\/zQybb2UE7w127je\\\\/j6xmWud41QD08h3PXLDjLqPI7AvXai5WgdBO06kROKG5oSlzsN0XibTmr5dPiXXKFMLmfA3TyAGnbDiRaZ3WxpoWhK9H0x58sSZ2OHG4b3kqL3cI1GjBYgkFuY2qjJhSZFtRnPmHMMa\\\\/pcP3tf9YDDbAgMBAAEwDQYJKoZIhvcNAQELBQADgYEAdjtqsqankjC99tCAZYZVFYi79PMMHdtcFOO6\\\\/9AAVGnB+NFwQOJb6DVGf2frqTdbVzAUDMOGJysJB30OHLB9tc6gy3JL8DWXwqmNbo9souilKPjWZE9nBQIcFhinaz44E4qFlmQNQnD872VmwdXrynISB1E2bCNqNy6VYVpdowE=\\\",\\\"format\\\":\\\"base64\\\"}],\\\"t\\\":38.936444472,\\\"tls_version\\\":\\\"TLSv1.3\\\"}]},\\\"193.23.244.244:443\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":null,\\\"network_events\\\":[{\\\"address\\\":\\\"193.23.244.244:443\\\",\\\"conn_id\\\":19,\\\"dial_id\\\":99,\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":33.702396461},{\\\"conn_id\\\":19,\\\"failure\\\":null,\\\"num_bytes\\\":243,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":33.702879682},{\\\"conn_id\\\":19,\\\"failure\\\":null,\\\"num_bytes\\\":93,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":33.852852258},{\\\"conn_id\\\":19,\\\"failure\\\":null,\\\"num_bytes\\\":6,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":33.852914346},{\\\"conn_id\\\":19,\\\"failure\\\":null,\\\"num_bytes\\\":276,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":33.853142582},{\\\"conn_id\\\":19,\\\"failure\\\":null,\\\"num_bytes\\\":6,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":33.985860058},{\\\"conn_id\\\":19,\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":34.118580118},{\\\"conn_id\\\":19,\\\"failure\\\":null,\\\"num_bytes\\\":637,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":34.11915476},{\\\"conn_id\\\":19,\\\"failure\\\":null,\\\"num_bytes\\\":74,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":34.11969071},{\\\"conn_id\\\":19,\\\"failure\\\":null,\\\"num_bytes\\\":24,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":34.119754683}],\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":null}},\\\"target_address\\\":\\\"193.23.244.244:443\\\",\\\"target_name\\\":\\\"dannenberg\\\",\\\"target_protocol\\\":\\\"or_port_dirauth\\\",\\\"tcp_connect\\\":[{\\\"conn_id\\\":19,\\\"dial_id\\\":99,\\\"ip\\\":\\\"193.23.244.244\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":33.702396461}],\\\"tls_handshakes\\\":[{\\\"cipher_suite\\\":\\\"TLS_AES_256_GCM_SHA384\\\",\\\"conn_id\\\":4,\\\"failure\\\":null,\\\"negotiated_protocol\\\":\\\"\\\",\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIICNzCCAaCgAwIBAgIJAJOekNEDQOH9MA0GCSqGSIb3DQEBCwUAMBwxGjAYBgNVBAMMEXd3dy52N3c0ajdyejMuY29tMB4XDTIyMDQxOTAwMDAwMFoXDTIzMDQwNzAwMDAwMFowGzEZMBcGA1UEAwwQd3d3LnF3Z29ncWhyLm5ldDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALcLVy2aXSYjUY\\\\/0+4IeSbyasQyD7Rv70236AzNOYleNwyVqS4cJifBnFoz3tAdtJD03hayb5FN4htlcfDDF0mEDMnWj5Hb+Anen7zeWAZtihFxIm+lYa9a4yVtVs2Xxpd9WsFg3BefaLUgwW7dLDEPPRZVxf09qwRSG8a3oVGlYa3+nlvvrSRniZCUY3cXVEFSUg+vIpxnjEtP6UXbSnggYhrnjZbZKLtY7ANPrTkqJVTRJ1CWFdzhP8pH\\\\/DZBuOifq6T+E8MHctWIKbUjoPY4iIlCArytD1jK3hEoApqSAsG2lew0FySZxWUstkmHGeu4Bsckqd8UqpBKDwjYMKdMCAwEAATANBgkqhkiG9w0BAQsFAAOBgQAGw0jNdVoaPxuMPIZWv5HdKTMieGBVlNAc8m3mPPZ3gaGQfzyqb+U62woweAQfYGQsLZDWPaKeJ3J+sr4ZwpZFtawH\\\\/WMv1M+dVDAwbCexV3yABgnCzzPOHILRTRKg9St1FayUhNS65P1CQFL61BdSIIL4dCxULstx90\\\\/Eb5FR3A==\\\",\\\"format\\\":\\\"base64\\\"}],\\\"t\\\":34.119706145,\\\"tls_version\\\":\\\"TLSv1.3\\\"}]},\\\"193.23.244.244:80\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":null,\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":[{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Host\\\",\\\"193.23.244.244:80\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"],[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US;q=0.8,en;q=0.5\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"Host\\\":\\\"193.23.244.244:80\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"url\\\":\\\"http:\\\\/\\\\/193.23.244.244:80\\\\/tor\\\\/status-vote\\\\/current\\\\/consensus.z\\\"},\\\"response\\\":{\\\"body\\\":{\\\"data\\\":\\\"eNrs\\\\/Wdz40i2NQp\\\\/n1+Bj\\\\/cNdokwCSDBOHPjgaN3oCdvnJiABwhHwhL89W8mVNVdgsS2M+eU+HS3iiIlkgI2Ezu3WXut2M6rJA2+ZLmeF9mX0k4zP4kJ5h9lkttff0qYSZzZcVZk\\\\/\\\\/j53pfIzr3EIhj6H6Ue+tYX3cntlKBJmv5CUV8okqCoHkmir384qZ15X4o498M3v6e\\\\/\\\\/v719e9\\\\/D779Psn92P1i2aFeEwxJ4n\\\\/\\\\/MEPfjvNvx5sR5At4YV+oL3p48fSfXh\\\\/Rbx4xX1Lz613wy132l7vc1+\\\\/81+\\\\/w63fh63eK\\\\/HaH+naH\\\\/nYHNHf4NwfAvzkAHh3A94\\\\/Am0fsmw==\\\",\\\"format\\\":\\\"base64\\\"},\\\"body_is_truncated\\\":true,\\\"code\\\":200,\\\"headers_list\\\":[[\\\"X-Your-Address-Is\\\",\\\"[scrubbed]\\\"],[\\\"Content-Encoding\\\",\\\"deflate\\\"],[\\\"Expires\\\",\\\"Thu, 10 Nov 2022 12:00:00 GMT\\\"],[\\\"Vary\\\",\\\"X-Or-Diff-From-Consensus\\\"],[\\\"Date\\\",\\\"Thu, 10 Nov 2022 11:23:34 GMT\\\"],[\\\"Content-Type\\\",\\\"text\\\\/plain\\\"]],\\\"headers\\\":{\\\"Content-Encoding\\\":\\\"deflate\\\",\\\"Content-Type\\\":\\\"text\\\\/plain\\\",\\\"Date\\\":\\\"Thu, 10 Nov 2022 11:23:34 GMT\\\",\\\"Expires\\\":\\\"Thu, 10 Nov 2022 12:00:00 GMT\\\",\\\"Vary\\\":\\\"X-Or-Diff-From-Consensus\\\",\\\"X-Your-Address-Is\\\":\\\"[scrubbed]\\\"}},\\\"transaction_id\\\":4}],\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":null}},\\\"target_address\\\":\\\"193.23.244.244:80\\\",\\\"target_name\\\":\\\"dannenberg\\\",\\\"target_protocol\\\":\\\"dir_port\\\",\\\"tcp_connect\\\":[{\\\"conn_id\\\":13,\\\"dial_id\\\":93,\\\"ip\\\":\\\"193.23.244.244\\\",\\\"port\\\":80,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":32.107284741,\\\"transaction_id\\\":4}],\\\"tls_handshakes\\\":null},\\\"199.58.81.140:443\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":null,\\\"network_events\\\":[{\\\"address\\\":\\\"199.58.81.140:443\\\",\\\"conn_id\\\":10,\\\"dial_id\\\":90,\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":31.557224477},{\\\"conn_id\\\":10,\\\"failure\\\":null,\\\"num_bytes\\\":243,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":31.557729488},{\\\"conn_id\\\":10,\\\"failure\\\":null,\\\"num_bytes\\\":99,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":31.607001579},{\\\"conn_id\\\":10,\\\"failure\\\":null,\\\"num_bytes\\\":6,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":31.607088809},{\\\"conn_id\\\":10,\\\"failure\\\":null,\\\"num_bytes\\\":276,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":31.607327172},{\\\"conn_id\\\":10,\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":31.700378877},{\\\"conn_id\\\":10,\\\"failure\\\":null,\\\"num_bytes\\\":656,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":31.701113521},{\\\"conn_id\\\":10,\\\"failure\\\":null,\\\"num_bytes\\\":74,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":31.701888044},{\\\"conn_id\\\":10,\\\"failure\\\":null,\\\"num_bytes\\\":24,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":31.701979534}],\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":null}},\\\"target_address\\\":\\\"199.58.81.140:443\\\",\\\"target_name\\\":\\\"longclaw\\\",\\\"target_protocol\\\":\\\"or_port_dirauth\\\",\\\"tcp_connect\\\":[{\\\"conn_id\\\":10,\\\"dial_id\\\":90,\\\"ip\\\":\\\"199.58.81.140\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":31.557224477}],\\\"tls_handshakes\\\":[{\\\"cipher_suite\\\":\\\"TLS_AES_256_GCM_SHA384\\\",\\\"conn_id\\\":4,\\\"failure\\\":null,\\\"negotiated_protocol\\\":\\\"\\\",\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIICSjCCAbOgAwIBAgIJAP8DuduXPS27MA0GCSqGSIb3DQEBCwUAMCUxIzAhBgNVBAMMGnd3dy5wZ2p5b2FycWFmNzNwN25qN2cuY29tMB4XDTIyMDMxMDAwMDAwMFoXDTIyMTIxMzIzNTk1OVowJTEjMCEGA1UEAwwad3d3LjNuZzdlZG10ZzIyZTI2cHpmNy5uZXQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCzegUPfbnEymsgnqGlc3UNoH2EQ2aQORJevSzgpn41LEgD\\\\/kwe31D+4\\\\/WEd7jnvhJIT+\\\\/0EtzaxIN\\\\/riO38KwisfcQJdCghBofe81RNfmXArV8HXHuoVDV9g6D6dwxIH83WUZjUuGeqWiU74d3OHO+tg+ZEDNKsQV4IMlsZRSAufTv\\\\/wPOOQumX9aLfspWu3UYZPnt2yDGwwMPdyw514KPTsjoj7KoyPLIBmEaly0nZ+fWHKZaQhBZOeeczODEMYGY\\\\/utVR8R3ohz8CF6Q7UtIQLzEQM99TUe2u2tUrzCbf+TF\\\\/X1T0Mn67gwCberE6X2LGN5bvtbxGm21sg+IBeypAgMBAAEwDQYJKoZIhvcNAQELBQADgYEAPeRs+fpBRJTGrVFP+\\\\/qZzOIfnhLI2DOjhWB3XtWF4VO2XYDD13DBCZGuJmqkjYZqXjyELHhyH8a62Iii3cRaf+vAKSYBvVoZHUXdJUkwP4As9lOLmnqm+xeha9BWmh3PILl1904t5kAcCt5JQ77QkG6xc74L2zKXaD\\\\/BKs7QMRY=\\\",\\\"format\\\":\\\"base64\\\"}],\\\"t\\\":31.70190711,\\\"tls_version\\\":\\\"TLSv1.3\\\"}]},\\\"199.58.81.140:80\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":null,\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":[{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"],[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US;q=0.8,en;q=0.5\\\"],[\\\"Host\\\",\\\"199.58.81.140:80\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"Host\\\":\\\"199.58.81.140:80\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"url\\\":\\\"http:\\\\/\\\\/199.58.81.140:80\\\\/tor\\\\/status-vote\\\\/current\\\\/consensus.z\\\"},\\\"response\\\":{\\\"body\\\":{\\\"data\\\":\\\"eNrs\\\\/Wdz40i2NQp\\\\/n1+Bj\\\\/cNdokwCSDBOHPjgaN3oCdvnJiABwhHwhL89W8mVNVdgsS2M+eU+HS3iiIlkgI2Ezu3WXut2M6rJA2+ZLmeF9mX0k4zP4kJ5h9lkttff0qYSZzZcVZk\\\\/\\\\/j53pfIzr3EIhj6H6Ue+tYX3cntlKBJmv5CUV8okqCoHkmir384qZ15X4o498M3v6e\\\\/\\\\/v719e9\\\\/D779Psn92P1i2aFeEwxJ4n\\\\/\\\\/MEPfjvNvx5sR5At4YV+oL3p48fSfXh\\\\/Rbx4xX1Lz613wy132l7vc1+\\\\/81+\\\\/w63fh63eK\\\\/HaH+naH\\\\/nYHNHf4NwfAvzkAHh3A94\\\\/Am0fsmw==\\\",\\\"format\\\":\\\"base64\\\"},\\\"body_is_truncated\\\":true,\\\"code\\\":200,\\\"headers_list\\\":[[\\\"Content-Encoding\\\",\\\"deflate\\\"],[\\\"Expires\\\",\\\"Thu, 10 Nov 2022 12:00:00 GMT\\\"],[\\\"Vary\\\",\\\"X-Or-Diff-From-Consensus\\\"],[\\\"Date\\\",\\\"Thu, 10 Nov 2022 11:23:41 GMT\\\"],[\\\"Content-Type\\\",\\\"text\\\\/plain\\\"],[\\\"X-Your-Address-Is\\\",\\\"[scrubbed]\\\"]],\\\"headers\\\":{\\\"Content-Encoding\\\":\\\"deflate\\\",\\\"Content-Type\\\":\\\"text\\\\/plain\\\",\\\"Date\\\":\\\"Thu, 10 Nov 2022 11:23:41 GMT\\\",\\\"Expires\\\":\\\"Thu, 10 Nov 2022 12:00:00 GMT\\\",\\\"Vary\\\":\\\"X-Or-Diff-From-Consensus\\\",\\\"X-Your-Address-Is\\\":\\\"[scrubbed]\\\"}},\\\"transaction_id\\\":7}],\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":null}},\\\"target_address\\\":\\\"199.58.81.140:80\\\",\\\"target_name\\\":\\\"longclaw\\\",\\\"target_protocol\\\":\\\"dir_port\\\",\\\"tcp_connect\\\":[{\\\"conn_id\\\":26,\\\"dial_id\\\":106,\\\"ip\\\":\\\"199.58.81.140\\\",\\\"port\\\":80,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":38.978120441,\\\"transaction_id\\\":7}],\\\"tls_handshakes\\\":null},\\\"204.13.164.118:443\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":null,\\\"network_events\\\":[{\\\"address\\\":\\\"204.13.164.118:443\\\",\\\"conn_id\\\":2,\\\"dial_id\\\":81,\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.519606639},{\\\"conn_id\\\":2,\\\"failure\\\":null,\\\"num_bytes\\\":243,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.520080082},{\\\"conn_id\\\":2,\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.859017334},{\\\"conn_id\\\":2,\\\"failure\\\":null,\\\"num_bytes\\\":496,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.859107218},{\\\"conn_id\\\":2,\\\"failure\\\":null,\\\"num_bytes\\\":126,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.860368524},{\\\"conn_id\\\":2,\\\"failure\\\":null,\\\"num_bytes\\\":51,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.936865621},{\\\"conn_id\\\":2,\\\"failure\\\":null,\\\"num_bytes\\\":31,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.937094067}],\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":null}},\\\"target_address\\\":\\\"204.13.164.118:443\\\",\\\"target_name\\\":\\\"bastet\\\",\\\"target_protocol\\\":\\\"or_port_dirauth\\\",\\\"tcp_connect\\\":[{\\\"conn_id\\\":2,\\\"dial_id\\\":81,\\\"ip\\\":\\\"204.13.164.118\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.519606639}],\\\"tls_handshakes\\\":[{\\\"cipher_suite\\\":\\\"TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384\\\",\\\"conn_id\\\":4,\\\"failure\\\":null,\\\"negotiated_protocol\\\":\\\"\\\",\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIICSTCCAbKgAwIBAgIISnkb4zeiDPEwDQYJKoZIhvcNAQELBQAwIzEhMB8GA1UEAwwYd3d3Ljdhc2l6bW12a2NwcDc0bDIuY29tMB4XDTIyMTAwMjAwMDAwMFoXDTIyMTIwNDAwMDAwMFowJzElMCMGA1UEAwwcd3d3LmIyMmIyZmN2bnp2NG8ya2l3dHp5Lm5ldDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKdsajQKQG+\\\\/w5Pl6Kf90wdQzGiYFGLrIphL89IvSoEHm3figGLNXJrNuiHNaagZm1iF2MG9lYJs50ARYx2fJVrZSthTVRaLbRXqI5qdX2ZzsxnMvlIZhRTe3wHDpcmFRtS+9o23zHWDrTJ1\\\\/PiA7j1Hi337sIeANsEa7h+snDio75eDEabmkr\\\\/XjfQdZHlQ1UZR7yVTkM6MwwRCiqGH\\\\/caRhdn1ht+B3PCrNXgmdiMb7GZNOX0h2g833NkxfFbyA0ej8fMg2Sth9bg+miNFOM+JNl88mUx7BMz0TZt5l6EmdQJn9MrmQMumI2Cs221Esa8hRgtfixzET5d326S2CUkCAwEAATANBgkqhkiG9w0BAQsFAAOBgQBA6GD7p75nprxaAcQBxi0ADkKpnBmyxdVfoNd96S8Rqwv35w+cDoVTNYE1lIMilGwItqLcUJa\\\\/22RnmdcU3d3d39q5RfS6CAU98l8QNyIX+mdhfOXgyNOBPIxTx5WfwUHZfwWJAUUdnR9H4MUlsyTuG20+O2BNZu8W4poGyQWKxA==\\\",\\\"format\\\":\\\"base64\\\"}],\\\"t\\\":0.936963956,\\\"tls_version\\\":\\\"TLSv1.2\\\"}]},\\\"204.13.164.118:80\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":null,\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":[{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Host\\\",\\\"204.13.164.118:80\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"],[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US;q=0.8,en;q=0.5\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"Host\\\":\\\"204.13.164.118:80\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"url\\\":\\\"http:\\\\/\\\\/204.13.164.118:80\\\\/tor\\\\/status-vote\\\\/current\\\\/consensus.z\\\"},\\\"response\\\":{\\\"body\\\":{\\\"data\\\":\\\"eNrs\\\\/Wdz40i2NQp\\\\/n1+Bj\\\\/cNdokwCSDBOHPjgaN3oCdvnJiABwhHwhL89W8mVNVdgsS2M+eU+HS3iiIlkgI2Ezu3WXut2M6rJA2+ZLmeF9mX0k4zP4kJ5h9lkttff0qYSZzZcVZk\\\\/\\\\/j53pfIzr3EIhj6H6Ue+tYX3cntlKBJmv5CUV8okqCoHkmir384qZ15X4o498M3v6e\\\\/\\\\/v719e9\\\\/D779Psn92P1i2aFeEwxJ4n\\\\/\\\\/MEPfjvNvx5sR5At4YV+oL3p48fSfXh\\\\/Rbx4xX1Lz613wy132l7vc1+\\\\/81+\\\\/w63fh63eK\\\\/HaH+naH\\\\/nYHNHf4NwfAvzkAHh3A94\\\\/Am0fsmw==\\\",\\\"format\\\":\\\"base64\\\"},\\\"body_is_truncated\\\":true,\\\"code\\\":200,\\\"headers_list\\\":[[\\\"Date\\\",\\\"Thu, 10 Nov 2022 11:23:03 GMT\\\"],[\\\"Content-Type\\\",\\\"text\\\\/plain\\\"],[\\\"X-Your-Address-Is\\\",\\\"[scrubbed]\\\"],[\\\"Content-Encoding\\\",\\\"deflate\\\"],[\\\"Expires\\\",\\\"Thu, 10 Nov 2022 12:00:00 GMT\\\"],[\\\"Vary\\\",\\\"X-Or-Diff-From-Consensus\\\"]],\\\"headers\\\":{\\\"Content-Encoding\\\":\\\"deflate\\\",\\\"Content-Type\\\":\\\"text\\\\/plain\\\",\\\"Date\\\":\\\"Thu, 10 Nov 2022 11:23:03 GMT\\\",\\\"Expires\\\":\\\"Thu, 10 Nov 2022 12:00:00 GMT\\\",\\\"Vary\\\":\\\"X-Or-Diff-From-Consensus\\\",\\\"X-Your-Address-Is\\\":\\\"[scrubbed]\\\"}},\\\"transaction_id\\\":1}],\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":null}},\\\"target_address\\\":\\\"204.13.164.118:80\\\",\\\"target_name\\\":\\\"bastet\\\",\\\"target_protocol\\\":\\\"dir_port\\\",\\\"tcp_connect\\\":[{\\\"conn_id\\\":5,\\\"dial_id\\\":84,\\\"ip\\\":\\\"204.13.164.118\\\",\\\"port\\\":80,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":1.082376834,\\\"transaction_id\\\":1}],\\\"tls_handshakes\\\":null},\\\"2d7292b5163fb7de5b24cd04032c93a2d4c454431de3a00b5a6d4a3309529e49\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"handshake: ntor AUTH mismatch: Derived: 511845ad2217c78a5d3017f5f68200664e14c5a6bf557b6b55b07dac0438a3b3 Received:2445fe9b60103d44110546a2b4437c5b6e49c22fb2dd01114bbee0213bd9963a.\\\",\\\"network_events\\\":[{\\\"address\\\":\\\"193.11.166.194:27020\\\",\\\"conn_id\\\":33,\\\"dial_id\\\":113,\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":40.752598545},{\\\"conn_id\\\":33,\\\"failure\\\":null,\\\"num_bytes\\\":7254,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":40.753496265},{\\\"conn_id\\\":33,\\\"failure\\\":null,\\\"num_bytes\\\":1460,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":40.965919905},{\\\"conn_id\\\":33,\\\"failure\\\":null,\\\"num_bytes\\\":1477,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":40.9665757}],\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":null}},\\\"target_address\\\":\\\"193.11.166.194:27020\\\",\\\"target_protocol\\\":\\\"obfs4\\\",\\\"tcp_connect\\\":[{\\\"conn_id\\\":33,\\\"dial_id\\\":113,\\\"ip\\\":\\\"193.11.166.194\\\",\\\"port\\\":27020,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":40.752598545}],\\\"tls_handshakes\\\":null},\\\"3fa772a44e07856b4c70e958b2f6dc8a29450a823509d5dbbf8b884e7fb5bb9d\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"handshake: ntor AUTH mismatch: Derived: d0b76591aa34951c2c47d8be2e6b55b856c1ef8d2e11cf1ba5d79c3c9012f05d Received:a037678c7d68333125e1cb965ae81117780875d70969ef7d602fafcabe1848e4.\\\",\\\"network_events\\\":[{\\\"address\\\":\\\"192.95.36.142:443\\\",\\\"conn_id\\\":32,\\\"dial_id\\\":112,\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":40.546606798},{\\\"conn_id\\\":32,\\\"failure\\\":null,\\\"num_bytes\\\":3216,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":40.54752987},{\\\"conn_id\\\":32,\\\"failure\\\":null,\\\"num_bytes\\\":1448,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":40.611175752},{\\\"conn_id\\\":32,\\\"failure\\\":null,\\\"num_bytes\\\":3673,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":40.613785175}],\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":null}},\\\"target_address\\\":\\\"192.95.36.142:443\\\",\\\"target_protocol\\\":\\\"obfs4\\\",\\\"tcp_connect\\\":[{\\\"conn_id\\\":32,\\\"dial_id\\\":112,\\\"ip\\\":\\\"192.95.36.142\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":40.546606798}],\\\"tls_handshakes\\\":null},\\\"45.66.33.45:443\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":null,\\\"network_events\\\":[{\\\"address\\\":\\\"45.66.33.45:443\\\",\\\"conn_id\\\":12,\\\"dial_id\\\":92,\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":31.885998994},{\\\"conn_id\\\":12,\\\"failure\\\":null,\\\"num_bytes\\\":243,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":31.886475022},{\\\"conn_id\\\":12,\\\"failure\\\":null,\\\"num_bytes\\\":99,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":32.013562994},{\\\"conn_id\\\":12,\\\"failure\\\":null,\\\"num_bytes\\\":6,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":32.013637722},{\\\"conn_id\\\":12,\\\"failure\\\":null,\\\"num_bytes\\\":276,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":32.013875736},{\\\"conn_id\\\":12,\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":32.232802017},{\\\"conn_id\\\":12,\\\"failure\\\":null,\\\"num_bytes\\\":656,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":32.236134072},{\\\"conn_id\\\":12,\\\"failure\\\":null,\\\"num_bytes\\\":74,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":32.238193576},{\\\"conn_id\\\":12,\\\"failure\\\":null,\\\"num_bytes\\\":24,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":32.240688253}],\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":null}},\\\"target_address\\\":\\\"45.66.33.45:443\\\",\\\"target_name\\\":\\\"dizum\\\",\\\"target_protocol\\\":\\\"or_port_dirauth\\\",\\\"tcp_connect\\\":[{\\\"conn_id\\\":12,\\\"dial_id\\\":92,\\\"ip\\\":\\\"45.66.33.45\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":31.885998994}],\\\"tls_handshakes\\\":[{\\\"cipher_suite\\\":\\\"TLS_AES_256_GCM_SHA384\\\",\\\"conn_id\\\":4,\\\"failure\\\":null,\\\"negotiated_protocol\\\":\\\"\\\",\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIICSjCCAbOgAwIBAgIILi73qJdm1Y0wDQYJKoZIhvcNAQELBQAwJDEiMCAGA1UEAwwZd3d3Lms0aHZ2enY1d2tzM3FlaGhtLmNvbTAeFw0yMTEyMjMwMDAwMDBaFw0yMjExMTYyMzU5NTlaMCcxJTAjBgNVBAMMHHd3dy42M2xrZ2lsaXd6bWNvbW0ydnc1eS5uZXQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCWckoSqvW4R7mxLkWA4v6CxkfCqCzxUVlgQQ9rAjtnIW35WQaBMC67HY+lxgt2MXhBauRjMD\\\\/f5UmrVPzb9VHprDQ6+a7G1WMMqn4tJ7JyE1RI6VyeB+Za1XmJbAcmfnrnZXZEAFaTs5TrdLj56OGONDowGPNzTX6kr+R1ygHngcuJYPXIyHvacjTtrZ4A2jYy9a\\\\/gof8NKxP5JKivP7fdbV5Hxd8XtvMTi5rZcdLY4Lzq6I+1j3eWyddg1oFrKXH9snMUJ\\\\/vNbuwueJUUHsAqH+B2lC0106urtY5znDHePCPTBrzy2b20GkE4S6sLSjvFCClwZa79FDpzo9GndZqTAgMBAAEwDQYJKoZIhvcNAQELBQADgYEAN8Wu2lZtRCrkaPbJHHeHaS6xpIaHfHD6CnePB2OnPXrioNAGFtnhxmyC8wRElHfO6oAfkAZWlvWyDuFGh1+4nguY5t6\\\\/CF3\\\\/8pf4PDWXzp7HYdwuiHIkFMppbSR6hyxOVnF5w8BSNHlsKdAinStseUXhlEbuoXZD0srw7AOAMno=\\\",\\\"format\\\":\\\"base64\\\"}],\\\"t\\\":32.238215157,\\\"tls_version\\\":\\\"TLSv1.3\\\"}]},\\\"45.66.33.45:80\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":null,\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":[{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Host\\\",\\\"45.66.33.45:80\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"],[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US;q=0.8,en;q=0.5\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"Host\\\":\\\"45.66.33.45:80\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"url\\\":\\\"http:\\\\/\\\\/45.66.33.45:80\\\\/tor\\\\/status-vote\\\\/current\\\\/consensus.z\\\"},\\\"response\\\":{\\\"body\\\":{\\\"data\\\":\\\"eNrs\\\\/Wdz40i2NQp\\\\/n1+Bj\\\\/cNdokwCSDBOHPjgaN3oCdvnJiABwhHwhL89W8mVNVdgsS2M+eU+HS3iiIlkgI2Ezu3WXut2M6rJA2+ZLmeF9mX0k4zP4kJ5h9lkttff0qYSZzZcVZk\\\\/\\\\/j53pfIzr3EIhj6H6Ue+tYX3cntlKBJmv5CUV8okqCoHkmir384qZ15X4o498M3v6e\\\\/\\\\/v719e9\\\\/D779Psn92P1i2aFeEwxJ4n\\\\/\\\\/MEPfjvNvx5sR5At4YV+oL3p48fSfXh\\\\/Rbx4xX1Lz613wy132l7vc1+\\\\/81+\\\\/w63fh63eK\\\\/HaH+naH\\\\/nYHNHf4NwfAvzkAHh3A94\\\\/Am0fsmw==\\\",\\\"format\\\":\\\"base64\\\"},\\\"body_is_truncated\\\":true,\\\"code\\\":200,\\\"headers_list\\\":[[\\\"Expires\\\",\\\"Thu, 10 Nov 2022 12:00:00 GMT\\\"],[\\\"Vary\\\",\\\"X-Or-Diff-From-Consensus\\\"],[\\\"Date\\\",\\\"Thu, 10 Nov 2022 11:23:40 GMT\\\"],[\\\"Content-Type\\\",\\\"text\\\\/plain\\\"],[\\\"X-Your-Address-Is\\\",\\\"[scrubbed]\\\"],[\\\"Content-Encoding\\\",\\\"deflate\\\"]],\\\"headers\\\":{\\\"Content-Encoding\\\":\\\"deflate\\\",\\\"Content-Type\\\":\\\"text\\\\/plain\\\",\\\"Date\\\":\\\"Thu, 10 Nov 2022 11:23:40 GMT\\\",\\\"Expires\\\":\\\"Thu, 10 Nov 2022 12:00:00 GMT\\\",\\\"Vary\\\":\\\"X-Or-Diff-From-Consensus\\\",\\\"X-Your-Address-Is\\\":\\\"[scrubbed]\\\"}},\\\"transaction_id\\\":6}],\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":null}},\\\"target_address\\\":\\\"45.66.33.45:80\\\",\\\"target_name\\\":\\\"dizum\\\",\\\"target_protocol\\\":\\\"dir_port\\\",\\\"tcp_connect\\\":[{\\\"conn_id\\\":23,\\\"dial_id\\\":104,\\\"ip\\\":\\\"45.66.33.45\\\",\\\"port\\\":80,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":38.282107858,\\\"transaction_id\\\":6}],\\\"tls_handshakes\\\":null},\\\"49116bf72d336bb8724fd3a06a5afa7bbd4e7baef35fbcdb9a98d13e702270ad\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"handshake: ntor AUTH mismatch: Derived: 77afaf39a86c10200f618e3e0dfea572e5c25569df77c5516d5d7a416d7e454a Received:b574e4fe2b371b08b16248e3d60e6dd8c52bf437ade5349f678751ec1d0a2ee7.\\\",\\\"network_events\\\":[{\\\"address\\\":\\\"146.57.248.225:22\\\",\\\"conn_id\\\":15,\\\"dial_id\\\":96,\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":32.705089141},{\\\"conn_id\\\":15,\\\"failure\\\":null,\\\"num_bytes\\\":3256,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":32.705898235},{\\\"conn_id\\\":15,\\\"failure\\\":null,\\\"num_bytes\\\":1448,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":32.782238541},{\\\"conn_id\\\":15,\\\"failure\\\":null,\\\"num_bytes\\\":2251,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":32.783981183}],\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":null}},\\\"target_address\\\":\\\"146.57.248.225:22\\\",\\\"target_protocol\\\":\\\"obfs4\\\",\\\"tcp_connect\\\":[{\\\"conn_id\\\":15,\\\"dial_id\\\":96,\\\"ip\\\":\\\"146.57.248.225\\\",\\\"port\\\":22,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":32.705089141}],\\\"tls_handshakes\\\":null},\\\"4a330634c5d678887f0f7c299490af43a6ac9fa944a6cc2140ab264c9ec124a0\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":null,\\\"network_events\\\":[{\\\"address\\\":\\\"209.148.46.65:443\\\",\\\"conn_id\\\":34,\\\"dial_id\\\":114,\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":41.008132104},{\\\"conn_id\\\":34,\\\"failure\\\":null,\\\"num_bytes\\\":3319,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":41.012037823},{\\\"conn_id\\\":34,\\\"failure\\\":null,\\\"num_bytes\\\":1448,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":41.07883243},{\\\"conn_id\\\":34,\\\"failure\\\":null,\\\"num_bytes\\\":2541,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":41.081794405}],\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":null}},\\\"target_address\\\":\\\"209.148.46.65:443\\\",\\\"target_protocol\\\":\\\"obfs4\\\",\\\"tcp_connect\\\":[{\\\"conn_id\\\":34,\\\"dial_id\\\":114,\\\"ip\\\":\\\"209.148.46.65\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":41.008132104}],\\\"tls_handshakes\\\":null},\\\"548eebff71da6128321c3bc1c3ec12b5bfff277ef5cde32709a33e207b57f3e2\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":null,\\\"network_events\\\":[{\\\"address\\\":\\\"37.218.245.14:38224\\\",\\\"conn_id\\\":11,\\\"dial_id\\\":91,\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":31.70443524},{\\\"conn_id\\\":11,\\\"failure\\\":null,\\\"num_bytes\\\":7609,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":31.705309424},{\\\"conn_id\\\":11,\\\"failure\\\":null,\\\"num_bytes\\\":2934,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":31.954984894}],\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":null}},\\\"target_address\\\":\\\"37.218.245.14:38224\\\",\\\"target_protocol\\\":\\\"obfs4\\\",\\\"tcp_connect\\\":[{\\\"conn_id\\\":11,\\\"dial_id\\\":91,\\\"ip\\\":\\\"37.218.245.14\\\",\\\"port\\\":38224,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":31.70443524}],\\\"tls_handshakes\\\":null},\\\"5aeb9e43b43fc8a809b8d25aae968395a5ceea0e677caaf56e1c0a2ba002f5b5\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"handshake: ntor AUTH mismatch: Derived: eea4f872ca606f523ff668c8ce0a082108db57bcf2a6f105bc37752b2e979cd8 Received:afcdf57c4d669f150d6159e2d410fc17d39ab16985fff4ea3295f30630e6b98e.\\\",\\\"network_events\\\":[{\\\"address\\\":\\\"193.11.166.194:27015\\\",\\\"conn_id\\\":8,\\\"dial_id\\\":87,\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":31.3649619},{\\\"conn_id\\\":8,\\\"failure\\\":null,\\\"num_bytes\\\":4011,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":31.365743477},{\\\"conn_id\\\":8,\\\"failure\\\":null,\\\"num_bytes\\\":2408,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":31.557776839}],\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":null}},\\\"target_address\\\":\\\"193.11.166.194:27015\\\",\\\"target_protocol\\\":\\\"obfs4\\\",\\\"tcp_connect\\\":[{\\\"conn_id\\\":8,\\\"dial_id\\\":87,\\\"ip\\\":\\\"193.11.166.194\\\",\\\"port\\\":27015,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":31.3649619}],\\\"tls_handshakes\\\":null},\\\"66.111.2.131:9001\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":null,\\\"network_events\\\":[{\\\"address\\\":\\\"66.111.2.131:9001\\\",\\\"conn_id\\\":17,\\\"dial_id\\\":98,\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":33.3249048},{\\\"conn_id\\\":17,\\\"failure\\\":null,\\\"num_bytes\\\":243,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":33.325304493},{\\\"conn_id\\\":17,\\\"failure\\\":null,\\\"num_bytes\\\":93,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":33.363325678},{\\\"conn_id\\\":17,\\\"failure\\\":null,\\\"num_bytes\\\":6,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":33.363403898},{\\\"conn_id\\\":17,\\\"failure\\\":null,\\\"num_bytes\\\":276,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":33.363648058},{\\\"conn_id\\\":17,\\\"failure\\\":null,\\\"num_bytes\\\":6,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":33.520827678},{\\\"conn_id\\\":17,\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":33.560442118},{\\\"conn_id\\\":17,\\\"failure\\\":null,\\\"num_bytes\\\":641,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":33.561119494},{\\\"conn_id\\\":17,\\\"failure\\\":null,\\\"num_bytes\\\":74,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":33.56177508},{\\\"conn_id\\\":17,\\\"failure\\\":null,\\\"num_bytes\\\":24,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":33.561852532}],\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":null}},\\\"target_address\\\":\\\"66.111.2.131:9001\\\",\\\"target_name\\\":\\\"Serge\\\",\\\"target_protocol\\\":\\\"or_port_dirauth\\\",\\\"tcp_connect\\\":[{\\\"conn_id\\\":17,\\\"dial_id\\\":98,\\\"ip\\\":\\\"66.111.2.131\\\",\\\"port\\\":9001,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":33.3249048}],\\\"tls_handshakes\\\":[{\\\"cipher_suite\\\":\\\"TLS_AES_256_GCM_SHA384\\\",\\\"conn_id\\\":18,\\\"failure\\\":null,\\\"negotiated_protocol\\\":\\\"\\\",\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIICOzCCAaSgAwIBAgIIVYEAFQ4suzwwDQYJKoZIhvcNAQELBQAwHjEcMBoGA1UEAwwTd3d3LmhodmV3ZXozd216LmNvbTAeFw0yMjA5MTAwMDAwMDBaFw0yMzAxMDcwMDAwMDBaMB4xHDAaBgNVBAMME3d3dy5mcGlrNjRwdTV5bi5uZXQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCkzdcKdFSOtEYvIy62Tt8sJ\\\\/pBKje0kqwwqgp9flS610I+gLlTFIN2eqO4a0biorQN4vQGOS8XX4xjifROwsj0lwV1MqNRF5H\\\\/pEPKKRkfyxJSALsn1AvlV\\\\/lC4NMxqeCw5bGWdl8qJdY0c7a9Ltm83254tumERCukwI6S6R8ae4F304MUJmWnkXXsLfISma02SlTZ4Egh3BcfLDgUBda1OCT0WUDlINjtdiS9dwdHEU0Ula\\\\/yegh24MdA4Pgos93ZHi8FSxft4DlgqHetyiHwZvZPAmSgDqLGTjXWveYQcF\\\\/rfno7fPS6rQS2D+rH7gOCBiHLy1TrEHsjUcBVZJ4hAgMBAAEwDQYJKoZIhvcNAQELBQADgYEAchKpLXdtTd8MxgF8YxFlC8QnMGYrIzXzr4nCn7aIwj6f9wsn0Dh60cm\\\\/iutEjHqh4Ph4akNp2BWkFB58xrWdee8Yd73CzjOIyWOd1jlEqbFEAxp+MTbQV1ufcv5l1GAWbyMnwg2OxItyz4OSrZ0fS88cn3Q5a+3MOYpKOvjlAhQ=\\\",\\\"format\\\":\\\"base64\\\"}],\\\"t\\\":33.561793657,\\\"tls_version\\\":\\\"TLSv1.3\\\"}]},\\\"66.111.2.131:9030\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":null,\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":[{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept-Language\\\",\\\"en-US;q=0.8,en;q=0.5\\\"],[\\\"Host\\\",\\\"66.111.2.131:9030\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"],[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"Host\\\":\\\"66.111.2.131:9030\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"url\\\":\\\"http:\\\\/\\\\/66.111.2.131:9030\\\\/tor\\\\/status-vote\\\\/current\\\\/consensus.z\\\"},\\\"response\\\":{\\\"body\\\":{\\\"data\\\":\\\"eNrs\\\\/Wdz40i2NQp\\\\/n1+Bj\\\\/cNdokwCSDBOHPjgaN3oCdvnJiABwhHwhL89W8mVNVdgsS2M+eU+HS3iiIlkgI2Ezu3WXut2M6rJA2+ZLmeF9mX0k4zP4kJ5h9lkttff0qYSZzZcVZk\\\\/\\\\/j53pfIzr3EIhj6H6Ue+tYX3cntlKBJmv5CUV8okqCoHkmir384qZ15X4o498M3v6e\\\\/\\\\/v719e9\\\\/D779Psn92P1i2aFeEwxJ4n\\\\/\\\\/MEPfjvNvx5sR5At4YV+oL3p48fSfXh\\\\/Rbx4xX1Lz613wy132l7vc1+\\\\/81+\\\\/w63fh63eK\\\\/HaH+naH\\\\/nYHNHf4NwfAvzkAHh3A94\\\\/Am0fsmw==\\\",\\\"format\\\":\\\"base64\\\"},\\\"body_is_truncated\\\":true,\\\"code\\\":200,\\\"headers_list\\\":[[\\\"Content-Type\\\",\\\"text\\\\/plain\\\"],[\\\"X-Your-Address-Is\\\",\\\"[scrubbed]\\\"],[\\\"Content-Encoding\\\",\\\"deflate\\\"],[\\\"Expires\\\",\\\"Thu, 10 Nov 2022 12:00:00 GMT\\\"],[\\\"Vary\\\",\\\"X-Or-Diff-From-Consensus\\\"],[\\\"Date\\\",\\\"Thu, 10 Nov 2022 11:23:33 GMT\\\"]],\\\"headers\\\":{\\\"Content-Encoding\\\":\\\"deflate\\\",\\\"Content-Type\\\":\\\"text\\\\/plain\\\",\\\"Date\\\":\\\"Thu, 10 Nov 2022 11:23:33 GMT\\\",\\\"Expires\\\":\\\"Thu, 10 Nov 2022 12:00:00 GMT\\\",\\\"Vary\\\":\\\"X-Or-Diff-From-Consensus\\\",\\\"X-Your-Address-Is\\\":\\\"[scrubbed]\\\"}},\\\"transaction_id\\\":3}],\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":null}},\\\"target_address\\\":\\\"66.111.2.131:9030\\\",\\\"target_name\\\":\\\"Serge\\\",\\\"target_protocol\\\":\\\"dir_port\\\",\\\"tcp_connect\\\":[{\\\"conn_id\\\":9,\\\"dial_id\\\":89,\\\"ip\\\":\\\"66.111.2.131\\\",\\\"port\\\":9030,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":31.397529507,\\\"transaction_id\\\":3}],\\\"tls_handshakes\\\":null},\\\"75fe96d641a078fee06529af376d7f8c92757596e48558d5d02baa1e10321d10\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"handshake: ntor AUTH mismatch: Derived: 38329ad3165ba194906eb4d69d8af944c61a138ac504b314331081ac3bdac6b7 Received:e93c9294e446800af30ae98199e714a846f118c3dc1919dc64291ec18524bd0a.\\\",\\\"network_events\\\":[{\\\"address\\\":\\\"45.145.95.6:27015\\\",\\\"conn_id\\\":35,\\\"dial_id\\\":115,\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":41.205576442},{\\\"conn_id\\\":35,\\\"failure\\\":null,\\\"num_bytes\\\":6343,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":41.206240478},{\\\"conn_id\\\":35,\\\"failure\\\":null,\\\"num_bytes\\\":3107,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":41.362375784}],\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":null}},\\\"target_address\\\":\\\"45.145.95.6:27015\\\",\\\"target_protocol\\\":\\\"obfs4\\\",\\\"tcp_connect\\\":[{\\\"conn_id\\\":35,\\\"dial_id\\\":115,\\\"ip\\\":\\\"45.145.95.6\\\",\\\"port\\\":27015,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":41.205576442}],\\\"tls_handshakes\\\":null},\\\"86.59.21.38:443\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":null,\\\"network_events\\\":[{\\\"address\\\":\\\"86.59.21.38:443\\\",\\\"conn_id\\\":16,\\\"dial_id\\\":97,\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":32.914794967},{\\\"conn_id\\\":16,\\\"failure\\\":null,\\\"num_bytes\\\":243,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":32.91524676},{\\\"conn_id\\\":16,\\\"failure\\\":null,\\\"num_bytes\\\":99,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":33.083481037},{\\\"conn_id\\\":16,\\\"failure\\\":null,\\\"num_bytes\\\":6,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":33.083578533},{\\\"conn_id\\\":16,\\\"failure\\\":null,\\\"num_bytes\\\":276,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":33.083827233},{\\\"conn_id\\\":16,\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":33.287821004},{\\\"conn_id\\\":16,\\\"failure\\\":null,\\\"num_bytes\\\":651,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":33.288473936},{\\\"conn_id\\\":16,\\\"failure\\\":null,\\\"num_bytes\\\":74,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":33.28914775},{\\\"conn_id\\\":16,\\\"failure\\\":null,\\\"num_bytes\\\":24,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":33.289222478}],\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":null}},\\\"target_address\\\":\\\"86.59.21.38:443\\\",\\\"target_name\\\":\\\"tor26\\\",\\\"target_protocol\\\":\\\"or_port_dirauth\\\",\\\"tcp_connect\\\":[{\\\"conn_id\\\":16,\\\"dial_id\\\":97,\\\"ip\\\":\\\"86.59.21.38\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":32.914794967}],\\\"tls_handshakes\\\":[{\\\"cipher_suite\\\":\\\"TLS_AES_256_GCM_SHA384\\\",\\\"conn_id\\\":4,\\\"failure\\\":null,\\\"negotiated_protocol\\\":\\\"\\\",\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIICRTCCAa6gAwIBAgIJAOSMi5+Ane8BMA0GCSqGSIb3DQEBCwUAMB4xHDAaBgNVBAMME3d3dy54NzcycjdqdGhuaS5jb20wHhcNMjIxMDE3MDAwMDAwWhcNMjMwMjIxMDAwMDAwWjAnMSUwIwYDVQQDDBx3d3cuc240Nmtmdjc1YTNsbHZtcDNhenMubmV0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkleZBL2pdfBOD5CnQz5X+pKSHXquOZGJ1VLVqzwLjwXabeHE+ahzYVoSRzfn0MkjvGXSSjBwwmHXLooS4ADAmApnyuPp3KXbGsTVGpr1NzB2Xz14xgbJLLRFVd\\\\/FCAtN3vi8yu0uFOV+\\\\/3maX6YiZV\\\\/lWj0z571WIfmnmrbqZNFidZbqly+BI43624alDfRXpzge+XXsFiRS1E1vobJJLsSSEudgxmiHc+OTV\\\\/TEi277XkGvLuR\\\\/TaoD0nzLn\\\\/f+8qeRxAIjjPpVcpT9iwTLSZJ9eOVaIv\\\\/yZWANO67Ie+wVa6J8nENelxgeU8dNKjlWGHyQO6TE\\\\/mSQxdOb5g93\\\\/wIDAQABMA0GCSqGSIb3DQEBCwUAA4GBALBios\\\\/ke4FmcOLtT8\\\\/v3zEKW5Ex\\\\/cGYGp3DOC6JhWrpFFLAHQxuxI5F\\\\/c9cLs5D3SfxUyoL1bOaxVYae1s5LMicyAcfiGMKe9UES+KQ2r8APMt2qvGXEypxRynmcCJyIvuLRI3nf6SbcmuwP1OP6HS1emk5ojdsmt4K8OmOLGmd\\\",\\\"format\\\":\\\"base64\\\"}],\\\"t\\\":33.289166188,\\\"tls_version\\\":\\\"TLSv1.3\\\"}]},\\\"86.59.21.38:80\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":null,\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":[{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Host\\\",\\\"86.59.21.38:80\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"],[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US;q=0.8,en;q=0.5\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US;q=0.8,en;q=0.5\\\",\\\"Host\\\":\\\"86.59.21.38:80\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/90.0.4430.93 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"url\\\":\\\"http:\\\\/\\\\/86.59.21.38:80\\\\/tor\\\\/status-vote\\\\/current\\\\/consensus.z\\\"},\\\"response\\\":{\\\"body\\\":{\\\"data\\\":\\\"eNrs\\\\/Wdz40i2NQp\\\\/n1+Bj\\\\/cNdokwCSDBOHPjgaN3oCdvnJiABwhHwhL89W8mVNVdgsS2M+eU+HS3iiIlkgI2Ezu3WXut2M6rJA2+ZLmeF9mX0k4zP4kJ5h9lkttff0qYSZzZcVZk\\\\/\\\\/j53pfIzr3EIhj6H6Ue+tYX3cntlKBJmv5CUV8okqCoHkmir384qZ15X4o498M3v6e\\\\/\\\\/v719e9\\\\/D779Psn92P1i2aFeEwxJ4n\\\\/\\\\/MEPfjvNvx5sR5At4YV+oL3p48fSfXh\\\\/Rbx4xX1Lz613wy132l7vc1+\\\\/81+\\\\/w63fh63eK\\\\/HaH+naH\\\\/nYHNHf4NwfAvzkAHh3A94\\\\/Am0fsmw==\\\",\\\"format\\\":\\\"base64\\\"},\\\"body_is_truncated\\\":true,\\\"code\\\":200,\\\"headers_list\\\":[[\\\"Date\\\",\\\"Thu, 10 Nov 2022 11:23:41 GMT\\\"],[\\\"Content-Type\\\",\\\"text\\\\/plain\\\"],[\\\"X-Your-Address-Is\\\",\\\"[scrubbed]\\\"],[\\\"Content-Encoding\\\",\\\"deflate\\\"],[\\\"Expires\\\",\\\"Thu, 10 Nov 2022 12:00:00 GMT\\\"],[\\\"Vary\\\",\\\"X-Or-Diff-From-Consensus\\\"]],\\\"headers\\\":{\\\"Content-Encoding\\\":\\\"deflate\\\",\\\"Content-Type\\\":\\\"text\\\\/plain\\\",\\\"Date\\\":\\\"Thu, 10 Nov 2022 11:23:41 GMT\\\",\\\"Expires\\\":\\\"Thu, 10 Nov 2022 12:00:00 GMT\\\",\\\"Vary\\\":\\\"X-Or-Diff-From-Consensus\\\",\\\"X-Your-Address-Is\\\":\\\"[scrubbed]\\\"}},\\\"transaction_id\\\":8}],\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":null}},\\\"target_address\\\":\\\"86.59.21.38:80\\\",\\\"target_name\\\":\\\"tor26\\\",\\\"target_protocol\\\":\\\"dir_port\\\",\\\"tcp_connect\\\":[{\\\"conn_id\\\":28,\\\"dial_id\\\":108,\\\"ip\\\":\\\"86.59.21.38\\\",\\\"port\\\":80,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":39.519547183,\\\"transaction_id\\\":8}],\\\"tls_handshakes\\\":null},\\\"99e9adc8bba0d60982dbc655b5e8735d88ad788905c3713a39eff3224b617eeb\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"network_events\\\":[{\\\"address\\\":\\\"38.229.1.78:80\\\",\\\"dial_id\\\":95,\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":62.503175221}],\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":\\\"generic_timeout_error\\\"}},\\\"target_address\\\":\\\"38.229.1.78:80\\\",\\\"target_protocol\\\":\\\"obfs4\\\",\\\"tcp_connect\\\":[{\\\"dial_id\\\":95,\\\"ip\\\":\\\"38.229.1.78\\\",\\\"port\\\":80,\\\"status\\\":{\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"success\\\":false},\\\"t\\\":62.503175221}],\\\"tls_handshakes\\\":null},\\\"9d735c6e70512123ab2c2fe966446b2345b352c512e9fb359f4b1673236e4d4a\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"network_events\\\":[{\\\"address\\\":\\\"38.229.33.83:80\\\",\\\"dial_id\\\":85,\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":31.183189395}],\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":\\\"generic_timeout_error\\\"}},\\\"target_address\\\":\\\"38.229.33.83:80\\\",\\\"target_protocol\\\":\\\"obfs4\\\",\\\"tcp_connect\\\":[{\\\"dial_id\\\":85,\\\"ip\\\":\\\"38.229.33.83\\\",\\\"port\\\":80,\\\"status\\\":{\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"success\\\":false},\\\"t\\\":31.183189395}],\\\"tls_handshakes\\\":null},\\\"b7c0e3f183ad85a6686ec68344765cec57906b215e7b82a98a9ca013cb980efa\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"handshake: ntor AUTH mismatch: Derived: 4a65312d6f032da838c5eadbf9791cb90f787a2422ff002f8acee0b8892b7b1d Received:6b76980105cb5e2f1e52e1d6d082d68db00038a763bb43367725ec9d5d6e6e2d.\\\",\\\"network_events\\\":[{\\\"address\\\":\\\"193.11.166.194:27025\\\",\\\"conn_id\\\":22,\\\"dial_id\\\":102,\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":34.942288559},{\\\"conn_id\\\":22,\\\"failure\\\":null,\\\"num_bytes\\\":7547,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":34.944114869},{\\\"conn_id\\\":22,\\\"failure\\\":null,\\\"num_bytes\\\":2920,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":35.118773845},{\\\"conn_id\\\":22,\\\"failure\\\":null,\\\"num_bytes\\\":1983,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":35.118908356}],\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":null}},\\\"target_address\\\":\\\"193.11.166.194:27025\\\",\\\"target_protocol\\\":\\\"obfs4\\\",\\\"tcp_connect\\\":[{\\\"conn_id\\\":22,\\\"dial_id\\\":102,\\\"ip\\\":\\\"193.11.166.194\\\",\\\"port\\\":27025,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":34.942288559}],\\\"tls_handshakes\\\":null},\\\"b8de51da541ced804840b1d8fd24d5ff1cfdf07eae673dae38c2bc2cce594ddd\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"handshake: ntor AUTH mismatch: Derived: c71201053c78843be1fd117ed6b182ca5b0358f799dcbffccfc390b562fe450f Received:d16503d65745020664af39b419b3cf9c5a59e89e58afc5944799fe2440dc5231.\\\",\\\"network_events\\\":[{\\\"address\\\":\\\"85.31.186.26:443\\\",\\\"conn_id\\\":27,\\\"dial_id\\\":107,\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":39.186622369},{\\\"conn_id\\\":27,\\\"failure\\\":null,\\\"num_bytes\\\":6975,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":39.187666962},{\\\"conn_id\\\":27,\\\"failure\\\":null,\\\"num_bytes\\\":4942,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":39.363161501}],\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":null}},\\\"target_address\\\":\\\"85.31.186.26:443\\\",\\\"target_protocol\\\":\\\"obfs4\\\",\\\"tcp_connect\\\":[{\\\"conn_id\\\":27,\\\"dial_id\\\":107,\\\"ip\\\":\\\"85.31.186.26\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":39.186622369}],\\\"tls_handshakes\\\":null},\\\"bc7bc5fb57052ee5252e807443b9ab67307dbdb5ce79187c4360182a300dd0f8\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"network_events\\\":[{\\\"address\\\":\\\"144.217.20.138:80\\\",\\\"dial_id\\\":86,\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":31.22733846}],\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":\\\"generic_timeout_error\\\"}},\\\"target_address\\\":\\\"144.217.20.138:80\\\",\\\"target_protocol\\\":\\\"obfs4\\\",\\\"tcp_connect\\\":[{\\\"dial_id\\\":86,\\\"ip\\\":\\\"144.217.20.138\\\",\\\"port\\\":80,\\\"status\\\":{\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"success\\\":false},\\\"t\\\":31.22733846}],\\\"tls_handshakes\\\":null},\\\"d2d6e34abeda851f7cd37138ffafcce992b2ccdb0f263eb90ab75d7adbd5eeba\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"handshake: ntor AUTH mismatch: Derived: 113ee5611d18b2cb3959732dc558e81560887d3d6148774f9043e27b32f4c309 Received:72027a609ecba12d1cbdc75ff5a5cdf0eca9447dc4441117560979c3b2c5d88b.\\\",\\\"network_events\\\":[{\\\"address\\\":\\\"85.31.186.98:443\\\",\\\"conn_id\\\":21,\\\"dial_id\\\":101,\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":34.441830938},{\\\"conn_id\\\":21,\\\"failure\\\":null,\\\"num_bytes\\\":5876,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":34.442546377},{\\\"conn_id\\\":21,\\\"failure\\\":null,\\\"num_bytes\\\":1448,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":34.804429131},{\\\"conn_id\\\":21,\\\"failure\\\":null,\\\"num_bytes\\\":2242,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":34.805499076}],\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":null}},\\\"target_address\\\":\\\"85.31.186.98:443\\\",\\\"target_protocol\\\":\\\"obfs4\\\",\\\"tcp_connect\\\":[{\\\"conn_id\\\":21,\\\"dial_id\\\":101,\\\"ip\\\":\\\"85.31.186.98\\\",\\\"port\\\":443,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":34.441830938}],\\\"tls_handshakes\\\":null},\\\"f855ba38d517d8589c16e1333ac23c6e516532cf036ab6f47b15030b40a3b6a6\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"unknown_failure: dial tcp [scrubbed]: connect: no route to host\\\",\\\"network_events\\\":[{\\\"address\\\":\\\"[2a0c:4d80:42:702::1]:27015\\\",\\\"dial_id\\\":103,\\\"failure\\\":\\\"unknown_failure: dial tcp [scrubbed]: connect: no route to host\\\",\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":38.169520087}],\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":\\\"unknown_failure: dial tcp [scrubbed]: connect: no route to host\\\"}},\\\"target_address\\\":\\\"[2a0c:4d80:42:702::1]:27015\\\",\\\"target_protocol\\\":\\\"obfs4\\\",\\\"tcp_connect\\\":[{\\\"dial_id\\\":103,\\\"ip\\\":\\\"2a0c:4d80:42:702::1\\\",\\\"port\\\":27015,\\\"status\\\":{\\\"failure\\\":\\\"unknown_failure: dial tcp [scrubbed]: connect: no route to host\\\",\\\"success\\\":false},\\\"t\\\":38.169520087}],\\\"tls_handshakes\\\":null},\\\"fa69b2ee7a7c8975af2452ecd566f67a6459d397a4cefc30be86a670675cdc23\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"handshake: ntor AUTH mismatch: Derived: 2f53d2495cc32f157ed7b984daed3b48f52bdefcbf1818e27182385deb6e8407 Received:937b775d19aadf05ef361628b1e90ff4473a5d0165757665fe032c3e3085adf3.\\\",\\\"network_events\\\":[{\\\"address\\\":\\\"51.222.13.177:80\\\",\\\"conn_id\\\":1,\\\"dial_id\\\":82,\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.510676578},{\\\"conn_id\\\":1,\\\"failure\\\":null,\\\"num_bytes\\\":7019,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.511579955},{\\\"conn_id\\\":1,\\\"failure\\\":null,\\\"num_bytes\\\":5381,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.860415386}],\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":null}},\\\"target_address\\\":\\\"51.222.13.177:80\\\",\\\"target_protocol\\\":\\\"obfs4\\\",\\\"tcp_connect\\\":[{\\\"conn_id\\\":1,\\\"dial_id\\\":82,\\\"ip\\\":\\\"51.222.13.177\\\",\\\"port\\\":80,\\\"status\\\":{\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.510676578}],\\\"tls_handshakes\\\":null}}},\\\"test_name\\\":\\\"tor\\\",\\\"test_runtime\\\":62.503275441,\\\"test_start_time\\\":\\\"2022-11-10 11:23:01\\\",\\\"test_version\\\":\\\"0.3.0\\\"}\\n\",\"category_code\":\"\",\"verification_status\":\"unverified\"}" +} \ No newline at end of file diff --git a/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20230121235805.670038_RU_tor_e8fd37f3f4f1085f_full-true.json b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20230121235805.670038_RU_tor_e8fd37f3f4f1085f_full-true.json new file mode 100644 index 000000000..25d4ae60d --- /dev/null +++ b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20230121235805.670038_RU_tor_e8fd37f3f4f1085f_full-true.json @@ -0,0 +1,5 @@ +{ + "status": 200, + "contentType": "application/json", + "body": "{\"input\":\"\",\"measurement_start_time\":\"2023-01-21T23:58:05Z\",\"measurement_uid\":\"20230121235805.670038_RU_tor_e8fd37f3f4f1085f\",\"report_id\":\"20230121T235418Z_tor_RU_197467_n1_EX8tlWHRYg0XtNjv\",\"test_name\":\"tor\",\"test_start_time\":\"2023-01-21T23:54:17Z\",\"probe_asn\":197467,\"probe_cc\":\"RU\",\"scores\":\"{\\\"blocking_general\\\":0.8857142857142857,\\\"blocking_global\\\":0.0,\\\"blocking_country\\\":0.0,\\\"blocking_isp\\\":0.0,\\\"blocking_local\\\":0.0,\\\"extra\\\":{\\\"test_runtime\\\":227.085474861}}\",\"anomaly\":true,\"confirmed\":false,\"failure\":false,\"raw_measurement\":\"{\\\"annotations\\\":{\\\"architecture\\\":\\\"arm64\\\",\\\"engine_name\\\":\\\"ooniprobe-engine\\\",\\\"engine_version\\\":\\\"3.16.7\\\",\\\"flavor\\\":\\\"stableFull\\\",\\\"network_type\\\":\\\"wifi\\\",\\\"platform\\\":\\\"android\\\"},\\\"data_format_version\\\":\\\"0.2.0\\\",\\\"extensions\\\":{\\\"dnst\\\":0,\\\"httpt\\\":0,\\\"netevents\\\":0,\\\"tcpconnect\\\":0,\\\"tlshandshake\\\":0},\\\"input\\\":null,\\\"measurement_start_time\\\":\\\"2023-01-21 23:58:05\\\",\\\"probe_asn\\\":\\\"AS197467\\\",\\\"probe_cc\\\":\\\"RU\\\",\\\"probe_ip\\\":\\\"127.0.0.1\\\",\\\"probe_network_name\\\":\\\"Samara National Research University\\\",\\\"report_id\\\":\\\"20230121T235418Z_tor_RU_197467_n1_EX8tlWHRYg0XtNjv\\\",\\\"resolver_asn\\\":\\\"AS197467\\\",\\\"resolver_ip\\\":\\\"91.222.129.248\\\",\\\"resolver_network_name\\\":\\\"Samara National Research University\\\",\\\"software_name\\\":\\\"ooniprobe-android\\\",\\\"software_version\\\":\\\"3.7.3\\\",\\\"test_keys\\\":{\\\"dir_port_total\\\":10,\\\"dir_port_accessible\\\":2,\\\"obfs4_total\\\":15,\\\"obfs4_accessible\\\":1,\\\"or_port_dirauth_total\\\":10,\\\"or_port_dirauth_accessible\\\":1,\\\"or_port_total\\\":0,\\\"or_port_accessible\\\":0,\\\"targets\\\":{\\\"128.31.0.39:9101\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":\\\"generic_timeout_error\\\"}},\\\"target_address\\\":\\\"128.31.0.39:9101\\\",\\\"target_name\\\":\\\"moria1\\\",\\\"target_protocol\\\":\\\"or_port_dirauth\\\",\\\"tcp_connect\\\":[{\\\"ip\\\":\\\"128.31.0.39\\\",\\\"port\\\":9101,\\\"t\\\":45.968664409,\\\"status\\\":{\\\"blocked\\\":true,\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"success\\\":false},\\\"started\\\":30.951955248,\\\"oddity\\\":\\\"tcp.connect.timeout\\\"}],\\\"tls_handshakes\\\":null},\\\"128.31.0.39:9131\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":[{\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"request\\\":{\\\"method\\\":\\\"GET\\\",\\\"url\\\":\\\"http:\\\\/\\\\/128.31.0.39:9131\\\\/tor\\\\/status-vote\\\\/current\\\\/consensus.z\\\",\\\"headers\\\":{\\\"accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"accept-language\\\":\\\"en-US,en;q=0.9\\\",\\\"user-agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/104.0.0.0 Safari\\\\/537.36\\\"}},\\\"response\\\":{\\\"code\\\":0,\\\"headers\\\":{},\\\"body\\\":null,\\\"body_is_truncated\\\":false,\\\"x_body_length\\\":0,\\\"x_body_is_utf8\\\":false},\\\"t\\\":90.990275746,\\\"started\\\":75.989144554,\\\"oddity\\\":\\\"\\\"}],\\\"summary\\\":{},\\\"target_address\\\":\\\"128.31.0.39:9131\\\",\\\"target_name\\\":\\\"moria1\\\",\\\"target_protocol\\\":\\\"dir_port\\\",\\\"tcp_connect\\\":null,\\\"tls_handshakes\\\":null},\\\"131.188.40.189:443\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":\\\"generic_timeout_error\\\"}},\\\"target_address\\\":\\\"131.188.40.189:443\\\",\\\"target_name\\\":\\\"gabelmoo\\\",\\\"target_protocol\\\":\\\"or_port_dirauth\\\",\\\"tcp_connect\\\":[{\\\"ip\\\":\\\"131.188.40.189\\\",\\\"port\\\":443,\\\"t\\\":121.05802037,\\\"status\\\":{\\\"blocked\\\":true,\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"success\\\":false},\\\"started\\\":106.04293772,\\\"oddity\\\":\\\"tcp.connect.timeout\\\"}],\\\"tls_handshakes\\\":null},\\\"131.188.40.189:80\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":[{\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"request\\\":{\\\"method\\\":\\\"GET\\\",\\\"url\\\":\\\"http:\\\\/\\\\/131.188.40.189:80\\\\/tor\\\\/status-vote\\\\/current\\\\/consensus.z\\\",\\\"headers\\\":{\\\"accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"accept-language\\\":\\\"en-US,en;q=0.9\\\",\\\"user-agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/104.0.0.0 Safari\\\\/537.36\\\"}},\\\"response\\\":{\\\"code\\\":0,\\\"headers\\\":{},\\\"body\\\":null,\\\"body_is_truncated\\\":false,\\\"x_body_length\\\":0,\\\"x_body_is_utf8\\\":false},\\\"t\\\":75.988756898,\\\"started\\\":60.979151591,\\\"oddity\\\":\\\"\\\"}],\\\"summary\\\":{},\\\"target_address\\\":\\\"131.188.40.189:80\\\",\\\"target_name\\\":\\\"gabelmoo\\\",\\\"target_protocol\\\":\\\"dir_port\\\",\\\"tcp_connect\\\":null,\\\"tls_handshakes\\\":null},\\\"154.35.175.225:443\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":\\\"generic_timeout_error\\\"}},\\\"target_address\\\":\\\"154.35.175.225:443\\\",\\\"target_name\\\":\\\"Faravahar\\\",\\\"target_protocol\\\":\\\"or_port_dirauth\\\",\\\"tcp_connect\\\":[{\\\"ip\\\":\\\"154.35.175.225\\\",\\\"port\\\":443,\\\"t\\\":166.091974259,\\\"status\\\":{\\\"blocked\\\":true,\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"success\\\":false},\\\"started\\\":151.088433588,\\\"oddity\\\":\\\"tcp.connect.timeout\\\"}],\\\"tls_handshakes\\\":null},\\\"154.35.175.225:80\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":[{\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"request\\\":{\\\"method\\\":\\\"GET\\\",\\\"url\\\":\\\"http:\\\\/\\\\/154.35.175.225:80\\\\/tor\\\\/status-vote\\\\/current\\\\/consensus.z\\\",\\\"headers\\\":{\\\"accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"accept-language\\\":\\\"en-US,en;q=0.9\\\",\\\"user-agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/104.0.0.0 Safari\\\\/537.36\\\"}},\\\"response\\\":{\\\"code\\\":0,\\\"headers\\\":{},\\\"body\\\":null,\\\"body_is_truncated\\\":false,\\\"x_body_length\\\":0,\\\"x_body_is_utf8\\\":false},\\\"t\\\":15.930233588,\\\"started\\\":0.929241927,\\\"oddity\\\":\\\"\\\"}],\\\"summary\\\":{},\\\"target_address\\\":\\\"154.35.175.225:80\\\",\\\"target_name\\\":\\\"Faravahar\\\",\\\"target_protocol\\\":\\\"dir_port\\\",\\\"tcp_connect\\\":null,\\\"tls_handshakes\\\":null},\\\"171.25.193.9:443\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":[{\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"request\\\":{\\\"method\\\":\\\"GET\\\",\\\"url\\\":\\\"http:\\\\/\\\\/171.25.193.9:443\\\\/tor\\\\/status-vote\\\\/current\\\\/consensus.z\\\",\\\"headers\\\":{\\\"accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"accept-language\\\":\\\"en-US,en;q=0.9\\\",\\\"user-agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/104.0.0.0 Safari\\\\/537.36\\\"}},\\\"response\\\":{\\\"code\\\":0,\\\"headers\\\":{},\\\"body\\\":null,\\\"body_is_truncated\\\":false,\\\"x_body_length\\\":0,\\\"x_body_is_utf8\\\":false},\\\"t\\\":196.112939925,\\\"started\\\":181.097375712,\\\"oddity\\\":\\\"\\\"}],\\\"summary\\\":{},\\\"target_address\\\":\\\"171.25.193.9:443\\\",\\\"target_name\\\":\\\"maatuska\\\",\\\"target_protocol\\\":\\\"dir_port\\\",\\\"tcp_connect\\\":null,\\\"tls_handshakes\\\":null},\\\"171.25.193.9:80\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":\\\"generic_timeout_error\\\"}},\\\"target_address\\\":\\\"171.25.193.9:80\\\",\\\"target_name\\\":\\\"maatuska\\\",\\\"target_protocol\\\":\\\"or_port_dirauth\\\",\\\"tcp_connect\\\":[{\\\"ip\\\":\\\"171.25.193.9\\\",\\\"port\\\":80,\\\"t\\\":121.451093443,\\\"status\\\":{\\\"blocked\\\":true,\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"success\\\":false},\\\"started\\\":106.449377511,\\\"oddity\\\":\\\"tcp.connect.timeout\\\"}],\\\"tls_handshakes\\\":null},\\\"193.23.244.244:443\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":null,\\\"network_events\\\":[{\\\"address\\\":\\\"193.23.244.244:443\\\",\\\"failure\\\":null,\\\"num_bytes\\\":239,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.881342864,\\\"started\\\":0.88121552,\\\"oddity\\\":\\\"\\\"},{\\\"address\\\":\\\"193.23.244.244:443\\\",\\\"failure\\\":null,\\\"num_bytes\\\":93,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.938832656,\\\"started\\\":0.881367552,\\\"oddity\\\":\\\"\\\"},{\\\"address\\\":\\\"193.23.244.244:443\\\",\\\"failure\\\":null,\\\"num_bytes\\\":6,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.939020468,\\\"started\\\":0.938902447,\\\"oddity\\\":\\\"\\\"},{\\\"address\\\":\\\"193.23.244.244:443\\\",\\\"failure\\\":null,\\\"num_bytes\\\":272,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.939307864,\\\"started\\\":0.939206249,\\\"oddity\\\":\\\"\\\"},{\\\"address\\\":\\\"193.23.244.244:443\\\",\\\"failure\\\":null,\\\"num_bytes\\\":6,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.995848177,\\\"started\\\":0.939318854,\\\"oddity\\\":\\\"\\\"},{\\\"address\\\":\\\"193.23.244.244:443\\\",\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":1.090553229,\\\"started\\\":0.995895885,\\\"oddity\\\":\\\"\\\"},{\\\"address\\\":\\\"193.23.244.244:443\\\",\\\"failure\\\":null,\\\"num_bytes\\\":654,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":1.091244895,\\\"started\\\":1.091223072,\\\"oddity\\\":\\\"\\\"},{\\\"address\\\":\\\"193.23.244.244:443\\\",\\\"failure\\\":null,\\\"num_bytes\\\":74,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":1.092138437,\\\"started\\\":1.091981718,\\\"oddity\\\":\\\"\\\"},{\\\"address\\\":\\\"193.23.244.244:443\\\",\\\"failure\\\":null,\\\"num_bytes\\\":24,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":1.092486041,\\\"started\\\":1.092373124,\\\"oddity\\\":\\\"\\\"}],\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":null}},\\\"target_address\\\":\\\"193.23.244.244:443\\\",\\\"target_name\\\":\\\"dannenberg\\\",\\\"target_protocol\\\":\\\"or_port_dirauth\\\",\\\"tcp_connect\\\":[{\\\"ip\\\":\\\"193.23.244.244\\\",\\\"port\\\":443,\\\"t\\\":0.880302343,\\\"status\\\":{\\\"blocked\\\":false,\\\"failure\\\":null,\\\"success\\\":true},\\\"started\\\":0.822449947,\\\"oddity\\\":\\\"\\\"}],\\\"tls_handshakes\\\":[{\\\"cipher_suite\\\":\\\"TLS_AES_256_GCM_SHA384\\\",\\\"failure\\\":null,\\\"negotiated_proto\\\":\\\"\\\",\\\"tls_version\\\":\\\"TLSv1.3\\\",\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIICSDCCAbGgAwIBAgIJAIpYEwVGxvtoMA0GCSqGSIb3DQEBCwUAMCMxITAfBgNVBAMMGHd3dy5ocGQ2N2ptcHlqZnU2eDJqLmNvbTAeFw0yMjA5MDgwMDAwMDBaFw0yMzAzMjMwMDAwMDBaMCUxIzAhBgNVBAMMGnd3dy50c255eWx3d3FuNjJhNnU0dTMubmV0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2FhnhXB6vcGx3A10m0ZtJ8p+YyNOS0H9A3jgl53j34jWW3nvRIYPWs2HjVcKZMuhQ4h+XLAIx3bsLZuXH3ArShCBhgVfR7t91VDI4d2fKyMpPl66TnkpD5rZyfxJtg4rayKYWCWwZtuJkA4d\\\\/wcXUGhV5c6StDoY9edEm2at15\\\\/xv6yahyJ\\\\/e8dOgOLwKTlc37VaSj8nAvXeNYpU8Gp+VTUiPjCQyouAhJnXYdh5E6e\\\\/i+\\\\/QuR6llrepNwcCNs2B+xM\\\\/cxBzAF3SWt7YAkGCX7hwEFWjarfHOz4qPwQ8s8+BhDQuQ+XBHVFUZouXuklMdzrA9DCTz2ykfnMSNTXscwIDAQABMA0GCSqGSIb3DQEBCwUAA4GBAIzwJ3FcSdILescAEqUXEmpoIkZtcLHU7j3D6HS53OLOiecqSoogDcKy3Um+1rO2q9xT5rAxuqzYAJTQS\\\\/YN66GfuMO3aecEThWjEY5v7XE5FOJkbYmlI0Nsoi3JVPgthI67BeIAuSdFGPa0OBRvIwLpHxISoMOZwzVNqqt9geBO\\\",\\\"format\\\":\\\"base64\\\"}],\\\"t\\\":1.092264843,\\\"address\\\":\\\"193.23.244.244:443\\\",\\\"server_name\\\":\\\"\\\",\\\"alpn\\\":null,\\\"no_tls_verify\\\":true,\\\"oddity\\\":\\\"\\\",\\\"proto\\\":\\\"tcp\\\",\\\"started\\\":0.880445729}]},\\\"193.23.244.244:80\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":null,\\\"network_events\\\":[{\\\"address\\\":\\\"193.23.244.244:80\\\",\\\"failure\\\":null,\\\"num_bytes\\\":309,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.870481562,\\\"started\\\":0.870338958,\\\"oddity\\\":\\\"\\\"},{\\\"address\\\":\\\"193.23.244.244:80\\\",\\\"failure\\\":null,\\\"num_bytes\\\":309,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.870488906,\\\"started\\\":0.870337291,\\\"oddity\\\":\\\"\\\"},{\\\"address\\\":\\\"193.23.244.244:80\\\",\\\"failure\\\":null,\\\"num_bytes\\\":1288,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.928593177,\\\"started\\\":0.870175416,\\\"oddity\\\":\\\"\\\"},{\\\"address\\\":\\\"193.23.244.244:80\\\",\\\"failure\\\":null,\\\"num_bytes\\\":1288,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.928614687,\\\"started\\\":0.870174114,\\\"oddity\\\":\\\"\\\"}],\\\"queries\\\":null,\\\"requests\\\":[{\\\"failure\\\":null,\\\"request\\\":{\\\"method\\\":\\\"GET\\\",\\\"url\\\":\\\"http:\\\\/\\\\/193.23.244.244:80\\\\/tor\\\\/status-vote\\\\/current\\\\/consensus.z\\\",\\\"headers\\\":{\\\"accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"accept-language\\\":\\\"en-US,en;q=0.9\\\",\\\"user-agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/104.0.0.0 Safari\\\\/537.36\\\"}},\\\"response\\\":{\\\"code\\\":200,\\\"headers\\\":{\\\"content-encoding\\\":\\\"deflate\\\",\\\"content-type\\\":\\\"text\\\\/plain\\\",\\\"date\\\":\\\"Sat, 21 Jan 2023 23:54:18 GMT\\\",\\\"expires\\\":\\\"Sun, 22 Jan 2023 00:00:00 GMT\\\",\\\"vary\\\":\\\"X-Or-Diff-From-Consensus\\\",\\\"x-your-address-is\\\":\\\"[scrubbed]\\\"},\\\"body\\\":{\\\"data\\\":\\\"eNrsvVdz40jWLfo+vwLv7BKRCc84c+LCkaD3BrwxMQEPEI6EIQj++psJqapLKLFd9XyfpDvVXSyKTsRGYuc2a6+VOEWVZuGXvDCKMv9ydbI8SBOC+sc1LZyXRwkrTXInycv8H9\\\\/ufYmdwk9tgoL\\\\/uBpRYH8x3MLJCEhC6gsJvkBAQKpHkuj\\\\/f7iZk\\\\/tfyqQIol+fh0TzJH7++f0\\\\/Pg+\\\\/Pp8WQeJ9sZ3IqAmKJPHff1hR4CTF1++bE+QT\\\\/cQ8sb88\\\\/8u9\\\\/Mu\\\\/\\\\/Cu8\\\\/AvIr3fA1zvw6x366x3m653nT+NePo17+TTu66dwXz+F+\\\\/op6A71j9zJ0Ld6j98sTNIq+eJGhg==\\\",\\\"format\\\":\\\"base64\\\"},\\\"body_is_truncated\\\":true,\\\"x_body_length\\\":256,\\\"x_body_is_utf8\\\":false},\\\"t\\\":0.928812343,\\\"started\\\":0.808926822,\\\"oddity\\\":\\\"\\\"}],\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":null}},\\\"target_address\\\":\\\"193.23.244.244:80\\\",\\\"target_name\\\":\\\"dannenberg\\\",\\\"target_protocol\\\":\\\"dir_port\\\",\\\"tcp_connect\\\":[{\\\"ip\\\":\\\"193.23.244.244\\\",\\\"port\\\":80,\\\"t\\\":0.869993072,\\\"status\\\":{\\\"blocked\\\":false,\\\"failure\\\":null,\\\"success\\\":true},\\\"started\\\":0.809342916,\\\"oddity\\\":\\\"\\\"},{\\\"ip\\\":\\\"193.23.244.244\\\",\\\"port\\\":80,\\\"t\\\":0.870009635,\\\"status\\\":{\\\"blocked\\\":false,\\\"failure\\\":null,\\\"success\\\":true},\\\"started\\\":0.809339635,\\\"oddity\\\":\\\"\\\"}],\\\"tls_handshakes\\\":null},\\\"199.58.81.140:443\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":\\\"generic_timeout_error\\\"}},\\\"target_address\\\":\\\"199.58.81.140:443\\\",\\\"target_name\\\":\\\"longclaw\\\",\\\"target_protocol\\\":\\\"or_port_dirauth\\\",\\\"tcp_connect\\\":[{\\\"ip\\\":\\\"199.58.81.140\\\",\\\"port\\\":443,\\\"t\\\":212.081326429,\\\"status\\\":{\\\"blocked\\\":true,\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"success\\\":false},\\\"started\\\":197.079977008,\\\"oddity\\\":\\\"tcp.connect.timeout\\\"}],\\\"tls_handshakes\\\":null},\\\"199.58.81.140:80\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":null,\\\"network_events\\\":[{\\\"address\\\":\\\"199.58.81.140:80\\\",\\\"failure\\\":null,\\\"num_bytes\\\":308,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":61.268526747,\\\"started\\\":61.268366018,\\\"oddity\\\":\\\"\\\"},{\\\"address\\\":\\\"199.58.81.140:80\\\",\\\"failure\\\":null,\\\"num_bytes\\\":308,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":61.268534299,\\\"started\\\":61.268364299,\\\"oddity\\\":\\\"\\\"},{\\\"address\\\":\\\"199.58.81.140:80\\\",\\\"failure\\\":null,\\\"num_bytes\\\":4096,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":61.413887997,\\\"started\\\":61.268222424,\\\"oddity\\\":\\\"\\\"},{\\\"address\\\":\\\"199.58.81.140:80\\\",\\\"failure\\\":null,\\\"num_bytes\\\":4096,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":61.413924299,\\\"started\\\":61.268220914,\\\"oddity\\\":\\\"\\\"}],\\\"queries\\\":null,\\\"requests\\\":[{\\\"failure\\\":null,\\\"request\\\":{\\\"method\\\":\\\"GET\\\",\\\"url\\\":\\\"http:\\\\/\\\\/199.58.81.140:80\\\\/tor\\\\/status-vote\\\\/current\\\\/consensus.z\\\",\\\"headers\\\":{\\\"accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"accept-language\\\":\\\"en-US,en;q=0.9\\\",\\\"user-agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/104.0.0.0 Safari\\\\/537.36\\\"}},\\\"response\\\":{\\\"code\\\":200,\\\"headers\\\":{\\\"content-encoding\\\":\\\"deflate\\\",\\\"content-type\\\":\\\"text\\\\/plain\\\",\\\"date\\\":\\\"Sat, 21 Jan 2023 23:55:19 GMT\\\",\\\"expires\\\":\\\"Sun, 22 Jan 2023 00:00:00 GMT\\\",\\\"vary\\\":\\\"X-Or-Diff-From-Consensus\\\",\\\"x-your-address-is\\\":\\\"[scrubbed]\\\"},\\\"body\\\":{\\\"data\\\":\\\"eNrsvVdz40jWLfo+vwLv7BKRCc84c+LCkaD3BrwxMQEPEI6EIQj++psJqapLKLFd9XyfpDvVXSyKTsRGYuc2a6+VOEWVZuGXvDCKMv9ydbI8SBOC+sc1LZyXRwkrTXInycv8H9\\\\/ufYmdwk9tgoL\\\\/uBpRYH8x3MLJCEhC6gsJvkBAQKpHkuj\\\\/f7iZk\\\\/tfyqQIol+fh0TzJH7++f0\\\\/Pg+\\\\/Pp8WQeJ9sZ3IqAmKJPHff1hR4CTF1++bE+QT\\\\/cQ8sb88\\\\/8u9\\\\/Mu\\\\/\\\\/Cu8\\\\/AvIr3fA1zvw6x366x3m653nT+NePo17+TTu66dwXz+F+\\\\/op6A71j9zJ0Ld6j98sTNIq+eJGhg==\\\",\\\"format\\\":\\\"base64\\\"},\\\"body_is_truncated\\\":true,\\\"x_body_length\\\":256,\\\"x_body_is_utf8\\\":false},\\\"t\\\":61.414193466,\\\"started\\\":61.121576174,\\\"oddity\\\":\\\"\\\"}],\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":null}},\\\"target_address\\\":\\\"199.58.81.140:80\\\",\\\"target_name\\\":\\\"longclaw\\\",\\\"target_protocol\\\":\\\"dir_port\\\",\\\"tcp_connect\\\":[{\\\"ip\\\":\\\"199.58.81.140\\\",\\\"port\\\":80,\\\"t\\\":61.268048935,\\\"status\\\":{\\\"blocked\\\":false,\\\"failure\\\":null,\\\"success\\\":true},\\\"started\\\":61.121733362,\\\"oddity\\\":\\\"\\\"},{\\\"ip\\\":\\\"199.58.81.140\\\",\\\"port\\\":80,\\\"t\\\":61.268061643,\\\"status\\\":{\\\"blocked\\\":false,\\\"failure\\\":null,\\\"success\\\":true},\\\"started\\\":61.121731643,\\\"oddity\\\":\\\"\\\"}],\\\"tls_handshakes\\\":null},\\\"204.13.164.118:443\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":\\\"generic_timeout_error\\\"}},\\\"target_address\\\":\\\"204.13.164.118:443\\\",\\\"target_name\\\":\\\"bastet\\\",\\\"target_protocol\\\":\\\"or_port_dirauth\\\",\\\"tcp_connect\\\":[{\\\"ip\\\":\\\"204.13.164.118\\\",\\\"port\\\":443,\\\"t\\\":106.021845845,\\\"status\\\":{\\\"blocked\\\":true,\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"success\\\":false},\\\"started\\\":91.005775278,\\\"oddity\\\":\\\"tcp.connect.timeout\\\"}],\\\"tls_handshakes\\\":null},\\\"204.13.164.118:80\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":[{\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"request\\\":{\\\"method\\\":\\\"GET\\\",\\\"url\\\":\\\"http:\\\\/\\\\/204.13.164.118:80\\\\/tor\\\\/status-vote\\\\/current\\\\/consensus.z\\\",\\\"headers\\\":{\\\"accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"accept-language\\\":\\\"en-US,en;q=0.9\\\",\\\"user-agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/104.0.0.0 Safari\\\\/537.36\\\"}},\\\"response\\\":{\\\"code\\\":0,\\\"headers\\\":{},\\\"body\\\":null,\\\"body_is_truncated\\\":false,\\\"x_body_length\\\":0,\\\"x_body_is_utf8\\\":false},\\\"t\\\":151.060020828,\\\"started\\\":136.059240208,\\\"oddity\\\":\\\"\\\"}],\\\"summary\\\":{},\\\"target_address\\\":\\\"204.13.164.118:80\\\",\\\"target_name\\\":\\\"bastet\\\",\\\"target_protocol\\\":\\\"dir_port\\\",\\\"tcp_connect\\\":null,\\\"tls_handshakes\\\":null},\\\"2d7292b5163fb7de5b24cd04032c93a2d4c454431de3a00b5a6d4a3309529e49\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":\\\"generic_timeout_error\\\"}},\\\"target_address\\\":\\\"193.11.166.194:27020\\\",\\\"target_protocol\\\":\\\"obfs4\\\",\\\"tcp_connect\\\":[{\\\"ip\\\":\\\"193.11.166.194\\\",\\\"port\\\":27020,\\\"t\\\":76.4163032,\\\"status\\\":{\\\"blocked\\\":true,\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"success\\\":false},\\\"started\\\":61.414720133,\\\"oddity\\\":\\\"tcp.connect.timeout\\\"}],\\\"tls_handshakes\\\":null},\\\"3fa772a44e07856b4c70e958b2f6dc8a29450a823509d5dbbf8b884e7fb5bb9d\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":\\\"generic_timeout_error\\\"}},\\\"target_address\\\":\\\"192.95.36.142:443\\\",\\\"target_protocol\\\":\\\"obfs4\\\",\\\"tcp_connect\\\":[{\\\"ip\\\":\\\"192.95.36.142\\\",\\\"port\\\":443,\\\"t\\\":136.45244026,\\\"status\\\":{\\\"blocked\\\":true,\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"success\\\":false},\\\"started\\\":121.451363547,\\\"oddity\\\":\\\"tcp.connect.timeout\\\"}],\\\"tls_handshakes\\\":null},\\\"45.66.33.45:443\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":\\\"generic_timeout_error\\\"}},\\\"target_address\\\":\\\"45.66.33.45:443\\\",\\\"target_name\\\":\\\"dizum\\\",\\\"target_protocol\\\":\\\"or_port_dirauth\\\",\\\"tcp_connect\\\":[{\\\"ip\\\":\\\"45.66.33.45\\\",\\\"port\\\":443,\\\"t\\\":91.432850746,\\\"status\\\":{\\\"blocked\\\":true,\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"success\\\":false},\\\"started\\\":76.431042627,\\\"oddity\\\":\\\"tcp.connect.timeout\\\"}],\\\"tls_handshakes\\\":null},\\\"45.66.33.45:80\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":[{\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"request\\\":{\\\"method\\\":\\\"GET\\\",\\\"url\\\":\\\"http:\\\\/\\\\/45.66.33.45:80\\\\/tor\\\\/status-vote\\\\/current\\\\/consensus.z\\\",\\\"headers\\\":{\\\"accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"accept-language\\\":\\\"en-US,en;q=0.9\\\",\\\"user-agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/104.0.0.0 Safari\\\\/537.36\\\"}},\\\"response\\\":{\\\"code\\\":0,\\\"headers\\\":{},\\\"body\\\":null,\\\"body_is_truncated\\\":false,\\\"x_body_length\\\":0,\\\"x_body_is_utf8\\\":false},\\\"t\\\":136.058775208,\\\"started\\\":121.058336725,\\\"oddity\\\":\\\"\\\"}],\\\"summary\\\":{},\\\"target_address\\\":\\\"45.66.33.45:80\\\",\\\"target_name\\\":\\\"dizum\\\",\\\"target_protocol\\\":\\\"dir_port\\\",\\\"tcp_connect\\\":null,\\\"tls_handshakes\\\":null},\\\"49116bf72d336bb8724fd3a06a5afa7bbd4e7baef35fbcdb9a98d13e702270ad\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":\\\"generic_timeout_error\\\"}},\\\"target_address\\\":\\\"146.57.248.225:22\\\",\\\"target_protocol\\\":\\\"obfs4\\\",\\\"tcp_connect\\\":[{\\\"ip\\\":\\\"146.57.248.225\\\",\\\"port\\\":22,\\\"t\\\":31.096364571,\\\"status\\\":{\\\"blocked\\\":true,\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"success\\\":false},\\\"started\\\":16.094264942,\\\"oddity\\\":\\\"tcp.connect.timeout\\\"}],\\\"tls_handshakes\\\":null},\\\"4a330634c5d678887f0f7c299490af43a6ac9fa944a6cc2140ab264c9ec124a0\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":\\\"generic_timeout_error\\\"}},\\\"target_address\\\":\\\"209.148.46.65:443\\\",\\\"target_protocol\\\":\\\"obfs4\\\",\\\"tcp_connect\\\":[{\\\"ip\\\":\\\"209.148.46.65\\\",\\\"port\\\":443,\\\"t\\\":211.128527576,\\\"status\\\":{\\\"blocked\\\":true,\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"success\\\":false},\\\"started\\\":196.113364769,\\\"oddity\\\":\\\"tcp.connect.timeout\\\"}],\\\"tls_handshakes\\\":null},\\\"548eebff71da6128321c3bc1c3ec12b5bfff277ef5cde32709a33e207b57f3e2\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":null,\\\"network_events\\\":[{\\\"address\\\":\\\"37.218.245.14:38224\\\",\\\"failure\\\":null,\\\"num_bytes\\\":279,\\\"operation\\\":\\\"write\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":181.548399566,\\\"started\\\":181.548244774,\\\"oddity\\\":\\\"\\\"},{\\\"address\\\":\\\"37.218.245.14:38224\\\",\\\"failure\\\":null,\\\"num_bytes\\\":5256,\\\"operation\\\":\\\"read\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":182.045975868,\\\"started\\\":181.548412639,\\\"oddity\\\":\\\"\\\"}],\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":null}},\\\"target_address\\\":\\\"37.218.245.14:38224\\\",\\\"target_protocol\\\":\\\"obfs4\\\",\\\"tcp_connect\\\":[{\\\"ip\\\":\\\"37.218.245.14\\\",\\\"port\\\":38224,\\\"t\\\":181.539927899,\\\"status\\\":{\\\"blocked\\\":false,\\\"failure\\\":null,\\\"success\\\":true},\\\"started\\\":181.458062743,\\\"oddity\\\":\\\"\\\"}],\\\"tls_handshakes\\\":null},\\\"5aeb9e43b43fc8a809b8d25aae968395a5ceea0e677caaf56e1c0a2ba002f5b5\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":\\\"generic_timeout_error\\\"}},\\\"target_address\\\":\\\"193.11.166.194:27015\\\",\\\"target_protocol\\\":\\\"obfs4\\\",\\\"tcp_connect\\\":[{\\\"ip\\\":\\\"193.11.166.194\\\",\\\"port\\\":27015,\\\"t\\\":106.434934647,\\\"status\\\":{\\\"blocked\\\":true,\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"success\\\":false},\\\"started\\\":91.433057777,\\\"oddity\\\":\\\"tcp.connect.timeout\\\"}],\\\"tls_handshakes\\\":null},\\\"66.111.2.131:9001\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":\\\"generic_timeout_error\\\"}},\\\"target_address\\\":\\\"66.111.2.131:9001\\\",\\\"target_name\\\":\\\"Serge\\\",\\\"target_protocol\\\":\\\"or_port_dirauth\\\",\\\"tcp_connect\\\":[{\\\"ip\\\":\\\"66.111.2.131\\\",\\\"port\\\":9001,\\\"t\\\":61.121316956,\\\"status\\\":{\\\"blocked\\\":true,\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"success\\\":false},\\\"started\\\":46.120726441,\\\"oddity\\\":\\\"tcp.connect.timeout\\\"}],\\\"tls_handshakes\\\":null},\\\"66.111.2.131:9030\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":[{\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"request\\\":{\\\"method\\\":\\\"GET\\\",\\\"url\\\":\\\"http:\\\\/\\\\/66.111.2.131:9030\\\\/tor\\\\/status-vote\\\\/current\\\\/consensus.z\\\",\\\"headers\\\":{\\\"accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"accept-language\\\":\\\"en-US,en;q=0.9\\\",\\\"user-agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/104.0.0.0 Safari\\\\/537.36\\\"}},\\\"response\\\":{\\\"code\\\":0,\\\"headers\\\":{},\\\"body\\\":null,\\\"body_is_truncated\\\":false,\\\"x_body_length\\\":0,\\\"x_body_is_utf8\\\":false},\\\"t\\\":151.454388067,\\\"started\\\":136.452967969,\\\"oddity\\\":\\\"\\\"}],\\\"summary\\\":{},\\\"target_address\\\":\\\"66.111.2.131:9030\\\",\\\"target_name\\\":\\\"Serge\\\",\\\"target_protocol\\\":\\\"dir_port\\\",\\\"tcp_connect\\\":null,\\\"tls_handshakes\\\":null},\\\"75fe96d641a078fee06529af376d7f8c92757596e48558d5d02baa1e10321d10\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":\\\"generic_timeout_error\\\"}},\\\"target_address\\\":\\\"45.145.95.6:27015\\\",\\\"target_protocol\\\":\\\"obfs4\\\",\\\"tcp_connect\\\":[{\\\"ip\\\":\\\"45.145.95.6\\\",\\\"port\\\":27015,\\\"t\\\":181.096695243,\\\"status\\\":{\\\"blocked\\\":true,\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"success\\\":false},\\\"started\\\":166.092286811,\\\"oddity\\\":\\\"tcp.connect.timeout\\\"}],\\\"tls_handshakes\\\":null},\\\"86.59.21.38:443\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":\\\"generic_timeout_error\\\"}},\\\"target_address\\\":\\\"86.59.21.38:443\\\",\\\"target_name\\\":\\\"tor26\\\",\\\"target_protocol\\\":\\\"or_port_dirauth\\\",\\\"tcp_connect\\\":[{\\\"ip\\\":\\\"86.59.21.38\\\",\\\"port\\\":443,\\\"t\\\":46.10534868,\\\"status\\\":{\\\"blocked\\\":true,\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"success\\\":false},\\\"started\\\":31.104630769,\\\"oddity\\\":\\\"tcp.connect.timeout\\\"}],\\\"tls_handshakes\\\":null},\\\"86.59.21.38:80\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":[{\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"request\\\":{\\\"method\\\":\\\"GET\\\",\\\"url\\\":\\\"http:\\\\/\\\\/86.59.21.38:80\\\\/tor\\\\/status-vote\\\\/current\\\\/consensus.z\\\",\\\"headers\\\":{\\\"accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"accept-language\\\":\\\"en-US,en;q=0.9\\\",\\\"user-agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/104.0.0.0 Safari\\\\/537.36\\\"}},\\\"response\\\":{\\\"code\\\":0,\\\"headers\\\":{},\\\"body\\\":null,\\\"body_is_truncated\\\":false,\\\"x_body_length\\\":0,\\\"x_body_is_utf8\\\":false},\\\"t\\\":181.457639931,\\\"started\\\":166.456530353,\\\"oddity\\\":\\\"\\\"}],\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":\\\"generic_timeout_error\\\"}},\\\"target_address\\\":\\\"86.59.21.38:80\\\",\\\"target_name\\\":\\\"tor26\\\",\\\"target_protocol\\\":\\\"dir_port\\\",\\\"tcp_connect\\\":[{\\\"ip\\\":\\\"86.59.21.38\\\",\\\"port\\\":80,\\\"t\\\":181.45754191,\\\"status\\\":{\\\"blocked\\\":true,\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"success\\\":false},\\\"started\\\":166.456731134,\\\"oddity\\\":\\\"tcp.connect.timeout\\\"},{\\\"ip\\\":\\\"86.59.21.38\\\",\\\"port\\\":80,\\\"t\\\":181.457568264,\\\"status\\\":{\\\"blocked\\\":true,\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"success\\\":false},\\\"started\\\":166.456729207,\\\"oddity\\\":\\\"tcp.connect.timeout\\\"}],\\\"tls_handshakes\\\":null},\\\"99e9adc8bba0d60982dbc655b5e8735d88ad788905c3713a39eff3224b617eeb\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":\\\"generic_timeout_error\\\"}},\\\"target_address\\\":\\\"38.229.1.78:80\\\",\\\"target_protocol\\\":\\\"obfs4\\\",\\\"tcp_connect\\\":[{\\\"ip\\\":\\\"38.229.1.78\\\",\\\"port\\\":80,\\\"t\\\":226.143591841,\\\"status\\\":{\\\"blocked\\\":true,\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"success\\\":false},\\\"started\\\":211.128945023,\\\"oddity\\\":\\\"tcp.connect.timeout\\\"}],\\\"tls_handshakes\\\":null},\\\"9d735c6e70512123ab2c2fe966446b2345b352c512e9fb359f4b1673236e4d4a\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":\\\"generic_timeout_error\\\"}},\\\"target_address\\\":\\\"38.229.33.83:80\\\",\\\"target_protocol\\\":\\\"obfs4\\\",\\\"tcp_connect\\\":[{\\\"ip\\\":\\\"38.229.33.83\\\",\\\"port\\\":80,\\\"t\\\":16.093942858,\\\"status\\\":{\\\"blocked\\\":true,\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"success\\\":false},\\\"started\\\":1.092826718,\\\"oddity\\\":\\\"tcp.connect.timeout\\\"}],\\\"tls_handshakes\\\":null},\\\"b7c0e3f183ad85a6686ec68344765cec57906b215e7b82a98a9ca013cb980efa\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":\\\"generic_timeout_error\\\"}},\\\"target_address\\\":\\\"193.11.166.194:27025\\\",\\\"target_protocol\\\":\\\"obfs4\\\",\\\"tcp_connect\\\":[{\\\"ip\\\":\\\"193.11.166.194\\\",\\\"port\\\":27025,\\\"t\\\":227.085186476,\\\"status\\\":{\\\"blocked\\\":true,\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"success\\\":false},\\\"started\\\":212.081535023,\\\"oddity\\\":\\\"tcp.connect.timeout\\\"}],\\\"tls_handshakes\\\":null},\\\"b8de51da541ced804840b1d8fd24d5ff1cfdf07eae673dae38c2bc2cce594ddd\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":\\\"generic_timeout_error\\\"}},\\\"target_address\\\":\\\"85.31.186.26:443\\\",\\\"target_protocol\\\":\\\"obfs4\\\",\\\"tcp_connect\\\":[{\\\"ip\\\":\\\"85.31.186.26\\\",\\\"port\\\":443,\\\"t\\\":197.050092112,\\\"status\\\":{\\\"blocked\\\":true,\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"success\\\":false},\\\"started\\\":182.048229826,\\\"oddity\\\":\\\"tcp.connect.timeout\\\"}],\\\"tls_handshakes\\\":null},\\\"bc7bc5fb57052ee5252e807443b9ab67307dbdb5ce79187c4360182a300dd0f8\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":\\\"generic_timeout_error\\\"}},\\\"target_address\\\":\\\"144.217.20.138:80\\\",\\\"target_protocol\\\":\\\"obfs4\\\",\\\"tcp_connect\\\":[{\\\"ip\\\":\\\"144.217.20.138\\\",\\\"port\\\":80,\\\"t\\\":166.455561916,\\\"status\\\":{\\\"blocked\\\":true,\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"success\\\":false},\\\"started\\\":151.454577911,\\\"oddity\\\":\\\"tcp.connect.timeout\\\"}],\\\"tls_handshakes\\\":null},\\\"d2d6e34abeda851f7cd37138ffafcce992b2ccdb0f263eb90ab75d7adbd5eeba\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":\\\"generic_timeout_error\\\"}},\\\"target_address\\\":\\\"85.31.186.98:443\\\",\\\"target_protocol\\\":\\\"obfs4\\\",\\\"tcp_connect\\\":[{\\\"ip\\\":\\\"85.31.186.98\\\",\\\"port\\\":443,\\\"t\\\":30.934002488,\\\"status\\\":{\\\"blocked\\\":true,\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"success\\\":false},\\\"started\\\":15.930669838,\\\"oddity\\\":\\\"tcp.connect.timeout\\\"}],\\\"tls_handshakes\\\":null},\\\"f855ba38d517d8589c16e1333ac23c6e516532cf036ab6f47b15030b40a3b6a6\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"network_unreachable\\\",\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":\\\"network_unreachable\\\"}},\\\"target_address\\\":\\\"[2a0c:4d80:42:702::1]:27015\\\",\\\"target_protocol\\\":\\\"obfs4\\\",\\\"tcp_connect\\\":[{\\\"ip\\\":\\\"2a0c:4d80:42:702::1\\\",\\\"port\\\":27015,\\\"t\\\":166.456318634,\\\"status\\\":{\\\"blocked\\\":true,\\\"failure\\\":\\\"network_unreachable\\\",\\\"success\\\":false},\\\"started\\\":166.455925301,\\\"oddity\\\":\\\"tcp.connect.other\\\"}],\\\"tls_handshakes\\\":null},\\\"fa69b2ee7a7c8975af2452ecd566f67a6459d397a4cefc30be86a670675cdc23\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"network_events\\\":null,\\\"queries\\\":null,\\\"requests\\\":null,\\\"summary\\\":{\\\"connect\\\":{\\\"failure\\\":\\\"generic_timeout_error\\\"}},\\\"target_address\\\":\\\"51.222.13.177:80\\\",\\\"target_protocol\\\":\\\"obfs4\\\",\\\"tcp_connect\\\":[{\\\"ip\\\":\\\"51.222.13.177\\\",\\\"port\\\":80,\\\"t\\\":60.978589716,\\\"status\\\":{\\\"blocked\\\":true,\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"success\\\":false},\\\"started\\\":45.969097534,\\\"oddity\\\":\\\"tcp.connect.timeout\\\"}],\\\"tls_handshakes\\\":null}}},\\\"test_name\\\":\\\"tor\\\",\\\"test_runtime\\\":227.085474861,\\\"test_start_time\\\":\\\"2023-01-21 23:54:17\\\",\\\"test_version\\\":\\\"0.4.0\\\"}\\n\",\"category_code\":\"\",\"verification_status\":\"unverified\"}" +} \ No newline at end of file diff --git a/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20230307142542.625294_US_webconnectivity_9215f30cf2412f49_full-true.json b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20230307142542.625294_US_webconnectivity_9215f30cf2412f49_full-true.json new file mode 100644 index 000000000..43efa5666 --- /dev/null +++ b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-20230307142542.625294_US_webconnectivity_9215f30cf2412f49_full-true.json @@ -0,0 +1,5 @@ +{ + "status": 200, + "contentType": "application/json", + "body": "{\"input\":\"https://www.instagram.com/\",\"measurement_start_time\":\"2023-03-07T14:25:42Z\",\"measurement_uid\":\"20230307142542.625294_US_webconnectivity_9215f30cf2412f49\",\"report_id\":\"20230307T142506Z_webconnectivity_US_20115_n1_PXV9h44BLL9pXFhs\",\"test_name\":\"web_connectivity\",\"test_start_time\":\"2023-03-07T14:25:05Z\",\"probe_asn\":20115,\"probe_cc\":\"US\",\"scores\":\"{\\\"blocking_general\\\":0.0,\\\"blocking_global\\\":0.0,\\\"blocking_country\\\":0.0,\\\"blocking_isp\\\":0.0,\\\"blocking_local\\\":0.0}\",\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"raw_measurement\":\"{\\\"annotations\\\":{\\\"architecture\\\":\\\"amd64\\\",\\\"engine_name\\\":\\\"ooniprobe-engine\\\",\\\"engine_version\\\":\\\"3.14.1\\\",\\\"platform\\\":\\\"windows\\\"},\\\"data_format_version\\\":\\\"0.2.0\\\",\\\"input\\\":\\\"https:\\\\/\\\\/www.instagram.com\\\\/\\\",\\\"measurement_start_time\\\":\\\"2023-03-07 14:25:42\\\",\\\"probe_asn\\\":\\\"AS20115\\\",\\\"probe_cc\\\":\\\"US\\\",\\\"probe_ip\\\":\\\"127.0.0.1\\\",\\\"probe_network_name\\\":\\\"Charter Communications\\\",\\\"report_id\\\":\\\"20230307T142506Z_webconnectivity_US_20115_n1_PXV9h44BLL9pXFhs\\\",\\\"resolver_asn\\\":\\\"AS15169\\\",\\\"resolver_ip\\\":\\\"74.125.80.79\\\",\\\"resolver_network_name\\\":\\\"Google LLC\\\",\\\"software_name\\\":\\\"ooniprobe-desktop-unattended\\\",\\\"software_version\\\":\\\"3.14.1\\\",\\\"test_keys\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"client_resolver\\\":\\\"74.125.80.79\\\",\\\"retries\\\":null,\\\"socksproxy\\\":null,\\\"network_events\\\":[{\\\"address\\\":\\\"157.240.3.174:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.894778,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_start\\\",\\\"t\\\":0.894778,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":287,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.894778,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.924835,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":1800,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.924835,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":1183,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.925812,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":64,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.9263545,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_done\\\",\\\"t\\\":0.9263545,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":24,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.9263545,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"address\\\":\\\"[2a03:2880:f201:e5:face:b00c:0:4420]:443\\\",\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":15.8675241,\\\"tags\\\":[\\\"tcptls_experiment\\\"]}],\\\"tls_handshakes\\\":[{\\\"cipher_suite\\\":\\\"TLS_AES_128_GCM_SHA256\\\",\\\"failure\\\":null,\\\"negotiated_protocol\\\":\\\"h2\\\",\\\"no_tls_verify\\\":false,\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIIG3zCCBcegAwIBAgIQBFm8p44mDloQFkF9Y\\\\/BLiDANBgkqhkiG9w0BAQsFADBwMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMS8wLQYDVQQDEyZEaWdpQ2VydCBTSEEyIEhpZ2ggQXNzdXJhbmNlIFNlcnZlciBDQTAeFw0yMzAxMDkwMDAwMDBaFw0yMzAzMTUyMzU5NTlaMHQxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRMwEQYDVQQHEwpNZW5sbyBQYXJrMR0wGwYDVQQKExRNZXRhIFBsYXRmb3JtcywgSW5jLjEcMBoGA1UEAwwTKi53d3cuaW5zdGFncmFtLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM2cig4T1uGsluQMBUGCU5mFQZrGkhVpdVun4BgN7t9uPRfq5P2psuy5NfKZjm5IOPs8dT8N9ENXboNjzS8D3YlLGpezyhF8uL55ywj1E0CYByHJXyCDP01rVvBjrgXtzo8W5N8TXSOl2QzhNCyc5nIygvJs+T9ErFU\\\\/nPhOYfOcSbL6I79AgWg+kTWSo0syO8Lz\\\\/FDts9Rc\\\\/6ZfaSgcnGN03Vtj5eXrYCfORB3G98QIAEZl3IWWCtqa5b2DOY\\\\/cfHUWEP+\\\\/xfA4zzo4NQBk2QDHgFheD8VxHXWiXSIC8p4GWdqwxFW8nSFd4eKZvCELn7IZ7jyrN5zYGb4VeU3te10CAwEAAaOCA28wggNrMB8GA1UdIwQYMBaAFFFo\\\\/5CvAgd1PMzZZWRiohK4WXI7MB0GA1UdDgQWBBT3XcczYKuQyQl03RuVDDc\\\\/H4MT+DAxBgNVHREEKjAoghMqLnd3dy5pbnN0YWdyYW0uY29tghF3d3cuaW5zdGFncmFtLmNvbTAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMHUGA1UdHwRuMGwwNKAyoDCGLmh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9zaGEyLWhhLXNlcnZlci1nNi5jcmwwNKAyoDCGLmh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9zaGEyLWhhLXNlcnZlci1nNi5jcmwwPgYDVR0gBDcwNTAzBgZngQwBAgIwKTAnBggrBgEFBQcCARYbaHR0cDovL3d3dy5kaWdpY2VydC5jb20vQ1BTMIGDBggrBgEFBQcBAQR3MHUwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBNBggrBgEFBQcwAoZBaHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0U0hBMkhpZ2hBc3N1cmFuY2VTZXJ2ZXJDQS5jcnQwCQYDVR0TBAIwADCCAX0GCisGAQQB1nkCBAIEggFtBIIBaQFnAHUA6D7Q2j71BjUy51covIlryQPTy9ERa+zraeF3fW0GvW4AAAGFlKmDqwAABAMARjBEAiAN2KjRKRH7FZvjwZCOm\\\\/OhiWU4W+puZ9ESUAB\\\\/qWPYtQIgG2u+X9t0B9YjODNovLKTBN1Oma422ryYqOLS0cONPrwAdgCzc3cH4YRQ+GOG1gWp3BEJSnktsWcMC4fc8AMOeTalmgAAAYWUqYOXAAAEAwBHMEUCIQCB\\\\/Ln5SnltORYdl88fSUDyoZ\\\\/rxICRyNL+Wiq5Z1Z+qwIgJaKmcmv3iYvq9qk7Jkm93FHPELipXmCWBJCwd8O5qw4AdgC3Pvsk35xNunXyOcW6WPRsXfxCz3qfNcSeHQmBJe20mQAAAYWUqYNuAAAEAwBHMEUCIH9VkYurpsDuSzmmukLlLpmKgT\\\\/9\\\\/YzQWA1QMZfdxEsZAiEAqZm+yOagBb1KsskHpLSxO7EFw\\\\/PFzNzOGec\\\\/oezUMW4wDQYJKoZIhvcNAQELBQADggEBAKRgut6T83L72i+rwSaTLUys5v+nfP9FH+6F4QPieZhj0mXL5FnzR8fIVUKBcxE8qNIH8I9BiMnObAXt7ko79SVWx\\\\/Pyw0xDfk++VZMHrItZjxmGd+3FJITGkBvBj5XJ0GzCT+fcCkN4eL\\\\/TwnefOhfbIsjVeXAuiEEZkHvoxVwj5npzHbVhVXGE3KBmDXZa957O36nvl5fgIh\\\\/1HMMRYBDo9YKAA4ucQKsmnL0nEBijaCfrnkhhoEBm1tH50MLn55XhlIDZZ3ddnb4ph9pFSGxIFvEpo11kShQ5bppRDi\\\\/m0\\\\/7uJ63bU4HmSejbFM5q+vucLjqogB+xkLON9\\\\/Ouw8c=\\\",\\\"format\\\":\\\"base64\\\"},{\\\"data\\\":\\\"MIIEsTCCA5mgAwIBAgIQBOHnpNxc8vNtwCtCuF0VnzANBgkqhkiG9w0BAQsFADBsMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTEzMTAyMjEyMDAwMFoXDTI4MTAyMjEyMDAwMFowcDELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTEvMC0GA1UEAxMmRGlnaUNlcnQgU0hBMiBIaWdoIEFzc3VyYW5jZSBTZXJ2ZXIgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC24C\\\\/CJAbIbQRf1+8KZAayfSImZRauQkCbztyfn3YHPsMwVYcZuU+UDlqUH1VWtMICKq\\\\/QmO4LQNfE0DtyyBSe75CxEamu0si4QzrZCwvV1ZX1QK\\\\/IHe1NnF9Xt4ZQaJn1itrSxwUfqJfJ3KSxgoQtxq2lnMcZgqaFD15EWCo3j\\\\/018QsIJzJa9buLnqS9UdAn4t07QjOjBSjEuyjMmqwrIw14xnvmXnG3Sj4I+4G3FhahnSMSTeXXkgisdaScus0Xsh5ENWV\\\\/UyU50RwKmmMbGZJ0aAo3wsJSSMs5WqK24V3B3aAguCGikyZvFEohQcftbZvySC\\\\/zA\\\\/WiaJJTL17jAgMBAAGjggFJMIIBRTASBgNVHRMBAf8ECDAGAQH\\\\/AgEAMA4GA1UdDwEB\\\\/wQEAwIBhjAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwNAYIKwYBBQUHAQEEKDAmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wSwYDVR0fBEQwQjBAoD6gPIY6aHR0cDovL2NybDQuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0SGlnaEFzc3VyYW5jZUVWUm9vdENBLmNybDA9BgNVHSAENjA0MDIGBFUdIAAwKjAoBggrBgEFBQcCARYcaHR0cHM6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAdBgNVHQ4EFgQUUWj\\\\/kK8CB3U8zNllZGKiErhZcjswHwYDVR0jBBgwFoAUsT7DaQP4v0cB1JgmGggC72NkK8MwDQYJKoZIhvcNAQELBQADggEBABiKlYkD5m3fXPwdaOpKj4PWUS+Na0QWnqxj9dJubISZi6qBcYRb7TROsLd5kinMLYBq8I4g4Xmk\\\\/gNHE+r1hspZcX30BJZr01lYPf7TMSVcGDiEo+afgv2MW5gxTs14nhr9hctJqvIni5ly\\\\/D6q1UEL2tU2ob8cbkdJf17ZSHwD2f2LSaCYJkJA69aSEaRkCldUxPUd1gJea6zuxICaEnL6VpPX\\\\/78whQYwvwt\\\\/Tv9XBZ0k7YXDK\\\\/umdaisLRbvfXknsuvCnQsH6qqF0wGjIChBWUMo0oHjqvbsezt3tkBigAVBRQHvFwY+3sAzm2fTYS5yh+Rp\\\\/BIAV0AecPUeybQ=\\\",\\\"format\\\":\\\"base64\\\"}],\\\"server_name\\\":\\\"www.instagram.com\\\",\\\"t\\\":0.9263545,\\\"tags\\\":[\\\"tcptls_experiment\\\"],\\\"tls_version\\\":\\\"TLSv1.3\\\"}],\\\"queries\\\":[{\\\"answers\\\":[{\\\"asn\\\":32934,\\\"as_org_name\\\":\\\"Facebook, Inc.\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"157.240.3.174\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"www.instagram.com\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.0494741},{\\\"answers\\\":[{\\\"asn\\\":32934,\\\"as_org_name\\\":\\\"Facebook, Inc.\\\",\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"2a03:2880:f201:e5:face:b00c:0:4420\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"www.instagram.com\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.0494741}],\\\"dns_experiment_failure\\\":null,\\\"dns_consistency\\\":\\\"consistent\\\",\\\"control_failure\\\":null,\\\"control\\\":{\\\"tcp_connect\\\":{\\\"157.240.195.174:443\\\":{\\\"status\\\":true,\\\"failure\\\":null},\\\"157.240.3.174:443\\\":{\\\"status\\\":true,\\\"failure\\\":null},\\\"[2a03:2880:f201:e5:face:b00c:0:4420]:443\\\":{\\\"status\\\":true,\\\"failure\\\":null},\\\"[2a03:2880:f242:e0:face:b00c:0:4420]:443\\\":{\\\"status\\\":true,\\\"failure\\\":null}},\\\"http_request\\\":{\\\"body_length\\\":518870,\\\"failure\\\":null,\\\"title\\\":\\\"Instagram\\\",\\\"headers\\\":{\\\"Accept-Ch\\\":\\\"sec-ch-prefers-color-scheme,viewport-width\\\",\\\"Accept-Ch-Lifetime\\\":\\\"4838400\\\",\\\"Alt-Svc\\\":\\\"h3=\\\\\\\":443\\\\\\\"; ma=86400\\\",\\\"Content-Type\\\":\\\"text\\\\/html; charset=\\\\\\\"utf-8\\\\\\\"\\\",\\\"Cross-Origin-Embedder-Policy-Report-Only\\\":\\\"require-corp;report-to=\\\\\\\"coep_report\\\\\\\"\\\",\\\"Cross-Origin-Opener-Policy\\\":\\\"same-origin-allow-popups\\\",\\\"Date\\\":\\\"Tue, 07 Mar 2023 14:25:25 GMT\\\",\\\"Report-To\\\":\\\"{\\\\\\\"max_age\\\\\\\":86400,\\\\\\\"endpoints\\\\\\\":[{\\\\\\\"url\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/www.facebook.com\\\\\\\\\\\\/browser_reporting\\\\\\\\\\\\/?minimize=0\\\\\\\"}],\\\\\\\"group\\\\\\\":\\\\\\\"coep_report\\\\\\\"}\\\",\\\"Reporting-Endpoints\\\":\\\"coep_report=\\\\\\\"https:\\\\/\\\\/www.facebook.com\\\\/browser_reporting\\\\/?minimize=0\\\\\\\"\\\",\\\"Strict-Transport-Security\\\":\\\"max-age=15552000\\\",\\\"Vary\\\":\\\"Sec-Fetch-Site, Sec-Fetch-Mode\\\",\\\"X-Fb-Debug\\\":\\\"g4d6xEF2FbgmrJ1eQyYDvfp+IEhnwsdVo5Qr9q1Gol0L5g5LJBsyy6N0NAriAcA3QC2luuG+BMbPsY\\\\/04af+Hw==\\\",\\\"X-Fb-Trip-Id\\\":\\\"1679558926\\\"},\\\"status_code\\\":200},\\\"dns\\\":{\\\"failure\\\":null,\\\"addrs\\\":[\\\"157.240.195.174\\\",\\\"2a03:2880:f242:e0:face:b00c:0:4420\\\"]}},\\\"tcp_connect\\\":[{\\\"ip\\\":\\\"157.240.3.174\\\",\\\"port\\\":443,\\\"status\\\":{\\\"blocked\\\":false,\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.894778},{\\\"ip\\\":\\\"2a03:2880:f201:e5:face:b00c:0:4420\\\",\\\"port\\\":443,\\\"status\\\":{\\\"blocked\\\":true,\\\"failure\\\":\\\"generic_timeout_error\\\",\\\"success\\\":false},\\\"t\\\":15.8675241}],\\\"requests\\\":[{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US,en;q=0.9\\\"],[\\\"Host\\\",\\\"www.instagram.com\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/96.0.4664.110 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US,en;q=0.9\\\",\\\"Host\\\":\\\"www.instagram.com\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/96.0.4664.110 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"https:\\\\/\\\\/www.instagram.com\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"<!DOCTYPE html><html class=\\\\\\\"_9dls\\\\\\\" lang=\\\\\\\"en\\\\\\\" dir=\\\\\\\"ltr\\\\\\\"><head><link data-default-icon=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/yb\\\\/r\\\\/lswP1OF1o6P.png\\\\\\\" rel=\\\\\\\"icon\\\\\\\" sizes=\\\\\\\"192x192\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/yb\\\\/r\\\\/lswP1OF1o6P.png\\\\\\\" \\\\/><meta charset=\\\\\\\"utf-8\\\\\\\" \\\\/><meta name=\\\\\\\"apple-mobile-web-app-status-bar-style\\\\\\\" content=\\\\\\\"default\\\\\\\" \\\\/><meta name=\\\\\\\"mobile-web-app-capable\\\\\\\" content=\\\\\\\"yes\\\\\\\" \\\\/><meta id=\\\\\\\"viewport\\\\\\\" name=\\\\\\\"viewport\\\\\\\" content=\\\\\\\"width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=2, viewport-fit=cover\\\\\\\" \\\\/><meta name=\\\\\\\"theme-color\\\\\\\" content=\\\\\\\"#ffffff\\\\\\\" \\\\/><link rel=\\\\\\\"apple-touch-icon\\\\\\\" sizes=\\\\\\\"76x76\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/yR\\\\/r\\\\/lam-fZmwmvn.png\\\\\\\" \\\\/><link rel=\\\\\\\"apple-touch-icon\\\\\\\" sizes=\\\\\\\"120x120\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/ys\\\\/r\\\\/aM-g435MtEX.png\\\\\\\" \\\\/><link rel=\\\\\\\"apple-touch-icon\\\\\\\" sizes=\\\\\\\"152x152\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/yx\\\\/r\\\\/H1l_HHqi4p6.png\\\\\\\" \\\\/><link rel=\\\\\\\"apple-touch-icon\\\\\\\" sizes=\\\\\\\"167x167\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/yB\\\\/r\\\\/-7Z_RkdLJUX.png\\\\\\\" \\\\/><link rel=\\\\\\\"apple-touch-icon\\\\\\\" sizes=\\\\\\\"180x180\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/yG\\\\/r\\\\/De-Dwpd5CHc.png\\\\\\\" \\\\/><link data-default-icon=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/yv\\\\/r\\\\/BTPhT6yIYfq.ico\\\\\\\" rel=\\\\\\\"shortcut icon\\\\\\\" type=\\\\\\\"image\\\\/x-icon\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/yv\\\\/r\\\\/BTPhT6yIYfq.ico\\\\\\\" \\\\/><meta name=\\\\\\\"color-scheme\\\\\\\" content=\\\\\\\"light\\\\\\\" \\\\/><style nonce=\\\\\\\"rELbEEkw\\\\\\\">:root,.__ig-light-mode{--fds-black:#000000;--fds-black-alpha-05:rgba(0, 0, 0, 0.05);--fds-black-alpha-10:rgba(0, 0, 0, 0.1);--fds-black-alpha-15:rgba(0, 0, 0, 0.15);--fds-black-alpha-20:rgba(0, 0, 0, 0.2);--fds-black-alpha-30:rgba(0, 0, 0, 0.3);--fds-black-alpha-40:rgba(0, 0, 0, 0.4);--fds-black-alpha-50:rgba(0, 0, 0, 0.5);--fds-black-alpha-60:rgba(0, 0, 0, 0.6);--fds-black-alpha-80:rgba(0, 0, 0, 0.8);--fds-blue-05:#ECF3FF;--fds-blue-30:#AAC9FF;--fds-blue-40:#77A7FF;--fds-blue-60:#1877F2;--fds-blue-70:#2851A3;--fds-blue-80:#1D3C78;--fds-button-text:#444950;--fds-comment-background:#F2F3F5;--fds-dark-mode-gray-35:#CCCCCC;--fds-dark-mode-gray-50:#828282;--fds-dark-mode-gray-70:#4A4A4A;--fds-dark-mode-gray-80:#373737;--fds-dark-mode-gray-90:#282828;--fds-dark-mode-gray-100:#1C1C1C;--fds-gray-00:#F5F6F7;--fds-gray-05:#F2F3F5;--fds-gray-10:#EBEDF0;--fds-gray-20:#DADDE1;--fds-gray-25:#CCD0D5;--fds-gray-30:#BEC3C9;--fds-gray-45:#8D949E;--fds-gray-70:#606770;--fds-gray-80:#444950;--fds-gray-90:#303338;--fds-gray-100:#1C1E21;--fds-green-55:#00A400;--fds-highlight:#3578E5;--fds-highlight-cell-background:#ECF3FF;--fds-primary-icon:#1C1E21;--fds-primary-text:#1C1E21;--fds-red-55:#FA383E;--fds-soft:cubic-bezier(.08,.52,.52,1);--fds-spectrum-aluminum-tint-70:#E4F0F6;--fds-spectrum-blue-gray-tint-70:#CFD1D5;--fds-spectrum-cherry:#F35369;--fds-spectrum-cherry-tint-70:#FBCCD2;--fds-spectrum-grape-tint-70:#DDD5F0;--fds-spectrum-grape-tint-90:#F4F1FA;--fds-spectrum-lemon-dark-1:#F5C33B;--fds-spectrum-lemon-tint-70:#FEF2D1;--fds-spectrum-lime:#A3CE71;--fds-spectrum-lime-tint-70:#E4F0D5;--fds-spectrum-orange-tint-70:#FCDEC5;--fds-spectrum-orange-tint-90:#FEF4EC;--fds-spectrum-seafoam-tint-70:#CAEEF9;--fds-spectrum-slate-dark-2:#89A1AC;--fds-spectrum-slate-tint-70:#EAEFF2;--fds-spectrum-teal:#6BCEBB;--fds-spectrum-teal-dark-1:#4DBBA6;--fds-spectrum-teal-dark-2:#31A38D;--fds-spectrum-teal-tint-70:#D2F0EA;--fds-spectrum-teal-tint-90:#F0FAF8;--fds-spectrum-tomato:#FB724B;--fds-spectrum-tomato-tint-30:#F38E7B;--fds-spectrum-tomato-tint-90:#FDEFED;--fds-strong:cubic-bezier(.12,.8,.32,1);--fds-white:#FFFFFF;--fds-white-alpha-05:rgba(255, 255, 255, 0.05);--fds-white-alpha-10:rgba(255, 255, 255, 0.1);--fds-white-alpha-20:rgba(255, 255, 255, 0.2);--fds-white-alpha-30:rgba(255, 255, 255, 0.3);--fds-white-alpha-40:rgba(255, 255, 255, 0.4);--fds-white-alpha-50:rgba(255, 255, 255, 0.5);--fds-white-alpha-60:rgba(255, 255, 255, 0.6);--fds-white-alpha-80:rgba(255, 255, 255, 0.8);--fds-yellow-20:#FFBA00;--accent:#0095F6;--always-white:#FFFFFF;--always-black:black;--always-dark-gradient:linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.6));--always-dark-overlay:rgba(0, 0, 0, 0.4);--always-light-overlay:rgba(255, 255, 255, 0.4);--always-gray-40:#65676B;--always-gray-75:#BCC0C4;--always-gray-95:#F0F2F5;--attachment-footer-background:#F0F2F5;--background-deemphasized:#F0F2F5;--base-blue:#1877F2;--base-cherry:#F3425F;--base-grape:#9360F7;--base-lemon:#F7B928;--base-lime:#45BD62;--base-pink:#FF66BF;--base-seafoam:#54C7EC;--base-teal:#2ABBA7;--base-tomato:#FB724B;--blue-link:#00376B;--border-focused:#65676B;--card-background:#FFFFFF;--card-background-flat:#F7F8FA;--comment-background:#F0F2F5;--comment-footer-background:#F6F9FA;--dataviz-primary-1:rgb(48,200,180);--disabled-button-background:rgba(0, 149, 246, 0.3);--disabled-button-text:#FFFFFF;--disabled-icon:#BCC0C4;--disabled-text:#BCC0C4;--divider:#DBDBDB;--event-date:#F3425F;--fb-wordmark:#1877F2;--filter-accent:invert(39%) sepia(57%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(147.75%) hue-rotate(202deg) brightness(97%) contrast(96%);--filter-always-white:invert(100%);--filter-disabled-icon:invert(80%) sepia(6%) saturate(200%) saturate(120%) hue-rotate(173deg) brightness(98%) contrast(89%);--filter-placeholder-icon:invert(59%) sepia(11%) saturate(200%) saturate(135%) hue-rotate(176deg) brightness(96%) contrast(94%);--filter-primary-icon:invert(8%) sepia(10%) saturate(200%) saturate(200%) saturate(166%) hue-rotate(177deg) brightness(104%) contrast(91%);--filter-secondary-icon:invert(39%) sepia(21%) saturate(200%) saturate(109.5%) hue-rotate(174deg) brightness(94%) contrast(86%);--filter-warning-icon:invert(77%) sepia(29%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(128%) hue-rotate(359deg) brightness(102%) contrast(107%);--filter-blue-link-icon:invert(30%) sepia(98%) saturate(200%) saturate(200%) saturate(200%) saturate(166.5%) hue-rotate(192deg) brightness(91%) contrast(101%);--filter-positive:invert(37%) sepia(61%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(115%) hue-rotate(91deg) brightness(97%) contrast(105%);--filter-negative:invert(25%) sepia(33%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(110%) hue-rotate(345deg) brightness(132%) contrast(96%);--glimmer-spinner-icon:#65676B;--hero-banner-background:#FFFFFF;--hosted-view-selected-state:rgba(45, 136, 255, 0.1);--highlight-bg:#E7F3FF;--hover-overlay:rgba(0, 0, 0, 0.05);--list-cell-chevron:#65676B;--media-hover:rgba(68, 73, 80, 0.15);--media-inner-border:rgba(0, 0, 0, 0.1);--media-outer-border:#FFFFFF;--media-pressed:rgba(68, 73, 80, 0.35);--messenger-card-background:#FFFFFF;--messenger-reply-background:#F0F2F5;--overlay-alpha-80:rgba(0, 0, 0, 0.65);--overlay-on-media:rgba(0, 0, 0, 0.6);--nav-bar-background:#FFFFFF;--nav-bar-background-gradient:linear-gradient(to top, #FFFFFF, rgba(255,255,255.9), rgba(255,255,255,.7), rgba(255,255,255,.4), rgba(255,255,255,0));--nav-bar-background-gradient-wash:linear-gradient(to top, #F0F2F5, rgba(240,242,245.9), rgba(240,242,245,.7), rgba(240,242,245,.4), rgba(240,242,245,0));--negative:hsl(350, 87%, 55%);--negative-background:hsl(350, 87%, 55%, 20%);--new-notification-background:#E7F3FF;--non-media-pressed:rgba(68, 73, 80, 0.15);--non-media-pressed-on-dark:rgba(255, 255, 255, 0.3);--notification-badge:#e41e3f;--placeholder-icon:#65676B;--placeholder-image:rgb(164, 167, 171);--placeholder-text:#65676B;--placeholder-text-on-media:rgba(255, 255, 255, 0.5);--popover-background:#FFFFFF;--positive:#31A24C;--positive-background:#DEEFE1;--press-overlay:rgba(0, 0, 0, 0.10);--primary-button-background:#0095F6;--primary-button-icon:#FFFFFF;--primary-button-pressed:#77A7FF;--primary-button-text:#FFFFFF;--primary-deemphasized-button-background:rgba(0, 149, 246, 0.1);--primary-deemphasized-button-pressed:rgba(0, 149, 246, 0.05);--primary-deemphasized-button-pressed-overlay:rgba(0, 149, 246, 0.15);--primary-deemphasized-button-text:#0095F6;--primary-icon:#262626;--primary-text:#262626;--primary-text-on-media:#FFFFFF;--primary-web-focus-indicator:#D24294;--progress-ring-neutral-background:rgba(0, 0, 0, 0.2);--progress-ring-neutral-foreground:#000000;--progress-ring-on-media-background:rgba(255, 255, 255, 0.2);--progress-ring-on-media-foreground:#FFFFFF;--progress-ring-blue-background:rgba(24, 119, 242, 0.2);--progress-ring-blue-foreground:hsl(214, 89%, 52%);--progress-ring-disabled-background:rgba(190,195,201, 0.2);--progress-ring-disabled-foreground:#BEC3C9;--rating-star-active:#EB660D;--scroll-thumb:#BCC0C4;--scroll-shadow:0 1px 2px rgba(0, 0, 0, 0.1), 0 -1px rgba(0, 0, 0, 0.1) inset;--secondary-button-background:transparent;--secondary-button-background-floating:#ffffff;--secondary-button-background-on-dark:rgba(0, 0, 0, 0.4);--secondary-button-pressed:rgba(0, 0, 0, 0.05);--secondary-button-stroke:transparent;--secondary-button-text:#0095F6;--secondary-icon:#8E8E8E;--secondary-text:#8E8E8E;--secondary-text-on-media:rgba(255, 255, 255, 0.9);--section-header-text:#4B4C4F;--shadow-1:rgba(0, 0, 0, 0.1);--shadow-2:rgba(0, 0, 0, 0.2);--shadow-5:rgba(0, 0, 0, 0.5);--shadow-8:rgba(0, 0, 0, 0.8);--shadow-inset:rgba(255, 255, 255, 0.5);--shadow-elevated:0 8px 20px 0 rgba(0, 0, 0, 0.2), 0 2px 4px 0 rgba(0, 0, 0, 0.1);--shadow-persistent:0px 0px 12px rgba(52, 72, 84, 0.05);--shadow-primary:0px 5px 12px rgba(52, 72, 84, 0.2);--surface-background:#FFFFFF;--switch-active:hsl(214, 89%, 52%);--text-highlight:rgba(24, 119, 242, 0.2);--text-input-background:#FFFFFF;--toast-background:#FFFFFF;--toast-text:#1C2B33;--toast-text-link:#216FDB;--toggle-active-background:#E7F3FF;--toggle-active-icon:rgb(24, 119, 242);--toggle-active-text:rgb(24, 119, 242);--toggle-button-active-background:#E7F3FF;--wash:#FAFAFA;--web-wash:#FAFAFA;--warning:hsl(40, 89%, 52%);--fb-logo-color:#2D88FF;--dialog-anchor-vertical-padding:56px;--header-height:0px;--global-panel-width:0px;--global-panel-width-expanded:0px;--alert-banner-corner-radius:8px;--button-corner-radius:4px;--button-corner-radius-medium:10px;--button-corner-radius-large:12px;--button-height-large:40px;--button-height-medium:36px;--button-padding-horizontal-large:16px;--button-padding-horizontal-medium:16px;--button-icon-padding-large:16px;--button-icon-padding-medium:16px;--button-inner-icon-spacing-large:3px;--button-inner-icon-spacing-medium:3px;--blueprint-button-height-medium:40px;--blueprint-button-height-large:48px;--card-corner-radius:4px;--card-box-shadow:0 12px 28px 0 var(--shadow-2), 0 2px 4px 0 var(--shadow-1);--card-padding-horizontal:10px;--card-padding-vertical:20px;--chip-corner-radius:6px;--dialog-corner-radius:8px;--glimmer-corner-radius:8px;--image-corner-radius:4px;--input-corner-radius:6px;--nav-list-cell-corner-radius:8px;--list-cell-corner-radius:8px;--list-cell-min-height:52px;--list-cell-padding-vertical:20px;--list-cell-padding-vertical-with-addon:14px;--nav-list-cell-min-height:0px;--nav-list-cell-padding-vertical:16px;--nav-list-cell-padding-vertical-with-addon:16px;--text-input-multi-padding-between-text-scrollbar:20px;--text-input-multi-padding-scrollbar:16px;--text-input-caption-margin-top:10px;--text-input-label-top:22px;--text-input-min-height:64px;--text-input-padding-vertical:12px;--toast-addon-padding-horizontal:6px;--toast-addon-padding-vertical:6px;--toast-container-max-width:100%;--toast-container-min-width:288px;--toast-container-padding-horizontal:10px;--toast-container-padding-vertical:16px;--toast-corner-radius:8px;--fds-animation-enter-exit-in:cubic-bezier(0.14, 1, 0.34, 1);--fds-animation-enter-exit-out:cubic-bezier(0.45, 0.1, 0.2, 1);--fds-animation-swap-shuffle-in:cubic-bezier(0.14, 1, 0.34, 1);--fds-animation-swap-shuffle-out:cubic-bezier(0.45, 0.1, 0.2, 1);--fds-animation-move-in:cubic-bezier(0.17, 0.17, 0, 1);--fds-animation-move-out:cubic-bezier(0.17, 0.17, 0, 1);--fds-animation-expand-collapse-in:cubic-bezier(0.17, 0.17, 0, 1);--fds-animation-expand-collapse-out:cubic-bezier(0.17, 0.17, 0, 1);--fds-animation-passive-move-in:cubic-bezier(0.5, 0, 0.1, 1);--fds-animation-passive-move-out:cubic-bezier(0.5, 0, 0.1, 1);--fds-animation-quick-move-in:cubic-bezier(0.1, 0.9, 0.2, 1);--fds-animation-quick-move-out:cubic-bezier(0.1, 0.9, 0.2, 1);--fds-animation-fade-in:cubic-bezier(0, 0, 1, 1);--fds-animation-fade-out:cubic-bezier(0, 0, 1, 1);--fds-duration-extra-extra-short-in:100ms;--fds-duration-extra-extra-short-out:100ms;--fds-duration-extra-short-in:200ms;--fds-duration-extra-short-out:150ms;--fds-duration-short-in:280ms;--fds-duration-short-out:200ms;--fds-duration-medium-in:400ms;--fds-duration-medium-out:350ms;--fds-duration-long-in:500ms;--fds-duration-long-out:350ms;--fds-duration-extra-long-in:1000ms;--fds-duration-extra-long-out:1000ms;--fds-duration-none:0ms;--fds-fast:200ms;--fds-slow:400ms;--font-family-apple:system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', sans-serif;--font-family-code:ui-monospace, Menlo, Consolas, Monaco, monospace;--font-family-default:Helvetica, Arial, sans-serif;--font-family-segoe:Segoe UI Historic, Segoe UI, Helvetica, Arial, sans-serif;--body-font-family:Placeholder Font;--body-font-size:0.9375rem;--body-font-weight:400;--body-line-height:1.3333;--body-emphasized-font-family:Placeholder Font;--body-emphasized-font-size:0.9375rem;--body-emphasized-font-weight:600;--body-emphasized-line-height:1.3333;--headline1-font-family:Optimistic Display Bold, system-ui, sans-serif;--headline1-font-size:1.75rem;--headline1-font-weight:700;--headline1-line-height:1.2143;--headline2-font-family:Optimistic Display Bold, system-ui, sans-serif;--headline2-font-size:1.5rem;--headline2-font-weight:700;--headline2-line-height:1.25;--headline3-font-family:Optimistic Display Bold, system-ui, sans-serif;--headline3-font-size:1.0625rem;--headline3-font-weight:700;--headline3-line-height:1.2941;--meta-font-family:Placeholder Font;--meta-font-size:0.8125rem;--meta-font-weight:400;--meta-line-height:1.3846;--meta-emphasized-font-family:Placeholder Font;--meta-emphasized-font-size:0.8125rem;--meta-emphasized-font-weight:600;--meta-emphasized-line-height:1.3846;--primary-label-font-family:Optimistic Display Medium, system-ui, sans-serif;--primary-label-font-size:1.0625rem;--primary-label-font-weight:500;--primary-label-line-height:1.2941;--secondary-label-font-family:Placeholder Font;--secondary-label-font-size:0.9375rem;--secondary-label-font-weight:500;--secondary-label-line-height:1.3333;--text-input-field-font-family:Placeholder Font;--text-input-field-font-size:1rem;--text-input-field-font-weight:500;--text-input-field-line-height:1.2941;--text-input-label-font-family:Placeholder Font;--text-input-label-font-size:17px;--text-input-label-font-size-scale-multiplier:0.75;--text-input-label-font-weight:400;--text-input-label-line-height:1.2941;--dataviz-primary-2:rgb(134,218,255);--dataviz-primary-3:rgb(95,170,255);--dataviz-secondary-1:rgb(118,62,230);--dataviz-secondary-2:rgb(147,96,247);--dataviz-secondary-3:rgb(219,26,139);--dataviz-supplementary-1:rgb(255,122,105);--dataviz-supplementary-2:rgb(241,168,23);--dataviz-supplementary-3:rgb(49,162,76);--dataviz-supplementary-4:rgb(50,52,54);--base-unit:4px;--blue-0:245, 251, 255;--blue-1:224, 241, 255;--blue-2:179, 219, 255;--blue-3:112, 188, 255;--blue-4:71, 175, 255;--blue-5:0, 149, 246;--blue-6:0, 116, 204;--blue-7:0, 87, 163;--blue-8:0, 55, 107;--blue-9:0, 41, 82;--breakpoint-medium-width:1536px;--breakpoint-small-width:1024px;--challenge-width:460px;--creation-header-height:43px;--creation-min-padding-x:32px;--creation-modal-max-height:898px;--creation-modal-min-height:391px;--creation-padding-x:64px;--creation-padding-y:112px;--creation-settings-width:340px;--cyan-5:39, 196, 245;--desktop-grid-item-margin:28px;--desktop-in-feed-story-item-height:208px;--desktop-in-feed-story-item-width:116px;--desktop-nav-height:60px;--desktop-skinny-nav-height:60px;--direct-attachment-image-grid-item-size:78px;--direct-attachment-story-height:150px;--direct-attachment-story-large-height:256px;--direct-attachment-story-large-width:164px;--direct-attachment-story-width:84px;--direct-message-max-width:236px;--fb-signup-page-profile-pic-size:88px;--feed-sidebar-padding:32px;--feed-sidebar-width:319px;--feed-width:470px;--feed-width-wide-story:630px;--font-family-system:-apple-system, BlinkMacSystemFont, \\\\\\\"Segoe UI\\\\\\\", Roboto, Helvetica, Arial, sans-serif;--font-weight-system-bold:700;--font-weight-system-extra-bold:800;--font-weight-system-extra-light:200;--font-weight-system-light:300;--font-weight-system-medium:500;--font-weight-system-regular:400;--font-weight-system-semibold:600;--footer-width-wide:1150px;--gradient-lavender:211, 0, 197;--gradient-orange:255, 122, 0;--gradient-pink:255, 1, 105;--gradient-purple:118, 56, 250;--gradient-red:255, 48, 64;--gradient-yellow:255, 214, 0;--green-4:120, 222, 69;--green-5:88, 195, 34;--green-6:55, 166, 0;--grey-0:245, 245, 245;--grey-1:239, 239, 239;--grey-2:219, 219, 219;--grey-3:199, 199, 199;--grey-4:168, 168, 168;--grey-5:142, 142, 142;--grey-6:115, 115, 115;--grey-7:85, 85, 85;--grey-8:54, 54, 54;--grey-9:38, 38, 38;--grey-10:26, 26, 26;--ig-badge:255, 48, 64;--ig-close-friends-refreshed:28, 209, 79;--ig-disabled-action-text:169, 219, 255;--ig-error-or-destructive:237, 73, 86;--ig-facebook-blue:53, 121, 234;--ig-live-badge:255, 1, 105;--ig-primary-button:0, 149, 246;--ig-primary-button-hover:24, 119, 242;--ig-secondary-button-background:239, 239, 239;--ig-secondary-button-hover:219, 219, 219;--ig-secondary-button-focused:224, 241, 255;--ig-secondary-icon:142, 142, 142;--ig-stroke-on-media:255, 255, 255;--ig-tertiary-button-background:255, 255, 255;--ig-tertiary-button-border:219, 219, 219;--ig-tertiary-button-hover:245, 245, 245;--ig-tertiary-button-text:38, 38, 38;--ig-subscribers-only:118, 56, 250;--ig-success:88, 195, 34;--ig-text-on-color:255, 255, 255;--ig-text-on-media:255, 255, 255;--in-feed-story-item-height:240px;--in-feed-story-item-width:135px;--in-feed-story-item-padding:12px;--input-border-radius:6px;--large-layout-min:1500px;--live-video-border-radius:4px;--media-content-card-width:350px;--media-content-card-width-small:300px;--media-info:335px;--medium-layout-max:1499px;--medium-layout-min:1080px;--medium-screen-max:875px;--medium-screen-min:736px;--mobile-grid-item-margin:2px;--mobile-nav-height:45px;--modal-backdrop-dark:rgba(0, 0, 0, 0.85);--modal-backdrop-default:rgba(0, 0, 0, 0.65);--modal-border-radius:12px;--modal-padding:16px;--modal-z-index:100;--nav-narrow-width:72px;--nav-medium-width:244px;--nav-wide-width:335px;--nav-bottom-screen-max:767px;--nav-narrow-screen-min:768px;--nav-medium-screen-min:1264px;--nav-wide-screen-min:1920px;--orange-5:253, 141, 50;--photo:600px;--pink-5:209, 8, 105;--purple-5:163, 7, 186;--red-4:255, 104, 116;--red-5:237, 73, 86;--red-6:198, 35, 48;--red-7:167, 3, 17;--reels-large-screen-min:1366px;--refinement-section-height:50px;--revamp-nav-bottom-toolbar-height:50px;--revamp-feed-card-max-height:835px;--revamp-feed-card-min-height:615px;--revamp-feed-card-min-width:710px;--revamp-feed-card-media-min-width:390px;--revamp-feed-card-details-section-padding:16px;--revamp-feed-card-details-section-width:320px;--revamp-feed-card-details-section-width-xl:340px;--revamp-feed-horizontal-padding-small-screen:24px;--revamp-feed-horizontal-padding-large-screen:32px;--revamp-feed-vertical-padding:32px;--right-rail-width:300px;--scrollable-content-header-height-large:56px;--scrollable-content-header-height-med:49px;--scrollable-content-header-height:44px;--search-box-height:40px;--search-modal-height-expanded:450px;--search-modal-height:362px;--search-modal-top-offset:12px;--search-result-height:50px;--search-result-inline-top-offset:60px;--search-result-list-width:375px;--site-width-narrow:600px;--site-width-wide:935px;--small-layout-max:1079px;--small-layout-min:800px;--small-screen-max:735px;--small-screen-min:414px;--story-progressbar-update-tick:0.1s;--story-swap-animation-duration:350ms;--system-10-font-size:10px;--system-10-line-height:12px;--system-11-font-size:11px;--system-11-line-height:13px;--system-12-font-size:12px;--system-12-line-height:16px;--system-14-font-size:14px;--system-14-line-height:18px;--system-16-font-size:16px;--system-16-line-height:24px;--system-18-font-size:18px;--system-18-line-height:24px;--system-20-font-size:20px;--system-20-line-height:25px;--system-22-font-size:22px;--system-22-line-height:26px;--system-24-font-size:24px;--system-24-line-height:27px;--system-26-font-size:26px;--system-26-line-height:28px;--system-28-font-size:28px;--system-28-line-height:32px;--system-30-font-size:30px;--system-30-line-height:36px;--system-32-font-size:32px;--system-32-line-height:40px;--web-always-black:0, 0, 0;--web-always-white:255, 255, 255;--web-overlay-on-media:38, 38, 38;--web-secondary-action:224, 241, 255;--yellow-5:253, 203, 92;--challenge-link:54, 54, 54;--ig-banner-background:255, 255, 255;--ig-elevated-background:255, 255, 255;--ig-elevated-highlight-background:239, 239, 239;--ig-elevated-separator:219, 219, 219;--ig-focus-stroke:168, 168, 168;--ig-highlight-background:239, 239, 239;--ig-link:0, 55, 107;--ig-primary-background:255, 255, 255;--ig-primary-icon:38, 38, 38;--ig-primary-text:38, 38, 38;--ig-secondary-background:245, 245, 245;--ig-secondary-button:38, 38, 38;--ig-secondary-text:142, 142, 142;--ig-separator:219, 219, 219;--ig-stroke:219, 219, 219;--ig-temporary-highlight:245, 251, 255;--ig-tertiary-icon:199, 199, 199;--ig-tertiary-text:199, 199, 199;--post-separator:239, 239, 239;--tos-box-shadow:0, 0, 0;}.__ig-dark-mode{--fds-black:black;--fds-black-alpha-05:rgba(0, 0, 0, 0.05);--fds-black-alpha-10:rgba(0, 0, 0, 0.1);--fds-black-alpha-15:rgba(0, 0, 0, 0.15);--fds-black-alpha-20:rgba(0, 0, 0, 0.2);--fds-black-alpha-30:rgba(0, 0, 0, 0.3);--fds-black-alpha-40:rgba(0, 0, 0, 0.4);--fds-black-alpha-50:rgba(0, 0, 0, 0.5);--fds-black-alpha-60:rgba(0, 0, 0, 0.6);--fds-black-alpha-80:rgba(0, 0, 0, 0.8);--fds-blue-05:black;--fds-blue-30:black;--fds-blue-40:black;--fds-blue-60:black;--fds-blue-70:black;--fds-blue-80:black;--fds-button-text:black;--fds-comment-background:black;--fds-dark-mode-gray-35:black;--fds-dark-mode-gray-50:black;--fds-dark-mode-gray-70:black;--fds-dark-mode-gray-80:black;--fds-dark-mode-gray-90:black;--fds-dark-mode-gray-100:black;--fds-gray-00:black;--fds-gray-05:black;--fds-gray-10:black;--fds-gray-20:black;--fds-gray-25:black;--fds-gray-30:black;--fds-gray-45:black;--fds-gray-70:black;--fds-gray-80:black;--fds-gray-90:black;--fds-gray-100:black;--fds-green-55:black;--fds-highlight:black;--fds-highlight-cell-background:black;--fds-primary-icon:white;--fds-primary-text:white;--fds-red-55:black;--fds-soft:cubic-bezier(.08,.52,.52,1);--fds-spectrum-aluminum-tint-70:black;--fds-spectrum-blue-gray-tint-70:black;--fds-spectrum-cherry:black;--fds-spectrum-cherry-tint-70:black;--fds-spectrum-grape-tint-70:black;--fds-spectrum-grape-tint-90:black;--fds-spectrum-lemon-dark-1:black;--fds-spectrum-lemon-tint-70:black;--fds-spectrum-lime:black;--fds-spectrum-lime-tint-70:black;--fds-spectrum-orange-tint-70:black;--fds-spectrum-orange-tint-90:black;--fds-spectrum-seafoam-tint-70:black;--fds-spectrum-slate-dark-2:black;--fds-spectrum-slate-tint-70:black;--fds-spectrum-teal:black;--fds-spectrum-teal-dark-1:black;--fds-spectrum-teal-dark-2:black;--fds-spectrum-teal-tint-70:black;--fds-spectrum-teal-tint-90:black;--fds-spectrum-tomato:black;--fds-spectrum-tomato-tint-30:black;--fds-spectrum-tomato-tint-90:black;--fds-strong:cubic-bezier(.12,.8,.32,1);--fds-white:black;--fds-white-alpha-05:rgba(255, 255, 255, 0.05);--fds-white-alpha-10:rgba(255, 255, 255, 0.1);--fds-white-alpha-20:rgba(255, 255, 255, 0.2);--fds-white-alpha-30:rgba(255, 255, 255, 0.3);--fds-white-alpha-40:rgba(255, 255, 255, 0.4);--fds-white-alpha-50:rgba(255, 255, 255, 0.5);--fds-white-alpha-60:rgba(255, 255, 255, 0.6);--fds-white-alpha-80:rgba(255, 255, 255, 0.8);--fds-yellow-20:black;--accent:#0095F6;--always-white:white;--always-black:black;--always-dark-gradient:linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.6));--always-dark-overlay:rgba(0, 0, 0, 0.4);--always-light-overlay:rgba(255, 255, 255, 0.4);--always-gray-40:#65676B;--always-gray-75:#BCC0C4;--always-gray-95:#F0F2F5;--attachment-footer-background:rgba(255,255,255,0.1);--background-deemphasized:rgba(255,255,255,0.1);--base-blue:#1877F2;--base-cherry:#F3425F;--base-grape:#9360F7;--base-lemon:#F7B928;--base-lime:#45BD62;--base-pink:#FF66BF;--base-seafoam:#54C7EC;--base-teal:#2ABBA7;--base-tomato:#FB724B;--blue-link:#00376B;--border-focused:#8A8D91;--card-background:#242526;--card-background-flat:#323436;--comment-background:#3A3B3C;--comment-footer-background:#4E4F50;--dataviz-primary-1:rgb(48,200,180);--disabled-button-background:rgba(255, 255, 255, 0.2);--disabled-button-text:rgba(255, 255, 255, 0.3);--disabled-icon:rgba(255, 255, 255, 0.3);--disabled-text:rgba(255, 255, 255, 0.3);--divider:#3E4042;--event-date:#F3425F;--fb-wordmark:#FFFFFF;--filter-accent:invert(40%) sepia(52%) saturate(200%) saturate(200%) saturate(200%) saturate(189%) hue-rotate(191deg) brightness(103%) contrast(102%);--filter-always-white:invert(100%);--filter-disabled-icon:invert(100%) opacity(30%);--filter-placeholder-icon:invert(59%) sepia(11%) saturate(200%) saturate(135%) hue-rotate(176deg) brightness(96%) contrast(94%);--filter-primary-icon:invert(89%) sepia(6%) hue-rotate(185deg);--filter-secondary-icon:invert(62%) sepia(98%) saturate(12%) hue-rotate(175deg) brightness(90%) contrast(96%);--filter-warning-icon:invert(77%) sepia(29%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(128%) hue-rotate(359deg) brightness(102%) contrast(107%);--filter-blue-link-icon:invert(73%) sepia(29%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(103.25%) hue-rotate(189deg) brightness(101%) contrast(101%);--filter-positive:invert(37%) sepia(61%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(115%) hue-rotate(91deg) brightness(97%) contrast(105%);--filter-negative:invert(25%) sepia(33%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(200%) saturate(110%) hue-rotate(345deg) brightness(132%) contrast(96%);--glimmer-spinner-icon:white;--hero-banner-background:#E85D07;--hosted-view-selected-state:rgba(45, 136, 255, 0.1);--highlight-bg:rgba(24, 119, 242, .31);--hover-overlay:rgba(255, 255, 255, 0.1);--list-cell-chevron:#B0B3B8;--media-hover:rgba(68, 73, 80, 0.15);--media-inner-border:rgba(255, 255, 255, 0.05);--media-outer-border:#33363A;--media-pressed:rgba(68, 73, 80, 0.35);--messenger-card-background:#242526;--messenger-reply-background:#18191A;--overlay-alpha-80:rgba(0, 0, 0, 0.65);--overlay-on-media:rgba(0, 0, 0, 0.6);--nav-bar-background:#242526;--nav-bar-background-gradient:linear-gradient(to top, #242526, rgba(36,37,38,.9), rgba(36,37,38,.7), rgba(36,37,38,.4), rgba(36,37,38,0));--nav-bar-background-gradient-wash:linear-gradient(to top, #18191A, rgba(24,25,26,.9), rgba(24,25,26,.7), rgba(24,25,26,.4), rgba(24,25,26,0));--negative:hsl(350, 87%, 55%);--negative-background:hsl(350, 87%, 55%, 20%);--new-notification-background:#E7F3FF;--non-media-pressed:rgba(68, 73, 80, 0.15);--non-media-pressed-on-dark:rgba(255, 255, 255, 0.3);--notification-badge:#e41e3f;--placeholder-icon:#8A8D91;--placeholder-image:rgb(164, 167, 171);--placeholder-text:#8A8D91;--placeholder-text-on-media:rgba(255, 255, 255, 0.5);--popover-background:#3E4042;--positive:#31A24C;--positive-background:#1F3520;--press-overlay:rgba(255, 255, 255, 0.1);--primary-button-background:#0095F6;--primary-button-icon:#FFFFFF;--primary-button-pressed:#77A7FF;--primary-button-text:#FFFFFF;--primary-deemphasized-button-background:rgba(45, 136, 255, 0.2);--primary-deemphasized-button-pressed:rgba(24, 119, 242, 0.2);--primary-deemphasized-button-pressed-overlay:rgba(25, 110, 255, 0.15);--primary-deemphasized-button-text:#2D88FF;--primary-icon:#E4E6EB;--primary-text:#E4E6EB;--primary-text-on-media:white;--primary-web-focus-indicator:#D24294;--progress-ring-neutral-background:rgba(255, 255, 255, 0.2);--progress-ring-neutral-foreground:#ffffff;--progress-ring-on-media-background:rgba(255, 255, 255, 0.2);--progress-ring-on-media-foreground:#FFFFFF;--progress-ring-blue-background:rgba(45, 136, 255, 0.2);--progress-ring-blue-foreground:hsl(214, 100%, 59%);--progress-ring-disabled-background:rgba(122,125,130, 0.2);--progress-ring-disabled-foreground:#7A7D82;--rating-star-active:#FF9831;--scroll-thumb:rgba(255, 255, 255, 0.3);--scroll-shadow:0 1px 2px rgba(0, 0, 0, 0.1), 0 -1px rgba(255, 255, 255, 0.05) inset;--secondary-button-background:rgba(255,255,255,.1);--secondary-button-background-floating:#4B4C4F;--secondary-button-background-on-dark:rgba(255, 255, 255, 0.4);--secondary-button-pressed:rgba(0, 0, 0, 0.05);--secondary-button-stroke:transparent;--secondary-button-text:#E4E6EB;--secondary-icon:#B0B3B8;--secondary-text:#B0B3B8;--secondary-text-on-media:rgba(255, 255, 255, 0.9);--section-header-text:#BCC0C4;--shadow-1:rgba(0, 0, 0, 0.1);--shadow-2:rgba(0, 0, 0, 0.2);--shadow-5:rgba(0, 0, 0, 0.5);--shadow-8:rgba(0, 0, 0, 0.8);--shadow-inset:rgba(255, 255, 255, 0.05);--shadow-elevated:0 8px 20px 0 rgba(0, 0, 0, 0.2), 0 2px 4px 0 rgba(0, 0, 0, 0.1);--shadow-persistent:0px 0px 12px rgba(28, 43, 51, 0.6);--shadow-primary:0px 0px 12px rgba(28, 43, 51, 0.1);--surface-background:#242526;--switch-active:hsl(214, 100%, 59%);--text-highlight:rgba(24, 119, 242, 0.45);--text-input-background:#242526;--toast-background:#242526;--toast-text:#FFFFFF;--toast-text-link:#4599FF;--toggle-active-background:rgb(45, 136, 255);--toggle-active-icon:#FFFFFF;--toggle-active-text:#FFFFFF;--toggle-button-active-background:#E6F2FF;--wash:#3E4042;--web-wash:#18191A;--warning:hsl(40, 89%, 52%);--fb-logo-color:#2D88FF;--dialog-anchor-vertical-padding:56px;--header-height:0px;--global-panel-width:0px;--global-panel-width-expanded:0px;--alert-banner-corner-radius:8px;--button-corner-radius:4px;--button-corner-radius-medium:10px;--button-corner-radius-large:12px;--button-height-large:40px;--button-height-medium:36px;--button-padding-horizontal-large:16px;--button-padding-horizontal-medium:16px;--button-icon-padding-large:16px;--button-icon-padding-medium:16px;--button-inner-icon-spacing-large:3px;--button-inner-icon-spacing-medium:3px;--blueprint-button-height-medium:40px;--blueprint-button-height-large:48px;--card-corner-radius:4px;--card-box-shadow:0 12px 28px 0 var(--shadow-2), 0 2px 4px 0 var(--shadow-1);--card-padding-horizontal:10px;--card-padding-vertical:20px;--chip-corner-radius:6px;--dialog-corner-radius:8px;--glimmer-corner-radius:8px;--image-corner-radius:4px;--input-corner-radius:6px;--nav-list-cell-corner-radius:8px;--list-cell-corner-radius:8px;--list-cell-min-height:52px;--list-cell-padding-vertical:20px;--list-cell-padding-vertical-with-addon:14px;--nav-list-cell-min-height:0px;--nav-list-cell-padding-vertical:16px;--nav-list-cell-padding-vertical-with-addon:16px;--text-input-multi-padding-between-text-scrollbar:20px;--text-input-multi-padding-scrollbar:16px;--text-input-caption-margin-top:10px;--text-input-label-top:22px;--text-input-min-height:64px;--text-input-padding-vertical:12px;--toast-addon-padding-horizontal:6px;--toast-addon-padding-vertical:6px;--toast-container-max-width:100%;--toast-container-min-width:288px;--toast-container-padding-horizontal:10px;--toast-container-padding-vertical:16px;--toast-corner-radius:8px;--fds-animation-enter-exit-in:cubic-bezier(0.14, 1, 0.34, 1);--fds-animation-enter-exit-out:cubic-bezier(0.45, 0.1, 0.2, 1);--fds-animation-swap-shuffle-in:cubic-bezier(0.14, 1, 0.34, 1);--fds-animation-swap-shuffle-out:cubic-bezier(0.45, 0.1, 0.2, 1);--fds-animation-move-in:cubic-bezier(0.17, 0.17, 0, 1);--fds-animation-move-out:cubic-bezier(0.17, 0.17, 0, 1);--fds-animation-expand-collapse-in:cubic-bezier(0.17, 0.17, 0, 1);--fds-animation-expand-collapse-out:cubic-bezier(0.17, 0.17, 0, 1);--fds-animation-passive-move-in:cubic-bezier(0.5, 0, 0.1, 1);--fds-animation-passive-move-out:cubic-bezier(0.5, 0, 0.1, 1);--fds-animation-quick-move-in:cubic-bezier(0.1, 0.9, 0.2, 1);--fds-animation-quick-move-out:cubic-bezier(0.1, 0.9, 0.2, 1);--fds-animation-fade-in:cubic-bezier(0, 0, 1, 1);--fds-animation-fade-out:cubic-bezier(0, 0, 1, 1);--fds-duration-extra-extra-short-in:100ms;--fds-duration-extra-extra-short-out:100ms;--fds-duration-extra-short-in:200ms;--fds-duration-extra-short-out:150ms;--fds-duration-short-in:280ms;--fds-duration-short-out:200ms;--fds-duration-medium-in:400ms;--fds-duration-medium-out:350ms;--fds-duration-long-in:500ms;--fds-duration-long-out:350ms;--fds-duration-extra-long-in:1000ms;--fds-duration-extra-long-out:1000ms;--fds-duration-none:0ms;--fds-fast:200ms;--fds-slow:400ms;--font-family-apple:system-ui, -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', sans-serif;--font-family-code:ui-monospace, Menlo, Consolas, Monaco, monospace;--font-family-default:Helvetica, Arial, sans-serif;--font-family-segoe:Segoe UI Historic, Segoe UI, Helvetica, Arial, sans-serif;--body-font-family:Placeholder Font;--body-font-size:0.9375rem;--body-font-weight:400;--body-line-height:1.3333;--body-emphasized-font-family:Placeholder Font;--body-emphasized-font-size:0.9375rem;--body-emphasized-font-weight:600;--body-emphasized-line-height:1.3333;--headline1-font-family:Optimistic Display Bold, system-ui, sans-serif;--headline1-font-size:1.75rem;--headline1-font-weight:700;--headline1-line-height:1.2143;--headline2-font-family:Optimistic Display Bold, system-ui, sans-serif;--headline2-font-size:1.5rem;--headline2-font-weight:700;--headline2-line-height:1.25;--headline3-font-family:Optimistic Display Bold, system-ui, sans-serif;--headline3-font-size:1.0625rem;--headline3-font-weight:700;--headline3-line-height:1.2941;--meta-font-family:Placeholder Font;--meta-font-size:0.8125rem;--meta-font-weight:400;--meta-line-height:1.3846;--meta-emphasized-font-family:Placeholder Font;--meta-emphasized-font-size:0.8125rem;--meta-emphasized-font-weight:600;--meta-emphasized-line-height:1.3846;--primary-label-font-family:Optimistic Display Medium, system-ui, sans-serif;--primary-label-font-size:1.0625rem;--primary-label-font-weight:500;--primary-label-line-height:1.2941;--secondary-label-font-family:Placeholder Font;--secondary-label-font-size:0.9375rem;--secondary-label-font-weight:500;--secondary-label-line-height:1.3333;--text-input-field-font-family:Placeholder Font;--text-input-field-font-size:1rem;--text-input-field-font-weight:500;--text-input-field-line-height:1.2941;--text-input-label-font-family:Placeholder Font;--text-input-label-font-size:17px;--text-input-label-font-size-scale-multiplier:0.75;--text-input-label-font-weight:400;--text-input-label-line-height:1.2941;--dataviz-primary-2:rgb(134,218,255);--dataviz-primary-3:rgb(95,170,255);--dataviz-secondary-1:rgb(129,77,231);--dataviz-secondary-2:rgb(168,124,255);--dataviz-secondary-3:rgb(219,26,139);--dataviz-supplementary-1:rgb(255,122,105);--dataviz-supplementary-2:rgb(241,168,23);--dataviz-supplementary-3:rgb(49,162,76);--dataviz-supplementary-4:rgb(228,230,235);--base-unit:4px;--blue-0:245, 251, 255;--blue-1:224, 241, 255;--blue-2:179, 219, 255;--blue-3:112, 188, 255;--blue-4:71, 175, 255;--blue-5:0, 149, 246;--blue-6:0, 116, 204;--blue-7:0, 87, 163;--blue-8:0, 55, 107;--blue-9:0, 41, 82;--breakpoint-medium-width:1536px;--breakpoint-small-width:1024px;--challenge-width:460px;--creation-header-height:43px;--creation-min-padding-x:32px;--creation-modal-max-height:898px;--creation-modal-min-height:391px;--creation-padding-x:64px;--creation-padding-y:112px;--creation-settings-width:340px;--cyan-5:39, 196, 245;--desktop-grid-item-margin:28px;--desktop-in-feed-story-item-height:208px;--desktop-in-feed-story-item-width:116px;--desktop-nav-height:60px;--desktop-skinny-nav-height:60px;--direct-attachment-image-grid-item-size:78px;--direct-attachment-story-height:150px;--direct-attachment-story-large-height:256px;--direct-attachment-story-large-width:164px;--direct-attachment-story-width:84px;--direct-message-max-width:236px;--fb-signup-page-profile-pic-size:88px;--feed-sidebar-padding:32px;--feed-sidebar-width:319px;--feed-width:470px;--feed-width-wide-story:630px;--font-family-system:-apple-system, BlinkMacSystemFont, \\\\\\\"Segoe UI\\\\\\\", Roboto, Helvetica, Arial, sans-serif;--font-weight-system-bold:700;--font-weight-system-extra-bold:800;--font-weight-system-extra-light:200;--font-weight-system-light:300;--font-weight-system-medium:500;--font-weight-system-regular:400;--font-weight-system-semibold:600;--footer-width-wide:1150px;--gradient-lavender:211, 0, 197;--gradient-orange:255, 122, 0;--gradient-pink:255, 1, 105;--gradient-purple:118, 56, 250;--gradient-red:255, 48, 64;--gradient-yellow:255, 214, 0;--green-4:120, 222, 69;--green-5:88, 195, 34;--green-6:55, 166, 0;--grey-0:245, 245, 245;--grey-1:239, 239, 239;--grey-2:219, 219, 219;--grey-3:199, 199, 199;--grey-4:168, 168, 168;--grey-5:142, 142, 142;--grey-6:115, 115, 115;--grey-7:85, 85, 85;--grey-8:54, 54, 54;--grey-9:38, 38, 38;--grey-10:26, 26, 26;--ig-badge:255, 48, 64;--ig-close-friends-refreshed:28, 209, 79;--ig-disabled-action-text:169, 219, 255;--ig-error-or-destructive:237, 73, 86;--ig-facebook-blue:53, 121, 234;--ig-live-badge:255, 1, 105;--ig-primary-button:0, 149, 246;--ig-primary-button-hover:24, 119, 242;--ig-secondary-button-background:239, 239, 239;--ig-secondary-button-hover:219, 219, 219;--ig-secondary-button-focused:224, 241, 255;--ig-secondary-icon:142, 142, 142;--ig-stroke-on-media:255, 255, 255;--ig-tertiary-button-background:255, 255, 255;--ig-tertiary-button-border:219, 219, 219;--ig-tertiary-button-hover:245, 245, 245;--ig-tertiary-button-text:38, 38, 38;--ig-subscribers-only:118, 56, 250;--ig-success:88, 195, 34;--ig-text-on-color:255, 255, 255;--ig-text-on-media:255, 255, 255;--in-feed-story-item-height:240px;--in-feed-story-item-width:135px;--in-feed-story-item-padding:12px;--input-border-radius:6px;--large-layout-min:1500px;--live-video-border-radius:4px;--media-content-card-width:350px;--media-content-card-width-small:300px;--media-info:335px;--medium-layout-max:1499px;--medium-layout-min:1080px;--medium-screen-max:875px;--medium-screen-min:736px;--mobile-grid-item-margin:2px;--mobile-nav-height:45px;--modal-backdrop-dark:rgba(0, 0, 0, 0.85);--modal-backdrop-default:rgba(0, 0, 0, 0.65);--modal-border-radius:12px;--modal-padding:16px;--modal-z-index:100;--nav-narrow-width:72px;--nav-medium-width:244px;--nav-wide-width:335px;--nav-bottom-screen-max:767px;--nav-narrow-screen-min:768px;--nav-medium-screen-min:1264px;--nav-wide-screen-min:1920px;--orange-5:253, 141, 50;--photo:600px;--pink-5:209, 8, 105;--purple-5:163, 7, 186;--red-4:255, 104, 116;--red-5:237, 73, 86;--red-6:198, 35, 48;--red-7:167, 3, 17;--reels-large-screen-min:1366px;--refinement-section-height:50px;--revamp-nav-bottom-toolbar-height:50px;--revamp-feed-card-max-height:835px;--revamp-feed-card-min-height:615px;--revamp-feed-card-min-width:710px;--revamp-feed-card-media-min-width:390px;--revamp-feed-card-details-section-padding:16px;--revamp-feed-card-details-section-width:320px;--revamp-feed-card-details-section-width-xl:340px;--revamp-feed-horizontal-padding-small-screen:24px;--revamp-feed-horizontal-padding-large-screen:32px;--revamp-feed-vertical-padding:32px;--right-rail-width:300px;--scrollable-content-header-height-large:56px;--scrollable-content-header-height-med:49px;--scrollable-content-header-height:44px;--search-box-height:40px;--search-modal-height-expanded:450px;--search-modal-height:362px;--search-modal-top-offset:12px;--search-result-height:50px;--search-result-inline-top-offset:60px;--search-result-list-width:375px;--site-width-narrow:600px;--site-width-wide:935px;--small-layout-max:1079px;--small-layout-min:800px;--small-screen-max:735px;--small-screen-min:414px;--story-progressbar-update-tick:0.1s;--story-swap-animation-duration:350ms;--system-10-font-size:10px;--system-10-line-height:12px;--system-11-font-size:11px;--system-11-line-height:13px;--system-12-font-size:12px;--system-12-line-height:16px;--system-14-font-size:14px;--system-14-line-height:18px;--system-16-font-size:16px;--system-16-line-height:24px;--system-18-font-size:18px;--system-18-line-height:24px;--system-20-font-size:20px;--system-20-line-height:25px;--system-22-font-size:22px;--system-22-line-height:26px;--system-24-font-size:24px;--system-24-line-height:27px;--system-26-font-size:26px;--system-26-line-height:28px;--system-28-font-size:28px;--system-28-line-height:32px;--system-30-font-size:30px;--system-30-line-height:36px;--system-32-font-size:32px;--system-32-line-height:40px;--web-always-black:0, 0, 0;--web-always-white:255, 255, 255;--web-overlay-on-media:38, 38, 38;--web-secondary-action:224, 241, 255;--yellow-5:253, 203, 92;--challenge-link:219, 219, 219;--ig-banner-background:38, 38, 38;--ig-elevated-background:38, 38, 38;--ig-elevated-highlight-background:54, 54, 54;--ig-elevated-separator:54, 54, 54;--ig-focus-stroke:85, 85, 85;--ig-highlight-background:38, 38, 38;--ig-link:224, 241, 255;--ig-primary-background:0, 0, 0;--ig-primary-icon:245, 245, 245;--ig-primary-text:245, 245, 245;--ig-secondary-background:26, 26, 26;--ig-secondary-button:245, 245, 245;--ig-secondary-text:142, 142, 142;--ig-separator:38, 38, 38;--ig-stroke:54, 54, 54;--ig-temporary-highlight:0, 149, 246;--ig-tertiary-icon:115, 115, 115;--ig-tertiary-text:115, 115, 115;--post-separator:38, 38, 38;--tos-box-shadow:255, 255, 255;}<\\\\/style><style nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/style><script nonce=\\\\\\\"rELbEEkw\\\\\\\">__DEV__=0;function envFlush(a){function b(b){for(var c in a)b[c]=a[c]}window.requireLazy?window.requireLazy([\\\\\\\"Env\\\\\\\"],b):(window.Env=window.Env||{},b(window.Env))}envFlush({\\\\\\\"useTrustedTypes\\\\\\\":false,\\\\\\\"isTrustedTypesReportOnly\\\\\\\":false,\\\\\\\"enableDefaultTrustedTypesPolicy\\\\\\\":true,\\\\\\\"defaultTrustedTypesPolicyName\\\\\\\":\\\\\\\"igwww-alite-site\\\\\\\",\\\\\\\"scheduledCSSJSScheduler\\\\\\\":true,\\\\\\\"ig_server_override\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"compat_iframe_token\\\\\\\":null});__annotator=function(f){return f};__d_stub=[];__d=function(id,deps,factory,special){__d_stub.push([id,deps,factory,special]);};__rl_stub=[];requireLazy=function(){__rl_stub.push(arguments)};now_inl=(function(){var p=window.performance;return p&&p.now&&p.timing&&p.timing.navigationStart?function(){return p.now()+p.timing.navigationStart}:function(){return new Date().getTime()};})();_btldr={};qpl_inl=(function(){var data={};return function(i,n,t){if(!i)return data;if(!data[i])data[i]={};data[i][n]=t||now_inl();}})();qpl_tag=(function(){var data=[];return function(t){if(!t)return data;data.push(t);}})();(function(a){function b(b){if(!window.openDatabase)return;b.I_AM_INCOGNITO_AND_I_REALLY_NEED_WEBSQL=function(a,b,c,d){return window.openDatabase(a,b,c,d)};window.openDatabase=function(){throw new Error()}}b(a)})(this);\\\\\\\"use strict\\\\\\\";window.__SSRInit=function(a){var b=function(){},c={total:0},d=!1,e=null,f=!1,g=[\\\\\\\"success_status\\\\\\\",\\\\\\\"ROOT\\\\\\\",\\\\\\\"eid\\\\\\\"].filter(function(b){return!a[b]});g.length>0&&j(\\\\\\\"Error receiving SSRData: missing keys \\\\\\\"+g.toString());var h=document.getElementById(a.eid),i=[];h?a.gks.mwp_ssr_enabled?u(h):l():j(\\\\\\\"Error locating root element: \\\\\\\"+a.eid);function j(a){if(k())return;d=!0;eventEmitter.emitOnce(\\\\\\\"FIRSTPAYLOADINJECTED\\\\\\\",!1);v(a,\\\\\\\"ERROR\\\\\\\")}function k(){return!!e&&e.status===\\\\\\\"ERROR\\\\\\\"||d}function l(){j(a.disabled_status)}function m(b){window.qpl_inl(a.cavalry_get_lid,b)}function n(a){p(a)||j(\\\\\\\"Checks for useMatchViewport failed\\\\\\\")}function o(b){if(k())return;var c=b[0];if(!c){j(\\\\\\\"Empty SSR payload received\\\\\\\");return}i.push.apply(i,b);r(b);b=c.fizzRootId;var d=c.payloadType,e=c.status;if(b===null||!d||e!==a.success_status){if(e===a.disabled_status||e===a.bad_preloaders_status||e===a.unknown_boundaries_status){l();return}j(\\\\\\\"Error processing SSR payload \\\\\\\"+(c.id||\\\\\\\"Global\\\\\\\")+\\\\\\\": \\\\\\\"+e);return}d===\\\\\\\"FIRST\\\\\\\"?(s(b||\\\\\\\"\\\\\\\"),f=!0):d===\\\\\\\"LAST\\\\\\\"&&(f||s(b||\\\\\\\"\\\\\\\"),m(\\\\\\\"ssr_injected\\\\\\\"),m(\\\\\\\"ssr_inline_injector_ready\\\\\\\"),v(\\\\\\\"\\\\\\\",\\\\\\\"INJECTED\\\\\\\"))}function p(a){return!window.matchMedia?!1:a.every(function(a){var b=a.dimension,c=a.numPixels,d=a.operation;a=a.result;d=q(d,b,c);return window.matchMedia(d).matches===a})}function q(a,b,c){return\\\\\\\"(\\\\\\\"+a+\\\\\\\"-\\\\\\\"+b+\\\\\\\": \\\\\\\"+c+\\\\\\\"px)\\\\\\\"}function r(a){a.forEach(function(a){m(\\\\\\\"ssr_received_\\\\\\\"+(a.id||\\\\\\\"global_failure\\\\\\\"))})}function s(b){while(h==null?void 0:h.firstChild)(h==null?void 0:h.lastChild)&&h.removeChild(h==null?void 0:h.lastChild);b=document.getElementById(b);if(h&&b){var c=b.childNodes;while(c.length)h.appendChild(c[0]);b.remove()}a.gks.comet_ssr_wait_for_dev||t()}function t(){eventEmitter.emitOnce(\\\\\\\"FIRSTPAYLOADINJECTED\\\\\\\",!0)}function u(a){a.style.display=\\\\\\\"none\\\\\\\"}function v(d,f){window.__onSSRPayload=b,window.__onSSRViewportGuessValidation=b,a.gks.comet_ssr_wait_for_dev||t(),e={clickEvents:c,msg:d,processedPayloads:i,status:f,unbindListeners:b},eventEmitter.emitOnce(\\\\\\\"ALLPAYLOADSINJECTED\\\\\\\",e)}window.__isReactFizzContext=!0;window.__onSSRPayload=o;window.__SSREventEmitter=eventEmitter;window.__invalidateSSR=j;window.__logSSRQPL=m;window.__onSSRViewportGuessValidation=n;window.__shouldIgnoreSSRStaticId=a.should_ignore_static_id;a.gks.comet_ssr_wait_for_dev&&(window.__comet_ssr_continue=function(){t()});typeof window.requireLazy===\\\\\\\"function\\\\\\\"&&window.requireLazy([\\\\\\\"ReactDOMComet\\\\\\\"],function(a){m(\\\\\\\"ssr_reactdom_ready\\\\\\\")})};var eventEmitter={emit:function(a,b){eventEmitter.events[a]&&eventEmitter.events[a].map(function(a){return a&&typeof a===\\\\\\\"function\\\\\\\"&&a(b)}),eventEmitter.eventsEmitted[a]={args:b}},emitOnce:function(a,b){a in eventEmitter.eventsEmitted||eventEmitter.emit(a,b)},events:{},eventsEmitted:{},on:function(a,b){var c=eventEmitter.eventsEmitted[a];if(c){b&&typeof b===\\\\\\\"function\\\\\\\"&&b(c.args);return}!eventEmitter.events[a]?eventEmitter.events[a]=[b]:eventEmitter.events[a].push(b)}};<\\\\/script><script>qpl_inl(\\\\\\\"7207810428377462419\\\\\\\",\\\\\\\"htmlStart\\\\\\\");<\\\\/script>\\\\n<script type=\\\\\\\"application\\\\/json\\\\\\\" data-content-len=\\\\\\\"82\\\\\\\" data-sjs>{\\\\\\\"require\\\\\\\":[[\\\\\\\"qplTimingsServerJS\\\\\\\",null,null,[\\\\\\\"7207810428377462419\\\\\\\",\\\\\\\"htmlStart\\\\\\\"]]]}<\\\\/script>\\\\n<script>qpl_inl(\\\\\\\"7207810428377462419-server\\\\\\\",\\\\\\\"htmlStart\\\\\\\",46);<\\\\/script>\\\\n<script type=\\\\\\\"application\\\\/json\\\\\\\" data-content-len=\\\\\\\"92\\\\\\\" data-sjs>{\\\\\\\"require\\\\\\\":[[\\\\\\\"qplTimingsServerJS\\\\\\\",null,null,[\\\\\\\"7207810428377462419-server\\\\\\\",\\\\\\\"htmlStart\\\\\\\",46]]]}<\\\\/script>\\\\n<title>Instagram<\\\\/title>\\\\n<script>requireLazy([\\\\\\\"HasteSupportData\\\\\\\"],function(m){m.handle({\\\\\\\"bxData\\\\\\\":{\\\\\\\"1160057\\\\\\\":{\\\\\\\"uri\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/y7\\\\\\\\\\\\/r\\\\\\\\\\\\/s_LXY1yMsCT.svg\\\\\\\"},\\\\\\\"1160058\\\\\\\":{\\\\\\\"uri\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/yN\\\\\\\\\\\\/r\\\\\\\\\\\\/MnQWcWb6SrY.svg\\\\\\\"},\\\\\\\"1160060\\\\\\\":{\\\\\\\"uri\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/y5\\\\\\\\\\\\/r\\\\\\\\\\\\/Mszq4yIBziR.svg\\\\\\\"},\\\\\\\"1160061\\\\\\\":{\\\\\\\"uri\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/yu\\\\\\\\\\\\/r\\\\\\\\\\\\/Ddk-AuWE7VS.svg\\\\\\\"},\\\\\\\"6022\\\\\\\":{\\\\\\\"uri\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/yZ\\\\\\\\\\\\/r\\\\\\\\\\\\/WuT1LYDBD4A.m4a\\\\\\\"}},\\\\\\\"clpData\\\\\\\":{\\\\\\\"1791\\\\\\\":{\\\\\\\"r\\\\\\\":1},\\\\\\\"3707\\\\\\\":{\\\\\\\"r\\\\\\\":1,\\\\\\\"s\\\\\\\":1},\\\\\\\"3949\\\\\\\":{\\\\\\\"r\\\\\\\":1},\\\\\\\"3950\\\\\\\":{\\\\\\\"r\\\\\\\":1},\\\\\\\"1744178\\\\\\\":{\\\\\\\"r\\\\\\\":1,\\\\\\\"s\\\\\\\":1},\\\\\\\"1814852\\\\\\\":{\\\\\\\"r\\\\\\\":1,\\\\\\\"s\\\\\\\":1},\\\\\\\"1838142\\\\\\\":{\\\\\\\"r\\\\\\\":1,\\\\\\\"s\\\\\\\":1},\\\\\\\"1801\\\\\\\":{\\\\\\\"r\\\\\\\":1,\\\\\\\"s\\\\\\\":1},\\\\\\\"1802\\\\\\\":{\\\\\\\"r\\\\\\\":1,\\\\\\\"s\\\\\\\":1},\\\\\\\"2514\\\\\\\":{\\\\\\\"r\\\\\\\":1,\\\\\\\"s\\\\\\\":1},\\\\\\\"3719\\\\\\\":{\\\\\\\"r\\\\\\\":1,\\\\\\\"s\\\\\\\":1},\\\\\\\"1743656\\\\\\\":{\\\\\\\"r\\\\\\\":1,\\\\\\\"s\\\\\\\":1},\\\\\\\"1744251\\\\\\\":{\\\\\\\"r\\\\\\\":100,\\\\\\\"s\\\\\\\":1},\\\\\\\"1836368\\\\\\\":{\\\\\\\"r\\\\\\\":1,\\\\\\\"s\\\\\\\":1},\\\\\\\"1744234\\\\\\\":{\\\\\\\"r\\\\\\\":1},\\\\\\\"1744552\\\\\\\":{\\\\\\\"r\\\\\\\":10000,\\\\\\\"s\\\\\\\":1},\\\\\\\"1829320\\\\\\\":{\\\\\\\"r\\\\\\\":1,\\\\\\\"s\\\\\\\":1},\\\\\\\"1829321\\\\\\\":{\\\\\\\"r\\\\\\\":1,\\\\\\\"s\\\\\\\":1},\\\\\\\"1837559\\\\\\\":{\\\\\\\"r\\\\\\\":1,\\\\\\\"s\\\\\\\":1},\\\\\\\"1276\\\\\\\":{\\\\\\\"r\\\\\\\":10000,\\\\\\\"s\\\\\\\":1},\\\\\\\"4193\\\\\\\":{\\\\\\\"r\\\\\\\":1,\\\\\\\"s\\\\\\\":1},\\\\\\\"4344\\\\\\\":{\\\\\\\"r\\\\\\\":1,\\\\\\\"s\\\\\\\":1},\\\\\\\"3351\\\\\\\":{\\\\\\\"r\\\\\\\":1,\\\\\\\"s\\\\\\\":1},\\\\\\\"1843988\\\\\\\":{\\\\\\\"r\\\\\\\":1,\\\\\\\"s\\\\\\\":1},\\\\\\\"3255\\\\\\\":{\\\\\\\"r\\\\\\\":1,\\\\\\\"s\\\\\\\":1},\\\\\\\"3257\\\\\\\":{\\\\\\\"r\\\\\\\":1,\\\\\\\"s\\\\\\\":1},\\\\\\\"3258\\\\\\\":{\\\\\\\"r\\\\\\\":1,\\\\\\\"s\\\\\\\":1}},\\\\\\\"gkxData\\\\\\\":{\\\\\\\"2644\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7mI6K8vTz0G2gqwcU\\\\\\\"},\\\\\\\"4942\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6vxnt_djcMW8SQspg\\\\\\\"},\\\\\\\"4946\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT50Gg5yts-BmFrdteg\\\\\\\"},\\\\\\\"4950\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7EhmBWKm11fsotxZ4\\\\\\\"},\\\\\\\"4951\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6fL3tAjP3geUI2kWs\\\\\\\"},\\\\\\\"5207\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT73ouJpUXGI2U-TOz4\\\\\\\"},\\\\\\\"4796\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7JKBdiRaGFqZ88hvU\\\\\\\"},\\\\\\\"4815\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7jwZaquWirnJ5hG3U\\\\\\\"},\\\\\\\"4845\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6-8cuRKcjFa5sIgbI\\\\\\\"},\\\\\\\"4911\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6zHevjrn8t5OOuM9k\\\\\\\"},\\\\\\\"4923\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7GCq770dmAOAKCSJc\\\\\\\"},\\\\\\\"4954\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT74fI-Ee9aScI8hmzM\\\\\\\"},\\\\\\\"4955\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4Ze_o5uVratxr2Qso\\\\\\\"},\\\\\\\"4956\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6I_8AWh5srRacienY\\\\\\\"},\\\\\\\"4957\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7g0zmn8Cwbwp_5BpY\\\\\\\"},\\\\\\\"1407\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT580PbjBSL9srk9qGM\\\\\\\"},\\\\\\\"1715\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT5zJzgdlibWaOg3lX0\\\\\\\"},\\\\\\\"2645\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6JcCzTcHgDIElHMtU\\\\\\\"},\\\\\\\"4824\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT63XkdVPHzi7R2Hw3w\\\\\\\"},\\\\\\\"4880\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6R9leZJM8MgClxI5Q\\\\\\\"},\\\\\\\"4882\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT5vlOTujqD_jUh0vWs\\\\\\\"},\\\\\\\"4885\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6Scis3t-QrqdQg8KE\\\\\\\"},\\\\\\\"4977\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT5S9_tzgpD4nyaj0sU\\\\\\\"},\\\\\\\"4994\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT5gPpd2339XZyFUKrU\\\\\\\"},\\\\\\\"5016\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT5AbYrMvy8aHBiOHs8\\\\\\\"},\\\\\\\"4869\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4zpSsNwJyA3fAmEwc\\\\\\\"},\\\\\\\"4871\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7xq9nantMspv3yf68\\\\\\\"},\\\\\\\"4813\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4zaM5H_8ZI6H51aCA\\\\\\\"},\\\\\\\"1397\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4keGCEVCr_Dt41ya4\\\\\\\"},\\\\\\\"3534\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4787roDQDAXtpLlAY\\\\\\\"},\\\\\\\"2262\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7m1lpTcig1NOC2XvA\\\\\\\"},\\\\\\\"4849\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7944xa7OdHpsOG5II\\\\\\\"},\\\\\\\"4913\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6xzKFxL1Ghnuofac8\\\\\\\"},\\\\\\\"4915\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4Buika8WvVKOXSeJw\\\\\\\"},\\\\\\\"4916\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT5pUaLkBqG1KoiPnAk\\\\\\\"},\\\\\\\"4937\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT721QPuIPyzp34tACM\\\\\\\"},\\\\\\\"5048\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT5Kd2Kd0lgxI8MnYco\\\\\\\"},\\\\\\\"5051\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4vzKlaIxUNA6P4zuw\\\\\\\"},\\\\\\\"4904\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7rOlF7veVioclv7Rw\\\\\\\"},\\\\\\\"4905\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6Ho94zve9DYrTqLa8\\\\\\\"},\\\\\\\"4912\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6Cu6qnyU9nPQis0MM\\\\\\\"},\\\\\\\"5978\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6R0t7E9kYf7qwTBZs\\\\\\\"},\\\\\\\"4958\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7xIi4TsNUu5r7ycuc\\\\\\\"},\\\\\\\"4959\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7vrCtcejFxS7KJzqQ\\\\\\\"},\\\\\\\"4960\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT62tJ9oyfxSfEjsYTc\\\\\\\"},\\\\\\\"4974\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6t4EbirBETU7BIV8s\\\\\\\"},\\\\\\\"4383\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT5whKRqJWvjZWVmGxQ\\\\\\\"},\\\\\\\"4780\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4j8PcaI_nN4JEOGNs\\\\\\\"},\\\\\\\"4927\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7hw9ACzgZsI4RBbuk\\\\\\\"},\\\\\\\"5305\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4MXTtvziNH7yMxI5c\\\\\\\"},\\\\\\\"4848\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4t3usnrmzV4AaLn08\\\\\\\"},\\\\\\\"4933\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4_1XEfpO_YDy2K4jA\\\\\\\"},\\\\\\\"7212\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6rY56rKjwdhwaGG2s\\\\\\\"},\\\\\\\"443\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4h1HaIxHYZn6IYrLg\\\\\\\"},\\\\\\\"451\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4ag1FobPr8nMWreig\\\\\\\"},\\\\\\\"1393\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT42aEHIHsK_NxGQsEA\\\\\\\"},\\\\\\\"1459\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT60sF8lwSNwCEwZmhA\\\\\\\"},\\\\\\\"1465\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7xYfmgiZ3heiVqIkw\\\\\\\"},\\\\\\\"1475\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7kEzfGQyTYdZJbGzY\\\\\\\"},\\\\\\\"1705\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT45JGOqDPcAMbr3ok4\\\\\\\"},\\\\\\\"2755\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT5UMQkR8ly2W4m145Q\\\\\\\"},\\\\\\\"2772\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT5Eu244WIce7iwqh24\\\\\\\"},\\\\\\\"2979\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT52_r3YZvW6GxvhxXs\\\\\\\"},\\\\\\\"3404\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4wMZMWwnW5SJKEcFQ\\\\\\\"},\\\\\\\"3446\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT5Jr6UXVhj3ffyymWQ\\\\\\\"},\\\\\\\"3621\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT77rRhVv9YO-zVZIPk\\\\\\\"},\\\\\\\"3644\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7MMG5fbtaxY0c2FEU\\\\\\\"},\\\\\\\"3662\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT425nnr7oiZH9yMyiY\\\\\\\"},\\\\\\\"3663\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT5L-vX64jrJbYFhkw4\\\\\\\"},\\\\\\\"3752\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6eS5UTkkMp_xbPGO8\\\\\\\"},\\\\\\\"3831\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4W23lQ0XxAZniMi6s\\\\\\\"},\\\\\\\"4075\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4_ZQi0sTjSt-RxTs0\\\\\\\"},\\\\\\\"4166\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7yrb5QuQ92736uWgU\\\\\\\"},\\\\\\\"4180\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6ZBPDX_t1nVduV9tY\\\\\\\"},\\\\\\\"4638\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT5RMJE1yJSepmApVNU\\\\\\\"},\\\\\\\"4639\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6fuwnCZ25Hjx2lIZ8\\\\\\\"},\\\\\\\"5173\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT719vu1BCC8wvN05GM\\\\\\\"},\\\\\\\"5383\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6qiZkZUP-oosQ1QtY\\\\\\\"},\\\\\\\"5403\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT5zCIAplAr2jSMZZDY\\\\\\\"},\\\\\\\"5541\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT70V-Q_zfEykznOLoY\\\\\\\"},\\\\\\\"5945\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT75NnnIUkzdzhWfZbQ\\\\\\\"},\\\\\\\"6196\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT79LaB9hNdhYgx4ntc\\\\\\\"},\\\\\\\"7761\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6LA2nzmCK672tu4Dg\\\\\\\"},\\\\\\\"7762\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4u0kGjAskdaKROJoc\\\\\\\"},\\\\\\\"8126\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4U7qG06p9sF6u8QGE\\\\\\\"},\\\\\\\"676837\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4N8wBZA8ctCdHwlHk\\\\\\\"},\\\\\\\"678680\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4Y-6Ul9ZZckQZn5Ps\\\\\\\"},\\\\\\\"708253\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT5n4hBL3YTMnQWtx-o\\\\\\\"},\\\\\\\"996940\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7opYuEGy3sjG1aZCw\\\\\\\"},\\\\\\\"1070695\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT711tHzdMfRy3F36tM\\\\\\\"},\\\\\\\"1099893\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT5kly2LSZV_DKGRFGQ\\\\\\\"},\\\\\\\"1167394\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7BpN-tlUPwbIIFzhU\\\\\\\"},\\\\\\\"1217157\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6B7YmllOsArnK6Bms\\\\\\\"},\\\\\\\"1224637\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7JRluWxuwDm3XzXeM\\\\\\\"},\\\\\\\"1263340\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT5bwizWgDaFQudmU7M\\\\\\\"},\\\\\\\"1407308\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6g20u7kv9f37jOOq0\\\\\\\"},\\\\\\\"1554827\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7zueGLhGo0cT5xjZc\\\\\\\"},\\\\\\\"1616314\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6Zl4nWIeZ_AYDrz4Y\\\\\\\"},\\\\\\\"1642984\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT71oE1xc4ID8xb4zwU\\\\\\\"},\\\\\\\"1703328\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT49L03pP2X9HmsnsNk\\\\\\\"},\\\\\\\"1721477\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT70IfYeUvLOKY5YY2g\\\\\\\"},\\\\\\\"1738486\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4cX37oQco6DwhUXPA\\\\\\\"},\\\\\\\"1778371\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6HtWXGEXFDQ5JjhZo\\\\\\\"},\\\\\\\"1861546\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7TDKkMR4gPryZgQWA\\\\\\\"},\\\\\\\"1902022\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7WD_stYlEMqW8cmCE\\\\\\\"},\\\\\\\"1902661\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT48eoL9MpGKmdHLuyQ\\\\\\\"},\\\\\\\"1914427\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7r7RL9lwTjh6wxubo\\\\\\\"},\\\\\\\"1934926\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT46kKhfIFLWq906-sU\\\\\\\"},\\\\\\\"841\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4UCZEzELQutUdaiHU\\\\\\\"},\\\\\\\"3598\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4R-V-zd8OVuUkTpDU\\\\\\\"},\\\\\\\"1707273\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT5oTb36da_qc9QIdgg\\\\\\\"},\\\\\\\"1863055\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7ONu9dmdwXlowbUlk\\\\\\\"},\\\\\\\"227\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT5yXnJxXfkiddJS5Ss\\\\\\\"},\\\\\\\"229\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6ACjjf9sN9o2h-lOM\\\\\\\"},\\\\\\\"231\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT5RtBjo7qezdTuhCL0\\\\\\\"},\\\\\\\"233\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7HvkjZGXZeuumhRCs\\\\\\\"},\\\\\\\"235\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4gizq47dTbAJ5j4RE\\\\\\\"},\\\\\\\"751\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7TXp0TTlIecYKJDmc\\\\\\\"},\\\\\\\"1682\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4jNPAkujFdMYkDZbU\\\\\\\"},\\\\\\\"2030\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT77OC0fYHb5VHYBhCI\\\\\\\"},\\\\\\\"2254\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4NaskuQ6OBD3qC0XI\\\\\\\"},\\\\\\\"2448\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7EwlgtPzpIx-1Q9ZY\\\\\\\"},\\\\\\\"2458\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT5Dy7G1iL0c6SKnQ7w\\\\\\\"},\\\\\\\"2460\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7ffZvWU_0qVGTWk-k\\\\\\\"},\\\\\\\"2581\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4iw_6E9ISmVfQLp7k\\\\\\\"},\\\\\\\"3113\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT62rYmiG2m7X5P116s\\\\\\\"},\\\\\\\"3140\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT5-c9fjLEKqfwwANTA\\\\\\\"},\\\\\\\"3400\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT5LV5sAIJng7-zcmwQ\\\\\\\"},\\\\\\\"3579\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4GLroqi1faSYwdPCQ\\\\\\\"},\\\\\\\"3587\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT77w5IYSPt6bAQqOyw\\\\\\\"},\\\\\\\"3799\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7faoER21EJi6FSUJQ\\\\\\\"},\\\\\\\"4435\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7J_frtMJbbiuSsQco\\\\\\\"},\\\\\\\"4781\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4lifq85C9foEKzz1M\\\\\\\"},\\\\\\\"5564\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6p7zxz4X9cAT6CJrY\\\\\\\"},\\\\\\\"6810\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6JsT-epn3stgDmq6c\\\\\\\"},\\\\\\\"1133447\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6gnU9itzgx89tyRBQ\\\\\\\"},\\\\\\\"1151941\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4VtFw2xNGXhISy8VI\\\\\\\"},\\\\\\\"1243442\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6H-KKvL_2kq8U2HRc\\\\\\\"},\\\\\\\"1250838\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7z1NkFlLfUKocWfsE\\\\\\\"},\\\\\\\"1382775\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7D5sd_gmE2NRtmlBA\\\\\\\"},\\\\\\\"1383502\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT51zMR8DxFUUVJ8Sts\\\\\\\"},\\\\\\\"1388683\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT63PwzAsKGj12Q6qSI\\\\\\\"},\\\\\\\"1723588\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT485K2jwU-S2ruRACE\\\\\\\"},\\\\\\\"1872325\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4WDV07rUK5enGi1ic\\\\\\\"},\\\\\\\"1969466\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT5pb0-O1YUbvm8nMqM\\\\\\\"},\\\\\\\"1426\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4rfyyNv13TbBZ8HUs\\\\\\\"},\\\\\\\"6751\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4_Q5AqWq6jnR2CcyY\\\\\\\"},\\\\\\\"6830\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6WoYIwb5Y6x569Fcs\\\\\\\"},\\\\\\\"7126\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6zxeBPQBB-VYg0xeM\\\\\\\"},\\\\\\\"1018547\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT5OYJhHTg1FexdZDmw\\\\\\\"},\\\\\\\"1501502\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7iuJThg2U6GkqTmKw\\\\\\\"},\\\\\\\"5301\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4Yo_gS8iWglQuUTaM\\\\\\\"},\\\\\\\"1690028\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7vV-7CyHNNfGJoUg4\\\\\\\"},\\\\\\\"680\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4j6gtWFSIkh2pHpQc\\\\\\\"},\\\\\\\"1292\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6KRRnA6-Re_k9KXlw\\\\\\\"},\\\\\\\"1485\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4WNLTpxBYFwessDIc\\\\\\\"},\\\\\\\"4138\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6AOrFOG4QbAvJe3tM\\\\\\\"},\\\\\\\"4527\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT5vKkT8tv-GUeP8tg0\\\\\\\"},\\\\\\\"5133\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7c7_HO9eJTzx2A4vI\\\\\\\"},\\\\\\\"5205\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4tOojq3gzI7IFZTgc\\\\\\\"},\\\\\\\"5574\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7t8_-pqYHCqFfTrZ4\\\\\\\"},\\\\\\\"5735\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT55xkQWRLxMd5Tj4m4\\\\\\\"},\\\\\\\"6098\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT66f_Ky9tZPqwuhi_c\\\\\\\"},\\\\\\\"7227\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4YVb6B882HzhAsG1k\\\\\\\"},\\\\\\\"7849\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7m5s5gN6uIZK_JD5Y\\\\\\\"},\\\\\\\"894204\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7MWh7MKvvrwCN_Kig\\\\\\\"},\\\\\\\"938288\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT60802ujA6R5kZSNyM\\\\\\\"},\\\\\\\"947903\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT5C_9W30waBxHKUNHU\\\\\\\"},\\\\\\\"976093\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6Tnn67lHNTT5Cpels\\\\\\\"},\\\\\\\"1163255\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4p5wUSMH_kRx_dSJU\\\\\\\"},\\\\\\\"1249968\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT5AlPmWHlKvEcrjxLk\\\\\\\"},\\\\\\\"1299319\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7zRIpVRWl8hiUY6To\\\\\\\"},\\\\\\\"1352928\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7bJwS1VNOxBUhsQxo\\\\\\\"},\\\\\\\"1470120\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7hoNhuKStHslT5BxM\\\\\\\"},\\\\\\\"1564135\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7iTOcLJuIIpIfCL3I\\\\\\\"},\\\\\\\"1613919\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7bXvwviv8GGfF3jmU\\\\\\\"},\\\\\\\"1626006\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4_TZlW-MUS84RE6uQ\\\\\\\"},\\\\\\\"1657807\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT5GneaEpFhH-amrDo0\\\\\\\"},\\\\\\\"1661552\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT5w2VaBMxRPfMyWSlI\\\\\\\"},\\\\\\\"1806005\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4tOLFFU6SFy7iTap8\\\\\\\"},\\\\\\\"4240\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6WMihLvltJm0UjSSw\\\\\\\"},\\\\\\\"1787898\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT5WGsLz9GCUYq8ULCg\\\\\\\"},\\\\\\\"1924645\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7xqjINkJcipyjZ9hE\\\\\\\"},\\\\\\\"437\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT5Wtli8NHvdh5id8_I\\\\\\\"},\\\\\\\"3097\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4WwyVfFeQ8ETVRGsM\\\\\\\"},\\\\\\\"6017\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6VK36mN-p0kfQgiBA\\\\\\\"},\\\\\\\"950768\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT434vVJ93bUu52yhuo\\\\\\\"},\\\\\\\"1293035\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6f-b10jzF6b9M9z3k\\\\\\\"},\\\\\\\"1537962\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6YWgGMjb0fUWs1_bM\\\\\\\"},\\\\\\\"517\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6nhZGTa49R4qYbrro\\\\\\\"},\\\\\\\"1703425\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT5M5FNRBAvWiZomJRE\\\\\\\"},\\\\\\\"4139\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4LbxUvoUGPs9scsq0\\\\\\\"},\\\\\\\"7997\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6K4DRNH52GDaFqSnk\\\\\\\"},\\\\\\\"1017\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT5EgflRyQ0aGZjGihY\\\\\\\"},\\\\\\\"3550\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT48h6g3XAeQDGMQfwI\\\\\\\"},\\\\\\\"3855\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT65bmxPO0JXv9s73Mg\\\\\\\"},\\\\\\\"4309\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4gPlTz1LN9a-ku1Vg\\\\\\\"},\\\\\\\"157\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4iLFeITcgQsXY_Mfg\\\\\\\"},\\\\\\\"1073500\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7aJmfnqWyioxOOyUc\\\\\\\"},\\\\\\\"201\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT4alnh_4NnV8Qd_QX4\\\\\\\"},\\\\\\\"2257\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT5Mac_Q9jALVGtdxlY\\\\\\\"},\\\\\\\"6361\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6feNNR6dFIlUi30Rw\\\\\\\"},\\\\\\\"6862\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT68ofpcSp7CAzMd8eY\\\\\\\"},\\\\\\\"1291023\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT519LseIG1nwq3oayU\\\\\\\"},\\\\\\\"1399218\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6guCW1eyIkOV1EiuE\\\\\\\"},\\\\\\\"1401060\\\\\\\":{\\\\\\\"result\\\\\\\":true,\\\\\\\"hash\\\\\\\":\\\\\\\"AT5aetN5Gb3reIXVy5Q\\\\\\\"},\\\\\\\"1596063\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT7JHuDWtaOqRuBUDX4\\\\\\\"},\\\\\\\"1722014\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT6_M5gpc6RLrHjcPZw\\\\\\\"},\\\\\\\"1778302\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT65fisZhmc2X92E3Bs\\\\\\\"},\\\\\\\"1840809\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT5nYctoTsr7alRiYd0\\\\\\\"},\\\\\\\"1848749\\\\\\\":{\\\\\\\"result\\\\\\\":false,\\\\\\\"hash\\\\\\\":\\\\\\\"AT5GsH9Kb-3W-taZHGo\\\\\\\"}},\\\\\\\"ixData\\\\\\\":{\\\\\\\"162985\\\\\\\":{\\\\\\\"sprited\\\\\\\":0,\\\\\\\"uri\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/yN\\\\\\\\\\\\/r\\\\\\\\\\\\/vYZ-cWnQBuU.png\\\\\\\",\\\\\\\"width\\\\\\\":90,\\\\\\\"height\\\\\\\":72},\\\\\\\"162986\\\\\\\":{\\\\\\\"sprited\\\\\\\":0,\\\\\\\"uri\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/yw\\\\\\\\\\\\/r\\\\\\\\\\\\/dRVgh4McYBM.png\\\\\\\",\\\\\\\"width\\\\\\\":90,\\\\\\\"height\\\\\\\":72},\\\\\\\"162987\\\\\\\":{\\\\\\\"sprited\\\\\\\":0,\\\\\\\"uri\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/yT\\\\\\\\\\\\/r\\\\\\\\\\\\/DtjqdeBieqM.png\\\\\\\",\\\\\\\"width\\\\\\\":90,\\\\\\\"height\\\\\\\":72},\\\\\\\"162988\\\\\\\":{\\\\\\\"sprited\\\\\\\":0,\\\\\\\"uri\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/yW\\\\\\\\\\\\/r\\\\\\\\\\\\/p5l9c5zF5rO.png\\\\\\\",\\\\\\\"width\\\\\\\":90,\\\\\\\"height\\\\\\\":72},\\\\\\\"162991\\\\\\\":{\\\\\\\"sprited\\\\\\\":0,\\\\\\\"uri\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/yK\\\\\\\\\\\\/r\\\\\\\\\\\\/S4AiHXvyZbY.png\\\\\\\",\\\\\\\"width\\\\\\\":90,\\\\\\\"height\\\\\\\":72},\\\\\\\"162992\\\\\\\":{\\\\\\\"sprited\\\\\\\":0,\\\\\\\"uri\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/yz\\\\\\\\\\\\/r\\\\\\\\\\\\/hjlUOCeAPgV.png\\\\\\\",\\\\\\\"width\\\\\\\":90,\\\\\\\"height\\\\\\\":72},\\\\\\\"162994\\\\\\\":{\\\\\\\"sprited\\\\\\\":0,\\\\\\\"uri\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/yU\\\\\\\\\\\\/r\\\\\\\\\\\\/LlAAxsz8baJ.png\\\\\\\",\\\\\\\"width\\\\\\\":142,\\\\\\\"height\\\\\\\":35},\\\\\\\"162995\\\\\\\":{\\\\\\\"sprited\\\\\\\":0,\\\\\\\"uri\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/yK\\\\\\\\\\\\/r\\\\\\\\\\\\/V4xamCor5vc.png\\\\\\\",\\\\\\\"width\\\\\\\":160,\\\\\\\"height\\\\\\\":30},\\\\\\\"162996\\\\\\\":{\\\\\\\"sprited\\\\\\\":0,\\\\\\\"uri\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/ye\\\\\\\\\\\\/r\\\\\\\\\\\\/kYahnENm9WA.png\\\\\\\",\\\\\\\"width\\\\\\\":90,\\\\\\\"height\\\\\\\":72},\\\\\\\"162997\\\\\\\":{\\\\\\\"sprited\\\\\\\":0,\\\\\\\"uri\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/y-\\\\\\\\\\\\/r\\\\\\\\\\\\/_iW8nyl4elS.png\\\\\\\",\\\\\\\"width\\\\\\\":90,\\\\\\\"height\\\\\\\":72},\\\\\\\"162998\\\\\\\":{\\\\\\\"sprited\\\\\\\":0,\\\\\\\"uri\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/yE\\\\\\\\\\\\/r\\\\\\\\\\\\/aQN-NK__goD.png\\\\\\\",\\\\\\\"width\\\\\\\":56,\\\\\\\"height\\\\\\\":56},\\\\\\\"162999\\\\\\\":{\\\\\\\"sprited\\\\\\\":0,\\\\\\\"uri\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/y6\\\\\\\\\\\\/r\\\\\\\\\\\\/SNf2dNNPCMW.png\\\\\\\",\\\\\\\"width\\\\\\\":90,\\\\\\\"height\\\\\\\":72},\\\\\\\"163000\\\\\\\":{\\\\\\\"sprited\\\\\\\":0,\\\\\\\"uri\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/yJ\\\\\\\\\\\\/r\\\\\\\\\\\\/nBMTFjFGPyY.png\\\\\\\",\\\\\\\"width\\\\\\\":90,\\\\\\\"height\\\\\\\":72},\\\\\\\"162687\\\\\\\":{\\\\\\\"sprited\\\\\\\":0,\\\\\\\"uri\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/yL\\\\\\\\\\\\/r\\\\\\\\\\\\/G_yyNuxdk-F.png\\\\\\\",\\\\\\\"width\\\\\\\":192,\\\\\\\"height\\\\\\\":96},\\\\\\\"303380\\\\\\\":{\\\\\\\"sprited\\\\\\\":0,\\\\\\\"uri\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/yr\\\\\\\\\\\\/r\\\\\\\\\\\\/28x0bk6AFyo.png\\\\\\\",\\\\\\\"width\\\\\\\":96,\\\\\\\"height\\\\\\\":96},\\\\\\\"701592\\\\\\\":{\\\\\\\"sprited\\\\\\\":2,\\\\\\\"spi\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/yn\\\\\\\\\\\\/r\\\\\\\\\\\\/Zi1tFG7tCmt.png\\\\\\\",\\\\\\\"_spi\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/yn\\\\\\\\\\\\/r\\\\\\\\\\\\/Zi1tFG7tCmt.png\\\\\\\",\\\\\\\"w\\\\\\\":8,\\\\\\\"h\\\\\\\":8,\\\\\\\"p\\\\\\\":\\\\\\\"-173px -72px\\\\\\\",\\\\\\\"sz\\\\\\\":\\\\\\\"auto\\\\\\\"},\\\\\\\"702721\\\\\\\":{\\\\\\\"sprited\\\\\\\":2,\\\\\\\"spi\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/yn\\\\\\\\\\\\/r\\\\\\\\\\\\/Zi1tFG7tCmt.png\\\\\\\",\\\\\\\"_spi\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/yn\\\\\\\\\\\\/r\\\\\\\\\\\\/Zi1tFG7tCmt.png\\\\\\\",\\\\\\\"w\\\\\\\":8,\\\\\\\"h\\\\\\\":8,\\\\\\\"p\\\\\\\":\\\\\\\"-111px -225px\\\\\\\",\\\\\\\"sz\\\\\\\":\\\\\\\"auto\\\\\\\"},\\\\\\\"897949\\\\\\\":{\\\\\\\"sprited\\\\\\\":2,\\\\\\\"spi\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/yn\\\\\\\\\\\\/r\\\\\\\\\\\\/Zi1tFG7tCmt.png\\\\\\\",\\\\\\\"_spi\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/yn\\\\\\\\\\\\/r\\\\\\\\\\\\/Zi1tFG7tCmt.png\\\\\\\",\\\\\\\"w\\\\\\\":8,\\\\\\\"h\\\\\\\":8,\\\\\\\"p\\\\\\\":\\\\\\\"-175px -112px\\\\\\\",\\\\\\\"sz\\\\\\\":\\\\\\\"auto\\\\\\\"},\\\\\\\"1739808\\\\\\\":{\\\\\\\"sprited\\\\\\\":2,\\\\\\\"spi\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/yn\\\\\\\\\\\\/r\\\\\\\\\\\\/Zi1tFG7tCmt.png\\\\\\\",\\\\\\\"_spi\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/yn\\\\\\\\\\\\/r\\\\\\\\\\\\/Zi1tFG7tCmt.png\\\\\\\",\\\\\\\"w\\\\\\\":8,\\\\\\\"h\\\\\\\":8,\\\\\\\"p\\\\\\\":\\\\\\\"-177px -84px\\\\\\\",\\\\\\\"sz\\\\\\\":\\\\\\\"auto\\\\\\\"},\\\\\\\"478233\\\\\\\":{\\\\\\\"sprited\\\\\\\":2,\\\\\\\"spi\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/yn\\\\\\\\\\\\/r\\\\\\\\\\\\/Zi1tFG7tCmt.png\\\\\\\",\\\\\\\"_spi\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/yn\\\\\\\\\\\\/r\\\\\\\\\\\\/Zi1tFG7tCmt.png\\\\\\\",\\\\\\\"w\\\\\\\":20,\\\\\\\"h\\\\\\\":20,\\\\\\\"p\\\\\\\":\\\\\\\"-147px -145px\\\\\\\",\\\\\\\"sz\\\\\\\":\\\\\\\"auto\\\\\\\"},\\\\\\\"502062\\\\\\\":{\\\\\\\"sprited\\\\\\\":2,\\\\\\\"spi\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/yn\\\\\\\\\\\\/r\\\\\\\\\\\\/Zi1tFG7tCmt.png\\\\\\\",\\\\\\\"_spi\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/yn\\\\\\\\\\\\/r\\\\\\\\\\\\/Zi1tFG7tCmt.png\\\\\\\",\\\\\\\"w\\\\\\\":20,\\\\\\\"h\\\\\\\":20,\\\\\\\"p\\\\\\\":\\\\\\\"-105px -124px\\\\\\\",\\\\\\\"sz\\\\\\\":\\\\\\\"auto\\\\\\\"},\\\\\\\"512647\\\\\\\":{\\\\\\\"sprited\\\\\\\":2,\\\\\\\"spi\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/yn\\\\\\\\\\\\/r\\\\\\\\\\\\/Zi1tFG7tCmt.png\\\\\\\",\\\\\\\"_spi\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/yn\\\\\\\\\\\\/r\\\\\\\\\\\\/Zi1tFG7tCmt.png\\\\\\\",\\\\\\\"w\\\\\\\":20,\\\\\\\"h\\\\\\\":20,\\\\\\\"p\\\\\\\":\\\\\\\"-21px -124px\\\\\\\",\\\\\\\"sz\\\\\\\":\\\\\\\"auto\\\\\\\"},\\\\\\\"514454\\\\\\\":{\\\\\\\"sprited\\\\\\\":2,\\\\\\\"spi\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/yn\\\\\\\\\\\\/r\\\\\\\\\\\\/Zi1tFG7tCmt.png\\\\\\\",\\\\\\\"_spi\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/yn\\\\\\\\\\\\/r\\\\\\\\\\\\/Zi1tFG7tCmt.png\\\\\\\",\\\\\\\"w\\\\\\\":20,\\\\\\\"h\\\\\\\":20,\\\\\\\"p\\\\\\\":\\\\\\\"-63px -124px\\\\\\\",\\\\\\\"sz\\\\\\\":\\\\\\\"auto\\\\\\\"},\\\\\\\"222729\\\\\\\":{\\\\\\\"sprited\\\\\\\":0,\\\\\\\"uri\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/y7\\\\\\\\\\\\/r\\\\\\\\\\\\/KfWslvUGSoF.png\\\\\\\",\\\\\\\"width\\\\\\\":76,\\\\\\\"height\\\\\\\":76},\\\\\\\"222730\\\\\\\":{\\\\\\\"sprited\\\\\\\":2,\\\\\\\"spi\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/y6\\\\\\\\\\\\/r\\\\\\\\\\\\/UePLH8ZM9TU.png\\\\\\\",\\\\\\\"_spi\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/y6\\\\\\\\\\\\/r\\\\\\\\\\\\/UePLH8ZM9TU.png\\\\\\\",\\\\\\\"w\\\\\\\":175,\\\\\\\"h\\\\\\\":51,\\\\\\\"p\\\\\\\":\\\\\\\"0 -52px\\\\\\\",\\\\\\\"sz\\\\\\\":\\\\\\\"auto\\\\\\\"},\\\\\\\"222731\\\\\\\":{\\\\\\\"sprited\\\\\\\":2,\\\\\\\"spi\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/y6\\\\\\\\\\\\/r\\\\\\\\\\\\/UePLH8ZM9TU.png\\\\\\\",\\\\\\\"_spi\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/y6\\\\\\\\\\\\/r\\\\\\\\\\\\/UePLH8ZM9TU.png\\\\\\\",\\\\\\\"w\\\\\\\":175,\\\\\\\"h\\\\\\\":51,\\\\\\\"p\\\\\\\":\\\\\\\"0 0\\\\\\\",\\\\\\\"sz\\\\\\\":\\\\\\\"auto\\\\\\\"},\\\\\\\"478232\\\\\\\":{\\\\\\\"sprited\\\\\\\":2,\\\\\\\"spi\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/yn\\\\\\\\\\\\/r\\\\\\\\\\\\/Zi1tFG7tCmt.png\\\\\\\",\\\\\\\"_spi\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/yn\\\\\\\\\\\\/r\\\\\\\\\\\\/Zi1tFG7tCmt.png\\\\\\\",\\\\\\\"w\\\\\\\":16,\\\\\\\"h\\\\\\\":16,\\\\\\\"p\\\\\\\":\\\\\\\"-68px -208px\\\\\\\",\\\\\\\"sz\\\\\\\":\\\\\\\"auto\\\\\\\"},\\\\\\\"478231\\\\\\\":{\\\\\\\"sprited\\\\\\\":2,\\\\\\\"spi\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/yn\\\\\\\\\\\\/r\\\\\\\\\\\\/Zi1tFG7tCmt.png\\\\\\\",\\\\\\\"_spi\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/yn\\\\\\\\\\\\/r\\\\\\\\\\\\/Zi1tFG7tCmt.png\\\\\\\",\\\\\\\"w\\\\\\\":12,\\\\\\\"h\\\\\\\":12,\\\\\\\"p\\\\\\\":\\\\\\\"-138px -84px\\\\\\\",\\\\\\\"sz\\\\\\\":\\\\\\\"auto\\\\\\\"}},\\\\\\\"qexData\\\\\\\":{\\\\\\\"756\\\\\\\":{\\\\\\\"r\\\\\\\":false},\\\\\\\"1247\\\\\\\":{\\\\\\\"r\\\\\\\":false},\\\\\\\"286\\\\\\\":{\\\\\\\"r\\\\\\\":true},\\\\\\\"304\\\\\\\":{\\\\\\\"r\\\\\\\":false},\\\\\\\"1953\\\\\\\":{\\\\\\\"r\\\\\\\":false},\\\\\\\"468\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"495\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"89\\\\\\\":{\\\\\\\"r\\\\\\\":5},\\\\\\\"556\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"753\\\\\\\":{\\\\\\\"r\\\\\\\":false},\\\\\\\"958\\\\\\\":{\\\\\\\"r\\\\\\\":false},\\\\\\\"959\\\\\\\":{\\\\\\\"r\\\\\\\":false},\\\\\\\"961\\\\\\\":{\\\\\\\"r\\\\\\\":false},\\\\\\\"1244\\\\\\\":{\\\\\\\"r\\\\\\\":false},\\\\\\\"489\\\\\\\":{\\\\\\\"r\\\\\\\":false},\\\\\\\"694\\\\\\\":{\\\\\\\"r\\\\\\\":false},\\\\\\\"695\\\\\\\":{\\\\\\\"r\\\\\\\":false},\\\\\\\"696\\\\\\\":{\\\\\\\"r\\\\\\\":false},\\\\\\\"715\\\\\\\":{\\\\\\\"r\\\\\\\":false},\\\\\\\"1339\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"290\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"554\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"407\\\\\\\":{\\\\\\\"r\\\\\\\":false},\\\\\\\"877\\\\\\\":{\\\\\\\"r\\\\\\\":false},\\\\\\\"525\\\\\\\":{\\\\\\\"r\\\\\\\":true},\\\\\\\"723\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"1164\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"518\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"802\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"448\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"469\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"533\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"577\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"858\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"1322\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"2085\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"2086\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"2087\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"2088\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"2089\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"2090\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"2091\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"2092\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"652\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"658\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"742\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"743\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"20\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"32\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"49\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"181\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"472\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"768\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"932\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"954\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"956\\\\\\\":{\\\\\\\"r\\\\\\\":false},\\\\\\\"957\\\\\\\":{\\\\\\\"r\\\\\\\":false},\\\\\\\"976\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"1022\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"1242\\\\\\\":{\\\\\\\"r\\\\\\\":false},\\\\\\\"1637\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"1638\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"1639\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"1640\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"1641\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"1642\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"1643\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"1644\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"1645\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"1646\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"1647\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"752\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"83\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"193\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"388\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"549\\\\\\\":{\\\\\\\"r\\\\\\\":false},\\\\\\\"664\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"27\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"239\\\\\\\":{\\\\\\\"r\\\\\\\":false},\\\\\\\"240\\\\\\\":{\\\\\\\"r\\\\\\\":0},\\\\\\\"258\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"732\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"757\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"644\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"647\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"124\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"429\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"1375\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"336\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"404\\\\\\\":{\\\\\\\"r\\\\\\\":false},\\\\\\\"445\\\\\\\":{\\\\\\\"r\\\\\\\":null},\\\\\\\"465\\\\\\\":{\\\\\\\"r\\\\\\\":false}},\\\\\\\"qplData\\\\\\\":{\\\\\\\"192\\\\\\\":{\\\\\\\"r\\\\\\\":2000},\\\\\\\"21\\\\\\\":{\\\\\\\"r\\\\\\\":1},\\\\\\\"1411\\\\\\\":{\\\\\\\"r\\\\\\\":10000},\\\\\\\"1597\\\\\\\":{\\\\\\\"r\\\\\\\":1},\\\\\\\"5270\\\\\\\":{\\\\\\\"r\\\\\\\":1},\\\\\\\"6287\\\\\\\":{\\\\\\\"r\\\\\\\":1},\\\\\\\"6915\\\\\\\":{\\\\\\\"r\\\\\\\":1},\\\\\\\"8327\\\\\\\":{\\\\\\\"r\\\\\\\":1},\\\\\\\"1389\\\\\\\":{\\\\\\\"r\\\\\\\":2000},\\\\\\\"2401\\\\\\\":{},\\\\\\\"334\\\\\\\":{\\\\\\\"r\\\\\\\":2000},\\\\\\\"955\\\\\\\":{\\\\\\\"r\\\\\\\":6},\\\\\\\"1217\\\\\\\":{\\\\\\\"r\\\\\\\":1},\\\\\\\"1360\\\\\\\":{\\\\\\\"r\\\\\\\":100},\\\\\\\"2172\\\\\\\":{},\\\\\\\"2410\\\\\\\":{\\\\\\\"r\\\\\\\":1},\\\\\\\"3796\\\\\\\":{\\\\\\\"r\\\\\\\":6},\\\\\\\"5252\\\\\\\":{\\\\\\\"r\\\\\\\":6},\\\\\\\"6204\\\\\\\":{\\\\\\\"r\\\\\\\":5},\\\\\\\"6310\\\\\\\":{\\\\\\\"r\\\\\\\":1},\\\\\\\"6702\\\\\\\":{\\\\\\\"r\\\\\\\":1},\\\\\\\"13076\\\\\\\":{\\\\\\\"r\\\\\\\":6},\\\\\\\"152\\\\\\\":{\\\\\\\"r\\\\\\\":10},\\\\\\\"4342\\\\\\\":{}},\\\\\\\"justknobxData\\\\\\\":{\\\\\\\"48\\\\\\\":{\\\\\\\"r\\\\\\\":false},\\\\\\\"84\\\\\\\":{\\\\\\\"r\\\\\\\":true},\\\\\\\"144\\\\\\\":{\\\\\\\"r\\\\\\\":true},\\\\\\\"379\\\\\\\":{\\\\\\\"r\\\\\\\":true},\\\\\\\"380\\\\\\\":{\\\\\\\"r\\\\\\\":true},\\\\\\\"450\\\\\\\":{\\\\\\\"r\\\\\\\":true},\\\\\\\"643\\\\\\\":{\\\\\\\"r\\\\\\\":true},\\\\\\\"948\\\\\\\":{\\\\\\\"r\\\\\\\":false},\\\\\\\"1014\\\\\\\":{\\\\\\\"r\\\\\\\":true},\\\\\\\"76\\\\\\\":{\\\\\\\"r\\\\\\\":false},\\\\\\\"87\\\\\\\":{\\\\\\\"r\\\\\\\":true},\\\\\\\"306\\\\\\\":{\\\\\\\"r\\\\\\\":true},\\\\\\\"994\\\\\\\":{\\\\\\\"r\\\\\\\":true},\\\\\\\"71\\\\\\\":{\\\\\\\"r\\\\\\\":false},\\\\\\\"77\\\\\\\":{\\\\\\\"r\\\\\\\":true},\\\\\\\"80\\\\\\\":{\\\\\\\"r\\\\\\\":true},\\\\\\\"494\\\\\\\":{\\\\\\\"r\\\\\\\":true},\\\\\\\"589\\\\\\\":{\\\\\\\"r\\\\\\\":true},\\\\\\\"880\\\\\\\":{\\\\\\\"r\\\\\\\":false},\\\\\\\"992\\\\\\\":{\\\\\\\"r\\\\\\\":false},\\\\\\\"1003\\\\\\\":{\\\\\\\"r\\\\\\\":false},\\\\\\\"83\\\\\\\":{\\\\\\\"r\\\\\\\":true},\\\\\\\"138\\\\\\\":{\\\\\\\"r\\\\\\\":false},\\\\\\\"356\\\\\\\":{\\\\\\\"r\\\\\\\":true},\\\\\\\"624\\\\\\\":{\\\\\\\"r\\\\\\\":true},\\\\\\\"653\\\\\\\":{\\\\\\\"r\\\\\\\":20000},\\\\\\\"713\\\\\\\":{\\\\\\\"r\\\\\\\":true},\\\\\\\"887\\\\\\\":{\\\\\\\"r\\\\\\\":true},\\\\\\\"904\\\\\\\":{\\\\\\\"r\\\\\\\":true},\\\\\\\"905\\\\\\\":{\\\\\\\"r\\\\\\\":true},\\\\\\\"906\\\\\\\":{\\\\\\\"r\\\\\\\":true},\\\\\\\"55\\\\\\\":{\\\\\\\"r\\\\\\\":true},\\\\\\\"757\\\\\\\":{\\\\\\\"r\\\\\\\":false},\\\\\\\"82\\\\\\\":{\\\\\\\"r\\\\\\\":true},\\\\\\\"471\\\\\\\":{\\\\\\\"r\\\\\\\":false},\\\\\\\"341\\\\\\\":{\\\\\\\"r\\\\\\\":false},\\\\\\\"893\\\\\\\":{\\\\\\\"r\\\\\\\":false},\\\\\\\"990\\\\\\\":{\\\\\\\"r\\\\\\\":true},\\\\\\\"73\\\\\\\":{\\\\\\\"r\\\\\\\":25000}}})});requireLazy([\\\\\\\"Bootloader\\\\\\\"],function(m){m.handlePayload({\\\\\\\"consistency\\\\\\\":{\\\\\\\"rev\\\\\\\":1007064846},\\\\\\\"rsrcMap\\\\\\\":{\\\\\\\"RCicL6k\\\\\\\":{\\\\\\\"type\\\\\\\":\\\\\\\"css\\\\\\\",\\\\\\\"src\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/y5\\\\\\\\\\\\/l\\\\\\\\\\\\/0,cross\\\\\\\\\\\\/NLigj6UYroSio58CrqwPUK9szcxVHvixGEdxKy5ljS_I8ZqnleB8DIOJJZ3YTf_IXLjPRgSmz9VNtZFjX9BN4iYldk5NQi9Qp05488OnNKn0M5EkPTV0T5Z2Q3dE5t3lFkYO4gWvc1CB1ljdFet5mluCeF6kuD8eutweqDW-Se5FMchPW9NmTfEuq5j2IrvBc4RxXic1ZaPDFneNeQ8Jg1bs7hi9boXQljnypGkVWb8ArqCVh6tUmIWBRCDFB1APg3ZZicQWkoscH-GjRdhSgmvaLP1dlkxQrKK7oQQI6.css?_nc_x=Ij3Wp8lg5Kz\\\\\\\",\\\\\\\"c\\\\\\\":1,\\\\\\\"p\\\\\\\":\\\\\\\":9,130,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\"},\\\\\\\"GeEloy2\\\\\\\":{\\\\\\\"type\\\\\\\":\\\\\\\"css\\\\\\\",\\\\\\\"src\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/yW\\\\\\\\\\\\/l\\\\\\\\\\\\/0,cross\\\\\\\\\\\\/1J1cDW8Vk6vRkaFJC0lDWOZzYlIDVL8QlaWSzQeKDxQGZh-P7nqfC-IWZH6ymAazc2p1K0Hk2esoolGZA9lIRDXNIrXIElTSO6b9xFrESTIjMxFM0GiI7kCUm2rtpTwUa7QFpaYbNp27yi0Qo3q5RkjliL0lnrL2T09oKDIOW_lkuNVU4rQteKcsBGwISVSkI9CdClNnQVshgRVRvBbbnIjF0DcLa7Qvok-lcRq9MGvsHoQe89uudVtWDVc5KMPX83y2LBf2zkFBKku8gs6eEqV55i_WPEmZNIgo0wzd3wausBoIaeXo-XkA6kNk6ZI6PLlNyUkCQf.css?_nc_x=Ij3Wp8lg5Kz\\\\\\\",\\\\\\\"c\\\\\\\":1,\\\\\\\"p\\\\\\\":\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\"},\\\\\\\"LvXoXH8\\\\\\\":{\\\\\\\"type\\\\\\\":\\\\\\\"css\\\\\\\",\\\\\\\"src\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/yt\\\\\\\\\\\\/l\\\\\\\\\\\\/0,cross\\\\\\\\\\\\/uMM4wd_tQE_u9cs3WxR8gFg0_ToC5sufmawA0BpikNClY6NsIqjQf6C30ERq09YDKSF2LJP91rDVPZ7r_DR51GaC7SLiELVd6CWlrcocph76nfvHqzp-As_Vc6x684hGyRmY3ynG9LnmM2J-As4dJkHxRtL8o-bCCEV7MS-9K_q32o_b-DlIx6Qd4EBeZQYkrMZAnFGDl9AnanrGnES2gI4niNjhMRyCU3BZKsEYbYWf-lx6O4j3P0ZpDJiOsUrOp0Q5aTPTloJiFa3wlD7RaYAS7JY7koXuv0znEjOIGmGG_OgqH1JRNp9owGmtODwXRvbCsFY0y1.css?_nc_x=Ij3Wp8lg5Kz\\\\\\\",\\\\\\\"c\\\\\\\":1,\\\\\\\"p\\\\\\\":\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\"},\\\\\\\"kVzFO3d\\\\\\\":{\\\\\\\"type\\\\\\\":\\\\\\\"css\\\\\\\",\\\\\\\"src\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/static.cdninstagram.com\\\\\\\\\\\\/rsrc.php\\\\\\\\\\\\/v3\\\\\\\\\\\\/yj\\\\\\\\\\\\/l\\\\\\\\\\\\/0,cross\\\\\\\\\\\\/oqfvF5mPz3uMifsiHPaI0oHpb7gPAmNbpTuL7GOaK0DdKXAtQ0YzCst0wWt2iobycS1Ax6ob9pwyJFIQCAW56HpCemCwqPd5aI3AzL-_TWykjLxyeHelLJD_58r6iEmKDGr_2XB92dtrsIqdZUTN-YPA5QXB32Xm5cjMfD4hXRG4W9Yk-ffq6oVfFvfZ7_bRnRGJPDNa2BUjM-fZTvBLcDCPFLFRri67U8r6U9JDpNBDULkxH87eTlBgIbHemE0GMLkIQDlJy0qzqapGBWq7yxCr4RyM7H0bBl5Vr_3wF0oFj0zLGtrT0B5mWkK8_JBvtWKW4C_eO-.css?_nc_x=Ij3Wp8lg5Kz\\\\\\\",\\\\\\\"c\\\\\\\":1,\\\\\\\"p\\\\\\\":\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\"}}})});<\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/y5\\\\/l\\\\/0,cross\\\\/NLigj6UYroSio58CrqwPUK9szcxVHvixGEdxKy5ljS_I8ZqnleB8DIOJJZ3YTf_IXLjPRgSmz9VNtZFjX9BN4iYldk5NQi9Qp05488OnNKn0M5EkPTV0T5Z2Q3dE5t3lFkYO4gWvc1CB1ljdFet5mluCeF6kuD8eutweqDW-Se5FMchPW9NmTfEuq5j2IrvBc4RxXic1ZaPDFneNeQ8Jg1bs7hi9boXQljnypGkVWb8ArqCVh6tUmIWBRCDFB1APg3ZZicQWkoscH-GjRdhSgmvaLP1dlkxQrKK7oQQI6.css?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"style\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" \\\\/>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/yt\\\\/l\\\\/0,cross\\\\/uMM4wd_tQE_u9cs3WxR8gFg0_ToC5sufmawA0BpikNClY6NsIqjQf6C30ERq09YDKSF2LJP91rDVPZ7r_DR51GaC7SLiELVd6CWlrcocph76nfvHqzp-As_Vc6x684hGyRmY3ynG9LnmM2J-As4dJkHxRtL8o-bCCEV7MS-9K_q32o_b-DlIx6Qd4EBeZQYkrMZAnFGDl9AnanrGnES2gI4niNjhMRyCU3BZKsEYbYWf-lx6O4j3P0ZpDJiOsUrOp0Q5aTPTloJiFa3wlD7RaYAS7JY7koXuv0znEjOIGmGG_OgqH1JRNp9owGmtODwXRvbCsFY0y1.css?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"style\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" \\\\/>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/yW\\\\/l\\\\/0,cross\\\\/1J1cDW8Vk6vRkaFJC0lDWOZzYlIDVL8QlaWSzQeKDxQGZh-P7nqfC-IWZH6ymAazc2p1K0Hk2esoolGZA9lIRDXNIrXIElTSO6b9xFrESTIjMxFM0GiI7kCUm2rtpTwUa7QFpaYbNp27yi0Qo3q5RkjliL0lnrL2T09oKDIOW_lkuNVU4rQteKcsBGwISVSkI9CdClNnQVshgRVRvBbbnIjF0DcLa7Qvok-lcRq9MGvsHoQe89uudVtWDVc5KMPX83y2LBf2zkFBKku8gs6eEqV55i_WPEmZNIgo0wzd3wausBoIaeXo-XkA6kNk6ZI6PLlNyUkCQf.css?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"style\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" \\\\/>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/yj\\\\/l\\\\/0,cross\\\\/oqfvF5mPz3uMifsiHPaI0oHpb7gPAmNbpTuL7GOaK0DdKXAtQ0YzCst0wWt2iobycS1Ax6ob9pwyJFIQCAW56HpCemCwqPd5aI3AzL-_TWykjLxyeHelLJD_58r6iEmKDGr_2XB92dtrsIqdZUTN-YPA5QXB32Xm5cjMfD4hXRG4W9Yk-ffq6oVfFvfZ7_bRnRGJPDNa2BUjM-fZTvBLcDCPFLFRri67U8r6U9JDpNBDULkxH87eTlBgIbHemE0GMLkIQDlJy0qzqapGBWq7yxCr4RyM7H0bBl5Vr_3wF0oFj0zLGtrT0B5mWkK8_JBvtWKW4C_eO-.css?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"style\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" \\\\/>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/yV\\\\/r\\\\/jJcP32dx0hm.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/yV\\\\/r\\\\/jJcP32dx0hm.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"dMGgiyp\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":1\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["dMGgiyp"]=1\\\\\\\" onerror=\\\\\\\"_btldr["dMGgiyp"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3iGsb4\\\\/yo\\\\/l\\\\/en_US\\\\/afWyGlegTI4Uj1f57eoO37E_u9gbSAbK4-Hwc4QoS6S8Ty11S_cphc3tHiZoCxsqqYktJWJJIxvQr8GF1LfsCYXau3PMBI1EPk8pOPgTG8pc68PaJ-BT0PBdrCsxYVHM2ECeUCQ4rnMusnzp45G0mEEQE-sMnVxth4VEmgPILZrqTtElZCLaR7R7zjw1DNbNadRXJMmLT6R-X0Ih2rWdhHHrsziNlb_tjA5Ux3myQLDCw2uP6qhEglh5Z-oD3WilUk03ymyXccNtgiSP0ZjVrNVIP1TDrulQ0D_oAB8ODjY5BAzLEVppFjShJfDJ2miY6_PDCg328c.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3iGsb4\\\\/yo\\\\/l\\\\/en_US\\\\/afWyGlegTI4Uj1f57eoO37E_u9gbSAbK4-Hwc4QoS6S8Ty11S_cphc3tHiZoCxsqqYktJWJJIxvQr8GF1LfsCYXau3PMBI1EPk8pOPgTG8pc68PaJ-BT0PBdrCsxYVHM2ECeUCQ4rnMusnzp45G0mEEQE-sMnVxth4VEmgPILZrqTtElZCLaR7R7zjw1DNbNadRXJMmLT6R-X0Ih2rWdhHHrsziNlb_tjA5Ux3myQLDCw2uP6qhEglh5Z-oD3WilUk03ymyXccNtgiSP0ZjVrNVIP1TDrulQ0D_oAB8ODjY5BAzLEVppFjShJfDJ2miY6_PDCg328c.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"s7W4seb\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["s7W4seb"]=1\\\\\\\" onerror=\\\\\\\"_btldr["s7W4seb"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3idlN4\\\\/yx\\\\/l\\\\/en_US\\\\/kEdbJAj05aMvS0j5448g55e6kQfzrw69Upv0ohN2nwsi7o-3LcDjYwdz_WUB0Tuas_2fdiBdxo29cP-WM2IAQakLz4R8i0gdpMBkDbHQLZKrr9rM7nboFCflDjtqa6UdHzFsEhuwoVdjtzzQi9FCpF-3oDjdcKnothc0TYL62aIPas4luUV8DRQaWOOD-xI0B5EiAxaUODrKyGkv2NLPWOmYyiiz5g9cIDvIFDN8RzYIUc6L2gsKaipRJQ5bBro5msUpLlBF0WB_O3Y-v8eT7kuG_5No4ZDx8nDWHmsPd8-3tX_THv2YhOwZ5Q7d0nfQJT5d8pfr5w.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3idlN4\\\\/yx\\\\/l\\\\/en_US\\\\/kEdbJAj05aMvS0j5448g55e6kQfzrw69Upv0ohN2nwsi7o-3LcDjYwdz_WUB0Tuas_2fdiBdxo29cP-WM2IAQakLz4R8i0gdpMBkDbHQLZKrr9rM7nboFCflDjtqa6UdHzFsEhuwoVdjtzzQi9FCpF-3oDjdcKnothc0TYL62aIPas4luUV8DRQaWOOD-xI0B5EiAxaUODrKyGkv2NLPWOmYyiiz5g9cIDvIFDN8RzYIUc6L2gsKaipRJQ5bBro5msUpLlBF0WB_O3Y-v8eT7kuG_5No4ZDx8nDWHmsPd8-3tX_THv2YhOwZ5Q7d0nfQJT5d8pfr5w.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"6a4iynd\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["6a4iynd"]=1\\\\\\\" onerror=\\\\\\\"_btldr["6a4iynd"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3iLxq4\\\\/yb\\\\/l\\\\/en_US\\\\/pMnRltKfcoOunKzSgsBM_cf-duh_snNhPKh1wiG_-tj8v4pMG-a6ymR2g2cAoVCutBZOXbifkbgmnOTDEZzcrhpczQdDi8ZpX3pmdu_DGET_rxHUxMHl9Lidg8YYnkSpgWMQVge_BnD36s3ZvBF1VUvINWSMkrXFotZUULs5nx-RAQtiaZ8OD_U7-zMqKRRB5qwQsIc9troIrmwsG29ETRW96oJ1IGgceImBYcW0dRm7sl25AUXFhISQyG8EXgn8xHRZCR80UPjlGDUkl2bMD2ZqYH3meGhF-JcanC8nXW9-HQ1IakKnMTtRk42dnBHu9g3qQfW_-q.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3iLxq4\\\\/yb\\\\/l\\\\/en_US\\\\/pMnRltKfcoOunKzSgsBM_cf-duh_snNhPKh1wiG_-tj8v4pMG-a6ymR2g2cAoVCutBZOXbifkbgmnOTDEZzcrhpczQdDi8ZpX3pmdu_DGET_rxHUxMHl9Lidg8YYnkSpgWMQVge_BnD36s3ZvBF1VUvINWSMkrXFotZUULs5nx-RAQtiaZ8OD_U7-zMqKRRB5qwQsIc9troIrmwsG29ETRW96oJ1IGgceImBYcW0dRm7sl25AUXFhISQyG8EXgn8xHRZCR80UPjlGDUkl2bMD2ZqYH3meGhF-JcanC8nXW9-HQ1IakKnMTtRk42dnBHu9g3qQfW_-q.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"QPvrxq+\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["QPvrxq+"]=1\\\\\\\" onerror=\\\\\\\"_btldr["QPvrxq+"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3itwW4\\\\/y_\\\\/l\\\\/en_US\\\\/IxO8Zh4khXsaqDCE1TQmA1yOTjJZKCEVECDxTCZgyrq6tzshTxMC-SySVNxUHEwpQ08LjuVgX4sOhHj5R_dzlF-I--i24Wgf-twuJDf9qcW2-ey1DvMBOZlEpQlZharrTBu5e0mQzydoUOqxlVaZ9zApzZXUwbZVcCuP9xYEFZDhRrxW_Qser80E0pkBGTUbpkdidvVMB3SSfhSG1TYG8DYi6S_lPfpop-eV5hcLEPvNWFnWjnaUwXgf0E4Tx0RWrmQTJX4FaLc-9gwaFEQPAhJg3QYvSMCRjKtvZHZx70zLWafUXcCopYfMCM6Lcc_wkd2ar1fj-K.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3itwW4\\\\/y_\\\\/l\\\\/en_US\\\\/IxO8Zh4khXsaqDCE1TQmA1yOTjJZKCEVECDxTCZgyrq6tzshTxMC-SySVNxUHEwpQ08LjuVgX4sOhHj5R_dzlF-I--i24Wgf-twuJDf9qcW2-ey1DvMBOZlEpQlZharrTBu5e0mQzydoUOqxlVaZ9zApzZXUwbZVcCuP9xYEFZDhRrxW_Qser80E0pkBGTUbpkdidvVMB3SSfhSG1TYG8DYi6S_lPfpop-eV5hcLEPvNWFnWjnaUwXgf0E4Tx0RWrmQTJX4FaLc-9gwaFEQPAhJg3QYvSMCRjKtvZHZx70zLWafUXcCopYfMCM6Lcc_wkd2ar1fj-K.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"p087+5I\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["p087+5I"]=1\\\\\\\" onerror=\\\\\\\"_btldr["p087+5I"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/y1\\\\/r\\\\/xh-Y84WiRl9bbZ-SB0YkZlk23RpTiF30Nk89T0gMJHHTKPNbWwqxoj3Uxm0wkcDXB6eP4c7TM6k4qXl3_TQcT21Jll_L7nHIVqY8n8RU1RNSeBfiTg7i0ClSp5q8qv1oo-9w927JBAoaupCXe4EkOVHoGm-qVg7Gsm_vjIAQGxH_0Lm4Ozu3MZSabv4WnEzuUnVjcErH9bAVHibqS7rq7QtT2ZAXyTlFwAcaAngfT-f9X6sQ38tzSA8DC1ar1S6EWcuG_NUICrzpDYKF62DtSYUUPoyOzaXmHHpcn8px6Ckkr3k-TOneZ3eNL5_Kx9_PUa7udqp-7M.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/y1\\\\/r\\\\/xh-Y84WiRl9bbZ-SB0YkZlk23RpTiF30Nk89T0gMJHHTKPNbWwqxoj3Uxm0wkcDXB6eP4c7TM6k4qXl3_TQcT21Jll_L7nHIVqY8n8RU1RNSeBfiTg7i0ClSp5q8qv1oo-9w927JBAoaupCXe4EkOVHoGm-qVg7Gsm_vjIAQGxH_0Lm4Ozu3MZSabv4WnEzuUnVjcErH9bAVHibqS7rq7QtT2ZAXyTlFwAcaAngfT-f9X6sQ38tzSA8DC1ar1S6EWcuG_NUICrzpDYKF62DtSYUUPoyOzaXmHHpcn8px6Ckkr3k-TOneZ3eNL5_Kx9_PUa7udqp-7M.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"L6XWKGa\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["L6XWKGa"]=1\\\\\\\" onerror=\\\\\\\"_btldr["L6XWKGa"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3inOS4\\\\/yl\\\\/l\\\\/en_US\\\\/I186wSvnuSIOyxrHMibyBZoNe5DB9XT9SjlOVhWpWrE3J5EDN6uqM-4pNFSUDAVMBwCaVRY3a0msLE28cfr1mACfUGVvl2IAUMzdlw5DASKgBfMTnDiVnrN3Bpz8PwXqWzztM0dQ4RbxvFOovgFcfqhIdqYUloADoy6FEIggj_8E_RtAaHGftLum7qSS-v0z_kayh-Kgyt7j-vGPITLYx-Wullsq8ZHSCHNrO5WAHnFpfF2BPSV4hOyx_f6jux8tx4qo0JulAuJlCcLWZaYFenlx752T5ka8e-tG3XdLQbGW-HaBJhWaFvud1A9fkmltmHOuULErkf.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3inOS4\\\\/yl\\\\/l\\\\/en_US\\\\/I186wSvnuSIOyxrHMibyBZoNe5DB9XT9SjlOVhWpWrE3J5EDN6uqM-4pNFSUDAVMBwCaVRY3a0msLE28cfr1mACfUGVvl2IAUMzdlw5DASKgBfMTnDiVnrN3Bpz8PwXqWzztM0dQ4RbxvFOovgFcfqhIdqYUloADoy6FEIggj_8E_RtAaHGftLum7qSS-v0z_kayh-Kgyt7j-vGPITLYx-Wullsq8ZHSCHNrO5WAHnFpfF2BPSV4hOyx_f6jux8tx4qo0JulAuJlCcLWZaYFenlx752T5ka8e-tG3XdLQbGW-HaBJhWaFvud1A9fkmltmHOuULErkf.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"Mg\\\\/BFOi\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["Mg\\\\\\\\\\\\/BFOi"]=1\\\\\\\" onerror=\\\\\\\"_btldr["Mg\\\\\\\\\\\\/BFOi"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3i8lJ4\\\\/y_\\\\/l\\\\/en_US\\\\/PG_H6hUUMy3uFt4smvL00EqqZKg_4zDy2eK3Xb5qpt_j3zTR45WlM1lvKNQ1Fwqt1XoSdDbAIttcC-HSzFtQfYplbOtWc41VD8ZL8UtfPuLpW89VJ4aTRKOkpwHTZc_4XtJV99sX1gk0G6pSWNqemVpUDG5AmYGtjRD7f7tpg2Boxw1QD07i8SQikj2FnddwIpoxPdKghSrLqjRoJSODPd-em0RsFDZrpbj7D24UIjouatm40GMODo5F4HO4gyaBGkSK97TdHqJ1CxhSd2zTqewSnwWkfAMBN-05B5AzgJtZ6NWooxFPZRlmF9lGSc_2a_TZYC1-Bv.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3i8lJ4\\\\/y_\\\\/l\\\\/en_US\\\\/PG_H6hUUMy3uFt4smvL00EqqZKg_4zDy2eK3Xb5qpt_j3zTR45WlM1lvKNQ1Fwqt1XoSdDbAIttcC-HSzFtQfYplbOtWc41VD8ZL8UtfPuLpW89VJ4aTRKOkpwHTZc_4XtJV99sX1gk0G6pSWNqemVpUDG5AmYGtjRD7f7tpg2Boxw1QD07i8SQikj2FnddwIpoxPdKghSrLqjRoJSODPd-em0RsFDZrpbj7D24UIjouatm40GMODo5F4HO4gyaBGkSK97TdHqJ1CxhSd2zTqewSnwWkfAMBN-05B5AzgJtZ6NWooxFPZRlmF9lGSc_2a_TZYC1-Bv.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"W0fKmdo\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["W0fKmdo"]=1\\\\\\\" onerror=\\\\\\\"_btldr["W0fKmdo"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3iQzA4\\\\/yl\\\\/l\\\\/en_US\\\\/J89jVr7bdoYSl-qPtS9Hrn9k_nJsJ_NP_M1MK5GIWTYyHDEZ3jFmmBHVSJv7HfkXfLFyDDZXnCQdhwK5YJwb3c2D5PCgU_UsMHIPWlPg7ihTE8e3pq1PS-Qg9H01lKPPAzB9ElmuQ-LBrw7MlzKKWRRjKwdsL0fk8MwYHD1BkGhD1Qu3wvw_FEL1c2OZguPB-px6gXM84TUcCxYRQg68clv1Zd7q7zfTUgcN5ThgJ9fnVTenehGz1xBDorn_dDCwM3bPM-HIbN0JXQ7v_IO00_A-clEme9UswCxHQPNKu5ZI3Ja_jpigvI-YNQi5iXlTthlJYqFEUh.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3iQzA4\\\\/yl\\\\/l\\\\/en_US\\\\/J89jVr7bdoYSl-qPtS9Hrn9k_nJsJ_NP_M1MK5GIWTYyHDEZ3jFmmBHVSJv7HfkXfLFyDDZXnCQdhwK5YJwb3c2D5PCgU_UsMHIPWlPg7ihTE8e3pq1PS-Qg9H01lKPPAzB9ElmuQ-LBrw7MlzKKWRRjKwdsL0fk8MwYHD1BkGhD1Qu3wvw_FEL1c2OZguPB-px6gXM84TUcCxYRQg68clv1Zd7q7zfTUgcN5ThgJ9fnVTenehGz1xBDorn_dDCwM3bPM-HIbN0JXQ7v_IO00_A-clEme9UswCxHQPNKu5ZI3Ja_jpigvI-YNQi5iXlTthlJYqFEUh.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"w\\\\/p9oWo\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["w\\\\\\\\\\\\/p9oWo"]=1\\\\\\\" onerror=\\\\\\\"_btldr["w\\\\\\\\\\\\/p9oWo"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/yV\\\\/r\\\\/dqxYQl_lh1xWblwqOQgo4F1knQ9DqzFIIydJMPyka5kuEAaPNU1aj6eRtkBKR9r99B_rGGMejKzzCPdZCi6mpmg1LVheYo4D7viNirBcOBbRWoNJrQOx4uQLMCELGawfYFutTKf8hEPfcitnfDNQgHLK84HeIVhFfpdkVb8piKwlLZhViui0RFY_iDmAOYnKhk7T9VLdZeQqS0Y3XYMrtL-pwxf6OfoUj8uMl62vtY7qk4EisMeFtdD1LXea4ADi0p8Z-vOeAZvHcNwXpPF_beyCDrkUJFma14xaoPkx_s3oY4Krofw2pV2gD4-BohktgwMMcN9wjA.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/yV\\\\/r\\\\/dqxYQl_lh1xWblwqOQgo4F1knQ9DqzFIIydJMPyka5kuEAaPNU1aj6eRtkBKR9r99B_rGGMejKzzCPdZCi6mpmg1LVheYo4D7viNirBcOBbRWoNJrQOx4uQLMCELGawfYFutTKf8hEPfcitnfDNQgHLK84HeIVhFfpdkVb8piKwlLZhViui0RFY_iDmAOYnKhk7T9VLdZeQqS0Y3XYMrtL-pwxf6OfoUj8uMl62vtY7qk4EisMeFtdD1LXea4ADi0p8Z-vOeAZvHcNwXpPF_beyCDrkUJFma14xaoPkx_s3oY4Krofw2pV2gD4-BohktgwMMcN9wjA.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"tNHTexs\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["tNHTexs"]=1\\\\\\\" onerror=\\\\\\\"_btldr["tNHTexs"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/yK\\\\/r\\\\/IdNiuB4K4zW7k6wpgE_RIiylvnTaLpsDvx1SakpVbDSCaSYykFylKg4B_kUbeiHuubBoz1p1tGVl_Q-RlY49CezdY8ddgK_fHGTyQz9VaMkjiXVsOoA7hVr6nS-G28rhPM3-yZDFSn5m7tOGoNgZubc3lMNjVRgXWrUg1amhJPVwtkux_MQugYCDHx8x6tabohyWUC9xEBRLQN_6Fy7yllz14XML5lL3fuwlX0xjpOH7EA5rZEMmpFC65e_IfVwKIm5pmsI2WtGKDz9ND-_rPcxOE7YVqpUMkQkr0eYffwW0Y0KE-te8-HZwhkeWRjMZYYbpmAsEYT.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/yK\\\\/r\\\\/IdNiuB4K4zW7k6wpgE_RIiylvnTaLpsDvx1SakpVbDSCaSYykFylKg4B_kUbeiHuubBoz1p1tGVl_Q-RlY49CezdY8ddgK_fHGTyQz9VaMkjiXVsOoA7hVr6nS-G28rhPM3-yZDFSn5m7tOGoNgZubc3lMNjVRgXWrUg1amhJPVwtkux_MQugYCDHx8x6tabohyWUC9xEBRLQN_6Fy7yllz14XML5lL3fuwlX0xjpOH7EA5rZEMmpFC65e_IfVwKIm5pmsI2WtGKDz9ND-_rPcxOE7YVqpUMkQkr0eYffwW0Y0KE-te8-HZwhkeWRjMZYYbpmAsEYT.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"M3vvA5n\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["M3vvA5n"]=1\\\\\\\" onerror=\\\\\\\"_btldr["M3vvA5n"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/ys\\\\/r\\\\/AL7TwUqoCYCQCn_n6f3_AExS_VaNjvntHmrMft1UO29oDi6D8CRxdwRbGkvmjfbBhEMkrxyov3wQM7yZmg-KIA9S8QQJhgPukrw_k568MfghsUR_xxeO4r-RwNxCzGb47hS3apjvxHcRYax1sNtnycbpArNAOX4A8Pzi700ZApTml4xDYWhb0ORjtnpELM7P8cj11dOhOjZDtjENWmqzzWqimE_WnpeblxeECmJ3EOD7rgSOxl6DGg4q-eoFsQe-q4lb8xtqDXUbZuYIf0pvi69zJ1dyXemuLsrHVYFXpajOaWnXJHzb6sCN733k0fEfMvSMOZ1AbG.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/ys\\\\/r\\\\/AL7TwUqoCYCQCn_n6f3_AExS_VaNjvntHmrMft1UO29oDi6D8CRxdwRbGkvmjfbBhEMkrxyov3wQM7yZmg-KIA9S8QQJhgPukrw_k568MfghsUR_xxeO4r-RwNxCzGb47hS3apjvxHcRYax1sNtnycbpArNAOX4A8Pzi700ZApTml4xDYWhb0ORjtnpELM7P8cj11dOhOjZDtjENWmqzzWqimE_WnpeblxeECmJ3EOD7rgSOxl6DGg4q-eoFsQe-q4lb8xtqDXUbZuYIf0pvi69zJ1dyXemuLsrHVYFXpajOaWnXJHzb6sCN733k0fEfMvSMOZ1AbG.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"OLPB42c\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["OLPB42c"]=1\\\\\\\" onerror=\\\\\\\"_btldr["OLPB42c"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/yE\\\\/r\\\\/qF_fFO596JvCuM24jMSC-aSqcDiL1KJGYDpVwMcx-lcw3qfb2Mognl2yXI1ZeeTBTHm-eNL3-fdzMAaG9Fem4wFygf42PRE8dF0KplZXEyYIdZd40IyOm8ptZPTC-KKbnEyxJxclKjlX25vhg2Gptd9faL1ey0sG_cMJpHe26ITcIwZjGz2AxwzQ5ZRe_o8np6cqmOE1rqwqws40odNBDbu5FYLjpw7C0u29giPifGwKCScMVDKdu5iMQ3FlmigcENNanTkLWaarxBHROrUKz19Wwfgopc45TnElt1lVO3v5HC-xLf-NxyZ3PB6EF-J8d-O_dbJ1Gd.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/yE\\\\/r\\\\/qF_fFO596JvCuM24jMSC-aSqcDiL1KJGYDpVwMcx-lcw3qfb2Mognl2yXI1ZeeTBTHm-eNL3-fdzMAaG9Fem4wFygf42PRE8dF0KplZXEyYIdZd40IyOm8ptZPTC-KKbnEyxJxclKjlX25vhg2Gptd9faL1ey0sG_cMJpHe26ITcIwZjGz2AxwzQ5ZRe_o8np6cqmOE1rqwqws40odNBDbu5FYLjpw7C0u29giPifGwKCScMVDKdu5iMQ3FlmigcENNanTkLWaarxBHROrUKz19Wwfgopc45TnElt1lVO3v5HC-xLf-NxyZ3PB6EF-J8d-O_dbJ1Gd.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"4A6exZz\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["4A6exZz"]=1\\\\\\\" onerror=\\\\\\\"_btldr["4A6exZz"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3ijul4\\\\/ys\\\\/l\\\\/en_US\\\\/Y908XtXxe-3uBotmw4cS4kwfkOVkjp3a4zpGV3-kQvrJbAyvk8Ytzybg-JvNQYS-Fmmu5OtICugDDhT2qg5-FtXYDDvXXdHYLrWI2S29A0yIjHoZ-XdPn2p6Sqn1O42ksmUNmh2_C59sS1HzhmNJjHlAKzRPp69-xv_bHZXHjtOFs-7fSs3XJZ1vO_15VUmzJHiVG1PGvAxks0LISHPKV_QMc7HqosjEHjmSy4gI0UoPSoWKy4wOEM9bdBoPBjMiUGYUhR6St_q5M7cbvzeGP-hg_WBdkisNE3EpS7wAeurZtu3Je_UR2j3ICp5tgVvVOt9tYikhh8.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3ijul4\\\\/ys\\\\/l\\\\/en_US\\\\/Y908XtXxe-3uBotmw4cS4kwfkOVkjp3a4zpGV3-kQvrJbAyvk8Ytzybg-JvNQYS-Fmmu5OtICugDDhT2qg5-FtXYDDvXXdHYLrWI2S29A0yIjHoZ-XdPn2p6Sqn1O42ksmUNmh2_C59sS1HzhmNJjHlAKzRPp69-xv_bHZXHjtOFs-7fSs3XJZ1vO_15VUmzJHiVG1PGvAxks0LISHPKV_QMc7HqosjEHjmSy4gI0UoPSoWKy4wOEM9bdBoPBjMiUGYUhR6St_q5M7cbvzeGP-hg_WBdkisNE3EpS7wAeurZtu3Je_UR2j3ICp5tgVvVOt9tYikhh8.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"Ccc1zYX\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["Ccc1zYX"]=1\\\\\\\" onerror=\\\\\\\"_btldr["Ccc1zYX"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/yd\\\\/r\\\\/tpVgbbJEAiKbTAnT4xle2wlUwOQiwuZg7tQDj8pjzbUdM8pt6JFngCSNX0nx_bWycr_Yb0eXIJ_wtaICOQRKm2uP0IFBRdKiuy4-qy4wPXALcs9cAw1GI5EtXiXf2s2C5NQfz4Hh8QWrggJlVniTODIr9bTaHJjEU4lMYx4t9tTrM0SP1PrIssPj-aY87fWvhCjvHIp_ywjoabu9Rv8-u6VyebRs_5oc6ht-_M2jUfsSVBTG_64Lb-D9yx8yZc9yu5zpTQod2pd7ejPdLbb37JuO0IfcEciHtZdlUW7Gfb_p_nbI-FP1BC2YPZ_7uY4c2mekKMWqjd.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/yd\\\\/r\\\\/tpVgbbJEAiKbTAnT4xle2wlUwOQiwuZg7tQDj8pjzbUdM8pt6JFngCSNX0nx_bWycr_Yb0eXIJ_wtaICOQRKm2uP0IFBRdKiuy4-qy4wPXALcs9cAw1GI5EtXiXf2s2C5NQfz4Hh8QWrggJlVniTODIr9bTaHJjEU4lMYx4t9tTrM0SP1PrIssPj-aY87fWvhCjvHIp_ywjoabu9Rv8-u6VyebRs_5oc6ht-_M2jUfsSVBTG_64Lb-D9yx8yZc9yu5zpTQod2pd7ejPdLbb37JuO0IfcEciHtZdlUW7Gfb_p_nbI-FP1BC2YPZ_7uY4c2mekKMWqjd.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"P3nGu3Q\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["P3nGu3Q"]=1\\\\\\\" onerror=\\\\\\\"_btldr["P3nGu3Q"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/yx\\\\/r\\\\/1dfjew_nZS7nRE_OJhTaABXXYKNSkDHgxSvrIV8e2RU4zO8RVZ94LQT5r56GCMurSP5LXUFJCtAepSBmMgQ2IWvnCSmj2ZcRL4Zz0-65Fy1V0yLizfcJUTua9ZhxCCfQZuRZ2nlWOMXP0h33lfFIp8p9MjcMU53Ehsh5zDcfsG5dfiwNyuAuaWBeEZFbRbTaNtaqAbSGWCNY81wRvfvsutq5eTnm7DXIK0MtK_pfVh17cAu-38uWXvaZ6daSRqmuUYjyu4HxvQIiGap4W7mMvK5YDMLnyKdQlKeP6ua76D8kxsJZbSgoZiIiYUa_asPTD5h-WpuPko.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/yx\\\\/r\\\\/1dfjew_nZS7nRE_OJhTaABXXYKNSkDHgxSvrIV8e2RU4zO8RVZ94LQT5r56GCMurSP5LXUFJCtAepSBmMgQ2IWvnCSmj2ZcRL4Zz0-65Fy1V0yLizfcJUTua9ZhxCCfQZuRZ2nlWOMXP0h33lfFIp8p9MjcMU53Ehsh5zDcfsG5dfiwNyuAuaWBeEZFbRbTaNtaqAbSGWCNY81wRvfvsutq5eTnm7DXIK0MtK_pfVh17cAu-38uWXvaZ6daSRqmuUYjyu4HxvQIiGap4W7mMvK5YDMLnyKdQlKeP6ua76D8kxsJZbSgoZiIiYUa_asPTD5h-WpuPko.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"Sjn\\\\/q7J\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["Sjn\\\\\\\\\\\\/q7J"]=1\\\\\\\" onerror=\\\\\\\"_btldr["Sjn\\\\\\\\\\\\/q7J"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3iF314\\\\/y-\\\\/l\\\\/en_US\\\\/XKpZxB92mRrU0K3Z_Wf8KRoTwMZMQk-_Xl8gzMqz4-Kh4-S8iNNf1OuOGu_i3l6fwybnWsPMIfBIsizf0E9n4K-TRQdQFMawFz45yldGe_z9IlZDX8vYVy1YQ_IxuHJM75NtWrh2kHHpGBMuwMYJC8kDv21yvY26Exp4W-5nHFSPHjFU8PZDOgGvecKxzdQYgq4XRTRqrJIWh6oTZbNUrbO3JhU4at1rPXs9K84ON7zCqEpDD1SqbJ66S743SgnAO6qTlFAt5XvRxYV5P_QDWkogwE7D_7HgMCngxAG_0ef-iwmKQROxFqegataic5hlq-rmAXvBl0.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3iF314\\\\/y-\\\\/l\\\\/en_US\\\\/XKpZxB92mRrU0K3Z_Wf8KRoTwMZMQk-_Xl8gzMqz4-Kh4-S8iNNf1OuOGu_i3l6fwybnWsPMIfBIsizf0E9n4K-TRQdQFMawFz45yldGe_z9IlZDX8vYVy1YQ_IxuHJM75NtWrh2kHHpGBMuwMYJC8kDv21yvY26Exp4W-5nHFSPHjFU8PZDOgGvecKxzdQYgq4XRTRqrJIWh6oTZbNUrbO3JhU4at1rPXs9K84ON7zCqEpDD1SqbJ66S743SgnAO6qTlFAt5XvRxYV5P_QDWkogwE7D_7HgMCngxAG_0ef-iwmKQROxFqegataic5hlq-rmAXvBl0.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"AqRfv5H\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["AqRfv5H"]=1\\\\\\\" onerror=\\\\\\\"_btldr["AqRfv5H"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3iWNp4\\\\/ya\\\\/l\\\\/en_US\\\\/ff2C2dcZxE9c6aTZCDPF5TasvKjKugfh1711jlotBsqgL-tG3hJ-QfMouhT2NTxFEBWaqmM-e6Xrg6k_kWTqusx7Q12yFHGlqliwGdsn61T_9x5fzlPkQUp0XiS-aVzbBNtoFoRfhYAXUYuZxo_hrPNVqVzxZ_0CY_hWgcGZoIPYn_C52ddkJY7EnY616AerGDOy_oaDTO7jIXRyplAC5Mg4ywIPYxZ_w08KoT1EpC9_aDy4RNHTGPpw0VVavyJYZX3jtlZROGStE8-SBE65tgdMzdUkCc7HBDrmEe9V9ucryjgWfX8BkabG015A4yY11eJOImrQGX.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3iWNp4\\\\/ya\\\\/l\\\\/en_US\\\\/ff2C2dcZxE9c6aTZCDPF5TasvKjKugfh1711jlotBsqgL-tG3hJ-QfMouhT2NTxFEBWaqmM-e6Xrg6k_kWTqusx7Q12yFHGlqliwGdsn61T_9x5fzlPkQUp0XiS-aVzbBNtoFoRfhYAXUYuZxo_hrPNVqVzxZ_0CY_hWgcGZoIPYn_C52ddkJY7EnY616AerGDOy_oaDTO7jIXRyplAC5Mg4ywIPYxZ_w08KoT1EpC9_aDy4RNHTGPpw0VVavyJYZX3jtlZROGStE8-SBE65tgdMzdUkCc7HBDrmEe9V9ucryjgWfX8BkabG015A4yY11eJOImrQGX.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"DS\\\\/3GdU\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["DS\\\\\\\\\\\\/3GdU"]=1\\\\\\\" onerror=\\\\\\\"_btldr["DS\\\\\\\\\\\\/3GdU"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/yQ\\\\/r\\\\/aFIOeOkcKu-1RRs7feBkUQB5s0M9cDKnBZ9AY_oYwXmg7He9Dx_x3pEjykj4SI_-Ww1WcTpxpVBo2WMt14c_gxPksO9wK2L56TwR-d0peyZtbVeiQoCFalylo2wvWYywhfHSFyxuXz6SwGP9qZ-MHW6reskMd8ID9uJWi_AuCGN2IwIS6Y5z8HLEuo9odvucQ9ZLv0ekC9iMnU-2u-EMBTSp2111p2p_u5D-4YwzJOcwE9GnqEDQVEH-g-FDCsBRFP7Q5lvTrcjI8yJ-_0LuZoO2rD-e0ojqip5bNo6rUS520jW6kJjdZ4bJgzaikj9R4L-D3msabE.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/yQ\\\\/r\\\\/aFIOeOkcKu-1RRs7feBkUQB5s0M9cDKnBZ9AY_oYwXmg7He9Dx_x3pEjykj4SI_-Ww1WcTpxpVBo2WMt14c_gxPksO9wK2L56TwR-d0peyZtbVeiQoCFalylo2wvWYywhfHSFyxuXz6SwGP9qZ-MHW6reskMd8ID9uJWi_AuCGN2IwIS6Y5z8HLEuo9odvucQ9ZLv0ekC9iMnU-2u-EMBTSp2111p2p_u5D-4YwzJOcwE9GnqEDQVEH-g-FDCsBRFP7Q5lvTrcjI8yJ-_0LuZoO2rD-e0ojqip5bNo6rUS520jW6kJjdZ4bJgzaikj9R4L-D3msabE.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"tJWyvXQ\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["tJWyvXQ"]=1\\\\\\\" onerror=\\\\\\\"_btldr["tJWyvXQ"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3im2s4\\\\/yf\\\\/l\\\\/en_US\\\\/VyFh8UQtYFT5nAUCXctIWjXO7W8jt7Y1M0r0lNtKZ5LDSWyQ6ApYpLyYxSmbpCWqs14P1Tsluco3Cqzm6f021WSr8zzCSfHFLwEEjORMruAEkJiZQLDmBv2K-lP09MXKBvcDjvMk6USFIsIGxJkJ4aNGp2JS_QC7FSektx6oPT-RWa64WNWAkoUr1F9dFOmCYr2hsBgI1j52PqV_mldJ5ULkeruQB0ijufIEKw3AY7L8oS9jUnEBAT2cRF8ICqwhPXjlqpCIaKCMsY2dfHI2MMNzKHg2cIYGaRQWxReiMUoe4grloMpyglMT6TO4oRNCIaiwursZAw.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3im2s4\\\\/yf\\\\/l\\\\/en_US\\\\/VyFh8UQtYFT5nAUCXctIWjXO7W8jt7Y1M0r0lNtKZ5LDSWyQ6ApYpLyYxSmbpCWqs14P1Tsluco3Cqzm6f021WSr8zzCSfHFLwEEjORMruAEkJiZQLDmBv2K-lP09MXKBvcDjvMk6USFIsIGxJkJ4aNGp2JS_QC7FSektx6oPT-RWa64WNWAkoUr1F9dFOmCYr2hsBgI1j52PqV_mldJ5ULkeruQB0ijufIEKw3AY7L8oS9jUnEBAT2cRF8ICqwhPXjlqpCIaKCMsY2dfHI2MMNzKHg2cIYGaRQWxReiMUoe4grloMpyglMT6TO4oRNCIaiwursZAw.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"299lwST\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["299lwST"]=1\\\\\\\" onerror=\\\\\\\"_btldr["299lwST"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3iywj4\\\\/yO\\\\/l\\\\/en_US\\\\/rOrgHJo3VPF5XEWDuqQlb6lFaVUfGVo-bAJpH68TwXnT3Eh95rq4wDvv4qFCQHztd03zranSN5OCyo4_44KykU6NndITb_F3JtecP9eBXvcUylbOEsr95DCy872Nsr0tFxKEUjgPphlc_1lrr8bMoB-Hn3Z3x4AMDvwcYJFjckFPd5i1nNZzya0yLr1IqQagANjb5mDGds-nL4yDMtdWvh3ryJQPepRNaj3npWBO1UeihZMVPPEhvOnbkYe1w2JdSuS2D3HjV28XzQBeDkLebmqB4QlGoAjvQ7ZZbrRv0Q1TG14IYR2Kt2O1wZJpjMpRdH_GGeDrx3.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3iywj4\\\\/yO\\\\/l\\\\/en_US\\\\/rOrgHJo3VPF5XEWDuqQlb6lFaVUfGVo-bAJpH68TwXnT3Eh95rq4wDvv4qFCQHztd03zranSN5OCyo4_44KykU6NndITb_F3JtecP9eBXvcUylbOEsr95DCy872Nsr0tFxKEUjgPphlc_1lrr8bMoB-Hn3Z3x4AMDvwcYJFjckFPd5i1nNZzya0yLr1IqQagANjb5mDGds-nL4yDMtdWvh3ryJQPepRNaj3npWBO1UeihZMVPPEhvOnbkYe1w2JdSuS2D3HjV28XzQBeDkLebmqB4QlGoAjvQ7ZZbrRv0Q1TG14IYR2Kt2O1wZJpjMpRdH_GGeDrx3.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"s9PwdNY\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["s9PwdNY"]=1\\\\\\\" onerror=\\\\\\\"_btldr["s9PwdNY"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3iyau4\\\\/yp\\\\/l\\\\/en_US\\\\/TE1Y6a_wjlvqk3bzeozQGT7K9IjCNP2KDOK3BZFD_iSD47n3oXhlWmZ8N9HlDsQC6cpA_EwRbgO0xsfyGIxhFNp45-zJFPK6UpfQnMVavR7A4AA8B7U5fsN4BnKhu1gaZVYfx2IEG1-XYE1zHhZtMMxieSe5vZ82ZtonEFMVpu2rtwNChcwOVseRTTbJNgKUcD-qW_txubZVz3BKB2EOfr_VKFRhLhfv6xanrlCtdJBn6kqYoXemx9cP2e5_EibNJ3NT0klShD1kchLEy7QpDvVJ_6U8Zva8gecL1w20pIf8pqUJE0Y2lnVQ58nx5Ui7ogzaEwhDJg.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3iyau4\\\\/yp\\\\/l\\\\/en_US\\\\/TE1Y6a_wjlvqk3bzeozQGT7K9IjCNP2KDOK3BZFD_iSD47n3oXhlWmZ8N9HlDsQC6cpA_EwRbgO0xsfyGIxhFNp45-zJFPK6UpfQnMVavR7A4AA8B7U5fsN4BnKhu1gaZVYfx2IEG1-XYE1zHhZtMMxieSe5vZ82ZtonEFMVpu2rtwNChcwOVseRTTbJNgKUcD-qW_txubZVz3BKB2EOfr_VKFRhLhfv6xanrlCtdJBn6kqYoXemx9cP2e5_EibNJ3NT0klShD1kchLEy7QpDvVJ_6U8Zva8gecL1w20pIf8pqUJE0Y2lnVQ58nx5Ui7ogzaEwhDJg.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"Rhu+Uwj\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["Rhu+Uwj"]=1\\\\\\\" onerror=\\\\\\\"_btldr["Rhu+Uwj"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3ihe24\\\\/y5\\\\/l\\\\/en_US\\\\/p2BrHKupUWtVPy5jX2H-Pg2Snvv-1_ex3bEmH7Yynh17nWHQPnSuHPKmlvMjFHBRCPZ_Rhwm20O-vWofDh6EtWfMThi-NPyMs6Nj-WUvtJrwV4D1S6F-Zc6oOBggoLubTOMr1kbKWc164ffp8lUF8GOby9-Rr9B1NplM04kCObwwdnpMyX0I9CUoeBP0fQmyFiYH9TMmBhrJdgL2NbkO_UQWM77V9BDm6NoPsBaKtAPWtNF0Vv5c9eay_9yLFKlUSp0sAkVLp9g61rG_-oKZnGWC-Kq7H_fR151JVAsXQygZqs-lFcwRfi5tnjIEPWp-BuiDDDiXhc.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3ihe24\\\\/y5\\\\/l\\\\/en_US\\\\/p2BrHKupUWtVPy5jX2H-Pg2Snvv-1_ex3bEmH7Yynh17nWHQPnSuHPKmlvMjFHBRCPZ_Rhwm20O-vWofDh6EtWfMThi-NPyMs6Nj-WUvtJrwV4D1S6F-Zc6oOBggoLubTOMr1kbKWc164ffp8lUF8GOby9-Rr9B1NplM04kCObwwdnpMyX0I9CUoeBP0fQmyFiYH9TMmBhrJdgL2NbkO_UQWM77V9BDm6NoPsBaKtAPWtNF0Vv5c9eay_9yLFKlUSp0sAkVLp9g61rG_-oKZnGWC-Kq7H_fR151JVAsXQygZqs-lFcwRfi5tnjIEPWp-BuiDDDiXhc.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"R3Cdqw3\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["R3Cdqw3"]=1\\\\\\\" onerror=\\\\\\\"_btldr["R3Cdqw3"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3i6nW4\\\\/y9\\\\/l\\\\/en_US\\\\/ijNaiFgMhiVOh10aDLA0kYsx4kxHSu6e6qaAEL8HaQmQ9U7f1vH5-3GW8HVBZ7WXuoOK9Y6tihOp9tRI469ISE9gu-pH2DI9lW30anAevmI2UP-FWrFDZh48zq-KXAfdbuwtzMN4wCv92UppTZt1N4z27JfTUbQUv35mUYHFiWbBdvkk03ZMSxMyazduWr4ZZebP-AJV1Gc7b99lx9HvQuED5mWC2ARobEiQX3i09iJR9rmwOyFHwpGtvhLB8TDK8US3W7mN6al0l3XmvxSESc5M_DSDWJLEK6mCnFjpmzAlFJzUGMl7a-1fUdgremSdFloraa0IQZ.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3i6nW4\\\\/y9\\\\/l\\\\/en_US\\\\/ijNaiFgMhiVOh10aDLA0kYsx4kxHSu6e6qaAEL8HaQmQ9U7f1vH5-3GW8HVBZ7WXuoOK9Y6tihOp9tRI469ISE9gu-pH2DI9lW30anAevmI2UP-FWrFDZh48zq-KXAfdbuwtzMN4wCv92UppTZt1N4z27JfTUbQUv35mUYHFiWbBdvkk03ZMSxMyazduWr4ZZebP-AJV1Gc7b99lx9HvQuED5mWC2ARobEiQX3i09iJR9rmwOyFHwpGtvhLB8TDK8US3W7mN6al0l3XmvxSESc5M_DSDWJLEK6mCnFjpmzAlFJzUGMl7a-1fUdgremSdFloraa0IQZ.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"Wf7qYDf\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["Wf7qYDf"]=1\\\\\\\" onerror=\\\\\\\"_btldr["Wf7qYDf"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3iUce4\\\\/yp\\\\/l\\\\/en_US\\\\/xNp6VgYQah1-p_mpfwubzCXth1BcSDoRJnL965l-uZtOq_afC3FVe_o_LerFkqiZu7wMv01xbs6XsDlkuuLKvp66EqIpRfu1IDZsw3TO5Uqhz6_09TlZZ-mKnVCRafU8zbqhy8pXBJiG8-vat3Z3tLuPh5RFFSXc9tZa4RtBEAwlC9f5d3sW5AR6e9w4zPMtjMI5qhsA6sLuL988pi26PkJWZkxTdXvWA1pUw1uGzW4hNczgwB5H_YHGss4Yd7j_PnQY5UlxS5y3Pvbm_0aoqpsqYHTQIXhbyLWoA2UdsahtE4CyhJEJ8s7fQ-fHs1SKAGfCmJ0yrO.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3iUce4\\\\/yp\\\\/l\\\\/en_US\\\\/xNp6VgYQah1-p_mpfwubzCXth1BcSDoRJnL965l-uZtOq_afC3FVe_o_LerFkqiZu7wMv01xbs6XsDlkuuLKvp66EqIpRfu1IDZsw3TO5Uqhz6_09TlZZ-mKnVCRafU8zbqhy8pXBJiG8-vat3Z3tLuPh5RFFSXc9tZa4RtBEAwlC9f5d3sW5AR6e9w4zPMtjMI5qhsA6sLuL988pi26PkJWZkxTdXvWA1pUw1uGzW4hNczgwB5H_YHGss4Yd7j_PnQY5UlxS5y3Pvbm_0aoqpsqYHTQIXhbyLWoA2UdsahtE4CyhJEJ8s7fQ-fHs1SKAGfCmJ0yrO.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"nNxEPBi\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["nNxEPBi"]=1\\\\\\\" onerror=\\\\\\\"_btldr["nNxEPBi"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/yb\\\\/r\\\\/NhIPBURwWGUkK8iX18qmqvBJatoAz6b7cVOYx4Wm1u46IaTRXt2PIm7cUBALJDIaiiHkOzRDrbA4Ya3PFofyfVOSi-IdaDmJyAhZIM2dJyhGJolb7r7OoJHv8ejnGXlq2weUIwHyAuQlaQg6PnSSckeNCUy7uWU2agRdIhbxTGwCUpbu8J5KrhBJI3pw72NbUOY6OmGlupfsKd1TmRumaaovRcIZN7y0LkfqgfB0kJBEGkVW8p2gGc26N8Qfk-FCm9gxSTguzFJUQb0LijTIwdnVA6NvQ7L9rgeERzxseQEsSpJHTBRCz_ADJgvA0zYf_t7pv0QPDL.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/yb\\\\/r\\\\/NhIPBURwWGUkK8iX18qmqvBJatoAz6b7cVOYx4Wm1u46IaTRXt2PIm7cUBALJDIaiiHkOzRDrbA4Ya3PFofyfVOSi-IdaDmJyAhZIM2dJyhGJolb7r7OoJHv8ejnGXlq2weUIwHyAuQlaQg6PnSSckeNCUy7uWU2agRdIhbxTGwCUpbu8J5KrhBJI3pw72NbUOY6OmGlupfsKd1TmRumaaovRcIZN7y0LkfqgfB0kJBEGkVW8p2gGc26N8Qfk-FCm9gxSTguzFJUQb0LijTIwdnVA6NvQ7L9rgeERzxseQEsSpJHTBRCz_ADJgvA0zYf_t7pv0QPDL.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"v4A0+In\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["v4A0+In"]=1\\\\\\\" onerror=\\\\\\\"_btldr["v4A0+In"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/yL\\\\/r\\\\/8v1kHBxAlg0s7ZJP1LnQAlMl8C5y2rlpvQtyCgXDYyqjvsWqehdEtWws5tH2NgfstC_SSW0hAVENJnUa-sdTyYKlAQZvODulhczvbrcVnrAeqVEVexHgMAJell2oNQ7rybAU0zMDlzpblQTWCf5UjX8gNRZgsR4pKwIjNMsh5Q510mGcwYYBW73Wa6TuCLDSQgYwPJCEcxSbE5LyreDl3jXx3wv49GzyWL2NHyBmFDoYVNCKe8OEJU8IzpGUPlnf6DNqcdPqtNwJmlTLck_e46Vp8LmQKkDkt1v4vMz83ZRMWXuBIdjAXA-h1el5tkY9Beh5Lw71Dr.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/yL\\\\/r\\\\/8v1kHBxAlg0s7ZJP1LnQAlMl8C5y2rlpvQtyCgXDYyqjvsWqehdEtWws5tH2NgfstC_SSW0hAVENJnUa-sdTyYKlAQZvODulhczvbrcVnrAeqVEVexHgMAJell2oNQ7rybAU0zMDlzpblQTWCf5UjX8gNRZgsR4pKwIjNMsh5Q510mGcwYYBW73Wa6TuCLDSQgYwPJCEcxSbE5LyreDl3jXx3wv49GzyWL2NHyBmFDoYVNCKe8OEJU8IzpGUPlnf6DNqcdPqtNwJmlTLck_e46Vp8LmQKkDkt1v4vMz83ZRMWXuBIdjAXA-h1el5tkY9Beh5Lw71Dr.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"c4mNHv4\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["c4mNHv4"]=1\\\\\\\" onerror=\\\\\\\"_btldr["c4mNHv4"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3irJJ4\\\\/yE\\\\/l\\\\/en_US\\\\/354UJBYNRrQ4kbeTtWZpHz2DyENMiXx7Lyv7B8FhlyADKUkegNJtu-YZCZfdNuDxV9Q-IijCsQ4W8wY4EIqCZhhyi5f6RcfyAtYVjmai1nF6tN9O_id9t2V7sCAv6_4MGpoiu-0j7sl3YPO9bB-yhnPozrHf2cw02CIBjZ4DD1mtt5HKBHYrtu5OX4emrtj2duWk-Unx0Iz1ZbdNf6mhM5GzGlJusl-rviwxBElfOpn2Jb1wO31wjwzxxW-EQczH8Nqj2IcM6zegAT9nHWNZbgrYg41hQ1NTq3nKHKsptjBfZsES-n8CYN2ewgsXTq3ZvsoWQZXk-J.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3irJJ4\\\\/yE\\\\/l\\\\/en_US\\\\/354UJBYNRrQ4kbeTtWZpHz2DyENMiXx7Lyv7B8FhlyADKUkegNJtu-YZCZfdNuDxV9Q-IijCsQ4W8wY4EIqCZhhyi5f6RcfyAtYVjmai1nF6tN9O_id9t2V7sCAv6_4MGpoiu-0j7sl3YPO9bB-yhnPozrHf2cw02CIBjZ4DD1mtt5HKBHYrtu5OX4emrtj2duWk-Unx0Iz1ZbdNf6mhM5GzGlJusl-rviwxBElfOpn2Jb1wO31wjwzxxW-EQczH8Nqj2IcM6zegAT9nHWNZbgrYg41hQ1NTq3nKHKsptjBfZsES-n8CYN2ewgsXTq3ZvsoWQZXk-J.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"Qa\\\\/NhPL\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["Qa\\\\\\\\\\\\/NhPL"]=1\\\\\\\" onerror=\\\\\\\"_btldr["Qa\\\\\\\\\\\\/NhPL"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/yY\\\\/r\\\\/qatJqm4cef-M0PJz6GZx6H0NaJoIxGFEGHvRoVFbcvQRr5VrXfPPHkrZoZbqu8ylKXHoZ6fcs-iIm-dnBvCZDmOw1P11InvfM9zgcztuanRv5vgpzlSQ8egR_I5zXPBg4o1L52ghWdpf_ESJT7g6AatBADjwDh0rVg7zEegSyKOHcDU3C7biwSewV5WcG6VPq7Gjfyzt2j16ap1_GPu5hOhPBp4TzEoDZL5B_gT-yFDN6SSjtwXOKOB7D4JHkh_KStTW95YrnpQ1n6ZKIo_YTMquUQDCch2jMTYmAw1iP4cy0zAxfsLjMoD2migEraYBIvmD_VTlDx.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/yY\\\\/r\\\\/qatJqm4cef-M0PJz6GZx6H0NaJoIxGFEGHvRoVFbcvQRr5VrXfPPHkrZoZbqu8ylKXHoZ6fcs-iIm-dnBvCZDmOw1P11InvfM9zgcztuanRv5vgpzlSQ8egR_I5zXPBg4o1L52ghWdpf_ESJT7g6AatBADjwDh0rVg7zEegSyKOHcDU3C7biwSewV5WcG6VPq7Gjfyzt2j16ap1_GPu5hOhPBp4TzEoDZL5B_gT-yFDN6SSjtwXOKOB7D4JHkh_KStTW95YrnpQ1n6ZKIo_YTMquUQDCch2jMTYmAw1iP4cy0zAxfsLjMoD2migEraYBIvmD_VTlDx.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"TeFJ\\\\/+Z\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["TeFJ\\\\\\\\\\\\/+Z"]=1\\\\\\\" onerror=\\\\\\\"_btldr["TeFJ\\\\\\\\\\\\/+Z"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3i9-J4\\\\/yX\\\\/l\\\\/en_US\\\\/1YdR39xr7hS2dodgbqzFFeJEF61etOqwdI_bpd4d8ycEPD5c21Mn4oZ4KKaY8uJERvcDc4tJvSpFaASc002zkEl-cUbUOKpUXbejbEzg3M9K4hUBIEp7MYNaXPZoWwz0yuBadSmONFknbJYh9BLw68sgh3EtknXLadl69YdtKhD88Oh5bSVSkcxEEbHVNSb2FJza9zw-2sca_RD9snExpD5wxx8hJZdgUs5GJcOy8itclySkBlCRjFMeqcOwSLtqIX8I5trdi7VKaUYMLcpyq7QCMRQroM9KA2mfVyRSckhcPk5NBJDUzITvmCWtylFzj4aVHJbwLx.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3i9-J4\\\\/yX\\\\/l\\\\/en_US\\\\/1YdR39xr7hS2dodgbqzFFeJEF61etOqwdI_bpd4d8ycEPD5c21Mn4oZ4KKaY8uJERvcDc4tJvSpFaASc002zkEl-cUbUOKpUXbejbEzg3M9K4hUBIEp7MYNaXPZoWwz0yuBadSmONFknbJYh9BLw68sgh3EtknXLadl69YdtKhD88Oh5bSVSkcxEEbHVNSb2FJza9zw-2sca_RD9snExpD5wxx8hJZdgUs5GJcOy8itclySkBlCRjFMeqcOwSLtqIX8I5trdi7VKaUYMLcpyq7QCMRQroM9KA2mfVyRSckhcPk5NBJDUzITvmCWtylFzj4aVHJbwLx.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"ZwK4qJF\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["ZwK4qJF"]=1\\\\\\\" onerror=\\\\\\\"_btldr["ZwK4qJF"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3iHjs4\\\\/ye\\\\/l\\\\/en_US\\\\/BHGkq7Sf1tlMawjH0SsbMpCXCrViYXMaRZqnIlV1UgbgMkg8cMCsx2gUcdk8IpCUEoMOQ07y8RhmIr4Bw8-g4FRyXB4IdmX-t-tmpNIug8iK2qVe-EvSnBAHxnbGZkZ56cbc0SEFnJjT6txEObHwWY9Kb8kpTxROk543r4AlDyvB9Vs9Hh-9ZerlyhgsaC1SKtuDp_aLr7gu-sstAwfq77zMe3fgDENI15KXkaUrpaC806zE2mK0StTuWhxdwrj3SeHISlQCtldV0fP7dFAqY_HKWfK9Je08pI0M3ZQcpMux5QJYw2XRgeCzivS1ZsJj9bd5bFFo25.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3iHjs4\\\\/ye\\\\/l\\\\/en_US\\\\/BHGkq7Sf1tlMawjH0SsbMpCXCrViYXMaRZqnIlV1UgbgMkg8cMCsx2gUcdk8IpCUEoMOQ07y8RhmIr4Bw8-g4FRyXB4IdmX-t-tmpNIug8iK2qVe-EvSnBAHxnbGZkZ56cbc0SEFnJjT6txEObHwWY9Kb8kpTxROk543r4AlDyvB9Vs9Hh-9ZerlyhgsaC1SKtuDp_aLr7gu-sstAwfq77zMe3fgDENI15KXkaUrpaC806zE2mK0StTuWhxdwrj3SeHISlQCtldV0fP7dFAqY_HKWfK9Je08pI0M3ZQcpMux5QJYw2XRgeCzivS1ZsJj9bd5bFFo25.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"CkMCZXU\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["CkMCZXU"]=1\\\\\\\" onerror=\\\\\\\"_btldr["CkMCZXU"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3iVwt4\\\\/yV\\\\/l\\\\/en_US\\\\/BUfm1MJ3DzIvt9c2KqJM6V8Ww59a9Pi78vjjrxl0U6nzDz8jZoVno6YrMlxDcitNX-9HLTac3NrMqbfgQG3TqDMm1FKYbJM2Qvg9l1RtBKaCH1bmxTbHIfhqH7La2d7WkaDUDUiulYdrwMmLgvwffuKmeXus3YLaWfplHUklHCLrPkDO9mjpt2MO06iWHt2mtJjcEHhTAhQIigqrR9FMNzypJm0k6rCxsK-mMSvuZTpv2cueVZ2bEGtcAJm9x5olQZvZwLkV.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3iVwt4\\\\/yV\\\\/l\\\\/en_US\\\\/BUfm1MJ3DzIvt9c2KqJM6V8Ww59a9Pi78vjjrxl0U6nzDz8jZoVno6YrMlxDcitNX-9HLTac3NrMqbfgQG3TqDMm1FKYbJM2Qvg9l1RtBKaCH1bmxTbHIfhqH7La2d7WkaDUDUiulYdrwMmLgvwffuKmeXus3YLaWfplHUklHCLrPkDO9mjpt2MO06iWHt2mtJjcEHhTAhQIigqrR9FMNzypJm0k6rCxsK-mMSvuZTpv2cueVZ2bEGtcAJm9x5olQZvZwLkV.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"gmQ6IKU\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":16,5,15,172,2,114,149,131,4,115,17,0,125,12,150,71,0,0,36,122,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["gmQ6IKU"]=1\\\\\\\" onerror=\\\\\\\"_btldr["gmQ6IKU"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/yZ\\\\/r\\\\/Yzrr1KY7dWcbxhBBL2KbjemM0nf0x_yS1XqYgTw22apJxt90qFU3v4Pxak-e4USiIKHwAPN2QJBsPj4Fciq1BBK0D75EV8Gg1dQqM5r_MT4EEd63mtttQHbEeHz3A-7gcORJeUju_3xuWrX42cEDev_uWUz8pbodbk2elOSdK-unZUB_Xxht6hdJ_SEfjpsb-CklA8hCB_5tEfwb8rp7LutQ6o0Jf52OQo3_pl8FP9xaF_6y4kOYFxm2984K-_ycTPWsMhTDqxd3vNGgvHwy70r11o0tzAv6tqhrZqis_gc3D9FnEM3IsgQdPiJ6YB17sUBcEJnN_7.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/yZ\\\\/r\\\\/Yzrr1KY7dWcbxhBBL2KbjemM0nf0x_yS1XqYgTw22apJxt90qFU3v4Pxak-e4USiIKHwAPN2QJBsPj4Fciq1BBK0D75EV8Gg1dQqM5r_MT4EEd63mtttQHbEeHz3A-7gcORJeUju_3xuWrX42cEDev_uWUz8pbodbk2elOSdK-unZUB_Xxht6hdJ_SEfjpsb-CklA8hCB_5tEfwb8rp7LutQ6o0Jf52OQo3_pl8FP9xaF_6y4kOYFxm2984K-_ycTPWsMhTDqxd3vNGgvHwy70r11o0tzAv6tqhrZqis_gc3D9FnEM3IsgQdPiJ6YB17sUBcEJnN_7.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"abN+0SJ\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["abN+0SJ"]=1\\\\\\\" onerror=\\\\\\\"_btldr["abN+0SJ"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/yy\\\\/r\\\\/0XEeIW8o0NOrn_x4LVdZvM5yqsnlqFhzz8kQoLhPjDNNkKXfZFOAdlwZ5E5FUp_PcdGzLGMdn0OQq-K_QjHWRryjSy8rWzFFmommNe0cjZoQNpJAyFtpMyFjgzpBO9GoEboORbeVWk4rJI72dm9SqznuGrEKhh2oGBXh1nTTFvhC9tgfXxJXsDbH8bI1XBE8CTUU4NxMLaRs4CJJhIaAHXdztHBOx1H-UrfIYEw8w5IXo9ZPk6zwNYr8DKnCFRyzMxc9tAfvdHreeY9Sr7_dg0PP1dXT5vJQ3mqK2P9BlKpElhxLv-OW5vPSAqPssUiez_meLUcEM2.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/yy\\\\/r\\\\/0XEeIW8o0NOrn_x4LVdZvM5yqsnlqFhzz8kQoLhPjDNNkKXfZFOAdlwZ5E5FUp_PcdGzLGMdn0OQq-K_QjHWRryjSy8rWzFFmommNe0cjZoQNpJAyFtpMyFjgzpBO9GoEboORbeVWk4rJI72dm9SqznuGrEKhh2oGBXh1nTTFvhC9tgfXxJXsDbH8bI1XBE8CTUU4NxMLaRs4CJJhIaAHXdztHBOx1H-UrfIYEw8w5IXo9ZPk6zwNYr8DKnCFRyzMxc9tAfvdHreeY9Sr7_dg0PP1dXT5vJQ3mqK2P9BlKpElhxLv-OW5vPSAqPssUiez_meLUcEM2.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"O3QTQed\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["O3QTQed"]=1\\\\\\\" onerror=\\\\\\\"_btldr["O3QTQed"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3isHT4\\\\/yk\\\\/l\\\\/en_US\\\\/qoLYK75llRoqz-ehW8FecP37DoL3dC_VtrE6yazsl-6owJbRvq3YOHhKnoDZr_m70AWcIK_ihqwcyEckdeEHSghikQbW56iiZX6GRpJOsT6gtkDDPNcRtCf50Qq3gidLxi-M_wg1FqiluBWPxJmIXaxA8kMLrgZSAF-TYAMNQnUYruJBIbjsSRj4WtkeORq8gi6w3m2IJJkTIcBVONHKUvhDWy_3-hmlUuCvkDA_MHi5NONlCRw4zQy745lvX35H1tFMfpyxmlN9h053ROaG4kIcfWZfbcKr2gMWxdGDe_-suv2R7oRtdeheBe6ez-w5unPVOPk1jv.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3isHT4\\\\/yk\\\\/l\\\\/en_US\\\\/qoLYK75llRoqz-ehW8FecP37DoL3dC_VtrE6yazsl-6owJbRvq3YOHhKnoDZr_m70AWcIK_ihqwcyEckdeEHSghikQbW56iiZX6GRpJOsT6gtkDDPNcRtCf50Qq3gidLxi-M_wg1FqiluBWPxJmIXaxA8kMLrgZSAF-TYAMNQnUYruJBIbjsSRj4WtkeORq8gi6w3m2IJJkTIcBVONHKUvhDWy_3-hmlUuCvkDA_MHi5NONlCRw4zQy745lvX35H1tFMfpyxmlN9h053ROaG4kIcfWZfbcKr2gMWxdGDe_-suv2R7oRtdeheBe6ez-w5unPVOPk1jv.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"TLcGXj3\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["TLcGXj3"]=1\\\\\\\" onerror=\\\\\\\"_btldr["TLcGXj3"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3iUH34\\\\/yb\\\\/l\\\\/en_US\\\\/bJx-6NbXSbbOsiIGeYTcm2pn6f6tH2qiD5OyAqiJFpkmnjz0jxXTGP1JA5oMjI2C8bCXXY4dUodCFI1wCbYmwZLQ6sWz78dOy6ZX6ija03nk_mFtRPQUCAqc8P1dAvdO4pRv4F7XPzfo5r1ubZzmYckx881WGT_e9cdJhK42i4EoMO0UymyN8BRpcfcLaRuM6YodhiCuE_8kpyxHEfoVl-Oq2zvnonLQZz12HBZTAgyxZ4ZHv4trdI4pHFFWCcuS5XpUg1KmcOB48a7kfTWZxFsJeYSYhju2Eo3PRXcFFzKLmoI6fn8svBZsQlySDdtcCIEebzBwLs.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3iUH34\\\\/yb\\\\/l\\\\/en_US\\\\/bJx-6NbXSbbOsiIGeYTcm2pn6f6tH2qiD5OyAqiJFpkmnjz0jxXTGP1JA5oMjI2C8bCXXY4dUodCFI1wCbYmwZLQ6sWz78dOy6ZX6ija03nk_mFtRPQUCAqc8P1dAvdO4pRv4F7XPzfo5r1ubZzmYckx881WGT_e9cdJhK42i4EoMO0UymyN8BRpcfcLaRuM6YodhiCuE_8kpyxHEfoVl-Oq2zvnonLQZz12HBZTAgyxZ4ZHv4trdI4pHFFWCcuS5XpUg1KmcOB48a7kfTWZxFsJeYSYhju2Eo3PRXcFFzKLmoI6fn8svBZsQlySDdtcCIEebzBwLs.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"RfK25QI\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["RfK25QI"]=1\\\\\\\" onerror=\\\\\\\"_btldr["RfK25QI"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3ihtU4\\\\/yI\\\\/l\\\\/en_US\\\\/Kfja51imjOn8WJrc3z5r6rmd5dDFn-F7AZFuQ2-qae_HPk4wt5ynup-fcvBuH9kzB8FQrIifA5vtJb--bsE4wh_vsj2ciowRWGG6RBcyJrg-Ryx5NX3GOy7uCwUi0OsL9Otq-Bt5I2mxU6dIMDri_rOZ8APsGuyQkf0r5KqLabb6nJLmYr6Gq_hC8Yhj0yByFJa3dgm3TsNAUeMlc-Vp3ti5ZjFPxWEGHe77Ad-d0-doVKytr5xOSUz4n7VFyNH6YB3Y8SL45JnmFwIlmMz6vwhLzmRHndhEIhZitUQ-_6iu4-AH3OR4qYWt_hvh29YGaBBZ5uby56.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3ihtU4\\\\/yI\\\\/l\\\\/en_US\\\\/Kfja51imjOn8WJrc3z5r6rmd5dDFn-F7AZFuQ2-qae_HPk4wt5ynup-fcvBuH9kzB8FQrIifA5vtJb--bsE4wh_vsj2ciowRWGG6RBcyJrg-Ryx5NX3GOy7uCwUi0OsL9Otq-Bt5I2mxU6dIMDri_rOZ8APsGuyQkf0r5KqLabb6nJLmYr6Gq_hC8Yhj0yByFJa3dgm3TsNAUeMlc-Vp3ti5ZjFPxWEGHe77Ad-d0-doVKytr5xOSUz4n7VFyNH6YB3Y8SL45JnmFwIlmMz6vwhLzmRHndhEIhZitUQ-_6iu4-AH3OR4qYWt_hvh29YGaBBZ5uby56.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"RGNU2aV\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["RGNU2aV"]=1\\\\\\\" onerror=\\\\\\\"_btldr["RGNU2aV"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/yp\\\\/r\\\\/1FxN-g-sLHwE0jaDfHetz-X__nqmH3CCGb8NFEX19tR1-IjQVtjGzRDZF0MWzv57Px9miQoRSCTisvjs1SL2DnZJhvMlFz-dhfXaLtlg5kXUc-VzRFCsHbDjiGondvnKGR01xA1NcQ6LAaNUwtOY5pfEPXKmoXOR_ll6zTuoYMtykMcoXDhM-hjB2VBZ5yNmRQjcLjKfzuGcJ_HxEmUZK4HR2RzCR84CePizcZ-dA3Jh7oT201_KfNGh6e8iNZzdP7D1tp3T9tDmIhZ1l5lTqsmIp0d2g68GLNgFiEn_IMjnPjBHGb6-zUT8M8JhuJJ6Pa8WJ7XWNy.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/yp\\\\/r\\\\/1FxN-g-sLHwE0jaDfHetz-X__nqmH3CCGb8NFEX19tR1-IjQVtjGzRDZF0MWzv57Px9miQoRSCTisvjs1SL2DnZJhvMlFz-dhfXaLtlg5kXUc-VzRFCsHbDjiGondvnKGR01xA1NcQ6LAaNUwtOY5pfEPXKmoXOR_ll6zTuoYMtykMcoXDhM-hjB2VBZ5yNmRQjcLjKfzuGcJ_HxEmUZK4HR2RzCR84CePizcZ-dA3Jh7oT201_KfNGh6e8iNZzdP7D1tp3T9tDmIhZ1l5lTqsmIp0d2g68GLNgFiEn_IMjnPjBHGb6-zUT8M8JhuJJ6Pa8WJ7XWNy.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"5Qt46bo\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["5Qt46bo"]=1\\\\\\\" onerror=\\\\\\\"_btldr["5Qt46bo"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3iJIK4\\\\/yI\\\\/l\\\\/en_US\\\\/kHYECL9AnD72Rti2_rXMr8vhm_bH84w3R4fcQhb8eQg9pDj3drd6c6RjDsghOXGfN2Vlp18MSq927lrVNHf1HHgNuZxnIWKe0X9GNo6SpegRrUYe1M04GU89qfUCqmwwcvBZUynzgwPuiCQvyQSX7GDKO62dU4DFj11rwoBwjGIsYnXe_mk6rQCgBiptJJqPpWZkuwmwOUdDr3dXqBglotL0WNufwzuLs7swNkngM2WfsDvUfOvW9ZEw15aHezdCyPfh3GUcCUc_NF3F7oiFudWxwms8DmIfBzS2vLzF6Ul5ohVa-QJc-Nn0C8AwGF6VeutzHsKJL6.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3iJIK4\\\\/yI\\\\/l\\\\/en_US\\\\/kHYECL9AnD72Rti2_rXMr8vhm_bH84w3R4fcQhb8eQg9pDj3drd6c6RjDsghOXGfN2Vlp18MSq927lrVNHf1HHgNuZxnIWKe0X9GNo6SpegRrUYe1M04GU89qfUCqmwwcvBZUynzgwPuiCQvyQSX7GDKO62dU4DFj11rwoBwjGIsYnXe_mk6rQCgBiptJJqPpWZkuwmwOUdDr3dXqBglotL0WNufwzuLs7swNkngM2WfsDvUfOvW9ZEw15aHezdCyPfh3GUcCUc_NF3F7oiFudWxwms8DmIfBzS2vLzF6Ul5ohVa-QJc-Nn0C8AwGF6VeutzHsKJL6.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"zVGYK0m\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["zVGYK0m"]=1\\\\\\\" onerror=\\\\\\\"_btldr["zVGYK0m"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3iL5-4\\\\/y7\\\\/l\\\\/en_US\\\\/TW9HPYh_5-k6RNjONVHMKNIBJr2dEJQqrfDV0ctX4w8NXmFWqff3bBZ-QhBTwn8BjfzzA0twj9evZKSZ4fjVnVqS4XB6GCxdn17pgAfSKZ4q4KQWKwd97XOfD-5a2wqJFbeFMYHK8D_Edda5HbuRRyDbjOV59G7LKc1vdxwyhYQh3lHU2zuWP9QCNu3SOHBvp5kqwgauTnMNF5OUSpiMNGs38to4FxdjMlnDzD0kzr-zRE_vgbNmtFYS2XcA4DZVjL6GLoZneaVqrvneetunSzSKK2wNL2DFDxu52lM7p0ytMYe7CBMerLdihp8x8B5qX0dySyK3Uz.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3iL5-4\\\\/y7\\\\/l\\\\/en_US\\\\/TW9HPYh_5-k6RNjONVHMKNIBJr2dEJQqrfDV0ctX4w8NXmFWqff3bBZ-QhBTwn8BjfzzA0twj9evZKSZ4fjVnVqS4XB6GCxdn17pgAfSKZ4q4KQWKwd97XOfD-5a2wqJFbeFMYHK8D_Edda5HbuRRyDbjOV59G7LKc1vdxwyhYQh3lHU2zuWP9QCNu3SOHBvp5kqwgauTnMNF5OUSpiMNGs38to4FxdjMlnDzD0kzr-zRE_vgbNmtFYS2XcA4DZVjL6GLoZneaVqrvneetunSzSKK2wNL2DFDxu52lM7p0ytMYe7CBMerLdihp8x8B5qX0dySyK3Uz.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"HFXa2Tl\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["HFXa2Tl"]=1\\\\\\\" onerror=\\\\\\\"_btldr["HFXa2Tl"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3i_sF4\\\\/yI\\\\/l\\\\/en_US\\\\/ZrU4t3kwImI6SqPbXWgKxAXcQLgl7l30UbRqNpurq3flgwb44cxAbBMLdq1TPrHO8zHrmASwEZSlvdsbfQATjnJYlIZqLZ4sZiPeKuTFIo2E0mMMkFXAvZE7w9jFm_YXg8bQgtIFix4eL_m0d-_XnKwL3x9kRtvP5iWft2Avfc25bvlIxJSM2Ink5lFE1rRcRUh89GRFAARX6ZmNulUsEK0AuzdzjGK9UY3JrlcSpY7fCrWhibP9BBGbVfJM84812HPmH-MUv0uziPMNmIlChJkrlQWpj9bwbGtsEmwDAono8c92r0237lCTMHjBWwzfPMG_qEKX5x.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3i_sF4\\\\/yI\\\\/l\\\\/en_US\\\\/ZrU4t3kwImI6SqPbXWgKxAXcQLgl7l30UbRqNpurq3flgwb44cxAbBMLdq1TPrHO8zHrmASwEZSlvdsbfQATjnJYlIZqLZ4sZiPeKuTFIo2E0mMMkFXAvZE7w9jFm_YXg8bQgtIFix4eL_m0d-_XnKwL3x9kRtvP5iWft2Avfc25bvlIxJSM2Ink5lFE1rRcRUh89GRFAARX6ZmNulUsEK0AuzdzjGK9UY3JrlcSpY7fCrWhibP9BBGbVfJM84812HPmH-MUv0uziPMNmIlChJkrlQWpj9bwbGtsEmwDAono8c92r0237lCTMHjBWwzfPMG_qEKX5x.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"f4Hf6XN\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["f4Hf6XN"]=1\\\\\\\" onerror=\\\\\\\"_btldr["f4Hf6XN"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3ion-4\\\\/yZ\\\\/l\\\\/en_US\\\\/11oqPDfZpu0wxcc2HPlkL2UPRz7JKpK1n9QEQtEc7PCr6E2cnTFetWIfr1ZhaYuWs9e6J7xHk2SlL0ix-j-2N_ATGFZSCi2TgYrcgFLK0AxSGT3LGFyvmhTw8yGEXrjuEWj1f2xOIsLM8yIDaP2sdwOC7o1r9GgNW-xHSOIzWgya1BpJj2M-hkY2thIshJMepu-4VYQcYWs5fi_Tt8TZZQmVPXL7KPLfZn1DmRNKSL94J70K9pVURu94PTA8pS_uuI4ldvhZoneOm7pFVeIXJZHA-10AHTqXIZ09RfvTfyRW6xw-eioo7QBFN0mmyojTpKP7pRhnwv.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3ion-4\\\\/yZ\\\\/l\\\\/en_US\\\\/11oqPDfZpu0wxcc2HPlkL2UPRz7JKpK1n9QEQtEc7PCr6E2cnTFetWIfr1ZhaYuWs9e6J7xHk2SlL0ix-j-2N_ATGFZSCi2TgYrcgFLK0AxSGT3LGFyvmhTw8yGEXrjuEWj1f2xOIsLM8yIDaP2sdwOC7o1r9GgNW-xHSOIzWgya1BpJj2M-hkY2thIshJMepu-4VYQcYWs5fi_Tt8TZZQmVPXL7KPLfZn1DmRNKSL94J70K9pVURu94PTA8pS_uuI4ldvhZoneOm7pFVeIXJZHA-10AHTqXIZ09RfvTfyRW6xw-eioo7QBFN0mmyojTpKP7pRhnwv.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"t7BTu3H\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["t7BTu3H"]=1\\\\\\\" onerror=\\\\\\\"_btldr["t7BTu3H"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3iJV54\\\\/y9\\\\/l\\\\/en_US\\\\/LzeyMYqefUG_ROONscBvtNPGvL_8ubDy2R-joyCe2tvBkqyhy23Xh5RMCbve4RzGiXXvMDX68am2dOoQ4JcqKbYIwyH2i9TrkETxw_TxEiE3Wna_VlKYbzOvTHcqldFLf1cqvD-pFf9W6BbT7pAFz0XKD5j6jFKoOGoewgpUGAIuKZCgCz8-pfQl9Bmvn4hcwCQcUoiLuDmN2de1cEf8nu463SGcDgy6MgpyxSmwyO2UPZr5N_HI7KL7elo9TzYTmxFBoEs-rA88xZwkyzWGFcWbF5xfSx0NMH4NdkriDBp3UhiyQ-RvdIlIVCFhy7a5R-4FgLjsmG.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3iJV54\\\\/y9\\\\/l\\\\/en_US\\\\/LzeyMYqefUG_ROONscBvtNPGvL_8ubDy2R-joyCe2tvBkqyhy23Xh5RMCbve4RzGiXXvMDX68am2dOoQ4JcqKbYIwyH2i9TrkETxw_TxEiE3Wna_VlKYbzOvTHcqldFLf1cqvD-pFf9W6BbT7pAFz0XKD5j6jFKoOGoewgpUGAIuKZCgCz8-pfQl9Bmvn4hcwCQcUoiLuDmN2de1cEf8nu463SGcDgy6MgpyxSmwyO2UPZr5N_HI7KL7elo9TzYTmxFBoEs-rA88xZwkyzWGFcWbF5xfSx0NMH4NdkriDBp3UhiyQ-RvdIlIVCFhy7a5R-4FgLjsmG.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"3pftI9C\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["3pftI9C"]=1\\\\\\\" onerror=\\\\\\\"_btldr["3pftI9C"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3ikjM4\\\\/yJ\\\\/l\\\\/en_US\\\\/85VAGE473n5JfdPRmUQS9rhQ4is1cGrZ87FeZiAKoYDgOVBEU_MoCdgm0LSE4mg7soBVuZT4M-fiSfvHRERRhdoH8uyc2_r0daeAMhwzsqtPK1fuHHhvu4wVOEx1Eg--o9-Ms2M5zHLg1_aWSSlnW-sxo1tiiq75TQrazIUflx9jqSrR2cxKYoV-iff9vEUNx1kt1VMJMaqGcE9etJOLeBofMCSHm68qjzNq4NS8kC1QbrXpFcKWyEyjpo4J02rAqz1aFPilZdiENEakNjy7MonIHgl7UGTl6mlh_vGZ7M7u6gymgxWiznUhiOXh3VK-kryw9-XTsY.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3ikjM4\\\\/yJ\\\\/l\\\\/en_US\\\\/85VAGE473n5JfdPRmUQS9rhQ4is1cGrZ87FeZiAKoYDgOVBEU_MoCdgm0LSE4mg7soBVuZT4M-fiSfvHRERRhdoH8uyc2_r0daeAMhwzsqtPK1fuHHhvu4wVOEx1Eg--o9-Ms2M5zHLg1_aWSSlnW-sxo1tiiq75TQrazIUflx9jqSrR2cxKYoV-iff9vEUNx1kt1VMJMaqGcE9etJOLeBofMCSHm68qjzNq4NS8kC1QbrXpFcKWyEyjpo4J02rAqz1aFPilZdiENEakNjy7MonIHgl7UGTl6mlh_vGZ7M7u6gymgxWiznUhiOXh3VK-kryw9-XTsY.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"gujBMKd\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["gujBMKd"]=1\\\\\\\" onerror=\\\\\\\"_btldr["gujBMKd"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3iRes4\\\\/yb\\\\/l\\\\/en_US\\\\/9bvZAX2eo7va5pevEUMoxeRBe7hqBeUMP1Y3oLMlsTpLzi561adg_JCdFkC5lcknB_dcpH3YR_OYbMZNVDRmSSZjzbsIvUypw3oIe-tldHFiYLIniQqkd7ZGsiaHUBw-3pFQVBljswiiH1Be-g6-DlbpZhwVjyXzNsvTXxsLla7p8VTWyJ9YtKCcEbuhe89uwDaQy8lONrdyfFf8sr_83n_44_j4NWm_Uck-WOhLsSKppydnapj6bKERGqxC2aprDA_YZ1GBCtyCMWCbJfvNbER3G-uhnn2ljvI2FKLahy1aeg_LqG_reMS8bKTSbAwRSj4aeHj7PY.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3iRes4\\\\/yb\\\\/l\\\\/en_US\\\\/9bvZAX2eo7va5pevEUMoxeRBe7hqBeUMP1Y3oLMlsTpLzi561adg_JCdFkC5lcknB_dcpH3YR_OYbMZNVDRmSSZjzbsIvUypw3oIe-tldHFiYLIniQqkd7ZGsiaHUBw-3pFQVBljswiiH1Be-g6-DlbpZhwVjyXzNsvTXxsLla7p8VTWyJ9YtKCcEbuhe89uwDaQy8lONrdyfFf8sr_83n_44_j4NWm_Uck-WOhLsSKppydnapj6bKERGqxC2aprDA_YZ1GBCtyCMWCbJfvNbER3G-uhnn2ljvI2FKLahy1aeg_LqG_reMS8bKTSbAwRSj4aeHj7PY.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"tIb5Lu6\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["tIb5Lu6"]=1\\\\\\\" onerror=\\\\\\\"_btldr["tIb5Lu6"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3iSdl4\\\\/ym\\\\/l\\\\/en_US\\\\/B7e23IaKVbV-IDwtOyquZua_pgFg4BKpeS5D32MNG_cWz3e2flJOfdHoJa5JYxbEoNpLUFSRtsyNSsKwZvIKssPhVvC_Z9l8mHX7YxV5w6dJvTPfIv1Wea8EydiEC_N7P_l9TJfUNNFynroU6olCbPNT0UejrjjMBaiy-pTuVXjHZUVrW5g65ePQ-mryffG0f6tZFEd--bGowysPJpAdmjILFM3tlg6L6F1Bivowy2MqhwKaYLPjCMVQGuqHGxEZqH5Lzyff_e4pqRiq-9tZTLAn7lkgODx-P-vCPC3qHzLRgmCMw2sJ_BoGvLsCkoLsKTwSv-LVSb.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3iSdl4\\\\/ym\\\\/l\\\\/en_US\\\\/B7e23IaKVbV-IDwtOyquZua_pgFg4BKpeS5D32MNG_cWz3e2flJOfdHoJa5JYxbEoNpLUFSRtsyNSsKwZvIKssPhVvC_Z9l8mHX7YxV5w6dJvTPfIv1Wea8EydiEC_N7P_l9TJfUNNFynroU6olCbPNT0UejrjjMBaiy-pTuVXjHZUVrW5g65ePQ-mryffG0f6tZFEd--bGowysPJpAdmjILFM3tlg6L6F1Bivowy2MqhwKaYLPjCMVQGuqHGxEZqH5Lzyff_e4pqRiq-9tZTLAn7lkgODx-P-vCPC3qHzLRgmCMw2sJ_BoGvLsCkoLsKTwSv-LVSb.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"4WATG6Z\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["4WATG6Z"]=1\\\\\\\" onerror=\\\\\\\"_btldr["4WATG6Z"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3iPVh4\\\\/yy\\\\/l\\\\/en_US\\\\/oyEgifW_kSPvamttv4_y8bKTODHkub37pVsu6o1svc_w4M1DG2Cg9PcTO70ZdsqbluGTkgFyIgr0-hgcT9SvKH7qtBJCVVOakH_bFmL0c7s3VV_6vQy_H7zrnG66heT-vfLQEojkDtSWAeaZYSnzgetgcL-ISBAgltBsKgDZTQIBMsxhT7Zzu6x0J3irQqAbHQTnTxYdSd6lkzfVts71l7zlKZQXAd1o8tlvpbAr9ZfSYPLFD3XXZW-ARSJZsSWfl1OWFinYG8oYxUCrGwmjf4HjfisvMjW2EV5dkaTcjMSIxi7ybeSspwDGobDvoEEYEWVX2juAYf.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3iPVh4\\\\/yy\\\\/l\\\\/en_US\\\\/oyEgifW_kSPvamttv4_y8bKTODHkub37pVsu6o1svc_w4M1DG2Cg9PcTO70ZdsqbluGTkgFyIgr0-hgcT9SvKH7qtBJCVVOakH_bFmL0c7s3VV_6vQy_H7zrnG66heT-vfLQEojkDtSWAeaZYSnzgetgcL-ISBAgltBsKgDZTQIBMsxhT7Zzu6x0J3irQqAbHQTnTxYdSd6lkzfVts71l7zlKZQXAd1o8tlvpbAr9ZfSYPLFD3XXZW-ARSJZsSWfl1OWFinYG8oYxUCrGwmjf4HjfisvMjW2EV5dkaTcjMSIxi7ybeSspwDGobDvoEEYEWVX2juAYf.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"llf+Iz1\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["llf+Iz1"]=1\\\\\\\" onerror=\\\\\\\"_btldr["llf+Iz1"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3iss64\\\\/yl\\\\/l\\\\/en_US\\\\/w33ISbCL8V3qiX4UX1H5jkn-8SN9e_1_DrRvXOsTjZmMUUldnGX0cX_o_Sxyu1IKrLD8931N_nigIEsVkBPIU3jV5ck_gLJllSfgXezwMtBATtO8-WF2EfxHJ7N3MQuZt2DYx-zWP4p-22ULCEiiGBlApk4CdBtKmu1XM8u0allWDokz67Kqb5GIkbhx5GxwXTZ9X2v0YU7XT8XTlytes_eUW9m-NSt6IvLIqardcDre7P16K07TBVPrefe8u2uK-0G6thGn8C1RILXAeOY8RubWtMFxvROoxaLS5LiYe6PjOh_vduMrC00Fvpqzyooaek8rlJ671A.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3iss64\\\\/yl\\\\/l\\\\/en_US\\\\/w33ISbCL8V3qiX4UX1H5jkn-8SN9e_1_DrRvXOsTjZmMUUldnGX0cX_o_Sxyu1IKrLD8931N_nigIEsVkBPIU3jV5ck_gLJllSfgXezwMtBATtO8-WF2EfxHJ7N3MQuZt2DYx-zWP4p-22ULCEiiGBlApk4CdBtKmu1XM8u0allWDokz67Kqb5GIkbhx5GxwXTZ9X2v0YU7XT8XTlytes_eUW9m-NSt6IvLIqardcDre7P16K07TBVPrefe8u2uK-0G6thGn8C1RILXAeOY8RubWtMFxvROoxaLS5LiYe6PjOh_vduMrC00Fvpqzyooaek8rlJ671A.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"hf\\\\/3Fe0\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["hf\\\\\\\\\\\\/3Fe0"]=1\\\\\\\" onerror=\\\\\\\"_btldr["hf\\\\\\\\\\\\/3Fe0"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3irYo4\\\\/yD\\\\/l\\\\/en_US\\\\/0a_EA4lB2_KCSWzLFGxfLphCF1ijSCGtfWoOmFfBKSpnRs8KJ6iT9Q9SFMiEo3y9pUADyCM4gAQAPzubRuP-z16BwFEhaV7ONPdHf51riqFHfihR_biSIUsr7jE9srJvVt0dj3NC-hXSie1YUzjUMTaGie4OOT8wdz1NFu09In4EfGSSwiBwCjGRTir0H9plmH_cT1l1O_Zj6aKOBzt55shUrJ8ZEwqOmsFNECzU0MnHHhUtuCzuaEz08us16R4lML0w5q-h2-9IkVVtnINu4yzQDqcdjt75cQL168Hub1raHraDYl3mFYNOZArvcqUFFFvELgCtyI.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3irYo4\\\\/yD\\\\/l\\\\/en_US\\\\/0a_EA4lB2_KCSWzLFGxfLphCF1ijSCGtfWoOmFfBKSpnRs8KJ6iT9Q9SFMiEo3y9pUADyCM4gAQAPzubRuP-z16BwFEhaV7ONPdHf51riqFHfihR_biSIUsr7jE9srJvVt0dj3NC-hXSie1YUzjUMTaGie4OOT8wdz1NFu09In4EfGSSwiBwCjGRTir0H9plmH_cT1l1O_Zj6aKOBzt55shUrJ8ZEwqOmsFNECzU0MnHHhUtuCzuaEz08us16R4lML0w5q-h2-9IkVVtnINu4yzQDqcdjt75cQL168Hub1raHraDYl3mFYNOZArvcqUFFFvELgCtyI.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"C7QV5vh\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["C7QV5vh"]=1\\\\\\\" onerror=\\\\\\\"_btldr["C7QV5vh"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/yc\\\\/r\\\\/lnui4AyxUBcsbcb4f7T9vDPigyzeLejP9a3rqVyC135Ft3Dn9KtnxcczPLiFNeeRGBp_h0lt7LWfWh1tajLIgmiVEPr-wUYdIq7f373WjIVak8yOV-h82x1n45e4y2AgJtOKl6RZPBZ1o90_dbMF-Avw0WTNjrbOQYiWW0n2nQF7LmmbtL8ziw4TwMtcnX8xp30atjKRxnNN6J16sWzqa_ZaxiiSkUAOMnZhUtOXBbb0DKzfEAsJQ_sjL831c3uxd03x7vRzuWxtev7b5OLtFBhHXjlwEZWciI3JItmbMd7EydHsUdI44rFfbF3KKIug76QbjbCG6W.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/yc\\\\/r\\\\/lnui4AyxUBcsbcb4f7T9vDPigyzeLejP9a3rqVyC135Ft3Dn9KtnxcczPLiFNeeRGBp_h0lt7LWfWh1tajLIgmiVEPr-wUYdIq7f373WjIVak8yOV-h82x1n45e4y2AgJtOKl6RZPBZ1o90_dbMF-Avw0WTNjrbOQYiWW0n2nQF7LmmbtL8ziw4TwMtcnX8xp30atjKRxnNN6J16sWzqa_ZaxiiSkUAOMnZhUtOXBbb0DKzfEAsJQ_sjL831c3uxd03x7vRzuWxtev7b5OLtFBhHXjlwEZWciI3JItmbMd7EydHsUdI44rFfbF3KKIug76QbjbCG6W.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"ThhfgEb\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["ThhfgEb"]=1\\\\\\\" onerror=\\\\\\\"_btldr["ThhfgEb"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/yC\\\\/r\\\\/Pq4uaeRc848VQt8xcPbQ6HMrKmecdIswjogJKphCyZKEvS4IIG_X6NHlAID9Yb3VZw42Yoyf0tMmykLV722V6JXQl01Pi-qj1VL_-4I8luqYzGpiDbr4g6PK3v5CSSry0r_xoSDr1Ua7h12Y5VDMxRDmEcY-UToGh6S_s9tgfz26TmByxwH9l9wBIG20Zc-YblUMd4xV9m63BLJOK3n8cBPDRCdLvi-seRGVuynVOSk4fOy-O35ZTKhlXq7iNRGL2CpNYx4JFcAd081FcpNtpQqKmJUa31B9_oR0g4PIajBggx2bJIwFaAX3kKCQi6ne8Ue20we0jg.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><script src=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3\\\\/yC\\\\/r\\\\/Pq4uaeRc848VQt8xcPbQ6HMrKmecdIswjogJKphCyZKEvS4IIG_X6NHlAID9Yb3VZw42Yoyf0tMmykLV722V6JXQl01Pi-qj1VL_-4I8luqYzGpiDbr4g6PK3v5CSSry0r_xoSDr1Ua7h12Y5VDMxRDmEcY-UToGh6S_s9tgfz26TmByxwH9l9wBIG20Zc-YblUMd4xV9m63BLJOK3n8cBPDRCdLvi-seRGVuynVOSk4fOy-O35ZTKhlXq7iNRGL2CpNYx4JFcAd081FcpNtpQqKmJUa31B9_oR0g4PIajBggx2bJIwFaAX3kKCQi6ne8Ue20we0jg.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" data-bootloader-hash=\\\\\\\"uz9XSuO\\\\\\\" async=\\\\\\\"1\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" data-p=\\\\\\\":0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\\\\\\\" data-btmanifest=\\\\\\\"1007064846_main\\\\\\\" data-c=\\\\\\\"1\\\\\\\" onload=\\\\\\\"_btldr["uz9XSuO"]=1\\\\\\\" onerror=\\\\\\\"_btldr["uz9XSuO"]=1\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\"><\\\\/script>\\\\n<link rel=\\\\\\\"preload\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/static.cdninstagram.com\\\\/rsrc.php\\\\/v3iDYt4\\\\/ye\\\\/l\\\\/en_US\\\\/BJo9jAAlYV5tQRYsLjooCnkVm2HeBOzNeIRFUxAPy-glOla_eXt9RBcDQjjgTDY1gd9pXaTWC8WSdFLi5aA0HzYrhYR0l-JM-acPIE3_uj9a-O9JFs8jxA_81DtjIIctPcBE2cKyVuDYvypGHHQH-rtiOp4WG4IR3pigY96jbc3U2OY_o1vAe5akXEOZZxH7fSN7bKDvkQZezkwNzXqVDHypgNKgYieX33HeZKqiHuEh_Yn6heeoalZ7ikIFOQvONgLXJKc6da3z2mgJlJqivrAWMhRF4NPA2ygNILCNB_CGdbzlO4I-jyTHqEXv9epGVk_RgXgsvo.js?_nc_x=Ij3Wp8lg5Kz\\\\\\\" as=\\\\\\\"script\\\\\\\" crossorigin=\\\\\\\"anonymous\\\\\\\" nonce=\\\\\\\"rELbEEkw\\\\\\\" \\\\/><sc\\\",\\\"body_is_truncated\\\":true,\\\"code\\\":200,\\\"headers_list\\\":[[\\\"Accept-Ch\\\",\\\"sec-ch-prefers-color-scheme,viewport-width\\\"],[\\\"Accept-Ch-Lifetime\\\",\\\"4838400\\\"],[\\\"Alt-Svc\\\",\\\"h3=\\\\\\\":443\\\\\\\"; ma=86400\\\"],[\\\"Content-Type\\\",\\\"text\\\\/html; charset=\\\\\\\"utf-8\\\\\\\"\\\"],[\\\"Cross-Origin-Embedder-Policy-Report-Only\\\",\\\"require-corp;report-to=\\\\\\\"coep_report\\\\\\\"\\\"],[\\\"Cross-Origin-Opener-Policy\\\",\\\"same-origin-allow-popups\\\"],[\\\"Date\\\",\\\"Tue, 07 Mar 2023 14:25:41 GMT\\\"],[\\\"Priority\\\",\\\"u=3,i\\\"],[\\\"Report-To\\\",\\\"{\\\\\\\"max_age\\\\\\\":86400,\\\\\\\"endpoints\\\\\\\":[{\\\\\\\"url\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/www.facebook.com\\\\\\\\\\\\/browser_reporting\\\\\\\\\\\\/?minimize=0\\\\\\\"}],\\\\\\\"group\\\\\\\":\\\\\\\"coep_report\\\\\\\"}\\\"],[\\\"Reporting-Endpoints\\\",\\\"coep_report=\\\\\\\"https:\\\\/\\\\/www.facebook.com\\\\/browser_reporting\\\\/?minimize=0\\\\\\\"\\\"],[\\\"Strict-Transport-Security\\\",\\\"max-age=15552000\\\"],[\\\"Vary\\\",\\\"Sec-Fetch-Site, Sec-Fetch-Mode\\\"],[\\\"Vary\\\",\\\"Accept-Encoding\\\"],[\\\"X-Fb-Debug\\\",\\\"qQf5+KRpv6FBvHdhELxj8JZtLdwNxwfKN+ADlnYZZ+IZjpmfLOgoyxuWZENFhn1buAjXEeX85CbtiHMcLG4Z8w==\\\"],[\\\"X-Fb-Trip-Id\\\",\\\"1679558926\\\"]],\\\"headers\\\":{\\\"Accept-Ch\\\":\\\"sec-ch-prefers-color-scheme,viewport-width\\\",\\\"Accept-Ch-Lifetime\\\":\\\"4838400\\\",\\\"Alt-Svc\\\":\\\"h3=\\\\\\\":443\\\\\\\"; ma=86400\\\",\\\"Content-Type\\\":\\\"text\\\\/html; charset=\\\\\\\"utf-8\\\\\\\"\\\",\\\"Cross-Origin-Embedder-Policy-Report-Only\\\":\\\"require-corp;report-to=\\\\\\\"coep_report\\\\\\\"\\\",\\\"Cross-Origin-Opener-Policy\\\":\\\"same-origin-allow-popups\\\",\\\"Date\\\":\\\"Tue, 07 Mar 2023 14:25:41 GMT\\\",\\\"Priority\\\":\\\"u=3,i\\\",\\\"Report-To\\\":\\\"{\\\\\\\"max_age\\\\\\\":86400,\\\\\\\"endpoints\\\\\\\":[{\\\\\\\"url\\\\\\\":\\\\\\\"https:\\\\\\\\\\\\/\\\\\\\\\\\\/www.facebook.com\\\\\\\\\\\\/browser_reporting\\\\\\\\\\\\/?minimize=0\\\\\\\"}],\\\\\\\"group\\\\\\\":\\\\\\\"coep_report\\\\\\\"}\\\",\\\"Reporting-Endpoints\\\":\\\"coep_report=\\\\\\\"https:\\\\/\\\\/www.facebook.com\\\\/browser_reporting\\\\/?minimize=0\\\\\\\"\\\",\\\"Strict-Transport-Security\\\":\\\"max-age=15552000\\\",\\\"Vary\\\":\\\"Sec-Fetch-Site, Sec-Fetch-Mode\\\",\\\"X-Fb-Debug\\\":\\\"qQf5+KRpv6FBvHdhELxj8JZtLdwNxwfKN+ADlnYZZ+IZjpmfLOgoyxuWZENFhn1buAjXEeX85CbtiHMcLG4Z8w==\\\",\\\"X-Fb-Trip-Id\\\":\\\"1679558926\\\"}},\\\"t\\\":15.8687157}],\\\"http_experiment_failure\\\":null,\\\"body_length_match\\\":null,\\\"body_proportion\\\":0,\\\"status_code_match\\\":true,\\\"headers_match\\\":true,\\\"title_match\\\":null,\\\"accessible\\\":true,\\\"blocking\\\":false,\\\"x_status\\\":1,\\\"x_dns_runtime\\\":50234600,\\\"x_th_runtime\\\":804535500,\\\"x_tcptls_runtime\\\":15012630300,\\\"x_http_runtime\\\":825853600},\\\"test_name\\\":\\\"web_connectivity\\\",\\\"test_runtime\\\":16.6973599,\\\"test_start_time\\\":\\\"2023-03-07 14:25:05\\\",\\\"test_version\\\":\\\"0.4.1\\\"}\\n\",\"category_code\":\"MMED\",\"verification_status\":\"unverified\"}" +} \ No newline at end of file diff --git a/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-this-measurement-does-not-exist_full-true.json b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-this-measurement-does-not-exist_full-true.json new file mode 100644 index 000000000..7ee615cb0 --- /dev/null +++ b/tests/e2e/fixtures/measurement_meta/measurement_meta__measurement_uid-this-measurement-does-not-exist_full-true.json @@ -0,0 +1,5 @@ +{ + "status": 200, + "contentType": "application/json", + "body": "{\"raw_measurement\":\"\"}" +} \ No newline at end of file diff --git a/tests/e2e/fixtures/measurement_meta/measurement_meta__report_id-20221110T100756Z_webconnectivity_US_13335_n1_KWJqHUAPqMdtf2Up_full-true_input-https---www.th_c16e76a4.json b/tests/e2e/fixtures/measurement_meta/measurement_meta__report_id-20221110T100756Z_webconnectivity_US_13335_n1_KWJqHUAPqMdtf2Up_full-true_input-https---www.th_c16e76a4.json new file mode 100644 index 000000000..f01a3667e --- /dev/null +++ b/tests/e2e/fixtures/measurement_meta/measurement_meta__report_id-20221110T100756Z_webconnectivity_US_13335_n1_KWJqHUAPqMdtf2Up_full-true_input-https---www.th_c16e76a4.json @@ -0,0 +1,5 @@ +{ + "status": 200, + "contentType": "application/json", + "body": "{\"input\":\"https://www.theguardian.com/\",\"measurement_start_time\":\"2022-11-10T10:09:16Z\",\"measurement_uid\":\"20221110100919.165568_US_webconnectivity_782abf479bf32868\",\"report_id\":\"20221110T100756Z_webconnectivity_US_13335_n1_KWJqHUAPqMdtf2Up\",\"test_name\":\"web_connectivity\",\"test_start_time\":\"2022-11-10T10:07:53Z\",\"probe_asn\":13335,\"probe_cc\":\"US\",\"scores\":\"{\\\"blocking_general\\\":0.0,\\\"blocking_global\\\":0.0,\\\"blocking_country\\\":0.0,\\\"blocking_isp\\\":0.0,\\\"blocking_local\\\":0.0}\",\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"raw_measurement\":\"{\\\"annotations\\\":{\\\"architecture\\\":\\\"amd64\\\",\\\"engine_name\\\":\\\"ooniprobe-engine\\\",\\\"engine_version\\\":\\\"3.14.1\\\",\\\"platform\\\":\\\"windows\\\"},\\\"data_format_version\\\":\\\"0.2.0\\\",\\\"input\\\":\\\"https:\\\\/\\\\/www.theguardian.com\\\\/\\\",\\\"measurement_start_time\\\":\\\"2022-11-10 10:09:16\\\",\\\"probe_asn\\\":\\\"AS13335\\\",\\\"probe_cc\\\":\\\"US\\\",\\\"probe_ip\\\":\\\"127.0.0.1\\\",\\\"probe_network_name\\\":\\\"Cloudflare, Inc.\\\",\\\"report_id\\\":\\\"20221110T100756Z_webconnectivity_US_13335_n1_KWJqHUAPqMdtf2Up\\\",\\\"resolver_asn\\\":\\\"AS13335\\\",\\\"resolver_ip\\\":\\\"172.70.145.59\\\",\\\"resolver_network_name\\\":\\\"Cloudflare, Inc.\\\",\\\"software_name\\\":\\\"ooniprobe-desktop-unattended\\\",\\\"software_version\\\":\\\"3.14.1\\\",\\\"test_keys\\\":{\\\"agent\\\":\\\"redirect\\\",\\\"client_resolver\\\":\\\"172.70.145.59\\\",\\\"retries\\\":null,\\\"socksproxy\\\":null,\\\"network_events\\\":[{\\\"address\\\":\\\"151.101.129.111:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.5419419,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_start\\\",\\\"t\\\":0.5419419,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":289,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.5424487,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.5938691,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":5063,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.5948553,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":64,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.595523,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_done\\\",\\\"t\\\":0.595523,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":24,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.595523,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"address\\\":\\\"151.101.1.111:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.5419419,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_start\\\",\\\"t\\\":0.5419419,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":289,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.5424487,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.6088643,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":5063,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.6088643,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":64,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.6098169,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_done\\\",\\\"t\\\":0.6098169,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":24,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.6098169,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"address\\\":\\\"[2a04:4e42:200::367]:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.6137457,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_start\\\",\\\"t\\\":0.6137457,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":289,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.6137457,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.6219828,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":703,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.6219828,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":2440,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.6222983,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":1220,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.6222983,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":700,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.6222983,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":64,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.6228068,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_done\\\",\\\"t\\\":0.6228068,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":24,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.6228068,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"address\\\":\\\"151.101.193.111:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.5426784,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_start\\\",\\\"t\\\":0.5426784,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":289,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.5426784,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.5961212,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":5035,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.596763,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":28,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.6473081,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":64,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.647913,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_done\\\",\\\"t\\\":0.647913,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":24,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.647913,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"address\\\":\\\"[2a04:4e42:600::367]:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.6514069,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_start\\\",\\\"t\\\":0.6514069,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":289,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.6514069,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.6741096,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":5063,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.6741096,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":64,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.675123,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_done\\\",\\\"t\\\":0.675123,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":24,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.675123,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"address\\\":\\\"[2a04:4e42:400::367]:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.6258805,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_start\\\",\\\"t\\\":0.6258805,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":289,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.6258805,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.6343992,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":4923,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.6353994,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":140,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.6784406,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":64,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.6793284,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_done\\\",\\\"t\\\":0.6793284,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":24,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.6793284,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"address\\\":\\\"[2a04:4e42::367]:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.6808277,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_start\\\",\\\"t\\\":0.6808277,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":289,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.6808277,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.6953464,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":5063,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.6953464,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":64,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.6961875,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_done\\\",\\\"t\\\":0.6961875,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":24,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.6961875,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"address\\\":\\\"151.101.65.111:443\\\",\\\"failure\\\":null,\\\"operation\\\":\\\"connect\\\",\\\"proto\\\":\\\"tcp\\\",\\\"t\\\":0.6003443,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_start\\\",\\\"t\\\":0.6003443,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":289,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.6003443,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":517,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.6539211,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":4799,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.6549214,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":236,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.6568867,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":28,\\\"operation\\\":\\\"read\\\",\\\"t\\\":0.7172733,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":64,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.7183875,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"operation\\\":\\\"tls_handshake_done\\\",\\\"t\\\":0.7183875,\\\"tags\\\":[\\\"tcptls_experiment\\\"]},{\\\"failure\\\":null,\\\"num_bytes\\\":24,\\\"operation\\\":\\\"write\\\",\\\"t\\\":0.7183875,\\\"tags\\\":[\\\"tcptls_experiment\\\"]}],\\\"tls_handshakes\\\":[{\\\"cipher_suite\\\":\\\"TLS_AES_128_GCM_SHA256\\\",\\\"failure\\\":null,\\\"negotiated_protocol\\\":\\\"h2\\\",\\\"no_tls_verify\\\":false,\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIIJEzCCB\\\\/ugAwIBAgIQAfXyOtRaOWcTRyQVQR9d9jANBgkqhkiG9w0BAQsFADBYMQswCQYDVQQGEwJCRTEZMBcGA1UEChMQR2xvYmFsU2lnbiBudi1zYTEuMCwGA1UEAxMlR2xvYmFsU2lnbiBBdGxhcyBSMyBEViBUTFMgQ0EgMjAyMiBRMTAeFw0yMjAyMTcxODE4MThaFw0yMzAzMjExODE4MTdaMBoxGDAWBgNVBAMMD3RoZWd1YXJkaWFuLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALv6sCNb61ATYO32D3pJvRnYahjDzYbK2TqgJMBYcW1siIUniTA6YRDLd1lU5JWwdHZyN0bfn+avtnvJH29fpRTM3jAep+vw1RSgDqO2lPK2TmM81MjXhtFm5ljEtkEcOxO5EEb3mCdnwQqusI7T07TngsCu6DtmSfdfSjPGAtr9eqJhwFxY\\\\/Es0w2HpskF9wrSU9HskMtUlVNREbdIsDqflFoWrIopxjbxr12ylw6CThPluSbxZxEGedHd\\\\/+JJZM0iLJY+bbBMJo3GdMRMvSMxSK5G2biysNxLU\\\\/xApfPf+\\\\/K4\\\\/QKZ4KKMaEIOmrn1rPnSHgPaGT9x\\\\/SvGz3K8XV5MCAwEAAaOCBhUwggYRMIICygYDVR0RBIICwTCCAr2CD3RoZWd1YXJkaWFuLmNvbYIdKi5hZHZlcnRpc2luZy50aGVndWFyZGlhbi5jb22CGyouY29kZS5kZXYtZ3VhcmRpYW5hcGlzLmNvbYIaKi5jb2RlLmRldi10aGVndWFyZGlhbi5jb22CFSouZGV2LXRoZWd1YXJkaWFuLmNvbYIbKi5lZGl0b3JpYWwudGhlZ3VhcmRpYW4uY29tghcqLmVtYWlsLnRoZWd1YXJkaWFuLmNvbYIQKi5ndWFyZGlhbi5jby51a4ISKi5ndWFyZGlhbmFwaXMuY29tggwqLmd1aW0uY28udWuCECouZ3VpbWNvZGUuY28udWuCDSoub3BoYW4uY28udWuCGSoucWEuZGV2LWd1YXJkaWFuYXBpcy5jb22CGSouc2VydmljZS50aGVndWFyZGlhbi5jb22CEyoudGhlZ3VhcmRpYW4uY28udWuCESoudGhlZ3VhcmRpYW4uY29tghQqLnRoZWd1YXJkaWFuLmRlc2lnboIeYXBpLm5leHRnZW4uZ3VhcmRpYW5hcHBzLmNvLnVrgiNjb2RlLmFwaS5uZXh0Z2VuLmd1YXJkaWFuYXBwcy5jby51a4IRZGV2LWd1dG9vbHMuY28udWuCE2Rldi10aGVndWFyZGlhbi5jb22CBmd1LmNvbYIOZ3VhcmRpYW4uY28udWuCCmd1aW0uY28udWuCDWd1dG9vbHMuY28udWuCEGkuZ3VpbWNvZGUuY28udWuCEG1lZGlhLmd1aW0uY28udWuCEnBhc3RldXAuZ3VpbS5jby51a4IZc3Vic2NyaWJlLnRoZWd1YXJkaWFuLmNvbYIRdGhlZ3VhcmRpYW4uY28udWuCEnRoZWd1YXJkaWFuLmRlc2lnboIKd3d3Lmd1LmNvbYIWbXRhLXN0cy5vYnNlcnZlci5jby51azAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB0GA1UdDgQWBBQQr4yycxJVxCvCpSWUVaMkbo6kYzBXBgNVHSAEUDBOMAgGBmeBDAECATBCBgorBgEEAaAyCgEDMDQwMgYIKwYBBQUHAgEWJmh0dHBzOi8vd3d3Lmdsb2JhbHNpZ24uY29tL3JlcG9zaXRvcnkvMAwGA1UdEwEB\\\\/wQCMAAwgZ4GCCsGAQUFBwEBBIGRMIGOMEAGCCsGAQUFBzABhjRodHRwOi8vb2NzcC5nbG9iYWxzaWduLmNvbS9jYS9nc2F0bGFzcjNkdnRsc2NhMjAyMnExMEoGCCsGAQUFBzAChj5odHRwOi8vc2VjdXJlLmdsb2JhbHNpZ24uY29tL2NhY2VydC9nc2F0bGFzcjNkdnRsc2NhMjAyMnExLmNydDAfBgNVHSMEGDAWgBScKmfQtIMxW4DLKZZVdQk3OLg8pTBIBgNVHR8EQTA\\\\/MD2gO6A5hjdodHRwOi8vY3JsLmdsb2JhbHNpZ24uY29tL2NhL2dzYXRsYXNyM2R2dGxzY2EyMDIycTEuY3JsMIIBfgYKKwYBBAHWeQIEAgSCAW4EggFqAWgAdQCt9776fP8QyIudPZwePhhqtGcpXc+xDCTKhYY069yCigAAAX8I6A4rAAAEAwBGMEQCIDOXxg5DQNhcf0iUNDC6eXFs3icbBtLMGFgNk\\\\/49eA71AiBRYPwTJgSgcZpdR2N4phoebPc2PhZrzP\\\\/jliaGChRttgB2AG9Tdqwx8DEZ2JkApFEV\\\\/3cVHBHZAsEAKQaNsgiaN9kTAAABfwjoDpkAAAQDAEcwRQIgK01WpXqJFHs02r+E9aFkJPJoW5lM71KzpdtQJuwqocACIQDXApTS31APw4dN9tMro3zacRO3Oos8vhtfzS4KN\\\\/lD7gB3AFWB1MIWkDYBSuoLm1c8U\\\\/DA5Dh4cCUIFy+jqh0HE9MMAAABfwjoDpwAAAQDAEgwRgIhAKLOMKN4hDsnNjm3qKjVWEOPbvjoD00LfaYsN0Wd9fRtAiEA0QiKYu72xwGNqh6i6v18sM6KiYnq2fpcHOJ5SeHQUVwwDQYJKoZIhvcNAQELBQADggEBAMRjjx\\\\/LFs3rJOfngJ4qXKyTPZPwNYAoXAVTEzWDbGBv8IhSwcMifijdyLfxNFja5DPefyN9\\\\/pQgWDpO0RHUmEi8hs6HnTXi09iqImNPc+\\\\/FldrgeNP4rnVdpd0ndoFeykM1nM0lQK925jnsjFdYAtL4Q\\\\/1TG98Gc7eafrVf\\\\/1Tge86rzaMpW4\\\\/Sk1xKf1Nv8TWTFNsSnoqnht0Fr7aLFwZpoP+0FdwZTFevAZls4cPia69GnaUy7AXKmyH\\\\/10h1uJ+YkwOM+kRUpDQ7SDIFA5qyzBGghs8MhSdJUeGkMUzIzZ94fJOUZFl5PQpxexTOiMj5CvbtVVRK4zlzAg21IZ0=\\\",\\\"format\\\":\\\"base64\\\"},{\\\"data\\\":\\\"MIIExTCCA62gAwIBAgIQevszfllNI8dv23xMYpva1jANBgkqhkiG9w0BAQsFADBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSMzETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjAeFw0yMTEwMjAxMjAwMDBaFw0yNDEwMjAwMDAwMDBaMFgxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS4wLAYDVQQDEyVHbG9iYWxTaWduIEF0bGFzIFIzIERWIFRMUyBDQSAyMDIyIFExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA9hHdUSQoK3TlnrSsZ2GBd4heCa6uIXBWXA1Hiyt83JH\\\\/chvz82HqdKwEOPMAp0B6JRDsF9C1MwIDql74PhMTvLQ8bPj\\\\/bBA\\\\/4lx1YBd7H+E7DLGnCZxMIcw+uCbyKqtGW4q9KN\\\\/Gb9CA+AOFDfkvESP0h4N7AqiMi3KaZEgi3FTH6FHMow65qpMh2bghBEi4c\\\\/gdVZ4LVPqxXkXiX5GB+y6QlQ492fHFXY\\\\/nxhxT1zf1oCD3HSuFUm4WtwhAG5WJSfwPUoV65fxk+SPG9SanXv6TUcqXdhwWI7sQDzgPjIcYwhDU2OWjrm1d8KHvCas9xBPc+gKPUFg5FZCdEqRZIQIDAQABo4IBlTCCAZEwDgYDVR0PAQH\\\\/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH\\\\/AgEAMB0GA1UdDgQWBBScKmfQtIMxW4DLKZZVdQk3OLg8pTAfBgNVHSMEGDAWgBSP8Et\\\\/qC5FJK5NUPpjmove4t0bvDB7BggrBgEFBQcBAQRvMG0wLgYIKwYBBQUHMAGGImh0dHA6Ly9vY3NwMi5nbG9iYWxzaWduLmNvbS9yb290cjMwOwYIKwYBBQUHMAKGL2h0dHA6Ly9zZWN1cmUuZ2xvYmFsc2lnbi5jb20vY2FjZXJ0L3Jvb3QtcjMuY3J0MDYGA1UdHwQvMC0wK6ApoCeGJWh0dHA6Ly9jcmwuZ2xvYmFsc2lnbi5jb20vcm9vdC1yMy5jcmwwVwYDVR0gBFAwTjAIBgZngQwBAgEwQgYKKwYBBAGgMgoBAzA0MDIGCCsGAQUFBwIBFiZodHRwczovL3d3dy5nbG9iYWxzaWduLmNvbS9yZXBvc2l0b3J5LzANBgkqhkiG9w0BAQsFAAOCAQEASN2DQ+QHnjDag8lm+Ct9qtYVHqAC2lmi4KqWWF\\\\/eAIWV2F0nH56cC3KtFIW6V1ffHIuTcrJJ9UYUa8ptQz6zUJLxyRzHN1ieIM\\\\/wleI28555tPO40l0Lp2amiCxBwMMWZWDgki\\\\/LfONS9mg1SyqWd13FMU5NbP8OXPfRyUyUWBdii8BUvvYOoq8pY8VnYTrlTt9d9QPjEsF1ISiXe66\\\\/mEM0gfgn2+GiHQ9BKKLPxtfYo8RdMJ3B94jP7ZzZg0jOZMYsADZM\\\\/ctTSwhMYz40ZtmvqWa1zcvsx5FcevtWn32SONKK7lHZ1K9jiYbrV15POjl3blum4dQgjhMbYasq\\\\/w==\\\",\\\"format\\\":\\\"base64\\\"}],\\\"server_name\\\":\\\"www.theguardian.com\\\",\\\"t\\\":0.595523,\\\"tags\\\":[\\\"tcptls_experiment\\\"],\\\"tls_version\\\":\\\"TLSv1.3\\\"},{\\\"cipher_suite\\\":\\\"TLS_AES_128_GCM_SHA256\\\",\\\"failure\\\":null,\\\"negotiated_protocol\\\":\\\"h2\\\",\\\"no_tls_verify\\\":false,\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIIJEzCCB\\\\/ugAwIBAgIQAfXyOtRaOWcTRyQVQR9d9jANBgkqhkiG9w0BAQsFADBYMQswCQYDVQQGEwJCRTEZMBcGA1UEChMQR2xvYmFsU2lnbiBudi1zYTEuMCwGA1UEAxMlR2xvYmFsU2lnbiBBdGxhcyBSMyBEViBUTFMgQ0EgMjAyMiBRMTAeFw0yMjAyMTcxODE4MThaFw0yMzAzMjExODE4MTdaMBoxGDAWBgNVBAMMD3RoZWd1YXJkaWFuLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALv6sCNb61ATYO32D3pJvRnYahjDzYbK2TqgJMBYcW1siIUniTA6YRDLd1lU5JWwdHZyN0bfn+avtnvJH29fpRTM3jAep+vw1RSgDqO2lPK2TmM81MjXhtFm5ljEtkEcOxO5EEb3mCdnwQqusI7T07TngsCu6DtmSfdfSjPGAtr9eqJhwFxY\\\\/Es0w2HpskF9wrSU9HskMtUlVNREbdIsDqflFoWrIopxjbxr12ylw6CThPluSbxZxEGedHd\\\\/+JJZM0iLJY+bbBMJo3GdMRMvSMxSK5G2biysNxLU\\\\/xApfPf+\\\\/K4\\\\/QKZ4KKMaEIOmrn1rPnSHgPaGT9x\\\\/SvGz3K8XV5MCAwEAAaOCBhUwggYRMIICygYDVR0RBIICwTCCAr2CD3RoZWd1YXJkaWFuLmNvbYIdKi5hZHZlcnRpc2luZy50aGVndWFyZGlhbi5jb22CGyouY29kZS5kZXYtZ3VhcmRpYW5hcGlzLmNvbYIaKi5jb2RlLmRldi10aGVndWFyZGlhbi5jb22CFSouZGV2LXRoZWd1YXJkaWFuLmNvbYIbKi5lZGl0b3JpYWwudGhlZ3VhcmRpYW4uY29tghcqLmVtYWlsLnRoZWd1YXJkaWFuLmNvbYIQKi5ndWFyZGlhbi5jby51a4ISKi5ndWFyZGlhbmFwaXMuY29tggwqLmd1aW0uY28udWuCECouZ3VpbWNvZGUuY28udWuCDSoub3BoYW4uY28udWuCGSoucWEuZGV2LWd1YXJkaWFuYXBpcy5jb22CGSouc2VydmljZS50aGVndWFyZGlhbi5jb22CEyoudGhlZ3VhcmRpYW4uY28udWuCESoudGhlZ3VhcmRpYW4uY29tghQqLnRoZWd1YXJkaWFuLmRlc2lnboIeYXBpLm5leHRnZW4uZ3VhcmRpYW5hcHBzLmNvLnVrgiNjb2RlLmFwaS5uZXh0Z2VuLmd1YXJkaWFuYXBwcy5jby51a4IRZGV2LWd1dG9vbHMuY28udWuCE2Rldi10aGVndWFyZGlhbi5jb22CBmd1LmNvbYIOZ3VhcmRpYW4uY28udWuCCmd1aW0uY28udWuCDWd1dG9vbHMuY28udWuCEGkuZ3VpbWNvZGUuY28udWuCEG1lZGlhLmd1aW0uY28udWuCEnBhc3RldXAuZ3VpbS5jby51a4IZc3Vic2NyaWJlLnRoZWd1YXJkaWFuLmNvbYIRdGhlZ3VhcmRpYW4uY28udWuCEnRoZWd1YXJkaWFuLmRlc2lnboIKd3d3Lmd1LmNvbYIWbXRhLXN0cy5vYnNlcnZlci5jby51azAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB0GA1UdDgQWBBQQr4yycxJVxCvCpSWUVaMkbo6kYzBXBgNVHSAEUDBOMAgGBmeBDAECATBCBgorBgEEAaAyCgEDMDQwMgYIKwYBBQUHAgEWJmh0dHBzOi8vd3d3Lmdsb2JhbHNpZ24uY29tL3JlcG9zaXRvcnkvMAwGA1UdEwEB\\\\/wQCMAAwgZ4GCCsGAQUFBwEBBIGRMIGOMEAGCCsGAQUFBzABhjRodHRwOi8vb2NzcC5nbG9iYWxzaWduLmNvbS9jYS9nc2F0bGFzcjNkdnRsc2NhMjAyMnExMEoGCCsGAQUFBzAChj5odHRwOi8vc2VjdXJlLmdsb2JhbHNpZ24uY29tL2NhY2VydC9nc2F0bGFzcjNkdnRsc2NhMjAyMnExLmNydDAfBgNVHSMEGDAWgBScKmfQtIMxW4DLKZZVdQk3OLg8pTBIBgNVHR8EQTA\\\\/MD2gO6A5hjdodHRwOi8vY3JsLmdsb2JhbHNpZ24uY29tL2NhL2dzYXRsYXNyM2R2dGxzY2EyMDIycTEuY3JsMIIBfgYKKwYBBAHWeQIEAgSCAW4EggFqAWgAdQCt9776fP8QyIudPZwePhhqtGcpXc+xDCTKhYY069yCigAAAX8I6A4rAAAEAwBGMEQCIDOXxg5DQNhcf0iUNDC6eXFs3icbBtLMGFgNk\\\\/49eA71AiBRYPwTJgSgcZpdR2N4phoebPc2PhZrzP\\\\/jliaGChRttgB2AG9Tdqwx8DEZ2JkApFEV\\\\/3cVHBHZAsEAKQaNsgiaN9kTAAABfwjoDpkAAAQDAEcwRQIgK01WpXqJFHs02r+E9aFkJPJoW5lM71KzpdtQJuwqocACIQDXApTS31APw4dN9tMro3zacRO3Oos8vhtfzS4KN\\\\/lD7gB3AFWB1MIWkDYBSuoLm1c8U\\\\/DA5Dh4cCUIFy+jqh0HE9MMAAABfwjoDpwAAAQDAEgwRgIhAKLOMKN4hDsnNjm3qKjVWEOPbvjoD00LfaYsN0Wd9fRtAiEA0QiKYu72xwGNqh6i6v18sM6KiYnq2fpcHOJ5SeHQUVwwDQYJKoZIhvcNAQELBQADggEBAMRjjx\\\\/LFs3rJOfngJ4qXKyTPZPwNYAoXAVTEzWDbGBv8IhSwcMifijdyLfxNFja5DPefyN9\\\\/pQgWDpO0RHUmEi8hs6HnTXi09iqImNPc+\\\\/FldrgeNP4rnVdpd0ndoFeykM1nM0lQK925jnsjFdYAtL4Q\\\\/1TG98Gc7eafrVf\\\\/1Tge86rzaMpW4\\\\/Sk1xKf1Nv8TWTFNsSnoqnht0Fr7aLFwZpoP+0FdwZTFevAZls4cPia69GnaUy7AXKmyH\\\\/10h1uJ+YkwOM+kRUpDQ7SDIFA5qyzBGghs8MhSdJUeGkMUzIzZ94fJOUZFl5PQpxexTOiMj5CvbtVVRK4zlzAg21IZ0=\\\",\\\"format\\\":\\\"base64\\\"},{\\\"data\\\":\\\"MIIExTCCA62gAwIBAgIQevszfllNI8dv23xMYpva1jANBgkqhkiG9w0BAQsFADBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSMzETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjAeFw0yMTEwMjAxMjAwMDBaFw0yNDEwMjAwMDAwMDBaMFgxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS4wLAYDVQQDEyVHbG9iYWxTaWduIEF0bGFzIFIzIERWIFRMUyBDQSAyMDIyIFExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA9hHdUSQoK3TlnrSsZ2GBd4heCa6uIXBWXA1Hiyt83JH\\\\/chvz82HqdKwEOPMAp0B6JRDsF9C1MwIDql74PhMTvLQ8bPj\\\\/bBA\\\\/4lx1YBd7H+E7DLGnCZxMIcw+uCbyKqtGW4q9KN\\\\/Gb9CA+AOFDfkvESP0h4N7AqiMi3KaZEgi3FTH6FHMow65qpMh2bghBEi4c\\\\/gdVZ4LVPqxXkXiX5GB+y6QlQ492fHFXY\\\\/nxhxT1zf1oCD3HSuFUm4WtwhAG5WJSfwPUoV65fxk+SPG9SanXv6TUcqXdhwWI7sQDzgPjIcYwhDU2OWjrm1d8KHvCas9xBPc+gKPUFg5FZCdEqRZIQIDAQABo4IBlTCCAZEwDgYDVR0PAQH\\\\/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH\\\\/AgEAMB0GA1UdDgQWBBScKmfQtIMxW4DLKZZVdQk3OLg8pTAfBgNVHSMEGDAWgBSP8Et\\\\/qC5FJK5NUPpjmove4t0bvDB7BggrBgEFBQcBAQRvMG0wLgYIKwYBBQUHMAGGImh0dHA6Ly9vY3NwMi5nbG9iYWxzaWduLmNvbS9yb290cjMwOwYIKwYBBQUHMAKGL2h0dHA6Ly9zZWN1cmUuZ2xvYmFsc2lnbi5jb20vY2FjZXJ0L3Jvb3QtcjMuY3J0MDYGA1UdHwQvMC0wK6ApoCeGJWh0dHA6Ly9jcmwuZ2xvYmFsc2lnbi5jb20vcm9vdC1yMy5jcmwwVwYDVR0gBFAwTjAIBgZngQwBAgEwQgYKKwYBBAGgMgoBAzA0MDIGCCsGAQUFBwIBFiZodHRwczovL3d3dy5nbG9iYWxzaWduLmNvbS9yZXBvc2l0b3J5LzANBgkqhkiG9w0BAQsFAAOCAQEASN2DQ+QHnjDag8lm+Ct9qtYVHqAC2lmi4KqWWF\\\\/eAIWV2F0nH56cC3KtFIW6V1ffHIuTcrJJ9UYUa8ptQz6zUJLxyRzHN1ieIM\\\\/wleI28555tPO40l0Lp2amiCxBwMMWZWDgki\\\\/LfONS9mg1SyqWd13FMU5NbP8OXPfRyUyUWBdii8BUvvYOoq8pY8VnYTrlTt9d9QPjEsF1ISiXe66\\\\/mEM0gfgn2+GiHQ9BKKLPxtfYo8RdMJ3B94jP7ZzZg0jOZMYsADZM\\\\/ctTSwhMYz40ZtmvqWa1zcvsx5FcevtWn32SONKK7lHZ1K9jiYbrV15POjl3blum4dQgjhMbYasq\\\\/w==\\\",\\\"format\\\":\\\"base64\\\"}],\\\"server_name\\\":\\\"www.theguardian.com\\\",\\\"t\\\":0.6098169,\\\"tags\\\":[\\\"tcptls_experiment\\\"],\\\"tls_version\\\":\\\"TLSv1.3\\\"},{\\\"cipher_suite\\\":\\\"TLS_AES_128_GCM_SHA256\\\",\\\"failure\\\":null,\\\"negotiated_protocol\\\":\\\"h2\\\",\\\"no_tls_verify\\\":false,\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIIJEzCCB\\\\/ugAwIBAgIQAfXyOtRaOWcTRyQVQR9d9jANBgkqhkiG9w0BAQsFADBYMQswCQYDVQQGEwJCRTEZMBcGA1UEChMQR2xvYmFsU2lnbiBudi1zYTEuMCwGA1UEAxMlR2xvYmFsU2lnbiBBdGxhcyBSMyBEViBUTFMgQ0EgMjAyMiBRMTAeFw0yMjAyMTcxODE4MThaFw0yMzAzMjExODE4MTdaMBoxGDAWBgNVBAMMD3RoZWd1YXJkaWFuLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALv6sCNb61ATYO32D3pJvRnYahjDzYbK2TqgJMBYcW1siIUniTA6YRDLd1lU5JWwdHZyN0bfn+avtnvJH29fpRTM3jAep+vw1RSgDqO2lPK2TmM81MjXhtFm5ljEtkEcOxO5EEb3mCdnwQqusI7T07TngsCu6DtmSfdfSjPGAtr9eqJhwFxY\\\\/Es0w2HpskF9wrSU9HskMtUlVNREbdIsDqflFoWrIopxjbxr12ylw6CThPluSbxZxEGedHd\\\\/+JJZM0iLJY+bbBMJo3GdMRMvSMxSK5G2biysNxLU\\\\/xApfPf+\\\\/K4\\\\/QKZ4KKMaEIOmrn1rPnSHgPaGT9x\\\\/SvGz3K8XV5MCAwEAAaOCBhUwggYRMIICygYDVR0RBIICwTCCAr2CD3RoZWd1YXJkaWFuLmNvbYIdKi5hZHZlcnRpc2luZy50aGVndWFyZGlhbi5jb22CGyouY29kZS5kZXYtZ3VhcmRpYW5hcGlzLmNvbYIaKi5jb2RlLmRldi10aGVndWFyZGlhbi5jb22CFSouZGV2LXRoZWd1YXJkaWFuLmNvbYIbKi5lZGl0b3JpYWwudGhlZ3VhcmRpYW4uY29tghcqLmVtYWlsLnRoZWd1YXJkaWFuLmNvbYIQKi5ndWFyZGlhbi5jby51a4ISKi5ndWFyZGlhbmFwaXMuY29tggwqLmd1aW0uY28udWuCECouZ3VpbWNvZGUuY28udWuCDSoub3BoYW4uY28udWuCGSoucWEuZGV2LWd1YXJkaWFuYXBpcy5jb22CGSouc2VydmljZS50aGVndWFyZGlhbi5jb22CEyoudGhlZ3VhcmRpYW4uY28udWuCESoudGhlZ3VhcmRpYW4uY29tghQqLnRoZWd1YXJkaWFuLmRlc2lnboIeYXBpLm5leHRnZW4uZ3VhcmRpYW5hcHBzLmNvLnVrgiNjb2RlLmFwaS5uZXh0Z2VuLmd1YXJkaWFuYXBwcy5jby51a4IRZGV2LWd1dG9vbHMuY28udWuCE2Rldi10aGVndWFyZGlhbi5jb22CBmd1LmNvbYIOZ3VhcmRpYW4uY28udWuCCmd1aW0uY28udWuCDWd1dG9vbHMuY28udWuCEGkuZ3VpbWNvZGUuY28udWuCEG1lZGlhLmd1aW0uY28udWuCEnBhc3RldXAuZ3VpbS5jby51a4IZc3Vic2NyaWJlLnRoZWd1YXJkaWFuLmNvbYIRdGhlZ3VhcmRpYW4uY28udWuCEnRoZWd1YXJkaWFuLmRlc2lnboIKd3d3Lmd1LmNvbYIWbXRhLXN0cy5vYnNlcnZlci5jby51azAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB0GA1UdDgQWBBQQr4yycxJVxCvCpSWUVaMkbo6kYzBXBgNVHSAEUDBOMAgGBmeBDAECATBCBgorBgEEAaAyCgEDMDQwMgYIKwYBBQUHAgEWJmh0dHBzOi8vd3d3Lmdsb2JhbHNpZ24uY29tL3JlcG9zaXRvcnkvMAwGA1UdEwEB\\\\/wQCMAAwgZ4GCCsGAQUFBwEBBIGRMIGOMEAGCCsGAQUFBzABhjRodHRwOi8vb2NzcC5nbG9iYWxzaWduLmNvbS9jYS9nc2F0bGFzcjNkdnRsc2NhMjAyMnExMEoGCCsGAQUFBzAChj5odHRwOi8vc2VjdXJlLmdsb2JhbHNpZ24uY29tL2NhY2VydC9nc2F0bGFzcjNkdnRsc2NhMjAyMnExLmNydDAfBgNVHSMEGDAWgBScKmfQtIMxW4DLKZZVdQk3OLg8pTBIBgNVHR8EQTA\\\\/MD2gO6A5hjdodHRwOi8vY3JsLmdsb2JhbHNpZ24uY29tL2NhL2dzYXRsYXNyM2R2dGxzY2EyMDIycTEuY3JsMIIBfgYKKwYBBAHWeQIEAgSCAW4EggFqAWgAdQCt9776fP8QyIudPZwePhhqtGcpXc+xDCTKhYY069yCigAAAX8I6A4rAAAEAwBGMEQCIDOXxg5DQNhcf0iUNDC6eXFs3icbBtLMGFgNk\\\\/49eA71AiBRYPwTJgSgcZpdR2N4phoebPc2PhZrzP\\\\/jliaGChRttgB2AG9Tdqwx8DEZ2JkApFEV\\\\/3cVHBHZAsEAKQaNsgiaN9kTAAABfwjoDpkAAAQDAEcwRQIgK01WpXqJFHs02r+E9aFkJPJoW5lM71KzpdtQJuwqocACIQDXApTS31APw4dN9tMro3zacRO3Oos8vhtfzS4KN\\\\/lD7gB3AFWB1MIWkDYBSuoLm1c8U\\\\/DA5Dh4cCUIFy+jqh0HE9MMAAABfwjoDpwAAAQDAEgwRgIhAKLOMKN4hDsnNjm3qKjVWEOPbvjoD00LfaYsN0Wd9fRtAiEA0QiKYu72xwGNqh6i6v18sM6KiYnq2fpcHOJ5SeHQUVwwDQYJKoZIhvcNAQELBQADggEBAMRjjx\\\\/LFs3rJOfngJ4qXKyTPZPwNYAoXAVTEzWDbGBv8IhSwcMifijdyLfxNFja5DPefyN9\\\\/pQgWDpO0RHUmEi8hs6HnTXi09iqImNPc+\\\\/FldrgeNP4rnVdpd0ndoFeykM1nM0lQK925jnsjFdYAtL4Q\\\\/1TG98Gc7eafrVf\\\\/1Tge86rzaMpW4\\\\/Sk1xKf1Nv8TWTFNsSnoqnht0Fr7aLFwZpoP+0FdwZTFevAZls4cPia69GnaUy7AXKmyH\\\\/10h1uJ+YkwOM+kRUpDQ7SDIFA5qyzBGghs8MhSdJUeGkMUzIzZ94fJOUZFl5PQpxexTOiMj5CvbtVVRK4zlzAg21IZ0=\\\",\\\"format\\\":\\\"base64\\\"},{\\\"data\\\":\\\"MIIExTCCA62gAwIBAgIQevszfllNI8dv23xMYpva1jANBgkqhkiG9w0BAQsFADBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSMzETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjAeFw0yMTEwMjAxMjAwMDBaFw0yNDEwMjAwMDAwMDBaMFgxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS4wLAYDVQQDEyVHbG9iYWxTaWduIEF0bGFzIFIzIERWIFRMUyBDQSAyMDIyIFExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA9hHdUSQoK3TlnrSsZ2GBd4heCa6uIXBWXA1Hiyt83JH\\\\/chvz82HqdKwEOPMAp0B6JRDsF9C1MwIDql74PhMTvLQ8bPj\\\\/bBA\\\\/4lx1YBd7H+E7DLGnCZxMIcw+uCbyKqtGW4q9KN\\\\/Gb9CA+AOFDfkvESP0h4N7AqiMi3KaZEgi3FTH6FHMow65qpMh2bghBEi4c\\\\/gdVZ4LVPqxXkXiX5GB+y6QlQ492fHFXY\\\\/nxhxT1zf1oCD3HSuFUm4WtwhAG5WJSfwPUoV65fxk+SPG9SanXv6TUcqXdhwWI7sQDzgPjIcYwhDU2OWjrm1d8KHvCas9xBPc+gKPUFg5FZCdEqRZIQIDAQABo4IBlTCCAZEwDgYDVR0PAQH\\\\/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH\\\\/AgEAMB0GA1UdDgQWBBScKmfQtIMxW4DLKZZVdQk3OLg8pTAfBgNVHSMEGDAWgBSP8Et\\\\/qC5FJK5NUPpjmove4t0bvDB7BggrBgEFBQcBAQRvMG0wLgYIKwYBBQUHMAGGImh0dHA6Ly9vY3NwMi5nbG9iYWxzaWduLmNvbS9yb290cjMwOwYIKwYBBQUHMAKGL2h0dHA6Ly9zZWN1cmUuZ2xvYmFsc2lnbi5jb20vY2FjZXJ0L3Jvb3QtcjMuY3J0MDYGA1UdHwQvMC0wK6ApoCeGJWh0dHA6Ly9jcmwuZ2xvYmFsc2lnbi5jb20vcm9vdC1yMy5jcmwwVwYDVR0gBFAwTjAIBgZngQwBAgEwQgYKKwYBBAGgMgoBAzA0MDIGCCsGAQUFBwIBFiZodHRwczovL3d3dy5nbG9iYWxzaWduLmNvbS9yZXBvc2l0b3J5LzANBgkqhkiG9w0BAQsFAAOCAQEASN2DQ+QHnjDag8lm+Ct9qtYVHqAC2lmi4KqWWF\\\\/eAIWV2F0nH56cC3KtFIW6V1ffHIuTcrJJ9UYUa8ptQz6zUJLxyRzHN1ieIM\\\\/wleI28555tPO40l0Lp2amiCxBwMMWZWDgki\\\\/LfONS9mg1SyqWd13FMU5NbP8OXPfRyUyUWBdii8BUvvYOoq8pY8VnYTrlTt9d9QPjEsF1ISiXe66\\\\/mEM0gfgn2+GiHQ9BKKLPxtfYo8RdMJ3B94jP7ZzZg0jOZMYsADZM\\\\/ctTSwhMYz40ZtmvqWa1zcvsx5FcevtWn32SONKK7lHZ1K9jiYbrV15POjl3blum4dQgjhMbYasq\\\\/w==\\\",\\\"format\\\":\\\"base64\\\"}],\\\"server_name\\\":\\\"www.theguardian.com\\\",\\\"t\\\":0.6228068,\\\"tags\\\":[\\\"tcptls_experiment\\\"],\\\"tls_version\\\":\\\"TLSv1.3\\\"},{\\\"cipher_suite\\\":\\\"TLS_AES_128_GCM_SHA256\\\",\\\"failure\\\":null,\\\"negotiated_protocol\\\":\\\"h2\\\",\\\"no_tls_verify\\\":false,\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIIJEzCCB\\\\/ugAwIBAgIQAfXyOtRaOWcTRyQVQR9d9jANBgkqhkiG9w0BAQsFADBYMQswCQYDVQQGEwJCRTEZMBcGA1UEChMQR2xvYmFsU2lnbiBudi1zYTEuMCwGA1UEAxMlR2xvYmFsU2lnbiBBdGxhcyBSMyBEViBUTFMgQ0EgMjAyMiBRMTAeFw0yMjAyMTcxODE4MThaFw0yMzAzMjExODE4MTdaMBoxGDAWBgNVBAMMD3RoZWd1YXJkaWFuLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALv6sCNb61ATYO32D3pJvRnYahjDzYbK2TqgJMBYcW1siIUniTA6YRDLd1lU5JWwdHZyN0bfn+avtnvJH29fpRTM3jAep+vw1RSgDqO2lPK2TmM81MjXhtFm5ljEtkEcOxO5EEb3mCdnwQqusI7T07TngsCu6DtmSfdfSjPGAtr9eqJhwFxY\\\\/Es0w2HpskF9wrSU9HskMtUlVNREbdIsDqflFoWrIopxjbxr12ylw6CThPluSbxZxEGedHd\\\\/+JJZM0iLJY+bbBMJo3GdMRMvSMxSK5G2biysNxLU\\\\/xApfPf+\\\\/K4\\\\/QKZ4KKMaEIOmrn1rPnSHgPaGT9x\\\\/SvGz3K8XV5MCAwEAAaOCBhUwggYRMIICygYDVR0RBIICwTCCAr2CD3RoZWd1YXJkaWFuLmNvbYIdKi5hZHZlcnRpc2luZy50aGVndWFyZGlhbi5jb22CGyouY29kZS5kZXYtZ3VhcmRpYW5hcGlzLmNvbYIaKi5jb2RlLmRldi10aGVndWFyZGlhbi5jb22CFSouZGV2LXRoZWd1YXJkaWFuLmNvbYIbKi5lZGl0b3JpYWwudGhlZ3VhcmRpYW4uY29tghcqLmVtYWlsLnRoZWd1YXJkaWFuLmNvbYIQKi5ndWFyZGlhbi5jby51a4ISKi5ndWFyZGlhbmFwaXMuY29tggwqLmd1aW0uY28udWuCECouZ3VpbWNvZGUuY28udWuCDSoub3BoYW4uY28udWuCGSoucWEuZGV2LWd1YXJkaWFuYXBpcy5jb22CGSouc2VydmljZS50aGVndWFyZGlhbi5jb22CEyoudGhlZ3VhcmRpYW4uY28udWuCESoudGhlZ3VhcmRpYW4uY29tghQqLnRoZWd1YXJkaWFuLmRlc2lnboIeYXBpLm5leHRnZW4uZ3VhcmRpYW5hcHBzLmNvLnVrgiNjb2RlLmFwaS5uZXh0Z2VuLmd1YXJkaWFuYXBwcy5jby51a4IRZGV2LWd1dG9vbHMuY28udWuCE2Rldi10aGVndWFyZGlhbi5jb22CBmd1LmNvbYIOZ3VhcmRpYW4uY28udWuCCmd1aW0uY28udWuCDWd1dG9vbHMuY28udWuCEGkuZ3VpbWNvZGUuY28udWuCEG1lZGlhLmd1aW0uY28udWuCEnBhc3RldXAuZ3VpbS5jby51a4IZc3Vic2NyaWJlLnRoZWd1YXJkaWFuLmNvbYIRdGhlZ3VhcmRpYW4uY28udWuCEnRoZWd1YXJkaWFuLmRlc2lnboIKd3d3Lmd1LmNvbYIWbXRhLXN0cy5vYnNlcnZlci5jby51azAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB0GA1UdDgQWBBQQr4yycxJVxCvCpSWUVaMkbo6kYzBXBgNVHSAEUDBOMAgGBmeBDAECATBCBgorBgEEAaAyCgEDMDQwMgYIKwYBBQUHAgEWJmh0dHBzOi8vd3d3Lmdsb2JhbHNpZ24uY29tL3JlcG9zaXRvcnkvMAwGA1UdEwEB\\\\/wQCMAAwgZ4GCCsGAQUFBwEBBIGRMIGOMEAGCCsGAQUFBzABhjRodHRwOi8vb2NzcC5nbG9iYWxzaWduLmNvbS9jYS9nc2F0bGFzcjNkdnRsc2NhMjAyMnExMEoGCCsGAQUFBzAChj5odHRwOi8vc2VjdXJlLmdsb2JhbHNpZ24uY29tL2NhY2VydC9nc2F0bGFzcjNkdnRsc2NhMjAyMnExLmNydDAfBgNVHSMEGDAWgBScKmfQtIMxW4DLKZZVdQk3OLg8pTBIBgNVHR8EQTA\\\\/MD2gO6A5hjdodHRwOi8vY3JsLmdsb2JhbHNpZ24uY29tL2NhL2dzYXRsYXNyM2R2dGxzY2EyMDIycTEuY3JsMIIBfgYKKwYBBAHWeQIEAgSCAW4EggFqAWgAdQCt9776fP8QyIudPZwePhhqtGcpXc+xDCTKhYY069yCigAAAX8I6A4rAAAEAwBGMEQCIDOXxg5DQNhcf0iUNDC6eXFs3icbBtLMGFgNk\\\\/49eA71AiBRYPwTJgSgcZpdR2N4phoebPc2PhZrzP\\\\/jliaGChRttgB2AG9Tdqwx8DEZ2JkApFEV\\\\/3cVHBHZAsEAKQaNsgiaN9kTAAABfwjoDpkAAAQDAEcwRQIgK01WpXqJFHs02r+E9aFkJPJoW5lM71KzpdtQJuwqocACIQDXApTS31APw4dN9tMro3zacRO3Oos8vhtfzS4KN\\\\/lD7gB3AFWB1MIWkDYBSuoLm1c8U\\\\/DA5Dh4cCUIFy+jqh0HE9MMAAABfwjoDpwAAAQDAEgwRgIhAKLOMKN4hDsnNjm3qKjVWEOPbvjoD00LfaYsN0Wd9fRtAiEA0QiKYu72xwGNqh6i6v18sM6KiYnq2fpcHOJ5SeHQUVwwDQYJKoZIhvcNAQELBQADggEBAMRjjx\\\\/LFs3rJOfngJ4qXKyTPZPwNYAoXAVTEzWDbGBv8IhSwcMifijdyLfxNFja5DPefyN9\\\\/pQgWDpO0RHUmEi8hs6HnTXi09iqImNPc+\\\\/FldrgeNP4rnVdpd0ndoFeykM1nM0lQK925jnsjFdYAtL4Q\\\\/1TG98Gc7eafrVf\\\\/1Tge86rzaMpW4\\\\/Sk1xKf1Nv8TWTFNsSnoqnht0Fr7aLFwZpoP+0FdwZTFevAZls4cPia69GnaUy7AXKmyH\\\\/10h1uJ+YkwOM+kRUpDQ7SDIFA5qyzBGghs8MhSdJUeGkMUzIzZ94fJOUZFl5PQpxexTOiMj5CvbtVVRK4zlzAg21IZ0=\\\",\\\"format\\\":\\\"base64\\\"},{\\\"data\\\":\\\"MIIExTCCA62gAwIBAgIQevszfllNI8dv23xMYpva1jANBgkqhkiG9w0BAQsFADBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSMzETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjAeFw0yMTEwMjAxMjAwMDBaFw0yNDEwMjAwMDAwMDBaMFgxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS4wLAYDVQQDEyVHbG9iYWxTaWduIEF0bGFzIFIzIERWIFRMUyBDQSAyMDIyIFExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA9hHdUSQoK3TlnrSsZ2GBd4heCa6uIXBWXA1Hiyt83JH\\\\/chvz82HqdKwEOPMAp0B6JRDsF9C1MwIDql74PhMTvLQ8bPj\\\\/bBA\\\\/4lx1YBd7H+E7DLGnCZxMIcw+uCbyKqtGW4q9KN\\\\/Gb9CA+AOFDfkvESP0h4N7AqiMi3KaZEgi3FTH6FHMow65qpMh2bghBEi4c\\\\/gdVZ4LVPqxXkXiX5GB+y6QlQ492fHFXY\\\\/nxhxT1zf1oCD3HSuFUm4WtwhAG5WJSfwPUoV65fxk+SPG9SanXv6TUcqXdhwWI7sQDzgPjIcYwhDU2OWjrm1d8KHvCas9xBPc+gKPUFg5FZCdEqRZIQIDAQABo4IBlTCCAZEwDgYDVR0PAQH\\\\/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH\\\\/AgEAMB0GA1UdDgQWBBScKmfQtIMxW4DLKZZVdQk3OLg8pTAfBgNVHSMEGDAWgBSP8Et\\\\/qC5FJK5NUPpjmove4t0bvDB7BggrBgEFBQcBAQRvMG0wLgYIKwYBBQUHMAGGImh0dHA6Ly9vY3NwMi5nbG9iYWxzaWduLmNvbS9yb290cjMwOwYIKwYBBQUHMAKGL2h0dHA6Ly9zZWN1cmUuZ2xvYmFsc2lnbi5jb20vY2FjZXJ0L3Jvb3QtcjMuY3J0MDYGA1UdHwQvMC0wK6ApoCeGJWh0dHA6Ly9jcmwuZ2xvYmFsc2lnbi5jb20vcm9vdC1yMy5jcmwwVwYDVR0gBFAwTjAIBgZngQwBAgEwQgYKKwYBBAGgMgoBAzA0MDIGCCsGAQUFBwIBFiZodHRwczovL3d3dy5nbG9iYWxzaWduLmNvbS9yZXBvc2l0b3J5LzANBgkqhkiG9w0BAQsFAAOCAQEASN2DQ+QHnjDag8lm+Ct9qtYVHqAC2lmi4KqWWF\\\\/eAIWV2F0nH56cC3KtFIW6V1ffHIuTcrJJ9UYUa8ptQz6zUJLxyRzHN1ieIM\\\\/wleI28555tPO40l0Lp2amiCxBwMMWZWDgki\\\\/LfONS9mg1SyqWd13FMU5NbP8OXPfRyUyUWBdii8BUvvYOoq8pY8VnYTrlTt9d9QPjEsF1ISiXe66\\\\/mEM0gfgn2+GiHQ9BKKLPxtfYo8RdMJ3B94jP7ZzZg0jOZMYsADZM\\\\/ctTSwhMYz40ZtmvqWa1zcvsx5FcevtWn32SONKK7lHZ1K9jiYbrV15POjl3blum4dQgjhMbYasq\\\\/w==\\\",\\\"format\\\":\\\"base64\\\"}],\\\"server_name\\\":\\\"www.theguardian.com\\\",\\\"t\\\":0.647913,\\\"tags\\\":[\\\"tcptls_experiment\\\"],\\\"tls_version\\\":\\\"TLSv1.3\\\"},{\\\"cipher_suite\\\":\\\"TLS_AES_128_GCM_SHA256\\\",\\\"failure\\\":null,\\\"negotiated_protocol\\\":\\\"h2\\\",\\\"no_tls_verify\\\":false,\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIIJEzCCB\\\\/ugAwIBAgIQAfXyOtRaOWcTRyQVQR9d9jANBgkqhkiG9w0BAQsFADBYMQswCQYDVQQGEwJCRTEZMBcGA1UEChMQR2xvYmFsU2lnbiBudi1zYTEuMCwGA1UEAxMlR2xvYmFsU2lnbiBBdGxhcyBSMyBEViBUTFMgQ0EgMjAyMiBRMTAeFw0yMjAyMTcxODE4MThaFw0yMzAzMjExODE4MTdaMBoxGDAWBgNVBAMMD3RoZWd1YXJkaWFuLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALv6sCNb61ATYO32D3pJvRnYahjDzYbK2TqgJMBYcW1siIUniTA6YRDLd1lU5JWwdHZyN0bfn+avtnvJH29fpRTM3jAep+vw1RSgDqO2lPK2TmM81MjXhtFm5ljEtkEcOxO5EEb3mCdnwQqusI7T07TngsCu6DtmSfdfSjPGAtr9eqJhwFxY\\\\/Es0w2HpskF9wrSU9HskMtUlVNREbdIsDqflFoWrIopxjbxr12ylw6CThPluSbxZxEGedHd\\\\/+JJZM0iLJY+bbBMJo3GdMRMvSMxSK5G2biysNxLU\\\\/xApfPf+\\\\/K4\\\\/QKZ4KKMaEIOmrn1rPnSHgPaGT9x\\\\/SvGz3K8XV5MCAwEAAaOCBhUwggYRMIICygYDVR0RBIICwTCCAr2CD3RoZWd1YXJkaWFuLmNvbYIdKi5hZHZlcnRpc2luZy50aGVndWFyZGlhbi5jb22CGyouY29kZS5kZXYtZ3VhcmRpYW5hcGlzLmNvbYIaKi5jb2RlLmRldi10aGVndWFyZGlhbi5jb22CFSouZGV2LXRoZWd1YXJkaWFuLmNvbYIbKi5lZGl0b3JpYWwudGhlZ3VhcmRpYW4uY29tghcqLmVtYWlsLnRoZWd1YXJkaWFuLmNvbYIQKi5ndWFyZGlhbi5jby51a4ISKi5ndWFyZGlhbmFwaXMuY29tggwqLmd1aW0uY28udWuCECouZ3VpbWNvZGUuY28udWuCDSoub3BoYW4uY28udWuCGSoucWEuZGV2LWd1YXJkaWFuYXBpcy5jb22CGSouc2VydmljZS50aGVndWFyZGlhbi5jb22CEyoudGhlZ3VhcmRpYW4uY28udWuCESoudGhlZ3VhcmRpYW4uY29tghQqLnRoZWd1YXJkaWFuLmRlc2lnboIeYXBpLm5leHRnZW4uZ3VhcmRpYW5hcHBzLmNvLnVrgiNjb2RlLmFwaS5uZXh0Z2VuLmd1YXJkaWFuYXBwcy5jby51a4IRZGV2LWd1dG9vbHMuY28udWuCE2Rldi10aGVndWFyZGlhbi5jb22CBmd1LmNvbYIOZ3VhcmRpYW4uY28udWuCCmd1aW0uY28udWuCDWd1dG9vbHMuY28udWuCEGkuZ3VpbWNvZGUuY28udWuCEG1lZGlhLmd1aW0uY28udWuCEnBhc3RldXAuZ3VpbS5jby51a4IZc3Vic2NyaWJlLnRoZWd1YXJkaWFuLmNvbYIRdGhlZ3VhcmRpYW4uY28udWuCEnRoZWd1YXJkaWFuLmRlc2lnboIKd3d3Lmd1LmNvbYIWbXRhLXN0cy5vYnNlcnZlci5jby51azAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB0GA1UdDgQWBBQQr4yycxJVxCvCpSWUVaMkbo6kYzBXBgNVHSAEUDBOMAgGBmeBDAECATBCBgorBgEEAaAyCgEDMDQwMgYIKwYBBQUHAgEWJmh0dHBzOi8vd3d3Lmdsb2JhbHNpZ24uY29tL3JlcG9zaXRvcnkvMAwGA1UdEwEB\\\\/wQCMAAwgZ4GCCsGAQUFBwEBBIGRMIGOMEAGCCsGAQUFBzABhjRodHRwOi8vb2NzcC5nbG9iYWxzaWduLmNvbS9jYS9nc2F0bGFzcjNkdnRsc2NhMjAyMnExMEoGCCsGAQUFBzAChj5odHRwOi8vc2VjdXJlLmdsb2JhbHNpZ24uY29tL2NhY2VydC9nc2F0bGFzcjNkdnRsc2NhMjAyMnExLmNydDAfBgNVHSMEGDAWgBScKmfQtIMxW4DLKZZVdQk3OLg8pTBIBgNVHR8EQTA\\\\/MD2gO6A5hjdodHRwOi8vY3JsLmdsb2JhbHNpZ24uY29tL2NhL2dzYXRsYXNyM2R2dGxzY2EyMDIycTEuY3JsMIIBfgYKKwYBBAHWeQIEAgSCAW4EggFqAWgAdQCt9776fP8QyIudPZwePhhqtGcpXc+xDCTKhYY069yCigAAAX8I6A4rAAAEAwBGMEQCIDOXxg5DQNhcf0iUNDC6eXFs3icbBtLMGFgNk\\\\/49eA71AiBRYPwTJgSgcZpdR2N4phoebPc2PhZrzP\\\\/jliaGChRttgB2AG9Tdqwx8DEZ2JkApFEV\\\\/3cVHBHZAsEAKQaNsgiaN9kTAAABfwjoDpkAAAQDAEcwRQIgK01WpXqJFHs02r+E9aFkJPJoW5lM71KzpdtQJuwqocACIQDXApTS31APw4dN9tMro3zacRO3Oos8vhtfzS4KN\\\\/lD7gB3AFWB1MIWkDYBSuoLm1c8U\\\\/DA5Dh4cCUIFy+jqh0HE9MMAAABfwjoDpwAAAQDAEgwRgIhAKLOMKN4hDsnNjm3qKjVWEOPbvjoD00LfaYsN0Wd9fRtAiEA0QiKYu72xwGNqh6i6v18sM6KiYnq2fpcHOJ5SeHQUVwwDQYJKoZIhvcNAQELBQADggEBAMRjjx\\\\/LFs3rJOfngJ4qXKyTPZPwNYAoXAVTEzWDbGBv8IhSwcMifijdyLfxNFja5DPefyN9\\\\/pQgWDpO0RHUmEi8hs6HnTXi09iqImNPc+\\\\/FldrgeNP4rnVdpd0ndoFeykM1nM0lQK925jnsjFdYAtL4Q\\\\/1TG98Gc7eafrVf\\\\/1Tge86rzaMpW4\\\\/Sk1xKf1Nv8TWTFNsSnoqnht0Fr7aLFwZpoP+0FdwZTFevAZls4cPia69GnaUy7AXKmyH\\\\/10h1uJ+YkwOM+kRUpDQ7SDIFA5qyzBGghs8MhSdJUeGkMUzIzZ94fJOUZFl5PQpxexTOiMj5CvbtVVRK4zlzAg21IZ0=\\\",\\\"format\\\":\\\"base64\\\"},{\\\"data\\\":\\\"MIIExTCCA62gAwIBAgIQevszfllNI8dv23xMYpva1jANBgkqhkiG9w0BAQsFADBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSMzETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjAeFw0yMTEwMjAxMjAwMDBaFw0yNDEwMjAwMDAwMDBaMFgxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS4wLAYDVQQDEyVHbG9iYWxTaWduIEF0bGFzIFIzIERWIFRMUyBDQSAyMDIyIFExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA9hHdUSQoK3TlnrSsZ2GBd4heCa6uIXBWXA1Hiyt83JH\\\\/chvz82HqdKwEOPMAp0B6JRDsF9C1MwIDql74PhMTvLQ8bPj\\\\/bBA\\\\/4lx1YBd7H+E7DLGnCZxMIcw+uCbyKqtGW4q9KN\\\\/Gb9CA+AOFDfkvESP0h4N7AqiMi3KaZEgi3FTH6FHMow65qpMh2bghBEi4c\\\\/gdVZ4LVPqxXkXiX5GB+y6QlQ492fHFXY\\\\/nxhxT1zf1oCD3HSuFUm4WtwhAG5WJSfwPUoV65fxk+SPG9SanXv6TUcqXdhwWI7sQDzgPjIcYwhDU2OWjrm1d8KHvCas9xBPc+gKPUFg5FZCdEqRZIQIDAQABo4IBlTCCAZEwDgYDVR0PAQH\\\\/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH\\\\/AgEAMB0GA1UdDgQWBBScKmfQtIMxW4DLKZZVdQk3OLg8pTAfBgNVHSMEGDAWgBSP8Et\\\\/qC5FJK5NUPpjmove4t0bvDB7BggrBgEFBQcBAQRvMG0wLgYIKwYBBQUHMAGGImh0dHA6Ly9vY3NwMi5nbG9iYWxzaWduLmNvbS9yb290cjMwOwYIKwYBBQUHMAKGL2h0dHA6Ly9zZWN1cmUuZ2xvYmFsc2lnbi5jb20vY2FjZXJ0L3Jvb3QtcjMuY3J0MDYGA1UdHwQvMC0wK6ApoCeGJWh0dHA6Ly9jcmwuZ2xvYmFsc2lnbi5jb20vcm9vdC1yMy5jcmwwVwYDVR0gBFAwTjAIBgZngQwBAgEwQgYKKwYBBAGgMgoBAzA0MDIGCCsGAQUFBwIBFiZodHRwczovL3d3dy5nbG9iYWxzaWduLmNvbS9yZXBvc2l0b3J5LzANBgkqhkiG9w0BAQsFAAOCAQEASN2DQ+QHnjDag8lm+Ct9qtYVHqAC2lmi4KqWWF\\\\/eAIWV2F0nH56cC3KtFIW6V1ffHIuTcrJJ9UYUa8ptQz6zUJLxyRzHN1ieIM\\\\/wleI28555tPO40l0Lp2amiCxBwMMWZWDgki\\\\/LfONS9mg1SyqWd13FMU5NbP8OXPfRyUyUWBdii8BUvvYOoq8pY8VnYTrlTt9d9QPjEsF1ISiXe66\\\\/mEM0gfgn2+GiHQ9BKKLPxtfYo8RdMJ3B94jP7ZzZg0jOZMYsADZM\\\\/ctTSwhMYz40ZtmvqWa1zcvsx5FcevtWn32SONKK7lHZ1K9jiYbrV15POjl3blum4dQgjhMbYasq\\\\/w==\\\",\\\"format\\\":\\\"base64\\\"}],\\\"server_name\\\":\\\"www.theguardian.com\\\",\\\"t\\\":0.675123,\\\"tags\\\":[\\\"tcptls_experiment\\\"],\\\"tls_version\\\":\\\"TLSv1.3\\\"},{\\\"cipher_suite\\\":\\\"TLS_AES_128_GCM_SHA256\\\",\\\"failure\\\":null,\\\"negotiated_protocol\\\":\\\"h2\\\",\\\"no_tls_verify\\\":false,\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIIJEzCCB\\\\/ugAwIBAgIQAfXyOtRaOWcTRyQVQR9d9jANBgkqhkiG9w0BAQsFADBYMQswCQYDVQQGEwJCRTEZMBcGA1UEChMQR2xvYmFsU2lnbiBudi1zYTEuMCwGA1UEAxMlR2xvYmFsU2lnbiBBdGxhcyBSMyBEViBUTFMgQ0EgMjAyMiBRMTAeFw0yMjAyMTcxODE4MThaFw0yMzAzMjExODE4MTdaMBoxGDAWBgNVBAMMD3RoZWd1YXJkaWFuLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALv6sCNb61ATYO32D3pJvRnYahjDzYbK2TqgJMBYcW1siIUniTA6YRDLd1lU5JWwdHZyN0bfn+avtnvJH29fpRTM3jAep+vw1RSgDqO2lPK2TmM81MjXhtFm5ljEtkEcOxO5EEb3mCdnwQqusI7T07TngsCu6DtmSfdfSjPGAtr9eqJhwFxY\\\\/Es0w2HpskF9wrSU9HskMtUlVNREbdIsDqflFoWrIopxjbxr12ylw6CThPluSbxZxEGedHd\\\\/+JJZM0iLJY+bbBMJo3GdMRMvSMxSK5G2biysNxLU\\\\/xApfPf+\\\\/K4\\\\/QKZ4KKMaEIOmrn1rPnSHgPaGT9x\\\\/SvGz3K8XV5MCAwEAAaOCBhUwggYRMIICygYDVR0RBIICwTCCAr2CD3RoZWd1YXJkaWFuLmNvbYIdKi5hZHZlcnRpc2luZy50aGVndWFyZGlhbi5jb22CGyouY29kZS5kZXYtZ3VhcmRpYW5hcGlzLmNvbYIaKi5jb2RlLmRldi10aGVndWFyZGlhbi5jb22CFSouZGV2LXRoZWd1YXJkaWFuLmNvbYIbKi5lZGl0b3JpYWwudGhlZ3VhcmRpYW4uY29tghcqLmVtYWlsLnRoZWd1YXJkaWFuLmNvbYIQKi5ndWFyZGlhbi5jby51a4ISKi5ndWFyZGlhbmFwaXMuY29tggwqLmd1aW0uY28udWuCECouZ3VpbWNvZGUuY28udWuCDSoub3BoYW4uY28udWuCGSoucWEuZGV2LWd1YXJkaWFuYXBpcy5jb22CGSouc2VydmljZS50aGVndWFyZGlhbi5jb22CEyoudGhlZ3VhcmRpYW4uY28udWuCESoudGhlZ3VhcmRpYW4uY29tghQqLnRoZWd1YXJkaWFuLmRlc2lnboIeYXBpLm5leHRnZW4uZ3VhcmRpYW5hcHBzLmNvLnVrgiNjb2RlLmFwaS5uZXh0Z2VuLmd1YXJkaWFuYXBwcy5jby51a4IRZGV2LWd1dG9vbHMuY28udWuCE2Rldi10aGVndWFyZGlhbi5jb22CBmd1LmNvbYIOZ3VhcmRpYW4uY28udWuCCmd1aW0uY28udWuCDWd1dG9vbHMuY28udWuCEGkuZ3VpbWNvZGUuY28udWuCEG1lZGlhLmd1aW0uY28udWuCEnBhc3RldXAuZ3VpbS5jby51a4IZc3Vic2NyaWJlLnRoZWd1YXJkaWFuLmNvbYIRdGhlZ3VhcmRpYW4uY28udWuCEnRoZWd1YXJkaWFuLmRlc2lnboIKd3d3Lmd1LmNvbYIWbXRhLXN0cy5vYnNlcnZlci5jby51azAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB0GA1UdDgQWBBQQr4yycxJVxCvCpSWUVaMkbo6kYzBXBgNVHSAEUDBOMAgGBmeBDAECATBCBgorBgEEAaAyCgEDMDQwMgYIKwYBBQUHAgEWJmh0dHBzOi8vd3d3Lmdsb2JhbHNpZ24uY29tL3JlcG9zaXRvcnkvMAwGA1UdEwEB\\\\/wQCMAAwgZ4GCCsGAQUFBwEBBIGRMIGOMEAGCCsGAQUFBzABhjRodHRwOi8vb2NzcC5nbG9iYWxzaWduLmNvbS9jYS9nc2F0bGFzcjNkdnRsc2NhMjAyMnExMEoGCCsGAQUFBzAChj5odHRwOi8vc2VjdXJlLmdsb2JhbHNpZ24uY29tL2NhY2VydC9nc2F0bGFzcjNkdnRsc2NhMjAyMnExLmNydDAfBgNVHSMEGDAWgBScKmfQtIMxW4DLKZZVdQk3OLg8pTBIBgNVHR8EQTA\\\\/MD2gO6A5hjdodHRwOi8vY3JsLmdsb2JhbHNpZ24uY29tL2NhL2dzYXRsYXNyM2R2dGxzY2EyMDIycTEuY3JsMIIBfgYKKwYBBAHWeQIEAgSCAW4EggFqAWgAdQCt9776fP8QyIudPZwePhhqtGcpXc+xDCTKhYY069yCigAAAX8I6A4rAAAEAwBGMEQCIDOXxg5DQNhcf0iUNDC6eXFs3icbBtLMGFgNk\\\\/49eA71AiBRYPwTJgSgcZpdR2N4phoebPc2PhZrzP\\\\/jliaGChRttgB2AG9Tdqwx8DEZ2JkApFEV\\\\/3cVHBHZAsEAKQaNsgiaN9kTAAABfwjoDpkAAAQDAEcwRQIgK01WpXqJFHs02r+E9aFkJPJoW5lM71KzpdtQJuwqocACIQDXApTS31APw4dN9tMro3zacRO3Oos8vhtfzS4KN\\\\/lD7gB3AFWB1MIWkDYBSuoLm1c8U\\\\/DA5Dh4cCUIFy+jqh0HE9MMAAABfwjoDpwAAAQDAEgwRgIhAKLOMKN4hDsnNjm3qKjVWEOPbvjoD00LfaYsN0Wd9fRtAiEA0QiKYu72xwGNqh6i6v18sM6KiYnq2fpcHOJ5SeHQUVwwDQYJKoZIhvcNAQELBQADggEBAMRjjx\\\\/LFs3rJOfngJ4qXKyTPZPwNYAoXAVTEzWDbGBv8IhSwcMifijdyLfxNFja5DPefyN9\\\\/pQgWDpO0RHUmEi8hs6HnTXi09iqImNPc+\\\\/FldrgeNP4rnVdpd0ndoFeykM1nM0lQK925jnsjFdYAtL4Q\\\\/1TG98Gc7eafrVf\\\\/1Tge86rzaMpW4\\\\/Sk1xKf1Nv8TWTFNsSnoqnht0Fr7aLFwZpoP+0FdwZTFevAZls4cPia69GnaUy7AXKmyH\\\\/10h1uJ+YkwOM+kRUpDQ7SDIFA5qyzBGghs8MhSdJUeGkMUzIzZ94fJOUZFl5PQpxexTOiMj5CvbtVVRK4zlzAg21IZ0=\\\",\\\"format\\\":\\\"base64\\\"},{\\\"data\\\":\\\"MIIExTCCA62gAwIBAgIQevszfllNI8dv23xMYpva1jANBgkqhkiG9w0BAQsFADBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSMzETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjAeFw0yMTEwMjAxMjAwMDBaFw0yNDEwMjAwMDAwMDBaMFgxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS4wLAYDVQQDEyVHbG9iYWxTaWduIEF0bGFzIFIzIERWIFRMUyBDQSAyMDIyIFExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA9hHdUSQoK3TlnrSsZ2GBd4heCa6uIXBWXA1Hiyt83JH\\\\/chvz82HqdKwEOPMAp0B6JRDsF9C1MwIDql74PhMTvLQ8bPj\\\\/bBA\\\\/4lx1YBd7H+E7DLGnCZxMIcw+uCbyKqtGW4q9KN\\\\/Gb9CA+AOFDfkvESP0h4N7AqiMi3KaZEgi3FTH6FHMow65qpMh2bghBEi4c\\\\/gdVZ4LVPqxXkXiX5GB+y6QlQ492fHFXY\\\\/nxhxT1zf1oCD3HSuFUm4WtwhAG5WJSfwPUoV65fxk+SPG9SanXv6TUcqXdhwWI7sQDzgPjIcYwhDU2OWjrm1d8KHvCas9xBPc+gKPUFg5FZCdEqRZIQIDAQABo4IBlTCCAZEwDgYDVR0PAQH\\\\/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH\\\\/AgEAMB0GA1UdDgQWBBScKmfQtIMxW4DLKZZVdQk3OLg8pTAfBgNVHSMEGDAWgBSP8Et\\\\/qC5FJK5NUPpjmove4t0bvDB7BggrBgEFBQcBAQRvMG0wLgYIKwYBBQUHMAGGImh0dHA6Ly9vY3NwMi5nbG9iYWxzaWduLmNvbS9yb290cjMwOwYIKwYBBQUHMAKGL2h0dHA6Ly9zZWN1cmUuZ2xvYmFsc2lnbi5jb20vY2FjZXJ0L3Jvb3QtcjMuY3J0MDYGA1UdHwQvMC0wK6ApoCeGJWh0dHA6Ly9jcmwuZ2xvYmFsc2lnbi5jb20vcm9vdC1yMy5jcmwwVwYDVR0gBFAwTjAIBgZngQwBAgEwQgYKKwYBBAGgMgoBAzA0MDIGCCsGAQUFBwIBFiZodHRwczovL3d3dy5nbG9iYWxzaWduLmNvbS9yZXBvc2l0b3J5LzANBgkqhkiG9w0BAQsFAAOCAQEASN2DQ+QHnjDag8lm+Ct9qtYVHqAC2lmi4KqWWF\\\\/eAIWV2F0nH56cC3KtFIW6V1ffHIuTcrJJ9UYUa8ptQz6zUJLxyRzHN1ieIM\\\\/wleI28555tPO40l0Lp2amiCxBwMMWZWDgki\\\\/LfONS9mg1SyqWd13FMU5NbP8OXPfRyUyUWBdii8BUvvYOoq8pY8VnYTrlTt9d9QPjEsF1ISiXe66\\\\/mEM0gfgn2+GiHQ9BKKLPxtfYo8RdMJ3B94jP7ZzZg0jOZMYsADZM\\\\/ctTSwhMYz40ZtmvqWa1zcvsx5FcevtWn32SONKK7lHZ1K9jiYbrV15POjl3blum4dQgjhMbYasq\\\\/w==\\\",\\\"format\\\":\\\"base64\\\"}],\\\"server_name\\\":\\\"www.theguardian.com\\\",\\\"t\\\":0.6793284,\\\"tags\\\":[\\\"tcptls_experiment\\\"],\\\"tls_version\\\":\\\"TLSv1.3\\\"},{\\\"cipher_suite\\\":\\\"TLS_AES_128_GCM_SHA256\\\",\\\"failure\\\":null,\\\"negotiated_protocol\\\":\\\"h2\\\",\\\"no_tls_verify\\\":false,\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIIJEzCCB\\\\/ugAwIBAgIQAfXyOtRaOWcTRyQVQR9d9jANBgkqhkiG9w0BAQsFADBYMQswCQYDVQQGEwJCRTEZMBcGA1UEChMQR2xvYmFsU2lnbiBudi1zYTEuMCwGA1UEAxMlR2xvYmFsU2lnbiBBdGxhcyBSMyBEViBUTFMgQ0EgMjAyMiBRMTAeFw0yMjAyMTcxODE4MThaFw0yMzAzMjExODE4MTdaMBoxGDAWBgNVBAMMD3RoZWd1YXJkaWFuLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALv6sCNb61ATYO32D3pJvRnYahjDzYbK2TqgJMBYcW1siIUniTA6YRDLd1lU5JWwdHZyN0bfn+avtnvJH29fpRTM3jAep+vw1RSgDqO2lPK2TmM81MjXhtFm5ljEtkEcOxO5EEb3mCdnwQqusI7T07TngsCu6DtmSfdfSjPGAtr9eqJhwFxY\\\\/Es0w2HpskF9wrSU9HskMtUlVNREbdIsDqflFoWrIopxjbxr12ylw6CThPluSbxZxEGedHd\\\\/+JJZM0iLJY+bbBMJo3GdMRMvSMxSK5G2biysNxLU\\\\/xApfPf+\\\\/K4\\\\/QKZ4KKMaEIOmrn1rPnSHgPaGT9x\\\\/SvGz3K8XV5MCAwEAAaOCBhUwggYRMIICygYDVR0RBIICwTCCAr2CD3RoZWd1YXJkaWFuLmNvbYIdKi5hZHZlcnRpc2luZy50aGVndWFyZGlhbi5jb22CGyouY29kZS5kZXYtZ3VhcmRpYW5hcGlzLmNvbYIaKi5jb2RlLmRldi10aGVndWFyZGlhbi5jb22CFSouZGV2LXRoZWd1YXJkaWFuLmNvbYIbKi5lZGl0b3JpYWwudGhlZ3VhcmRpYW4uY29tghcqLmVtYWlsLnRoZWd1YXJkaWFuLmNvbYIQKi5ndWFyZGlhbi5jby51a4ISKi5ndWFyZGlhbmFwaXMuY29tggwqLmd1aW0uY28udWuCECouZ3VpbWNvZGUuY28udWuCDSoub3BoYW4uY28udWuCGSoucWEuZGV2LWd1YXJkaWFuYXBpcy5jb22CGSouc2VydmljZS50aGVndWFyZGlhbi5jb22CEyoudGhlZ3VhcmRpYW4uY28udWuCESoudGhlZ3VhcmRpYW4uY29tghQqLnRoZWd1YXJkaWFuLmRlc2lnboIeYXBpLm5leHRnZW4uZ3VhcmRpYW5hcHBzLmNvLnVrgiNjb2RlLmFwaS5uZXh0Z2VuLmd1YXJkaWFuYXBwcy5jby51a4IRZGV2LWd1dG9vbHMuY28udWuCE2Rldi10aGVndWFyZGlhbi5jb22CBmd1LmNvbYIOZ3VhcmRpYW4uY28udWuCCmd1aW0uY28udWuCDWd1dG9vbHMuY28udWuCEGkuZ3VpbWNvZGUuY28udWuCEG1lZGlhLmd1aW0uY28udWuCEnBhc3RldXAuZ3VpbS5jby51a4IZc3Vic2NyaWJlLnRoZWd1YXJkaWFuLmNvbYIRdGhlZ3VhcmRpYW4uY28udWuCEnRoZWd1YXJkaWFuLmRlc2lnboIKd3d3Lmd1LmNvbYIWbXRhLXN0cy5vYnNlcnZlci5jby51azAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB0GA1UdDgQWBBQQr4yycxJVxCvCpSWUVaMkbo6kYzBXBgNVHSAEUDBOMAgGBmeBDAECATBCBgorBgEEAaAyCgEDMDQwMgYIKwYBBQUHAgEWJmh0dHBzOi8vd3d3Lmdsb2JhbHNpZ24uY29tL3JlcG9zaXRvcnkvMAwGA1UdEwEB\\\\/wQCMAAwgZ4GCCsGAQUFBwEBBIGRMIGOMEAGCCsGAQUFBzABhjRodHRwOi8vb2NzcC5nbG9iYWxzaWduLmNvbS9jYS9nc2F0bGFzcjNkdnRsc2NhMjAyMnExMEoGCCsGAQUFBzAChj5odHRwOi8vc2VjdXJlLmdsb2JhbHNpZ24uY29tL2NhY2VydC9nc2F0bGFzcjNkdnRsc2NhMjAyMnExLmNydDAfBgNVHSMEGDAWgBScKmfQtIMxW4DLKZZVdQk3OLg8pTBIBgNVHR8EQTA\\\\/MD2gO6A5hjdodHRwOi8vY3JsLmdsb2JhbHNpZ24uY29tL2NhL2dzYXRsYXNyM2R2dGxzY2EyMDIycTEuY3JsMIIBfgYKKwYBBAHWeQIEAgSCAW4EggFqAWgAdQCt9776fP8QyIudPZwePhhqtGcpXc+xDCTKhYY069yCigAAAX8I6A4rAAAEAwBGMEQCIDOXxg5DQNhcf0iUNDC6eXFs3icbBtLMGFgNk\\\\/49eA71AiBRYPwTJgSgcZpdR2N4phoebPc2PhZrzP\\\\/jliaGChRttgB2AG9Tdqwx8DEZ2JkApFEV\\\\/3cVHBHZAsEAKQaNsgiaN9kTAAABfwjoDpkAAAQDAEcwRQIgK01WpXqJFHs02r+E9aFkJPJoW5lM71KzpdtQJuwqocACIQDXApTS31APw4dN9tMro3zacRO3Oos8vhtfzS4KN\\\\/lD7gB3AFWB1MIWkDYBSuoLm1c8U\\\\/DA5Dh4cCUIFy+jqh0HE9MMAAABfwjoDpwAAAQDAEgwRgIhAKLOMKN4hDsnNjm3qKjVWEOPbvjoD00LfaYsN0Wd9fRtAiEA0QiKYu72xwGNqh6i6v18sM6KiYnq2fpcHOJ5SeHQUVwwDQYJKoZIhvcNAQELBQADggEBAMRjjx\\\\/LFs3rJOfngJ4qXKyTPZPwNYAoXAVTEzWDbGBv8IhSwcMifijdyLfxNFja5DPefyN9\\\\/pQgWDpO0RHUmEi8hs6HnTXi09iqImNPc+\\\\/FldrgeNP4rnVdpd0ndoFeykM1nM0lQK925jnsjFdYAtL4Q\\\\/1TG98Gc7eafrVf\\\\/1Tge86rzaMpW4\\\\/Sk1xKf1Nv8TWTFNsSnoqnht0Fr7aLFwZpoP+0FdwZTFevAZls4cPia69GnaUy7AXKmyH\\\\/10h1uJ+YkwOM+kRUpDQ7SDIFA5qyzBGghs8MhSdJUeGkMUzIzZ94fJOUZFl5PQpxexTOiMj5CvbtVVRK4zlzAg21IZ0=\\\",\\\"format\\\":\\\"base64\\\"},{\\\"data\\\":\\\"MIIExTCCA62gAwIBAgIQevszfllNI8dv23xMYpva1jANBgkqhkiG9w0BAQsFADBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSMzETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjAeFw0yMTEwMjAxMjAwMDBaFw0yNDEwMjAwMDAwMDBaMFgxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS4wLAYDVQQDEyVHbG9iYWxTaWduIEF0bGFzIFIzIERWIFRMUyBDQSAyMDIyIFExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA9hHdUSQoK3TlnrSsZ2GBd4heCa6uIXBWXA1Hiyt83JH\\\\/chvz82HqdKwEOPMAp0B6JRDsF9C1MwIDql74PhMTvLQ8bPj\\\\/bBA\\\\/4lx1YBd7H+E7DLGnCZxMIcw+uCbyKqtGW4q9KN\\\\/Gb9CA+AOFDfkvESP0h4N7AqiMi3KaZEgi3FTH6FHMow65qpMh2bghBEi4c\\\\/gdVZ4LVPqxXkXiX5GB+y6QlQ492fHFXY\\\\/nxhxT1zf1oCD3HSuFUm4WtwhAG5WJSfwPUoV65fxk+SPG9SanXv6TUcqXdhwWI7sQDzgPjIcYwhDU2OWjrm1d8KHvCas9xBPc+gKPUFg5FZCdEqRZIQIDAQABo4IBlTCCAZEwDgYDVR0PAQH\\\\/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH\\\\/AgEAMB0GA1UdDgQWBBScKmfQtIMxW4DLKZZVdQk3OLg8pTAfBgNVHSMEGDAWgBSP8Et\\\\/qC5FJK5NUPpjmove4t0bvDB7BggrBgEFBQcBAQRvMG0wLgYIKwYBBQUHMAGGImh0dHA6Ly9vY3NwMi5nbG9iYWxzaWduLmNvbS9yb290cjMwOwYIKwYBBQUHMAKGL2h0dHA6Ly9zZWN1cmUuZ2xvYmFsc2lnbi5jb20vY2FjZXJ0L3Jvb3QtcjMuY3J0MDYGA1UdHwQvMC0wK6ApoCeGJWh0dHA6Ly9jcmwuZ2xvYmFsc2lnbi5jb20vcm9vdC1yMy5jcmwwVwYDVR0gBFAwTjAIBgZngQwBAgEwQgYKKwYBBAGgMgoBAzA0MDIGCCsGAQUFBwIBFiZodHRwczovL3d3dy5nbG9iYWxzaWduLmNvbS9yZXBvc2l0b3J5LzANBgkqhkiG9w0BAQsFAAOCAQEASN2DQ+QHnjDag8lm+Ct9qtYVHqAC2lmi4KqWWF\\\\/eAIWV2F0nH56cC3KtFIW6V1ffHIuTcrJJ9UYUa8ptQz6zUJLxyRzHN1ieIM\\\\/wleI28555tPO40l0Lp2amiCxBwMMWZWDgki\\\\/LfONS9mg1SyqWd13FMU5NbP8OXPfRyUyUWBdii8BUvvYOoq8pY8VnYTrlTt9d9QPjEsF1ISiXe66\\\\/mEM0gfgn2+GiHQ9BKKLPxtfYo8RdMJ3B94jP7ZzZg0jOZMYsADZM\\\\/ctTSwhMYz40ZtmvqWa1zcvsx5FcevtWn32SONKK7lHZ1K9jiYbrV15POjl3blum4dQgjhMbYasq\\\\/w==\\\",\\\"format\\\":\\\"base64\\\"}],\\\"server_name\\\":\\\"www.theguardian.com\\\",\\\"t\\\":0.6961875,\\\"tags\\\":[\\\"tcptls_experiment\\\"],\\\"tls_version\\\":\\\"TLSv1.3\\\"},{\\\"cipher_suite\\\":\\\"TLS_AES_128_GCM_SHA256\\\",\\\"failure\\\":null,\\\"negotiated_protocol\\\":\\\"h2\\\",\\\"no_tls_verify\\\":false,\\\"peer_certificates\\\":[{\\\"data\\\":\\\"MIIJEzCCB\\\\/ugAwIBAgIQAfXyOtRaOWcTRyQVQR9d9jANBgkqhkiG9w0BAQsFADBYMQswCQYDVQQGEwJCRTEZMBcGA1UEChMQR2xvYmFsU2lnbiBudi1zYTEuMCwGA1UEAxMlR2xvYmFsU2lnbiBBdGxhcyBSMyBEViBUTFMgQ0EgMjAyMiBRMTAeFw0yMjAyMTcxODE4MThaFw0yMzAzMjExODE4MTdaMBoxGDAWBgNVBAMMD3RoZWd1YXJkaWFuLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALv6sCNb61ATYO32D3pJvRnYahjDzYbK2TqgJMBYcW1siIUniTA6YRDLd1lU5JWwdHZyN0bfn+avtnvJH29fpRTM3jAep+vw1RSgDqO2lPK2TmM81MjXhtFm5ljEtkEcOxO5EEb3mCdnwQqusI7T07TngsCu6DtmSfdfSjPGAtr9eqJhwFxY\\\\/Es0w2HpskF9wrSU9HskMtUlVNREbdIsDqflFoWrIopxjbxr12ylw6CThPluSbxZxEGedHd\\\\/+JJZM0iLJY+bbBMJo3GdMRMvSMxSK5G2biysNxLU\\\\/xApfPf+\\\\/K4\\\\/QKZ4KKMaEIOmrn1rPnSHgPaGT9x\\\\/SvGz3K8XV5MCAwEAAaOCBhUwggYRMIICygYDVR0RBIICwTCCAr2CD3RoZWd1YXJkaWFuLmNvbYIdKi5hZHZlcnRpc2luZy50aGVndWFyZGlhbi5jb22CGyouY29kZS5kZXYtZ3VhcmRpYW5hcGlzLmNvbYIaKi5jb2RlLmRldi10aGVndWFyZGlhbi5jb22CFSouZGV2LXRoZWd1YXJkaWFuLmNvbYIbKi5lZGl0b3JpYWwudGhlZ3VhcmRpYW4uY29tghcqLmVtYWlsLnRoZWd1YXJkaWFuLmNvbYIQKi5ndWFyZGlhbi5jby51a4ISKi5ndWFyZGlhbmFwaXMuY29tggwqLmd1aW0uY28udWuCECouZ3VpbWNvZGUuY28udWuCDSoub3BoYW4uY28udWuCGSoucWEuZGV2LWd1YXJkaWFuYXBpcy5jb22CGSouc2VydmljZS50aGVndWFyZGlhbi5jb22CEyoudGhlZ3VhcmRpYW4uY28udWuCESoudGhlZ3VhcmRpYW4uY29tghQqLnRoZWd1YXJkaWFuLmRlc2lnboIeYXBpLm5leHRnZW4uZ3VhcmRpYW5hcHBzLmNvLnVrgiNjb2RlLmFwaS5uZXh0Z2VuLmd1YXJkaWFuYXBwcy5jby51a4IRZGV2LWd1dG9vbHMuY28udWuCE2Rldi10aGVndWFyZGlhbi5jb22CBmd1LmNvbYIOZ3VhcmRpYW4uY28udWuCCmd1aW0uY28udWuCDWd1dG9vbHMuY28udWuCEGkuZ3VpbWNvZGUuY28udWuCEG1lZGlhLmd1aW0uY28udWuCEnBhc3RldXAuZ3VpbS5jby51a4IZc3Vic2NyaWJlLnRoZWd1YXJkaWFuLmNvbYIRdGhlZ3VhcmRpYW4uY28udWuCEnRoZWd1YXJkaWFuLmRlc2lnboIKd3d3Lmd1LmNvbYIWbXRhLXN0cy5vYnNlcnZlci5jby51azAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB0GA1UdDgQWBBQQr4yycxJVxCvCpSWUVaMkbo6kYzBXBgNVHSAEUDBOMAgGBmeBDAECATBCBgorBgEEAaAyCgEDMDQwMgYIKwYBBQUHAgEWJmh0dHBzOi8vd3d3Lmdsb2JhbHNpZ24uY29tL3JlcG9zaXRvcnkvMAwGA1UdEwEB\\\\/wQCMAAwgZ4GCCsGAQUFBwEBBIGRMIGOMEAGCCsGAQUFBzABhjRodHRwOi8vb2NzcC5nbG9iYWxzaWduLmNvbS9jYS9nc2F0bGFzcjNkdnRsc2NhMjAyMnExMEoGCCsGAQUFBzAChj5odHRwOi8vc2VjdXJlLmdsb2JhbHNpZ24uY29tL2NhY2VydC9nc2F0bGFzcjNkdnRsc2NhMjAyMnExLmNydDAfBgNVHSMEGDAWgBScKmfQtIMxW4DLKZZVdQk3OLg8pTBIBgNVHR8EQTA\\\\/MD2gO6A5hjdodHRwOi8vY3JsLmdsb2JhbHNpZ24uY29tL2NhL2dzYXRsYXNyM2R2dGxzY2EyMDIycTEuY3JsMIIBfgYKKwYBBAHWeQIEAgSCAW4EggFqAWgAdQCt9776fP8QyIudPZwePhhqtGcpXc+xDCTKhYY069yCigAAAX8I6A4rAAAEAwBGMEQCIDOXxg5DQNhcf0iUNDC6eXFs3icbBtLMGFgNk\\\\/49eA71AiBRYPwTJgSgcZpdR2N4phoebPc2PhZrzP\\\\/jliaGChRttgB2AG9Tdqwx8DEZ2JkApFEV\\\\/3cVHBHZAsEAKQaNsgiaN9kTAAABfwjoDpkAAAQDAEcwRQIgK01WpXqJFHs02r+E9aFkJPJoW5lM71KzpdtQJuwqocACIQDXApTS31APw4dN9tMro3zacRO3Oos8vhtfzS4KN\\\\/lD7gB3AFWB1MIWkDYBSuoLm1c8U\\\\/DA5Dh4cCUIFy+jqh0HE9MMAAABfwjoDpwAAAQDAEgwRgIhAKLOMKN4hDsnNjm3qKjVWEOPbvjoD00LfaYsN0Wd9fRtAiEA0QiKYu72xwGNqh6i6v18sM6KiYnq2fpcHOJ5SeHQUVwwDQYJKoZIhvcNAQELBQADggEBAMRjjx\\\\/LFs3rJOfngJ4qXKyTPZPwNYAoXAVTEzWDbGBv8IhSwcMifijdyLfxNFja5DPefyN9\\\\/pQgWDpO0RHUmEi8hs6HnTXi09iqImNPc+\\\\/FldrgeNP4rnVdpd0ndoFeykM1nM0lQK925jnsjFdYAtL4Q\\\\/1TG98Gc7eafrVf\\\\/1Tge86rzaMpW4\\\\/Sk1xKf1Nv8TWTFNsSnoqnht0Fr7aLFwZpoP+0FdwZTFevAZls4cPia69GnaUy7AXKmyH\\\\/10h1uJ+YkwOM+kRUpDQ7SDIFA5qyzBGghs8MhSdJUeGkMUzIzZ94fJOUZFl5PQpxexTOiMj5CvbtVVRK4zlzAg21IZ0=\\\",\\\"format\\\":\\\"base64\\\"},{\\\"data\\\":\\\"MIIExTCCA62gAwIBAgIQevszfllNI8dv23xMYpva1jANBgkqhkiG9w0BAQsFADBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSMzETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjAeFw0yMTEwMjAxMjAwMDBaFw0yNDEwMjAwMDAwMDBaMFgxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS4wLAYDVQQDEyVHbG9iYWxTaWduIEF0bGFzIFIzIERWIFRMUyBDQSAyMDIyIFExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA9hHdUSQoK3TlnrSsZ2GBd4heCa6uIXBWXA1Hiyt83JH\\\\/chvz82HqdKwEOPMAp0B6JRDsF9C1MwIDql74PhMTvLQ8bPj\\\\/bBA\\\\/4lx1YBd7H+E7DLGnCZxMIcw+uCbyKqtGW4q9KN\\\\/Gb9CA+AOFDfkvESP0h4N7AqiMi3KaZEgi3FTH6FHMow65qpMh2bghBEi4c\\\\/gdVZ4LVPqxXkXiX5GB+y6QlQ492fHFXY\\\\/nxhxT1zf1oCD3HSuFUm4WtwhAG5WJSfwPUoV65fxk+SPG9SanXv6TUcqXdhwWI7sQDzgPjIcYwhDU2OWjrm1d8KHvCas9xBPc+gKPUFg5FZCdEqRZIQIDAQABo4IBlTCCAZEwDgYDVR0PAQH\\\\/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjASBgNVHRMBAf8ECDAGAQH\\\\/AgEAMB0GA1UdDgQWBBScKmfQtIMxW4DLKZZVdQk3OLg8pTAfBgNVHSMEGDAWgBSP8Et\\\\/qC5FJK5NUPpjmove4t0bvDB7BggrBgEFBQcBAQRvMG0wLgYIKwYBBQUHMAGGImh0dHA6Ly9vY3NwMi5nbG9iYWxzaWduLmNvbS9yb290cjMwOwYIKwYBBQUHMAKGL2h0dHA6Ly9zZWN1cmUuZ2xvYmFsc2lnbi5jb20vY2FjZXJ0L3Jvb3QtcjMuY3J0MDYGA1UdHwQvMC0wK6ApoCeGJWh0dHA6Ly9jcmwuZ2xvYmFsc2lnbi5jb20vcm9vdC1yMy5jcmwwVwYDVR0gBFAwTjAIBgZngQwBAgEwQgYKKwYBBAGgMgoBAzA0MDIGCCsGAQUFBwIBFiZodHRwczovL3d3dy5nbG9iYWxzaWduLmNvbS9yZXBvc2l0b3J5LzANBgkqhkiG9w0BAQsFAAOCAQEASN2DQ+QHnjDag8lm+Ct9qtYVHqAC2lmi4KqWWF\\\\/eAIWV2F0nH56cC3KtFIW6V1ffHIuTcrJJ9UYUa8ptQz6zUJLxyRzHN1ieIM\\\\/wleI28555tPO40l0Lp2amiCxBwMMWZWDgki\\\\/LfONS9mg1SyqWd13FMU5NbP8OXPfRyUyUWBdii8BUvvYOoq8pY8VnYTrlTt9d9QPjEsF1ISiXe66\\\\/mEM0gfgn2+GiHQ9BKKLPxtfYo8RdMJ3B94jP7ZzZg0jOZMYsADZM\\\\/ctTSwhMYz40ZtmvqWa1zcvsx5FcevtWn32SONKK7lHZ1K9jiYbrV15POjl3blum4dQgjhMbYasq\\\\/w==\\\",\\\"format\\\":\\\"base64\\\"}],\\\"server_name\\\":\\\"www.theguardian.com\\\",\\\"t\\\":0.7183875,\\\"tags\\\":[\\\"tcptls_experiment\\\"],\\\"tls_version\\\":\\\"TLSv1.3\\\"}],\\\"queries\\\":[{\\\"answers\\\":[{\\\"asn\\\":54113,\\\"as_org_name\\\":\\\"Fastly\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"151.101.1.111\\\",\\\"ttl\\\":null},{\\\"asn\\\":54113,\\\"as_org_name\\\":\\\"Fastly\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"151.101.65.111\\\",\\\"ttl\\\":null},{\\\"asn\\\":54113,\\\"as_org_name\\\":\\\"Fastly\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"151.101.129.111\\\",\\\"ttl\\\":null},{\\\"asn\\\":54113,\\\"as_org_name\\\":\\\"Fastly\\\",\\\"answer_type\\\":\\\"A\\\",\\\"ipv4\\\":\\\"151.101.193.111\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"www.theguardian.com\\\",\\\"query_type\\\":\\\"A\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.0204721},{\\\"answers\\\":[{\\\"asn\\\":54113,\\\"as_org_name\\\":\\\"Fastly\\\",\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"2a04:4e42::367\\\",\\\"ttl\\\":null},{\\\"asn\\\":54113,\\\"as_org_name\\\":\\\"Fastly\\\",\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"2a04:4e42:200::367\\\",\\\"ttl\\\":null},{\\\"asn\\\":54113,\\\"as_org_name\\\":\\\"Fastly\\\",\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"2a04:4e42:400::367\\\",\\\"ttl\\\":null},{\\\"asn\\\":54113,\\\"as_org_name\\\":\\\"Fastly\\\",\\\"answer_type\\\":\\\"AAAA\\\",\\\"ipv6\\\":\\\"2a04:4e42:600::367\\\",\\\"ttl\\\":null}],\\\"engine\\\":\\\"system\\\",\\\"failure\\\":null,\\\"hostname\\\":\\\"www.theguardian.com\\\",\\\"query_type\\\":\\\"AAAA\\\",\\\"resolver_hostname\\\":null,\\\"resolver_port\\\":null,\\\"resolver_address\\\":\\\"\\\",\\\"t\\\":0.0204721}],\\\"dns_experiment_failure\\\":null,\\\"dns_consistency\\\":\\\"consistent\\\",\\\"control_failure\\\":null,\\\"control\\\":{\\\"tcp_connect\\\":{\\\"151.101.1.111:443\\\":{\\\"status\\\":true,\\\"failure\\\":null},\\\"151.101.129.111:443\\\":{\\\"status\\\":true,\\\"failure\\\":null},\\\"151.101.193.111:443\\\":{\\\"status\\\":true,\\\"failure\\\":null},\\\"151.101.65.111:443\\\":{\\\"status\\\":true,\\\"failure\\\":null},\\\"[2a04:4e42:200::367]:443\\\":{\\\"status\\\":true,\\\"failure\\\":null},\\\"[2a04:4e42:400::367]:443\\\":{\\\"status\\\":true,\\\"failure\\\":null},\\\"[2a04:4e42:600::367]:443\\\":{\\\"status\\\":true,\\\"failure\\\":null},\\\"[2a04:4e42::367]:443\\\":{\\\"status\\\":true,\\\"failure\\\":null}},\\\"http_request\\\":{\\\"body_length\\\":1261261,\\\"failure\\\":null,\\\"title\\\":\\\"News, sport and opinion from the Guardian's US edition | The Guardian\\\",\\\"headers\\\":{\\\"Accept-Ranges\\\":\\\"bytes\\\",\\\"Age\\\":\\\"72\\\",\\\"Cache-Control\\\":\\\"max-age=60, stale-while-revalidate=6, stale-if-error=864000, private,no-transform\\\",\\\"Content-Length\\\":\\\"1261261\\\",\\\"Content-Security-Policy\\\":\\\"default-src https:; script-src https: 'unsafe-inline' 'unsafe-eval' blob: 'unsafe-inline'; frame-src https: data:; style-src https: 'unsafe-inline'; img-src https: data: blob:; media-src https: data: blob:; font-src https: data:; connect-src https: wss: blob:; child-src https: blob:; object-src 'none'; base-uri https:\\\\/\\\\/*.gracenote.com\\\",\\\"Content-Type\\\":\\\"text\\\\/html; charset=UTF-8\\\",\\\"Date\\\":\\\"Thu, 10 Nov 2022 10:09:17 GMT\\\",\\\"Etag\\\":\\\"W\\\\/\\\\\\\"hash1080896318753603739\\\\\\\"\\\",\\\"Feature-Policy\\\":\\\"camera 'none'; microphone 'none'; midi 'none'; geolocation 'none'\\\",\\\"Link\\\":\\\"<https:\\\\/\\\\/assets.guim.co.uk\\\\/stylesheets\\\\/2d0779d877d57475b954545ae07253b6\\\\/facia.garnett.css>; rel=preload; as=style; nopush,<https:\\\\/\\\\/assets.guim.co.uk\\\\/polyfill.io\\\\/v3\\\\/polyfill.min.js?rum=0&features=es6,es7,es2017,default-3.6,HTMLPictureElement,IntersectionObserver,IntersectionObserverEntry,fetch,navigator.sendBeacon,performance.now,Object.fromEntries,Promise.allSettled&flags=gated&callback=guardianPolyfilled&unknown=polyfill&clearCache=5>; rel=preload; as=script; nopush,<https:\\\\/\\\\/assets.guim.co.uk\\\\/javascripts\\\\/70cbe56e9560dcdb706b\\\\/graun.standard.js>; rel=preload; as=script; nopush\\\",\\\"Onion-Location\\\":\\\"https:\\\\/\\\\/www.guardian2zotagl6tmjucg3lrhxdk4dw3lhbqnkvvkywawy3oqfoprid.onion\\\\/us\\\",\\\"Permissions-Policy\\\":\\\"camera=(), microphone=(), midi=(), geolocation=(), interest-cohort=()\\\",\\\"Referrer-Policy\\\":\\\"no-referrer-when-downgrade\\\",\\\"Set-Cookie\\\":\\\"GU_mvt_id=279866; expires=Wed, 08 Feb 2023 10:09:17 GMT; path=\\\\/; domain=.theguardian.com; Secure\\\",\\\"Strict-Transport-Security\\\":\\\"max-age=63072000; includeSubDomains; preload\\\",\\\"Vary\\\":\\\"Accept-Encoding,User-Agent\\\",\\\"X-Content-Type-Options\\\":\\\"nosniff\\\",\\\"X-Frame-Options\\\":\\\"SAMEORIGIN\\\",\\\"X-Gu-Edition\\\":\\\"us\\\",\\\"X-Timer\\\":\\\"S1668074958.837092,VS0,VE2\\\",\\\"X-Xss-Protection\\\":\\\"1; mode=block\\\"},\\\"status_code\\\":200},\\\"dns\\\":{\\\"failure\\\":null,\\\"addrs\\\":[\\\"151.101.1.111\\\",\\\"151.101.65.111\\\",\\\"151.101.129.111\\\",\\\"151.101.193.111\\\",\\\"2a04:4e42::367\\\",\\\"2a04:4e42:200::367\\\",\\\"2a04:4e42:400::367\\\",\\\"2a04:4e42:600::367\\\"]}},\\\"tcp_connect\\\":[{\\\"ip\\\":\\\"151.101.129.111\\\",\\\"port\\\":443,\\\"status\\\":{\\\"blocked\\\":false,\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.5419419},{\\\"ip\\\":\\\"151.101.1.111\\\",\\\"port\\\":443,\\\"status\\\":{\\\"blocked\\\":false,\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.5419419},{\\\"ip\\\":\\\"2a04:4e42:200::367\\\",\\\"port\\\":443,\\\"status\\\":{\\\"blocked\\\":false,\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.6137457},{\\\"ip\\\":\\\"151.101.193.111\\\",\\\"port\\\":443,\\\"status\\\":{\\\"blocked\\\":false,\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.5426784},{\\\"ip\\\":\\\"2a04:4e42:600::367\\\",\\\"port\\\":443,\\\"status\\\":{\\\"blocked\\\":false,\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.6514069},{\\\"ip\\\":\\\"2a04:4e42:400::367\\\",\\\"port\\\":443,\\\"status\\\":{\\\"blocked\\\":false,\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.6258805},{\\\"ip\\\":\\\"2a04:4e42::367\\\",\\\"port\\\":443,\\\"status\\\":{\\\"blocked\\\":false,\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.6808277},{\\\"ip\\\":\\\"151.101.65.111\\\",\\\"port\\\":443,\\\"status\\\":{\\\"blocked\\\":false,\\\"failure\\\":null,\\\"success\\\":true},\\\"t\\\":0.6003443}],\\\"requests\\\":[{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US,en;q=0.9\\\"],[\\\"Cookie\\\",\\\"GU_mvt_id=989184; GU_geo_country=SG\\\"],[\\\"Host\\\",\\\"www.theguardian.com\\\"],[\\\"Referer\\\",\\\"https:\\\\/\\\\/www.theguardian.com\\\\/\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/96.0.4664.110 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US,en;q=0.9\\\",\\\"Cookie\\\":\\\"GU_mvt_id=989184; GU_geo_country=SG\\\",\\\"Host\\\":\\\"www.theguardian.com\\\",\\\"Referer\\\":\\\"https:\\\\/\\\\/www.theguardian.com\\\\/\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/96.0.4664.110 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"https:\\\\/\\\\/www.theguardian.com\\\\/international\\\"},\\\"response\\\":{\\\"body\\\":\\\"\\\\n<!DOCTYPE html>\\\\n<html id=\\\\\\\"js-context\\\\\\\" class=\\\\\\\"js-off is-not-modern id--signed-out\\\\\\\" lang=\\\\\\\"en\\\\\\\" data-page-path=\\\\\\\"\\\\/international\\\\\\\">\\\\n\\\\n\\\\n <head>\\\\n\\\\n\\\\n \\\\n<!--\\\\n __ __ _ _ _\\\\n \\\\\\\\ \\\\\\\\ \\\\/ \\\\/__ __ _ _ __ ___ | |__ (_)_ __(_)_ __ __ _\\\\n \\\\\\\\ \\\\\\\\ \\\\/\\\\\\\\ \\\\/ \\\\/ _ \\\\\\\\ \\\\/ _` | '__\\\\/ _ \\\\\\\\ | '_ \\\\\\\\| | '__| | '_ \\\\\\\\ \\\\/ _` |\\\\n \\\\\\\\ V V \\\\/ __\\\\/ | (_| | | | __\\\\/ | | | | | | | | | | | (_| |\\\\n \\\\\\\\_\\\\/\\\\\\\\_\\\\/ \\\\\\\\___| \\\\\\\\__,_|_| \\\\\\\\___| |_| |_|_|_| |_|_| |_|\\\\\\\\__, |\\\\n |___\\\\/\\\\n Ever thought about joining us?\\\\n https:\\\\/\\\\/workforus.theguardian.com\\\\/careers\\\\/product-engineering\\\\/\\\\n --->\\\\n\\\\n\\\\n \\\\n<title>News, sport and opinion from the Guardian's global edition | The Guardian<\\\\/title>\\\\n\\\\n\\\\n \\\\n\\\\n<meta charset=\\\\\\\"utf-8\\\\\\\">\\\\n\\\\n <meta name=\\\\\\\"description\\\\\\\" content=\\\\\\\"Latest international news, sport and comment from the Guardian\\\\\\\" \\\\/>\\\\n\\\\n\\\\n<meta http-equiv=\\\\\\\"X-UA-Compatible\\\\\\\" content=\\\\\\\"IE=Edge\\\\\\\" \\\\/>\\\\n<meta name=\\\\\\\"format-detection\\\\\\\" content=\\\\\\\"telephone=no\\\\\\\" \\\\/>\\\\n<meta name=\\\\\\\"HandheldFriendly\\\\\\\" content=\\\\\\\"True\\\\\\\" \\\\/>\\\\n<meta name=\\\\\\\"viewport\\\\\\\" content=\\\\\\\"width=device-width,minimum-scale=1,initial-scale=1\\\\\\\">\\\\n\\\\n\\\\n<link rel=\\\\\\\"dns-prefetch\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/assets.guim.co.uk\\\\/\\\\\\\" \\\\/>\\\\n<link rel=\\\\\\\"dns-prefetch\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/i.guim.co.uk\\\\\\\" \\\\/>\\\\n<link rel=\\\\\\\"dns-prefetch\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/api.nextgen.guardianapps.co.uk\\\\\\\" \\\\/>\\\\n<link rel=\\\\\\\"dns-prefetch\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/hits-secure.theguardian.com\\\\\\\" \\\\/>\\\\n<link rel=\\\\\\\"dns-prefetch\\\\\\\" href=\\\\\\\"\\\\/\\\\/j.ophan.co.uk\\\\\\\" \\\\/>\\\\n<link rel=\\\\\\\"dns-prefetch\\\\\\\" href=\\\\\\\"\\\\/\\\\/ophan.theguardian.com\\\\\\\" \\\\/>\\\\n<link rel=\\\\\\\"dns-prefetch\\\\\\\" href=\\\\\\\"\\\\/\\\\/phar.gu-web.net\\\\\\\" \\\\/>\\\\n\\\\n<link rel=\\\\\\\"preconnect\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/assets.guim.co.uk\\\\/\\\\\\\" \\\\/>\\\\n<link rel=\\\\\\\"preconnect\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/i.guim.co.uk\\\\\\\" \\\\/>\\\\n<link rel=\\\\\\\"preconnect\\\\\\\" href=\\\\\\\"\\\\/\\\\/interactive.guim.co.uk\\\\\\\" \\\\/>\\\\n\\\\n <link rel=\\\\\\\"preconnect\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/sourcepoint.theguardian.com\\\\\\\" \\\\/>\\\\n\\\\n\\\\n<link rel=\\\\\\\"apple-touch-icon\\\\\\\" sizes=\\\\\\\"152x152\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/assets.guim.co.uk\\\\/images\\\\/favicons\\\\/fee5e2d638d1c35f6d501fa397e53329\\\\/152x152.png\\\\\\\" \\\\/>\\\\n<link rel=\\\\\\\"apple-touch-icon\\\\\\\" sizes=\\\\\\\"144x144\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/assets.guim.co.uk\\\\/images\\\\/favicons\\\\/1fe70b29879674433702d5266abcb0d4\\\\/144x144.png\\\\\\\" \\\\/>\\\\n<link rel=\\\\\\\"apple-touch-icon\\\\\\\" sizes=\\\\\\\"120x120\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/assets.guim.co.uk\\\\/images\\\\/favicons\\\\/c58143bd2a5b5426b6256cd90ba6eb47\\\\/120x120.png\\\\\\\" \\\\/>\\\\n<link rel=\\\\\\\"apple-touch-icon\\\\\\\" sizes=\\\\\\\"114x114\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/assets.guim.co.uk\\\\/images\\\\/favicons\\\\/68cbd5cf267598abd6a026f229ef6b45\\\\/114x114.png\\\\\\\" \\\\/>\\\\n<link rel=\\\\\\\"apple-touch-icon\\\\\\\" sizes=\\\\\\\"72x72\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/assets.guim.co.uk\\\\/images\\\\/favicons\\\\/873381bf11d58e20f551905d51575117\\\\/72x72.png\\\\\\\" \\\\/>\\\\n<link rel=\\\\\\\"apple-touch-icon-precomposed\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/assets.guim.co.uk\\\\/images\\\\/favicons\\\\/6a2aa0ea5b4b6183e92d0eac49e2f58b\\\\/57x57.png\\\\\\\" \\\\/>\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n <link rel=\\\\\\\"shortcut icon\\\\\\\" type=\\\\\\\"image\\\\/png\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/assets.guim.co.uk\\\\/images\\\\/favicons\\\\/46bd2faa1ab438684a6d4528a655a8bd\\\\/32x32.ico\\\\\\\" \\\\/>\\\\n\\\\n\\\\n\\\\n\\\\n <link rel=\\\\\\\"alternate\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/www.theguardian.com\\\\/uk\\\\\\\" hreflang=\\\\\\\"en-GB\\\\\\\" \\\\/>\\\\n\\\\n <link rel=\\\\\\\"alternate\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/www.theguardian.com\\\\/us\\\\\\\" hreflang=\\\\\\\"en-US\\\\\\\" \\\\/>\\\\n\\\\n <link rel=\\\\\\\"alternate\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/www.theguardian.com\\\\/au\\\\\\\" hreflang=\\\\\\\"en-AU\\\\\\\" \\\\/>\\\\n\\\\n <link rel=\\\\\\\"alternate\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/www.theguardian.com\\\\/international\\\\\\\" hreflang=\\\\\\\"en\\\\\\\" \\\\/>\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n<link rel=\\\\\\\"canonical\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/www.theguardian.com\\\\/international\\\\\\\" \\\\/>\\\\n\\\\n<meta name=\\\\\\\"apple-mobile-web-app-title\\\\\\\" content=\\\\\\\"Guardian\\\\\\\" \\\\/>\\\\n<meta name=\\\\\\\"application-name\\\\\\\" content=\\\\\\\"The Guardian\\\\\\\" \\\\/>\\\\n<meta name=\\\\\\\"msapplication-TileColor\\\\\\\" content=\\\\\\\"#052962\\\\\\\" \\\\/>\\\\n<meta name=\\\\\\\"theme-color\\\\\\\" content=\\\\\\\"#052962\\\\\\\">\\\\n<meta name=\\\\\\\"msapplication-TileImage\\\\\\\" content=\\\\\\\"https:\\\\/\\\\/assets.guim.co.uk\\\\/images\\\\/favicons\\\\/023dafadbf5ef53e0865e4baaaa32b3b\\\\/windows_tile_144_b.png\\\\\\\" \\\\/>\\\\n\\\\n\\\\n\\\\n\\\\n<link rel=\\\\\\\"publisher\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/plus.google.com\\\\/113000071431138202574\\\\\\\" \\\\/>\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n \\\\n <meta property=\\\\\\\"og:url\\\\\\\" content=\\\\\\\"http:\\\\/\\\\/www.theguardian.com\\\\/international\\\\\\\" \\\\/>\\\\n \\\\n <meta property=\\\\\\\"og:description\\\\\\\" content=\\\\\\\"Latest international news, sport and comment from the Guardian\\\\\\\" \\\\/>\\\\n \\\\n <meta property=\\\\\\\"og:image\\\\\\\" content=\\\\\\\"https:\\\\/\\\\/assets.guim.co.uk\\\\/images\\\\/eada8aa27c12fe2d5afa3a89d3fbae0d\\\\/fallback-logo.png\\\\\\\" \\\\/>\\\\n \\\\n <meta property=\\\\\\\"al:ios:url\\\\\\\" content=\\\\\\\"gnmguardian:\\\\/\\\\/international?contenttype=front&source=applinks\\\\\\\" \\\\/>\\\\n \\\\n <meta property=\\\\\\\"fb:app_id\\\\\\\" content=\\\\\\\"180444840287\\\\\\\" \\\\/>\\\\n \\\\n <meta property=\\\\\\\"og:type\\\\\\\" content=\\\\\\\"website\\\\\\\" \\\\/>\\\\n \\\\n <meta property=\\\\\\\"al:ios:app_store_id\\\\\\\" content=\\\\\\\"409128287\\\\\\\" \\\\/>\\\\n \\\\n <meta property=\\\\\\\"al:ios:app_name\\\\\\\" content=\\\\\\\"The Guardian\\\\\\\" \\\\/>\\\\n \\\\n <meta property=\\\\\\\"og:site_name\\\\\\\" content=\\\\\\\"the Guardian\\\\\\\" \\\\/>\\\\n \\\\n \\\\n <meta name=\\\\\\\"twitter:app:id:iphone\\\\\\\" content=\\\\\\\"409128287\\\\\\\" \\\\/>\\\\n \\\\n <meta name=\\\\\\\"twitter:app:name:googleplay\\\\\\\" content=\\\\\\\"The Guardian\\\\\\\" \\\\/>\\\\n \\\\n <meta name=\\\\\\\"twitter:app:name:ipad\\\\\\\" content=\\\\\\\"The Guardian\\\\\\\" \\\\/>\\\\n \\\\n <meta name=\\\\\\\"twitter:card\\\\\\\" content=\\\\\\\"summary\\\\\\\" \\\\/>\\\\n \\\\n <meta name=\\\\\\\"twitter:app:name:iphone\\\\\\\" content=\\\\\\\"The Guardian\\\\\\\" \\\\/>\\\\n \\\\n <meta name=\\\\\\\"twitter:app:id:ipad\\\\\\\" content=\\\\\\\"409128287\\\\\\\" \\\\/>\\\\n \\\\n <meta name=\\\\\\\"twitter:app:id:googleplay\\\\\\\" content=\\\\\\\"com.guardian\\\\\\\" \\\\/>\\\\n \\\\n <meta name=\\\\\\\"twitter:app:url:iphone\\\\\\\" content=\\\\\\\"gnmguardian:\\\\/\\\\/international?contenttype=front&source=twitter\\\\\\\" \\\\/>\\\\n \\\\n <meta name=\\\\\\\"twitter:site\\\\\\\" content=\\\\\\\"@guardian\\\\\\\" \\\\/>\\\\n \\\\n <meta name=\\\\\\\"twitter:app:url:ipad\\\\\\\" content=\\\\\\\"gnmguardian:\\\\/\\\\/international?contenttype=front&source=twitter\\\\\\\" \\\\/>\\\\n \\\\n \\\\n\\\\n\\\\n<meta name=\\\\\\\"twitter:dnt\\\\\\\" content=\\\\\\\"on\\\\\\\">\\\\n\\\\n\\\\n\\\\n\\\\n <meta property=\\\\\\\"fb:pages\\\\\\\" content=\\\\\\\"10513336322\\\\\\\" \\\\/>\\\\n\\\\n <meta property=\\\\\\\"fb:pages\\\\\\\" content=\\\\\\\"456740217686384\\\\\\\" \\\\/>\\\\n\\\\n <meta property=\\\\\\\"fb:pages\\\\\\\" content=\\\\\\\"516977308337360\\\\\\\" \\\\/>\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n <script data-schema=\\\\\\\"Organization\\\\\\\" type=\\\\\\\"application\\\\/ld+json\\\\\\\">\\\\n {\\\\\\\"name\\\\\\\":\\\\\\\"The Guardian\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"http:\\\\/\\\\/www.theguardian.com\\\\/\\\\\\\",\\\\\\\"logo\\\\\\\":{\\\\\\\"@type\\\\\\\":\\\\\\\"ImageObject\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"https:\\\\/\\\\/uploads.guim.co.uk\\\\/2018\\\\/01\\\\/31\\\\/TheGuardian_AMP.png\\\\\\\",\\\\\\\"width\\\\\\\":190,\\\\\\\"height\\\\\\\":60},\\\\\\\"sameAs\\\\\\\":[\\\\\\\"https:\\\\/\\\\/www.facebook.com\\\\/theguardian\\\\\\\",\\\\\\\"https:\\\\/\\\\/twitter.com\\\\/guardian\\\\\\\",\\\\\\\"https:\\\\/\\\\/www.youtube.com\\\\/user\\\\/TheGuardian\\\\\\\",\\\\\\\"https:\\\\/\\\\/www.wikidata.org\\\\/wiki\\\\/Q11148\\\\\\\"],\\\\\\\"@type\\\\\\\":\\\\\\\"Organization\\\\\\\",\\\\\\\"@context\\\\\\\":\\\\\\\"http:\\\\/\\\\/schema.org\\\\\\\"}\\\\n <\\\\/script>\\\\n\\\\n <script data-schema=\\\\\\\"WebPage\\\\\\\" type=\\\\\\\"application\\\\/ld+json\\\\\\\">\\\\n {\\\\\\\"@id\\\\\\\":\\\\\\\"https:\\\\/\\\\/www.theguardian.com\\\\/international\\\\\\\",\\\\\\\"potentialAction\\\\\\\":{\\\\\\\"@type\\\\\\\":\\\\\\\"ViewAction\\\\\\\",\\\\\\\"target\\\\\\\":\\\\\\\"android-app:\\\\/\\\\/com.guardian\\\\/https\\\\/www.theguardian.com\\\\/international\\\\\\\"},\\\\\\\"@type\\\\\\\":\\\\\\\"WebPage\\\\\\\",\\\\\\\"@context\\\\\\\":\\\\\\\"http:\\\\/\\\\/schema.org\\\\\\\"}\\\\n <\\\\/script>\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n <link rel=\\\\\\\"alternate\\\\\\\" href=\\\\\\\"ios-app:\\\\/\\\\/409128287\\\\/gnmguardian\\\\/international?contenttype=front&source=google\\\\\\\" \\\\/>\\\\n\\\\n\\\\n\\\\n<meta name=\\\\\\\"robots\\\\\\\" content=\\\\\\\"max-image-preview:large\\\\\\\">\\\\n\\\\n\\\\n \\\\n\\\\n<meta name=\\\\\\\"twitter:url\\\\\\\" content=\\\\\\\"https:\\\\/\\\\/www.theguardian.com\\\\/international\\\\\\\" \\\\/>\\\\n<meta property=\\\\\\\"og:title\\\\\\\" content=\\\\\\\"News, sport and opinion from the Guardian's global edition | The Guardian\\\\\\\" \\\\/>\\\\n<link rel=\\\\\\\"alternate\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/www.theguardian.com\\\\/international\\\\/rss\\\\\\\" title=\\\\\\\"RSS\\\\\\\" type=\\\\\\\"application\\\\/rss+xml\\\\\\\" >\\\\n\\\\n\\\\n \\\\n\\\\n\\\\n \\\\n\\\\n\\\\n<style class=\\\\\\\"webfont js-loggable\\\\\\\">\\\\n@font-face { font-family: \\\\\\\"GH Guardian Headline\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/noalts-not-hinted\\\\/GHGuardianHeadline-Light.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-Light.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-Light.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 300; font-style: normal; font-display: swap; } @font-face { font-family: \\\\\\\"Guardian Egyptian Web\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/noalts-not-hinted\\\\/GHGuardianHeadline-Light.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-Light.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-Light.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 300; font-style: normal; font-display: swap; } @font-face { font-family: \\\\\\\"GH Guardian Headline\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/noalts-not-hinted\\\\/GHGuardianHeadline-LightItalic.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-LightItalic.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-LightItalic.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 300; font-style: italic; font-display: swap; } @font-face { font-family: \\\\\\\"Guardian Egyptian Web\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/noalts-not-hinted\\\\/GHGuardianHeadline-LightItalic.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-LightItalic.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-LightItalic.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 300; font-style: italic; font-display: swap; } @font-face { font-family: \\\\\\\"GH Guardian Headline\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/noalts-not-hinted\\\\/GHGuardianHeadline-Medium.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/noalts-not-hinted\\\\/GHGuardianHeadline-Medium.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-Medium.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 500; font-style: normal; font-display: swap; } @font-face { font-family: \\\\\\\"Guardian Egyptian Web\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/noalts-not-hinted\\\\/GHGuardianHeadline-Medium.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/noalts-not-hinted\\\\/GHGuardianHeadline-Medium.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-Medium.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 500; font-style: normal; font-display: swap; } @font-face { font-family: \\\\\\\"GH Guardian Headline\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/noalts-not-hinted\\\\/GHGuardianHeadline-MediumItalic.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-MediumItalic.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-MediumItalic.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 500; font-style: italic; font-display: swap; } @font-face { font-family: \\\\\\\"Guardian Egyptian Web\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/noalts-not-hinted\\\\/GHGuardianHeadline-MediumItalic.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-MediumItalic.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-MediumItalic.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 500; font-style: italic; font-display: swap; } @font-face { font-family: \\\\\\\"GH Guardian Headline\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/noalts-not-hinted\\\\/GHGuardianHeadline-Bold.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-Bold.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-Bold.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 700; font-style: normal; font-display: swap; } @font-face { font-family: \\\\\\\"Guardian Egyptian Web\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/noalts-not-hinted\\\\/GHGuardianHeadline-Bold.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-Bold.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-Bold.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 700; font-style: normal; font-display: swap; } @font-face { font-family: \\\\\\\"GH Guardian Headline\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/noalts-not-hinted\\\\/GHGuardianHeadline-BoldItalic.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-BoldItalic.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-BoldItalic.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 700; font-style: italic; font-display: swap; } @font-face { font-family: \\\\\\\"Guardian Egyptian Web\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/noalts-not-hinted\\\\/GHGuardianHeadline-BoldItalic.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-BoldItalic.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-headline\\\\/latin1-not-hinted\\\\/GHGuardianHeadline-BoldItalic.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 700; font-style: italic; font-display: swap; } @font-face { font-family: \\\\\\\"GuardianTextEgyptian\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/noalts-not-hinted\\\\/GuardianTextEgyptian-Regular.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/noalts-not-hinted\\\\/GuardianTextEgyptian-Regular.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/latin1-not-hinted\\\\/GuardianTextEgyptian-Regular.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 400; font-style: normal; font-display: swap; } @font-face { font-family: \\\\\\\"Guardian Text Egyptian Web\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/noalts-not-hinted\\\\/GuardianTextEgyptian-Regular.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/noalts-not-hinted\\\\/GuardianTextEgyptian-Regular.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/latin1-not-hinted\\\\/GuardianTextEgyptian-Regular.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 400; font-style: normal; font-display: swap; } @font-face { font-family: \\\\\\\"GuardianTextEgyptian\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/noalts-not-hinted\\\\/GuardianTextEgyptian-RegularItalic.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/latin1-not-hinted\\\\/GuardianTextEgyptian-RegularItalic.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/latin1-not-hinted\\\\/GuardianTextEgyptian-RegularItalic.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 400; font-style: italic; font-display: swap; } @font-face { font-family: \\\\\\\"Guardian Text Egyptian Web\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/noalts-not-hinted\\\\/GuardianTextEgyptian-RegularItalic.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/latin1-not-hinted\\\\/GuardianTextEgyptian-RegularItalic.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/latin1-not-hinted\\\\/GuardianTextEgyptian-RegularItalic.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 400; font-style: italic; font-display: swap; } @font-face { font-family: \\\\\\\"GuardianTextEgyptian\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/noalts-not-hinted\\\\/GuardianTextEgyptian-Bold.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/latin1-not-hinted\\\\/GuardianTextEgyptian-Bold.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/latin1-not-hinted\\\\/GuardianTextEgyptian-Bold.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 700; font-style: normal; font-display: swap; } @font-face { font-family: \\\\\\\"Guardian Text Egyptian Web\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/noalts-not-hinted\\\\/GuardianTextEgyptian-Bold.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/latin1-not-hinted\\\\/GuardianTextEgyptian-Bold.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/latin1-not-hinted\\\\/GuardianTextEgyptian-Bold.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 700; font-style: normal; font-display: swap; } @font-face { font-family: \\\\\\\"GuardianTextEgyptian\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/noalts-not-hinted\\\\/GuardianTextEgyptian-BoldItalic.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/latin1-not-hinted\\\\/GuardianTextEgyptian-BoldItalic.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/latin1-not-hinted\\\\/GuardianTextEgyptian-BoldItalic.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 700; font-style: italic; font-display: swap; } @font-face { font-family: \\\\\\\"Guardian Text Egyptian Web\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/noalts-not-hinted\\\\/GuardianTextEgyptian-BoldItalic.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/latin1-not-hinted\\\\/GuardianTextEgyptian-BoldItalic.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textegyptian\\\\/latin1-not-hinted\\\\/GuardianTextEgyptian-BoldItalic.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 700; font-style: italic; font-display: swap; } @font-face { font-family: \\\\\\\"GuardianTextSans\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/noalts-not-hinted\\\\/GuardianTextSans-Regular.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/noalts-not-hinted\\\\/GuardianTextSans-Regular.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/latin1-not-hinted\\\\/GuardianTextSans-Regular.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 400; font-style: normal; font-display: swap; } @font-face { font-family: \\\\\\\"Guardian Text Sans Web\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/noalts-not-hinted\\\\/GuardianTextSans-Regular.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/noalts-not-hinted\\\\/GuardianTextSans-Regular.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/latin1-not-hinted\\\\/GuardianTextSans-Regular.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 400; font-style: normal; font-display: swap; } @font-face { font-family: \\\\\\\"GuardianTextSans\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/noalts-not-hinted\\\\/GuardianTextSans-RegularItalic.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/latin1-not-hinted\\\\/GuardianTextSans-RegularItalic.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/latin1-not-hinted\\\\/GuardianTextSans-RegularItalic.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 400; font-style: italic; font-display: swap; } @font-face { font-family: \\\\\\\"Guardian Text Sans Web\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/noalts-not-hinted\\\\/GuardianTextSans-RegularItalic.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/latin1-not-hinted\\\\/GuardianTextSans-RegularItalic.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/latin1-not-hinted\\\\/GuardianTextSans-RegularItalic.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 400; font-style: italic; font-display: swap; } @font-face { font-family: \\\\\\\"GuardianTextSans\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/noalts-not-hinted\\\\/GuardianTextSans-Bold.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/latin1-not-hinted\\\\/GuardianTextSans-Bold.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/latin1-not-hinted\\\\/GuardianTextSans-Bold.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 700; font-style: normal; font-display: swap; } @font-face { font-family: \\\\\\\"Guardian Text Sans Web\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/noalts-not-hinted\\\\/GuardianTextSans-Bold.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/latin1-not-hinted\\\\/GuardianTextSans-Bold.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/latin1-not-hinted\\\\/GuardianTextSans-Bold.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 700; font-style: normal; font-display: swap; } @font-face { font-family: \\\\\\\"GuardianTextSans\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/noalts-not-hinted\\\\/GuardianTextSans-BoldItalic.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/latin1-not-hinted\\\\/GuardianTextSans-BoldItalic.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/latin1-not-hinted\\\\/GuardianTextSans-BoldItalic.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 700; font-style: italic; font-display: swap; } @font-face { font-family: \\\\\\\"Guardian Text Sans Web\\\\\\\"; src: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/noalts-not-hinted\\\\/GuardianTextSans-BoldItalic.woff2) format(\\\\\\\"woff2\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/latin1-not-hinted\\\\/GuardianTextSans-BoldItalic.woff) format(\\\\\\\"woff\\\\\\\"), url(https:\\\\/\\\\/assets.guim.co.uk\\\\/static\\\\/frontend\\\\/fonts\\\\/guardian-textsans\\\\/latin1-not-hinted\\\\/GuardianTextSans-BoldItalic.ttf) format(\\\\\\\"truetype\\\\\\\"); font-weight: 700; font-style: italic; font-display: swap; }\\\\n<\\\\/style>\\\\n\\\\n\\\\n\\\\n\\\\n<style class=\\\\\\\"js-loggable\\\\\\\">\\\\n .svg .i,\\\\n .svg .caption:before,\\\\n .svg figcaption:before,\\\\n .svg blockquote.quoted:before {\\\\n background-image: none;\\\\n }\\\\n .is-updating {\\\\n background-image: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/images\\\\/f2465f9293ea046b91128035ecf4cdd5\\\\/auto-update-activity.gif);\\\\n }\\\\n .is-updating--dark {\\\\n background-image: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/images\\\\/614abf55ccbb65d1bb691aa8bf64fd7f\\\\/auto-update-activity-dark.gif);\\\\n }\\\\n .tweet__user-name:before {\\\\n background-image: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/images\\\\/twitter\\\\/ca807fd6567f678fc0981a4ab6904fbe\\\\/bird.svg);\\\\n }\\\\n\\\\n .no-svg .inline-guardian-logo-160 { background-image: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/images\\\\/logo\\\\/c53d8a40a4962863a36388902a43f279\\\\/guardian-logo-160.png); }\\\\n .no-svg .inline-guardian-logo-320 { background-image: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/images\\\\/logo\\\\/951ac05886372ebb77554a9dd4ae420f\\\\/guardian-logo-320.png); }\\\\n .no-svg .inline-observer-logo-160 { background-image: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/images\\\\/logo\\\\/bee4ad72a1badb16d72a86484d192a1c\\\\/observer-logo-160.png); }\\\\n .no-svg .inline-observer-logo-320 { background-image: url(https:\\\\/\\\\/assets.guim.co.uk\\\\/images\\\\/logo\\\\/c5669a2096d808752b0d5798be09ab0f\\\\/observer-logo-320.png); }\\\\n<\\\\/style>\\\\n\\\\n\\\\n<!--[if (lt IE 9)&(!IEMobile)]>\\\\n\\\\n\\\\n\\\\n\\\\n <link rel=\\\\\\\"stylesheet\\\\\\\" type=\\\\\\\"text\\\\/css\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/assets.guim.co.uk\\\\/stylesheets\\\\/8b0d3a943dd2fdd528c3efe07ddbb8ba\\\\/old-ie.head.facia.garnett.css\\\\\\\" media=\\\\\\\"only x\\\\\\\" \\\\/>\\\\n <noscript>\\\\n <link rel=\\\\\\\"stylesheet\\\\\\\" type=\\\\\\\"text\\\\/css\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/assets.guim.co.uk\\\\/stylesheets\\\\/8b0d3a943dd2fdd528c3efe07ddbb8ba\\\\/old-ie.head.facia.garnett.css\\\\\\\" \\\\/>\\\\n <\\\\/noscript>\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n <link rel=\\\\\\\"stylesheet\\\\\\\" type=\\\\\\\"text\\\\/css\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/assets.guim.co.uk\\\\/stylesheets\\\\/4b4180c1ce46e63f05aa6ef5ecff85ab\\\\/old-ie.content.garnett.css\\\\\\\" media=\\\\\\\"only x\\\\\\\" \\\\/>\\\\n <noscript>\\\\n <link rel=\\\\\\\"stylesheet\\\\\\\" type=\\\\\\\"text\\\\/css\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/assets.guim.co.uk\\\\/stylesheets\\\\/4b4180c1ce46e63f05aa6ef5ecff85ab\\\\/old-ie.content.garnett.css\\\\\\\" \\\\/>\\\\n <\\\\/noscript>\\\\n\\\\n\\\\n<![endif]-->\\\\n\\\\n\\\\n<!--[if (IE 9)&(!IEMobile)]>\\\\n\\\\n\\\\n\\\\n\\\\n <link rel=\\\\\\\"stylesheet\\\\\\\" type=\\\\\\\"text\\\\/css\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/assets.guim.co.uk\\\\/stylesheets\\\\/f83a90fd0722c2c8930b6effd921de38\\\\/ie9.content.garnett.css\\\\\\\" media=\\\\\\\"only x\\\\\\\" \\\\/>\\\\n <noscript>\\\\n <link rel=\\\\\\\"stylesheet\\\\\\\" type=\\\\\\\"text\\\\/css\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/assets.guim.co.uk\\\\/stylesheets\\\\/f83a90fd0722c2c8930b6effd921de38\\\\/ie9.content.garnett.css\\\\\\\" \\\\/>\\\\n <\\\\/noscript>\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n <link rel=\\\\\\\"stylesheet\\\\\\\" type=\\\\\\\"text\\\\/css\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/assets.guim.co.uk\\\\/stylesheets\\\\/fdbf0ae97cec6ced5ab5154450223765\\\\/ie9.head.facia.garnett.css\\\\\\\" media=\\\\\\\"only x\\\\\\\" \\\\/>\\\\n <noscript>\\\\n <link rel=\\\\\\\"stylesheet\\\\\\\" type=\\\\\\\"text\\\\/css\\\\\\\" href=\\\\\\\"https:\\\\/\\\\/assets.guim.co.uk\\\\/stylesheets\\\\/fdbf0ae97cec6ced5ab5154450223765\\\\/ie9.head.facia.garnett.css\\\\\\\" \\\\/>\\\\n <\\\\/noscript>\\\\n\\\\n\\\\n<![endif]-->\\\\n\\\\n\\\\n<!--[if (gt IE 9)|(IEMobile)]><!-->\\\\n\\\\n<style class=\\\\\\\"js-loggable\\\\\\\">\\\\n \\\\n\\\\n html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:0.0625rem dotted}b,strong{font-weight:bold}dfn{font-style:italic}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 0}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0;-webkit-font-smoothing:antialiased}button{overflow:visible}button,select{text-transform:none}.button{outline:0}button,html input[type='button'],input[type='reset'],input[type='submit']{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type='checkbox'],input[type='radio']{box-sizing:border-box;padding:0}input[type='number']::-webkit-inner-spin-button,input[type='number']::-webkit-outer-spin-button{height:auto}input[type='search']{-webkit-appearance:textfield;box-sizing:content-box}input[type='search']::-webkit-search-cancel-button,input[type='search']::-webkit-search-decoration{-webkit-appearance:none}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}html{overflow-y:scroll}html.iframed{overflow-y:auto}html.iframed--overflow-hidden{overflow:hidden}body{background-color:#ffffff}.is-modern .has-membership-access-requirement{visibility:hidden !important}::-moz-selection{background:#ffe500;color:#121212}::selection{background:#ffe500;color:#121212}head{font-family:'mobile'}@media (min-width: 30em){head{font-family:'mobileLandscape'}}@media (min-width: 46.25em){head{font-family:'tablet'}}@media (min-width: 61.25em){head{font-family:'desktop'}}@media (min-width: 71.25em){head{font-family:'leftCol'}}@media (min-width: 81.25em){head{font-family:'wide'}}body:after{border:0 !important;clip:rect(0 0 0 0) !important;height:0.0625rem !important;margin:-0.0625rem !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:0.0625rem !important;content:'mobile'}@media (min-width: 30em){body:after{content:'mobileLandscape'}}@media (min-width: 46.25em){body:after{content:'tablet'}}@media (min-width: 61.25em){body:after{content:'desktop'}}@media (min-width: 71.25em){body:after{content:'leftCol'}}@media (min-width: 81.25em){body:after{content:'wide'}}.dateline{font-size:0.8125rem;line-height:1.125rem;font-family:\\\\\\\"Guardian Text Sans Web\\\\\\\",\\\\\\\"Helvetica Neue\\\\\\\",Helvetica,Arial,\\\\\\\"Lucida Grande\\\\\\\",sans-serif;color:#767676}@media (min-width: 46.25em){.dateline{font-size:0.875rem;line-height:1.25rem}}.dateline i{vertical-align:baseline}.relative-timestamp{display:block;color:#767676;margin:0}.relative-timestamp span{display:inline-block}.relative-timestamp__icon{vertical-align:-0.125rem}ol,ul{list-style-position:inside}a,button,input[type='button'],input[type='submit']{-ms-touch-action:manipulation;touch-action:manipulation}html{font-family:\\\\\\\"Guardian Text Egyptian Web\\\\\\\",Georgia,serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}body{line-height:1.5;color:#121212}html,body{text-rendering:optimizeSpeed}.should-kern body{text-rendering:optimizeLegibility;-webkit-font-feature-settings:'kern';font-feature-settings:'kern';-webkit-font-kerning:normal;font-kerning:normal;-webkit-font-variant-ligatures:common-ligatures;font-variant-ligatures:common-ligatures}h1,h2,h3,h4,h5,h6{margin:0}blockquote{margin:0}p{margin-top:0;margin-bottom:0.5rem}h3{font-size:1.0625rem;line-height:1.5rem;font-family:\\\\\\\"Guardian Text Egyptian Web\\\\\\\",Georgia,serif;font-weight:normal;margin-bottom:0.4375rem}.type-5{font-size:1.125rem;line-height:1.5rem;font-family:\\\\\\\"Guardian Egyptian Web\\\\\\\",Georgia,serif;font-weight:normal}.u-unstyled,.inline-list,.linkslist{margin:0;list-style:none}a,.u-fauxlink{color:#005689;cursor:pointer;text-decoration:none}a:hover,a:focus,.u-fauxlink:hover,.u-fauxlink:focus{text-decoration:underline}a:active,.u-fauxlink:active{color:#00b2ff;text-decoration:none}.u-h{border:0 !important;clip:rect(0 0 0 0) !important;height:0.0625rem !important;margin:-0.0625rem !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:0.0625rem !important}@media (max-width: 19.99em){.hide-until-mobile{display:none !important}}@media (max-width: 29.99em){.hide-until-mobile-landscape{display:none !important}}@media (max-width: 46.24em){.hide-until-tablet{display:none !important}}@media (max-width: 41.24em){.hide-until-phablet{display:none !important}}@media (max-width: 71.24em){.hide-until-leftcol{display:none !important}}@media (max-width: 81.24em){.hide-until-wide{display:none !important}}@media (max-width: 61.24em){.hide-until-desktop{display:none !important}}@media (min-width: 30em){.hide-from-mobile-landscape{display:none !important}}@media (min-width: 46.25em){.hide-from-tablet{display:none !important}}@media (min-width: 61.25em){.hide-from-desktop{display:none !important}}@media (min-width: 71.25em){.hide-from-leftcol{display:none !important}}@media (min-width: 81.25em){.hide-from-wide{display:none !important}}.is-hidden,[hidden]{display:none !important}@media (min-width: 46.25em){.mobile-only{display:none !important}}.hide-on-mobile{display:none !important}@media (min-width: 46.25em){.hide-on-mobile{display:block !important}}.hide-on-mobile-inline{display:none !important}@media (min-width: 46.25em){.hide-on-mobile-inline{display:inline !important}}@media (min-width: 20em) and (max-width: 61.24em){.hide-on-tablet{display:none !important}}.u-cf:after,.u-cf:before{content:'';display:table}.u-cf:after{clear:both}.u-baseline-top{margin-top:0.75rem}.skip:focus,.skip:active{font-size:80%;display:block;color:#041f4a;text-decoration:none;position:static !important;width:100% !important;height:1.125rem !important;text-align:center}.u-responsive-ratio{width:100%;padding-bottom:60%;position:relative;overflow:hidden}.u-responsive-ratio img,.u-responsive-ratio object,.u-responsive-ratio embed,.u-responsive-ratio iframe,.u-responsive-ratio svg,.u-responsive-ratio video{width:100%;height:100%;position:absolute;top:0;left:0}.u-responsive-aligner{margin:0 auto;width:100%}.u-responsive-ratio--hd{padding-bottom:56.25%}.u-responsive-ratio--letterbox{padding-bottom:40%}.u-text-hyphenate{word-wrap:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto}.u-test-ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.u-button-reset{display:block;margin:0;padding:0;border:0;width:100%;background:transparent}.u-button-reset:focus{outline:0}.u-underline{text-decoration:none !important;border-bottom:0.0625rem solid #dcdcdc;transition:border-color .15s ease-out}.u-underline:hover,.u-underline:focus{border-color:#6e99b3}.u-underline:active{border-color:#00b2ff}.u-nobr{white-space:nowrap}.flushp{padding:0 !important}.flushp--top{padding-top:0 !important}.meta-button{background:transparent;border:0;margin:0;padding:0}.u-font-weight-normal{font-weight:normal}.u-vertical-align-middle-icon svg{vertical-align:middle}.u-faux-block-link{position:relative}.u-faux-block-link a,.u-faux-block-link abbr[title],.u-faux-block-link__promote{position:relative;z-index:1}.u-faux-block-link__overlay{top:0;right:0;bottom:0;left:0;overflow:hidden;text-indent:200%;white-space:nowrap;background:rgba(0,0,0,0)}a.u-faux-block-link__overlay{position:absolute;z-index:0;opacity:0}a.u-faux-block-link__overlay:focus{outline:none}.u-faux-block-link--hover .u-faux-block-link__cta{text-decoration:underline}dt{font-weight:bold}menu,ol,ul{padding:0;margin-left:1.5625rem}nav ul,nav ol{list-style:none;list-style-image:none}.inline-list__item{display:inline-block}.inline-icon{fill:#ffffff}.inline-icon svg{overflow:visible}.inline-icon--light-grey{fill:#dcdcdc}.inline-icon--black{fill:#121212}.inline-close--small svg{height:100%;width:45%}.inline-tone-fill{fill:#005689}.inline-icon__fallback{display:none}.inline-icon__fallback{display:none !important}.no-svg .inline-icon{display:none !important}.no-svg .inline-icon__fallback{display:block !important}.gs-container{position:relative;margin:0 auto}@media (min-width: 46.25em){.gs-container{max-width:46.25rem}}@media (min-width: 61.25em){.gs-container{max-width:61.25rem}}@media (min-width: 71.25em){.gs-container{max-width:71.25rem}}@media (min-width: 81.25em){.gs-container{max-width:81.25rem}}@media (max-width: 29.99em){.content__head:not(.tonal__head--tone-dead):not(.tonal__head--tone-live):not(.tonal__head--tone-media):not(.content__head--crossword):not(.content__head--interactive){margin-right:-0.625rem;margin-left:-0.625rem}}@media (min-width: 30em) and (max-width: 41.24em){.content__head:not(.tonal__head--tone-dead):not(.tonal__head--tone-live):not(.tonal__head--tone-media):not(.content__head--crossword):not(.content__head--interactive){margin-right:-1.25rem;margin-left:-1.25rem}}@media (min-width: 41.25em) and (max-width: 46.24em){.media-primary,.content__head{margin-left:-1.25rem;margin-right:-1.25rem}}@media (max-width: 61.24em){.nav-is-open{overflow:hidden;width:100%}}@media (min-width: 61.25em){.nav-is-open{overflow-x:hidden}}.new-header{background-color:#052962;position:relative}.new-header:not(.new-header--slim){margin-bottom:0}@media (min-width: 46.25em){.new-header{display:block}}@media (min-width: 81.25em){.has-page-skin .new-header .gs-container{width:61.25rem}}.new-header__inner:after,.new-header__inner:before{content:'';display:table}.new-header__inner:after{clear:both}.new-header__edition-container{position:absolute;top:0;z-index:1072;-webkit-transform:translateX(100%);transform:translateX(100%)}@media (min-width: 61.25em){.new-header__edition-container{right:7.5rem;width:6.875rem}}@media (min-width: 81.25em){body:not(.has-page-skin) .new-header__edition-container{right:12.3125rem;width:12.3125rem}}.new-header__edition-container .top-bar__item__seperator{margin-left:0}.new-header__menu-toggle{display:block;outline:0;position:relative}@media (max-width: 61.24em){.new-header__menu-toggle{position:absolute;right:0.3125rem;bottom:3.625rem}}@media (max-width: 61.24em) and (min-width: 22.5em){.new-header__menu-toggle{right:0.3125rem;bottom:-0.1875rem}}@media (max-width: 61.24em) and (min-width: 30em){.new-header__menu-toggle{right:1.125rem}}@media (max-width: 61.24em) and (min-width: 46.25em){.new-header__menu-toggle{bottom:0.1875rem}}@media (max-width: 61.24em){.new-header--slim .new-header__menu-toggle{top:0.1875rem;bottom:auto}}.new-header__menu-toggle:active{outline:0}.new-header__logo{float:right;margin-top:0.625rem;margin-right:3.375rem;margin-bottom:1.5rem}@media (min-width: 22.5em){.new-header__logo{margin-right:0.625rem}}@media (min-width: 30em){.new-header__logo{margin-right:1.25rem}}@media (min-width: 61.25em){.new-header__logo{margin-top:0.3125rem;margin-bottom:1.125rem;position:relative;z-index:1071}}@media (min-width: 81.25em){body:not(.has-page-skin) .new-header__logo{margin-right:6rem}}.new-header--slim .new-header__logo{position:absolute;margin:0;right:2.625rem;top:0.1875rem;z-index:1070}@media (min-width: 30em){body:not(.has-page-skin) .new-header--slim .new-header__logo{margin-right:0;right:3.25rem}}@media (min-width: 61.25em){body:not(.has-page-skin) .new-header--slim .new-header__logo{right:1.25rem}}@media (min-width: 61.25em){.new-header--slim.new-header--open .new-header__logo{z-index:1072}}.inline-the-guardian-roundel__svg{height:2.625rem;width:2.625rem}.inline-the-guardian-roundel__svg path:nth-child(1){fill:#fff}.inline-the-guardian-roundel__svg path:nth-child(2){fill:#052962}.inline-the-guardian-logo__svg{display:block;height:2.75rem;width:8.4375rem}@media (min-width: 22.5em){.inline-the-guardian-logo__svg{height:3.5rem;width:10.9375rem}}@media (min-width: 46.25em){.inline-the-guardian-logo__svg{height:4.5rem;width:14rem}}@media (min-width: 61.25em){.inline-the-guardian-logo__svg{height:5.9375rem;width:18.4375rem}}.inline-the-guardian-logo__svg path{fill:#fff}.inline-guardian-best-website-logo{display:block;height:auto;width:9.125rem}@media (min-width: 22.5em){.inline-guardian-best-website-logo{width:12.1875rem}}@media (min-width: 46.25em){.inline-guardian-best-website-logo{width:14rem}}@media (min-width: 61.25em){.inline-guardian-best-website-logo{width:18.4375rem}}.new-header--slim{height:3rem}.menu{background-color:#052962;box-sizing:border-box;font-size:1.25rem;left:0;line-height:1;margin-right:1.6875rem;padding-bottom:1.5rem;top:0;z-index:1070}@media (max-width: 61.24em){.menu{-webkit-transform:translateX(-110%);transform:translateX(-110%);transition:-webkit-transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);transition:transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);transition:transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);-webkit-overflow-scrolling:touch;box-shadow:0.1875rem 0 1rem rgba(0,0,0,0.4);bottom:0;height:100%;overflow:auto;padding-top:0.375rem;position:fixed;right:0;transition:-webkit-transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);transition:transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);transition:transform 0.2s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);will-change:transform}}@media (min-width: 22.5em){.menu{margin-right:1.8125rem}}@media (min-width: 30em){.menu{margin-right:2.5625rem}}@media (min-width: 61.25em){.menu{display:none;position:absolute;padding-bottom:0;padding-top:0;top:100%;left:0;right:0;width:100%}@supports (width: 100vw){.menu{left:50%;right:50%;width:100vw;margin-left:-50vw;margin-right:-50vw}}.new-header--slim .menu{top:2.625rem}}@media (max-width: 61.24em){.new-header--open .menu{-webkit-transform:translateX(0%);transform:translateX(0%);transition:-webkit-transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);transition:transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);transition:transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.4s cubic-bezier(0.23, 1, 0.32, 1)}}@media (min-width: 61.25em){.new-header--open .menu{display:block}}x:-o-prefocus .menu{display:none}.menu__inner{box-sizing:border-box}@media (max-width: 61.24em){.menu__inner.gs-container{max-width:none}}@media (min-width: 61.25em){.menu__inner{background-color:#052962;border:0.0625rem solid #506991;border-bottom:0;border-top:0;box-sizing:border-box;padding:0 1.25rem}.new-header--slim .menu__inner{border-color:transparent}}.menu__overlay{background-color:rgba(0,0,0,0.5);height:100%;left:0;opacity:0;position:fixed;top:0;transition:opacity 0.2s cubic-bezier(0.23, 1, 0.32, 1);width:0;z-index:1069}.new-header--open .menu__overlay{opacity:1;width:100%}@media (min-width: 61.25em){.menu__overlay{display:none}}.menu-group{box-sizing:border-box;display:-webkit-flex;display:-ms-flexbox;display:flex;font-size:1.125rem;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;list-style:none;margin:0;padding:0 0 0.75rem;position:relative}@media (min-width: 61.25em){.menu-group{display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;padding-bottom:0}}@media (max-width: 61.24em){[aria-expanded='false'] ~ .menu-group{display:none}}.menu-group--primary{padding-top:0}@media (min-width: 61.25em){.menu-group--primary{-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-order:1;-ms-flex-order:1;order:1}}.menu-group--secondary{background-color:#041f4a;margin-top:0;padding-top:0}@media (min-width: 61.25em){.menu-group--secondary{background-color:transparent;padding-bottom:0;width:100%}}.menu-group--membership{padding-bottom:0;position:relative}.menu-group--editions,.menu-group--membership{padding-bottom:0}.menu-group--editions .menu-group,.menu-group--membership .menu-group{background-color:#041f4a}@media (min-width: 61.25em){.menu-group--footer{bottom:0;left:42.4375rem;padding-left:0.625rem;position:absolute;top:0;width:8.375rem}}@media (min-width: 71.25em){body:not(.has-page-skin) .menu-group--footer{left:50.5625rem;width:10rem}}@media (min-width: 61.25em){.menu-group--footer:before,.menu-group--primary>.menu-item:not(:first-child):before,.menu-group--brand-extensions:before{content:'';position:absolute;left:0;top:0;bottom:0;border-left:0.0625rem solid #506991}}.menu-group--brand-extensions{position:absolute;right:1.875rem;top:-2.625rem;bottom:0;padding:2.625rem 1.25rem 0.75rem 0.625rem;width:8.1875rem}@media (min-width: 71.25em){body:not(.has-page-skin) .menu-group--brand-extensions{width:8.75rem}}@media (min-width: 81.25em){body:not(.has-page-skin) .menu-group--brand-extensions{width:18.75rem;padding-top:0.625rem}}.menu-item{box-sizing:border-box;overflow:hidden;position:relative;width:100%}@media (min-width: 61.25em){.menu-group--primary>.menu-item{float:left;overflow:visible;width:8.375rem;padding:0 0.625rem 0.75rem}.menu-group--primary>.menu-item:first-child{padding-left:0;width:7.6875rem}}@media (min-width: 71.25em){body:not(.has-page-skin) .menu-group--primary>.menu-item{width:10rem}body:not(.has-page-skin) .menu-group--primary>.menu-item:first-child{width:9.3125rem}}.menu-item-divider{height:0.0625rem;width:100%;background:#506991;border:0;margin:0.375rem 0 0 3.125rem}@media (min-width: 46.25em){.menu-item-divider{margin-left:3.75rem}}@media (min-width: 61.25em){.menu-item-divider{margin-left:0.375rem 0}}.menu-item__title{font-size:1rem;line-height:1.375rem;font-family:\\\\\\\"Guardian Text Sans Web\\\\\\\",\\\\\\\"Helvetica Neue\\\\\\\",Helvetica,Arial,\\\\\\\"Lucida Grande\\\\\\\",sans-serif;background-color:transparent;border:0;box-sizing:border-box;color:#fff;cursor:pointer;display:inline-block;font-size:1.25rem;outline:none;padding:0.5rem 1.9375rem 0.5rem 3.125rem;position:relative;text-align:left;width:100%}.menu-group--membership .menu-item__title{color:#ffe500;font-weight:700}@media (min-width: 46.25em){.menu-item__title{padding-left:3.75rem}}@media (min-width: 61.25em){.menu-item__title{font-size:1rem;line-height:1.2;padding:0.375rem 0}}.menu-item__title:hover,.menu-item__title:focus{color:#ffe500;text-decoration:none}.menu-item__title:focus{text-decoration:underline}.menu-item__title>*{pointer-events:none}@media (max-width: 61.24em){.menu-group--primary>*:not(:last-child)>.menu-item__title:not([aria-expanded='true']):after,.menu-item__title[data-link-name='nav2 : The Guardian app']:not([aria-expanded='true']):after,.menu-item__title[data-link-name='nav2 : facebook']:not([aria-expanded='true']):after,.menu-group--footer>*:first-child .menu-item__title:not([aria-expanded='true']):after,.menu-group--membership>*:first-child .menu-item__title:not([aria-expanded='true']):after{background-color:#506991;bottom:0;content:'';display:block;height:0.0625rem;left:3.125rem;right:0;position:absolute}}@media (max-width: 61.24em) and (min-width: 46.25em){.menu-group--primary>*:not(:last-child)>.menu-item__title:not([aria-expanded='true']):after,.menu-item__title[data-link-name='nav2 : The Guardian app']:not([aria-expanded='true']):after,.menu-item__title[data-link-name='nav2 : facebook']:not([aria-expanded='true']):after,.menu-group--footer>*:first-child .menu-item__title:not([aria-expanded='true']):after,.menu-group--membership>*:first-child .menu-item__title:not([aria-expanded='true']):after{left:3.75rem}}@media (max-width: 61.24em){.menu-item__title[data-link-name='nav2 : The Guardian app'],.menu-item__title[data-link-name='nav2 : facebook'],.menu-group--footer>*:first-child .menu-item__title{margin-top:1.5rem}.menu-item__title[data-link-name='nav2 : The Guardian app']:after,.menu-item__title[data-link-name='nav2 : facebook']:after,.menu-group--footer>*:first-child .menu-item__title:after{bottom:auto;top:0}}@media (max-width: 61.24em){.menu-group--membership>*:first-child .menu-item__title:not([aria-expanded='true']):after{bottom:auto;top:0}}.menu-group--primary>.menu-item>.menu-item__title{font-size:1.5rem;line-height:1.6875rem;font-family:\\\\\\\"Guardian Egyptian Web\\\\\\\",Georgia,serif;font-weight:normal;font-weight:700;color:#fff;padding-bottom:1.125rem;padding-top:0.375rem}.menu-item--brand-extension{margin-right:0;margin-top:-0.375rem;padding-bottom:0}.menu-item__title--brand-extension{font-size:1.25rem;line-height:1.4375rem;font-family:\\\\\\\"Guardian Egyptian Web\\\\\\\",Georgia,serif;font-weight:normal;font-weight:700}@media (min-width: 81.25em){body:not(.has-page-skin) .menu-item__title--brand-extension{font-size:1.5rem;line-height:1.6875rem;padding-top:0.3125rem}}.menu-item__icon,.menu-item__toggle{left:1.5625rem;position:absolute}@media (min-width: 46.25em){.menu-item__icon,.menu-item__toggle{left:2.1875rem}}@media (min-width: 61.25em){.menu-item__icon,.menu-item__toggle{display:none}}.menu-item__toggle{margin-top:-0.25rem}[aria-expanded='true']>.menu-item__toggle{margin-top:0.125rem}.menu-item__toggle:before{border:0.125rem solid currentColor;border-top:0;border-left:0;content:'';display:inline-block;height:0.5rem;-webkit-transform:rotate(45deg);transform:rotate(45deg);width:0.5rem}[aria-expanded='true']>.menu-item__toggle:before{-webkit-transform:rotate(-135deg);transform:rotate(-135deg)}.menu-item__icon{margin-left:-0.1875rem}.menu-item__icon .inline-icon__svg{fill:currentColor}.menu-item__icon .inline-home__svg{height:1rem;width:1rem}.menu-item__icon .inline-log-off__svg{height:.8em}.menu-item__icon .inline-share-facebook__svg,.menu-item__icon .inline-share-twitter__svg{margin-left:-0.375rem;margin-top:-0.3125rem}.menu-search{box-sizing:border-box;display:block;margin-left:0.8125rem;max-width:23.75rem;position:relative;width:100%;margin-bottom:1.5rem;margin-right:2.5625rem}@media (min-width: 46.25em){.menu-search{margin-left:1.375rem}}.menu-search__search-box{font-size:1rem;line-height:1.375rem;font-family:\\\\\\\"Guardian Text Sans Web\\\\\\\",\\\\\\\"Helvetica Neue\\\\\\\",Helvetica,Arial,\\\\\\\"Lucida Grande\\\\\\\",sans-serif;background-color:rgba(255,255,255,0.1);border:0;border-radius:62.5rem;box-sizing:border-box;color:#fff;font-size:1.25rem;height:2.25rem;padding-left:2.375rem;vertical-align:middle;width:100%}.menu-search__search-box::-webkit-input-placeholder{color:#fff}.menu-search__search-box::-moz-placeholder{color:#fff}.menu-search__search-box:-ms-input-placeholder{color:#fff}.menu-search__search-box::-ms-input-placeholder{color:#fff}.menu-search__search-box::placeholder{color:#fff}.menu-search__search-box:focus{outline:none;padding-right:2.5rem}.menu-search__search-box:focus::-webkit-input-placeholder{opacity:0}.menu-search__search-box:focus::-moz-placeholder{opacity:0}.menu-search__search-box:focus:-ms-input-placeholder{opacity:0}.menu-search__search-box:focus::-ms-input-placeholder{opacity:0}.menu-search__search-box:focus::placeholder{opacity:0}.menu-search__glass{position:absolute;left:0.625rem;top:0.4375rem}.menu-search__glass .inline-search-36__svg{fill:#fff;height:1.375rem;width:1.375rem}.menu-search__submit{background:transparent;border:0;bottom:0;cursor:pointer;display:block;opacity:0;pointer-events:none;position:absolute;right:0;top:0;width:3.125rem}.menu-search__submit:before,.menu-search__submit:after{border:0.125rem solid #fff;border-left:0;border-top:0;content:'';display:block;position:absolute;right:0.875rem}.menu-search__submit:before{height:0.75rem;top:0.6875rem;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);width:0.75rem}@media (min-width: 61.25em){.menu-search__submit:before{top:0.875rem}}.menu-search__submit:after{border-right:0;top:1.0625rem;width:1.25rem}.menu-search__search-box:focus ~ .menu-search__submit,.menu-search__submit:focus,.menu-search__submit:active{opacity:1;outline:none;pointer-events:all}.pillars{clear:right;margin:0;padding:0 0 0 0.625rem}.new-header:not(.new-header--slim) .pillars:after{content:'';border:0.0625rem solid #506991;border-bottom:0;position:absolute;bottom:0;left:0;right:0;height:2.25rem}@media (max-width: 46.24em){.new-header:not(.new-header--slim) .pillars:after{border-left:0;border-right:0}}@media (min-width: 46.25em){.new-header:not(.new-header--slim) .pillars:after{height:3rem}}@media (min-width: 61.25em){.new-header:not(.new-header--slim) .pillars:after{height:2.625rem}}@media (min-width: 30em){.pillars{padding-left:1.25rem}}@media (min-width: 61.25em){.new-header--open .pillars{z-index:1070}}@media (max-width: 46.24em){.new-header--slim .pillars{display:none}}.pillars__item{display:block;float:left}@media (max-width: 29.99em){.pillars__item{-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;text-align:center}}@media (min-width: 61.25em){.pillars__item{width:8.375rem}}@media (min-width: 71.25em){body:not(.has-page-skin) .pillars__item{width:10rem}}.pillars__item:first-child{margin-left:-1.25rem}@media (min-width: 61.25em){.pillars__item:first-child{width:9rem}}@media (min-width: 71.25em){body:not(.has-page-skin) .pillars__item:first-child{width:10.625rem}}.pillars__item:first-child .pillar-link{padding-left:1.25rem}.pillars__item:first-child .pillar-link:before{content:none}.pillar-link{box-sizing:border-box;font-family:\\\\\\\"Guardian Egyptian Web\\\\\\\",Georgia,serif;font-weight:900;color:#fff;cursor:pointer;display:block;font-size:0.9625rem;height:2.25rem;line-height:1;padding:0.5625rem 0.3125rem 0;position:relative;overflow:hidden;z-index:1}@media (min-width: 22.5em){.pillar-link{font-size:0.98125rem;padding:0.5625rem 0.25rem 0}}@media (min-width: 23.125em){.pillar-link{font-size:1rem;padding:0.5625rem 0.3125rem 0}}@media (min-width: 30em){.pillar-link{font-size:1.125rem;padding:0.4375rem 0.25rem 0}}@media (min-width: 46.25em){.pillar-link{font-size:1.375rem;padding-top:0.6875rem;height:3rem;padding-right:1.25rem;padding-left:0.625rem}.new-header--slim .pillar-link{height:3rem;padding-top:0.6875rem}}@media (min-width: 61.25em){.pillar-link{padding-top:0.4375rem;height:2.625rem}}@media (min-width: 81.25em){body:not(.has-page-skin) .pillar-link{font-size:1.5rem}}.pillar-link:before,.pillar-link:not(.pillar-link--dropdown):after{bottom:0;content:'';display:block;left:0;position:absolute}.pillar-link:before{border-left:0.0625rem solid #506991;top:0;z-index:1}@media (min-width: 46.25em){.pillar-link:before{bottom:1.0625rem}}@media (min-width: 61.25em){.pillar-link:before{bottom:.6em}.new-header--open .pillar-link:before{bottom:0}}.pillar-link:after{border-top:0.25rem solid currentColor;left:0.0625rem;right:0;top:-0.25rem;transition:-webkit-transform .3s ease-in-out;transition:transform .3s ease-in-out;transition:transform .3s ease-in-out, -webkit-transform .3s ease-in-out}.pillar-link:hover,.pillar-link:focus{color:#fff;text-decoration:none}.pillar-link:hover:after,.pillar-link:focus:after{-webkit-transform:translateY(0.25rem);transform:translateY(0.25rem)}@media (min-width: 61.25em){.new-header--open .pillar-link:hover,.new-header--open .pillar-link:focus{color:#ffe500}.new-header--open .pillar-link:after{-webkit-transform:translateY(0.25rem);transform:translateY(0.25rem)}}.pillar-link--current-section:after{-webkit-transform:translateY(0.25rem);transform:translateY(0.25rem)}.pillar-link--dropdown__icon{border:0.0625rem solid currentColor;border-left:transparent;border-top:transparent;display:inline-block;height:0.375rem;margin-left:0.125rem;-webkit-transform:translateY(-0.1875rem) rotate(45deg);transform:translateY(-0.1875rem) rotate(45deg);transition:-webkit-transform 250ms ease-out;transition:transform 250ms ease-out;transition:transform 250ms ease-out, -webkit-transform 250ms ease-out;vertical-align:middle;width:0.375rem}.pillar-link--dropdown:hover .pillar-link--dropdown__icon{-webkit-transform:translateY(0) rotate(45deg);transform:translateY(0) rotate(45deg)}.new-header--open .pillar-link--dropdown .pillar-link--dropdown__icon{-webkit-transform:translateY(0.0625rem) rotate(-135deg);transform:translateY(0.0625rem) rotate(-135deg)}.new-header--open .pillar-link--dropdown:hover .pillar-link--dropdown__icon{-webkit-transform:translateY(-0.125rem) rotate(-135deg);transform:translateY(-0.125rem) rotate(-135deg)}.pillar-link--sections{color:#fff;font-weight:300;float:left;padding-right:0.3125rem;transition:color 250ms ease-out}.pillar-link--sections:hover,.pillar-link--sections:focus{color:#ffe500}.new-header__cta-bar{padding-top:2.4375rem;padding-left:0.625rem;max-width:21.25rem}@media (min-width: 22.5em){.new-header__cta-bar{padding-top:2.75rem}}@media (min-width: 30em){.new-header__cta-bar{padding-left:1.25rem}}@media (min-width: 46.25em){.new-header__cta-bar{padding-top:0.25rem;padding-bottom:1.25rem}}@media (min-width: 61.25em){.new-header__cta-bar{max-width:20rem}}@media (min-width: 71.25em){body:not(.has-page-skin) .new-header__cta-bar{max-width:31.25rem}}.new-header--slim .new-header__cta-bar{padding-top:0.5rem}@media (min-width: 46.25em){.new-header--slim .new-header__cta-bar{display:none}}@media (min-width: 71.25em){body:not(.has-page-skin) .new-header__cta-bar .cta-bar__heading{font-size:1.75rem;line-height:2rem}}.cta-bar__text{display:block;margin:0.1875rem 0 0.5625rem}@media (max-width: 46.24em){.cta-bar__text{border-top:0.0625rem solid #506991;padding-top:0.1875rem}}.cta-bar__text--no-border{border-top:0}.cta-bar__heading{font-size:1.25rem;line-height:1.4375rem;font-family:\\\\\\\"Guardian Egyptian Web\\\\\\\",Georgia,serif;font-weight:normal;color:#ffe500;font-weight:700}@media (min-width: 61.25em){.cta-bar__heading{font-size:1.5rem;line-height:1.6875rem}}@media (min-width: 71.25em){body:not(.has-page-skin) .cta-bar__heading{font-size:2.125rem;line-height:2.375rem}}.cta-bar__subheading{font-size:1rem;line-height:1.375rem;font-family:\\\\\\\"Guardian Text Sans Web\\\\\\\",\\\\\\\"Helvetica Neue\\\\\\\",Helvetica,Arial,\\\\\\\"Lucida Grande\\\\\\\",sans-serif;color:#fff;font-weight:400;line-height:1.2;margin-top:0.1875rem}.cta-bar__cta{font-size:1rem;line-height:1.375rem;font-family:\\\\\\\"Guardian Text Sans Web\\\\\\\",\\\\\\\"Helvetica Neue\\\\\\\",Helvetica,Arial,\\\\\\\"Lucida Grande\\\\\\\",sans-serif;font-weight:700;background-color:#ffe500;border-radius:1.125rem;box-sizing:border-box;color:#052962;display:block;line-height:1;height:1.8125rem;padding:0.375rem 0.6875rem 0;margin-bottom:0.375rem;margin-right:0.625rem;position:relative;float:left}@media (min-width: 22.5em){.cta-bar__cta{padding:0.375rem 2rem 0 0.625rem}}.cta-bar__cta .inline-arrow-right{margin:0 -0.125rem 0 0}@media (min-width: 46.25em){.cta-bar__cta{height:2rem;padding:0.4375rem 2.125rem 0 0.75rem}}.cta-bar__cta .inline-arrow-right{position:absolute;height:2rem;width:2rem;right:0.1875rem;top:50%;-webkit-transform:translate(0, -50%);transform:translate(0, -50%);transition:-webkit-transform .3s ease-in-out;transition:transform .3s ease-in-out;transition:transform .3s ease-in-out, -webkit-transform .3s ease-in-out}@media (max-width: 22.49em){.cta-bar__cta .inline-arrow-right{display:none}}.cta-bar__cta .inline-arrow-right__svg{fill:currentColor;height:2rem;width:2rem}.cta-bar__cta:hover,.cta-bar__cta:focus{color:#052962;text-decoration:none}.cta-bar__cta:hover .inline-arrow-right,.cta-bar__cta:focus .inline-arrow-right{-webkit-transform:translate(0.1875rem, -50%);transform:translate(0.1875rem, -50%)}.cta-bar__cta--white-inline{color:#121212;background-color:#fff;float:none;display:inline-block}.new-header__top-bar{position:absolute;left:0.625rem;top:0}@media (min-width: 30em){.new-header__top-bar{left:1.25rem}}@media (min-width: 46.25em){.new-header__top-bar{left:auto;right:12.8125rem}}@media (min-width: 61.25em){.new-header__top-bar{right:16.625rem}}@media (min-width: 81.25em){body:not(.has-page-skin) .new-header__top-bar{right:21.375rem}}.top-bar__item{font-size:0.8125rem;line-height:1.125rem;font-family:\\\\\\\"Guardian Text Sans Web\\\\\\\",\\\\\\\"Helvetica Neue\\\\\\\",Helvetica,Arial,\\\\\\\"Lucida Grande\\\\\\\",sans-serif;font-size:1rem;color:#fff;float:left;line-height:1;padding-top:0.375rem;position:relative;z-index:1072}.top-bar__item:hover,.top-bar__item:focus{color:#ffe500;text-decoration:none}@media (min-width: 22.5em){.top-bar__item{padding-top:0.75rem}}@media (min-width: 46.25em){.top-bar__item{padding:0.5625rem 0.41667rem}}.top-bar__commercial-items{position:relative;float:left;margin-right:0.625rem}.top-bar__item__icon__svg{fill:currentColor;float:left;height:1.125rem;width:1.125rem;margin:-0.0625rem 0.25rem 0 0}.top-bar__item__seperator{border-left:0.0625rem solid #506991;position:absolute;left:0;top:0;height:1.5rem}.new-header__user-account-container{float:left;position:relative;z-index:1010}.new-header--open .new-header__user-account-container{z-index:1010}@media (max-width: 46.24em){.dropdown--open{overflow:hidden;width:100%}}.dropdown-menu-fallback{display:none}.dropdown-menu-fallback:checked ~ .dropdown-menu{display:block}@media (max-width: 46.24em){.dropdown-menu-fallback[aria-expanded=true] ~ .my-account__overlay{background:linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.2) 30%);border:0;position:fixed;display:block;left:0;right:0;top:0;bottom:0;width:100%}}.dropdown-menu{display:none;position:absolute;top:1.875rem;right:0;width:13.75rem;background-color:#fff;border-radius:0.1875rem;padding:0.375rem 0;margin:0;box-shadow:0 0 0 0.0625rem rgba(0,0,0,0.1);z-index:1073}.dropdown-menu>hr{height:0;border:0;border-top:0.0625rem solid #ededed;display:block;top:0;margin:-0.0625rem 0 0 1.25rem}@media (max-width: 46.24em){.dropdown-menu{position:fixed;border-radius:0;top:2.25rem;left:0;right:0;width:auto;max-height:calc(100% - 3.125rem);overflow:auto}.dropdown-menu>hr{margin-left:0.625rem}}@media (max-width: 46.24em) and (min-width: 22.5em){.dropdown-menu{top:2.125rem}}@media (max-width: 46.24em) and (min-width: 30em){.dropdown-menu>hr{margin-left:1.25rem}}.dropdown-menu--open{display:block}.dropdown-menu__title{font-size:1rem;line-height:1.375rem;font-family:\\\\\\\"Guardian Text Sans Web\\\\\\\",\\\\\\\"Helvetica Neue\\\\\\\",Helvetica,Arial,\\\\\\\"Lucida Grande\\\\\\\",sans-serif;color:#121212;cursor:pointer;display:block;letter-spacing:.01rem;outline:none;padding:0.4375rem 1.25rem 0.9375rem 0.625rem;position:relative;box-sizing:border-box;margin-top:-0.0625rem}@media (min-width: 30em){.dropdown-menu__title{padding-left:1.25rem}}.dropdown-menu__title:hover,.dropdown-menu__title:focus{color:#121212;background-color:#ededed;text-decoration:none}.dropdown-menu__title:before{content:'';border-top:0.0625rem solid #ededed;display:block;position:absolute;top:0;left:1.25rem;right:0}.dropdown-menu.dropdown-menu--light .dropdown-menu__title:before{display:none}.dropdown-menu__item:first-child .dropdown-menu__title:before{content:none}.dropdown-menu__title .inline-icon{position:relative;display:inline-block;height:.8em;width:1em}.dropdown-menu__title .inline-icon>svg{position:absolute;height:.8em;width:.8em}.dropdown-menu__title .inline-icon>svg g{fill:#121212}@supports (fill: currentColor){.dropdown-menu__title .inline-icon>svg g{fill:currentColor}}.dropdown-menu__title--active{font-weight:bold}.dropdown-menu__title--active:after{content:'';border:0.125rem solid #333;border-top:0;border-right:0;position:absolute;top:0.8125rem;right:1.25rem;width:0.625rem;height:0.25rem;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.gsc-search-box{position:relative !important}.gsc-search-button,.gsib_a{margin:0 !important;padding:0 !important;width:0 !important}.gsc-search-button-v2{padding:0.4375rem 0.5625rem 0.5rem !important;left:0 !important}.gsc-search-button-v2 svg{fill:#052962 !important;height:1.25rem !important;width:1.25rem !important}.gsst_a{padding:0.5625rem 0 0 0.6875rem !important}.sc-control-cse{padding:0.1875rem 0 !important}.gsib_b,.gsc-search-button-v2{border:0 !important;box-sizing:border-box !important;height:2.625rem !important;width:2.625rem !important;margin:0 !important;background-color:transparent !important;position:absolute !important;right:0 !important;top:0 !important}.gsc-input-box{border:0 !important}.gsib_a{border:0 !important;box-shadow:none !important}.gsib_a .gsc-input{padding:0 !important;margin:0 !important;box-sizing:border-box !important;background-position-x:2.5rem !important;text-indent:5.625rem !important;border:0.0625rem solid #dcdcdc !important;border-radius:62.4375rem !important;height:2.625rem !important;box-shadow:none !important;width:31.25rem !important}.gsib_a .gsc-input:hover,.gsib_a .gsc-input:focus{outline:0}.gsib_a .gsc-input:focus{text-indent:2.625rem !important}.gsib_a .gsc-input:not(:-moz-placeholder-shown){text-indent:2.625rem !important}.gsib_a .gsc-input:not(:-ms-input-placeholder){text-indent:2.625rem !important}.gsib_a .gsc-input:not(:placeholder-shown){text-indent:2.625rem !important}.gstl_50,.gssb_c{z-index:1071 !important}.gsc-completion-container,.gsc-input{font-family:\\\\\\\"Guardian Text Sans Web\\\\\\\",\\\\\\\"Helvetica Neue\\\\\\\",Helvetica,Arial,\\\\\\\"Lucida Grande\\\\\\\",sans-serif;padding:0 !important;margin:0 !important}.subnav{background-color:#ffffff;height:2.25rem;overflow:hidden;position:relative}@media (min-width: 46.25em){.subnav{height:2.625rem}}.subnav .gs-container{box-sizing:border-box}.subnav .gs-container:after,.subnav .gs-container:before{content:'';display:table}.subnav .gs-container:after{clear:both}@media (min-width: 46.25em){.subnav .gs-container{border:0.0625rem solid #dcdcdc;border-top:0;border-bottom:0}}.footer__primary .subnav .gs-container{border-top:0.0625rem solid #dcdcdc}.subnav--expanded{height:auto}.subnav--expanded .subnav-link--toggle-more{float:left}.subnav__list{box-sizing:border-box;line-height:1;list-style:none;margin:0;max-width:calc(100% - 3.75rem);padding:0 0.3125rem}@media (min-width: 30em){.subnav__list{max-width:calc(100% - 4.375rem);padding:0 0.9375rem}}.subnav--expanded .subnav__list{padding-bottom:0.75rem;max-width:100%;width:100%}.subnav__item:not(.subnav__item--toggle-more){display:block;float:left}.subnav__item--parent:after{content:'';display:inline-block;width:0;height:0;border-top:0.375rem solid transparent;border-bottom:0.375rem solid transparent;border-left:0.625rem solid #121212}.new-header__multiline{background:#fff}.new-header__multiline .gs-container:after{background-image:repeating-linear-gradient(to bottom, #dcdcdc, #dcdcdc 0.0625rem, transparent 0.0625rem, transparent 0.25rem);background-repeat:repeat-x;background-position:bottom;background-size:0.0625rem 0.8125rem;background-color:#ffffff;content:'';display:block;height:0.8125rem}@media (min-width: 46.25em){.new-header__multiline .gs-container:after{border:0.0625rem solid #dcdcdc;border-top:0;border-bottom:0}}.subnav--comment{background-color:#fef9f5}.subnav--comment .gs-container{border-color:#dcdcdc}.subnav--comment ~ .new-header__multiline{background-color:#fef9f5}.subnav--comment ~ .new-header__multiline .gs-container:after{background-image:repeating-linear-gradient(to bottom, #dcdcdc, #dcdcdc 0.0625rem, transparent 0.0625rem, transparent 0.25rem);background-repeat:repeat-x;background-position:bottom;background-size:0.0625rem 0.8125rem;background-color:#fef9f5;border-color:#dcdcdc}.subnav--media{background-color:#121212}.subnav--media .gs-container{border-color:#333}.subnav--media ~ .new-header__multiline{background-color:#121212}.subnav--media ~ .new-header__multiline .gs-container:after{background-image:repeating-linear-gradient(to bottom, #333, #333 0.0625rem, transparent 0.0625rem, transparent 0.25rem);background-repeat:repeat-x;background-position:bottom;background-size:0.0625rem 0.8125rem;background-color:#121212;border-color:#333}.subnav--media .subnav-link{color:#fff}.subnav-link{font-size:0.75rem;line-height:1rem;font-family:\\\\\\\"Guardian Text Sans Web\\\\\\\",\\\\\\\"Helvetica Neue\\\\\\\",Helvetica,Arial,\\\\\\\"Lucida Grande\\\\\\\",sans-serif;color:#121212;display:block;height:2.25rem;line-height:2.25rem;padding:0 0.25rem;position:relative}@media (min-width: 22.5em){.subnav-link{font-size:0.875rem}}@media (min-width: 46.25em){.subnav-link{font-size:1rem;line-height:1.375rem;height:2.625rem;line-height:2.625rem}}@media (max-width: 46.24em){.subnav-link:after{border-bottom:0.0625rem solid #dcdcdc;bottom:-0.0625rem;content:'';left:0.3125rem;position:absolute;right:-624.9375rem}}.subnav__item--parent .subnav-link{display:inline-block;font-weight:700}.subnav-link:hover,.subnav-link:focus{color:#333}.subnav-link--toggle-more{background:transparent;border:0;color:#767676}.subnav-link--toggle-more:hover,.subnav-link--toggle-more:focus{color:#767676;outline:0}.subnav-link--current-section,.subnav-link--current-section:hover,.subnav-link--current-section:focus{font-weight:700}.veggie-burger{background-color:#ffe500;cursor:pointer;display:block;height:2.625rem;width:2.625rem;position:relative;border:0;border-radius:50%;outline:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:1069}.new-header--open .veggie-burger{z-index:1071}x:-o-prefocus .veggie-burger{display:none}.veggie-burger__icon{top:50%;display:block;margin-top:-0.0625rem;left:0;right:0;margin-left:auto;margin-right:auto}.veggie-burger__icon,.veggie-burger__icon:before,.veggie-burger__icon:after{background-color:currentColor;content:'';height:0.125rem;left:0;position:absolute;width:1.25rem}.veggie-burger__icon:before{top:-0.375rem}.veggie-burger__icon:after{bottom:-0.375rem}.new-header--open .veggie-burger__icon{background-color:transparent}.new-header--open .veggie-burger__icon:before{top:0;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.new-header--open .veggie-burger__icon:after{bottom:0;-webkit-transform:rotate(45deg);transform:rotate(45deg)}@media (max-width: 61.24em){.veggie-burger-fallback:checked ~ .menu{-webkit-transform:translateX(0%);transform:translateX(0%);transition:-webkit-transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);transition:transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);transition:transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.4s cubic-bezier(0.23, 1, 0.32, 1)}}@media (min-width: 61.25em){.veggie-burger-fallback:checked ~ .menu{display:block}}@media (max-width: 61.24em){.veggie-burger-fallback:checked ~ .menu__overlay{opacity:1;width:100%}}.veggie-burger-fallback:checked ~ .veggie-burger{z-index:1071}.veggie-burger-fallback:checked ~ .veggie-burger .veggie-burger__icon{background-color:transparent}.veggie-burger-fallback:checked ~ .veggie-burger .veggie-burger__icon:before{top:0;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.veggie-burger-fallback:checked ~ .veggie-burger .veggie-burger__icon:after{bottom:0;-webkit-transform:rotate(45deg);transform:rotate(45deg)}@media (min-width: 61.25em){.veggie-burger-fallback:checked ~ .veggie-burger .veggie-burger__label{border:0 !important;clip:rect(0 0 0 0) !important;height:0.0625rem !important;margin:-0.0625rem !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:0.0625rem !important}}.veggie-burger-fallback:focus ~ .new-header__menu-toggle .pillar-link{color:#fff}.main-menu-toggle-button{border:0;padding:0;background:none}.edition-picker-toggle-button{border:0;background:none;text-align:left}@media (max-width: 46.24em){.dropdown--open .my-account{z-index:1071}}.my-account-toggle-button{border:0;background:none;text-align:left}@media (max-width: 46.24em){.my-account-toggle-button{padding-left:0}}.my-account--icon svg{height:1.125rem;width:1.125rem}@media (min-width: 22.5em){.my-account--icon svg{height:1.4375rem;width:1.4375rem}}@media (max-width: 46.24em){.dropdown--open .my-account--icon:before,.dropdown--open .my-account--icon:after{content:'';display:block;position:absolute;left:50%;bottom:0.4375rem;width:0;height:0;-webkit-transform:translateX(-50%);transform:translateX(-50%);z-index:1071}.dropdown--open .my-account--icon:before{border-left:0.4375rem solid transparent;border-right:0.4375rem solid transparent;border-bottom:0.4375rem solid rgba(0,0,0,0.1)}.dropdown--open .my-account--icon:after{border-left:0.375rem solid transparent;border-right:0.375rem solid transparent;border-bottom:0.375rem solid #fff}}.subnav__list[data-pillar-title='News'] .subnav__item--parent:after{border-left-color:#c70000}.subnav__list[data-pillar-title='News'] .subnav-link:hover,.subnav__list[data-pillar-title='News'] .subnav-link:focus{color:#c70000;text-decoration:none}.subnav__list[data-pillar-title='Opinion'] .subnav__item--parent:after{border-left-color:#e05e00}.subnav__list[data-pillar-title='Opinion'] .subnav-link:hover,.subnav__list[data-pillar-title='Opinion'] .subnav-link:focus{color:#e05e00;text-decoration:none}.subnav__list[data-pillar-title='Sport'] .subnav__item--parent:after{border-left-color:#0084c6}.subnav__list[data-pillar-title='Sport'] .subnav-link:hover,.subnav__list[data-pillar-title='Sport'] .subnav-link:focus{color:#0084c6;text-decoration:none}.subnav__list[data-pillar-title='Culture'] .subnav__item--parent:after{border-left-color:#a1845c}.subnav__list[data-pillar-title='Culture'] .subnav-link:hover,.subnav__list[data-pillar-title='Culture'] .subnav-link:focus{color:#a1845c;text-decoration:none}.subnav__list[data-pillar-title='Lifestyle'] .subnav__item--parent:after{border-left-color:#bb3b80}.subnav__list[data-pillar-title='Lifestyle'] .subnav-link:hover,.subnav__list[data-pillar-title='Lifestyle'] .subnav-link:focus{color:#bb3b80;text-decoration:none}.pillar-link.pillar-link--News:after{border-color:#ff4e36}.pillar-link.pillar-link--Opinion:after{border-color:#ff7f0f}.pillar-link.pillar-link--Sport:after{border-color:#00b2ff}.pillar-link.pillar-link--Culture:after{border-color:#eacca0}.pillar-link.pillar-link--Lifestyle:after{border-color:#ffabdb}.monocolumn-wrapper{padding-left:0.625rem;padding-right:0.625rem}@media (min-width: 30em){.monocolumn-wrapper{padding-left:1.25rem;padding-right:1.25rem}}@media (min-width: 46.25em){.monocolumn-wrapper{max-width:38.75rem;margin-left:auto;margin-right:auto}}.monocolumn-wrapper .page-header{margin-left:0;margin-right:0}@media (min-width: 61.25em){.monocolumn-wrapper--no-limit-desktop{max-width:none}}.component{margin-bottom:1.25rem}.component--rhc{display:none}@media (min-width: 61.25em){.component--rhc{display:block;margin-top:2.25rem}}.component--rhc:first-child{margin-top:0}.component--rhc:last-child{margin-bottom:2.25rem}@media (min-width: 46.25em){.gs-container{max-width:46.25rem}}@media (min-width: 61.25em){.gs-container{max-width:61.25rem}}@media (min-width: 71.25em){.gs-container{max-width:71.25rem}}@media (min-width: 81.25em){.gs-container{max-width:81.25rem}}.img--inline{float:left;clear:left;width:7.125rem}@media (min-width: 30em){.img--inline{width:8.75rem}}.img--inline figcaption{padding-top:0.25rem;word-wrap:break-word}.loading,.preload-msg{padding:3.125rem 3.125rem 15.625rem;text-align:center}.loading .loading__link,.loading .accessible-link,.preload-msg .loading__link,.preload-msg .accessible-link{font-size:0.8125rem;line-height:1.125rem;font-family:\\\\\\\"Guardian Text Sans Web\\\\\\\",\\\\\\\"Helvetica Neue\\\\\\\",Helvetica,Arial,\\\\\\\"Lucida Grande\\\\\\\",sans-serif;display:inline-block}.loading .loading__animation,.preload-msg .is-updating{display:block;margin:0.625rem auto}.l-side-margins{position:relative;height:100%}@media (min-width: 46.25em){.l-side-margins:after,.l-side-margins:before{content:'';position:absolute;z-index:1;top:0;height:100%;width:0;pointer-events:none}.l-side-margins:before{left:0;border-right:0.0625rem solid rgba(118,118,118,0.3)}.l-side-margins:after{right:0;border-left:0.0625rem solid rgba(118,118,118,0.3)}.l-side-margins:before,.l-side-margins:after{width:calc((100% - 46.25rem) \\\\/ 2)}}@media (min-width: 61.25em){.l-side-margins:before,.l-side-margins:after{width:calc((100% - 61.25rem) \\\\/ 2)}}@media (min-width: 71.25em){.l-side-margins:before,.l-side-margins:after{width:calc((100% - 71.25rem) \\\\/ 2)}}@media (min-width: 81.25em){.l-side-margins:before,.l-side-margins:after{width:calc((100% - 81.25rem) \\\\/ 2)}.has-page-skin .l-side-margins{margin-left:auto;margin-right:auto;width:61.25rem}}@media (min-width: 46.25em){.l-side-margins--media:after,.l-side-margins--media:before{background:rgba(0,0,0,0.25);border-color:#333}.container__banding+.container__banding .l-side-margins--media:after,.container__banding+.container__banding .l-side-margins--media:before{background:rgba(18,18,18,0.15)}}@media (min-width: 46.25em){.l-side-margins--paidfor:after,.l-side-margins--paidfor:before{border-color:#999}}@media (min-width: 46.25em){.l-row{display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-align-content:stretch;-ms-flex-line-pack:stretch;align-content:stretch;-webkit-align-items:stretch;-ms-flex-align:stretch;align-items:stretch;width:100%}.l-row--reverse{-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.l-row__item{-webkit-flex:1;-ms-flex:1;flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;width:0}.l-row__item--boost-1{-webkit-flex-grow:1.5;-ms-flex-positive:1.5;flex-grow:1.5}.l-row__item--boost-2{-webkit-flex-grow:2;-ms-flex-positive:2;flex-grow:2}}@media (max-width: 46.24em){.l-row--layout-m{display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.l-row--layout-m .l-row__item{-webkit-flex-basis:50%;-ms-flex-preferred-size:50%;flex-basis:50%}.l-row--layout-m .l-row__item--break-m{-webkit-flex:1 100%;-ms-flex:1 100%;flex:1 100%}}.has-no-flex .l-row{width:58.75rem}.has-no-flex .l-row:after,.has-no-flex .l-row:before{content:'';display:table}.has-no-flex .l-row:after{clear:both}.has-no-flex .l-row__item{float:left}.has-no-flex .l-row--items-2 .l-row__item{width:29.375rem}.has-no-flex .l-row--items-3 .l-row__item{width:19.58333rem}.has-no-flex .l-row--items-4 .l-row__item{width:14.6875rem}.popup--default{background:#fff;border-radius:0.1875rem;box-shadow:0 0 0 0.0625rem rgba(0,0,0,0.1);left:0;top:2.6875rem;padding:0}.popup{box-sizing:border-box;position:absolute;margin:0;list-style:none;min-width:8.75rem}@media (min-width: 30em){.popup{right:auto;bottom:auto;top:2.8125rem}}@media (min-width: 46.25em){.brand-bar__item--has-control .popup{left:2.875rem}}.l-header--is-slim .brand-bar__item--has-control .popup{left:0}@media (min-width: 46.25em){.brand-bar__item--right .popup{left:auto;right:0}}.popup__group{z-index:3;margin:0;padding:0 0.625rem}.popup__group-header{font-size:0.8125rem;line-height:1.125rem;font-family:\\\\\\\"Guardian Text Sans Web\\\\\\\",\\\\\\\"Helvetica Neue\\\\\\\",Helvetica,Arial,\\\\\\\"Lucida Grande\\\\\\\",sans-serif;color:#767676;padding:0.375rem 0.625rem;border-top:0.0625rem solid #dcdcdc;padding-bottom:0;margin:0}.popup__group-header:first-of-type{border-top:0}.has-popup{cursor:default;position:relative}.popup-container{position:relative;z-index:11}.popup__toggle{cursor:pointer}.popup__toggle:after{content:'';display:inline-block;width:0.25rem;height:0.25rem;-webkit-transform:translateY(-0.125rem) rotate(45deg);transform:translateY(-0.125rem) rotate(45deg);border:0.0625rem solid currentColor;border-left:transparent;border-top:transparent;margin-left:0.125rem;vertical-align:middle;-webkit-backface-visibility:hidden;transition:-webkit-transform 250ms ease-out;transition:transform 250ms ease-out;transition:transform 250ms ease-out, -webkit-transform 250ms ease-out}.popup__toggle:hover,.popup__toggle:focus{text-decoration:none}.popup__toggle:hover:after,.popup__toggle:focus:after{-webkit-transform:translateY(0) rotate(45deg);transform:translateY(0) rotate(45deg)}.popup__toggle.is-active:after,.is-active>.popup__toggle:after,.popup__toggle[aria-expanded=true]:after,[aria-expanded=true] ~ .popup__toggle:after,.is-not-modern .brand-bar__item--has-control:hover .popup__toggle:after,.is-not-modern .is-signed-in.brand-bar__item--profile:hover .popup__toggle:after{-webkit-transform:translateY(0.0625rem) rotate(-135deg);transform:translateY(0.0625rem) rotate(-135deg)}.popup__toggle.is-active:hover:after,.is-active>.popup__toggle:hover:after,.popup__toggle[aria-expanded=true]:hover:after,[aria-expanded=true] ~ .popup__toggle:hover:after,.is-not-modern .brand-bar__item--has-control:hover .popup__toggle:hover:after,.is-not-modern .is-signed-in.brand-bar__item--profile:hover .popup__toggle:hover:after{-webkit-transform:translateY(-0.0625rem) rotate(-135deg);transform:translateY(-0.0625rem) rotate(-135deg)}@media (max-width: 46.24em){.l-header .popup__toggle:after{display:none}}.l-header--is-slim.l-header .popup__toggle:after{display:none}.popup__item{display:block;line-height:2.25rem}.popup__item a{border-bottom:0.0625rem solid #dcdcdc}.popup__item:last-child{border-bottom:0}.popup__item,.popup__action{text-align:left}.popup .brand-bar__item--action,.popup .brand-bar__item--action:hover{display:block;white-space:nowrap;color:#121212;line-height:2.25rem}.popup .brand-bar__item--inline-action{display:inline-block !important;margin-right:0.3125rem}.brand-bar__item--profile:not(.is-signed-in) .popup__toggle:before,.brand-bar__item--profile:not(.is-signed-in) .popup__toggle:after{display:none !important}.popup--search{background-color:#fff;border-radius:0.1875rem;box-shadow:0 0 0 0.0625rem rgba(0,0,0,0.1);padding:0.75rem 1.25rem 0;top:1.875rem;z-index:1071;outline:0;left:auto;right:15.625rem}@media (min-width: 81.25em){body:not(.has-page-skin) .popup--search{right:20.3125rem}}.ad-slot{position:relative;z-index:1010;overflow:initial}.js-off .ad-slot{display:none}.aside-slot-container{min-height:17.125rem}.aside-slot-container>:last-child{padding-bottom:0;margin-bottom:1.5rem}.ad-slot--right,.ad-slot--comments{position:-webkit-sticky;position:sticky;top:0}.has-sticky .paidfor-band ~ .content__main .ad-slot--right,.has-sticky .paidfor-band ~ .content__main .ad-slot--comments{top:2.875rem}.ad-slot--right.is-sticky,.ad-slot--comments.is-sticky{width:18.75rem}.ad-slot__label{font-size:0.75rem;line-height:1.25rem;position:relative;height:1.5rem;max-height:1.5rem;background-color:#f6f6f6;padding:0 0.5rem;border-top:0.0625rem solid #dcdcdc;color:#767676;text-align:left;box-sizing:border-box;font-family:\\\\\\\"Guardian Text Sans Web\\\\\\\",\\\\\\\"Helvetica Neue\\\\\\\",Helvetica,Arial,\\\\\\\"Lucida Grande\\\\\\\",sans-serif}.ad-slot--dark .ad-slot__label{color:#dcdcdc;border-top-color:#333;background-color:transparent}.ad-slot--sky .ad-slot__label{width:10rem}.ad-slot__label--toggle{margin:0 auto}@media (max-width: 46.24em){.ad-slot__label--toggle{display:none}}.ad-slot__label.visible{visibility:initial}.ad-slot__label.hidden{visibility:hidden}.top-banner-ad-container{background-color:#f6f6f6;border-bottom:0.0625rem solid #dcdcdc;min-height:7.125rem;padding-bottom:1.125rem;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;top:0}@media (max-width: 46.24em){.top-banner-ad-container{display:none !important}}.top-banner-ad-container:not(.top-banner-ad-container--not-sticky){position:-webkit-sticky;position:sticky;z-index:1020}@media (min-width: 61.25em){.top-banner-ad-container:not(.top-banner-ad-container--not-sticky){z-index:1080}}.top-banner-ad-container--fabric{overflow:hidden}.sticky-top-banner-ad{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);contain:layout;z-index:1090;position:fixed;top:0}.sticky-top-banner-ad--animate{will-change:transform;transition:height 1s cubic-bezier(0, 0, 0, 0.985)}.ad-slot--top-banner-ad{text-align:center}@media (min-width: 81.25em){.ad-slot--top-banner-ad .ad-slot__label{margin:0}}@media (min-width: 81.25em){.has-page-skin .ad-slot--top-banner-ad{text-align:center}}.ad-slot--crossword-banner,.ad-slot--top-banner-ad-desktop{margin:0 auto;min-height:5.625rem;padding-bottom:0;text-align:left;display:block}@media (max-width: 46.24em){.ad-slot--crossword-banner,.ad-slot--top-banner-ad-desktop{display:none}}.ad-slot--crossword-banner.ad-slot--fabric>.ad-slot__label,.ad-slot--top-banner-ad-desktop.ad-slot--fabric>.ad-slot__label{box-sizing:content-box;margin-left:0.625rem;margin-right:0.625rem}@media (min-width: 30em){.ad-slot--crossword-banner.ad-slot--fabric>.ad-slot__label,.ad-slot--top-banner-ad-desktop.ad-slot--fabric>.ad-slot__label{margin-left:1.25rem;margin-right:1.25rem}}@media (min-width: 41.25em){.ad-slot--crossword-banner.ad-slot--fabric>.ad-slot__label,.ad-slot--top-banner-ad-desktop.ad-slot--fabric>.ad-slot__label{margin-left:auto;margin-right:auto;width:38.75rem}}@media (min-width: 46.25em){.ad-slot--crossword-banner.ad-slot--fabric>.ad-slot__label,.ad-slot--top-banner-ad-desktop.ad-slot--fabric>.ad-slot__label{padding-left:1.25rem;padding-right:1.25rem}}@media (min-width: 46.25em){.ad-slot--crossword-banner.ad-slot--fabric>.ad-slot__label,.ad-slot--top-banner-ad-desktop.ad-slot--fabric>.ad-slot__label{width:43.75rem}}@media (min-width: 61.25em){.ad-slot--crossword-banner.ad-slot--fabric>.ad-slot__label,.ad-slot--top-banner-ad-desktop.ad-slot--fabric>.ad-slot__label{width:58.75rem}}@media (min-width: 71.25em){.ad-slot--crossword-banner.ad-slot--fabric>.ad-slot__label,.ad-slot--top-banner-ad-desktop.ad-slot--fabric>.ad-slot__label{width:68.75rem}}@media (min-width: 81.25em){.ad-slot--crossword-banner.ad-slot--fabric>.ad-slot__label,.ad-slot--top-banner-ad-desktop.ad-slot--fabric>.ad-slot__label{width:78.75rem}}.ad-slot--crossword-banner.ad-slot--fluid,.ad-slot--top-banner-ad-desktop.ad-slot--fluid{width:100%}.ad-slot--inline,.ad-slot--container-inline,.ad-slot--container-inline.ad-slot--fluid,.ad-slot--gallery-inline,.ad-slot--liveblog-inline{width:18.75rem;margin:0.75rem auto;min-width:18.75rem;min-height:17.125rem;text-align:center}@media (min-width: 30em){.ad-slot--inline,.ad-slot--container-inline,.ad-slot--container-inline.ad-slot--fluid,.ad-slot--gallery-inline,.ad-slot--liveblog-inline{width:20rem}}@media (min-width: 46.25em){.ad-slot--inline,.ad-slot--container-inline,.ad-slot--container-inline.ad-slot--fluid,.ad-slot--gallery-inline,.ad-slot--liveblog-inline{width:auto}}.content--immersive-article .ad-slot--offset-right{clear:both}@media (min-width: 30em){.ad-slot--liveblog-inline,.ad-slot--container-inline,.ad-slot--container-inline.ad-slot--fluid{margin-top:0}}@media (min-width: 46.25em){.ad-slot--liveblog-inline,.ad-slot--container-inline,.ad-slot--container-inline.ad-slot--fluid{margin:0 0.625rem}}.ad-slot--gallery-inline{background-color:#121212;margin-left:0}@media (min-width: 30em){.ad-slot--gallery-inline{width:18.75rem}}@media (min-width: 46.25em){.ad-slot--gallery-inline{width:auto}}@media (min-width: 61.25em){.ad-slot--gallery-inline,.ad-slot--gallery-inline .ad-slot__label{text-align:left}}.ad-slot--right,.ad-slot--inline,.ad-slot--container-inline{background-color:#f6f6f6}@media (min-width: 46.25em){.ad-slot--right,.ad-slot--inline,.ad-slot--container-inline{width:18.75rem}}@media (min-width: 46.25em){.ad-slot--inline{float:right;margin-top:0.25rem;margin-left:1.25rem}}@media (min-width: 46.25em) and (max-width: 71.24em){.ad-slot--inline{clear:left}}.ad-slot--dark{background-color:#181818}.ad-slot--container-inline:not(.ad-slot--fluid):not(.ad-slot--gc):not(.ad-slot--mostpop) .ad-slot__content{margin:0 auto}@media (min-width: 46.25em){.ad-slot--container-inline:not(.ad-slot--fluid):not(.ad-slot--gc):not(.ad-slot--mostpop){position:relative;height:auto}.content-footer .ad-slot--container-inline:not(.ad-slot--fluid):not(.ad-slot--gc):not(.ad-slot--mostpop){width:18.75rem}.linkslist-container .ad-slot--container-inline:not(.ad-slot--fluid):not(.ad-slot--gc):not(.ad-slot--mostpop){position:absolute;top:0;right:0}.ad-slot--container-inline:not(.ad-slot--fluid):not(.ad-slot--gc):not(.ad-slot--mostpop) .ad-slot__label{padding:0 1.25rem}.ad-slot--container-inline:not(.ad-slot--fluid):not(.ad-slot--gc):not(.ad-slot--mostpop) .ad-slot__content{position:absolute;right:0;bottom:0;left:0;top:1.5rem;height:15.625rem}}@media (min-width: 46.25em){.ad-slot--liveblog-inline:not(.ad-slot--outstream){padding-bottom:1.5rem}.ad-slot--liveblog-inline:not(.ad-slot--outstream)>div:not(.ad-slot__label){width:18.75rem;margin-left:auto;margin-right:auto}}.ad-slot--liveblog-inline{background-color:#ededed}.ad-slot--liveblog-inline .ad-slot__label{color:#767676;border-top-color:#dcdcdc}.ad-slot--mpu-banner-ad{display:none;width:18.75rem;min-height:17.125rem;margin-bottom:1.5rem}@media (min-width: 61.25em){.ad-slot--mpu-banner-ad{display:block}}.ad-slot--adfeature{background-color:#dcdcdc}.ad-slot--outstream{background:transparent;height:auto}@media (min-width: 20em){.ad-slot--outstream{width:18.75rem;min-height:auto}}@media (min-width: 41.25em){.ad-slot--outstream{float:none;width:38.75rem;margin:0.25rem 0 0}.ad-slot--outstream>div.ad-slot__label{margin-left:2.1875rem;margin-right:2.1875rem}}@media (min-width: 81.25em){.has-page-skin .ad-slot--commercial-component,.has-page-skin .ad-slot--commercial-component-high{margin-left:auto;margin-right:auto;width:61.25rem}}.fc-container--commercial .ad-slot--commercial-component-high{margin-bottom:1.5rem}.ad-slot--im{float:left;width:8.125rem}@media (min-width: 30em){.ad-slot--im{width:13.75rem}}.ad-slot--im:not(.ad-slot--rendered){width:0;height:0}.ad-slot--im.ad-slot--rendered{margin:0.3125rem 0.625rem 0.375rem 0}@media (min-width: 30em){.ad-slot--im.ad-slot--rendered{margin-bottom:0.75rem;margin-right:1.25rem}}@media (min-width: 30em){.ad-slot--inline-book,.ad-slot--books-inline{width:8.75rem}}@media (min-width: 46.25em) and (max-width: 71.24em){.fc-container--sponsored .fc-container:first-child .fc-container__header+.fc-container__body,.fc-container--paid-content .fc-container:first-child .fc-container__header+.fc-container__body,.fc-container--sponsored .fc-container__header+.fc-container__body,.fc-container--paid-content .fc-container__header+.fc-container__body{margin-top:4.875rem}}.ad-slot--page-skin{height:0;overflow:hidden}@media (min-width: 20em) and (max-width: 81.24em){.has-page-skin{background-image:none !important}}.ad-slot--fluid{min-height:15.625rem;line-height:0.625rem;padding:0;margin:0}.ad-slot--fluid:not(.ad-slot--im):not(.ad-slot--carrot):not(.ad-slot--offset-right){width:100%}@media (min-width: 20em) and (max-width: 29.99em){.ad-slot--fluid.ad-slot--liveblog-inline{margin-left:-0.625rem;margin-right:-0.625rem}}@media (min-width: 30em) and (max-width: 46.24em){.ad-slot--fluid.ad-slot--liveblog-inline{margin-left:-1.25rem;margin-right:-1.25rem}}.ad-slot--merchandising,.ad-slot--merchandising-high{min-height:15.625rem}.ad-slot--carrot{min-height:0;padding:0;margin:0.3125rem 1.25rem 0.75rem 0;float:left;clear:both}@media (max-width: 29.99em){.ad-slot--carrot{width:8.125rem;margin-bottom:0.375rem;margin-right:0.625rem}}@media (min-width: 30em){.ad-slot--carrot{width:13.75rem}}@media (min-width: 81.25em){.ad-slot--carrot{margin-left:-15rem}}.ad-slot--gc .ad-slot__label{display:none}.ad-slot--fabric-v1{min-height:15.625rem}.ad-slot--fabric{overflow:hidden;width:auto;min-height:15.625rem;padding-left:0;padding-right:0;padding-bottom:0}@media (min-width: 81.25em){.ad-slot--fabric.ad-slot--top-banner-ad-desktop{margin-left:0}}.ad-slot--fabric-v1,.ad-slot--fluid250{width:auto;margin-left:0;padding:0}.ad-slot--fabric-v1 .ad-slot__label,.ad-slot--fluid250 .ad-slot__label{display:none}@media (min-width: 61.25em){.ad-slot--fluid250{min-height:15.625rem}}@media (min-width: 61.25em){.ad-slot--offset-right{margin-right:-20rem}}@media (min-width: 81.25em){.ad-slot--offset-right{margin-right:-25rem}}.ad-slot--offset-right.ad-slot--sky{width:10rem;min-width:10rem}.ad-slot--survey{height:0}.ad-slot--unruly{width:100%}@media (min-width: 46.25em){.ad-slot--unruly{float:none;margin-left:0}}.mobilesticky-container{position:fixed;bottom:0;width:20rem;margin:0 auto;right:0;left:0;z-index:1010}@media (min-width: 41.25em){.mobilesticky-container{display:none}}.ad-slot__close-button{display:none;position:absolute;right:0.1875rem;top:0.1875rem;padding:0;border:0;height:1.3125rem;width:1.3125rem;background-color:transparent}.ad-slot__close-button svg{height:0.75rem;width:0.75rem;stroke:#121212;fill:#121212;stroke-linecap:round;stroke-width:0;text-align:center}.ad-slot--mobile-sticky .ad-slot__label .ad-slot__close-button{display:block}.ad-slot__close-button__x{stroke:#121212;fill:transparent;stroke-linecap:round;stroke-width:2;text-align:center}.ad-slot--collapse{display:none}.bz-custom-container ~ #bannerandheader>.top-banner-ad-container{display:none}@media (max-width: 61.24em){.podcast__secondary .ad-slot--right{display:none}}.ad-slot--interscroller{height:85vh;margin-bottom:0.75rem;position:relative}.media:after,.media:before,.media__body:after,.media__body:before{content:'';display:table}.media:after,.media__body:after{clear:both}.media__img{margin-right:0.9375rem}.media__img img{display:block}.media__container--hidden{display:none !important}.media__placeholder--active{display:block;position:relative}.media__container--active{display:block}.media__placeholder--hidden{display:none !important}.page-header{font-size:1.25rem;line-height:1.4375rem;font-family:\\\\\\\"Guardian Egyptian Web\\\\\\\",Georgia,serif;font-weight:normal;padding:0 0 1rem;margin:0 0.625rem 0.25rem;border-bottom:0.0625rem dotted #dcdcdc}@media (min-width: 30em){.page-header{margin-left:1.25rem;margin-right:1.25rem}}.page-sub-header{font-size:1.0625rem;line-height:1.25rem;font-family:\\\\\\\"Guardian Egyptian Web\\\\\\\",Georgia,serif;font-weight:900;padding:0.125rem 0 0.25rem;margin-bottom:0.75rem}.no-indent-article__zone .page-sub-header,.monocolumn-wrapper .page-sub-header,.fc-container__inner .page-sub-header{margin-left:0;margin-right:0}.page-sub-header>a{display:block}.message{padding:0.6875rem;background-color:#ffffee}.rounded-icon{border-radius:62.5rem;display:inline-block;vertical-align:middle;position:relative}.centered-icon svg{top:0;bottom:0;right:0;left:0;margin:auto;position:absolute}.rich-link{background-color:#ededed;margin:0;position:relative;overflow:hidden}.rich-link a{color:inherit}.rich-link .u-faux-block-link--hover{background-color:#ededed}.rich-link__title{font:inherit;line-height:inherit;padding:0}.rich-link .rich-link__header{font-size:1.25rem;line-height:1.4375rem;font-family:\\\\\\\"Guardian Egyptian Web\\\\\\\",Georgia,serif;font-weight:normal;font-weight:500;padding:0.25rem 0.3125rem 0.5em;box-sizing:border-box;min-height:2.25rem}.rich-link__read-more{padding-left:0.3125rem}.rich-link__arrow{display:inline-block}.rich-link__read-more-text{font-size:0.875rem;line-height:1.0625rem;font-family:\\\\\\\"Guardian Egyptian Web\\\\\\\",Georgia,serif;font-weight:normal;display:inline-block;height:1.875rem;line-height:1.625rem;padding-left:0.125rem;vertical-align:top;font-weight:500}.rich-link__link .u-faux-block-link__overlay{z-index:2}.rich-link__container{position:relative}.rich-link__container:before{background-color:#00b2ff;content:'';position:absolute;top:0;left:0;right:0;height:0.0625rem;z-index:2}.rich-link__container:after{content:'';display:table;clear:both}.element-rich-link{float:left;margin:0.3125rem 1.25rem 0.75rem 0;clear:both}@media (min-width: 61.25em){.element-rich-link{clear:left}}@media (max-width: 29.99em){.element-rich-link{width:8.125rem;margin-bottom:0.375rem;margin-right:0.625rem}.element-rich-link .rich-link__header{font-size:0.875rem;line-height:1.0625rem}}@media (min-width: 30em){.element-rich-link{width:13.75rem}}@media (min-width: 71.25em){.element-rich-link{margin-left:-10rem}.element-rich-link.element--supporting{width:18.75rem}}@media (min-width: 81.25em){.element-rich-link{margin-left:-15rem}.element-rich-link.element--supporting{width:23.75rem}}.reveal-caption{position:absolute;right:0.3125rem;width:2rem;height:2rem;z-index:1;background-color:rgba(18,18,18,0.6);border-radius:50%}.reveal-caption:hover{background-color:#121212}.reveal-caption--img{bottom:0.375rem}.caption--main{max-width:33.75rem;padding:0.5rem 0.625rem 1.5rem}@media (min-width: 46.25em){.caption--main{max-width:38.75rem;padding-left:0;padding-right:0}}@media (min-width: 61.25em){.caption--main{max-width:none}}@media (max-width: 46.24em){.caption--main.caption--img{position:absolute;left:0;right:0;bottom:0;background:rgba(18,18,18,0.8);color:#ffffff;display:none;padding:0.375rem 2.5rem 0.75rem 0.625rem;max-width:100%}.caption--main.caption--img a{color:currentColor}}@media (max-width: 46.24em){.caption--main.caption--video,.content__main-column--image .caption--main{padding-bottom:0}}@media (max-width: 46.24em){.reveal-caption__checkbox:checked ~ .caption--main{display:block}.reveal-caption__checkbox:checked ~ .reveal-caption{background-color:#121212}.reveal-caption__checkbox:checked ~ .reveal-caption:hover{background-color:#121212}.reveal-caption__checkbox:focus ~ .reveal-caption{background-color:#121212}}.linkslist-container{position:relative;margin:0 !important}@media (min-width: 46.25em){.linkslist-container{margin-top:0.5625rem}}.linkslist-container.tone-feature:before{background:#fec8d3}.linkslist-container.tone-comment:before{background:#767676}.linkslist-container.tone-media:before{background:#ffe500}.linkslist-container.show-more--hidden,.linkslist-container.show-more--hidden:before{display:none}.linkslist{margin-top:0;width:100%}@media (min-width: 46.25em) and (max-width: 61.24em){.linkslist .fc-slice__item{width:50%}.linkslist .fc-slice__item:nth-child(2n+1){clear:both}.linkslist .fc-slice__item:nth-child(2n+1):before{border:0}.linkslist .fc-slice__item:nth-child(2n+1):nth-last-child(-n+4),.linkslist .fc-slice__item:nth-child(2n+2):nth-last-child(-n+3){padding-bottom:0}.linkslist .fc-slice__item:nth-child(2n+1):nth-last-child(-n+2),.linkslist .fc-slice__item:nth-child(2n+2):last-child{padding-top:0.75rem}}@media (min-width: 61.25em){.linkslist .fc-slice__item{width:33.33333%}.linkslist .fc-slice__item:nth-child(3n+1){clear:both}.linkslist .fc-slice__item:nth-child(3n+1):before{border:0}.linkslist .fc-slice__item:nth-child(3n+1):nth-last-child(-n+6),.linkslist .fc-slice__item:nth-child(3n+2):nth-last-child(-n+5),.linkslist .fc-slice__item:nth-child(3n+3):nth-last-child(-n+4){padding-bottom:0}.linkslist .fc-slice__item:nth-child(3n+1):nth-last-child(-n+3),.linkslist .fc-slice__item:nth-child(3n+2):nth-last-child(-n+2),.linkslist .fc-slice__item:nth-child(3n+3):last-child{padding-top:0.75rem}}@media (min-width: 46.25em){.linkslist .fc-slice__item{-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-webkit-flex-basis:50%;-ms-flex-preferred-size:50%;flex-basis:50%}}@media (min-width: 61.25em){.linkslist .fc-slice__item{-webkit-flex-basis:33.33333%;-ms-flex-preferred-size:33.33333%;flex-basis:33.33333%}}.linkslist .item--has-cutout{padding-bottom:1.875rem}.fc-container__inner,.facia-container__inner,.fc-container__pagination,.index-page-header{overflow:hidden;position:relative;margin-left:0.625rem;margin-right:0.625rem}@media (min-width: 30em){.fc-container__inner,.facia-container__inner,.fc-container__pagination,.index-page-header{margin-left:1.25rem;margin-right:1.25rem}}@media (min-width: 46.25em){.fc-container__inner,.facia-container__inner,.fc-container__pagination,.index-page-header{margin-left:auto;margin-right:auto;padding-left:1.25rem;padding-right:1.25rem;width:38.75rem}}@media (min-width: 46.25em){.fc-container__inner,.facia-container__inner,.fc-container__pagination,.index-page-header{width:43.75rem}}@media (min-width: 61.25em){.fc-container__inner,.facia-container__inner,.fc-container__pagination,.index-page-header{width:58.75rem}}@media (min-width: 71.25em){.fc-container__inner,.facia-container__inner,.fc-container__pagination,.index-page-header{width:68.75rem}}@media (min-width: 81.25em){.fc-container__inner,.facia-container__inner,.fc-container__pagination,.index-page-header{width:78.75rem}}@media (min-width: 46.25em){.fc-container__inner--full-span,.facia-container__inner--full-span{width:46.25rem}}@media (min-width: 61.25em){.fc-container__inner--full-span,.facia-container__inner--full-span{width:61.25rem}}@media (min-width: 71.25em){.fc-container__inner--full-span,.facia-container__inner--full-span{width:71.25rem}}@media (min-width: 81.25em){.fc-container__inner--full-span,.facia-container__inner--full-span{width:81.25rem}}@media (min-width: 46.25em){.fc-container__inner--full-span,.facia-container__inner--full-span{padding-left:0;padding-right:0}}.js-on .js-hidden,.js-off .js-visible,.is-modern .modern-hidden,.is-not-modern .modern-visible{display:none}.is-off{display:none}.current{font-weight:bold}.is-on{display:block}.has-cursor{cursor:pointer}.maxed{width:100%}.shut>.panel{overflow:hidden;position:relative;max-height:0;padding-top:0}.update{float:right}.is-updating{display:none;width:2.5rem;height:1.25rem;background-size:100%;margin-top:1.125rem}.is-updating.is-active{display:inline-block}.is-scroll-blocked{overflow:hidden}.is-updating-cursor{cursor:wait}body.is-updating-js .u-block-during-update{pointer-events:none}.is-updating--dark{width:2.25rem;height:0.75rem}.is-live-icon{padding:0.0625rem 0.25rem 0.125rem;margin:0.0625rem 0.1875rem 0 0;font-size:0.625rem;font-style:normal;line-height:1;color:#ffffff;background-color:#ec1c1c;display:inline-block}.id--signed-out .sign-in-required{display:none}.is-sticky{position:fixed;top:0}.l-list{width:100%}@media (min-width: 46.25em){.l-list{display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}}.l-list__item{float:left;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;-webkit-flex-basis:100%;-ms-flex-preferred-size:100%;flex-basis:100%}@media (min-width: 46.25em){.l-row--cols-2 .l-row__item--span-1{width:50%;float:left;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto}}@media (min-width: 46.25em){.l-row--cols-2 .l-row__item--span-2{width:100%;float:left;-webkit-flex:2 1 auto;-ms-flex:2 1 auto;flex:2 1 auto}}@media (min-width: 46.25em){.l-row--cols-2 .l-row__item--span-3{width:150%;float:left;-webkit-flex:3 1 auto;-ms-flex:3 1 auto;flex:3 1 auto}}@media (min-width: 46.25em){.l-row--cols-2 .l-row__item--span-4{width:200%;float:left;-webkit-flex:4 1 auto;-ms-flex:4 1 auto;flex:4 1 auto}}@media (min-width: 46.25em){.l-row--cols-2 .l-row__item--span-5{width:250%;float:left;-webkit-flex:5 1 auto;-ms-flex:5 1 auto;flex:5 1 auto}}@media (min-width: 46.25em){.l-row--cols-3 .l-row__item--span-1{width:33.33333%;float:left;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto}}@media (min-width: 46.25em){.l-row--cols-3 .l-row__item--span-2{width:66.66667%;float:left;-webkit-flex:2 1 auto;-ms-flex:2 1 auto;flex:2 1 auto}}@media (min-width: 46.25em){.l-row--cols-3 .l-row__item--span-3{width:100%;float:left;-webkit-flex:3 1 auto;-ms-flex:3 1 auto;flex:3 1 auto}}@media (min-width: 46.25em){.l-row--cols-3 .l-row__item--span-4{width:133.33333%;float:left;-webkit-flex:4 1 auto;-ms-flex:4 1 auto;flex:4 1 auto}}@media (min-width: 46.25em){.l-row--cols-3 .l-row__item--span-5{width:166.66667%;float:left;-webkit-flex:5 1 auto;-ms-flex:5 1 auto;flex:5 1 auto}}@media (min-width: 46.25em){.l-row--cols-4 .l-row__item--span-1{width:25%;float:left;-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto}}@media (min-width: 46.25em){.l-row--cols-4 .l-row__item--span-2{width:50%;float:left;-webkit-flex:2 1 auto;-ms-flex:2 1 auto;flex:2 1 auto}}@media (min-width: 46.25em){.l-row--cols-4 .l-row__item--span-3{width:75%;float:left;-webkit-flex:3 1 auto;-ms-flex:3 1 auto;flex:3 1 auto}}@media (min-width: 46.25em){.l-row--cols-4 .l-row__item--span-4{width:100%;float:left;-webkit-flex:4 1 auto;-ms-flex:4 1 auto;flex:4 1 auto}}@media (min-width: 46.25em){.l-row--cols-4 .l-row__item--span-5{width:125%;float:left;-webkit-flex:5 1 auto;-ms-flex:5 1 auto;flex:5 1 auto}}@media (min-width: 46.25em){.l-list--columns-1 .l-list__item{width:100%;-webkit-flex-basis:100%;-ms-flex-preferred-size:100%;flex-basis:100%}.l-list--columns-1 .l-list__item:nth-child(1n+1){clear:both}.l-list--columns-1 .l-list__item:nth-child(1n+1):before{border:0}.l-list--columns-1 .l-list__item:nth-last-child(1):nth-child(1n+1),.l-list--columns-1 .l-list__item:nth-last-child(1):nth-child(1n+1) ~ .l-list__item{padding-bottom:0}}@media (min-width: 46.25em){.l-list--columns-2 .l-list__item{width:50%;-webkit-flex-basis:50%;-ms-flex-preferred-size:50%;flex-basis:50%}.l-list--columns-2 .l-list__item:nth-child(2n+1){clear:both}.l-list--columns-2 .l-list__item:nth-child(2n+1):before{border:0}.l-list--columns-2 .l-list__item:nth-last-child(2):nth-child(2n+1),.l-list--columns-2 .l-list__item:nth-last-child(2):nth-child(2n+1) ~ .l-list__item{padding-bottom:0}}@media (min-width: 46.25em){.l-list--columns-3 .l-list__item{width:33.33333%;-webkit-flex-basis:33.33333%;-ms-flex-preferred-size:33.33333%;flex-basis:33.33333%}.l-list--columns-3 .l-list__item:nth-child(3n+1){clear:both}.l-list--columns-3 .l-list__item:nth-child(3n+1):before{border:0}.l-list--columns-3 .l-list__item:nth-last-child(3):nth-child(3n+1),.l-list--columns-3 .l-list__item:nth-last-child(3):nth-child(3n+1) ~ .l-list__item{padding-bottom:0}}@media (min-width: 46.25em){.l-list--columns-4 .l-list__item{width:25%;-webkit-flex-basis:25%;-ms-flex-preferred-size:25%;flex-basis:25%}.l-list--columns-4 .l-list__item:nth-child(4n+1){clear:both}.l-list--columns-4 .l-list__item:nth-child(4n+1):before{border:0}.l-list--columns-4 .l-list__item:nth-last-child(4):nth-child(4n+1),.l-list--columns-4 .l-list__item:nth-last-child(4):nth-child(4n+1) ~ .l-list__item{padding-bottom:0}}.fc-container .fc-container__inner{border-top:0.0625rem solid #dcdcdc}.fc-container,.facia-container{position:relative;padding-bottom:0.75rem;margin-bottom:0}.fc-container:after,.fc-container:before,.facia-container:after,.facia-container:before{content:'';display:table}.fc-container:after,.facia-container:after{clear:both}@media (min-width: 81.25em){.has-page-skin .fc-container,.has-page-skin .facia-container{overflow:hidden;margin-left:auto;margin-right:auto;width:61.25rem}}.fc-container--commercial{padding-bottom:0}.fc-container__inner,.facia-container__inner{padding-top:0.1875rem}@media (min-width: 46.25em){.fc-container__inner,.facia-container__inner{padding-top:0.375rem}}@media (min-width: 81.25em){.has-page-skin .fc-container__inner,.has-page-skin .facia-container__inner{width:58.75rem}}@media (min-width: 81.25em){.has-page-skin .fc-container__pagination{width:58.75rem}}.fc-container--rolled-up .fc-container--rolled-up-hide{display:none}.fc-slice-wrapper{padding-top:0.00063rem;margin:0 -0.625rem}.show-more--hidden .fc-slice-wrapper{display:none}.fc-container__header,.container__header{position:relative}@media (min-width: 46.25em) and (max-width: 71.24em){.fc-container--paid-for .fc-container__header,.fc-container[data-sponsorship] .fc-container__header,.fc-container[data-sponsorship] .fc-container:first-child .fc-container__header,.fc-container--paid-for .container__header,.fc-container[data-sponsorship] .container__header,.fc-container[data-sponsorship] .fc-container:first-child .container__header{float:left}}@media (min-width: 46.25em) and (max-width: 61.24em){.fc-container--paid-for .fc-container__header,.fc-container[data-sponsorship] .fc-container__header,.fc-container[data-sponsorship] .fc-container:first-child .fc-container__header,.fc-container--paid-for .container__header,.fc-container[data-sponsorship] .container__header,.fc-container[data-sponsorship] .fc-container:first-child .container__header{width:50%;padding-right:0.625rem}}@media (min-width: 61.25em) and (max-width: 71.24em){.fc-container--paid-for .fc-container__header,.fc-container[data-sponsorship] .fc-container__header,.fc-container[data-sponsorship] .fc-container:first-child .fc-container__header,.fc-container--paid-for .container__header,.fc-container[data-sponsorship] .container__header,.fc-container[data-sponsorship] .fc-container:first-child .container__header{width:66%;padding-right:0.625rem}}@media (min-width: 71.25em){.fc-container__header,.container__header{float:left;width:8.75rem}}@media (min-width: 81.25em){.fc-container__header,.container__header{width:13.75rem}.has-page-skin .fc-container__header,.has-page-skin .container__header{width:auto;float:none}}@media (max-width: 71.24em){.fc-container__header .fc-container__header__title{float:left;padding-right:0.3125rem}.fc-container--tag .fc-container__header{border-bottom:0}}@media (min-width: 46.25em) and (max-width: 71.24em){.fc-container--tag .fc-container__header{float:left;clear:left}}.fc-container__header__title,.fc-container__header__title>h2,.fc-container__title__text,.fc-container__header__title--sticky,.container__title{font-size:1.5rem;line-height:1.6875rem;font-family:\\\\\\\"Guardian Egyptian Web\\\\\\\",Georgia,serif;font-weight:normal;font-weight:700;position:relative;padding-bottom:0.25rem;color:#121212}@media (min-width: 81.25em){.has-page-skin .fc-container__header__title,.has-page-skin .fc-container__header__title>h2,.has-page-skin .fc-container__title__text,.has-page-skin .fc-container__header__title--sticky,.has-page-skin .container__title{float:left;width:18.75rem}}.has-page-skin .fc-container__header__title:after,.has-page-skin .fc-container__header__title>h2:after,.has-page-skin .fc-container__title__text:after,.has-page-skin .fc-container__header__title--sticky:after,.has-page-skin .container__title:after{display:none}.fc-container__header__title a,.fc-container__header__title>h2 a,.fc-container__title__text a,.fc-container__header__title--sticky a,.container__title a{color:inherit}.fc-container__header__title a:hover,.fc-container__header__title>h2 a:hover,.fc-container__title__text a:hover,.fc-container__header__title--sticky a:hover,.container__title a:hover{border-bottom:0.0625rem solid #c70000}.fc-container__header__title a:hover .inline-icon,.fc-container__header__title>h2 a:hover .inline-icon,.fc-container__title__text a:hover .inline-icon,.fc-container__header__title--sticky a:hover .inline-icon,.container__title a:hover .inline-icon{fill:#00b2ff}.fc-container__header__title a .inline-icon,.fc-container__header__title>h2 a .inline-icon,.fc-container__title__text a .inline-icon,.fc-container__header__title--sticky a .inline-icon,.container__title a .inline-icon{fill:#005689;position:relative;height:.7em;width:1em}.fc-container__header__title:after{content:'';display:none;position:absolute;height:1.875rem;width:0.0625rem;background-color:#dcdcdc;right:-0.6875rem;top:-0.375rem}@media (min-width: 71.25em){.fc-container__header__title:after{display:block}}.fc-container__header__title .has-page-skin:after{display:none}@media (min-width: 71.25em){.fc-container__title__text:after{display:none}}.fc-container__header__title--sticky{display:block;width:100%;text-align:left;margin-left:-1.25rem;padding:0.375rem 0 0 1.25rem;background:#ffffff;border:0}.fc-container__header__title--sticky button{color:#dcdcdc;font-weight:500;text-align:left;background:#ffffff;margin:0;padding:0;border:0;cursor:pointer}.fc-container__header__title--sticky:last-child{padding-bottom:1.5rem}.fc-container__header__title--stickies{display:none;visibility:hidden;margin-top:6.25rem}.has-page-skin .fc-container__header__title--stickies{display:none}.fc-container__header__title--stickies.fixed{position:fixed;bottom:0;z-index:99}@media (min-width: 71.25em){.fc-container__header__title--stickies{display:block;width:8.75rem}}@media (min-width: 81.25em){.fc-container__header__title--stickies{width:13.75rem}}.fc-container__header__image{display:table-cell;margin:0 1.25rem 0 0;overflow:hidden;float:left}@media (min-width: 71.25em){.fc-container__header__image{float:none;display:block;margin:0 0 0.75rem}}.fc-container__header__image img{display:block;width:5rem}@media (min-width: 61.25em){.fc-container__header__image img{width:6.25rem}}.fc-container__header__description{font-size:1.0625rem;line-height:1.25rem;font-family:\\\\\\\"Guardian Egyptian Web\\\\\\\",Georgia,serif;font-weight:normal;padding-bottom:0.375rem;color:#767676;clear:left;font-weight:500}@media (min-width: 46.25em){.fc-container__header__description{padding-bottom:0.75rem}}@media (min-width: 71.25em){.fc-container__header__description{width:8.75rem;float:left;margin-top:0;word-break:normal;overflow-wrap:anywhere}}@media (min-width: 81.25em){.fc-container__header__description{width:13.75rem}}.fc-container__header__description a{color:#333}@media (max-width: 71.24em){.fc-container__header__social__action{position:absolute;right:0;top:0}.fc-container__header__social__action+.fc-container__header__social__action{display:none}}@media (min-width: 71.25em){.fc-container__header__social__action{border-top:0.0625rem dotted #dcdcdc;padding-top:0.375rem;margin-top:0.75rem;width:100%}.fc-container__header__social__action+.fc-container__header__social__action{border-top:0;margin-top:0;padding-top:0}}.fc-container__header__description--image{vertical-align:middle;display:table-cell}@media (min-width: 61.25em){.fc-container__header__description--image{max-width:33.75rem}}@media (min-width: 71.25em){.fc-container__header__description--image{display:block;height:auto;clear:both}}.fc-today{font-size:1.0625rem;line-height:1.25rem;font-family:\\\\\\\"Guardian Egyptian Web\\\\\\\",Georgia,serif;font-weight:normal;line-height:1rem;font-weight:600;display:none;margin:0.25rem 0 0.75rem}@media (min-width: 46.25em){.fc-today{display:block}}.fc-today .fc-today__sub{color:#c70000}@media (min-width: 81.25em){.has-page-skin .fc-today .fc-today__sub{border-top:0;margin-top:0}}@media (min-width: 71.25em){.fc-today__sub{display:block}}@media (min-width: 81.25em){.has-page-skin .fc-today__sub{display:inline}}@media (min-width: 46.25em){.fc-show-more--mobile-only .button--show-more{display:none}}@media (max-width: 46.24em){.js-on .fc-show-more--hidden .fc-show-more--hide-on-mobile{display:none !important}}.js-on .fc-show-more--hidden .fc-show-more--hide{display:none !important}.fc-container__updated{font-size:0.875rem;line-height:1.0625rem;font-family:\\\\\\\"Guardian Egyptian Web\\\\\\\",Georgia,serif;font-weight:normal;display:block;position:absolute;right:0;bottom:0;padding-bottom:0.375rem;color:#767676}@media (min-width: 71.25em){.fc-container__updated{position:static;margin-top:1.25rem;border-top:0.0625rem dotted #dcdcdc;padding-top:0.1875rem}}@media (min-width: 81.25em){.has-page-skin .fc-container__updated{position:absolute;bottom:0;border-top:0}}.fc-timestamp{display:inline-block}.fc-container__body,.container__body{padding-top:0.375rem;padding-bottom:0.75rem;opacity:1;transition:opacity .25s linear}@media (min-width: 46.25em){.fc-container__body,.container__body{padding-top:0.1875rem}}@media (min-width: 71.25em){.fc-container__body,.container__body{margin-left:10rem}}@media (min-width: 81.25em){.fc-container__body,.container__body{margin-left:15rem;width:58.75rem}.has-page-skin .fc-container__body,.has-page-skin .container__body{margin-left:0;clear:left}}@media (max-width: 71.24em){.fc-container__body,.container__body{clear:left}}@media (min-width: 71.25em) and (max-width: 81.24em){.fc-container--will-have-toggle .fc-container__body,.fc-container--has-toggle .fc-container__body,.fc-container--will-have-toggle .container__body,.fc-container--has-toggle .container__body{padding-top:2.25rem}}.fc-container__body--is-hidden{opacity:0;transition:opacity .25s linear}.fc-container__toggle{font-size:0.875rem;line-height:1.25rem;font-family:\\\\\\\"Guardian Text Sans Web\\\\\\\",\\\\\\\"Helvetica Neue\\\\\\\",Helvetica,Arial,\\\\\\\"Lucida Grande\\\\\\\",sans-serif;background-color:transparent;position:absolute;top:0.25rem;right:0;border:0;padding:0;color:#767676;text-align:right;min-width:3.75rem}.fc-container__toggle:hover,.fc-container__toggle:focus{color:#121212}[data-component='headlines'] .fc-container__toggle{display:none}@media (min-width: 71.25em){.fc-container__toggle{left:68.75rem;-webkit-transform:translateX(-100%);transform:translateX(-100%)}}@media (min-width: 81.25em){.fc-container__toggle{left:78.75rem}.has-page-skin .fc-container__toggle{left:auto}}.fc-container--media .fc-container__inner,.fc-container--media .fc-slice__item+.fc-slice__item:before{border-color:#333}.fc-container--media .fc-container__header__title{color:#ededed}@media (max-width: 46.24em){.fc-container--media .fc-item__media-wrapper{padding-left:0 !important}}.fc-date-headline{font-size:1.0625rem;line-height:1.25rem;font-family:\\\\\\\"Guardian Egyptian Web\\\\\\\",Georgia,serif;font-weight:normal;color:#121212;display:block;padding-bottom:0.375rem}.fc-container--tag{padding-bottom:0}.fc-container--tag .fc-container__inner{border-top:0.0625rem solid #dcdcdc}.fc-trending-topics{border-top:0 !important}.facia-page,.index-page{background-color:#ffffff}.index-page-header{padding-top:0.375rem;padding-bottom:0.75rem}.has-page-skin .index-page-header{width:58.75rem}.index-page-header__content{width:100%}@media (min-width: 81.25em){.index-page-header__content{width:73.75rem}.has-page-skin .index-page-header__content{width:100%}}.index-page-header__title{display:block;line-height:1.25rem;font-size:1.25rem;line-height:1.4375rem;font-family:\\\\\\\"Guardian Egyptian Web\\\\\\\",Georgia,serif;font-weight:900}.index-page-header__title,.index-page-header__title a{color:#121212}@media (min-width: 71.25em){.index-page-header__title{float:left;width:8.75rem;margin-right:1.25rem}}@media (min-width: 81.25em){.index-page-header__title{width:13.75rem}.has-page-skin .index-page-header__title{float:none}}@media (min-width: 71.25em) and (max-width: 81.24em){.index-page-header__title{font-size:1.25rem;line-height:1.5rem}}.index-page-header__description{font-size:1.0625rem;line-height:1.25rem;font-family:\\\\\\\"Guardian Egyptian Web\\\\\\\",Georgia,serif;font-weight:normal;color:#767676}@media (min-width: 71.25em){.index-page-header__description{float:left}}@media (min-width: 81.25em){.has-page-skin .index-page-header__description{float:none}}@media (min-width: 46.25em){.index-page-header__description{width:50%}}.index-page-header__image-wrapper{overflow:hidden;float:right}.index-page-header__image{display:block;float:right;height:5rem}@media (min-width: 61.25em){.index-page-header__image{height:6.25rem}}.index-page-header__image-wrapper--contributor-circle{border-radius:62.5rem}@media (max-width: 61.24em){.fc-container--lazy-load{display:none}.is-not-modern .fc-container--lazy-load{display:block}}.gallery__most-popular h2.fc-container__title__text{color:#dcdcdc}.gallery__most-popular h2.fc-container__title__text:hover{text-decoration:underline}.gallery__most-popular h2.fc-container__title__text:after{display:none}.fc-aus-territory__container{padding:0 0.625rem 1.5rem}@media (min-width: 41.25em){.fc-aus-territory__container{-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start}}@media (min-width: 46.25em){.fc-aus-territory__container{padding:0 0 1.5rem}}.fc-aus-territory__accordion-header{display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;border:0;background-color:transparent;padding:0}@media (min-width: 41.25em){.fc-aus-territory__accordion-header{-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start}}.fc-aus-territory__accordion-header__headline{font-size:1.0625rem;line-height:1.25rem;font-family:\\\\\\\"Guardian Egyptian Web\\\\\\\",Georgia,serif;font-weight:normal;line-height:1.625rem;font-weight:bold;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex}.fc-aus-territory__accordion-arrow{display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;width:1.5625rem;height:0.9375rem;margin-left:0.3125rem}.fc-aus-territory__body__accordion-body{font-size:1rem;line-height:1.375rem;font-family:\\\\\\\"Guardian Text Sans Web\\\\\\\",\\\\\\\"Helvetica Neue\\\\\\\",Helvetica,Arial,\\\\\\\"Lucida Grande\\\\\\\",sans-serif;margin-top:0.375rem;margin-bottom:0.75rem}.fc-aus-territory__body__accordion-body--bold{font-weight:bold}@media (min-width: 41.25em){.fc-aus-territory__body__accordion-body{max-width:30.9375rem}}@media (min-width: 46.25em){.fc-aus-territory__body__accordion-body{max-width:41.25rem}}.fc-aus-territory__territory-button{font-size:1.125rem;line-height:1.125rem;font-family:\\\\\\\"Guardian Text Sans Web\\\\\\\",\\\\\\\"Helvetica Neue\\\\\\\",Helvetica,Arial,\\\\\\\"Lucida Grande\\\\\\\",sans-serif;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;background-color:#ffffff;border-radius:0.3125rem;margin-top:0.375rem;height:2.375rem;border:0.125rem solid #707070;margin-right:0}@media (min-width: 41.25em){.fc-aus-territory__territory-button{width:10.3125rem;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;margin-top:0.75rem;margin-right:0.1875rem}}.fc-aus-territory__territory-button--secondary{border:0;padding:0}@media (min-width: 41.25em){.fc-aus-territory__territory-button--secondary{width:auto;margin-top:0.375rem}}@media (min-width: 46.25em){.fc-aus-territory__territory-button--secondary{width:10.3125rem;margin-top:0.75rem}}.fc-aus-territory__territory-button--selected{background-color:#dcdcdc;border:0.25rem solid #121212}.fc-container--video{padding-bottom:0;margin-bottom:0.75rem}.fc-container--video .gs-container{background-color:#121212}.fc-container--video .fc-container__inner{border-top:0}.fc-container--video .fc-container__toggle{color:#dcdcdc}.fc-container--video .fc-container__toggle:hover,.fc-container--video .fc-container__toggle:focus{color:#fff}.fc-container--video .fc-item__image-container{display:block}.fc-container--video .u-responsive-ratio{padding-bottom:56.3%}.fc-container--video .gu-media-wrapper .vjs-paused.vjs-has-started .vjs-control-bar{bottom:-3.75rem}@media (min-width: 61.25em){.fc-container--video .vjs-big-play-button{display:none}}.fc-container--video .media__container--hidden{display:block !important;position:absolute;top:0;left:0;right:0;bottom:0;pointer-events:none;z-index:2}.fc-container--video .media__container--hidden video{display:none}.fc-container--video .gu-media-wrapper{background-color:transparent}@media (min-width: 61.25em){.fc-container--video .fc-item__video-fallback,.fc-container--video .gu-media{opacity:.3;transition:opacity .4s ease-out}}.fc-container--video .treats__treat{background-color:transparent;border-color:rgba(255,255,255,0.3)}.fc-container--video .treats__treat:hover{border-color:#ffffff;background-color:#ffffff;color:#121212}@media (max-width: 61.24em){.fc-container--video .u-responsive-ratio video{top:inherit;bottom:0;height:auto}.fc-container--video .fc-item__video-container .vjs-big-play-button{top:3.375rem}.fc-container--video .fc-item__video-fallback{margin-top:6.75rem}}.fc-container--video-no-fill-sides{background-color:transparent}.video-title{color:#ffffff;display:block;margin-bottom:0.75rem}.video-title:after{content:none}.video-title a:hover{color:#ffffff;border-bottom:#ffffff}.video-playlist{position:relative;overflow:hidden}@media (min-width: 61.25em) and (max-width: 71.24em){.video-playlist{background-color:#050505}.has-page-skin .video-playlist{background-color:transparent}}.video-playlist--end .video-playlist__control--next,.video-playlist--start .video-playlist__control--prev{opacity:0;pointer-events:none}.video-playlist__inner{margin:0;font-size:0;white-space:nowrap;padding-right:0.625rem}@media (min-width: 30em){.video-playlist__inner{padding-right:1.25rem}}@media (max-width: 61.24em){.video-playlist__inner{overflow-x:scroll;overflow-y:hidden;-webkit-overflow-scrolling:touch;-webkit-transform:none !important;transform:none !important}}@media (min-width: 61.25em){.video-playlist__inner{padding-right:0;transition:-webkit-transform .4s ease-out;transition:transform .4s ease-out;transition:transform .4s ease-out, -webkit-transform .4s ease-out}}.video-playlist__inner::-webkit-scrollbar{display:none}.video-playlist__inner .video-playlist__item{background-color:#121212}.video-playlist__control{display:none}@media (min-width: 61.25em){.video-playlist__control{width:8.75rem;position:absolute;display:block;top:0;bottom:0;z-index:2;cursor:pointer}.video-playlist__control:hover .video-playlist__icon,.video-playlist__control:focus .video-playlist__icon{background-color:#ffe500}.video-playlist__control:hover .video-playlist__icon svg,.video-playlist__control:focus .video-playlist__icon svg{fill:#121212}}.video-playlist__control--prev{left:0}@media (min-width: 71.25em){.video-playlist__control--prev{width:11.25rem}.has-page-skin .video-playlist__control--prev{width:8.75rem}}@media (min-width: 81.25em){.video-playlist__control--prev{width:16.25rem}.has-page-skin .video-playlist__control--prev{width:8.75rem}}.video-playlist__control--prev .video-playlist__icon{right:1.25rem}.video-playlist__control--prev .video-playlist__icon svg{margin-left:-0.125rem}.video-playlist__control--next{right:0}@media (min-width: 71.25em){.video-playlist__control--next{width:16.25rem}.has-page-skin .video-playlist__control--next{width:8.75rem}}@media (min-width: 81.25em){.video-playlist__control--next{width:21.25rem}.has-page-skin .video-playlist__control--next{width:8.75rem}}.video-playlist__control--next .video-playlist__icon{left:1.25rem}.video-playlist__control--next .video-playlist__icon svg{margin-right:-0.125rem}.video-playlist__icon{position:absolute;top:0;bottom:0;width:1.875rem;height:1.875rem;margin:auto;border-radius:50%;background-color:rgba(0,0,0,0.5);text-align:center}.video-playlist__icon svg{fill:#ffffff;width:0.5625rem;height:1.875rem}.youtube-media-atom__play-button{background-color:#121212;border-radius:50%;color:transparent}.video-playlist__item{position:relative;display:inline-block;vertical-align:top;width:70%;background-color:#121212;margin-left:0.625rem;margin-bottom:0.75rem}@media (min-width: 30em){.video-playlist__item{margin-left:1.25rem}}@media (min-width: 61.25em){.video-playlist__item{width:43.75rem;margin:0}}@media (max-width: 46.24em){.video-playlist__item .video-container-overlay-link{z-index:3}}@media (min-width: 61.25em) and (max-width: 71.24em){.video-playlist__item--first{margin-left:8.75rem}.has-page-skin .video-playlist__item--first{margin-left:0}}@media (min-width: 71.25em){.video-playlist__item--first{margin-left:0}.has-page-skin .video-playlist__item--first{margin-left:0}}.video-playlist__item--active .vjs-big-play-button{display:block}.video-playlist__item--active .fc-item__video-fallback,.video-playlist__item--active .gu-media,.video-playlist__item--active .video-overlay{opacity:1}.fc-item--pillar-news.video-playlist__item.video-playlist__item--paid-for .fc-item__kicker,.fc-item--pillar-news.video-playlist__item.video-playlist__item--paid-for .video-overlay__duration{color:#69d1ca}.fc-item--pillar-news.video-playlist__item.video-playlist__item--paid-for .vjs-big-play-button .vjs-control-text{background-color:#69d1ca}.fc-item--pillar-news.video-playlist__item.video-playlist__item--paid-for .video-overlay{border-top-color:#69d1ca}.vjs-big-play-button .vjs-control-text,.youtube-media-atom__play-button.vjs-control-text{border-radius:50%;position:absolute;bottom:0.75rem;left:0.75rem;transition:-webkit-transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);transition:transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);transition:transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:3.75rem;height:3.75rem}.vjs-big-play-button .vjs-control-text .inline-play svg,.youtube-media-atom__play-button.vjs-control-text .inline-play svg{position:absolute;top:50%;left:49%;padding:0;margin:0;-webkit-transform:translate(-40%, -50%);transform:translate(-40%, -50%);fill:#ffffff;width:1.5rem}.fc-item--full-media-75-tablet .vjs-big-play-button .vjs-control-text,.fc-item--full-media-50-tablet .vjs-big-play-button .vjs-control-text,.fc-item--three-quarters-tablet .vjs-big-play-button .vjs-control-text,.fc-item--half-tablet .vjs-big-play-button .vjs-control-text,.fc-item--full-media-75-tablet .youtube-media-atom__play-button.vjs-control-text,.fc-item--full-media-50-tablet .youtube-media-atom__play-button.vjs-control-text,.fc-item--three-quarters-tablet .youtube-media-atom__play-button.vjs-control-text,.fc-item--half-tablet .youtube-media-atom__play-button.vjs-control-text{border-radius:50%;position:absolute;bottom:0.625rem;left:0.625rem;transition:-webkit-transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);transition:transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);transition:transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:3.125rem;height:3.125rem}.fc-item--full-media-75-tablet .vjs-big-play-button .vjs-control-text .inline-play svg,.fc-item--full-media-50-tablet .vjs-big-play-button .vjs-control-text .inline-play svg,.fc-item--three-quarters-tablet .vjs-big-play-button .vjs-control-text .inline-play svg,.fc-item--half-tablet .vjs-big-play-button .vjs-control-text .inline-play svg,.fc-item--full-media-75-tablet .youtube-media-atom__play-button.vjs-control-text .inline-play svg,.fc-item--full-media-50-tablet .youtube-media-atom__play-button.vjs-control-text .inline-play svg,.fc-item--three-quarters-tablet .youtube-media-atom__play-button.vjs-control-text .inline-play svg,.fc-item--half-tablet .youtube-media-atom__play-button.vjs-control-text .inline-play svg{position:absolute;top:50%;left:49%;padding:0;margin:0;-webkit-transform:translate(-40%, -50%);transform:translate(-40%, -50%);fill:#ffffff;width:1.25rem}@media (min-width: 30em){.fc-item--full-media-75-tablet .vjs-big-play-button .vjs-control-text,.fc-item--full-media-50-tablet .vjs-big-play-button .vjs-control-text,.fc-item--three-quarters-tablet .vjs-big-play-button .vjs-control-text,.fc-item--half-tablet .vjs-big-play-button .vjs-control-text,.fc-item--full-media-75-tablet .youtube-media-atom__play-button.vjs-control-text,.fc-item--full-media-50-tablet .youtube-media-atom__play-button.vjs-control-text,.fc-item--three-quarters-tablet .youtube-media-atom__play-button.vjs-control-text,.fc-item--half-tablet .youtube-media-atom__play-button.vjs-control-text{border-radius:50%;position:absolute;bottom:0.75rem;left:0.75rem;transition:-webkit-transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);transition:transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);transition:transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:3.75rem;height:3.75rem}.fc-item--full-media-75-tablet .vjs-big-play-button .vjs-control-text .inline-play svg,.fc-item--full-media-50-tablet .vjs-big-play-button .vjs-control-text .inline-play svg,.fc-item--three-quarters-tablet .vjs-big-play-button .vjs-control-text .inline-play svg,.fc-item--half-tablet .vjs-big-play-button .vjs-control-text .inline-play svg,.fc-item--full-media-75-tablet .youtube-media-atom__play-button.vjs-control-text .inline-play svg,.fc-item--full-media-50-tablet .youtube-media-atom__play-button.vjs-control-text .inline-play svg,.fc-item--three-quarters-tablet .youtube-media-atom__play-button.vjs-control-text .inline-play svg,.fc-item--half-tablet .youtube-media-atom__play-button.vjs-control-text .inline-play svg{position:absolute;top:50%;left:49%;padding:0;margin:0;-webkit-transform:translate(-40%, -50%);transform:translate(-40%, -50%);fill:#ffffff;width:1.5rem}}.fc-item--third-tablet .vjs-big-play-button .vjs-control-text,.fc-item--third-tablet .youtube-media-atom__play-button.vjs-control-text{border-radius:50%;position:absolute;bottom:0.625rem;left:0.625rem;transition:-webkit-transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);transition:transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);transition:transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:3.125rem;height:3.125rem}.fc-item--third-tablet .vjs-big-play-button .vjs-control-text .inline-play svg,.fc-item--third-tablet .youtube-media-atom__play-button.vjs-control-text .inline-play svg{position:absolute;top:50%;left:49%;padding:0;margin:0;-webkit-transform:translate(-40%, -50%);transform:translate(-40%, -50%);fill:#ffffff;width:1.25rem}@media (min-width: 30em) and (max-width: 46.24em){.fc-item--third-tablet .vjs-big-play-button .vjs-control-text,.fc-item--third-tablet .youtube-media-atom__play-button.vjs-control-text{border-radius:50%;position:absolute;bottom:0.75rem;left:0.75rem;transition:-webkit-transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);transition:transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);transition:transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:3.75rem;height:3.75rem}.fc-item--third-tablet .vjs-big-play-button .vjs-control-text .inline-play svg,.fc-item--third-tablet .youtube-media-atom__play-button.vjs-control-text .inline-play svg{position:absolute;top:50%;left:49%;padding:0;margin:0;-webkit-transform:translate(-40%, -50%);transform:translate(-40%, -50%);fill:#ffffff;width:1.5rem}}@media (min-width: 46.25em){.fc-item--standard-tablet .vjs-big-play-button .vjs-control-text,.fc-item--standard-tablet .youtube-media-atom__play-button.vjs-control-text{border-radius:50%;position:absolute;bottom:0.525rem;left:0.525rem;transition:-webkit-transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);transition:transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);transition:transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:2.625rem;height:2.625rem}.fc-item--standard-tablet .vjs-big-play-button .vjs-control-text .inline-play svg,.fc-item--standard-tablet .youtube-media-atom__play-button.vjs-control-text .inline-play svg{position:absolute;top:50%;left:49%;padding:0;marg\\\",\\\"body_is_truncated\\\":true,\\\"code\\\":200,\\\"headers_list\\\":[[\\\"Accept-Ranges\\\",\\\"bytes\\\"],[\\\"Age\\\",\\\"124\\\"],[\\\"Cache-Control\\\",\\\"max-age=60, stale-while-revalidate=6, stale-if-error=864000, private,no-transform\\\"],[\\\"Content-Length\\\",\\\"1063252\\\"],[\\\"Content-Security-Policy\\\",\\\"default-src https:; script-src https: 'unsafe-inline' 'unsafe-eval' blob: 'unsafe-inline'; frame-src https: data:; style-src https: 'unsafe-inline'; img-src https: data: blob:; media-src https: data: blob:; font-src https: data:; connect-src https: wss: blob:; child-src https: blob:; object-src 'none'; base-uri https:\\\\/\\\\/*.gracenote.com\\\"],[\\\"Content-Type\\\",\\\"text\\\\/html; charset=UTF-8\\\"],[\\\"Date\\\",\\\"Thu, 10 Nov 2022 10:09:18 GMT\\\"],[\\\"Etag\\\",\\\"W\\\\/\\\\\\\"hash-8716927810522215298\\\\\\\"\\\"],[\\\"Feature-Policy\\\",\\\"camera 'none'; microphone 'none'; midi 'none'; geolocation 'none'\\\"],[\\\"Link\\\",\\\"<https:\\\\/\\\\/assets.guim.co.uk\\\\/stylesheets\\\\/2d0779d877d57475b954545ae07253b6\\\\/facia.garnett.css>; rel=preload; as=style; nopush,<https:\\\\/\\\\/assets.guim.co.uk\\\\/polyfill.io\\\\/v3\\\\/polyfill.min.js?rum=0&features=es6,es7,es2017,default-3.6,HTMLPictureElement,IntersectionObserver,IntersectionObserverEntry,fetch,navigator.sendBeacon,performance.now,Object.fromEntries,Promise.allSettled&flags=gated&callback=guardianPolyfilled&unknown=polyfill&clearCache=5>; rel=preload; as=script; nopush,<https:\\\\/\\\\/assets.guim.co.uk\\\\/javascripts\\\\/70cbe56e9560dcdb706b\\\\/graun.standard.js>; rel=preload; as=script; nopush\\\"],[\\\"Onion-Location\\\",\\\"https:\\\\/\\\\/www.guardian2zotagl6tmjucg3lrhxdk4dw3lhbqnkvvkywawy3oqfoprid.onion\\\\/international\\\"],[\\\"Permissions-Policy\\\",\\\"camera=(), microphone=(), midi=(), geolocation=(), interest-cohort=()\\\"],[\\\"Referrer-Policy\\\",\\\"no-referrer-when-downgrade\\\"],[\\\"Set-Cookie\\\",\\\"GU_mvt_id=989184; expires=Wed, 08 Feb 2023 10:09:18 GMT; path=\\\\/; domain=.theguardian.com; Secure\\\"],[\\\"Set-Cookie\\\",\\\"GU_geo_country=SG; path=\\\\/; Secure\\\"],[\\\"Strict-Transport-Security\\\",\\\"max-age=63072000; includeSubDomains; preload\\\"],[\\\"Vary\\\",\\\"Accept-Encoding,User-Agent\\\"],[\\\"X-Content-Type-Options\\\",\\\"nosniff\\\"],[\\\"X-Frame-Options\\\",\\\"SAMEORIGIN\\\"],[\\\"X-Gu-Edition\\\",\\\"int\\\"],[\\\"X-Timer\\\",\\\"S1668074958.363145,VS0,VE3\\\"],[\\\"X-Xss-Protection\\\",\\\"1; mode=block\\\"]],\\\"headers\\\":{\\\"Accept-Ranges\\\":\\\"bytes\\\",\\\"Age\\\":\\\"124\\\",\\\"Cache-Control\\\":\\\"max-age=60, stale-while-revalidate=6, stale-if-error=864000, private,no-transform\\\",\\\"Content-Length\\\":\\\"1063252\\\",\\\"Content-Security-Policy\\\":\\\"default-src https:; script-src https: 'unsafe-inline' 'unsafe-eval' blob: 'unsafe-inline'; frame-src https: data:; style-src https: 'unsafe-inline'; img-src https: data: blob:; media-src https: data: blob:; font-src https: data:; connect-src https: wss: blob:; child-src https: blob:; object-src 'none'; base-uri https:\\\\/\\\\/*.gracenote.com\\\",\\\"Content-Type\\\":\\\"text\\\\/html; charset=UTF-8\\\",\\\"Date\\\":\\\"Thu, 10 Nov 2022 10:09:18 GMT\\\",\\\"Etag\\\":\\\"W\\\\/\\\\\\\"hash-8716927810522215298\\\\\\\"\\\",\\\"Feature-Policy\\\":\\\"camera 'none'; microphone 'none'; midi 'none'; geolocation 'none'\\\",\\\"Link\\\":\\\"<https:\\\\/\\\\/assets.guim.co.uk\\\\/stylesheets\\\\/2d0779d877d57475b954545ae07253b6\\\\/facia.garnett.css>; rel=preload; as=style; nopush,<https:\\\\/\\\\/assets.guim.co.uk\\\\/polyfill.io\\\\/v3\\\\/polyfill.min.js?rum=0&features=es6,es7,es2017,default-3.6,HTMLPictureElement,IntersectionObserver,IntersectionObserverEntry,fetch,navigator.sendBeacon,performance.now,Object.fromEntries,Promise.allSettled&flags=gated&callback=guardianPolyfilled&unknown=polyfill&clearCache=5>; rel=preload; as=script; nopush,<https:\\\\/\\\\/assets.guim.co.uk\\\\/javascripts\\\\/70cbe56e9560dcdb706b\\\\/graun.standard.js>; rel=preload; as=script; nopush\\\",\\\"Onion-Location\\\":\\\"https:\\\\/\\\\/www.guardian2zotagl6tmjucg3lrhxdk4dw3lhbqnkvvkywawy3oqfoprid.onion\\\\/international\\\",\\\"Permissions-Policy\\\":\\\"camera=(), microphone=(), midi=(), geolocation=(), interest-cohort=()\\\",\\\"Referrer-Policy\\\":\\\"no-referrer-when-downgrade\\\",\\\"Set-Cookie\\\":\\\"GU_mvt_id=989184; expires=Wed, 08 Feb 2023 10:09:18 GMT; path=\\\\/; domain=.theguardian.com; Secure\\\",\\\"Strict-Transport-Security\\\":\\\"max-age=63072000; includeSubDomains; preload\\\",\\\"Vary\\\":\\\"Accept-Encoding,User-Agent\\\",\\\"X-Content-Type-Options\\\":\\\"nosniff\\\",\\\"X-Frame-Options\\\":\\\"SAMEORIGIN\\\",\\\"X-Gu-Edition\\\":\\\"int\\\",\\\"X-Timer\\\":\\\"S1668074958.363145,VS0,VE3\\\",\\\"X-Xss-Protection\\\":\\\"1; mode=block\\\"}},\\\"t\\\":0.8139505},{\\\"failure\\\":null,\\\"request\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"headers_list\\\":[[\\\"Accept\\\",\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\"],[\\\"Accept-Language\\\",\\\"en-US,en;q=0.9\\\"],[\\\"Host\\\",\\\"www.theguardian.com\\\"],[\\\"User-Agent\\\",\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/96.0.4664.110 Safari\\\\/537.36\\\"]],\\\"headers\\\":{\\\"Accept\\\":\\\"text\\\\/html,application\\\\/xhtml+xml,application\\\\/xml;q=0.9,*\\\\/*;q=0.8\\\",\\\"Accept-Language\\\":\\\"en-US,en;q=0.9\\\",\\\"Host\\\":\\\"www.theguardian.com\\\",\\\"User-Agent\\\":\\\"Mozilla\\\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\\\/537.36 (KHTML, like Gecko) Chrome\\\\/96.0.4664.110 Safari\\\\/537.36\\\"},\\\"method\\\":\\\"GET\\\",\\\"tor\\\":{\\\"exit_ip\\\":null,\\\"exit_name\\\":null,\\\"is_tor\\\":false},\\\"x_transport\\\":\\\"tcp\\\",\\\"url\\\":\\\"https:\\\\/\\\\/www.theguardian.com\\\\/\\\"},\\\"response\\\":{\\\"body\\\":\\\"\\\",\\\"body_is_truncated\\\":false,\\\"code\\\":302,\\\"headers_list\\\":[[\\\"Accept-Ranges\\\",\\\"bytes\\\"],[\\\"Cache-Control\\\",\\\"max-age=0,no-transform\\\"],[\\\"Content-Length\\\",\\\"0\\\"],[\\\"Content-Security-Policy\\\",\\\"default-src https:; script-src https: 'unsafe-inline' 'unsafe-eval' blob: 'unsafe-inline'; frame-src https: data:; style-src https: 'unsafe-inline'; img-src https: data: blob:; media-src https: data: blob:; font-src https: data:; connect-src https: wss: blob:; child-src https: blob:; object-src 'none'; base-uri https:\\\\/\\\\/*.gracenote.com\\\"],[\\\"Date\\\",\\\"Thu, 10 Nov 2022 10:09:18 GMT\\\"],[\\\"Feature-Policy\\\",\\\"camera 'none'; microphone 'none'; midi 'none'; geolocation 'none'\\\"],[\\\"Location\\\",\\\"\\\\/international\\\"],[\\\"Permissions-Policy\\\",\\\"camera=(), microphone=(), midi=(), geolocation=(), interest-cohort=()\\\"],[\\\"Referrer-Policy\\\",\\\"no-referrer-when-downgrade\\\"],[\\\"Retry-After\\\",\\\"0\\\"],[\\\"Set-Cookie\\\",\\\"GU_mvt_id=989184; expires=Wed, 08 Feb 2023 10:09:18 GMT; path=\\\\/; domain=.theguardian.com; Secure\\\"],[\\\"Set-Cookie\\\",\\\"GU_geo_country=SG; path=\\\\/; Secure\\\"],[\\\"Strict-Transport-Security\\\",\\\"max-age=63072000; includeSubDomains; preload\\\"],[\\\"X-Content-Type-Options\\\",\\\"nosniff\\\"],[\\\"X-Frame-Options\\\",\\\"SAMEORIGIN\\\"],[\\\"X-Gu-Edition\\\",\\\"int\\\"],[\\\"X-Timer\\\",\\\"S1668074958.325045,VS0,VE0\\\"],[\\\"X-Xss-Protection\\\",\\\"1; mode=block\\\"]],\\\"headers\\\":{\\\"Accept-Ranges\\\":\\\"bytes\\\",\\\"Cache-Control\\\":\\\"max-age=0,no-transform\\\",\\\"Content-Length\\\":\\\"0\\\",\\\"Content-Security-Policy\\\":\\\"default-src https:; script-src https: 'unsafe-inline' 'unsafe-eval' blob: 'unsafe-inline'; frame-src https: data:; style-src https: 'unsafe-inline'; img-src https: data: blob:; media-src https: data: blob:; font-src https: data:; connect-src https: wss: blob:; child-src https: blob:; object-src 'none'; base-uri https:\\\\/\\\\/*.gracenote.com\\\",\\\"Date\\\":\\\"Thu, 10 Nov 2022 10:09:18 GMT\\\",\\\"Feature-Policy\\\":\\\"camera 'none'; microphone 'none'; midi 'none'; geolocation 'none'\\\",\\\"Location\\\":\\\"\\\\/international\\\",\\\"Permissions-Policy\\\":\\\"camera=(), microphone=(), midi=(), geolocation=(), interest-cohort=()\\\",\\\"Referrer-Policy\\\":\\\"no-referrer-when-downgrade\\\",\\\"Retry-After\\\":\\\"0\\\",\\\"Set-Cookie\\\":\\\"GU_mvt_id=989184; expires=Wed, 08 Feb 2023 10:09:18 GMT; path=\\\\/; domain=.theguardian.com; Secure\\\",\\\"Strict-Transport-Security\\\":\\\"max-age=63072000; includeSubDomains; preload\\\",\\\"X-Content-Type-Options\\\":\\\"nosniff\\\",\\\"X-Frame-Options\\\":\\\"SAMEORIGIN\\\",\\\"X-Gu-Edition\\\":\\\"int\\\",\\\"X-Timer\\\":\\\"S1668074958.325045,VS0,VE0\\\",\\\"X-Xss-Protection\\\":\\\"1; mode=block\\\"}},\\\"t\\\":0.7199977}],\\\"http_experiment_failure\\\":null,\\\"body_length_match\\\":null,\\\"body_proportion\\\":0,\\\"status_code_match\\\":true,\\\"headers_match\\\":true,\\\"title_match\\\":null,\\\"accessible\\\":true,\\\"blocking\\\":false,\\\"x_status\\\":1,\\\"x_dns_runtime\\\":20979300,\\\"x_th_runtime\\\":516838300,\\\"x_tcptls_runtime\\\":180032900,\\\"x_http_runtime\\\":232735300},\\\"test_name\\\":\\\"web_connectivity\\\",\\\"test_runtime\\\":0.9554328,\\\"test_start_time\\\":\\\"2022-11-10 10:07:53\\\",\\\"test_version\\\":\\\"0.4.1\\\"}\\n\",\"category_code\":\"NEWS\",\"verification_status\":\"unverified\"}" +} \ No newline at end of file diff --git a/tests/e2e/fixtures/search/account_metadata.json b/tests/e2e/fixtures/search/account_metadata.json new file mode 100644 index 000000000..27d3daeeb --- /dev/null +++ b/tests/e2e/fixtures/search/account_metadata.json @@ -0,0 +1,5 @@ +{ + "status": 200, + "contentType": "application/json", + "body": "{\"logged_in\":false,\"role\":\"\"}" +} \ No newline at end of file diff --git a/tests/e2e/fixtures/search/measurements__since-2026-06-11_until-2026-07-12_failure-false_limit-50_order-desc.json b/tests/e2e/fixtures/search/measurements__since-2026-06-11_until-2026-07-12_failure-false_limit-50_order-desc.json new file mode 100644 index 000000000..e1cc57e1a --- /dev/null +++ b/tests/e2e/fixtures/search/measurements__since-2026-06-11_until-2026-07-12_failure-false_limit-50_order-desc.json @@ -0,0 +1,5 @@ +{ + "status": 200, + "contentType": "application/json", + "body": "{\"metadata\":{\"count\":-1,\"current_page\":1,\"limit\":50,\"next_url\":\"https://api.ooni.io/api/v1/measurements?since=2026-06-11&until=2026-07-12&failure=false&limit=50&order=desc&offset=50\",\"offset\":0,\"pages\":-1,\"query_time\":0.07783865928649902},\"results\":[{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"http://proxy.i2phides.me/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0,\"fingerprints\":[{\"name\":\"cp.fp_x_correct_403\",\"scope\":\"fp\",\"location_found\":\"body\",\"confidence_no_fp\":5,\"expected_countries\":[]},{\"name\":\"cp.fp_satellite_fp_403\",\"scope\":\"fp\",\"location_found\":\"body\",\"confidence_no_fp\":5,\"expected_countries\":[]},{\"name\":\"cp.f_gen_have_permission\",\"scope\":\"vbw\",\"location_found\":\"body\",\"confidence_no_fp\":5,\"expected_countries\":[]}]},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174303.899212_ES_webconnectivity_cb7ef25a464d14d4\",\"measurement_start_time\":\"2026-07-11T17:44:07.000000Z\",\"measurement_uid\":\"20260711174303.899212_ES_webconnectivity_cb7ef25a464d14d4\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://proxify.com/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174302.862234_ES_webconnectivity_a7f2d8e7c742809a\",\"measurement_start_time\":\"2026-07-11T17:44:06.000000Z\",\"measurement_uid\":\"20260711174302.862234_ES_webconnectivity_a7f2d8e7c742809a\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://protonvpn.com/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174301.401390_ES_webconnectivity_df23584a538a17d2\",\"measurement_start_time\":\"2026-07-11T17:44:03.000000Z\",\"measurement_uid\":\"20260711174301.401390_ES_webconnectivity_df23584a538a17d2\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://proton.me/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174259.264963_ES_webconnectivity_cd1394fd1d690569\",\"measurement_start_time\":\"2026-07-11T17:44:02.000000Z\",\"measurement_uid\":\"20260711174259.264963_ES_webconnectivity_cd1394fd1d690569\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://privatevpn.com/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174258.110860_ES_webconnectivity_a07be01375669a18\",\"measurement_start_time\":\"2026-07-11T17:44:00.000000Z\",\"measurement_uid\":\"20260711174258.110860_ES_webconnectivity_a07be01375669a18\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://prism-break.org/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174256.124373_ES_webconnectivity_7d4b7e52d7219dff\",\"measurement_start_time\":\"2026-07-11T17:43:59.000000Z\",\"measurement_uid\":\"20260711174256.124373_ES_webconnectivity_7d4b7e52d7219dff\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://pridesource.com/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174254.611691_ES_webconnectivity_2fa256e4a62af5b9\",\"measurement_start_time\":\"2026-07-11T17:43:56.000000Z\",\"measurement_uid\":\"20260711174254.611691_ES_webconnectivity_2fa256e4a62af5b9\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://pirateparty.org.au/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174252.227099_ES_webconnectivity_a24ac42ce40c9968\",\"measurement_start_time\":\"2026-07-11T17:43:54.000000Z\",\"measurement_uid\":\"20260711174252.227099_ES_webconnectivity_a24ac42ce40c9968\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://pflag.org/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0,\"fingerprints\":[{\"name\":\"cp.fp_x_redirect_just\",\"scope\":\"fp\",\"location_found\":\"body\",\"confidence_no_fp\":5,\"expected_countries\":[]}]},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174249.718165_ES_webconnectivity_4bcb3de092f3c496\",\"measurement_start_time\":\"2026-07-11T17:43:51.000000Z\",\"measurement_uid\":\"20260711174249.718165_ES_webconnectivity_4bcb3de092f3c496\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://outrightinternational.org/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174246.777802_ES_webconnectivity_70fd9dc740b5b33a\",\"measurement_start_time\":\"2026-07-11T17:43:49.000000Z\",\"measurement_uid\":\"20260711174246.777802_ES_webconnectivity_70fd9dc740b5b33a\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://ourworldindata.org/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174245.254422_ES_webconnectivity_22bccbef826bc9c5\",\"measurement_start_time\":\"2026-07-11T17:43:49.000000Z\",\"measurement_uid\":\"20260711174245.254422_ES_webconnectivity_22bccbef826bc9c5\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://otr.cypherpunks.ca/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174244.240259_ES_webconnectivity_54772f3612b147ee\",\"measurement_start_time\":\"2026-07-11T17:43:47.000000Z\",\"measurement_uid\":\"20260711174244.240259_ES_webconnectivity_54772f3612b147ee\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://orbot.app/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174242.999688_ES_webconnectivity_a22f373b4ceadbdf\",\"measurement_start_time\":\"2026-07-11T17:43:46.000000Z\",\"measurement_uid\":\"20260711174242.999688_ES_webconnectivity_a22f373b4ceadbdf\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://openvpn.net/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0,\"fingerprints\":[{\"name\":\"cp.fp_x_groupon\",\"scope\":\"fp\",\"location_found\":\"body\",\"confidence_no_fp\":5,\"expected_countries\":[]}]},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174241.529327_ES_webconnectivity_d277c41d6d3f044b\",\"measurement_start_time\":\"2026-07-11T17:43:45.000000Z\",\"measurement_uid\":\"20260711174241.529327_ES_webconnectivity_d277c41d6d3f044b\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://opennet.net/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0,\"fingerprints\":[{\"name\":\"cp.f_gen_access_denied\",\"scope\":\"vbw\",\"location_found\":\"body\",\"confidence_no_fp\":5,\"expected_countries\":[]}]},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174240.891316_ES_webconnectivity_f749739808049669\",\"measurement_start_time\":\"2026-07-11T17:43:42.000000Z\",\"measurement_uid\":\"20260711174240.891316_ES_webconnectivity_f749739808049669\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://ooni.torproject.org/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174238.002019_ES_webconnectivity_5dacd24743fc4caf\",\"measurement_start_time\":\"2026-07-11T17:43:40.000000Z\",\"measurement_uid\":\"20260711174238.002019_ES_webconnectivity_5dacd24743fc4caf\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://ooni.org/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174236.156908_ES_webconnectivity_314e1944147d0268\",\"measurement_start_time\":\"2026-07-11T17:43:40.000000Z\",\"measurement_uid\":\"20260711174236.156908_ES_webconnectivity_314e1944147d0268\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://onionshare.org/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174235.590221_ES_webconnectivity_6c4efebb2c50b40d\",\"measurement_start_time\":\"2026-07-11T17:43:37.000000Z\",\"measurement_uid\":\"20260711174235.590221_ES_webconnectivity_6c4efebb2c50b40d\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://nypost.com/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0,\"fingerprints\":[{\"name\":\"cp.fp_x_news\",\"scope\":\"fp\",\"location_found\":\"body\",\"confidence_no_fp\":5,\"expected_countries\":[]}]},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174233.143148_ES_webconnectivity_02d65b738516f295\",\"measurement_start_time\":\"2026-07-11T17:43:33.000000Z\",\"measurement_uid\":\"20260711174233.143148_ES_webconnectivity_02d65b738516f295\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://numun.fund/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174228.775472_ES_webconnectivity_5172ef7866611309\",\"measurement_start_time\":\"2026-07-11T17:43:30.000000Z\",\"measurement_uid\":\"20260711174228.775472_ES_webconnectivity_5172ef7866611309\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://now.org/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0,\"fingerprints\":[{\"name\":\"cp.fp_x_redirect_just\",\"scope\":\"fp\",\"location_found\":\"body\",\"confidence_no_fp\":5,\"expected_countries\":[]}]},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174225.953501_ES_webconnectivity_2b7e828605796866\",\"measurement_start_time\":\"2026-07-11T17:43:29.000000Z\",\"measurement_uid\":\"20260711174225.953501_ES_webconnectivity_2b7e828605796866\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://nordvpn.com/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174225.264055_ES_webconnectivity_c5d9f438f8bcfcb1\",\"measurement_start_time\":\"2026-07-11T17:43:29.000000Z\",\"measurement_uid\":\"20260711174225.264055_ES_webconnectivity_c5d9f438f8bcfcb1\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://news.google.com/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174224.858309_ES_webconnectivity_308bbfbe973c109d\",\"measurement_start_time\":\"2026-07-11T17:43:28.000000Z\",\"measurement_uid\":\"20260711174224.858309_ES_webconnectivity_308bbfbe973c109d\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://ncac.org/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174223.680209_ES_webconnectivity_204f71a3e2200c73\",\"measurement_start_time\":\"2026-07-11T17:43:24.000000Z\",\"measurement_uid\":\"20260711174223.680209_ES_webconnectivity_204f71a3e2200c73\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://multiproxy.org/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174220.120502_ES_webconnectivity_f790fe0d2bf7b6ca\",\"measurement_start_time\":\"2026-07-11T17:43:23.000000Z\",\"measurement_uid\":\"20260711174220.120502_ES_webconnectivity_f790fe0d2bf7b6ca\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://mullvad.net/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174218.986232_ES_webconnectivity_7a74a50042dadcb9\",\"measurement_start_time\":\"2026-07-11T17:43:22.000000Z\",\"measurement_uid\":\"20260711174218.986232_ES_webconnectivity_7a74a50042dadcb9\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://moscow.rtrs.ru/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174218.288597_ES_webconnectivity_8f873f97e8f2eeef\",\"measurement_start_time\":\"2026-07-11T17:43:21.000000Z\",\"measurement_uid\":\"20260711174218.288597_ES_webconnectivity_8f873f97e8f2eeef\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://minorityrights.org/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0,\"fingerprints\":[{\"name\":\"cp.fp_x_redirect_just\",\"scope\":\"fp\",\"location_found\":\"body\",\"confidence_no_fp\":5,\"expected_countries\":[]}]},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174216.784242_ES_webconnectivity_53a2b45048a6baf5\",\"measurement_start_time\":\"2026-07-11T17:43:20.000000Z\",\"measurement_uid\":\"20260711174216.784242_ES_webconnectivity_53a2b45048a6baf5\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://messagevortex.net/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174216.258432_ES_webconnectivity_c062a6ef1fcde582\",\"measurement_start_time\":\"2026-07-11T17:43:19.000000Z\",\"measurement_uid\":\"20260711174216.258432_ES_webconnectivity_c062a6ef1fcde582\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://mega.nz/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174215.183842_ES_webconnectivity_c6d4ba0d78f27717\",\"measurement_start_time\":\"2026-07-11T17:43:19.000000Z\",\"measurement_uid\":\"20260711174215.183842_ES_webconnectivity_c6d4ba0d78f27717\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://massbrowser.cs.umass.edu/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174214.589867_ES_webconnectivity_a2ec15331283bc46\",\"measurement_start_time\":\"2026-07-11T17:43:17.000000Z\",\"measurement_uid\":\"20260711174214.589867_ES_webconnectivity_a2ec15331283bc46\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://mask-api.icloud.com/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174212.863643_ES_webconnectivity_574fe0f48d526bad\",\"measurement_start_time\":\"2026-07-11T17:43:16.000000Z\",\"measurement_uid\":\"20260711174212.863643_ES_webconnectivity_574fe0f48d526bad\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://makeamazonpay.com/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174212.038420_ES_webconnectivity_f5a42335b652f38c\",\"measurement_start_time\":\"2026-07-11T17:43:14.000000Z\",\"measurement_uid\":\"20260711174212.038420_ES_webconnectivity_f5a42335b652f38c\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://lokinet.org/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174209.433015_ES_webconnectivity_8b8e04e6201a6783\",\"measurement_start_time\":\"2026-07-11T17:43:13.000000Z\",\"measurement_uid\":\"20260711174209.433015_ES_webconnectivity_8b8e04e6201a6783\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://liveuamap.com/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174208.457601_ES_webconnectivity_9ead4ecbdf9958d5\",\"measurement_start_time\":\"2026-07-11T17:43:12.000000Z\",\"measurement_uid\":\"20260711174208.457601_ES_webconnectivity_9ead4ecbdf9958d5\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://lgbtqia.space/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0,\"fingerprints\":[{\"name\":\"cp.fp_x_redirect_just\",\"scope\":\"fp\",\"location_found\":\"body\",\"confidence_no_fp\":5,\"expected_countries\":[]}]},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174206.411531_ES_webconnectivity_e9827834952c9cde\",\"measurement_start_time\":\"2026-07-11T17:43:10.000000Z\",\"measurement_uid\":\"20260711174206.411531_ES_webconnectivity_e9827834952c9cde\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"http://lgbtvacationplanners.com/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174207.474428_ES_webconnectivity_cc5ebf73762f1b68\",\"measurement_start_time\":\"2026-07-11T17:43:10.000000Z\",\"measurement_uid\":\"20260711174207.474428_ES_webconnectivity_cc5ebf73762f1b68\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://www.guts.com/\",\"probe_asn\":\"AS16276\",\"probe_cc\":\"PL\",\"report_id\":\"20260711T174235Z_webconnectivity_PL_16276_n4_9IIbTGyO2GXoszgU\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174307.710088_PL_webconnectivity_3023e995d6f2f9ba\",\"measurement_start_time\":\"2026-07-11T17:43:07.000000Z\",\"measurement_uid\":\"20260711174307.710088_PL_webconnectivity_3023e995d6f2f9ba\",\"verification_status\":\"unverified\"},{\"anomaly\":true,\"confirmed\":false,\"failure\":false,\"input\":\"https://www.favbet.com/\",\"probe_asn\":\"AS16276\",\"probe_cc\":\"PL\",\"report_id\":\"20260711T174235Z_webconnectivity_PL_16276_n4_9IIbTGyO2GXoszgU\",\"scores\":{\"blocking_general\":1.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0,\"analysis\":{\"blocking_type\":\"dns\"}},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174307.426698_PL_webconnectivity_201864a3015449fd\",\"measurement_start_time\":\"2026-07-11T17:43:07.000000Z\",\"measurement_uid\":\"20260711174307.426698_PL_webconnectivity_201864a3015449fd\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://www.cannaweed.com/\",\"probe_asn\":\"AS16276\",\"probe_cc\":\"PL\",\"report_id\":\"20260711T174235Z_webconnectivity_PL_16276_n4_9IIbTGyO2GXoszgU\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174307.187694_PL_webconnectivity_3d4ef86deda1d306\",\"measurement_start_time\":\"2026-07-11T17:43:07.000000Z\",\"measurement_uid\":\"20260711174307.187694_PL_webconnectivity_3d4ef86deda1d306\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"http://krilija.sp.ru/\",\"probe_asn\":\"AS50716\",\"probe_cc\":\"RU\",\"report_id\":\"20260711T174122Z_webconnectivity_RU_50716_n4_MPQ40oNrnh3bdTD0\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174307.858603_RU_webconnectivity_52479a14ced3e699\",\"measurement_start_time\":\"2026-07-11T17:43:07.000000Z\",\"measurement_uid\":\"20260711174307.858603_RU_webconnectivity_52479a14ced3e699\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://valence.community/\",\"probe_asn\":\"AS3215\",\"probe_cc\":\"FR\",\"report_id\":\"20260711T174308Z_webconnectivity_FR_3215_n4_aCDp6YmZgNuefd5c\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174308.047226_FR_webconnectivity_ef0d38c398c3d85b\",\"measurement_start_time\":\"2026-07-11T17:43:06.000000Z\",\"measurement_uid\":\"20260711174308.047226_FR_webconnectivity_ef0d38c398c3d85b\",\"verification_status\":\"verified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://www.betonline.ag/\",\"probe_asn\":\"AS16276\",\"probe_cc\":\"PL\",\"report_id\":\"20260711T174235Z_webconnectivity_PL_16276_n4_9IIbTGyO2GXoszgU\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174306.866605_PL_webconnectivity_71411687b2f5b743\",\"measurement_start_time\":\"2026-07-11T17:43:06.000000Z\",\"measurement_uid\":\"20260711174306.866605_PL_webconnectivity_71411687b2f5b743\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://tonybet.com/\",\"probe_asn\":\"AS16276\",\"probe_cc\":\"PL\",\"report_id\":\"20260711T174235Z_webconnectivity_PL_16276_n4_9IIbTGyO2GXoszgU\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0,\"fingerprints\":[{\"name\":\"cp.fp_x_redirect_just\",\"scope\":\"fp\",\"location_found\":\"body\",\"confidence_no_fp\":5,\"expected_countries\":[]}]},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174306.470635_PL_webconnectivity_2d95283217a7291d\",\"measurement_start_time\":\"2026-07-11T17:43:06.000000Z\",\"measurement_uid\":\"20260711174306.470635_PL_webconnectivity_2d95283217a7291d\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://upload.twitter.com/robots.txt\",\"probe_asn\":\"AS3215\",\"probe_cc\":\"FR\",\"report_id\":\"20260711T174306Z_webconnectivity_FR_3215_n4_Bo6E65UJJU8QUlEA\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174306.300221_FR_webconnectivity_759e30054dfa5f1e\",\"measurement_start_time\":\"2026-07-11T17:43:05.000000Z\",\"measurement_uid\":\"20260711174306.300221_FR_webconnectivity_759e30054dfa5f1e\",\"verification_status\":\"verified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://pelagiusasturiensis.wordpress.com/\",\"probe_asn\":\"AS16276\",\"probe_cc\":\"PL\",\"report_id\":\"20260711T174235Z_webconnectivity_PL_16276_n4_9IIbTGyO2GXoszgU\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174306.089527_PL_webconnectivity_eb282b695f888ab9\",\"measurement_start_time\":\"2026-07-11T17:43:05.000000Z\",\"measurement_uid\":\"20260711174306.089527_PL_webconnectivity_eb282b695f888ab9\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://onlyfans.com/\",\"probe_asn\":\"AS16276\",\"probe_cc\":\"PL\",\"report_id\":\"20260711T174235Z_webconnectivity_PL_16276_n4_9IIbTGyO2GXoszgU\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174305.584794_PL_webconnectivity_f64b2f0d0a7f89f0\",\"measurement_start_time\":\"2026-07-11T17:43:05.000000Z\",\"measurement_uid\":\"20260711174305.584794_PL_webconnectivity_f64b2f0d0a7f89f0\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://gol24.pl/\",\"probe_asn\":\"AS16276\",\"probe_cc\":\"PL\",\"report_id\":\"20260711T174235Z_webconnectivity_PL_16276_n4_9IIbTGyO2GXoszgU\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174305.383730_PL_webconnectivity_5009067a73509187\",\"measurement_start_time\":\"2026-07-11T17:43:05.000000Z\",\"measurement_uid\":\"20260711174305.383730_PL_webconnectivity_5009067a73509187\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://fuksiarz.pl/\",\"probe_asn\":\"AS16276\",\"probe_cc\":\"PL\",\"report_id\":\"20260711T174235Z_webconnectivity_PL_16276_n4_9IIbTGyO2GXoszgU\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174305.141787_PL_webconnectivity_e73b5615c3853dc0\",\"measurement_start_time\":\"2026-07-11T17:43:05.000000Z\",\"measurement_uid\":\"20260711174305.141787_PL_webconnectivity_e73b5615c3853dc0\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://www.straitstimes.com/\",\"probe_asn\":\"AS137235\",\"probe_cc\":\"SG\",\"report_id\":\"20260711T174233Z_webconnectivity_SG_137235_n4_aBM3h3wACR614yiq\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174307.225437_SG_webconnectivity_2a280f1af3b3a01e\",\"measurement_start_time\":\"2026-07-11T17:43:05.000000Z\",\"measurement_uid\":\"20260711174307.225437_SG_webconnectivity_2a280f1af3b3a01e\",\"verification_status\":\"unverified\"}]}" +} \ No newline at end of file diff --git a/tests/e2e/fixtures/search/measurements__since-2026-06-11_until-2026-07-12_failure-false_limit-50_order-desc_offset-50.json b/tests/e2e/fixtures/search/measurements__since-2026-06-11_until-2026-07-12_failure-false_limit-50_order-desc_offset-50.json new file mode 100644 index 000000000..30c07c6dd --- /dev/null +++ b/tests/e2e/fixtures/search/measurements__since-2026-06-11_until-2026-07-12_failure-false_limit-50_order-desc_offset-50.json @@ -0,0 +1,5 @@ +{ + "status": 200, + "contentType": "application/json", + "body": "{\"metadata\":{\"count\":-1,\"current_page\":2,\"limit\":50,\"next_url\":\"https://api.ooni.io/api/v1/measurements?since=2026-06-11&until=2026-07-12&failure=false&limit=50&order=desc&offset=100\",\"offset\":50,\"pages\":-1,\"query_time\":0.07700300216674805},\"results\":[{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://video.cdninstagram.com/favicon.ico\",\"probe_asn\":\"AS3215\",\"probe_cc\":\"FR\",\"report_id\":\"20260711T174308Z_webconnectivity_FR_3215_n4_b6vxqyfoUOpvooAJ\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174308.289259_FR_webconnectivity_60a2089d1c331d2b\",\"measurement_start_time\":\"2026-07-11T17:43:07.000000Z\",\"measurement_uid\":\"20260711174308.289259_FR_webconnectivity_60a2089d1c331d2b\",\"verification_status\":\"verified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://www.guts.com/\",\"probe_asn\":\"AS16276\",\"probe_cc\":\"PL\",\"report_id\":\"20260711T174235Z_webconnectivity_PL_16276_n4_9IIbTGyO2GXoszgU\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174307.710088_PL_webconnectivity_3023e995d6f2f9ba\",\"measurement_start_time\":\"2026-07-11T17:43:07.000000Z\",\"measurement_uid\":\"20260711174307.710088_PL_webconnectivity_3023e995d6f2f9ba\",\"verification_status\":\"unverified\"},{\"anomaly\":true,\"confirmed\":false,\"failure\":false,\"input\":\"https://www.favbet.com/\",\"probe_asn\":\"AS16276\",\"probe_cc\":\"PL\",\"report_id\":\"20260711T174235Z_webconnectivity_PL_16276_n4_9IIbTGyO2GXoszgU\",\"scores\":{\"blocking_general\":1.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0,\"analysis\":{\"blocking_type\":\"dns\"}},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174307.426698_PL_webconnectivity_201864a3015449fd\",\"measurement_start_time\":\"2026-07-11T17:43:07.000000Z\",\"measurement_uid\":\"20260711174307.426698_PL_webconnectivity_201864a3015449fd\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://www.cannaweed.com/\",\"probe_asn\":\"AS16276\",\"probe_cc\":\"PL\",\"report_id\":\"20260711T174235Z_webconnectivity_PL_16276_n4_9IIbTGyO2GXoszgU\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174307.187694_PL_webconnectivity_3d4ef86deda1d306\",\"measurement_start_time\":\"2026-07-11T17:43:07.000000Z\",\"measurement_uid\":\"20260711174307.187694_PL_webconnectivity_3d4ef86deda1d306\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"http://www.hanes.com/\",\"probe_asn\":\"AS16276\",\"probe_cc\":\"PL\",\"report_id\":\"20260711T174235Z_webconnectivity_PL_16276_n4_9IIbTGyO2GXoszgU\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174308.101687_PL_webconnectivity_44f514622c6e7925\",\"measurement_start_time\":\"2026-07-11T17:43:07.000000Z\",\"measurement_uid\":\"20260711174308.101687_PL_webconnectivity_44f514622c6e7925\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://opervzakone.livejournal.com/\",\"probe_asn\":\"AS50716\",\"probe_cc\":\"RU\",\"report_id\":\"20260711T174122Z_webconnectivity_RU_50716_n4_MPQ40oNrnh3bdTD0\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174309.694835_RU_webconnectivity_9c5060b3b8dd87ce\",\"measurement_start_time\":\"2026-07-11T17:43:07.000000Z\",\"measurement_uid\":\"20260711174309.694835_RU_webconnectivity_9c5060b3b8dd87ce\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"http://krilija.sp.ru/\",\"probe_asn\":\"AS50716\",\"probe_cc\":\"RU\",\"report_id\":\"20260711T174122Z_webconnectivity_RU_50716_n4_MPQ40oNrnh3bdTD0\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174307.858603_RU_webconnectivity_52479a14ced3e699\",\"measurement_start_time\":\"2026-07-11T17:43:07.000000Z\",\"measurement_uid\":\"20260711174307.858603_RU_webconnectivity_52479a14ced3e699\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"http://www.cesr.org/\",\"probe_asn\":\"AS9930\",\"probe_cc\":\"MY\",\"report_id\":\"20260711T170008Z_webconnectivity_MY_9930_n4_DBd2sjgHc8d0BZyy\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174308.308342_MY_webconnectivity_8f8a86d184ed480b\",\"measurement_start_time\":\"2026-07-11T17:43:07.000000Z\",\"measurement_uid\":\"20260711174308.308342_MY_webconnectivity_8f8a86d184ed480b\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://www.currenttime.tv/\",\"probe_asn\":\"AS131584\",\"probe_cc\":\"TW\",\"report_id\":\"20260711T161120Z_webconnectivity_TW_131584_n4_drEbujys4tEO61ix\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174308.545624_TW_webconnectivity_2f50ac3757cf93db\",\"measurement_start_time\":\"2026-07-11T17:43:07.000000Z\",\"measurement_uid\":\"20260711174308.545624_TW_webconnectivity_2f50ac3757cf93db\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://valence.community/\",\"probe_asn\":\"AS3215\",\"probe_cc\":\"FR\",\"report_id\":\"20260711T174308Z_webconnectivity_FR_3215_n4_aCDp6YmZgNuefd5c\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174308.047226_FR_webconnectivity_ef0d38c398c3d85b\",\"measurement_start_time\":\"2026-07-11T17:43:06.000000Z\",\"measurement_uid\":\"20260711174308.047226_FR_webconnectivity_ef0d38c398c3d85b\",\"verification_status\":\"verified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://www.betonline.ag/\",\"probe_asn\":\"AS16276\",\"probe_cc\":\"PL\",\"report_id\":\"20260711T174235Z_webconnectivity_PL_16276_n4_9IIbTGyO2GXoszgU\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174306.866605_PL_webconnectivity_71411687b2f5b743\",\"measurement_start_time\":\"2026-07-11T17:43:06.000000Z\",\"measurement_uid\":\"20260711174306.866605_PL_webconnectivity_71411687b2f5b743\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://tonybet.com/\",\"probe_asn\":\"AS16276\",\"probe_cc\":\"PL\",\"report_id\":\"20260711T174235Z_webconnectivity_PL_16276_n4_9IIbTGyO2GXoszgU\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0,\"fingerprints\":[{\"name\":\"cp.fp_x_redirect_just\",\"scope\":\"fp\",\"location_found\":\"body\",\"confidence_no_fp\":5,\"expected_countries\":[]}]},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174306.470635_PL_webconnectivity_2d95283217a7291d\",\"measurement_start_time\":\"2026-07-11T17:43:06.000000Z\",\"measurement_uid\":\"20260711174306.470635_PL_webconnectivity_2d95283217a7291d\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://www.sbs.com.au/language/coronavirus?cid=infocus\",\"probe_asn\":\"AS5432\",\"probe_cc\":\"BE\",\"report_id\":\"20260711T174231Z_webconnectivity_BE_5432_n4_IG07127yNSYuP6dU\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0,\"fingerprints\":[{\"name\":\"cp.fp_x_redirect_just\",\"scope\":\"fp\",\"location_found\":\"body\",\"confidence_no_fp\":5,\"expected_countries\":[]}]},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174309.690843_BE_webconnectivity_f847d5468f0c2b6a\",\"measurement_start_time\":\"2026-07-11T17:43:06.000000Z\",\"measurement_uid\":\"20260711174309.690843_BE_webconnectivity_f847d5468f0c2b6a\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://www.imgbb.com/\",\"probe_asn\":\"AS3352\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174130Z_webconnectivity_ES_3352_n4_OAdt28fTK1LRv3Ju\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0,\"fingerprints\":[{\"name\":\"cp.fp_r_fp_1\",\"scope\":\"fp\",\"location_found\":\"body\",\"confidence_no_fp\":5,\"expected_countries\":[]}]},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174308.322103_ES_webconnectivity_c24b32f5427ac55d\",\"measurement_start_time\":\"2026-07-11T17:43:06.000000Z\",\"measurement_uid\":\"20260711174308.322103_ES_webconnectivity_c24b32f5427ac55d\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://upload.twitter.com/robots.txt\",\"probe_asn\":\"AS3215\",\"probe_cc\":\"FR\",\"report_id\":\"20260711T174306Z_webconnectivity_FR_3215_n4_Bo6E65UJJU8QUlEA\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174306.300221_FR_webconnectivity_759e30054dfa5f1e\",\"measurement_start_time\":\"2026-07-11T17:43:05.000000Z\",\"measurement_uid\":\"20260711174306.300221_FR_webconnectivity_759e30054dfa5f1e\",\"verification_status\":\"verified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://pelagiusasturiensis.wordpress.com/\",\"probe_asn\":\"AS16276\",\"probe_cc\":\"PL\",\"report_id\":\"20260711T174235Z_webconnectivity_PL_16276_n4_9IIbTGyO2GXoszgU\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174306.089527_PL_webconnectivity_eb282b695f888ab9\",\"measurement_start_time\":\"2026-07-11T17:43:05.000000Z\",\"measurement_uid\":\"20260711174306.089527_PL_webconnectivity_eb282b695f888ab9\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://onlyfans.com/\",\"probe_asn\":\"AS16276\",\"probe_cc\":\"PL\",\"report_id\":\"20260711T174235Z_webconnectivity_PL_16276_n4_9IIbTGyO2GXoszgU\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174305.584794_PL_webconnectivity_f64b2f0d0a7f89f0\",\"measurement_start_time\":\"2026-07-11T17:43:05.000000Z\",\"measurement_uid\":\"20260711174305.584794_PL_webconnectivity_f64b2f0d0a7f89f0\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://gol24.pl/\",\"probe_asn\":\"AS16276\",\"probe_cc\":\"PL\",\"report_id\":\"20260711T174235Z_webconnectivity_PL_16276_n4_9IIbTGyO2GXoszgU\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174305.383730_PL_webconnectivity_5009067a73509187\",\"measurement_start_time\":\"2026-07-11T17:43:05.000000Z\",\"measurement_uid\":\"20260711174305.383730_PL_webconnectivity_5009067a73509187\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://fuksiarz.pl/\",\"probe_asn\":\"AS16276\",\"probe_cc\":\"PL\",\"report_id\":\"20260711T174235Z_webconnectivity_PL_16276_n4_9IIbTGyO2GXoszgU\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174305.141787_PL_webconnectivity_e73b5615c3853dc0\",\"measurement_start_time\":\"2026-07-11T17:43:05.000000Z\",\"measurement_uid\":\"20260711174305.141787_PL_webconnectivity_e73b5615c3853dc0\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://www.straitstimes.com/\",\"probe_asn\":\"AS137235\",\"probe_cc\":\"SG\",\"report_id\":\"20260711T174233Z_webconnectivity_SG_137235_n4_aBM3h3wACR614yiq\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174307.225437_SG_webconnectivity_2a280f1af3b3a01e\",\"measurement_start_time\":\"2026-07-11T17:43:05.000000Z\",\"measurement_uid\":\"20260711174307.225437_SG_webconnectivity_2a280f1af3b3a01e\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://www.inoxart.es/\",\"probe_asn\":\"AS3352\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174156Z_webconnectivity_ES_3352_n4_BBpH2orZH1D2bA5Q\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0,\"fingerprints\":[{\"name\":\"cp.fp_x_redirect_just\",\"scope\":\"fp\",\"location_found\":\"body\",\"confidence_no_fp\":5,\"expected_countries\":[]}]},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174308.082752_ES_webconnectivity_06d800c86c8275f3\",\"measurement_start_time\":\"2026-07-11T17:43:05.000000Z\",\"measurement_uid\":\"20260711174308.082752_ES_webconnectivity_06d800c86c8275f3\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://lantern.io/\",\"probe_asn\":\"AS7303\",\"probe_cc\":\"AR\",\"report_id\":\"20260711T174100Z_webconnectivity_AR_7303_n4_gkf6MPHJjyO0cHlz\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174308.882972_AR_webconnectivity_f8d7e6822785c40e\",\"measurement_start_time\":\"2026-07-11T17:43:05.000000Z\",\"measurement_uid\":\"20260711174308.882972_AR_webconnectivity_f8d7e6822785c40e\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"http://www.oikoumene.org/\",\"probe_asn\":\"AS7922\",\"probe_cc\":\"US\",\"report_id\":\"20260711T174036Z_webconnectivity_US_7922_n4_t6yrzBf08qcCq6vn\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174308.671961_US_webconnectivity_2cc98e5a1994f306\",\"measurement_start_time\":\"2026-07-11T17:43:05.000000Z\",\"measurement_uid\":\"20260711174308.671961_US_webconnectivity_2cc98e5a1994f306\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://mr-7.ru/\",\"probe_asn\":\"AS8402\",\"probe_cc\":\"RU\",\"report_id\":\"20260711T173602Z_webconnectivity_RU_8402_n4_mkyuTX2UURT5QDuY\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174305.278246_RU_webconnectivity_7d9526731768a517\",\"measurement_start_time\":\"2026-07-11T17:43:05.000000Z\",\"measurement_uid\":\"20260711174305.278246_RU_webconnectivity_7d9526731768a517\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://www.frontlinedefenders.org/\",\"probe_asn\":\"AS133384\",\"probe_cc\":\"MM\",\"report_id\":\"20260711T173316Z_webconnectivity_MM_133384_n4_JIbUayhacuzxylsI\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174307.958257_MM_webconnectivity_fc3872dadd0bd7a1\",\"measurement_start_time\":\"2026-07-11T17:43:05.000000Z\",\"measurement_uid\":\"20260711174307.958257_MM_webconnectivity_fc3872dadd0bd7a1\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://www.fhi360.org/\",\"probe_asn\":\"AS62005\",\"probe_cc\":\"IL\",\"report_id\":\"20260711T170320Z_webconnectivity_IL_62005_n4_g3MqGh3VnFw4mybY\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174308.554665_IL_webconnectivity_dbf477ae5e855275\",\"measurement_start_time\":\"2026-07-11T17:43:05.000000Z\",\"measurement_uid\":\"20260711174308.554665_IL_webconnectivity_dbf477ae5e855275\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://www.childrensdefense.org/\",\"probe_asn\":\"AS131584\",\"probe_cc\":\"TW\",\"report_id\":\"20260711T161120Z_webconnectivity_TW_131584_n4_drEbujys4tEO61ix\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0,\"fingerprints\":[{\"name\":\"cp.fp_x_redirect_just\",\"scope\":\"fp\",\"location_found\":\"body\",\"confidence_no_fp\":5,\"expected_countries\":[]}]},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174305.718783_TW_webconnectivity_9c06a1674db08358\",\"measurement_start_time\":\"2026-07-11T17:43:05.000000Z\",\"measurement_uid\":\"20260711174305.718783_TW_webconnectivity_9c06a1674db08358\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"http://www.islamicity.com/\",\"probe_asn\":\"AS852\",\"probe_cc\":\"CA\",\"report_id\":\"20260711T174309Z_webconnectivity_CA_852_n4_oVV3NuVPlp0nRvfX\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174309.865096_CA_webconnectivity_8c56e49b7c4d7fd6\",\"measurement_start_time\":\"2026-07-11T17:43:04.000000Z\",\"measurement_uid\":\"20260711174309.865096_CA_webconnectivity_8c56e49b7c4d7fd6\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://twitter.com/\",\"probe_asn\":\"AS16509\",\"probe_cc\":\"SG\",\"report_id\":\"20260711T174307Z_webconnectivity_SG_16509_n4_e2wcoqkiHoKMpv8L\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0,\"fingerprints\":[{\"name\":\"cp.fp_x_redirect_just\",\"scope\":\"fp\",\"location_found\":\"body\",\"confidence_no_fp\":5,\"expected_countries\":[]}]},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174308.255364_SG_webconnectivity_1cb8bb1035ee2166\",\"measurement_start_time\":\"2026-07-11T17:43:04.000000Z\",\"measurement_uid\":\"20260711174308.255364_SG_webconnectivity_1cb8bb1035ee2166\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":null,\"probe_asn\":\"AS27773\",\"probe_cc\":\"SV\",\"report_id\":\"20260711T174306Z_signal_SV_27773_n4_WHEXrhIDcGoQKyJN\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"signal\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174306.369864_SV_signal_16eb40177bd7c7d9\",\"measurement_start_time\":\"2026-07-11T17:43:04.000000Z\",\"measurement_uid\":\"20260711174306.369864_SV_signal_16eb40177bd7c7d9\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://untappd.com/\",\"probe_asn\":\"AS3215\",\"probe_cc\":\"FR\",\"report_id\":\"20260711T174305Z_webconnectivity_FR_3215_n4_OAZzxbDdpk3Csxx7\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174306.010270_FR_webconnectivity_771075da446e7d0a\",\"measurement_start_time\":\"2026-07-11T17:43:04.000000Z\",\"measurement_uid\":\"20260711174306.010270_FR_webconnectivity_771075da446e7d0a\",\"verification_status\":\"verified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://tx.me/\",\"probe_asn\":\"AS3215\",\"probe_cc\":\"FR\",\"report_id\":\"20260711T174304Z_webconnectivity_FR_3215_n4_P1uoSq6Leumb2Oc7\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174304.794864_FR_webconnectivity_9153c8a48221332f\",\"measurement_start_time\":\"2026-07-11T17:43:04.000000Z\",\"measurement_uid\":\"20260711174304.794864_FR_webconnectivity_9153c8a48221332f\",\"verification_status\":\"verified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://www.womenonwaves.org/\",\"probe_asn\":\"AS16276\",\"probe_cc\":\"PL\",\"report_id\":\"20260711T174235Z_webconnectivity_PL_16276_n4_9IIbTGyO2GXoszgU\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174304.785019_PL_webconnectivity_fc47e077b629193f\",\"measurement_start_time\":\"2026-07-11T17:43:04.000000Z\",\"measurement_uid\":\"20260711174304.785019_PL_webconnectivity_fc47e077b629193f\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://www.unfe.org/\",\"probe_asn\":\"AS16276\",\"probe_cc\":\"PL\",\"report_id\":\"20260711T174235Z_webconnectivity_PL_16276_n4_9IIbTGyO2GXoszgU\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174304.374309_PL_webconnectivity_bd6982d5468a5d45\",\"measurement_start_time\":\"2026-07-11T17:43:04.000000Z\",\"measurement_uid\":\"20260711174304.374309_PL_webconnectivity_bd6982d5468a5d45\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://dzen.ru/\",\"probe_asn\":\"AS803\",\"probe_cc\":\"CA\",\"report_id\":\"20260711T174219Z_webconnectivity_CA_803_n4_6SrBnwn7jLniG311\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174308.624336_CA_webconnectivity_2a15e99b3d6280e5\",\"measurement_start_time\":\"2026-07-11T17:43:04.000000Z\",\"measurement_uid\":\"20260711174308.624336_CA_webconnectivity_2a15e99b3d6280e5\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://www.oca.org/\",\"probe_asn\":\"AS7922\",\"probe_cc\":\"US\",\"report_id\":\"20260711T174036Z_webconnectivity_US_7922_n4_t6yrzBf08qcCq6vn\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174305.825536_US_webconnectivity_4e6939dd7f35edaf\",\"measurement_start_time\":\"2026-07-11T17:43:04.000000Z\",\"measurement_uid\":\"20260711174305.825536_US_webconnectivity_4e6939dd7f35edaf\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://mosregtoday.ru/\",\"probe_asn\":\"AS8402\",\"probe_cc\":\"RU\",\"report_id\":\"20260711T173602Z_webconnectivity_RU_8402_n4_mkyuTX2UURT5QDuY\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174304.816756_RU_webconnectivity_ae31cd1ab2849a3a\",\"measurement_start_time\":\"2026-07-11T17:43:04.000000Z\",\"measurement_uid\":\"20260711174304.816756_RU_webconnectivity_ae31cd1ab2849a3a\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://moskva.fm/\",\"probe_asn\":\"AS8402\",\"probe_cc\":\"RU\",\"report_id\":\"20260711T173602Z_webconnectivity_RU_8402_n4_mkyuTX2UURT5QDuY\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174303.913268_RU_webconnectivity_4786d4c4aba0667e\",\"measurement_start_time\":\"2026-07-11T17:43:04.000000Z\",\"measurement_uid\":\"20260711174303.913268_RU_webconnectivity_4786d4c4aba0667e\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://voicesevas.ru/\",\"probe_asn\":\"AS47914\",\"probe_cc\":\"RU\",\"report_id\":\"20260711T134227Z_webconnectivity_RU_47914_n4_4e46OOKjoEXjhVxY\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174300.758863_RU_webconnectivity_6fb40d80412e83f0\",\"measurement_start_time\":\"2026-07-11T17:43:04.000000Z\",\"measurement_uid\":\"20260711174300.758863_RU_webconnectivity_6fb40d80412e83f0\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://www.theatlantic.com/\",\"probe_asn\":\"AS16276\",\"probe_cc\":\"PL\",\"report_id\":\"20260711T174235Z_webconnectivity_PL_16276_n4_9IIbTGyO2GXoszgU\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174304.009764_PL_webconnectivity_0ccbd0939cd4bd28\",\"measurement_start_time\":\"2026-07-11T17:43:03.000000Z\",\"measurement_uid\":\"20260711174304.009764_PL_webconnectivity_0ccbd0939cd4bd28\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://www.privacyinternational.org/\",\"probe_asn\":\"AS16276\",\"probe_cc\":\"PL\",\"report_id\":\"20260711T174235Z_webconnectivity_PL_16276_n4_9IIbTGyO2GXoszgU\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174303.566625_PL_webconnectivity_f7f314f217422129\",\"measurement_start_time\":\"2026-07-11T17:43:03.000000Z\",\"measurement_uid\":\"20260711174303.566625_PL_webconnectivity_f7f314f217422129\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://www.muckrock.com/\",\"probe_asn\":\"AS16276\",\"probe_cc\":\"PL\",\"report_id\":\"20260711T174235Z_webconnectivity_PL_16276_n4_9IIbTGyO2GXoszgU\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0,\"fingerprints\":[{\"name\":\"cp.fp_x_cloudflare_error_1\",\"scope\":\"fp\",\"location_found\":\"body\",\"confidence_no_fp\":5,\"expected_countries\":[]}]},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174303.256687_PL_webconnectivity_4f6faac9cf2ec926\",\"measurement_start_time\":\"2026-07-11T17:43:03.000000Z\",\"measurement_uid\":\"20260711174303.256687_PL_webconnectivity_4f6faac9cf2ec926\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://www.malaysiakini.com/\",\"probe_asn\":\"AS137235\",\"probe_cc\":\"SG\",\"report_id\":\"20260711T174233Z_webconnectivity_SG_137235_n4_aBM3h3wACR614yiq\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174305.165598_SG_webconnectivity_983501034a4c3866\",\"measurement_start_time\":\"2026-07-11T17:43:03.000000Z\",\"measurement_uid\":\"20260711174305.165598_SG_webconnectivity_983501034a4c3866\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://download-installer.cdn.mozilla.net/\",\"probe_asn\":\"AS803\",\"probe_cc\":\"CA\",\"report_id\":\"20260711T174219Z_webconnectivity_CA_803_n4_6SrBnwn7jLniG311\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0,\"fingerprints\":[{\"name\":\"cp.fp_x_index_of\",\"scope\":\"fp\",\"location_found\":\"body\",\"confidence_no_fp\":5,\"expected_countries\":[]}]},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174305.357925_CA_webconnectivity_5bc4abd460ad050d\",\"measurement_start_time\":\"2026-07-11T17:43:03.000000Z\",\"measurement_uid\":\"20260711174305.357925_CA_webconnectivity_5bc4abd460ad050d\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://www.imgbb.com/\",\"probe_asn\":\"AS3352\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174156Z_webconnectivity_ES_3352_n4_BBpH2orZH1D2bA5Q\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0,\"fingerprints\":[{\"name\":\"cp.fp_r_fp_1\",\"scope\":\"fp\",\"location_found\":\"body\",\"confidence_no_fp\":5,\"expected_countries\":[]}]},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174305.169244_ES_webconnectivity_f61e88d48b80e455\",\"measurement_start_time\":\"2026-07-11T17:43:03.000000Z\",\"measurement_uid\":\"20260711174305.169244_ES_webconnectivity_f61e88d48b80e455\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"http://www.imdb.com/\",\"probe_asn\":\"AS3352\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174156Z_webconnectivity_ES_3352_n4_BBpH2orZH1D2bA5Q\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174303.826277_ES_webconnectivity_86d27e81543c7e3d\",\"measurement_start_time\":\"2026-07-11T17:43:03.000000Z\",\"measurement_uid\":\"20260711174303.826277_ES_webconnectivity_86d27e81543c7e3d\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"http://www.imdb.com/\",\"probe_asn\":\"AS3352\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174130Z_webconnectivity_ES_3352_n4_OAdt28fTK1LRv3Ju\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174303.657904_ES_webconnectivity_f0f09efbe03497b9\",\"measurement_start_time\":\"2026-07-11T17:43:03.000000Z\",\"measurement_uid\":\"20260711174303.657904_ES_webconnectivity_f0f09efbe03497b9\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://www.jmarshall.com/\",\"probe_asn\":\"AS1267\",\"probe_cc\":\"IT\",\"report_id\":\"20260711T174012Z_webconnectivity_IT_1267_n4_ugNRCXCCVLgTVE9A\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174303.687444_IT_webconnectivity_cf89ed9ce95f9a51\",\"measurement_start_time\":\"2026-07-11T17:43:03.000000Z\",\"measurement_uid\":\"20260711174303.687444_IT_webconnectivity_cf89ed9ce95f9a51\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://moscowchanges.ru/\",\"probe_asn\":\"AS8402\",\"probe_cc\":\"RU\",\"report_id\":\"20260711T173602Z_webconnectivity_RU_8402_n4_mkyuTX2UURT5QDuY\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174303.383193_RU_webconnectivity_dbc8625cd172c48b\",\"measurement_start_time\":\"2026-07-11T17:43:03.000000Z\",\"measurement_uid\":\"20260711174303.383193_RU_webconnectivity_dbc8625cd172c48b\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://moscow.rtrs.ru/\",\"probe_asn\":\"AS8402\",\"probe_cc\":\"RU\",\"report_id\":\"20260711T173602Z_webconnectivity_RU_8402_n4_mkyuTX2UURT5QDuY\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174302.835268_RU_webconnectivity_8c490adc617c3ee7\",\"measurement_start_time\":\"2026-07-11T17:43:03.000000Z\",\"measurement_uid\":\"20260711174302.835268_RU_webconnectivity_8c490adc617c3ee7\",\"verification_status\":\"unverified\"}]}" +} \ No newline at end of file diff --git a/tests/e2e/fixtures/search/measurements__test_name-web_connectivity_since-2026-06-11_until-2026-07-12_failure-false_limit-50_order-desc.json b/tests/e2e/fixtures/search/measurements__test_name-web_connectivity_since-2026-06-11_until-2026-07-12_failure-false_limit-50_order-desc.json new file mode 100644 index 000000000..c16fcf664 --- /dev/null +++ b/tests/e2e/fixtures/search/measurements__test_name-web_connectivity_since-2026-06-11_until-2026-07-12_failure-false_limit-50_order-desc.json @@ -0,0 +1,5 @@ +{ + "status": 200, + "contentType": "application/json", + "body": "{\"metadata\":{\"count\":-1,\"current_page\":1,\"limit\":50,\"next_url\":\"https://api.ooni.io/api/v1/measurements?test_name=web_connectivity&since=2026-06-11&until=2026-07-12&failure=false&limit=50&order=desc&offset=50\",\"offset\":0,\"pages\":-1,\"query_time\":0.08870983123779297},\"results\":[{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"http://proxy.i2phides.me/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0,\"fingerprints\":[{\"name\":\"cp.fp_x_correct_403\",\"scope\":\"fp\",\"location_found\":\"body\",\"confidence_no_fp\":5,\"expected_countries\":[]},{\"name\":\"cp.fp_satellite_fp_403\",\"scope\":\"fp\",\"location_found\":\"body\",\"confidence_no_fp\":5,\"expected_countries\":[]},{\"name\":\"cp.f_gen_have_permission\",\"scope\":\"vbw\",\"location_found\":\"body\",\"confidence_no_fp\":5,\"expected_countries\":[]}]},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174303.899212_ES_webconnectivity_cb7ef25a464d14d4\",\"measurement_start_time\":\"2026-07-11T17:44:07.000000Z\",\"measurement_uid\":\"20260711174303.899212_ES_webconnectivity_cb7ef25a464d14d4\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://proxify.com/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174302.862234_ES_webconnectivity_a7f2d8e7c742809a\",\"measurement_start_time\":\"2026-07-11T17:44:06.000000Z\",\"measurement_uid\":\"20260711174302.862234_ES_webconnectivity_a7f2d8e7c742809a\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://protonvpn.com/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174301.401390_ES_webconnectivity_df23584a538a17d2\",\"measurement_start_time\":\"2026-07-11T17:44:03.000000Z\",\"measurement_uid\":\"20260711174301.401390_ES_webconnectivity_df23584a538a17d2\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://proton.me/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174259.264963_ES_webconnectivity_cd1394fd1d690569\",\"measurement_start_time\":\"2026-07-11T17:44:02.000000Z\",\"measurement_uid\":\"20260711174259.264963_ES_webconnectivity_cd1394fd1d690569\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://privatevpn.com/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174258.110860_ES_webconnectivity_a07be01375669a18\",\"measurement_start_time\":\"2026-07-11T17:44:00.000000Z\",\"measurement_uid\":\"20260711174258.110860_ES_webconnectivity_a07be01375669a18\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://prism-break.org/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174256.124373_ES_webconnectivity_7d4b7e52d7219dff\",\"measurement_start_time\":\"2026-07-11T17:43:59.000000Z\",\"measurement_uid\":\"20260711174256.124373_ES_webconnectivity_7d4b7e52d7219dff\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://pridesource.com/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174254.611691_ES_webconnectivity_2fa256e4a62af5b9\",\"measurement_start_time\":\"2026-07-11T17:43:56.000000Z\",\"measurement_uid\":\"20260711174254.611691_ES_webconnectivity_2fa256e4a62af5b9\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://pirateparty.org.au/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174252.227099_ES_webconnectivity_a24ac42ce40c9968\",\"measurement_start_time\":\"2026-07-11T17:43:54.000000Z\",\"measurement_uid\":\"20260711174252.227099_ES_webconnectivity_a24ac42ce40c9968\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://pflag.org/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0,\"fingerprints\":[{\"name\":\"cp.fp_x_redirect_just\",\"scope\":\"fp\",\"location_found\":\"body\",\"confidence_no_fp\":5,\"expected_countries\":[]}]},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174249.718165_ES_webconnectivity_4bcb3de092f3c496\",\"measurement_start_time\":\"2026-07-11T17:43:51.000000Z\",\"measurement_uid\":\"20260711174249.718165_ES_webconnectivity_4bcb3de092f3c496\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://outrightinternational.org/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174246.777802_ES_webconnectivity_70fd9dc740b5b33a\",\"measurement_start_time\":\"2026-07-11T17:43:49.000000Z\",\"measurement_uid\":\"20260711174246.777802_ES_webconnectivity_70fd9dc740b5b33a\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://ourworldindata.org/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174245.254422_ES_webconnectivity_22bccbef826bc9c5\",\"measurement_start_time\":\"2026-07-11T17:43:49.000000Z\",\"measurement_uid\":\"20260711174245.254422_ES_webconnectivity_22bccbef826bc9c5\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://otr.cypherpunks.ca/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174244.240259_ES_webconnectivity_54772f3612b147ee\",\"measurement_start_time\":\"2026-07-11T17:43:47.000000Z\",\"measurement_uid\":\"20260711174244.240259_ES_webconnectivity_54772f3612b147ee\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://orbot.app/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174242.999688_ES_webconnectivity_a22f373b4ceadbdf\",\"measurement_start_time\":\"2026-07-11T17:43:46.000000Z\",\"measurement_uid\":\"20260711174242.999688_ES_webconnectivity_a22f373b4ceadbdf\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://openvpn.net/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0,\"fingerprints\":[{\"name\":\"cp.fp_x_groupon\",\"scope\":\"fp\",\"location_found\":\"body\",\"confidence_no_fp\":5,\"expected_countries\":[]}]},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174241.529327_ES_webconnectivity_d277c41d6d3f044b\",\"measurement_start_time\":\"2026-07-11T17:43:45.000000Z\",\"measurement_uid\":\"20260711174241.529327_ES_webconnectivity_d277c41d6d3f044b\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://opennet.net/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0,\"fingerprints\":[{\"name\":\"cp.f_gen_access_denied\",\"scope\":\"vbw\",\"location_found\":\"body\",\"confidence_no_fp\":5,\"expected_countries\":[]}]},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174240.891316_ES_webconnectivity_f749739808049669\",\"measurement_start_time\":\"2026-07-11T17:43:42.000000Z\",\"measurement_uid\":\"20260711174240.891316_ES_webconnectivity_f749739808049669\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://ooni.torproject.org/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174238.002019_ES_webconnectivity_5dacd24743fc4caf\",\"measurement_start_time\":\"2026-07-11T17:43:40.000000Z\",\"measurement_uid\":\"20260711174238.002019_ES_webconnectivity_5dacd24743fc4caf\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://ooni.org/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174236.156908_ES_webconnectivity_314e1944147d0268\",\"measurement_start_time\":\"2026-07-11T17:43:40.000000Z\",\"measurement_uid\":\"20260711174236.156908_ES_webconnectivity_314e1944147d0268\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://onionshare.org/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174235.590221_ES_webconnectivity_6c4efebb2c50b40d\",\"measurement_start_time\":\"2026-07-11T17:43:37.000000Z\",\"measurement_uid\":\"20260711174235.590221_ES_webconnectivity_6c4efebb2c50b40d\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://nypost.com/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0,\"fingerprints\":[{\"name\":\"cp.fp_x_news\",\"scope\":\"fp\",\"location_found\":\"body\",\"confidence_no_fp\":5,\"expected_countries\":[]}]},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174233.143148_ES_webconnectivity_02d65b738516f295\",\"measurement_start_time\":\"2026-07-11T17:43:33.000000Z\",\"measurement_uid\":\"20260711174233.143148_ES_webconnectivity_02d65b738516f295\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://numun.fund/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174228.775472_ES_webconnectivity_5172ef7866611309\",\"measurement_start_time\":\"2026-07-11T17:43:30.000000Z\",\"measurement_uid\":\"20260711174228.775472_ES_webconnectivity_5172ef7866611309\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://now.org/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0,\"fingerprints\":[{\"name\":\"cp.fp_x_redirect_just\",\"scope\":\"fp\",\"location_found\":\"body\",\"confidence_no_fp\":5,\"expected_countries\":[]}]},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174225.953501_ES_webconnectivity_2b7e828605796866\",\"measurement_start_time\":\"2026-07-11T17:43:29.000000Z\",\"measurement_uid\":\"20260711174225.953501_ES_webconnectivity_2b7e828605796866\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://nordvpn.com/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174225.264055_ES_webconnectivity_c5d9f438f8bcfcb1\",\"measurement_start_time\":\"2026-07-11T17:43:29.000000Z\",\"measurement_uid\":\"20260711174225.264055_ES_webconnectivity_c5d9f438f8bcfcb1\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://news.google.com/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174224.858309_ES_webconnectivity_308bbfbe973c109d\",\"measurement_start_time\":\"2026-07-11T17:43:28.000000Z\",\"measurement_uid\":\"20260711174224.858309_ES_webconnectivity_308bbfbe973c109d\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://ncac.org/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174223.680209_ES_webconnectivity_204f71a3e2200c73\",\"measurement_start_time\":\"2026-07-11T17:43:24.000000Z\",\"measurement_uid\":\"20260711174223.680209_ES_webconnectivity_204f71a3e2200c73\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://multiproxy.org/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174220.120502_ES_webconnectivity_f790fe0d2bf7b6ca\",\"measurement_start_time\":\"2026-07-11T17:43:23.000000Z\",\"measurement_uid\":\"20260711174220.120502_ES_webconnectivity_f790fe0d2bf7b6ca\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://mullvad.net/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174218.986232_ES_webconnectivity_7a74a50042dadcb9\",\"measurement_start_time\":\"2026-07-11T17:43:22.000000Z\",\"measurement_uid\":\"20260711174218.986232_ES_webconnectivity_7a74a50042dadcb9\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://moscow.rtrs.ru/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174218.288597_ES_webconnectivity_8f873f97e8f2eeef\",\"measurement_start_time\":\"2026-07-11T17:43:21.000000Z\",\"measurement_uid\":\"20260711174218.288597_ES_webconnectivity_8f873f97e8f2eeef\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://minorityrights.org/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0,\"fingerprints\":[{\"name\":\"cp.fp_x_redirect_just\",\"scope\":\"fp\",\"location_found\":\"body\",\"confidence_no_fp\":5,\"expected_countries\":[]}]},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174216.784242_ES_webconnectivity_53a2b45048a6baf5\",\"measurement_start_time\":\"2026-07-11T17:43:20.000000Z\",\"measurement_uid\":\"20260711174216.784242_ES_webconnectivity_53a2b45048a6baf5\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://messagevortex.net/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174216.258432_ES_webconnectivity_c062a6ef1fcde582\",\"measurement_start_time\":\"2026-07-11T17:43:19.000000Z\",\"measurement_uid\":\"20260711174216.258432_ES_webconnectivity_c062a6ef1fcde582\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://mega.nz/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174215.183842_ES_webconnectivity_c6d4ba0d78f27717\",\"measurement_start_time\":\"2026-07-11T17:43:19.000000Z\",\"measurement_uid\":\"20260711174215.183842_ES_webconnectivity_c6d4ba0d78f27717\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://massbrowser.cs.umass.edu/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174214.589867_ES_webconnectivity_a2ec15331283bc46\",\"measurement_start_time\":\"2026-07-11T17:43:17.000000Z\",\"measurement_uid\":\"20260711174214.589867_ES_webconnectivity_a2ec15331283bc46\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://mask-api.icloud.com/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174212.863643_ES_webconnectivity_574fe0f48d526bad\",\"measurement_start_time\":\"2026-07-11T17:43:16.000000Z\",\"measurement_uid\":\"20260711174212.863643_ES_webconnectivity_574fe0f48d526bad\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://makeamazonpay.com/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174212.038420_ES_webconnectivity_f5a42335b652f38c\",\"measurement_start_time\":\"2026-07-11T17:43:14.000000Z\",\"measurement_uid\":\"20260711174212.038420_ES_webconnectivity_f5a42335b652f38c\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://lokinet.org/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174209.433015_ES_webconnectivity_8b8e04e6201a6783\",\"measurement_start_time\":\"2026-07-11T17:43:13.000000Z\",\"measurement_uid\":\"20260711174209.433015_ES_webconnectivity_8b8e04e6201a6783\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://liveuamap.com/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174208.457601_ES_webconnectivity_9ead4ecbdf9958d5\",\"measurement_start_time\":\"2026-07-11T17:43:12.000000Z\",\"measurement_uid\":\"20260711174208.457601_ES_webconnectivity_9ead4ecbdf9958d5\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://lgbtqia.space/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0,\"fingerprints\":[{\"name\":\"cp.fp_x_redirect_just\",\"scope\":\"fp\",\"location_found\":\"body\",\"confidence_no_fp\":5,\"expected_countries\":[]}]},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174206.411531_ES_webconnectivity_e9827834952c9cde\",\"measurement_start_time\":\"2026-07-11T17:43:10.000000Z\",\"measurement_uid\":\"20260711174206.411531_ES_webconnectivity_e9827834952c9cde\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"http://lgbtvacationplanners.com/\",\"probe_asn\":\"AS12479\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174134Z_webconnectivity_ES_12479_n4_Sa1NbFumgFDvoMrg\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174207.474428_ES_webconnectivity_cc5ebf73762f1b68\",\"measurement_start_time\":\"2026-07-11T17:43:10.000000Z\",\"measurement_uid\":\"20260711174207.474428_ES_webconnectivity_cc5ebf73762f1b68\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://video.twimg.com/tweet_video/EC6DSXDXsAEhHAa.mp4\",\"probe_asn\":\"AS3215\",\"probe_cc\":\"FR\",\"report_id\":\"20260711T174308Z_webconnectivity_FR_3215_n4_0SwoByj0o0ICdn3t\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174308.833294_FR_webconnectivity_49c8cf7083349f86\",\"measurement_start_time\":\"2026-07-11T17:43:08.000000Z\",\"measurement_uid\":\"20260711174308.833294_FR_webconnectivity_49c8cf7083349f86\",\"verification_status\":\"verified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://www.match.com/\",\"probe_asn\":\"AS16276\",\"probe_cc\":\"PL\",\"report_id\":\"20260711T174235Z_webconnectivity_PL_16276_n4_9IIbTGyO2GXoszgU\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0,\"fingerprints\":[{\"name\":\"cp.fp_x_cloudflare_error_1\",\"scope\":\"fp\",\"location_found\":\"body\",\"confidence_no_fp\":5,\"expected_countries\":[]}]},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174308.850340_PL_webconnectivity_fb7789c58f84d5c4\",\"measurement_start_time\":\"2026-07-11T17:43:08.000000Z\",\"measurement_uid\":\"20260711174308.850340_PL_webconnectivity_fb7789c58f84d5c4\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://www.happn.com/\",\"probe_asn\":\"AS16276\",\"probe_cc\":\"PL\",\"report_id\":\"20260711T174235Z_webconnectivity_PL_16276_n4_9IIbTGyO2GXoszgU\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0,\"fingerprints\":[{\"name\":\"cp.fp_x_redirect_just\",\"scope\":\"fp\",\"location_found\":\"body\",\"confidence_no_fp\":5,\"expected_countries\":[]}]},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174308.575587_PL_webconnectivity_fd66997a659e58f3\",\"measurement_start_time\":\"2026-07-11T17:43:08.000000Z\",\"measurement_uid\":\"20260711174308.575587_PL_webconnectivity_fd66997a659e58f3\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://www.instructables.com/\",\"probe_asn\":\"AS3352\",\"probe_cc\":\"ES\",\"report_id\":\"20260711T174156Z_webconnectivity_ES_3352_n4_BBpH2orZH1D2bA5Q\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0,\"fingerprints\":[{\"name\":\"cp.fp_x_redirect_just\",\"scope\":\"fp\",\"location_found\":\"body\",\"confidence_no_fp\":5,\"expected_countries\":[]}]},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174308.872905_ES_webconnectivity_1678b7507d717660\",\"measurement_start_time\":\"2026-07-11T17:43:08.000000Z\",\"measurement_uid\":\"20260711174308.872905_ES_webconnectivity_1678b7507d717660\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://video.cdninstagram.com/favicon.ico\",\"probe_asn\":\"AS3215\",\"probe_cc\":\"FR\",\"report_id\":\"20260711T174308Z_webconnectivity_FR_3215_n4_b6vxqyfoUOpvooAJ\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174308.289259_FR_webconnectivity_60a2089d1c331d2b\",\"measurement_start_time\":\"2026-07-11T17:43:07.000000Z\",\"measurement_uid\":\"20260711174308.289259_FR_webconnectivity_60a2089d1c331d2b\",\"verification_status\":\"verified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://www.guts.com/\",\"probe_asn\":\"AS16276\",\"probe_cc\":\"PL\",\"report_id\":\"20260711T174235Z_webconnectivity_PL_16276_n4_9IIbTGyO2GXoszgU\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174307.710088_PL_webconnectivity_3023e995d6f2f9ba\",\"measurement_start_time\":\"2026-07-11T17:43:07.000000Z\",\"measurement_uid\":\"20260711174307.710088_PL_webconnectivity_3023e995d6f2f9ba\",\"verification_status\":\"unverified\"},{\"anomaly\":true,\"confirmed\":false,\"failure\":false,\"input\":\"https://www.favbet.com/\",\"probe_asn\":\"AS16276\",\"probe_cc\":\"PL\",\"report_id\":\"20260711T174235Z_webconnectivity_PL_16276_n4_9IIbTGyO2GXoszgU\",\"scores\":{\"blocking_general\":1.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0,\"analysis\":{\"blocking_type\":\"dns\"}},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174307.426698_PL_webconnectivity_201864a3015449fd\",\"measurement_start_time\":\"2026-07-11T17:43:07.000000Z\",\"measurement_uid\":\"20260711174307.426698_PL_webconnectivity_201864a3015449fd\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://www.cannaweed.com/\",\"probe_asn\":\"AS16276\",\"probe_cc\":\"PL\",\"report_id\":\"20260711T174235Z_webconnectivity_PL_16276_n4_9IIbTGyO2GXoszgU\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174307.187694_PL_webconnectivity_3d4ef86deda1d306\",\"measurement_start_time\":\"2026-07-11T17:43:07.000000Z\",\"measurement_uid\":\"20260711174307.187694_PL_webconnectivity_3d4ef86deda1d306\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"http://www.hanes.com/\",\"probe_asn\":\"AS16276\",\"probe_cc\":\"PL\",\"report_id\":\"20260711T174235Z_webconnectivity_PL_16276_n4_9IIbTGyO2GXoszgU\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174308.101687_PL_webconnectivity_44f514622c6e7925\",\"measurement_start_time\":\"2026-07-11T17:43:07.000000Z\",\"measurement_uid\":\"20260711174308.101687_PL_webconnectivity_44f514622c6e7925\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"http://krilija.sp.ru/\",\"probe_asn\":\"AS50716\",\"probe_cc\":\"RU\",\"report_id\":\"20260711T174122Z_webconnectivity_RU_50716_n4_MPQ40oNrnh3bdTD0\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174307.858603_RU_webconnectivity_52479a14ced3e699\",\"measurement_start_time\":\"2026-07-11T17:43:07.000000Z\",\"measurement_uid\":\"20260711174307.858603_RU_webconnectivity_52479a14ced3e699\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"http://www.cesr.org/\",\"probe_asn\":\"AS9930\",\"probe_cc\":\"MY\",\"report_id\":\"20260711T170008Z_webconnectivity_MY_9930_n4_DBd2sjgHc8d0BZyy\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174308.308342_MY_webconnectivity_8f8a86d184ed480b\",\"measurement_start_time\":\"2026-07-11T17:43:07.000000Z\",\"measurement_uid\":\"20260711174308.308342_MY_webconnectivity_8f8a86d184ed480b\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://www.currenttime.tv/\",\"probe_asn\":\"AS131584\",\"probe_cc\":\"TW\",\"report_id\":\"20260711T161120Z_webconnectivity_TW_131584_n4_drEbujys4tEO61ix\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174308.545624_TW_webconnectivity_2f50ac3757cf93db\",\"measurement_start_time\":\"2026-07-11T17:43:07.000000Z\",\"measurement_uid\":\"20260711174308.545624_TW_webconnectivity_2f50ac3757cf93db\",\"verification_status\":\"unverified\"},{\"anomaly\":false,\"confirmed\":false,\"failure\":false,\"input\":\"https://valence.community/\",\"probe_asn\":\"AS3215\",\"probe_cc\":\"FR\",\"report_id\":\"20260711T174308Z_webconnectivity_FR_3215_n4_aCDp6YmZgNuefd5c\",\"scores\":{\"blocking_general\":0.0,\"blocking_global\":0.0,\"blocking_country\":0.0,\"blocking_isp\":0.0,\"blocking_local\":0.0},\"test_name\":\"web_connectivity\",\"measurement_url\":\"https://api.ooni.io/api/v1/raw_measurement?measurement_uid=20260711174308.047226_FR_webconnectivity_ef0d38c398c3d85b\",\"measurement_start_time\":\"2026-07-11T17:43:06.000000Z\",\"measurement_uid\":\"20260711174308.047226_FR_webconnectivity_ef0d38c398c3d85b\",\"verification_status\":\"verified\"}]}" +} \ No newline at end of file diff --git a/tests/e2e/helpers/mockApi.ts b/tests/e2e/helpers/mockApi.ts new file mode 100644 index 000000000..f1c409832 --- /dev/null +++ b/tests/e2e/helpers/mockApi.ts @@ -0,0 +1,199 @@ +import crypto from 'node:crypto' +import fs from 'node:fs' +import path from 'node:path' +import type { APIResponse, Page } from '@playwright/test' + +/** + * Lightweight record/replay mocking for the OONI API used in e2e tests. + * + * - By default (offline), requests matching `urlPattern` are served from saved + * JSON fixtures in `tests/e2e/fixtures/<namespace>/`. No network is touched. + * - With `UPDATE_FIXTURES=1`, a missing fixture is fetched from the live API + * once and written to disk (2xx/3xx/4xx only — 429/5xx are never cached so a + * rate-limited response can't poison the fixtures). On 429 the request is + * retried a few times with backoff; if the quota is still exhausted it throws + * a clear message instead of silently saving nothing. + * - A missing fixture without `UPDATE_FIXTURES` throws, so CI can never silently + * fall back to the live (rate-limited) API. + * + * CORS headers are always injected on replay because api.ooni.org does not send + * them for the localhost test origin. + */ + +const FIXTURES_ROOT = path.join(__dirname, '..', 'fixtures') +const UPDATE = !!process.env.UPDATE_FIXTURES + +const MOCK_API_HOSTS = new Set([ + new URL(process.env.NEXT_PUBLIC_OONI_API ?? 'https://api.ooni.org').host, + 'api.ooni.io', +]) + +const RATE_LIMIT_RETRIES = 3 +const RATE_LIMIT_BACKOFF_MS = [2000, 5000, 10000] + +const corsHeaders = { + 'access-control-allow-origin': '*', + 'access-control-allow-credentials': 'true', +} + +const preflightHeaders = { + ...corsHeaders, + 'access-control-allow-methods': 'GET, POST, PUT, DELETE, OPTIONS', + 'access-control-allow-headers': 'Content-Type, Authorization', + 'access-control-max-age': '86400', +} + +type SavedResponse = { + status: number + contentType: string + body: string +} + +const sleep = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms)) + +/** API responses sometimes link to api.ooni.io; the app uses api.ooni.org in tests. */ +function normalizeFixtureBody(body: string): string { + return body.replaceAll('https://api.ooni.io', 'https://api.ooni.org') +} + +/** Normalize query encoding so browser and SSR requests resolve the same fixture. */ +function canonicalFixtureUrl(urlString: string): string { + const url = new URL(urlString) + const canonical = new URL(`${url.origin}${url.pathname}`) + for (const [key, value] of url.searchParams.entries()) { + canonical.searchParams.append(key, value) + } + return canonical.toString() +} + +/** + * Build a human-readable, filesystem-safe fixture filename from a request, e.g. + * GET /api/v1/measurement_meta?measurement_uid=20221110..._telegram_...&full=true + * -> measurement_meta__measurement_uid-20221110..._telegram_..._full-true.json + * A short hash suffix is added only when the name is truncated, to keep + * uniqueness without sacrificing readability for the common case. + */ +function fixtureFileName(method: string, urlString: string): string { + const url = new URL(canonicalFixtureUrl(urlString)) + const lastSegment = url.pathname.split('/').filter(Boolean).pop() || 'root' + const params = [...url.searchParams.entries()] + .map(([key, value]) => `${key}-${value}`) + .join('_') + + let base = params ? `${lastSegment}__${params}` : lastSegment + if (method !== 'GET') base = `${method.toLowerCase()}_${base}` + + let name = base.replace(/[^a-zA-Z0-9._-]/g, '-') + + const MAX = 120 + if (name.length > MAX) { + const hash = crypto + .createHash('sha1') + .update(`${method} ${url.pathname}${url.search}`) + .digest('hex') + .slice(0, 8) + name = `${name.slice(0, MAX)}_${hash}` + } + + return `${name}.json` +} + +function fixturePath(namespace: string, method: string, urlString: string): string { + return path.join(FIXTURES_ROOT, namespace, fixtureFileName(method, urlString)) +} + +function shouldMockRequest(urlString: string): boolean { + try { + return MOCK_API_HOSTS.has(new URL(urlString).host) + } catch { + return false + } +} + +/** Fetch from the live API, retrying past transient 429 rate limits. */ +async function fetchWithRateLimitRetry( + route: Parameters<Parameters<Page['route']>[1]>[0], +): Promise<APIResponse> { + let response = await route.fetch() + for ( + let attempt = 0; + response.status() === 429 && attempt < RATE_LIMIT_RETRIES; + attempt++ + ) { + await sleep(RATE_LIMIT_BACKOFF_MS[attempt] ?? 10000) + response = await route.fetch() + } + return response +} + +/** + * Intercept `urlPattern` on `page` and serve fixtures from `namespace`. + */ +export async function mockApi( + page: Page, + urlPattern: string, + namespace: string, +): Promise<void> { + await page.route(urlPattern, async (route) => { + const request = route.request() + + if (!shouldMockRequest(request.url())) { + await route.continue() + return + } + + if (request.method() === 'OPTIONS') { + await route.fulfill({ status: 200, headers: preflightHeaders }) + return + } + + const file = fixturePath(namespace, request.method(), request.url()) + + if (fs.existsSync(file)) { + const saved: SavedResponse = JSON.parse(fs.readFileSync(file, 'utf-8')) + await route.fulfill({ + status: saved.status, + headers: { 'content-type': saved.contentType, ...corsHeaders }, + body: normalizeFixtureBody(saved.body), + }) + return + } + + if (!UPDATE) { + throw new Error( + `Missing fixture for ${request.method()} ${request.url()}\n` + + `Record it by re-running with UPDATE_FIXTURES=1.\nExpected file: ${file}`, + ) + } + + const response = await fetchWithRateLimitRetry(route) + const body = await response.body() + const status = response.status() + const contentType = response.headers()['content-type'] ?? 'application/json' + + if (status === 429) { + throw new Error( + `API quota exceeded (429) while recording ${request.url()}.\n` + + 'Wait for the rate limit to reset, then re-run with UPDATE_FIXTURES=1. ' + + 'Fixtures already saved are reused, so recording resumes where it left off.', + ) + } + + // Never persist server errors — re-run to capture a good response. + if (status < 500) { + fs.mkdirSync(path.dirname(file), { recursive: true }) + const saved: SavedResponse = { + status, + contentType, + body: body.toString('utf-8'), + } + fs.writeFileSync(file, JSON.stringify(saved, null, 2)) + } + + await route.fulfill({ + status, + headers: { 'content-type': contentType, ...corsHeaders }, + body, + }) + }) +} diff --git a/tests/e2e/home.spec.ts b/tests/e2e/home.spec.ts index 32613a2bf..84cc35b7c 100644 --- a/tests/e2e/home.spec.ts +++ b/tests/e2e/home.spec.ts @@ -3,7 +3,6 @@ import { test, expect } from '@playwright/test' test.skip('Home Page Tests', () => { test.beforeEach(async ({ page }) => { await page.goto('/') - await page.waitForLoadState('networkidle') }) // TODO: Check if stats appear diff --git a/tests/e2e/legacy.spec.ts b/tests/e2e/legacy.spec.ts index f6f8c18f0..0f220c135 100644 --- a/tests/e2e/legacy.spec.ts +++ b/tests/e2e/legacy.spec.ts @@ -1,39 +1,13 @@ import { test, expect } from '@playwright/test' +import { mockApi } from './helpers/mockApi' test.describe('Search Page Tests', () => { - test.beforeEach(async ({ page }) => { - await page.route('**/api/**', async (route) => { - const request = route.request() - - // Handle OPTIONS preflight requests - if (request.method() === 'OPTIONS') { - await route.fulfill({ - status: 200, - headers: { - 'Access-Control-Allow-Origin': '*', - 'Access-Control-Allow-Methods': 'GET, POST, PUT, DELETE, OPTIONS', - 'Access-Control-Allow-Headers': 'Content-Type, Authorization', - 'Access-Control-Max-Age': '86400', - }, - }) - return - } - - // For actual requests, fetch and add CORS headers - const response = await route.fetch() - const body = await response.body() - const headers = response.headers() + test.afterEach(async ({ page }) => { + await page.unrouteAll({ behavior: 'ignoreErrors' }) + }) - await route.fulfill({ - status: response.status(), - headers: { - ...headers, - 'Access-Control-Allow-Origin': '*', - 'Access-Control-Allow-Credentials': 'true', - }, - body: body, - }) - }) + test.beforeEach(async ({ page }) => { + await mockApi(page, '**/api/v1/measurement_meta*', 'measurement_meta') }) // test('can access "HTTP Hosts" measurements', async ({ page }) => { @@ -52,7 +26,6 @@ test.describe('Search Page Tests', () => { test('legacy measurement page shows enough information', async ({ page }) => { await page.goto('/m/01201503307dd8855f39f3d8f78be05f0c67770d') - await page.waitForLoadState('networkidle') await expect(page.getByTestId('common-summary')).toContainText('Canada') await expect(page.getByTestId('common-summary')).toContainText('AS812') diff --git a/tests/e2e/mat.spec.ts b/tests/e2e/mat.spec.ts index b144d54e0..439157df9 100644 --- a/tests/e2e/mat.spec.ts +++ b/tests/e2e/mat.spec.ts @@ -1,4 +1,5 @@ import { test, expect } from '@playwright/test' +import { mockApi } from './helpers/mockApi' test.describe('MAT Tests', () => { test.describe('MAT redirections', () => { @@ -27,44 +28,16 @@ test.describe('MAT Tests', () => { }) test.describe('MAT Basics', () => { - test.beforeEach(async ({ page }) => { - await page.route('**/api/v1/aggregation*', async (route) => { - const request = route.request() - - // Handle OPTIONS preflight requests - if (request.method() === 'OPTIONS') { - await route.fulfill({ - status: 200, - headers: { - 'Access-Control-Allow-Origin': '*', - 'Access-Control-Allow-Methods': 'GET, POST, PUT, DELETE, OPTIONS', - 'Access-Control-Allow-Headers': 'Content-Type, Authorization', - 'Access-Control-Max-Age': '86400', - }, - }) - return - } - - // For actual requests, fetch and add CORS headers - const response = await route.fetch() - const body = await response.body() - const headers = response.headers() + test.afterEach(async ({ page }) => { + await page.unrouteAll({ behavior: 'ignoreErrors' }) + }) - await route.fulfill({ - status: response.status(), - headers: { - ...headers, - 'Access-Control-Allow-Origin': '*', - 'Access-Control-Allow-Credentials': 'true', - }, - body: body, - }) - }) + test.beforeEach(async ({ page }) => { + await mockApi(page, '**/api/v1/aggregation*', 'aggregation') await page.goto( '/chart/mat?test_name=web_connectivity&since=2022-03-01&until=2022-03-04&axis_x=measurement_start_day&time_grain=day', ) - await page.waitForLoadState('networkidle') }) test('it loads', async ({ page }) => { diff --git a/tests/e2e/measurement.spec.ts b/tests/e2e/measurement.spec.ts index bcab58c20..d76750657 100644 --- a/tests/e2e/measurement.spec.ts +++ b/tests/e2e/measurement.spec.ts @@ -1,4 +1,5 @@ import { test, expect } from '@playwright/test' +import { mockApi } from './helpers/mockApi' const normalColor = 'rgb(47, 158, 68)' const anomalyColor = 'rgb(230, 119, 0)' @@ -212,38 +213,7 @@ test.describe('Measurement Page Tests', () => { }) test.beforeEach(async ({ page }) => { - await page.route('**/api/v1/measurement_meta*', async (route) => { - const request = route.request() - - // Handle OPTIONS preflight requests - if (request.method() === 'OPTIONS') { - await route.fulfill({ - status: 200, - headers: { - 'Access-Control-Allow-Origin': '*', - 'Access-Control-Allow-Methods': 'GET, POST, PUT, DELETE, OPTIONS', - 'Access-Control-Allow-Headers': 'Content-Type, Authorization', - 'Access-Control-Max-Age': '86400', - }, - }) - return - } - - // For actual requests, fetch and add CORS headers - const response = await route.fetch() - const body = await response.body() - const headers = response.headers() - - await route.fulfill({ - status: response.status(), - headers: { - ...headers, - 'Access-Control-Allow-Origin': '*', - 'Access-Control-Allow-Credentials': 'true', - }, - body: body, - }) - }) + await mockApi(page, '**/api/v1/measurement_meta*', 'measurement_meta') }) test.describe('Accessing old measurement path (/measurement) with report_id and input query', () => { @@ -269,7 +239,6 @@ test.describe('Measurement Page Tests', () => { page, }) => { await page.goto(url) - await page.waitForLoadState('networkidle') const hero = page.getByTestId('common-summary') await expect(hero).toHaveCSS('background-color', color) @@ -291,7 +260,6 @@ test.describe('Measurement Page Tests', () => { }) => { const reportIdNotInDB = 'this-measurement-does-not-exist' await page.goto(`/m/${reportIdNotInDB}`) - await page.waitForLoadState('networkidle') // The NotFound component shows a heading with the title const heading = page.locator('h4') @@ -327,7 +295,6 @@ test.describe('Measurement Page Tests', () => { const measurementUrl = '/m/20230307142542.625294_US_webconnectivity_9215f30cf2412f49' await page.goto(measurementUrl) - await page.waitForLoadState('networkidle') await page.getByText('VERIFY').click() @@ -353,7 +320,6 @@ test.describe('Measurement Page Tests', () => { '/m/20230307142542.625294_US_webconnectivity_9215f30cf2412f49' await page.goto(measurementUrl) - await page.waitForLoadState('networkidle') await page.getByText('VERIFY').click() diff --git a/tests/e2e/search.spec.ts b/tests/e2e/search.spec.ts index 9c492a2ad..3a2eea366 100644 --- a/tests/e2e/search.spec.ts +++ b/tests/e2e/search.spec.ts @@ -1,43 +1,16 @@ import dayjs from '../../services/dayjs' import { test, expect } from '@playwright/test' +import { mockApi } from './helpers/mockApi' test.describe('Search Page Tests', () => { + test.afterEach(async ({ page }) => { + await page.unrouteAll({ behavior: 'ignoreErrors' }) + }) + test.beforeEach(async ({ page }) => { - await page.route('**/api/**', async (route) => { - const request = route.request() - - // Handle OPTIONS preflight requests - if (request.method() === 'OPTIONS') { - await route.fulfill({ - status: 200, - headers: { - 'Access-Control-Allow-Origin': '*', - 'Access-Control-Allow-Methods': 'GET, POST, PUT, DELETE, OPTIONS', - 'Access-Control-Allow-Headers': 'Content-Type, Authorization', - 'Access-Control-Max-Age': '86400', - }, - }) - return - } - - // For actual requests, fetch and add CORS headers - const response = await route.fetch() - const body = await response.body() - const headers = response.headers() - - await route.fulfill({ - status: response.status(), - headers: { - ...headers, - 'Access-Control-Allow-Origin': '*', - 'Access-Control-Allow-Credentials': 'true', - }, - body: body, - }) - }) + await mockApi(page, '**/api.ooni.org/**', 'search') await page.goto('/search') - await page.waitForLoadState('networkidle') }) test('default filter shows 50 results', async ({ page }) => { @@ -80,12 +53,10 @@ test.describe('Search Page Tests', () => { test('fetches more results when "Load More" button is clicked', async ({ page, }) => { - await page.getByTestId('load-more-button').click() - - // Wait for API call and results to update - await page.waitForResponse('**/api/v1/measurements*') - const resultsList = page.getByTestId('results-list').getByRole('link') + await expect(resultsList).toHaveCount(50) + + await page.getByTestId('load-more-button').click() await expect(resultsList).toHaveCount(100) }) diff --git a/yarn.lock b/yarn.lock index 302a75c78..81202b036 100644 --- a/yarn.lock +++ b/yarn.lock @@ -742,43 +742,6 @@ resolved "https://registry.yarnpkg.com/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.5.tgz#a81ffb00e69267cd0a1d626eaedb8a8430b2b2f8" integrity sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw== -"@inquirer/ansi@^1.0.2": - version "1.0.2" - resolved "https://registry.yarnpkg.com/@inquirer/ansi/-/ansi-1.0.2.tgz#674a4c4d81ad460695cb2a1fc69d78cd187f337e" - integrity sha512-S8qNSZiYzFd0wAcyG5AXCvUHC5Sr7xpZ9wZ2py9XR88jUz8wooStVx5M6dRzczbBWjic9NP7+rY0Xi7qqK/aMQ== - -"@inquirer/confirm@^5.0.0": - version "5.1.21" - resolved "https://registry.yarnpkg.com/@inquirer/confirm/-/confirm-5.1.21.tgz#610c4acd7797d94890a6e2dde2c98eb1e891dd12" - integrity sha512-KR8edRkIsUayMXV+o3Gv+q4jlhENF9nMYUZs9PA2HzrXeHI8M5uDag70U7RJn9yyiMZSbtF5/UexBtAVtZGSbQ== - dependencies: - "@inquirer/core" "^10.3.2" - "@inquirer/type" "^3.0.10" - -"@inquirer/core@^10.3.2": - version "10.3.2" - resolved "https://registry.yarnpkg.com/@inquirer/core/-/core-10.3.2.tgz#535979ff3ff4fe1e7cc4f83e2320504c743b7e20" - integrity sha512-43RTuEbfP8MbKzedNqBrlhhNKVwoK//vUFNW3Q3vZ88BLcrs4kYpGg+B2mm5p2K/HfygoCxuKwJJiv8PbGmE0A== - dependencies: - "@inquirer/ansi" "^1.0.2" - "@inquirer/figures" "^1.0.15" - "@inquirer/type" "^3.0.10" - cli-width "^4.1.0" - mute-stream "^2.0.0" - signal-exit "^4.1.0" - wrap-ansi "^6.2.0" - yoctocolors-cjs "^2.1.3" - -"@inquirer/figures@^1.0.15": - version "1.0.15" - resolved "https://registry.yarnpkg.com/@inquirer/figures/-/figures-1.0.15.tgz#dbb49ed80df11df74268023b496ac5d9acd22b3a" - integrity sha512-t2IEY+unGHOzAaVM5Xx6DEWKeXlDDcNPeDyUpsRc6CUhBfU3VQOEl+Vssh7VNp1dR8MdUJBWhuObjXCsVpjN5g== - -"@inquirer/type@^3.0.10": - version "3.0.10" - resolved "https://registry.yarnpkg.com/@inquirer/type/-/type-3.0.10.tgz#11ed564ec78432a200ea2601a212d24af8150d50" - integrity sha512-BvziSRxfz5Ov8ch0z/n3oijRSEcEsHnhggm4xFZe93DHcUCTlutlq9Ox4SVENAfcRD22UQq7T/atg9Wr3k09eA== - "@isaacs/cliui@^8.0.2": version "8.0.2" resolved "https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz#b37667b7bc181c168782259bab42474fbf52b550" @@ -834,18 +797,6 @@ react-lifecycles-compat "~3.0.4" react-textarea-autosize "~8.5.9" -"@mswjs/interceptors@^0.41.2": - version "0.41.3" - resolved "https://registry.yarnpkg.com/@mswjs/interceptors/-/interceptors-0.41.3.tgz#d766dc1a168aa315a6a0b2d0f2e0cf1b74f23c82" - integrity sha512-cXu86tF4VQVfwz8W1SPbhoRyHJkti6mjH/XJIxp40jhO4j2k1m4KYrEykxqWPkFF3vrK4rgQppBh//AwyGSXPA== - dependencies: - "@open-draft/deferred-promise" "^2.2.0" - "@open-draft/logger" "^0.3.0" - "@open-draft/until" "^2.0.0" - is-node-process "^1.2.0" - outvariant "^1.4.3" - strict-event-emitter "^0.5.1" - "@napi-rs/wasm-runtime@^1.1.1": version "1.1.1" resolved "https://registry.yarnpkg.com/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.1.tgz#c3705ab549d176b8dc5172723d6156c3dc426af2" @@ -1089,24 +1040,6 @@ d3-delaunay "^6.0.4" d3-scale "^4.0.2" -"@open-draft/deferred-promise@^2.2.0": - version "2.2.0" - resolved "https://registry.yarnpkg.com/@open-draft/deferred-promise/-/deferred-promise-2.2.0.tgz#4a822d10f6f0e316be4d67b4d4f8c9a124b073bd" - integrity sha512-CecwLWx3rhxVQF6V4bAgPS5t+So2sTbPgAzafKkVizyi7tlwpcFpdFqq+wqF2OwNBmqFuu6tOyouTuxgpMfzmA== - -"@open-draft/logger@^0.3.0": - version "0.3.0" - resolved "https://registry.yarnpkg.com/@open-draft/logger/-/logger-0.3.0.tgz#2b3ab1242b360aa0adb28b85f5d7da1c133a0954" - integrity sha512-X2g45fzhxH238HKO4xbSr7+wBS8Fvw6ixhTDuvLd5mqh6bJJCFAPwU9mPDxbcrRtfxv4u5IHCEH77BmxvXmmxQ== - dependencies: - is-node-process "^1.2.0" - outvariant "^1.4.0" - -"@open-draft/until@^2.0.0": - version "2.1.0" - resolved "https://registry.yarnpkg.com/@open-draft/until/-/until-2.1.0.tgz#0acf32f470af2ceaf47f095cdecd40d68666efda" - integrity sha512-U69T3ItWHvLwGg5eJ0n3I62nWuE6ilHlmz7zM0npLBRvPRd7e6NYmg54vvRtP5mZG7kZqZCFVdsTWo7BPtBujg== - "@opentelemetry/api-logs@0.207.0": version "0.207.0" resolved "https://registry.yarnpkg.com/@opentelemetry/api-logs/-/api-logs-0.207.0.tgz#ae991c51eedda55af037a3e6fc1ebdb12b289f49" @@ -1402,12 +1335,12 @@ resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33" integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg== -"@playwright/test@^1.57.0": - version "1.58.2" - resolved "https://registry.yarnpkg.com/@playwright/test/-/test-1.58.2.tgz#b0ad585d2e950d690ef52424967a42f40c6d2cbd" - integrity sha512-akea+6bHYBBfA9uQqSYmlJXn61cTa+jbO87xVLCWbTqbWadRVmhxlXATaOjOgcBaWU4ePo0wB41KMFv3o35IXA== +"@playwright/test@^1.61.1": + version "1.61.1" + resolved "https://registry.yarnpkg.com/@playwright/test/-/test-1.61.1.tgz#48568dc22af7819e55fa5e8e3bc79b7e6a3e6675" + integrity sha512-8nKv6+0RJSL9FE4jYOEGXnPeM/Hg12qZpmqzZjRh3qM0Y7c3z1mrOTfFLids72RDQYVh9WpLEfR5WdpNX4fkig== dependencies: - playwright "1.58.2" + playwright "1.61.1" "@prisma/instrumentation@7.4.2": version "7.4.2" @@ -2158,11 +2091,6 @@ dependencies: csstype "^3.2.2" -"@types/statuses@^2.0.6": - version "2.0.6" - resolved "https://registry.yarnpkg.com/@types/statuses/-/statuses-2.0.6.tgz#66748315cc9a96d63403baa8671b2c124f8633aa" - integrity sha512-xMAgYwceFhRA2zY+XbEA7mxYbA093wdiW8Vu6gZPGWy9cmOyU9XesH1tNcEWsKFd5Vzrqx5T3D38PWx1FIIXkA== - "@types/tedious@^4.0.14": version "4.0.14" resolved "https://registry.yarnpkg.com/@types/tedious/-/tedious-4.0.14.tgz#868118e7a67808258c05158e9cad89ca58a2aec1" @@ -2430,11 +2358,6 @@ cjs-module-lexer@^2.2.0: resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-2.2.0.tgz#b3ca5101843389259ade7d88c77bd06ce55849ca" integrity sha512-4bHTS2YuzUvtoLjdy+98ykbNB5jS0+07EvFNXerqZQJ89F7DI6ET7OQo/HJuW6K0aVsKA9hj9/RVb2kQVOrPDQ== -cli-width@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-4.1.0.tgz#42daac41d3c254ef38ad8ac037672130173691c5" - integrity sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ== - client-only@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/client-only/-/client-only-0.0.1.tgz#38bba5d403c41ab150bff64a95c85013cf73bca1" @@ -2445,15 +2368,6 @@ clipboard-copy@^3.0.0: resolved "https://registry.yarnpkg.com/clipboard-copy/-/clipboard-copy-3.2.0.tgz#3c5b8651d3512dcfad295d77a9eb09e7fac8d5fb" integrity sha512-vooFaGFL6ulEP1liiaWFBmmfuPm3cY3y7T9eB83ZTnYc/oFeAKsq3NcDrOkBC8XaauEE8zHQwI7k0+JSYiVQSQ== -cliui@^8.0.1: - version "8.0.1" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa" - integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ== - dependencies: - string-width "^4.2.0" - strip-ansi "^6.0.1" - wrap-ansi "^7.0.0" - clsx@^1.0.4: version "1.2.1" resolved "https://registry.yarnpkg.com/clsx/-/clsx-1.2.1.tgz#0ddc4a20a549b59c93a4116bb26f5294ca17dc12" @@ -2519,11 +2433,6 @@ convert-source-map@^2.0.0: resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== -cookie@^1.0.2: - version "1.1.1" - resolved "https://registry.yarnpkg.com/cookie/-/cookie-1.1.1.tgz#3bb9bdfc82369db9c2f69c93c9c3ceb310c88b3c" - integrity sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ== - core-util-is@~1.0.0: version "1.0.3" resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" @@ -2966,7 +2875,7 @@ es-to-primitive@^1.3.0: is-date-object "^1.0.5" is-symbol "^1.0.4" -escalade@^3.1.1, escalade@^3.2.0: +escalade@^3.2.0: version "3.2.0" resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz#011a3f69856ba189dffa7dc8fcce99d2a87903e5" integrity sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA== @@ -3125,11 +3034,6 @@ gensync@^1.0.0-beta.2: resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== -get-caller-file@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" - integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== - get-intrinsic@^1.2.4, get-intrinsic@^1.2.5, get-intrinsic@^1.2.6, get-intrinsic@^1.2.7, get-intrinsic@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz#743f0e3b6964a93a5491ed1bffaae054d7f98d01" @@ -3207,11 +3111,6 @@ graceful-fs@^4.2.4: resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== -graphql@^16.12.0: - version "16.13.2" - resolved "https://registry.yarnpkg.com/graphql/-/graphql-16.13.2.tgz#4d2b73df5796b201f1bc2765f5d7067f689cb55f" - integrity sha512-5bJ+nf/UCpAjHM8i06fl7eLyVC9iuNAjm9qzkiu2ZGhM0VscSvS6WDPfAwkdkBuoXGM9FJSbKl6wylMwP9Ktig== - has-bigints@^1.0.2: version "1.1.0" resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.1.0.tgz#28607e965ac967e03cd2a2c70a2636a1edad49fe" @@ -3257,11 +3156,6 @@ hasown@^2.0.4: dependencies: function-bind "^1.1.2" -headers-polyfill@^4.0.2: - version "4.0.3" - resolved "https://registry.yarnpkg.com/headers-polyfill/-/headers-polyfill-4.0.3.tgz#922a0155de30ecc1f785bcf04be77844ca95ad07" - integrity sha512-IScLbePpkvO846sIwOtOTDjutRMWdXdJmXdMvk6gCBHxFO8d+QKOQedyZSxFTTFYRSmlgSTDtXqqq4pcenBXLQ== - hoist-non-react-statics@^3.3.1: version "3.3.2" resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45" @@ -3521,11 +3415,6 @@ is-negative-zero@^2.0.3: resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.3.tgz#ced903a027aca6381b777a5743069d7376a49747" integrity sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw== -is-node-process@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/is-node-process/-/is-node-process-1.2.0.tgz#ea02a1b90ddb3934a19aea414e88edef7e11d134" - integrity sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw== - is-number-object@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.1.1.tgz#144b21e95a1bc148205dcc2814a9134ec41b2541" @@ -3944,40 +3833,11 @@ ms@^2.1.3: resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== -msw@^2.1.0: - version "2.12.14" - resolved "https://registry.yarnpkg.com/msw/-/msw-2.12.14.tgz#98c018182e0800277bb327025c5487861a239cbf" - integrity sha512-4KXa4nVBIBjbDbd7vfQNuQ25eFxug0aropCQFoI0JdOBuJWamkT1yLVIWReFI8SiTRc+H1hKzaNk+cLk2N9rtQ== - dependencies: - "@inquirer/confirm" "^5.0.0" - "@mswjs/interceptors" "^0.41.2" - "@open-draft/deferred-promise" "^2.2.0" - "@types/statuses" "^2.0.6" - cookie "^1.0.2" - graphql "^16.12.0" - headers-polyfill "^4.0.2" - is-node-process "^1.2.0" - outvariant "^1.4.3" - path-to-regexp "^6.3.0" - picocolors "^1.1.1" - rettime "^0.10.1" - statuses "^2.0.2" - strict-event-emitter "^0.5.1" - tough-cookie "^6.0.0" - type-fest "^5.2.0" - until-async "^3.0.2" - yargs "^17.7.2" - mustache@^4.2.0: version "4.2.0" resolved "https://registry.yarnpkg.com/mustache/-/mustache-4.2.0.tgz#e5892324d60a12ec9c2a73359edca52972bf6f64" integrity sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ== -mute-stream@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-2.0.0.tgz#a5446fc0c512b71c83c44d908d5c7b7b4c493b2b" - integrity sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA== - nanoid@^3.3.11, nanoid@^3.3.6: version "3.3.11" resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.11.tgz#4f4f112cefbe303202f2199838128936266d185b" @@ -4107,11 +3967,6 @@ ooni-components@0.8.0-alpha.3: react-select "^5.10.2" tailwind-merge "^3.5.0" -outvariant@^1.4.0, outvariant@^1.4.3: - version "1.4.3" - resolved "https://registry.yarnpkg.com/outvariant/-/outvariant-1.4.3.tgz#221c1bfc093e8fec7075497e7799fdbf43d14873" - integrity sha512-+Sl2UErvtsoajRDKCE5/dBz4DIvHXQQnAxtQTF04OJxY0+DyZXSo5P5Bb7XYWOh81syohlYL24hbDwxedPUJCA== - own-keys@^1.0.0, own-keys@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/own-keys/-/own-keys-1.0.1.tgz#e4006910a2bf913585289676eebd6f390cf51358" @@ -4200,11 +4055,6 @@ path-scurry@^2.0.2: lru-cache "^11.0.0" minipass "^7.1.2" -path-to-regexp@^6.3.0: - version "6.3.0" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-6.3.0.tgz#2b6a26a337737a8e1416f9272ed0766b1c0389f4" - integrity sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ== - path-type@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" @@ -4248,17 +4098,17 @@ picomatch@^4.0.2: resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-4.0.4.tgz#fd6f5e00a143086e074dffe4c924b8fb293b0589" integrity sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A== -playwright-core@1.58.2: - version "1.58.2" - resolved "https://registry.yarnpkg.com/playwright-core/-/playwright-core-1.58.2.tgz#ac5f5b4b10d29bcf934415f0b8d133b34b0dcb13" - integrity sha512-yZkEtftgwS8CsfYo7nm0KE8jsvm6i/PTgVtB8DL726wNf6H2IMsDuxCpJj59KDaxCtSnrWan2AeDqM7JBaultg== +playwright-core@1.61.1: + version "1.61.1" + resolved "https://registry.yarnpkg.com/playwright-core/-/playwright-core-1.61.1.tgz#3c99841307efbbabc9d724c41a88c914705d15fc" + integrity sha512-h7Qlt6m4REp25qvIdvbDtVmD4LqVXfpRxhORv9L0jzETM05p4fuPJ3dKyuSXQxDSbXnmS79HAgi9589lGSpLkg== -playwright@1.58.2: - version "1.58.2" - resolved "https://registry.yarnpkg.com/playwright/-/playwright-1.58.2.tgz#afe547164539b0bcfcb79957394a7a3fa8683cfd" - integrity sha512-vA30H8Nvkq/cPBnNw4Q8TWz1EJyqgpuinBcHET0YVJVFldr8JDNiU9LaWAE1KqSkRYazuaBhTpB5ZzShOezQ6A== +playwright@1.61.1: + version "1.61.1" + resolved "https://registry.yarnpkg.com/playwright/-/playwright-1.61.1.tgz#d8c0c06eb93c28981afc747bace453bdbd5018bc" + integrity sha512-DWnY5o3YbLWK4GovuAVwpqL+1VwGNdUGrRr++8j8PtQQzvAVZUIMjKQ90fY689sEJZJBbZVw1rXaOKSTitkzPQ== dependencies: - playwright-core "1.58.2" + playwright-core "1.61.1" optionalDependencies: fsevents "2.3.2" @@ -4583,11 +4433,6 @@ regexp.prototype.flags@^1.5.4: gopd "^1.2.0" set-function-name "^2.0.2" -require-directory@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" - integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== - require-from-string@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" @@ -4620,11 +4465,6 @@ resolve@^1.19.0: path-parse "^1.0.7" supports-preserve-symlinks-flag "^1.0.0" -rettime@^0.10.1: - version "0.10.1" - resolved "https://registry.yarnpkg.com/rettime/-/rettime-0.10.1.tgz#cc8bb9870343f282b182e5a276899c08b94914be" - integrity sha512-uyDrIlUEH37cinabq0AX4QbgV4HbFZ/gqoiunWQ1UqBtRvTTytwhNYjE++pO/MjPTZL5KQCf2bEoJ/BJNVQ5Kw== - robust-predicates@^3.0.2: version "3.0.3" resolved "https://registry.yarnpkg.com/robust-predicates/-/robust-predicates-3.0.3.tgz#1099061b3349e2c5abec6c2ab0acd440d24d4062" @@ -4863,7 +4703,7 @@ signal-exit@^3.0.3: resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== -signal-exit@^4.0.1, signal-exit@^4.1.0: +signal-exit@^4.0.1: version "4.1.0" resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04" integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw== @@ -4918,11 +4758,6 @@ start-server-and-test@^2.0.3: ps-tree "1.2.0" wait-on "9.0.4" -statuses@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.2.tgz#8f75eecef765b5e1cfcdc080da59409ed424e382" - integrity sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw== - stop-iteration-iterator@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz#f481ff70a548f6124d0312c3aa14cbfa7aa542ad" @@ -4938,11 +4773,6 @@ stream-combiner@~0.0.4: dependencies: duplexer "~0.1.1" -strict-event-emitter@^0.5.1: - version "0.5.1" - resolved "https://registry.yarnpkg.com/strict-event-emitter/-/strict-event-emitter-0.5.1.tgz#1602ece81c51574ca39c6815e09f1a3e8550bd93" - integrity sha512-vMgjE/GGEPEFnhFub6pa4FmJBRBVOLpIII2hvCZ8Kzb7K0hlHo7mQv6xYrBvCL2LtAIBwFUK8wvuJgTVSQ5MFQ== - "string-width-cjs@npm:string-width@^4.2.0": version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" @@ -4952,7 +4782,7 @@ strict-event-emitter@^0.5.1: is-fullwidth-code-point "^3.0.0" strip-ansi "^6.0.1" -string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: +string-width@^4.1.0: version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -5063,11 +4893,6 @@ symbol-tree@^3.2.4: resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== -tagged-tag@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/tagged-tag/-/tagged-tag-1.0.0.tgz#a0b5917c2864cba54841495abfa3f6b13edcf4d6" - integrity sha512-yEFYrVhod+hdNyx7g5Bnkkb0G6si8HJurOoOEgC8B/O0uXLHlaey/65KRv6cuWBNhBgHKAROVpc7QyYqE5gFng== - tailwind-merge@^3.5.0: version "3.5.0" resolved "https://registry.yarnpkg.com/tailwind-merge/-/tailwind-merge-3.5.0.tgz#06502f4496ba15151445d97d916a26564d50d1ca" @@ -5093,18 +4918,6 @@ tiny-case@^1.0.3: resolved "https://registry.yarnpkg.com/tiny-case/-/tiny-case-1.0.3.tgz#d980d66bc72b5d5a9ca86fb7c9ffdb9c898ddd03" integrity sha512-Eet/eeMhkO6TX8mnUteS9zgPbUMQa4I6Kkp5ORiBD5476/m+PIRiumP5tmh5ioJpH7k51Kehawy2UDfsnxxY8Q== -tldts-core@^7.0.27: - version "7.0.27" - resolved "https://registry.yarnpkg.com/tldts-core/-/tldts-core-7.0.27.tgz#4be95bd03b318f2232ea4c1554c4ae9980c77f69" - integrity sha512-YQ7uPjgWUibIK6DW5lrKujGwUKhLevU4hcGbP5O6TcIUb+oTjJYJVWPS4nZsIHrEEEG6myk/oqAJUEQmpZrHsg== - -tldts@^7.0.5: - version "7.0.27" - resolved "https://registry.yarnpkg.com/tldts/-/tldts-7.0.27.tgz#43c3fc6123eb07a3e12ae1868a9f2d1a5889028c" - integrity sha512-I4FZcVFcqCRuT0ph6dCDpPuO4Xgzvh+spkcTr1gK7peIvxWauoloVO0vuy1FQnijT63ss6AsHB6+OIM4aXHbPg== - dependencies: - tldts-core "^7.0.27" - toposort@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/toposort/-/toposort-2.0.2.tgz#ae21768175d1559d48bef35420b2f4962f09c330" @@ -5120,13 +4933,6 @@ tough-cookie@^4.1.3: universalify "^0.2.0" url-parse "^1.5.3" -tough-cookie@^6.0.0: - version "6.0.1" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-6.0.1.tgz#a495f833836609ed983c19bc65639cfbceb54c76" - integrity sha512-LktZQb3IeoUWB9lqR5EWTHgW/VTITCXg4D21M+lvybRVdylLrRMnqaIONLVb5mav8vM19m44HIcGq4qASeu2Qw== - dependencies: - tldts "^7.0.5" - tr46@^5.1.0: version "5.1.1" resolved "https://registry.yarnpkg.com/tr46/-/tr46-5.1.1.tgz#96ae867cddb8fdb64a49cc3059a8d428bcf238ca" @@ -5154,13 +4960,6 @@ type-fest@^2.19.0: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-2.19.0.tgz#88068015bb33036a598b952e55e9311a60fd3a9b" integrity sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA== -type-fest@^5.2.0: - version "5.5.0" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-5.5.0.tgz#78fca72f3a1f9ec964e6ae260db492b070c56f3b" - integrity sha512-PlBfpQwiUvGViBNX84Yxwjsdhd1TUlXr6zjX7eoirtCPIr08NAmxwa+fcYBTeRQxHo9YC9wwF3m9i700sHma8g== - dependencies: - tagged-tag "^1.0.0" - typed-array-buffer@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz#a72395450a4869ec033fd549371b47af3a2ee536" @@ -5236,11 +5035,6 @@ universalify@^0.2.0: resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.2.0.tgz#6451760566fa857534745ab1dde952d1b1761be0" integrity sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg== -until-async@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/until-async/-/until-async-3.0.2.tgz#447f1531fdd7bb2b4c7a98869bdb1a4c2a23865f" - integrity sha512-IiSk4HlzAMqTUseHHe3VhIGyuFmN90zMTpD3Z3y8jeQbzLIq500MVM7Jq2vUAnTKAFPJrqwkzr6PoTcPhGcOiw== - update-browserslist-db@^1.2.0: version "1.2.3" resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz#64d76db58713136acbeb4c49114366cc6cc2e80d" @@ -5438,24 +5232,6 @@ which@^2.0.1, which@^2.0.2: string-width "^4.1.0" strip-ansi "^6.0.0" -wrap-ansi@^6.2.0: - version "6.2.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" - integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - -wrap-ansi@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" - integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - wrap-ansi@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" @@ -5485,11 +5261,6 @@ xtend@^4.0.0: resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== -y18n@^5.0.5: - version "5.0.8" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" - integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== - yallist@^3.0.2: version "3.1.1" resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" @@ -5500,34 +5271,11 @@ yaml@^1.10.0: resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.3.tgz#76e407ed95c42684fb8e14641e5de62fe65bbcb3" integrity sha512-vIYeF1u3CjlhAFekPPAk2h/Kv4T3mAkMox5OymRiJQB0spDP10LHvt+K7G9Ny6NuuMAb25/6n1qyUjAcGNf/AA== -yargs-parser@^21.1.1: - version "21.1.1" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" - integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== - -yargs@^17.7.2: - version "17.7.2" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269" - integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w== - dependencies: - cliui "^8.0.1" - escalade "^3.1.1" - get-caller-file "^2.0.5" - require-directory "^2.1.1" - string-width "^4.2.3" - y18n "^5.0.5" - yargs-parser "^21.1.1" - yocto-queue@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== -yoctocolors-cjs@^2.1.3: - version "2.1.3" - resolved "https://registry.yarnpkg.com/yoctocolors-cjs/-/yoctocolors-cjs-2.1.3.tgz#7e4964ea8ec422b7a40ac917d3a344cfd2304baa" - integrity sha512-U/PBtDf35ff0D8X8D0jfdzHYEPFxAI7jJlxZXwCSez5M3190m+QobIfh+sWDWSHMCWWJN2AWamkegn6vr6YBTw== - yup@^1.7.1: version "1.7.1" resolved "https://registry.yarnpkg.com/yup/-/yup-1.7.1.tgz#4c47c6bb367df08d4bc597f8c4c4f5fc4277f6ab"