Skip to content

Instantly share code, notes, and snippets.

@ifduyue
Created July 11, 2024 04:21
Show Gist options
  • Save ifduyue/d850df87c1f58e4d1d4303e82e21e5fe to your computer and use it in GitHub Desktop.
Save ifduyue/d850df87c1f58e4d1d4303e82e21e5fe to your computer and use it in GitHub Desktop.
Network.responseReceivedExtraInfo may be fired before or after responseReceived
import { launch } from 'puppeteer';
import fs from 'fs/promises'
let messages = [];
const eventsToObserve = [
"Network.dataReceived",
"Network.eventSourceMessageReceived",
"Network.loadingFailed",
"Network.loadingFinished",
"Network.requestServedFromCache",
"Network.requestWillBeSent",
"Network.requestWillBeSentExtraInfo",
"Network.resourceChangedPriority",
"Network.responseReceived",
"Network.responseReceivedEarlyHints",
"Network.responseReceivedExtraInfo",
"Network.webSocketCreated",
"Network.webSocketFrameReceived",
"Network.webSocketFrameSent",
"Network.webSocketHandshakeResponseReceived",
"Network.webSocketWillSendHandshakeRequest",
"Page.domContentEventFired",
"Page.frameAttached",
"Page.frameClearedScheduledNavigation",
"Page.frameDetached",
"Page.frameNavigated",
"Page.frameRequestedNavigation",
"Page.frameScheduledNavigation",
"Page.frameStartedLoading",
"Page.frameStoppedLoading",
"Page.lifecycleEvent",
"Page.loadEventFired",
"Page.navigatedWithinDocument",
"Tracing.dataCollected",
];
function onMessage(event) {
return function (params) {
console.log(event, params);
messages.push({ method: event, params });
}
}
(async () => {
const browser = await launch({ args: ['--no-sandbox', '--headless'] });
const page = await browser.newPage();
const cdp = await page.createCDPSession();
for (const event of eventsToObserve) {
cdp.on(event, onMessage(event));
}
await cdp.send("Page.enable");
await cdp.send("Network.enable");
await cdp.send("Tracing.start", {
traceConfig: {
recordMode: 'recordAsMuchAsPossible',
// includedCategories: [
// '-*',
// 'disabled-by-default-lighthouse',
// 'v8',
// 'v8.execute',
// 'blink.user_timing',
// 'devtools.timeline',
// 'disabled-by-default-devtools.timeline',
// 'disabled-by-default-devtools.timeline.stack',
// 'disabled-by-default-devtools.timeline.frame',
// 'disabled-by-default-devtools.timeline.invalidationTracking',
// 'loading',
// 'latencyInfo'
// ],
}
});
await page.goto('https://bing.com/');
await page.waitForNetworkIdle();
const sleep = ms => new Promise(resolve => setTimeout(resolve, ms));
await sleep(1000);
await cdp.send("Tracing.end");
await cdp.detach();
await browser.close();
await fs.writeFile("messages.json", JSON.stringify(messages, null, 2));
})();
This file has been truncated, but you can view the full file.
[
{
"method": "Page.frameStartedLoading",
"params": {
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "DC2DB00F1A4F0A391C48E404FF168637",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://bing.com/",
"request": {
"url": "https://bing.com/",
"method": "GET",
"headers": {
"Upgrade-Insecure-Requests": "1",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "VeryHigh",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890150.048633,
"wallTime": 1720670451.468279,
"initiator": {
"type": "other"
},
"redirectHasExtraInfo": false,
"type": "Document",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "DC2DB00F1A4F0A391C48E404FF168637",
"associatedCookies": [],
"headers": {
":authority": "bing.com",
":method": "GET",
":path": "/",
":scheme": "https",
"accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7",
"accept-encoding": "gzip, deflate, br, zstd",
"priority": "u=0, i",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-platform": "\"macOS\"",
"sec-fetch-dest": "document",
"sec-fetch-mode": "navigate",
"sec-fetch-site": "none",
"sec-fetch-user": "?1",
"upgrade-insecure-requests": "1",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890150.052063
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.responseReceivedExtraInfo",
"params": {
"requestId": "DC2DB00F1A4F0A391C48E404FF168637",
"blockedCookies": [],
"headers": {
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"content-length": "0",
"date": "Thu, 11 Jul 2024 04:00:51 GMT",
"location": "https://cn.bing.com/",
"x-msedge-ref": "Ref A: 1609281457634F55ABA9F86E69014FCD Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:51Z"
},
"resourceIPAddressSpace": "Public",
"statusCode": 301,
"cookiePartitionKey": "https://bing.com",
"cookiePartitionKeyOpaque": false,
"exemptedCookies": []
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "DC2DB00F1A4F0A391C48E404FF168637",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/",
"method": "GET",
"headers": {
"Upgrade-Insecure-Requests": "1",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "VeryHigh",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890150.606952,
"wallTime": 1720670452.026581,
"initiator": {
"type": "other"
},
"redirectHasExtraInfo": true,
"redirectResponse": {
"url": "https://bing.com/",
"status": 301,
"statusText": "",
"headers": {
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"content-length": "0",
"date": "Thu, 11 Jul 2024 04:00:51 GMT",
"location": "https://cn.bing.com/",
"x-msedge-ref": "Ref A: 1609281457634F55ABA9F86E69014FCD Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:51Z"
},
"mimeType": "",
"charset": "",
"connectionReused": false,
"connectionId": 18,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 278,
"timing": {
"requestTime": 1890150.052063,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": 73.179,
"dnsEnd": 73.186,
"connectStart": 73.186,
"connectEnd": 322.931,
"sslStart": 145.815,
"sslEnd": 322.919,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 323.584,
"sendEnd": 323.799,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 550.628,
"receiveHeadersEnd": 552.334
},
"responseTime": 1720670452022.657,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"type": "Document",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "DC2DB00F1A4F0A391C48E404FF168637",
"associatedCookies": [],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/",
":scheme": "https",
"accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7",
"accept-encoding": "gzip, deflate, br, zstd",
"priority": "u=0, i",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-platform": "\"macOS\"",
"sec-fetch-dest": "document",
"sec-fetch-mode": "navigate",
"sec-fetch-site": "none",
"sec-fetch-user": "?1",
"upgrade-insecure-requests": "1",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890150.607958
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.responseReceivedExtraInfo",
"params": {
"requestId": "DC2DB00F1A4F0A391C48E404FF168637",
"blockedCookies": [],
"headers": {
"accept-ch": "Sec-CH-UA-Bitness, Sec-CH-UA-Arch, Sec-CH-UA-Full-Version, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Platform, Sec-CH-UA, UA-Bitness, UA-Arch, UA-Full-Version, UA-Mobile, UA-Model, UA-Platform-Version, UA-Platform, UA",
"cache-control": "private",
"content-encoding": "br",
"content-security-policy-report-only": "script-src https: 'strict-dynamic' 'report-sample' 'nonce-HYeJ5O2HRRtyPpaukWHYatV9evY2K7EQ2TXxFX7o/ys='; base-uri 'self';report-to csp-endpoint",
"content-type": "text/html; charset=utf-8",
"cross-origin-embedder-policy-report-only": "'same-origin; report-to=\\\"crossorigin-errors\\\"'",
"cross-origin-opener-policy-report-only": "'require-corp; report-to=\\\"crossorigin-errors\\\"'",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.01,\"failure_fraction\":1.0,\"include_subdomains\":true}",
"p3p": "CP=\"NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND\"",
"report-to": "{\"group\":\"csp-endpoint\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingcsp\"}]}\n{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=binghp&ndcParam=QUZE\"}]}\n{\"group\":\"crossorigin-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=binghp\"}]}",
"set-cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; domain=.bing.com; expires=Tue, 05-Aug-2025 04:00:52 GMT; path=/; secure; SameSite=None\nMUIDB=27EF5FA852976BB80EDC4B1153CD6A16; expires=Tue, 05-Aug-2025 04:00:52 GMT; path=/; HttpOnly\n_EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; domain=.bing.com; path=/; HttpOnly\n_EDGE_V=1; domain=.bing.com; expires=Tue, 05-Aug-2025 04:00:52 GMT; path=/; HttpOnly\nSRCHD=AF=NOFORM; domain=.bing.com; expires=Sat, 11-Jul-2026 04:00:52 GMT; path=/; secure; SameSite=None\nSRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; domain=.bing.com; expires=Sat, 11-Jul-2026 04:00:52 GMT; path=/; secure; SameSite=None\nSRCHUSR=DOB=20240711; domain=.bing.com; expires=Sat, 11-Jul-2026 04:00:52 GMT; path=/; secure; SameSite=None\nSRCHHPGUSR=SRCHLANG=zh-Hans; domain=.bing.com; expires=Sat, 11-Jul-2026 04:00:52 GMT; path=/; secure; SameSite=None\n_SS=SID=33B9E8440A736F860399FCFD0B296E85; domain=.bing.com; path=/; secure; SameSite=None\nULC=; domain=.bing.com; expires=Wed, 10-Jul-2024 04:00:52 GMT; path=/; secure; SameSite=None\n_HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==; domain=.bing.com; expires=Sat, 11-Jul-2026 04:00:52 GMT; path=/; secure; SameSite=None",
"strict-transport-security": "max-age=31536000; includeSubDomains; preload",
"useragentreductionoptout": "A7kgTC5xdZ2WIVGZEfb1hUoNuvjzOZX3VIV/BA6C18kQOOF50Q0D3oWoAm49k3BQImkujKILc7JmPysWk3CSjwUAAACMeyJvcmlnaW4iOiJodHRwczovL3d3dy5iaW5nLmNvbTo0NDMiLCJmZWF0dXJlIjoiU2VuZEZ1bGxVc2VyQWdlbnRBZnRlclJlZHVjdGlvbiIsImV4cGlyeSI6MTY4NDg4NjM5OSwiaXNTdWJkb21haW4iOnRydWUsImlzVGhpcmRQYXJ0eSI6dHJ1ZX0=",
"vary": "Accept-Encoding",
"x-cache": "CONFIG_NOCACHE",
"x-eventid": "668f58f4344c408485a7b4dd43ff3eb2",
"x-frame-options": "SAMEORIGIN",
"x-msedge-ref": "Ref A: 351DD2522E4840C084FF9580C229307E Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:52Z"
},
"resourceIPAddressSpace": "Public",
"statusCode": 200,
"cookiePartitionKey": "https://bing.com",
"cookiePartitionKeyOpaque": false,
"exemptedCookies": []
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "DC2DB00F1A4F0A391C48E404FF168637",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890150.827864,
"type": "Document",
"response": {
"url": "https://cn.bing.com/",
"status": 200,
"statusText": "",
"headers": {
"accept-ch": "Sec-CH-UA-Bitness, Sec-CH-UA-Arch, Sec-CH-UA-Full-Version, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Platform, Sec-CH-UA, UA-Bitness, UA-Arch, UA-Full-Version, UA-Mobile, UA-Model, UA-Platform-Version, UA-Platform, UA",
"cache-control": "private",
"content-encoding": "br",
"content-security-policy-report-only": "script-src https: 'strict-dynamic' 'report-sample' 'nonce-HYeJ5O2HRRtyPpaukWHYatV9evY2K7EQ2TXxFX7o/ys='; base-uri 'self';report-to csp-endpoint",
"content-type": "text/html; charset=utf-8",
"cross-origin-embedder-policy-report-only": "'same-origin; report-to=\\\"crossorigin-errors\\\"'",
"cross-origin-opener-policy-report-only": "'require-corp; report-to=\\\"crossorigin-errors\\\"'",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.01,\"failure_fraction\":1.0,\"include_subdomains\":true}",
"p3p": "CP=\"NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND\"",
"report-to": "{\"group\":\"csp-endpoint\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingcsp\"}]}\n{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=binghp&ndcParam=QUZE\"}]}\n{\"group\":\"crossorigin-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=binghp\"}]}",
"strict-transport-security": "max-age=31536000; includeSubDomains; preload",
"useragentreductionoptout": "A7kgTC5xdZ2WIVGZEfb1hUoNuvjzOZX3VIV/BA6C18kQOOF50Q0D3oWoAm49k3BQImkujKILc7JmPysWk3CSjwUAAACMeyJvcmlnaW4iOiJodHRwczovL3d3dy5iaW5nLmNvbTo0NDMiLCJmZWF0dXJlIjoiU2VuZEZ1bGxVc2VyQWdlbnRBZnRlclJlZHVjdGlvbiIsImV4cGlyeSI6MTY4NDg4NjM5OSwiaXNTdWJkb21haW4iOnRydWUsImlzVGhpcmRQYXJ0eSI6dHJ1ZX0=",
"vary": "Accept-Encoding",
"x-cache": "CONFIG_NOCACHE",
"x-eventid": "668f58f4344c408485a7b4dd43ff3eb2",
"x-frame-options": "SAMEORIGIN",
"x-msedge-ref": "Ref A: 351DD2522E4840C084FF9580C229307E Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:52Z"
},
"mimeType": "text/html",
"charset": "utf-8",
"connectionReused": true,
"connectionId": 18,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 2624,
"timing": {
"requestTime": 1890150.607958,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 60.029,
"sendEnd": 60.388,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 215.473,
"receiveHeadersEnd": 216.958
},
"responseTime": 1720670452242.698,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": true,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.3",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245838,
"size": 26,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245869,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/rp/lmu8EBCaPRMKtay8LSArGyY3mv4.br.js",
":scheme": "https",
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; SRCHHPGUSR=SRCHLANG=zh-Hans; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"priority": "u=1",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "script",
"sec-fetch-mode": "no-cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890150.844619
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.5",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245838,
"size": 26,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245869,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/rp/zVzKRvQDTWNO9cqRL85PKngXNBM.br.css",
":scheme": "https",
"accept": "text/css,*/*;q=0.1",
"accept-encoding": "gzip, deflate, br, zstd",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; SRCHHPGUSR=SRCHLANG=zh-Hans; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"priority": "u=0",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "style",
"sec-fetch-mode": "no-cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890150.844962
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Page.frameNavigated",
"params": {
"frame": {
"id": "D6679A9F699EE881BE059AEE008B5F07",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"url": "https://cn.bing.com/",
"domainAndRegistry": "bing.com",
"securityOrigin": "https://cn.bing.com",
"mimeType": "text/html",
"adFrameStatus": {
"adFrameType": "none"
},
"secureContextType": "Secure",
"crossOriginIsolatedContextType": "NotIsolated",
"gatedAPIFeatures": []
},
"type": "Navigation"
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890150.839217,
"dataLength": 67266,
"encodedDataLength": 0
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.2",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://s.cn.bing.net/th?id=OHR.GangiSicily_ZH-CN9086944081_1920x1080.webp&qlt=50",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "Low",
"referrerPolicy": "strict-origin-when-cross-origin",
"isLinkPreload": true,
"isSameSite": false
},
"timestamp": 1890150.840978,
"wallTime": 1720670452.260172,
"initiator": {
"type": "parser",
"url": "https://cn.bing.com/",
"lineNumber": 0,
"columnNumber": 1129
},
"redirectHasExtraInfo": false,
"type": "Image",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.3",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/lmu8EBCaPRMKtay8LSArGyY3mv4.br.js",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "High",
"referrerPolicy": "strict-origin-when-cross-origin",
"isLinkPreload": true,
"isSameSite": true
},
"timestamp": 1890150.84336,
"wallTime": 1720670452.263373,
"initiator": {
"type": "parser",
"url": "https://cn.bing.com/",
"lineNumber": 0,
"columnNumber": 1209
},
"redirectHasExtraInfo": false,
"type": "Script",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.5",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/zVzKRvQDTWNO9cqRL85PKngXNBM.br.css",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "VeryHigh",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890150.844491,
"wallTime": 1720670452.263836,
"initiator": {
"type": "parser",
"url": "https://cn.bing.com/",
"lineNumber": 0,
"columnNumber": 62745
},
"redirectHasExtraInfo": false,
"type": "Stylesheet",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890150.844921,
"dataLength": 36223,
"encodedDataLength": 0
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.10",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245838,
"size": 26,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245869,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/rp/ytiieusXgM2K8bLkEDP-AS1ePds.png",
":scheme": "https",
"accept": "image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8",
"accept-encoding": "gzip, deflate, br, zstd",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; SRCHHPGUSR=SRCHLANG=zh-Hans; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"priority": "i",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "image",
"sec-fetch-mode": "no-cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890150.863044
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.13",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245838,
"size": 26,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245869,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/th?id=OJ.ilrwlLiKV5AQIA&w=80&h=80&c=8&rs=1&pid=academic",
":scheme": "https",
"accept": "image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8",
"accept-encoding": "gzip, deflate, br, zstd",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; SRCHHPGUSR=SRCHLANG=zh-Hans; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"priority": "i",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "image",
"sec-fetch-mode": "no-cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890150.870176
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.10",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/ytiieusXgM2K8bLkEDP-AS1ePds.png",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "Low",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890150.862832,
"wallTime": 1720670452.282028,
"initiator": {
"type": "parser",
"url": "https://cn.bing.com/",
"lineNumber": 2,
"columnNumber": 314
},
"redirectHasExtraInfo": false,
"type": "Image",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.11",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNgYAAAAAMAASsJTYQAAAAASUVORK5CYII=",
"method": "GET",
"headers": {
"Referer": "",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"mixedContentType": "none",
"initialPriority": "Low",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": false
},
"timestamp": 1890150.864461,
"wallTime": 1720670452.283657,
"initiator": {
"type": "parser",
"url": "https://cn.bing.com/",
"lineNumber": 2,
"columnNumber": 314
},
"redirectHasExtraInfo": false,
"type": "Image",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestServedFromCache",
"params": {
"requestId": "98243.11"
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.11",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890150.864666,
"type": "Image",
"response": {
"url": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNgYAAAAAMAASsJTYQAAAAASUVORK5CYII=",
"status": 200,
"statusText": "OK",
"headers": {
"Content-Type": "image/png"
},
"mimeType": "image/png",
"charset": "",
"connectionReused": false,
"connectionId": 0,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 0,
"protocol": "data",
"securityState": "unknown"
},
"hasExtraInfo": false,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.11",
"timestamp": 1890150.864673,
"dataLength": 68,
"encodedDataLength": 0
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.11",
"timestamp": 1890150.864677,
"encodedDataLength": 0
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.12",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0D%0A%3C%21--%20Created%20with%20Inkscape%20%28http%3A%2F%2Fwww.inkscape.org%2F%29%20--%3E%0D%0A%3Csvg%20width%3D%222.1168mm%22%20height%3D%222.1166mm%22%20version%3D%221.1%22%20viewBox%3D%220%200%202.1168%202.1166%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20transform%3D%22translate%28-126.19%20-100.45%29%22%3E%3Cpath%20d%3D%22m126.21%20100.51%200.0151-0.0183c0.046-0.0459%200.11721-0.051%200.1688-0.0153l0.0185%200.0153%200.83238%200.83254%200.83238-0.83254c0.0519-0.0516%200.13547-0.0516%200.18733%200%200.0516%200.0517%200.0516%200.13544%200%200.18711l-0.83265%200.83249%200.83265%200.83248c0.0458%200.0459%200.0508%200.11721%200.0151%200.16878l-0.0151%200.0183c-0.046%200.0459-0.11722%200.051-0.16881%200.0153l-0.0185-0.0153-0.83238-0.83254-0.83238%200.83254c-0.0519%200.0516-0.13546%200.0516-0.18732%200-0.0516-0.0517-0.0516-0.13544%200-0.18712l0.83264-0.83248-0.83264-0.83249c-0.0458-0.0459-0.0508-0.11721-0.0151-0.16877l0.0151-0.0183z%22%20fill%3D%22%236e6e6e%22%20stroke-width%3D%22.26458%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0D%0A",
"method": "GET",
"headers": {
"Referer": "",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"mixedContentType": "none",
"initialPriority": "Low",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": false
},
"timestamp": 1890150.869781,
"wallTime": 1720670452.288993,
"initiator": {
"type": "parser",
"url": "https://cn.bing.com/",
"lineNumber": 2,
"columnNumber": 314
},
"redirectHasExtraInfo": false,
"type": "Image",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestServedFromCache",
"params": {
"requestId": "98243.12"
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.12",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890150.869853,
"type": "Image",
"response": {
"url": "data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0D%0A%3C%21--%20Created%20with%20Inkscape%20%28http%3A%2F%2Fwww.inkscape.org%2F%29%20--%3E%0D%0A%3Csvg%20width%3D%222.1168mm%22%20height%3D%222.1166mm%22%20version%3D%221.1%22%20viewBox%3D%220%200%202.1168%202.1166%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20transform%3D%22translate%28-126.19%20-100.45%29%22%3E%3Cpath%20d%3D%22m126.21%20100.51%200.0151-0.0183c0.046-0.0459%200.11721-0.051%200.1688-0.0153l0.0185%200.0153%200.83238%200.83254%200.83238-0.83254c0.0519-0.0516%200.13547-0.0516%200.18733%200%200.0516%200.0517%200.0516%200.13544%200%200.18711l-0.83265%200.83249%200.83265%200.83248c0.0458%200.0459%200.0508%200.11721%200.0151%200.16878l-0.0151%200.0183c-0.046%200.0459-0.11722%200.051-0.16881%200.0153l-0.0185-0.0153-0.83238-0.83254-0.83238%200.83254c-0.0519%200.0516-0.13546%200.0516-0.18732%200-0.0516-0.0517-0.0516-0.13544%200-0.18712l0.83264-0.83248-0.83264-0.83249c-0.0458-0.0459-0.0508-0.11721-0.0151-0.16877l0.0151-0.0183z%22%20fill%3D%22%236e6e6e%22%20stroke-width%3D%22.26458%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0D%0A",
"status": 200,
"statusText": "OK",
"headers": {
"Content-Type": "image/svg+xml"
},
"mimeType": "image/svg+xml",
"charset": "",
"connectionReused": false,
"connectionId": 0,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 0,
"protocol": "data",
"securityState": "unknown"
},
"hasExtraInfo": false,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.12",
"timestamp": 1890150.869858,
"dataLength": 865,
"encodedDataLength": 0
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.12",
"timestamp": 1890150.869861,
"encodedDataLength": 0
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.13",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/th?id=OJ.ilrwlLiKV5AQIA&w=80&h=80&c=8&rs=1&pid=academic",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "Low",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890150.86993,
"wallTime": 1720670452.289118,
"initiator": {
"type": "parser",
"url": "https://cn.bing.com/",
"lineNumber": 2,
"columnNumber": 314
},
"redirectHasExtraInfo": false,
"type": "Image",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890150.988558,
"dataLength": 39180,
"encodedDataLength": 0
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.16",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/fRPi0Fb1vDrxqdzIfEwP1G-sDQw.br.js",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"Origin": "https://cn.bing.com",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "Medium",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890150.98876,
"wallTime": 1720670452.407953,
"initiator": {
"type": "parser",
"url": "https://cn.bing.com/",
"lineNumber": 6,
"columnNumber": 166
},
"redirectHasExtraInfo": false,
"type": "Script",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.17",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/1xoNdSsiOsQnITofHebvgzOZ2HM.br.js",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"Origin": "https://cn.bing.com",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "Medium",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890150.988886,
"wallTime": 1720670452.408064,
"initiator": {
"type": "parser",
"url": "https://cn.bing.com/",
"lineNumber": 6,
"columnNumber": 327
},
"redirectHasExtraInfo": false,
"type": "Script",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.responseReceivedExtraInfo",
"params": {
"requestId": "98243.3",
"blockedCookies": [],
"headers": {
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"access-control-allow-origin": "*",
"cache-control": "public, max-age=432000",
"content-encoding": "br",
"content-length": "5",
"content-md5": "5aqSHeuG+BOAJrucJAgg+w==",
"content-type": "application/x-javascript; charset=utf-8",
"cross-origin-resource-policy": "cross-origin",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"etag": "0x8D817F979D0642F",
"last-modified": "Wed, 24 Jun 2020 04:45:53 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"timing-allow-origin": "*",
"x-azure-ref-originshield": "Ref A: 251D5EC94C574BDF8EAB35FCB6001D57 Ref B: SG2EDGE2411 Ref C: 2024-07-10T15:53:46Z",
"x-cache": "TCP_HIT",
"x-ms-blob-type": "BlockBlob",
"x-ms-lease-status": "unlocked",
"x-ms-request-id": "986febb6-201e-00f8-72c9-d16b7f000000",
"x-ms-version": "2009-09-19",
"x-msedge-ref": "Ref A: 0CD8A25D93A3482EB8C05162E62966A0 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:52Z"
},
"resourceIPAddressSpace": "Public",
"statusCode": 200,
"cookiePartitionKey": "https://bing.com",
"cookiePartitionKeyOpaque": false,
"exemptedCookies": []
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890150.988498,
"encodedDataLength": 43287
}
},
{
"method": "Network.responseReceivedExtraInfo",
"params": {
"requestId": "98243.5",
"blockedCookies": [],
"headers": {
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"access-control-allow-origin": "*",
"cache-control": "public, max-age=432000, no-transform, immutable",
"content-encoding": "br",
"content-length": "456",
"content-md5": "y4TUl3bUGvTfvcapNL9kag==",
"content-type": "text/css; charset=utf-8",
"cross-origin-resource-policy": "cross-origin",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"etag": "0x8DBD935F9416AAB",
"last-modified": "Mon, 30 Oct 2023 10:50:04 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"timing-allow-origin": "*",
"x-azure-ref-originshield": "Ref A: 0283A43A4FB94422878966EA00801B77 Ref B: SG2EDGE2613 Ref C: 2024-07-09T07:51:41Z",
"x-cache": "TCP_HIT",
"x-ms-blob-type": "BlockBlob",
"x-ms-lease-status": "unlocked",
"x-ms-request-id": "e6551801-401e-00b3-3403-d1972c000000",
"x-ms-version": "2009-09-19",
"x-msedge-ref": "Ref A: A7B3825454D94A23A81348F3B38C9B14 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:52Z"
},
"resourceIPAddressSpace": "Public",
"statusCode": 200,
"cookiePartitionKey": "https://bing.com",
"cookiePartitionKeyOpaque": false,
"exemptedCookies": []
}
},
{
"method": "Network.responseReceivedExtraInfo",
"params": {
"requestId": "98243.10",
"blockedCookies": [],
"headers": {
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"access-control-allow-origin": "*",
"cache-control": "public, max-age=432000",
"content-length": "109",
"content-md5": "WjmO2nysm67xmONlqywoRQ==",
"content-type": "image/png",
"cross-origin-resource-policy": "cross-origin",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"etag": "0x8D817F9C14E9F6E",
"last-modified": "Wed, 24 Jun 2020 04:47:53 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"timing-allow-origin": "*",
"x-azure-ref-originshield": "Ref A: 83BCB6413BA543D9B4D635791EED9DAA Ref B: SG2EDGE2518 Ref C: 2024-07-10T12:57:00Z",
"x-cache": "TCP_HIT",
"x-ms-blob-type": "BlockBlob",
"x-ms-lease-status": "unlocked",
"x-ms-request-id": "b73c002f-401e-0057-45a3-d199b2000000",
"x-ms-version": "2009-09-19",
"x-msedge-ref": "Ref A: 9C60DAA94F904C0C9537387D7B9CCF04 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:52Z"
},
"resourceIPAddressSpace": "Public",
"statusCode": 200,
"cookiePartitionKey": "https://bing.com",
"cookiePartitionKeyOpaque": false,
"exemptedCookies": []
}
},
{
"method": "Network.responseReceivedExtraInfo",
"params": {
"requestId": "98243.13",
"blockedCookies": [],
"headers": {
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"access-control-allow-headers": "*",
"access-control-allow-methods": "GET, POST, OPTIONS",
"access-control-allow-origin": "*",
"cache-control": "public, max-age=2592000",
"content-length": "14708",
"content-type": "image/svg+xml",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingth&ndcParam=QUZE\"}]}",
"timing-allow-origin": "*",
"x-cache": "TCP_HIT",
"x-msedge-ref": "Ref A: 6EFF6D202DC9498B9D94A7D4529D436B Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:52Z"
},
"resourceIPAddressSpace": "Public",
"statusCode": 200,
"cookiePartitionKey": "https://bing.com",
"cookiePartitionKeyOpaque": false,
"exemptedCookies": []
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.3",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890150.990303,
"type": "Script",
"response": {
"url": "https://cn.bing.com/rp/lmu8EBCaPRMKtay8LSArGyY3mv4.br.js",
"status": 200,
"statusText": "",
"headers": {
"x-ms-blob-type": "BlockBlob",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"content-encoding": "br",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"x-azure-ref-originshield": "Ref A: 251D5EC94C574BDF8EAB35FCB6001D57 Ref B: SG2EDGE2411 Ref C: 2024-07-10T15:53:46Z",
"content-md5": "5aqSHeuG+BOAJrucJAgg+w==",
"x-cache": "TCP_HIT",
"cross-origin-resource-policy": "cross-origin",
"content-length": "5",
"x-ms-lease-status": "unlocked",
"last-modified": "Wed, 24 Jun 2020 04:45:53 GMT",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: 0CD8A25D93A3482EB8C05162E62966A0 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:52Z",
"etag": "0x8D817F979D0642F",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"content-type": "application/x-javascript; charset=utf-8",
"access-control-allow-origin": "*",
"x-ms-request-id": "986febb6-201e-00f8-72c9-d16b7f000000",
"cache-control": "public, max-age=432000",
"x-ms-version": "2009-09-19",
"timing-allow-origin": "*"
},
"mimeType": "application/x-javascript",
"charset": "utf-8",
"connectionReused": true,
"connectionId": 18,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 791,
"timing": {
"requestTime": 1890150.844619,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 0.433,
"sendEnd": 0.628,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 144.001,
"receiveHeadersEnd": 145.171
},
"responseTime": 1720670452407.807,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": true,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.3",
"timestamp": 1890150.990974,
"dataLength": 1,
"encodedDataLength": 0
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.16",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245838,
"size": 26,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245869,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/rp/fRPi0Fb1vDrxqdzIfEwP1G-sDQw.br.js",
":scheme": "https",
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; SRCHHPGUSR=SRCHLANG=zh-Hans; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"origin": "https://cn.bing.com",
"priority": "u=2",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "script",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890150.991087
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.17",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245838,
"size": 26,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245869,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/rp/1xoNdSsiOsQnITofHebvgzOZ2HM.br.js",
":scheme": "https",
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; SRCHHPGUSR=SRCHLANG=zh-Hans; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"origin": "https://cn.bing.com",
"priority": "u=2",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "script",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890150.991285
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.5",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890150.991447,
"type": "Stylesheet",
"response": {
"url": "https://cn.bing.com/rp/zVzKRvQDTWNO9cqRL85PKngXNBM.br.css",
"status": 200,
"statusText": "",
"headers": {
"x-ms-blob-type": "BlockBlob",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"content-encoding": "br",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"x-azure-ref-originshield": "Ref A: 0283A43A4FB94422878966EA00801B77 Ref B: SG2EDGE2613 Ref C: 2024-07-09T07:51:41Z",
"content-md5": "y4TUl3bUGvTfvcapNL9kag==",
"x-cache": "TCP_HIT",
"cross-origin-resource-policy": "cross-origin",
"content-length": "456",
"x-ms-lease-status": "unlocked",
"last-modified": "Mon, 30 Oct 2023 10:50:04 GMT",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: A7B3825454D94A23A81348F3B38C9B14 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:52Z",
"etag": "0x8DBD935F9416AAB",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"content-type": "text/css; charset=utf-8",
"access-control-allow-origin": "*",
"x-ms-request-id": "e6551801-401e-00b3-3403-d1972c000000",
"cache-control": "public, max-age=432000, no-transform, immutable",
"x-ms-version": "2009-09-19",
"timing-allow-origin": "*"
},
"mimeType": "text/css",
"charset": "utf-8",
"connectionReused": true,
"connectionId": 18,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 334,
"timing": {
"requestTime": 1890150.844962,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 0.143,
"sendEnd": 0.284,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 145.309,
"receiveHeadersEnd": 145.404
},
"responseTime": 1720670452409.46,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": true,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.5",
"timestamp": 1890150.991478,
"dataLength": 1227,
"encodedDataLength": 0
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.5",
"timestamp": 1890150.992003,
"dataLength": 0,
"encodedDataLength": 474
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.5",
"timestamp": 1890150.990528,
"encodedDataLength": 808
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.10",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890150.992177,
"type": "Image",
"response": {
"url": "https://cn.bing.com/rp/ytiieusXgM2K8bLkEDP-AS1ePds.png",
"status": 200,
"statusText": "",
"headers": {
"x-ms-blob-type": "BlockBlob",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"x-azure-ref-originshield": "Ref A: 83BCB6413BA543D9B4D635791EED9DAA Ref B: SG2EDGE2518 Ref C: 2024-07-10T12:57:00Z",
"content-md5": "WjmO2nysm67xmONlqywoRQ==",
"x-cache": "TCP_HIT",
"cross-origin-resource-policy": "cross-origin",
"content-length": "109",
"x-ms-lease-status": "unlocked",
"last-modified": "Wed, 24 Jun 2020 04:47:53 GMT",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: 9C60DAA94F904C0C9537387D7B9CCF04 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:52Z",
"etag": "0x8D817F9C14E9F6E",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"content-type": "image/png",
"access-control-allow-origin": "*",
"x-ms-request-id": "b73c002f-401e-0057-45a3-d199b2000000",
"cache-control": "public, max-age=432000",
"x-ms-version": "2009-09-19",
"timing-allow-origin": "*"
},
"mimeType": "image/png",
"charset": "",
"connectionReused": true,
"connectionId": 18,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 290,
"timing": {
"requestTime": 1890150.863044,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 0.14,
"sendEnd": 0.291,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 127.545,
"receiveHeadersEnd": 127.59
},
"responseTime": 1720670452409.765,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": true,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.10",
"timestamp": 1890150.9922,
"dataLength": 109,
"encodedDataLength": 0
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.10",
"timestamp": 1890150.992548,
"dataLength": 0,
"encodedDataLength": 127
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.10",
"timestamp": 1890150.990721,
"encodedDataLength": 417
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.13",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890150.992684,
"type": "Image",
"response": {
"url": "https://cn.bing.com/th?id=OJ.ilrwlLiKV5AQIA&w=80&h=80&c=8&rs=1&pid=academic",
"status": 200,
"statusText": "",
"headers": {
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: 6EFF6D202DC9498B9D94A7D4529D436B Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:52Z",
"access-control-allow-methods": "GET, POST, OPTIONS",
"x-cache": "TCP_HIT",
"access-control-allow-origin": "*",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingth&ndcParam=QUZE\"}]}",
"content-type": "image/svg+xml",
"cache-control": "public, max-age=2592000",
"timing-allow-origin": "*",
"access-control-allow-headers": "*",
"content-length": "14708"
},
"mimeType": "image/svg+xml",
"charset": "",
"connectionReused": true,
"connectionId": 18,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 323,
"timing": {
"requestTime": 1890150.870176,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 0.166,
"sendEnd": 0.287,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 120.641,
"receiveHeadersEnd": 120.678
},
"responseTime": 1720670452409.989,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": true,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.13",
"timestamp": 1890150.992699,
"dataLength": 14708,
"encodedDataLength": 0
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.13",
"timestamp": 1890150.995826,
"dataLength": 0,
"encodedDataLength": 14726
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.13",
"timestamp": 1890150.990943,
"encodedDataLength": 15049
}
},
{
"method": "Network.resourceChangedPriority",
"params": {
"requestId": "98243.2",
"newPriority": "High",
"timestamp": 1890151.030138
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.3",
"timestamp": 1890151.041441,
"dataLength": 0,
"encodedDataLength": 23
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.3",
"timestamp": 1890150.990101,
"encodedDataLength": 814
}
},
{
"method": "Network.responseReceivedExtraInfo",
"params": {
"requestId": "98243.16",
"blockedCookies": [],
"headers": {
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"access-control-allow-origin": "*",
"cache-control": "public, max-age=432000, no-transform, immutable",
"content-encoding": "br",
"content-length": "2040",
"content-md5": "aaFACG/wrQSI1YwC6/zyMQ==",
"content-type": "text/javascript; charset=utf-8",
"cross-origin-resource-policy": "cross-origin",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"etag": "0x8DC62FB16D4CB29",
"last-modified": "Mon, 22 Apr 2024 18:36:13 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"timing-allow-origin": "*",
"x-azure-ref-originshield": "Ref A: 85896306E2E94EB197293D4842CB482B Ref B: SG2EDGE2621 Ref C: 2024-07-09T04:58:21Z",
"x-cache": "TCP_HIT",
"x-ms-blob-type": "BlockBlob",
"x-ms-lease-status": "unlocked",
"x-ms-request-id": "8a54550b-e01e-0013-29e5-cd138d000000",
"x-ms-version": "2009-09-19",
"x-msedge-ref": "Ref A: 5A64D580B0614F6D99B74DA01C0ED16C Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:52Z"
},
"resourceIPAddressSpace": "Public",
"statusCode": 200,
"cookiePartitionKey": "https://bing.com",
"cookiePartitionKeyOpaque": false,
"exemptedCookies": []
}
},
{
"method": "Network.responseReceivedExtraInfo",
"params": {
"requestId": "98243.17",
"blockedCookies": [],
"headers": {
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"access-control-allow-origin": "*",
"cache-control": "public, max-age=432000, no-transform, immutable",
"content-encoding": "br",
"content-length": "618",
"content-md5": "zOdVriQW+8ThXrHHjgU0ZA==",
"content-type": "text/javascript; charset=utf-8",
"cross-origin-resource-policy": "cross-origin",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"etag": "0x8DA9762B6A74056",
"last-modified": "Thu, 15 Sep 2022 21:39:05 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"timing-allow-origin": "*",
"x-azure-ref-originshield": "Ref A: D708D603948D46EFB0261FDD9541F7B8 Ref B: SG2EDGE2521 Ref C: 2024-07-09T07:51:33Z",
"x-cache": "TCP_HIT",
"x-ms-blob-type": "BlockBlob",
"x-ms-lease-status": "unlocked",
"x-ms-request-id": "77afcb4f-001e-009d-79ac-d1c53b000000",
"x-ms-version": "2009-09-19",
"x-msedge-ref": "Ref A: 35B6151630634299BF6876E6D5CF90B2 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:52Z"
},
"resourceIPAddressSpace": "Public",
"statusCode": 200,
"cookiePartitionKey": "https://bing.com",
"cookiePartitionKeyOpaque": false,
"exemptedCookies": []
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.16",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.068673,
"type": "Script",
"response": {
"url": "https://cn.bing.com/rp/fRPi0Fb1vDrxqdzIfEwP1G-sDQw.br.js",
"status": 200,
"statusText": "",
"headers": {
"x-ms-blob-type": "BlockBlob",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"content-encoding": "br",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"x-azure-ref-originshield": "Ref A: 85896306E2E94EB197293D4842CB482B Ref B: SG2EDGE2621 Ref C: 2024-07-09T04:58:21Z",
"content-md5": "aaFACG/wrQSI1YwC6/zyMQ==",
"x-cache": "TCP_HIT",
"cross-origin-resource-policy": "cross-origin",
"content-length": "2040",
"x-ms-lease-status": "unlocked",
"last-modified": "Mon, 22 Apr 2024 18:36:13 GMT",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: 5A64D580B0614F6D99B74DA01C0ED16C Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:52Z",
"etag": "0x8DC62FB16D4CB29",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"content-type": "text/javascript; charset=utf-8",
"access-control-allow-origin": "*",
"x-ms-request-id": "8a54550b-e01e-0013-29e5-cd138d000000",
"cache-control": "public, max-age=432000, no-transform, immutable",
"x-ms-version": "2009-09-19",
"timing-allow-origin": "*"
},
"mimeType": "text/javascript",
"charset": "utf-8",
"connectionReused": true,
"connectionId": 18,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 306,
"timing": {
"requestTime": 1890150.991087,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 0.48,
"sendEnd": 0.786,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 77.115,
"receiveHeadersEnd": 77.238
},
"responseTime": 1720670452487.383,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": true,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.16",
"timestamp": 1890151.068708,
"dataLength": 6214,
"encodedDataLength": 0
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.17",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.069426,
"type": "Script",
"response": {
"url": "https://cn.bing.com/rp/1xoNdSsiOsQnITofHebvgzOZ2HM.br.js",
"status": 200,
"statusText": "",
"headers": {
"x-ms-blob-type": "BlockBlob",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"content-encoding": "br",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"x-azure-ref-originshield": "Ref A: D708D603948D46EFB0261FDD9541F7B8 Ref B: SG2EDGE2521 Ref C: 2024-07-09T07:51:33Z",
"content-md5": "zOdVriQW+8ThXrHHjgU0ZA==",
"x-cache": "TCP_HIT",
"cross-origin-resource-policy": "cross-origin",
"content-length": "618",
"x-ms-lease-status": "unlocked",
"last-modified": "Thu, 15 Sep 2022 21:39:05 GMT",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: 35B6151630634299BF6876E6D5CF90B2 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:52Z",
"etag": "0x8DA9762B6A74056",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"content-type": "text/javascript; charset=utf-8",
"access-control-allow-origin": "*",
"x-ms-request-id": "77afcb4f-001e-009d-79ac-d1c53b000000",
"cache-control": "public, max-age=432000, no-transform, immutable",
"x-ms-version": "2009-09-19",
"timing-allow-origin": "*"
},
"mimeType": "text/javascript",
"charset": "utf-8",
"connectionReused": true,
"connectionId": 18,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 724,
"timing": {
"requestTime": 1890150.991285,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 0.335,
"sendEnd": 0.589,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 77.422,
"receiveHeadersEnd": 77.475
},
"responseTime": 1720670452487.887,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": true,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.17",
"timestamp": 1890151.069455,
"dataLength": 1426,
"encodedDataLength": 0
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.16",
"timestamp": 1890151.069603,
"dataLength": 0,
"encodedDataLength": 2058
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.16",
"timestamp": 1890151.068608,
"encodedDataLength": 2364
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.17",
"timestamp": 1890151.069773,
"dataLength": 0,
"encodedDataLength": 636
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.17",
"timestamp": 1890151.068868,
"encodedDataLength": 1360
}
},
{
"method": "Page.domContentEventFired",
"params": {
"timestamp": 1890151.072434
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.2",
"associatedCookies": [],
"headers": {
":authority": "s.cn.bing.net",
":method": "GET",
":path": "/th?id=OHR.GangiSicily_ZH-CN9086944081_1920x1080.webp&qlt=50",
":scheme": "https",
"accept": "image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8",
"accept-encoding": "gzip, deflate, br, zstd",
"priority": "u=1, i",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-platform": "\"macOS\"",
"sec-fetch-dest": "image",
"sec-fetch-mode": "no-cors",
"sec-fetch-site": "cross-site",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890150.842714
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.responseReceivedExtraInfo",
"params": {
"requestId": "98243.2",
"blockedCookies": [],
"headers": {
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"access-control-allow-headers": "*",
"access-control-allow-methods": "GET, POST, OPTIONS",
"access-control-allow-origin": "*",
"cache-control": "public, max-age=691200",
"content-length": "243258",
"content-type": "image/webp",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingth&ndcParam=QUZE\"}]}",
"timing-allow-origin": "*",
"vary": "Origin",
"x-cc-via": "197_JP-osaka-osaka-2-cache-1[H,1]",
"x-msedge-ref": "Ref A: 707DA2009D1442ABB85E52F9330E326B Ref B: HKBEDGE0619 Ref C: 2024-07-10T16:00:02Z"
},
"resourceIPAddressSpace": "Public",
"statusCode": 200,
"cookiePartitionKey": "https://bing.com",
"cookiePartitionKeyOpaque": false,
"exemptedCookies": []
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.2",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.1689,
"type": "Image",
"response": {
"url": "https://s.cn.bing.net/th?id=OHR.GangiSicily_ZH-CN9086944081_1920x1080.webp&qlt=50",
"status": 200,
"statusText": "",
"headers": {
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: 707DA2009D1442ABB85E52F9330E326B Ref B: HKBEDGE0619 Ref C: 2024-07-10T16:00:02Z",
"x-cc-via": "197_JP-osaka-osaka-2-cache-1[H,1]",
"vary": "Origin",
"access-control-allow-methods": "GET, POST, OPTIONS",
"content-type": "image/webp",
"access-control-allow-origin": "*",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingth&ndcParam=QUZE\"}]}",
"cache-control": "public, max-age=691200",
"timing-allow-origin": "*",
"access-control-allow-headers": "*",
"content-length": "243258"
},
"mimeType": "image/webp",
"charset": "",
"connectionReused": false,
"connectionId": 72,
"remoteIPAddress": "45.43.48.194",
"remotePort": 443,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 646,
"timing": {
"requestTime": 1890150.842714,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": 148.941,
"dnsEnd": 148.943,
"connectStart": 148.943,
"connectEnd": 267.169,
"sslStart": 207.666,
"sslEnd": 267.166,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 267.24,
"sendEnd": 267.294,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 324.317,
"receiveHeadersEnd": 324.475
},
"responseTime": 1720670452586.228,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.2",
"keyExchange": "ECDHE_RSA",
"keyExchangeGroup": "X25519",
"cipher": "AES_128_GCM",
"certificateId": 0,
"subjectName": "s.cn.bing.net",
"sanList": [
"s1.cn.bing.net",
"s2.cn.bing.net",
"s3.cn.bing.net",
"s4.cn.bing.net",
"ts1.cn.mm.bing.net",
"ts2.cn.mm.bing.net",
"ts3.cn.mm.bing.net",
"ts4.cn.mm.bing.net",
"*.cn.bing.net",
"s.cn.bing.net"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1715389271,
"validTo": 1746493271,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": true,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.2",
"timestamp": 1890151.168952,
"dataLength": 15257,
"encodedDataLength": 0
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.2",
"timestamp": 1890151.179031,
"dataLength": 16366,
"encodedDataLength": 31659
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.2",
"timestamp": 1890151.191747,
"dataLength": 16402,
"encodedDataLength": 16420
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.2",
"timestamp": 1890151.271986,
"dataLength": 16384,
"encodedDataLength": 16402
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.2",
"timestamp": 1890151.293325,
"dataLength": 65536,
"encodedDataLength": 81920
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.2",
"timestamp": 1890151.293984,
"dataLength": 81830,
"encodedDataLength": 65680
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.2",
"timestamp": 1890151.294957,
"dataLength": 72,
"encodedDataLength": 0
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.2",
"timestamp": 1890151.305859,
"dataLength": 16366,
"encodedDataLength": 16384
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.2",
"timestamp": 1890151.310018,
"dataLength": 15045,
"encodedDataLength": 15072
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.2",
"timestamp": 1890151.30998,
"encodedDataLength": 244183
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.21",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/2nPYI_yVi03slvD-5e9Idq2GPMw.br.css",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "VeryHigh",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.312933,
"wallTime": 1720670452.732229,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "",
"scriptId": "5",
"url": "https://cn.bing.com/",
"lineNumber": 5,
"columnNumber": 30738
},
{
"functionName": "addStyles",
"scriptId": "5",
"url": "https://cn.bing.com/",
"lineNumber": 5,
"columnNumber": 30645
},
{
"functionName": "n",
"scriptId": "5",
"url": "https://cn.bing.com/",
"lineNumber": 5,
"columnNumber": 30762
},
{
"functionName": "",
"scriptId": "5",
"url": "https://cn.bing.com/",
"lineNumber": 5,
"columnNumber": 30884
}
]
}
},
"redirectHasExtraInfo": false,
"type": "Stylesheet",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.22",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/hhpueD4YvK7dLly-AEHfn2sLT6A.br.css",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "VeryHigh",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.313213,
"wallTime": 1720670452.732406,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "",
"scriptId": "5",
"url": "https://cn.bing.com/",
"lineNumber": 5,
"columnNumber": 30738
},
{
"functionName": "addStyles",
"scriptId": "5",
"url": "https://cn.bing.com/",
"lineNumber": 5,
"columnNumber": 30645
},
{
"functionName": "n",
"scriptId": "5",
"url": "https://cn.bing.com/",
"lineNumber": 5,
"columnNumber": 30762
},
{
"functionName": "",
"scriptId": "5",
"url": "https://cn.bing.com/",
"lineNumber": 5,
"columnNumber": 30884
}
]
}
},
"redirectHasExtraInfo": false,
"type": "Stylesheet",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Page.loadEventFired",
"params": {
"timestamp": 1890151.313354
}
},
{
"method": "Page.frameStoppedLoading",
"params": {
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.21",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245838,
"size": 26,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245869,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/rp/2nPYI_yVi03slvD-5e9Idq2GPMw.br.css",
":scheme": "https",
"accept": "text/css,*/*;q=0.1",
"accept-encoding": "gzip, deflate, br, zstd",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; SRCHHPGUSR=SRCHLANG=zh-Hans; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"priority": "u=0",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "style",
"sec-fetch-mode": "no-cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890151.31328
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.22",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245838,
"size": 26,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245869,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/rp/hhpueD4YvK7dLly-AEHfn2sLT6A.br.css",
":scheme": "https",
"accept": "text/css,*/*;q=0.1",
"accept-encoding": "gzip, deflate, br, zstd",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; SRCHHPGUSR=SRCHLANG=zh-Hans; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"priority": "u=0",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "style",
"sec-fetch-mode": "no-cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890151.31362
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.23",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/fd/ls/l?IG=7F958877A0B44FF0AC2B4FE8D34C58D7&CID=27EF5FA852976BB80EDC4B1153CD6A16&Type=Event.CPT&DATA={%22pp%22:{%22S%22:%22L%22,%22FC%22:-1,%22BC%22:-1,%22SE%22:-1,%22TC%22:-1,%22H%22:-1,%22BP%22:268,%22CT%22:270,%22IL%22:4},%22net%22:%22undefined%22}&P=SERP&DA=PUSE01",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "Low",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.317759,
"wallTime": 1720670452.73697,
"initiator": {
"type": "other"
},
"redirectHasExtraInfo": false,
"type": "Image",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.23",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245838,
"size": 26,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245869,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/fd/ls/l?IG=7F958877A0B44FF0AC2B4FE8D34C58D7&CID=27EF5FA852976BB80EDC4B1153CD6A16&Type=Event.CPT&DATA={%22pp%22:{%22S%22:%22L%22,%22FC%22:-1,%22BC%22:-1,%22SE%22:-1,%22TC%22:-1,%22H%22:-1,%22BP%22:268,%22CT%22:270,%22IL%22:4},%22net%22:%22undefined%22}&P=SERP&DA=PUSE01",
":scheme": "https",
"accept": "image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8",
"accept-encoding": "gzip, deflate, br, zstd",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; SRCHHPGUSR=SRCHLANG=zh-Hans; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"priority": "i",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "image",
"sec-fetch-mode": "no-cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890151.318049
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.24",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245838,
"size": 26,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245869,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "POST",
":path": "/fd/ls/lsp.aspx?",
":scheme": "https",
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"content-length": "339",
"content-type": "text/plain;charset=UTF-8",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; SRCHHPGUSR=SRCHLANG=zh-Hans; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"origin": "https://cn.bing.com",
"priority": "u=4, i",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "no-cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890151.320336
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.24",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/fd/ls/lsp.aspx?",
"method": "POST",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"Content-Type": "text/plain;charset=UTF-8",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"postData": "<ClientInstRequest><Events><E><T>Event.ClientInst</T><IG>7F958877A0B44FF0AC2B4FE8D34C58D7</IG><TS>1720670452738</TS><D><![CDATA[{id:3486,P:\"2:fk,3:fk,4:fk,5:fk,7:fk,8:h9,9:lk,10:q5,11:lv,12:sh,13:sh,14:sh,15:z3,16:z3,17:z6\",S:\"nav:0\",v:1.1,T:\"CI.Perf\",FID:\"CI\",Name:\"PerfV2\"}]]></D></E></Events><STS>1720670452738</STS></ClientInstRequest>",
"hasPostData": true,
"postDataEntries": [
{
"bytes": "PENsaWVudEluc3RSZXF1ZXN0PjxFdmVudHM+PEU+PFQ+RXZlbnQuQ2xpZW50SW5zdDwvVD48SUc+N0Y5NTg4NzdBMEI0NEZGMEFDMkI0RkU4RDM0QzU4RDc8L0lHPjxUUz4xNzIwNjcwNDUyNzM4PC9UUz48RD48IVtDREFUQVt7aWQ6MzQ4NixQOiIyOmZrLDM6ZmssNDpmayw1OmZrLDc6ZmssODpoOSw5OmxrLDEwOnE1LDExOmx2LDEyOnNoLDEzOnNoLDE0OnNoLDE1OnozLDE2OnozLDE3Ono2IixTOiJuYXY6MCIsdjoxLjEsVDoiQ0kuUGVyZiIsRklEOiJDSSIsTmFtZToiUGVyZlYyIn1dXT48L0Q+PC9FPjwvRXZlbnRzPjxTVFM+MTcyMDY3MDQ1MjczODwvU1RTPjwvQ2xpZW50SW5zdFJlcXVlc3Q+"
}
],
"mixedContentType": "none",
"initialPriority": "VeryLow",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.319525,
"wallTime": 1720670452.739283,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "n.log",
"scriptId": "5",
"url": "https://cn.bing.com/",
"lineNumber": 5,
"columnNumber": 28284
},
{
"functionName": "u",
"scriptId": "5",
"url": "https://cn.bing.com/",
"lineNumber": 5,
"columnNumber": 28781
},
{
"functionName": "",
"scriptId": "5",
"url": "https://cn.bing.com/",
"lineNumber": 5,
"columnNumber": 30207
}
]
}
},
"redirectHasExtraInfo": false,
"type": "Ping",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.25",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"Origin": "https://cn.bing.com",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "Low",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.320931,
"wallTime": 1720670452.740136,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "",
"scriptId": "5",
"url": "https://cn.bing.com/",
"lineNumber": 5,
"columnNumber": 23227
}
]
}
},
"redirectHasExtraInfo": false,
"type": "Script",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.25",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245838,
"size": 26,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245869,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
":scheme": "https",
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; SRCHHPGUSR=SRCHLANG=zh-Hans; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"origin": "https://cn.bing.com",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "script",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890151.321112
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.responseReceivedExtraInfo",
"params": {
"requestId": "98243.22",
"blockedCookies": [],
"headers": {
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"access-control-allow-origin": "*",
"cache-control": "public, max-age=432000, no-transform, immutable",
"content-encoding": "br",
"content-length": "1090",
"content-md5": "PV6cqs147JAUhUtxsPdnlQ==",
"content-type": "text/css; charset=utf-8",
"cross-origin-resource-policy": "cross-origin",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"etag": "0x8DC7E3710571907",
"last-modified": "Mon, 27 May 2024 10:23:34 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"timing-allow-origin": "*",
"x-azure-ref-originshield": "Ref A: 23F049CA5C0C46159DC11DEBA529FC96 Ref B: SG2EDGE2508 Ref C: 2024-07-11T00:59:47Z",
"x-cache": "TCP_HIT",
"x-ms-blob-type": "BlockBlob",
"x-ms-lease-status": "unlocked",
"x-ms-request-id": "60bec9ae-201e-00b5-7318-d3a493000000",
"x-ms-version": "2009-09-19",
"x-msedge-ref": "Ref A: 55A9DB1174904B68998B712910F70BA7 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:52Z"
},
"resourceIPAddressSpace": "Public",
"statusCode": 200,
"cookiePartitionKey": "https://bing.com",
"cookiePartitionKeyOpaque": false,
"exemptedCookies": []
}
},
{
"method": "Network.responseReceivedExtraInfo",
"params": {
"requestId": "98243.21",
"blockedCookies": [],
"headers": {
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"access-control-allow-origin": "*",
"cache-control": "public, max-age=432000, no-transform, immutable",
"content-encoding": "br",
"content-length": "128518",
"content-md5": "Lp773zPpugnS7oZUfomYbw==",
"content-type": "text/css; charset=utf-8",
"cross-origin-resource-policy": "cross-origin",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"etag": "0x8DCA0E2DA762FFC",
"last-modified": "Wed, 10 Jul 2024 13:18:56 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"timing-allow-origin": "*",
"x-azure-ref-originshield": "Ref A: F7BB4CCB2E444E85BB6B867C5F598E4A Ref B: SG2EDGE2516 Ref C: 2024-07-10T18:29:46Z",
"x-cache": "TCP_HIT",
"x-ms-blob-type": "BlockBlob",
"x-ms-lease-status": "unlocked",
"x-ms-request-id": "382a8a14-a01e-0012-29f1-d24c51000000",
"x-ms-version": "2009-09-19",
"x-msedge-ref": "Ref A: 9368872BABE442319AD58B100DBEA062 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:52Z"
},
"resourceIPAddressSpace": "Public",
"statusCode": 200,
"cookiePartitionKey": "https://bing.com",
"cookiePartitionKeyOpaque": false,
"exemptedCookies": []
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.22",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.396995,
"type": "Stylesheet",
"response": {
"url": "https://cn.bing.com/rp/hhpueD4YvK7dLly-AEHfn2sLT6A.br.css",
"status": 200,
"statusText": "",
"headers": {
"x-ms-blob-type": "BlockBlob",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"content-encoding": "br",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"x-azure-ref-originshield": "Ref A: 23F049CA5C0C46159DC11DEBA529FC96 Ref B: SG2EDGE2508 Ref C: 2024-07-11T00:59:47Z",
"content-md5": "PV6cqs147JAUhUtxsPdnlQ==",
"x-cache": "TCP_HIT",
"cross-origin-resource-policy": "cross-origin",
"content-length": "1090",
"x-ms-lease-status": "unlocked",
"last-modified": "Mon, 27 May 2024 10:23:34 GMT",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: 55A9DB1174904B68998B712910F70BA7 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:52Z",
"etag": "0x8DC7E3710571907",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"content-type": "text/css; charset=utf-8",
"access-control-allow-origin": "*",
"x-ms-request-id": "60bec9ae-201e-00b5-7318-d3a493000000",
"cache-control": "public, max-age=432000, no-transform, immutable",
"x-ms-version": "2009-09-19",
"timing-allow-origin": "*"
},
"mimeType": "text/css",
"charset": "utf-8",
"connectionReused": true,
"connectionId": 18,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 334,
"timing": {
"requestTime": 1890151.31362,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 0.201,
"sendEnd": 0.338,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 82.899,
"receiveHeadersEnd": 83.047
},
"responseTime": 1720670452815.707,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": true,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.22",
"timestamp": 1890151.397025,
"dataLength": 4289,
"encodedDataLength": 0
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.22",
"timestamp": 1890151.397206,
"dataLength": 0,
"encodedDataLength": 1108
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.22",
"timestamp": 1890151.39692,
"encodedDataLength": 1442
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.21",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.397368,
"type": "Stylesheet",
"response": {
"url": "https://cn.bing.com/rp/2nPYI_yVi03slvD-5e9Idq2GPMw.br.css",
"status": 200,
"statusText": "",
"headers": {
"x-ms-blob-type": "BlockBlob",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"content-encoding": "br",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"x-azure-ref-originshield": "Ref A: F7BB4CCB2E444E85BB6B867C5F598E4A Ref B: SG2EDGE2516 Ref C: 2024-07-10T18:29:46Z",
"content-md5": "Lp773zPpugnS7oZUfomYbw==",
"x-cache": "TCP_HIT",
"cross-origin-resource-policy": "cross-origin",
"content-length": "128518",
"x-ms-lease-status": "unlocked",
"last-modified": "Wed, 10 Jul 2024 13:18:56 GMT",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: 9368872BABE442319AD58B100DBEA062 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:52Z",
"etag": "0x8DCA0E2DA762FFC",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"content-type": "text/css; charset=utf-8",
"access-control-allow-origin": "*",
"x-ms-request-id": "382a8a14-a01e-0012-29f1-d24c51000000",
"cache-control": "public, max-age=432000, no-transform, immutable",
"x-ms-version": "2009-09-19",
"timing-allow-origin": "*"
},
"mimeType": "text/css",
"charset": "utf-8",
"connectionReused": true,
"connectionId": 18,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 285,
"timing": {
"requestTime": 1890151.31328,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 0.478,
"sendEnd": 0.677,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 83.703,
"receiveHeadersEnd": 83.77
},
"responseTime": 1720670452816.163,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": true,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.21",
"timestamp": 1890151.397764,
"dataLength": 144562,
"encodedDataLength": 80193
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.21",
"timestamp": 1890151.399055,
"dataLength": 21793,
"encodedDataLength": 1772
}
},
{
"method": "Network.responseReceivedExtraInfo",
"params": {
"requestId": "98243.25",
"blockedCookies": [],
"headers": {
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"access-control-allow-origin": "*",
"cache-control": "public, max-age=432000, no-transform, immutable",
"content-encoding": "br",
"content-length": "7605",
"content-md5": "BWaQtvwmACe0rwDXfrv9Hg==",
"content-type": "text/javascript; charset=utf-8",
"cross-origin-resource-policy": "cross-origin",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"etag": "0x8DC9A1E50ACCFC1",
"last-modified": "Mon, 01 Jul 2024 22:36:57 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"timing-allow-origin": "*",
"x-azure-ref-originshield": "Ref A: BA121F07255C48BA92DCBADEDD0C3BEB Ref B: SG2EDGE2417 Ref C: 2024-07-10T12:54:53Z",
"x-cache": "TCP_HIT",
"x-ms-blob-type": "BlockBlob",
"x-ms-lease-status": "unlocked",
"x-ms-request-id": "af715fc2-f01e-00b6-622e-d045f7000000",
"x-ms-version": "2009-09-19",
"x-msedge-ref": "Ref A: B215ACAE5C324785B9ACF99EF63294E3 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:52Z"
},
"resourceIPAddressSpace": "Public",
"statusCode": 200,
"cookiePartitionKey": "https://bing.com",
"cookiePartitionKeyOpaque": false,
"exemptedCookies": []
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.21",
"timestamp": 1890151.512223,
"dataLength": 43591,
"encodedDataLength": 40960
}
},
{
"method": "Network.responseReceivedExtraInfo",
"params": {
"requestId": "98243.23",
"blockedCookies": [],
"headers": {
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"access-control-allow-origin": "*",
"content-length": "0",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"x-cache": "CONFIG_NOCACHE",
"x-msedge-ref": "Ref A: 58455179FE2F41AA83B4307713592472 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:52Z"
},
"resourceIPAddressSpace": "Public",
"statusCode": 200,
"cookiePartitionKey": "https://bing.com",
"cookiePartitionKeyOpaque": false,
"exemptedCookies": []
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.25",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.512748,
"type": "Script",
"response": {
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"status": 200,
"statusText": "",
"headers": {
"x-ms-blob-type": "BlockBlob",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"content-encoding": "br",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"x-azure-ref-originshield": "Ref A: BA121F07255C48BA92DCBADEDD0C3BEB Ref B: SG2EDGE2417 Ref C: 2024-07-10T12:54:53Z",
"content-md5": "BWaQtvwmACe0rwDXfrv9Hg==",
"x-cache": "TCP_HIT",
"cross-origin-resource-policy": "cross-origin",
"content-length": "7605",
"x-ms-lease-status": "unlocked",
"last-modified": "Mon, 01 Jul 2024 22:36:57 GMT",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: B215ACAE5C324785B9ACF99EF63294E3 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:52Z",
"etag": "0x8DC9A1E50ACCFC1",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"content-type": "text/javascript; charset=utf-8",
"access-control-allow-origin": "*",
"x-ms-request-id": "af715fc2-f01e-00b6-622e-d045f7000000",
"cache-control": "public, max-age=432000, no-transform, immutable",
"x-ms-version": "2009-09-19",
"timing-allow-origin": "*"
},
"mimeType": "text/javascript",
"charset": "utf-8",
"connectionReused": true,
"connectionId": 18,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 284,
"timing": {
"requestTime": 1890151.321112,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 0.126,
"sendEnd": 0.196,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 190.937,
"receiveHeadersEnd": 191.112
},
"responseTime": 1720670452931.246,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": true,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.responseReceivedExtraInfo",
"params": {
"requestId": "98243.24",
"blockedCookies": [],
"headers": {
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"access-control-allow-origin": "*",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"x-cache": "CONFIG_NOCACHE",
"x-msedge-ref": "Ref A: 134E2B076A684B09B11236406F6C277D Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:52Z"
},
"resourceIPAddressSpace": "Public",
"statusCode": 204,
"cookiePartitionKey": "https://bing.com",
"cookiePartitionKeyOpaque": false,
"exemptedCookies": []
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.23",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.513058,
"type": "Image",
"response": {
"url": "https://cn.bing.com/fd/ls/l?IG=7F958877A0B44FF0AC2B4FE8D34C58D7&CID=27EF5FA852976BB80EDC4B1153CD6A16&Type=Event.CPT&DATA={%22pp%22:{%22S%22:%22L%22,%22FC%22:-1,%22BC%22:-1,%22SE%22:-1,%22TC%22:-1,%22H%22:-1,%22BP%22:268,%22CT%22:270,%22IL%22:4},%22net%22:%22undefined%22}&P=SERP&DA=PUSE01",
"status": 200,
"statusText": "",
"headers": {
"access-control-allow-origin": "*",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: 58455179FE2F41AA83B4307713592472 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:52Z",
"content-length": "0",
"x-cache": "CONFIG_NOCACHE"
},
"mimeType": "text/plain",
"charset": "",
"connectionReused": true,
"connectionId": 18,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 125,
"timing": {
"requestTime": 1890151.318049,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 0.171,
"sendEnd": 0.293,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 194.365,
"receiveHeadersEnd": 194.414
},
"responseTime": 1720670452931.589,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": true,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.23",
"timestamp": 1890151.512646,
"encodedDataLength": 134
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.24",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.513685,
"type": "Ping",
"response": {
"url": "https://cn.bing.com/fd/ls/lsp.aspx?",
"status": 204,
"statusText": "",
"headers": {
"access-control-allow-origin": "*",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: 134E2B076A684B09B11236406F6C277D Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:52Z",
"x-cache": "CONFIG_NOCACHE"
},
"mimeType": "text/plain",
"charset": "",
"connectionReused": true,
"connectionId": 18,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 108,
"timing": {
"requestTime": 1890151.320336,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 0.117,
"sendEnd": 0.259,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 192.45,
"receiveHeadersEnd": 192.499
},
"responseTime": 1720670452931.961,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": true,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.24",
"timestamp": 1890151.513409,
"encodedDataLength": 117
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.25",
"timestamp": 1890151.513983,
"dataLength": 19743,
"encodedDataLength": 7641
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.21",
"timestamp": 1890151.514503,
"dataLength": 22124,
"encodedDataLength": 5674
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.21",
"timestamp": 1890151.514575,
"dataLength": 16242,
"encodedDataLength": 0
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.21",
"timestamp": 1890151.514558,
"encodedDataLength": 128884
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.25",
"timestamp": 1890151.513745,
"encodedDataLength": 7925
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.26",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245869,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.955602,
"size": 92,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/rp/jA1xMqBzlpnpE2ru1-s0ybbi8MM.br.js",
":scheme": "https",
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==; SRCHHPGUSR=SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"priority": "u=1, i",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890151.540935
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.27",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245869,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.955602,
"size": 92,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/rp/hkXWsTcGTHs44QxzZyThd4fbbPM.br.js",
":scheme": "https",
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==; SRCHHPGUSR=SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"priority": "u=1, i",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890151.541162
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.28",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245869,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.955602,
"size": 92,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/rp/V793ayrBYjBUm-0gdrJPAEYeUiw.br.js",
":scheme": "https",
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==; SRCHHPGUSR=SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"priority": "u=1, i",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890151.541287
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.29",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245869,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.955602,
"size": 92,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/rp/FaGqElP5DzCwweYv9HVv3an5_I8.br.js",
":scheme": "https",
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==; SRCHHPGUSR=SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"priority": "u=1, i",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890151.541384
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.30",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245869,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.955602,
"size": 92,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/rp/ZDuP1RxmIvW4zmuvz53att_oXdo.br.js",
":scheme": "https",
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==; SRCHHPGUSR=SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"priority": "u=1, i",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890151.541538
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.31",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245869,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.955602,
"size": 92,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/rp/bll21ZO27j3KPE27uQBxt24c2Fw.br.js",
":scheme": "https",
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==; SRCHHPGUSR=SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"priority": "u=1, i",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890151.54163
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.32",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245869,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.955602,
"size": 92,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/rp/2DyrZWV35Nk6it3meHG_C7ZjJ8M.br.js",
":scheme": "https",
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==; SRCHHPGUSR=SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"priority": "u=1, i",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890151.54172
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.34",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245869,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.955602,
"size": 92,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/rp/8xkvUeJjS0zgx9UJLaoz8Ih_Yy4.br.js",
":scheme": "https",
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==; SRCHHPGUSR=SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"priority": "u=1, i",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890151.54227
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.35",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245869,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.955602,
"size": 92,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/rp/otZBqrSRcTVYQwfOk5Yt1Buvss4.br.js",
":scheme": "https",
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==; SRCHHPGUSR=SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"priority": "u=1, i",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890151.542412
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.36",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245869,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.955602,
"size": 92,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/rp/xrUJJ8sN8ucbiFbMJle3n0IfRwU.br.js",
":scheme": "https",
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==; SRCHHPGUSR=SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"priority": "u=1, i",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890151.542515
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.37",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245869,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.955602,
"size": 92,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/rp/LXu4eYVt3NhFk3Ud9ZbhZ_PYFaA.br.js",
":scheme": "https",
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==; SRCHHPGUSR=SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"priority": "u=1, i",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890151.542603
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.38",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245869,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.955602,
"size": 92,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/rp/JXkjDPywJD9oeuWPLy7bD8Jc6mw.br.js",
":scheme": "https",
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==; SRCHHPGUSR=SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"priority": "u=1, i",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890151.542754
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.39",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245869,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.955602,
"size": 92,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/rp/ilbkF5vv0sk3tJ8LDY0Nm39p12g.br.js",
":scheme": "https",
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==; SRCHHPGUSR=SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"priority": "u=1, i",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890151.542847
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.40",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245869,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.955602,
"size": 92,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/rp/XM6LKGnaO0IrEHDb20t2QJ2NUlA.br.js",
":scheme": "https",
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==; SRCHHPGUSR=SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"priority": "u=1, i",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890151.54293
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.41",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245869,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.955602,
"size": 92,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/rp/MjkKTrIX9w2UKVd1W1WV1Gj2zWM.br.js",
":scheme": "https",
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==; SRCHHPGUSR=SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"priority": "u=1, i",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890151.543045
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.42",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245869,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.955602,
"size": 92,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/rp/Gyuq2bqitqDJM0BeAkbKXGlQXNw.br.js",
":scheme": "https",
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==; SRCHHPGUSR=SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"priority": "u=1, i",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890151.543171
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.43",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245869,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.955602,
"size": 92,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/rp/n21aGRCN5EKHB3qObygw029dyNU.br.js",
":scheme": "https",
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==; SRCHHPGUSR=SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"priority": "u=1, i",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890151.543257
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.26",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/jA1xMqBzlpnpE2ru1-s0ybbi8MM.br.js",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "High",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.540082,
"wallTime": 1720670452.95989,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "ri",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8990
},
{
"functionName": "ut",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8410
},
{
"functionName": "v",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8138
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 12570
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "o",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2927
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19163
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "s",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 3049
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19127
}
]
}
},
"redirectHasExtraInfo": false,
"type": "XHR",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.27",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/hkXWsTcGTHs44QxzZyThd4fbbPM.br.js",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "High",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.540936,
"wallTime": 1720670452.960139,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "ri",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8990
},
{
"functionName": "ut",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8410
},
{
"functionName": "v",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8138
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 12570
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "o",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2927
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19163
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "s",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 3049
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19127
}
]
}
},
"redirectHasExtraInfo": false,
"type": "XHR",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.28",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/V793ayrBYjBUm-0gdrJPAEYeUiw.br.js",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "High",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.541053,
"wallTime": 1720670452.96025,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "ri",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8990
},
{
"functionName": "ut",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8410
},
{
"functionName": "v",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8138
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 12570
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "o",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2927
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19163
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "s",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 3049
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19127
}
]
}
},
"redirectHasExtraInfo": false,
"type": "XHR",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.29",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/FaGqElP5DzCwweYv9HVv3an5_I8.br.js",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "High",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.541157,
"wallTime": 1720670452.960353,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "ri",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8990
},
{
"functionName": "ut",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8410
},
{
"functionName": "v",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8138
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 12570
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "o",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2927
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19163
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "s",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 3049
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19127
}
]
}
},
"redirectHasExtraInfo": false,
"type": "XHR",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.30",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/ZDuP1RxmIvW4zmuvz53att_oXdo.br.js",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "High",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.541269,
"wallTime": 1720670452.96047,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "ri",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8990
},
{
"functionName": "ut",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8410
},
{
"functionName": "v",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8138
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 12570
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "o",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2927
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19163
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "s",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 3049
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19127
}
]
}
},
"redirectHasExtraInfo": false,
"type": "XHR",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.31",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/bll21ZO27j3KPE27uQBxt24c2Fw.br.js",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "High",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.54137,
"wallTime": 1720670452.960568,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "ri",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8990
},
{
"functionName": "ut",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8410
},
{
"functionName": "v",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8138
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 12570
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "o",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2927
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19163
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "s",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 3049
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19127
}
]
}
},
"redirectHasExtraInfo": false,
"type": "XHR",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.32",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/2DyrZWV35Nk6it3meHG_C7ZjJ8M.br.js",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "High",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.541472,
"wallTime": 1720670452.960668,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "ri",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8990
},
{
"functionName": "ut",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8410
},
{
"functionName": "v",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8138
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 12570
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "o",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2927
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19163
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "s",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 3049
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19127
}
]
}
},
"redirectHasExtraInfo": false,
"type": "XHR",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.33",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/lmu8EBCaPRMKtay8LSArGyY3mv4.br.js",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "High",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.541588,
"wallTime": 1720670452.96079,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "ri",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8990
},
{
"functionName": "ut",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8410
},
{
"functionName": "v",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8138
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 12570
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "o",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2927
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19163
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "s",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 3049
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19127
}
]
}
},
"redirectHasExtraInfo": false,
"type": "XHR",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.34",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/8xkvUeJjS0zgx9UJLaoz8Ih_Yy4.br.js",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "High",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.54195,
"wallTime": 1720670452.961152,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "ri",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8990
},
{
"functionName": "ut",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8410
},
{
"functionName": "v",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8138
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 12570
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "o",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2927
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19163
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "s",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 3049
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19127
}
]
}
},
"redirectHasExtraInfo": false,
"type": "XHR",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.35",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/otZBqrSRcTVYQwfOk5Yt1Buvss4.br.js",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "High",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.542181,
"wallTime": 1720670452.961396,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "ri",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8990
},
{
"functionName": "ut",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8410
},
{
"functionName": "v",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8138
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 12570
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "o",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2927
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19163
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "s",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 3049
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19127
}
]
}
},
"redirectHasExtraInfo": false,
"type": "XHR",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.36",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/xrUJJ8sN8ucbiFbMJle3n0IfRwU.br.js",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "High",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.542325,
"wallTime": 1720670452.961525,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "ri",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8990
},
{
"functionName": "ut",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8410
},
{
"functionName": "v",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8138
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 12570
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "o",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2927
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19163
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "s",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 3049
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19127
}
]
}
},
"redirectHasExtraInfo": false,
"type": "XHR",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.37",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/LXu4eYVt3NhFk3Ud9ZbhZ_PYFaA.br.js",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "High",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.542437,
"wallTime": 1720670452.961635,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "ri",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8990
},
{
"functionName": "ut",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8410
},
{
"functionName": "v",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8138
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 12570
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "o",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2927
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19163
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "s",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 3049
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19127
}
]
}
},
"redirectHasExtraInfo": false,
"type": "XHR",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.38",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/JXkjDPywJD9oeuWPLy7bD8Jc6mw.br.js",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "High",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.542541,
"wallTime": 1720670452.961739,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "ri",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8990
},
{
"functionName": "ut",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8410
},
{
"functionName": "v",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8138
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 12570
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "o",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2927
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19163
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "s",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 3049
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19127
}
]
}
},
"redirectHasExtraInfo": false,
"type": "XHR",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.39",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/ilbkF5vv0sk3tJ8LDY0Nm39p12g.br.js",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "High",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.542635,
"wallTime": 1720670452.961835,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "ri",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8990
},
{
"functionName": "ut",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8410
},
{
"functionName": "v",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8138
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 12570
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "o",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2927
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19163
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "s",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 3049
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19127
}
]
}
},
"redirectHasExtraInfo": false,
"type": "XHR",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.40",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/XM6LKGnaO0IrEHDb20t2QJ2NUlA.br.js",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "High",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.542741,
"wallTime": 1720670452.961938,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "ri",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8990
},
{
"functionName": "ut",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8410
},
{
"functionName": "v",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8138
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 12570
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "o",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2927
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19163
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "s",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 3049
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19127
}
]
}
},
"redirectHasExtraInfo": false,
"type": "XHR",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.41",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/MjkKTrIX9w2UKVd1W1WV1Gj2zWM.br.js",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "High",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.542839,
"wallTime": 1720670452.962038,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "ri",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8990
},
{
"functionName": "ut",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8410
},
{
"functionName": "v",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8138
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 12570
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "o",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2927
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19163
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "s",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 3049
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19127
}
]
}
},
"redirectHasExtraInfo": false,
"type": "XHR",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.42",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/Gyuq2bqitqDJM0BeAkbKXGlQXNw.br.js",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "High",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.542941,
"wallTime": 1720670452.962144,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "ri",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8990
},
{
"functionName": "ut",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8410
},
{
"functionName": "v",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8138
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 12570
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "o",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2927
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19163
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "s",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 3049
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19127
}
]
}
},
"redirectHasExtraInfo": false,
"type": "XHR",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.43",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/n21aGRCN5EKHB3qObygw029dyNU.br.js",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "High",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.543052,
"wallTime": 1720670452.962251,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "ri",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8990
},
{
"functionName": "ut",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8410
},
{
"functionName": "v",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8138
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 12570
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "o",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2927
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19163
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "s",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 3049
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19127
}
]
}
},
"redirectHasExtraInfo": false,
"type": "XHR",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.44",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/8CgcSSLayxEVUBf0swP_bQGMId8.br.js",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "High",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.543153,
"wallTime": 1720670452.96235,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "ri",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8990
},
{
"functionName": "ut",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8410
},
{
"functionName": "v",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8138
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 12570
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "o",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2927
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19163
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "s",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 3049
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19127
}
]
}
},
"redirectHasExtraInfo": false,
"type": "XHR",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.45",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/V_fBQ_iVmAgE_Ta_T-6BNXc0ZY4.br.js",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "High",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.543246,
"wallTime": 1720670452.962443,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "ri",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8990
},
{
"functionName": "ut",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8410
},
{
"functionName": "v",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8138
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 12570
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "o",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2927
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19163
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "s",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 3049
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19127
}
]
}
},
"redirectHasExtraInfo": false,
"type": "XHR",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.46",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/C7TuoP5bfHv-CZlMHZy7yfvI4Fk.br.js",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "High",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.543349,
"wallTime": 1720670452.962545,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "ri",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8990
},
{
"functionName": "ut",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8410
},
{
"functionName": "v",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8138
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 12570
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "o",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2927
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19163
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "s",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 3049
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19127
}
]
}
},
"redirectHasExtraInfo": false,
"type": "XHR",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.47",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/_2I169N92jVtSc_VEsV0nma5sRY.br.js",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "High",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.543445,
"wallTime": 1720670452.962644,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "ri",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8990
},
{
"functionName": "ut",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8410
},
{
"functionName": "v",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8138
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 12570
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "o",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2927
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19163
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "s",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 3049
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19127
}
]
}
},
"redirectHasExtraInfo": false,
"type": "XHR",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.44",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245869,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.955602,
"size": 92,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/rp/8CgcSSLayxEVUBf0swP_bQGMId8.br.js",
":scheme": "https",
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==; SRCHHPGUSR=SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"priority": "u=1, i",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890151.543329
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.45",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245869,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.955602,
"size": 92,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/rp/V_fBQ_iVmAgE_Ta_T-6BNXc0ZY4.br.js",
":scheme": "https",
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==; SRCHHPGUSR=SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"priority": "u=1, i",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890151.543409
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.46",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245869,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.955602,
"size": 92,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/rp/C7TuoP5bfHv-CZlMHZy7yfvI4Fk.br.js",
":scheme": "https",
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==; SRCHHPGUSR=SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"priority": "u=1, i",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890151.543528
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.47",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245869,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.955602,
"size": 92,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/rp/_2I169N92jVtSc_VEsV0nma5sRY.br.js",
":scheme": "https",
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==; SRCHHPGUSR=SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"priority": "u=1, i",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890151.543606
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.48",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245869,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.955602,
"size": 92,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/rp/gKwIRAF4fg7noG1zyeUz8x3Jdhc.br.js",
":scheme": "https",
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==; SRCHHPGUSR=SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"priority": "u=1, i",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890151.543686
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.49",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245869,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.955602,
"size": 92,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/rp/9cuwOQ_qE7qTGKohzrf_gIjTlPI.br.js",
":scheme": "https",
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==; SRCHHPGUSR=SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"priority": "u=1, i",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890151.543767
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.50",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245869,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.955602,
"size": 92,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/rp/Gw7eETSwe7GHmKwW1lRqGPQJXRo.br.js",
":scheme": "https",
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==; SRCHHPGUSR=SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"priority": "u=1, i",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890151.543904
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.51",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245869,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.955602,
"size": 92,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/rp/psgXZvzYJMEW2ydikIk493Va1d4.br.js",
":scheme": "https",
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==; SRCHHPGUSR=SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"priority": "u=1, i",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890151.543987
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.53",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245869,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.955602,
"size": 92,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/rp/5L3iD467J3iJWEPwIjxlK0MMDpY.br.js",
":scheme": "https",
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==; SRCHHPGUSR=SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"priority": "u=1, i",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890151.544299
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.54",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245869,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.955602,
"size": 92,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/rp/0aAptBQXnUUuRNzELv9VJq7s7Ec.br.js",
":scheme": "https",
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==; SRCHHPGUSR=SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"priority": "u=1, i",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890151.544424
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.55",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245869,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.955602,
"size": 92,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/rp/K_V1CARn2Q2lTs5njJKUvUkHyi4.br.js",
":scheme": "https",
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==; SRCHHPGUSR=SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"priority": "u=1, i",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890151.54455
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.56",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245869,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.955602,
"size": 92,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/rp/O8i6fAzu57ALnSqTI9ARYswV7d4.br.js",
":scheme": "https",
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==; SRCHHPGUSR=SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"priority": "u=1, i",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890151.544663
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.48",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/gKwIRAF4fg7noG1zyeUz8x3Jdhc.br.js",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "High",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.543543,
"wallTime": 1720670452.962739,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "ri",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8990
},
{
"functionName": "ut",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8410
},
{
"functionName": "v",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8138
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 12570
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "o",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2927
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19163
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "s",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 3049
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19127
}
]
}
},
"redirectHasExtraInfo": false,
"type": "XHR",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.49",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/9cuwOQ_qE7qTGKohzrf_gIjTlPI.br.js",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "High",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.543633,
"wallTime": 1720670452.962832,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "ri",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8990
},
{
"functionName": "ut",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8410
},
{
"functionName": "v",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8138
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 12570
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "o",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2927
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19163
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "s",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 3049
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19127
}
]
}
},
"redirectHasExtraInfo": false,
"type": "XHR",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.50",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/Gw7eETSwe7GHmKwW1lRqGPQJXRo.br.js",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "High",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.543735,
"wallTime": 1720670452.962932,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "ri",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8990
},
{
"functionName": "ut",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8410
},
{
"functionName": "v",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8138
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 12570
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "o",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2927
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19163
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "s",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 3049
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19127
}
]
}
},
"redirectHasExtraInfo": false,
"type": "XHR",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.51",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/psgXZvzYJMEW2ydikIk493Va1d4.br.js",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "High",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.543834,
"wallTime": 1720670452.963032,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "ri",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8990
},
{
"functionName": "ut",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8410
},
{
"functionName": "v",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8138
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 12570
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "o",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2927
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19163
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "s",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 3049
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19127
}
]
}
},
"redirectHasExtraInfo": false,
"type": "XHR",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.52",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://r.bing.com/rs/6s/xi/nj/nt6a1ZR520utsLoZmSYgwxdOPgI.js?or=n",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "High",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.543928,
"wallTime": 1720670452.963122,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "ri",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8990
},
{
"functionName": "ut",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8410
},
{
"functionName": "v",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8138
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 12570
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "o",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2927
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19163
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "s",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 3049
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19127
}
]
}
},
"redirectHasExtraInfo": false,
"type": "XHR",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.53",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/5L3iD467J3iJWEPwIjxlK0MMDpY.br.js",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "High",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.544119,
"wallTime": 1720670452.963347,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "ri",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8990
},
{
"functionName": "ut",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8410
},
{
"functionName": "v",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8138
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 12570
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "o",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2927
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19163
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "s",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 3049
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19127
}
]
}
},
"redirectHasExtraInfo": false,
"type": "XHR",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.54",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/0aAptBQXnUUuRNzELv9VJq7s7Ec.br.js",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "High",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.544306,
"wallTime": 1720670452.96351,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "ri",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8990
},
{
"functionName": "ut",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8410
},
{
"functionName": "v",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8138
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 12570
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "o",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2927
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19163
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "s",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 3049
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19127
}
]
}
},
"redirectHasExtraInfo": false,
"type": "XHR",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.55",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/K_V1CARn2Q2lTs5njJKUvUkHyi4.br.js",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "High",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.544419,
"wallTime": 1720670452.963616,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "ri",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8990
},
{
"functionName": "ut",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8410
},
{
"functionName": "v",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8138
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 12570
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "o",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2927
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19163
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "s",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 3049
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19127
}
]
}
},
"redirectHasExtraInfo": false,
"type": "XHR",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.56",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/O8i6fAzu57ALnSqTI9ARYswV7d4.br.js",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "High",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.544521,
"wallTime": 1720670452.963718,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "ri",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8990
},
{
"functionName": "ut",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8410
},
{
"functionName": "v",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8138
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 12570
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "o",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2927
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19163
},
{
"functionName": "e",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 2694
},
{
"functionName": "s",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 3049
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 19127
}
]
}
},
"redirectHasExtraInfo": false,
"type": "XHR",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.33",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.546323,
"type": "XHR",
"response": {
"url": "https://cn.bing.com/rp/lmu8EBCaPRMKtay8LSArGyY3mv4.br.js",
"status": 200,
"statusText": "",
"headers": {
"x-ms-blob-type": "BlockBlob",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"content-encoding": "br",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"x-azure-ref-originshield": "Ref A: 251D5EC94C574BDF8EAB35FCB6001D57 Ref B: SG2EDGE2411 Ref C: 2024-07-10T15:53:46Z",
"content-md5": "5aqSHeuG+BOAJrucJAgg+w==",
"x-cache": "TCP_HIT",
"cross-origin-resource-policy": "cross-origin",
"content-length": "5",
"x-ms-lease-status": "unlocked",
"last-modified": "Wed, 24 Jun 2020 04:45:53 GMT",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: 0CD8A25D93A3482EB8C05162E62966A0 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:52Z",
"etag": "0x8D817F979D0642F",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"content-type": "application/x-javascript; charset=utf-8",
"access-control-allow-origin": "*",
"x-ms-request-id": "986febb6-201e-00f8-72c9-d16b7f000000",
"cache-control": "public, max-age=432000",
"x-ms-version": "2009-09-19",
"timing-allow-origin": "*"
},
"mimeType": "application/x-javascript",
"charset": "utf-8",
"connectionReused": false,
"connectionId": 0,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": true,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 0,
"timing": {
"requestTime": 1890151.541846,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 0.02,
"sendEnd": 0.02,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 3.857,
"receiveHeadersEnd": 3.906
},
"responseTime": 1720670452407.807,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": false,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.33",
"timestamp": 1890151.54636,
"dataLength": 1,
"encodedDataLength": 0
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.33",
"timestamp": 1890151.545966,
"encodedDataLength": 0
}
},
{
"method": "Network.responseReceivedExtraInfo",
"params": {
"requestId": "98243.26",
"blockedCookies": [],
"headers": {
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"access-control-allow-origin": "*",
"cache-control": "public, max-age=432000, no-transform, immutable",
"content-encoding": "br",
"content-length": "12109",
"content-md5": "OuXcJlOLJ5YKncHzThxbVw==",
"content-type": "text/javascript; charset=utf-8",
"cross-origin-resource-policy": "cross-origin",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"etag": "0x8DC6EB7CBC7582B",
"last-modified": "Tue, 07 May 2024 17:04:45 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"timing-allow-origin": "*",
"x-azure-ref-originshield": "Ref A: 637C988B573D42F1B87A8616C7A052D8 Ref B: SG2EDGE2622 Ref C: 2024-07-10T12:55:35Z",
"x-cache": "TCP_HIT",
"x-ms-blob-type": "BlockBlob",
"x-ms-lease-status": "unlocked",
"x-ms-request-id": "ad234fcb-e01e-002c-141a-d0db2e000000",
"x-ms-version": "2009-09-19",
"x-msedge-ref": "Ref A: BF14A4A4CA3B41AD9CFECB24EBA0DBFE Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z"
},
"resourceIPAddressSpace": "Public",
"statusCode": 200,
"cookiePartitionKey": "https://bing.com",
"cookiePartitionKeyOpaque": false,
"exemptedCookies": []
}
},
{
"method": "Network.responseReceivedExtraInfo",
"params": {
"requestId": "98243.30",
"blockedCookies": [],
"headers": {
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"access-control-allow-origin": "*",
"cache-control": "public, max-age=432000, no-transform, immutable",
"content-encoding": "br",
"content-length": "252",
"content-md5": "E/pkYW4bCY7jX+uKzdO4Xg==",
"content-type": "text/javascript; charset=utf-8",
"cross-origin-resource-policy": "cross-origin",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"etag": "0x8DB3C59208D2588",
"last-modified": "Thu, 13 Apr 2023 19:56:09 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"timing-allow-origin": "*",
"x-azure-ref-originshield": "Ref A: 512D8A299F4C474D838924AA52AC2E46 Ref B: SG2EDGE2406 Ref C: 2024-07-09T01:56:48Z",
"x-cache": "TCP_HIT",
"x-ms-blob-type": "BlockBlob",
"x-ms-lease-status": "unlocked",
"x-ms-request-id": "88c926b1-701e-00b8-2e30-d06c47000000",
"x-ms-version": "2009-09-19",
"x-msedge-ref": "Ref A: 92DB9A3D879247B0908C6E2E76A5CF82 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z"
},
"resourceIPAddressSpace": "Public",
"statusCode": 200,
"cookiePartitionKey": "https://bing.com",
"cookiePartitionKeyOpaque": false,
"exemptedCookies": []
}
},
{
"method": "Network.responseReceivedExtraInfo",
"params": {
"requestId": "98243.34",
"blockedCookies": [],
"headers": {
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"access-control-allow-origin": "*",
"cache-control": "public, max-age=432000, no-transform, immutable",
"content-encoding": "br",
"content-length": "598",
"content-md5": "1nLWdicDwxe3KsJ1SxmxmQ==",
"content-type": "text/javascript; charset=utf-8",
"cross-origin-resource-policy": "cross-origin",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"etag": "0x8DBF0C2C35B6A7B",
"last-modified": "Wed, 29 Nov 2023 10:05:49 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"timing-allow-origin": "*",
"x-azure-ref-originshield": "Ref A: B1AFF2748A474F7D919ECF5C9B8C0229 Ref B: SG2EDGE2515 Ref C: 2024-07-07T02:30:35Z",
"x-cache": "TCP_HIT",
"x-ms-blob-type": "BlockBlob",
"x-ms-lease-status": "unlocked",
"x-ms-request-id": "887ea638-501e-005b-69f9-cd0eba000000",
"x-ms-version": "2009-09-19",
"x-msedge-ref": "Ref A: BFC943AB4F144B498EA93E9DD3906C67 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z"
},
"resourceIPAddressSpace": "Public",
"statusCode": 200,
"cookiePartitionKey": "https://bing.com",
"cookiePartitionKeyOpaque": false,
"exemptedCookies": []
}
},
{
"method": "Network.responseReceivedExtraInfo",
"params": {
"requestId": "98243.32",
"blockedCookies": [],
"headers": {
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"access-control-allow-origin": "*",
"cache-control": "public, max-age=432000, no-transform, immutable",
"content-encoding": "br",
"content-length": "1519",
"content-md5": "Kgkc7+9N80A+VMr6RxLMbA==",
"content-type": "text/javascript; charset=utf-8",
"cross-origin-resource-policy": "cross-origin",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"etag": "0x8DC2C32C583D636",
"last-modified": "Tue, 13 Feb 2024 01:26:15 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"timing-allow-origin": "*",
"x-azure-ref-originshield": "Ref A: 133D62E36B9D4915838424C69D9C2AB2 Ref B: SG2EDGE2416 Ref C: 2024-07-09T04:59:00Z",
"x-cache": "TCP_HIT",
"x-ms-blob-type": "BlockBlob",
"x-ms-lease-status": "unlocked",
"x-ms-request-id": "6358dfe6-801e-0067-48d8-d0277d000000",
"x-ms-version": "2009-09-19",
"x-msedge-ref": "Ref A: 37C50906DA0E489996D2A9D6CAD5EF94 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z"
},
"resourceIPAddressSpace": "Public",
"statusCode": 200,
"cookiePartitionKey": "https://bing.com",
"cookiePartitionKeyOpaque": false,
"exemptedCookies": []
}
},
{
"method": "Network.responseReceivedExtraInfo",
"params": {
"requestId": "98243.36",
"blockedCookies": [],
"headers": {
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"access-control-allow-origin": "*",
"cache-control": "public, max-age=432000",
"content-encoding": "br",
"content-length": "151",
"content-md5": "JiWcdaDQ1Cccduc8L4eReg==",
"content-type": "application/x-javascript; charset=utf-8",
"cross-origin-resource-policy": "cross-origin",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"etag": "0x8D817F9BC6D3769",
"last-modified": "Wed, 24 Jun 2020 04:47:44 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"timing-allow-origin": "*",
"x-azure-ref-originshield": "Ref A: E16541E8B904415BBC2B9C4273A5655D Ref B: SG2EDGE2608 Ref C: 2024-07-10T21:44:18Z",
"x-cache": "TCP_HIT",
"x-ms-blob-type": "BlockBlob",
"x-ms-lease-status": "unlocked",
"x-ms-request-id": "a0d5ff48-301e-0000-1fd0-d23781000000",
"x-ms-version": "2009-09-19",
"x-msedge-ref": "Ref A: F4B18FA4DCFF4F97BA1C718481B34FD5 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z"
},
"resourceIPAddressSpace": "Public",
"statusCode": 200,
"cookiePartitionKey": "https://bing.com",
"cookiePartitionKeyOpaque": false,
"exemptedCookies": []
}
},
{
"method": "Network.responseReceivedExtraInfo",
"params": {
"requestId": "98243.27",
"blockedCookies": [],
"headers": {
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"access-control-allow-origin": "*",
"cache-control": "public, max-age=432000, no-transform, immutable",
"content-encoding": "br",
"content-length": "64993",
"content-md5": "cQ12N8x+IbYv0+/mq6H9Jw==",
"content-type": "text/javascript; charset=utf-8",
"cross-origin-resource-policy": "cross-origin",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"etag": "0x8DABC599C3829B1",
"last-modified": "Tue, 01 Nov 2022 22:37:08 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"timing-allow-origin": "*",
"x-azure-ref-originshield": "Ref A: 768D5D5C0F0541B593F22735D9B5E609 Ref B: SG2EDGE2513 Ref C: 2024-07-10T12:56:23Z",
"x-cache": "TCP_HIT",
"x-ms-blob-type": "BlockBlob",
"x-ms-lease-status": "unlocked",
"x-ms-request-id": "eb48c5de-e01e-0095-677a-d0df34000000",
"x-ms-version": "2009-09-19",
"x-msedge-ref": "Ref A: 1AF70A3626794D8FB4E8A76CBC39AE36 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z"
},
"resourceIPAddressSpace": "Public",
"statusCode": 200,
"cookiePartitionKey": "https://bing.com",
"cookiePartitionKeyOpaque": false,
"exemptedCookies": []
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.26",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.621154,
"type": "XHR",
"response": {
"url": "https://cn.bing.com/rp/jA1xMqBzlpnpE2ru1-s0ybbi8MM.br.js",
"status": 200,
"statusText": "",
"headers": {
"x-ms-blob-type": "BlockBlob",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"content-encoding": "br",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"x-azure-ref-originshield": "Ref A: 637C988B573D42F1B87A8616C7A052D8 Ref B: SG2EDGE2622 Ref C: 2024-07-10T12:55:35Z",
"content-md5": "OuXcJlOLJ5YKncHzThxbVw==",
"x-cache": "TCP_HIT",
"cross-origin-resource-policy": "cross-origin",
"content-length": "12109",
"x-ms-lease-status": "unlocked",
"last-modified": "Tue, 07 May 2024 17:04:45 GMT",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: BF14A4A4CA3B41AD9CFECB24EBA0DBFE Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z",
"etag": "0x8DC6EB7CBC7582B",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"content-type": "text/javascript; charset=utf-8",
"access-control-allow-origin": "*",
"x-ms-request-id": "ad234fcb-e01e-002c-141a-d0db2e000000",
"cache-control": "public, max-age=432000, no-transform, immutable",
"x-ms-version": "2009-09-19",
"timing-allow-origin": "*"
},
"mimeType": "text/javascript",
"charset": "utf-8",
"connectionReused": true,
"connectionId": 18,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 309,
"timing": {
"requestTime": 1890151.540935,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 0.523,
"sendEnd": 2.882,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 79.638,
"receiveHeadersEnd": 79.791
},
"responseTime": 1720670453039.763,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": true,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.26",
"timestamp": 1890151.621211,
"dataLength": 37756,
"encodedDataLength": 0
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.57",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/jA1xMqBzlpnpE2ru1-s0ybbi8MM.br.js",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "Low",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.622137,
"wallTime": 1720670453.0415,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "st",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 10818
},
{
"functionName": "fi",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 9301
},
{
"functionName": "et",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 9479
},
{
"functionName": "ui",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 9267
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8445
},
{
"functionName": "window.ActiveXObject.ti.test.r.onreadystatechange",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 8982
}
]
}
},
"redirectHasExtraInfo": false,
"type": "Script",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.26",
"timestamp": 1890151.622484,
"dataLength": 0,
"encodedDataLength": 12127
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.26",
"timestamp": 1890151.6211,
"encodedDataLength": 12436
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.30",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.622759,
"type": "XHR",
"response": {
"url": "https://cn.bing.com/rp/ZDuP1RxmIvW4zmuvz53att_oXdo.br.js",
"status": 200,
"statusText": "",
"headers": {
"x-ms-blob-type": "BlockBlob",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"content-encoding": "br",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"x-azure-ref-originshield": "Ref A: 512D8A299F4C474D838924AA52AC2E46 Ref B: SG2EDGE2406 Ref C: 2024-07-09T01:56:48Z",
"content-md5": "E/pkYW4bCY7jX+uKzdO4Xg==",
"x-cache": "TCP_HIT",
"cross-origin-resource-policy": "cross-origin",
"content-length": "252",
"x-ms-lease-status": "unlocked",
"last-modified": "Thu, 13 Apr 2023 19:56:09 GMT",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: 92DB9A3D879247B0908C6E2E76A5CF82 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z",
"etag": "0x8DB3C59208D2588",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"content-type": "text/javascript; charset=utf-8",
"access-control-allow-origin": "*",
"x-ms-request-id": "88c926b1-701e-00b8-2e30-d06c47000000",
"cache-control": "public, max-age=432000, no-transform, immutable",
"x-ms-version": "2009-09-19",
"timing-allow-origin": "*"
},
"mimeType": "text/javascript",
"charset": "utf-8",
"connectionReused": true,
"connectionId": 18,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 725,
"timing": {
"requestTime": 1890151.541538,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 1.141,
"sendEnd": 3.946,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 79.701,
"receiveHeadersEnd": 79.807
},
"responseTime": 1720670453040.431,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": true,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.30",
"timestamp": 1890151.622791,
"dataLength": 561,
"encodedDataLength": 0
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.30",
"timestamp": 1890151.622899,
"dataLength": 0,
"encodedDataLength": 270
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.30",
"timestamp": 1890151.621515,
"encodedDataLength": 995
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.34",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.62306,
"type": "XHR",
"response": {
"url": "https://cn.bing.com/rp/8xkvUeJjS0zgx9UJLaoz8Ih_Yy4.br.js",
"status": 200,
"statusText": "",
"headers": {
"x-ms-blob-type": "BlockBlob",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"content-encoding": "br",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"x-azure-ref-originshield": "Ref A: B1AFF2748A474F7D919ECF5C9B8C0229 Ref B: SG2EDGE2515 Ref C: 2024-07-07T02:30:35Z",
"content-md5": "1nLWdicDwxe3KsJ1SxmxmQ==",
"x-cache": "TCP_HIT",
"cross-origin-resource-policy": "cross-origin",
"content-length": "598",
"x-ms-lease-status": "unlocked",
"last-modified": "Wed, 29 Nov 2023 10:05:49 GMT",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: BFC943AB4F144B498EA93E9DD3906C67 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z",
"etag": "0x8DBF0C2C35B6A7B",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"content-type": "text/javascript; charset=utf-8",
"access-control-allow-origin": "*",
"x-ms-request-id": "887ea638-501e-005b-69f9-cd0eba000000",
"cache-control": "public, max-age=432000, no-transform, immutable",
"x-ms-version": "2009-09-19",
"timing-allow-origin": "*"
},
"mimeType": "text/javascript",
"charset": "utf-8",
"connectionReused": true,
"connectionId": 18,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 318,
"timing": {
"requestTime": 1890151.54227,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 1.946,
"sendEnd": 3.216,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 79.295,
"receiveHeadersEnd": 79.351
},
"responseTime": 1720670453040.746,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": true,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.34",
"timestamp": 1890151.623086,
"dataLength": 1238,
"encodedDataLength": 0
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.34",
"timestamp": 1890151.623176,
"dataLength": 0,
"encodedDataLength": 616
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.34",
"timestamp": 1890151.621727,
"encodedDataLength": 934
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.32",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.623329,
"type": "XHR",
"response": {
"url": "https://cn.bing.com/rp/2DyrZWV35Nk6it3meHG_C7ZjJ8M.br.js",
"status": 200,
"statusText": "",
"headers": {
"x-ms-blob-type": "BlockBlob",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"content-encoding": "br",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"x-azure-ref-originshield": "Ref A: 133D62E36B9D4915838424C69D9C2AB2 Ref B: SG2EDGE2416 Ref C: 2024-07-09T04:59:00Z",
"content-md5": "Kgkc7+9N80A+VMr6RxLMbA==",
"x-cache": "TCP_HIT",
"cross-origin-resource-policy": "cross-origin",
"content-length": "1519",
"x-ms-lease-status": "unlocked",
"last-modified": "Tue, 13 Feb 2024 01:26:15 GMT",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: 37C50906DA0E489996D2A9D6CAD5EF94 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z",
"etag": "0x8DC2C32C583D636",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"content-type": "text/javascript; charset=utf-8",
"access-control-allow-origin": "*",
"x-ms-request-id": "6358dfe6-801e-0067-48d8-d0277d000000",
"cache-control": "public, max-age=432000, no-transform, immutable",
"x-ms-version": "2009-09-19",
"timing-allow-origin": "*"
},
"mimeType": "text/javascript",
"charset": "utf-8",
"connectionReused": true,
"connectionId": 18,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 286,
"timing": {
"requestTime": 1890151.54172,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 1.749,
"sendEnd": 3.765,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 80.056,
"receiveHeadersEnd": 80.103
},
"responseTime": 1720670453040.955,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": true,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.32",
"timestamp": 1890151.623354,
"dataLength": 3224,
"encodedDataLength": 0
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.32",
"timestamp": 1890151.623432,
"dataLength": 0,
"encodedDataLength": 1537
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.32",
"timestamp": 1890151.622064,
"encodedDataLength": 1823
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.36",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.62358,
"type": "XHR",
"response": {
"url": "https://cn.bing.com/rp/xrUJJ8sN8ucbiFbMJle3n0IfRwU.br.js",
"status": 200,
"statusText": "",
"headers": {
"x-ms-blob-type": "BlockBlob",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"content-encoding": "br",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"x-azure-ref-originshield": "Ref A: E16541E8B904415BBC2B9C4273A5655D Ref B: SG2EDGE2608 Ref C: 2024-07-10T21:44:18Z",
"content-md5": "JiWcdaDQ1Cccduc8L4eReg==",
"x-cache": "TCP_HIT",
"cross-origin-resource-policy": "cross-origin",
"content-length": "151",
"x-ms-lease-status": "unlocked",
"last-modified": "Wed, 24 Jun 2020 04:47:44 GMT",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: F4B18FA4DCFF4F97BA1C718481B34FD5 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z",
"etag": "0x8D817F9BC6D3769",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"content-type": "application/x-javascript; charset=utf-8",
"access-control-allow-origin": "*",
"x-ms-request-id": "a0d5ff48-301e-0000-1fd0-d23781000000",
"cache-control": "public, max-age=432000",
"x-ms-version": "2009-09-19",
"timing-allow-origin": "*"
},
"mimeType": "application/x-javascript",
"charset": "utf-8",
"connectionReused": true,
"connectionId": 18,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 327,
"timing": {
"requestTime": 1890151.542515,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 1.972,
"sendEnd": 2.973,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 79.377,
"receiveHeadersEnd": 79.442
},
"responseTime": 1720670453041.089,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": true,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.36",
"timestamp": 1890151.623601,
"dataLength": 257,
"encodedDataLength": 0
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.36",
"timestamp": 1890151.623666,
"dataLength": 0,
"encodedDataLength": 169
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.36",
"timestamp": 1890151.622157,
"encodedDataLength": 496
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.27",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.624017,
"type": "XHR",
"response": {
"url": "https://cn.bing.com/rp/hkXWsTcGTHs44QxzZyThd4fbbPM.br.js",
"status": 200,
"statusText": "",
"headers": {
"x-ms-blob-type": "BlockBlob",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"content-encoding": "br",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"x-azure-ref-originshield": "Ref A: 768D5D5C0F0541B593F22735D9B5E609 Ref B: SG2EDGE2513 Ref C: 2024-07-10T12:56:23Z",
"content-md5": "cQ12N8x+IbYv0+/mq6H9Jw==",
"x-cache": "TCP_HIT",
"cross-origin-resource-policy": "cross-origin",
"content-length": "64993",
"x-ms-lease-status": "unlocked",
"last-modified": "Tue, 01 Nov 2022 22:37:08 GMT",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: 1AF70A3626794D8FB4E8A76CBC39AE36 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z",
"etag": "0x8DABC599C3829B1",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"content-type": "text/javascript; charset=utf-8",
"access-control-allow-origin": "*",
"x-ms-request-id": "eb48c5de-e01e-0095-677a-d0df34000000",
"cache-control": "public, max-age=432000, no-transform, immutable",
"x-ms-version": "2009-09-19",
"timing-allow-origin": "*"
},
"mimeType": "text/javascript",
"charset": "utf-8",
"connectionReused": true,
"connectionId": 18,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 308,
"timing": {
"requestTime": 1890151.541162,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 0.613,
"sendEnd": 2.787,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 81.05,
"receiveHeadersEnd": 81.097
},
"responseTime": 1720670453041.391,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": true,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.responseReceivedExtraInfo",
"params": {
"requestId": "98243.35",
"blockedCookies": [],
"headers": {
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"access-control-allow-origin": "*",
"cache-control": "public, max-age=432000, no-transform, immutable",
"content-encoding": "br",
"content-length": "2566",
"content-md5": "CRGN19HAAKRCBBucbxm6QA==",
"content-type": "text/javascript; charset=utf-8",
"cross-origin-resource-policy": "cross-origin",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"etag": "0x8DC37AC0BCCB7C2",
"last-modified": "Tue, 27 Feb 2024 15:52:05 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"timing-allow-origin": "*",
"x-azure-ref-originshield": "Ref A: CBA10E02AFFD48879E79F7DECB514703 Ref B: SG2EDGE2616 Ref C: 2024-07-09T04:58:02Z",
"x-cache": "TCP_HIT",
"x-ms-blob-type": "BlockBlob",
"x-ms-lease-status": "unlocked",
"x-ms-request-id": "5b5be12f-501e-0039-07bc-d1cc9d000000",
"x-ms-version": "2009-09-19",
"x-msedge-ref": "Ref A: 6ED7B50A22C940F3B878BFCF52C96446 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z"
},
"resourceIPAddressSpace": "Public",
"statusCode": 200,
"cookiePartitionKey": "https://bing.com",
"cookiePartitionKeyOpaque": false,
"exemptedCookies": []
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.27",
"timestamp": 1890151.625099,
"dataLength": 131072,
"encodedDataLength": 32460
}
},
{
"method": "Network.responseReceivedExtraInfo",
"params": {
"requestId": "98243.37",
"blockedCookies": [],
"headers": {
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"access-control-allow-origin": "*",
"cache-control": "public, max-age=432000",
"content-encoding": "br",
"content-length": "238",
"content-md5": "QTej8D3Nf9S3dS9wyAdElQ==",
"content-type": "application/x-javascript; charset=utf-8",
"cross-origin-resource-policy": "cross-origin",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"etag": "0x8D817F86B3A0467",
"last-modified": "Wed, 24 Jun 2020 04:38:19 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"timing-allow-origin": "*",
"x-azure-ref-originshield": "Ref A: 59D47129C6184682B5E1EC797CC8DF79 Ref B: SG2EDGE2419 Ref C: 2024-07-10T12:55:33Z",
"x-cache": "TCP_HIT",
"x-ms-blob-type": "BlockBlob",
"x-ms-lease-status": "unlocked",
"x-ms-request-id": "02184855-201e-0041-5ad1-d16f65000000",
"x-ms-version": "2009-09-19",
"x-msedge-ref": "Ref A: 3DE964129C854CDF8BCB336EE296DB4C Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z"
},
"resourceIPAddressSpace": "Public",
"statusCode": 200,
"cookiePartitionKey": "https://bing.com",
"cookiePartitionKeyOpaque": false,
"exemptedCookies": []
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.35",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.625419,
"type": "XHR",
"response": {
"url": "https://cn.bing.com/rp/otZBqrSRcTVYQwfOk5Yt1Buvss4.br.js",
"status": 200,
"statusText": "",
"headers": {
"x-ms-blob-type": "BlockBlob",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"content-encoding": "br",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"x-azure-ref-originshield": "Ref A: CBA10E02AFFD48879E79F7DECB514703 Ref B: SG2EDGE2616 Ref C: 2024-07-09T04:58:02Z",
"content-md5": "CRGN19HAAKRCBBucbxm6QA==",
"x-cache": "TCP_HIT",
"cross-origin-resource-policy": "cross-origin",
"content-length": "2566",
"x-ms-lease-status": "unlocked",
"last-modified": "Tue, 27 Feb 2024 15:52:05 GMT",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: 6ED7B50A22C940F3B878BFCF52C96446 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z",
"etag": "0x8DC37AC0BCCB7C2",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"content-type": "text/javascript; charset=utf-8",
"access-control-allow-origin": "*",
"x-ms-request-id": "5b5be12f-501e-0039-07bc-d1cc9d000000",
"cache-control": "public, max-age=432000, no-transform, immutable",
"x-ms-version": "2009-09-19",
"timing-allow-origin": "*"
},
"mimeType": "text/javascript",
"charset": "utf-8",
"connectionReused": true,
"connectionId": 18,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 732,
"timing": {
"requestTime": 1890151.542412,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 1.945,
"sendEnd": 3.075,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 82.644,
"receiveHeadersEnd": 82.743
},
"responseTime": 1720670453044.253,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": true,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.35",
"timestamp": 1890151.625452,
"dataLength": 5949,
"encodedDataLength": 0
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.35",
"timestamp": 1890151.625553,
"dataLength": 0,
"encodedDataLength": 2584
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.35",
"timestamp": 1890151.625347,
"encodedDataLength": 3316
}
},
{
"method": "Network.responseReceivedExtraInfo",
"params": {
"requestId": "98243.31",
"blockedCookies": [],
"headers": {
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"access-control-allow-origin": "*",
"cache-control": "public, max-age=432000, no-transform, immutable",
"content-encoding": "br",
"content-length": "86451",
"content-md5": "dOM7S1T00fPaBqtHxZNqEw==",
"content-type": "text/javascript; charset=utf-8",
"cross-origin-resource-policy": "cross-origin",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"etag": "0x8DAE2D77E13F7A2",
"last-modified": "Tue, 20 Dec 2022 22:13:58 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"timing-allow-origin": "*",
"x-azure-ref-originshield": "Ref A: 99DAB6EF396E4909966569587A20F7C0 Ref B: SG2EDGE2607 Ref C: 2024-07-10T12:57:03Z",
"x-cache": "TCP_HIT",
"x-ms-blob-type": "BlockBlob",
"x-ms-lease-status": "unlocked",
"x-ms-request-id": "e62047d7-e01e-00d8-17a3-d210d8000000",
"x-ms-version": "2009-09-19",
"x-msedge-ref": "Ref A: 1CD66D54FCDA40F1AD486BE5FC146B6D Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z"
},
"resourceIPAddressSpace": "Public",
"statusCode": 200,
"cookiePartitionKey": "https://bing.com",
"cookiePartitionKeyOpaque": false,
"exemptedCookies": []
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.37",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.625716,
"type": "XHR",
"response": {
"url": "https://cn.bing.com/rp/LXu4eYVt3NhFk3Ud9ZbhZ_PYFaA.br.js",
"status": 200,
"statusText": "",
"headers": {
"x-ms-blob-type": "BlockBlob",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"content-encoding": "br",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"x-azure-ref-originshield": "Ref A: 59D47129C6184682B5E1EC797CC8DF79 Ref B: SG2EDGE2419 Ref C: 2024-07-10T12:55:33Z",
"content-md5": "QTej8D3Nf9S3dS9wyAdElQ==",
"x-cache": "TCP_HIT",
"cross-origin-resource-policy": "cross-origin",
"content-length": "238",
"x-ms-lease-status": "unlocked",
"last-modified": "Wed, 24 Jun 2020 04:38:19 GMT",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: 3DE964129C854CDF8BCB336EE296DB4C Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z",
"etag": "0x8D817F86B3A0467",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"content-type": "application/x-javascript; charset=utf-8",
"access-control-allow-origin": "*",
"x-ms-request-id": "02184855-201e-0041-5ad1-d16f65000000",
"cache-control": "public, max-age=432000",
"x-ms-version": "2009-09-19",
"timing-allow-origin": "*"
},
"mimeType": "application/x-javascript",
"charset": "utf-8",
"connectionReused": true,
"connectionId": 18,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 283,
"timing": {
"requestTime": 1890151.542603,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 1.999,
"sendEnd": 2.887,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 82.815,
"receiveHeadersEnd": 82.89
},
"responseTime": 1720670453044.6,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": true,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.37",
"timestamp": 1890151.625739,
"dataLength": 426,
"encodedDataLength": 0
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.37",
"timestamp": 1890151.62581,
"dataLength": 0,
"encodedDataLength": 256
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.37",
"timestamp": 1890151.625619,
"encodedDataLength": 539
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.31",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.625954,
"type": "XHR",
"response": {
"url": "https://cn.bing.com/rp/bll21ZO27j3KPE27uQBxt24c2Fw.br.js",
"status": 200,
"statusText": "",
"headers": {
"x-ms-blob-type": "BlockBlob",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"content-encoding": "br",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"x-azure-ref-originshield": "Ref A: 99DAB6EF396E4909966569587A20F7C0 Ref B: SG2EDGE2607 Ref C: 2024-07-10T12:57:03Z",
"content-md5": "dOM7S1T00fPaBqtHxZNqEw==",
"x-cache": "TCP_HIT",
"cross-origin-resource-policy": "cross-origin",
"content-length": "86451",
"x-ms-lease-status": "unlocked",
"last-modified": "Tue, 20 Dec 2022 22:13:58 GMT",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: 1CD66D54FCDA40F1AD486BE5FC146B6D Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z",
"etag": "0x8DAE2D77E13F7A2",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"content-type": "text/javascript; charset=utf-8",
"access-control-allow-origin": "*",
"x-ms-request-id": "e62047d7-e01e-00d8-17a3-d210d8000000",
"cache-control": "public, max-age=432000, no-transform, immutable",
"x-ms-version": "2009-09-19",
"timing-allow-origin": "*"
},
"mimeType": "text/javascript",
"charset": "utf-8",
"connectionReused": true,
"connectionId": 18,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 319,
"timing": {
"requestTime": 1890151.54163,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 1.48,
"sendEnd": 3.855,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 84.04,
"receiveHeadersEnd": 84.094
},
"responseTime": 1720670453044.849,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": true,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.27",
"timestamp": 1890151.626039,
"dataLength": 23759,
"encodedDataLength": 32587
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.27",
"timestamp": 1890151.626225,
"dataLength": 65536,
"encodedDataLength": 0
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.31",
"timestamp": 1890151.626627,
"dataLength": 131072,
"encodedDataLength": 45159
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.31",
"timestamp": 1890151.626697,
"dataLength": 72364,
"encodedDataLength": 0
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.27",
"timestamp": 1890151.626867,
"dataLength": 96621,
"encodedDataLength": 0
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.27",
"timestamp": 1890151.626665,
"encodedDataLength": 65355
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.31",
"timestamp": 1890151.627268,
"dataLength": 116257,
"encodedDataLength": 3674
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.52",
"associatedCookies": [],
"headers": {
":authority": "r.bing.com",
":method": "GET",
":path": "/rs/6s/xi/nj/nt6a1ZR520utsLoZmSYgwxdOPgI.js?or=n",
":scheme": "https",
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"origin": "https://cn.bing.com",
"priority": "u=1, i",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-platform": "\"macOS\"",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-site",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890151.544143
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.responseReceivedExtraInfo",
"params": {
"requestId": "98243.52",
"blockedCookies": [],
"headers": {
"accept-ch": "Sec-CH-UA-Bitness, Sec-CH-UA-Arch, Sec-CH-UA-Full-Version, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Platform, Sec-CH-UA, UA-Bitness, UA-Arch, UA-Full-Version, UA-Mobile, UA-Model, UA-Platform-Version, UA-Platform, UA",
"access-control-allow-headers": "*",
"access-control-allow-origin": "*",
"cache-control": "public, max-age=432000",
"content-encoding": "br",
"content-length": "399",
"content-security-policy-report-only": "script-src https: 'strict-dynamic' 'report-sample' 'nonce-JMeDRsyNyjMb8/R1yTyRHw6JkswOc856m9q7G7467Qw='; base-uri 'self';report-to csp-endpoint",
"content-type": "application/x-javascript; charset=utf-8",
"cross-origin-resource-policy": "cross-origin",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"last-modified": "Tue, 09 Jul 2024 19:45:11 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":0.75}",
"report-to": "{\"group\":\"csp-endpoint\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingcsp\"}]}\n{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingrms\"}]}",
"timing-allow-origin": "*",
"useragentreductionoptout": "A7kgTC5xdZ2WIVGZEfb1hUoNuvjzOZX3VIV/BA6C18kQOOF50Q0D3oWoAm49k3BQImkujKILc7JmPysWk3CSjwUAAACMeyJvcmlnaW4iOiJodHRwczovL3d3dy5iaW5nLmNvbTo0NDMiLCJmZWF0dXJlIjoiU2VuZEZ1bGxVc2VyQWdlbnRBZnRlclJlZHVjdGlvbiIsImV4cGlyeSI6MTY4NDg4NjM5OSwiaXNTdWJkb21haW4iOnRydWUsImlzVGhpcmRQYXJ0eSI6dHJ1ZX0=",
"vary": "Accept-Encoding",
"x-cache": "TCP_HIT",
"x-eventid": "668e02bd21c248df93b74822fab54b62",
"x-msedge-ref": "Ref A: 3262D5BA37BB4F53896345133CEDCEF2 Ref B: BJ1EDGE0512 Ref C: 2024-07-11T04:00:53Z"
},
"resourceIPAddressSpace": "Public",
"statusCode": 200,
"cookiePartitionKey": "https://bing.com",
"cookiePartitionKeyOpaque": false,
"exemptedCookies": []
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.52",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.670841,
"type": "XHR",
"response": {
"url": "https://r.bing.com/rs/6s/xi/nj/nt6a1ZR520utsLoZmSYgwxdOPgI.js?or=n",
"status": 200,
"statusText": "",
"headers": {
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"content-encoding": "br",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":0.75}",
"content-security-policy-report-only": "script-src https: 'strict-dynamic' 'report-sample' 'nonce-JMeDRsyNyjMb8/R1yTyRHw6JkswOc856m9q7G7467Qw='; base-uri 'self';report-to csp-endpoint",
"x-cache": "TCP_HIT",
"cross-origin-resource-policy": "cross-origin",
"content-length": "399",
"last-modified": "Tue, 09 Jul 2024 19:45:11 GMT",
"accept-ch": "Sec-CH-UA-Bitness, Sec-CH-UA-Arch, Sec-CH-UA-Full-Version, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Platform, Sec-CH-UA, UA-Bitness, UA-Arch, UA-Full-Version, UA-Mobile, UA-Model, UA-Platform-Version, UA-Platform, UA",
"x-msedge-ref": "Ref A: 3262D5BA37BB4F53896345133CEDCEF2 Ref B: BJ1EDGE0512 Ref C: 2024-07-11T04:00:53Z",
"vary": "Accept-Encoding",
"report-to": "{\"group\":\"csp-endpoint\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingcsp\"}]}, {\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingrms\"}]}",
"content-type": "application/x-javascript; charset=utf-8",
"access-control-allow-origin": "*",
"x-eventid": "668e02bd21c248df93b74822fab54b62",
"cache-control": "public, max-age=432000",
"useragentreductionoptout": "A7kgTC5xdZ2WIVGZEfb1hUoNuvjzOZX3VIV/BA6C18kQOOF50Q0D3oWoAm49k3BQImkujKILc7JmPysWk3CSjwUAAACMeyJvcmlnaW4iOiJodHRwczovL3d3dy5iaW5nLmNvbTo0NDMiLCJmZWF0dXJlIjoiU2VuZEZ1bGxVc2VyQWdlbnRBZnRlclJlZHVjdGlvbiIsImV4cGlyeSI6MTY4NDg4NjM5OSwiaXNTdWJkb21haW4iOnRydWUsImlzVGhpcmRQYXJ0eSI6dHJ1ZX0=",
"timing-allow-origin": "*",
"access-control-allow-headers": "*"
},
"mimeType": "application/x-javascript",
"charset": "utf-8",
"connectionReused": false,
"connectionId": 292,
"remoteIPAddress": "202.89.233.101",
"remotePort": 443,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 1226,
"timing": {
"requestTime": 1890151.544143,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": 78.997,
"dnsEnd": 79.002,
"connectStart": 79.002,
"connectEnd": 115.472,
"sslStart": 89.637,
"sslEnd": 115.469,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 115.551,
"sendEnd": 115.61,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 126.142,
"receiveHeadersEnd": 126.279
},
"responseTime": 1720670453089.488,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": true,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.52",
"timestamp": 1890151.670881,
"dataLength": 606,
"encodedDataLength": 0
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.52",
"timestamp": 1890151.671029,
"dataLength": 0,
"encodedDataLength": 417
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.52",
"timestamp": 1890151.670637,
"encodedDataLength": 1643
}
},
{
"method": "Network.responseReceivedExtraInfo",
"params": {
"requestId": "98243.29",
"blockedCookies": [],
"headers": {
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"access-control-allow-origin": "*",
"cache-control": "public, max-age=432000, no-transform, immutable",
"content-encoding": "br",
"content-length": "133505",
"content-md5": "wHfWkQ0meJXFU+hLDSBhyQ==",
"content-type": "text/javascript; charset=utf-8",
"cross-origin-resource-policy": "cross-origin",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"etag": "0x8DCA09BDCFEBF34",
"last-modified": "Wed, 10 Jul 2024 04:50:46 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"timing-allow-origin": "*",
"x-azure-ref-originshield": "Ref A: 7C98A01259414D718B17F66F143C2F5B Ref B: SG2EDGE2510 Ref C: 2024-07-10T12:28:59Z",
"x-cache": "TCP_HIT",
"x-ms-blob-type": "BlockBlob",
"x-ms-lease-status": "unlocked",
"x-ms-request-id": "c6d5d27f-001e-009d-18c3-d2c53b000000",
"x-ms-version": "2009-09-19",
"x-msedge-ref": "Ref A: 3D31A1C6A7E142588EAD0D373FC05627 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z"
},
"resourceIPAddressSpace": "Public",
"statusCode": 200,
"cookiePartitionKey": "https://bing.com",
"cookiePartitionKeyOpaque": false,
"exemptedCookies": []
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.31",
"timestamp": 1890151.696231,
"dataLength": 131072,
"encodedDataLength": 37690
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.29",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.696571,
"type": "XHR",
"response": {
"url": "https://cn.bing.com/rp/FaGqElP5DzCwweYv9HVv3an5_I8.br.js",
"status": 200,
"statusText": "",
"headers": {
"x-ms-blob-type": "BlockBlob",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"content-encoding": "br",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"x-azure-ref-originshield": "Ref A: 7C98A01259414D718B17F66F143C2F5B Ref B: SG2EDGE2510 Ref C: 2024-07-10T12:28:59Z",
"content-md5": "wHfWkQ0meJXFU+hLDSBhyQ==",
"x-cache": "TCP_HIT",
"cross-origin-resource-policy": "cross-origin",
"content-length": "133505",
"x-ms-lease-status": "unlocked",
"last-modified": "Wed, 10 Jul 2024 04:50:46 GMT",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: 3D31A1C6A7E142588EAD0D373FC05627 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z",
"etag": "0x8DCA09BDCFEBF34",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"content-type": "text/javascript; charset=utf-8",
"access-control-allow-origin": "*",
"x-ms-request-id": "c6d5d27f-001e-009d-18c3-d2c53b000000",
"cache-control": "public, max-age=432000, no-transform, immutable",
"x-ms-version": "2009-09-19",
"timing-allow-origin": "*"
},
"mimeType": "text/javascript",
"charset": "utf-8",
"connectionReused": true,
"connectionId": 18,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 285,
"timing": {
"requestTime": 1890151.541384,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 0.552,
"sendEnd": 2.817,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 154.704,
"receiveHeadersEnd": 154.827
},
"responseTime": 1720670453115.274,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": true,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.31",
"timestamp": 1890151.696724,
"dataLength": 114119,
"encodedDataLength": 0
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.31",
"timestamp": 1890151.696503,
"encodedDataLength": 86842
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.29",
"timestamp": 1890151.697522,
"dataLength": 149962,
"encodedDataLength": 48867
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.29",
"timestamp": 1890151.698739,
"dataLength": 43689,
"encodedDataLength": 40960
}
},
{
"method": "Network.responseReceivedExtraInfo",
"params": {
"requestId": "98243.28",
"blockedCookies": [],
"headers": {
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"access-control-allow-origin": "*",
"cache-control": "public, max-age=432000, no-transform, immutable",
"content-encoding": "br",
"content-length": "5070",
"content-md5": "dbzAhNDtA54biTyiiODCKw==",
"content-type": "text/javascript; charset=utf-8",
"cross-origin-resource-policy": "cross-origin",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"etag": "0x8DC979F41AABE56",
"last-modified": "Fri, 28 Jun 2024 18:22:23 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"timing-allow-origin": "*",
"x-azure-ref-originshield": "Ref A: 1F7975BF9FF44AF09092DCF38331312B Ref B: SG2EDGE2422 Ref C: 2024-07-09T00:01:46Z",
"x-cache": "TCP_HIT",
"x-ms-blob-type": "BlockBlob",
"x-ms-lease-status": "unlocked",
"x-ms-request-id": "0388b22b-401e-00ee-3f93-d19da8000000",
"x-ms-version": "2009-09-19",
"x-msedge-ref": "Ref A: 91216601684C4500BDDA0CA1D50874B7 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z"
},
"resourceIPAddressSpace": "Public",
"statusCode": 200,
"cookiePartitionKey": "https://bing.com",
"cookiePartitionKeyOpaque": false,
"exemptedCookies": []
}
},
{
"method": "Network.responseReceivedExtraInfo",
"params": {
"requestId": "98243.38",
"blockedCookies": [],
"headers": {
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"access-control-allow-origin": "*",
"cache-control": "public, max-age=432000",
"content-encoding": "br",
"content-length": "278",
"content-md5": "Dsb9bELHm1DHL/PEEhsR3g==",
"content-type": "application/x-javascript; charset=utf-8",
"cross-origin-resource-policy": "cross-origin",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"etag": "0x8D817F863CB5C41",
"last-modified": "Wed, 24 Jun 2020 04:38:06 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"timing-allow-origin": "*",
"x-azure-ref-originshield": "Ref A: 56E8C694D2A4462E96C14322E28B230B Ref B: SG2EDGE2611 Ref C: 2024-07-10T12:57:07Z",
"x-cache": "TCP_HIT",
"x-ms-blob-type": "BlockBlob",
"x-ms-lease-status": "unlocked",
"x-ms-request-id": "6aeeb8d9-601e-001d-3ba3-d23a3d000000",
"x-ms-version": "2009-09-19",
"x-msedge-ref": "Ref A: AC75164642274CCA9D4D6FAB5F1A81D4 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z"
},
"resourceIPAddressSpace": "Public",
"statusCode": 200,
"cookiePartitionKey": "https://bing.com",
"cookiePartitionKeyOpaque": false,
"exemptedCookies": []
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.28",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.69913,
"type": "XHR",
"response": {
"url": "https://cn.bing.com/rp/V793ayrBYjBUm-0gdrJPAEYeUiw.br.js",
"status": 200,
"statusText": "",
"headers": {
"x-ms-blob-type": "BlockBlob",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"content-encoding": "br",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"x-azure-ref-originshield": "Ref A: 1F7975BF9FF44AF09092DCF38331312B Ref B: SG2EDGE2422 Ref C: 2024-07-09T00:01:46Z",
"content-md5": "dbzAhNDtA54biTyiiODCKw==",
"x-cache": "TCP_HIT",
"cross-origin-resource-policy": "cross-origin",
"content-length": "5070",
"x-ms-lease-status": "unlocked",
"last-modified": "Fri, 28 Jun 2024 18:22:23 GMT",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: 91216601684C4500BDDA0CA1D50874B7 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z",
"etag": "0x8DC979F41AABE56",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"content-type": "text/javascript; charset=utf-8",
"access-control-allow-origin": "*",
"x-ms-request-id": "0388b22b-401e-00ee-3f93-d19da8000000",
"cache-control": "public, max-age=432000, no-transform, immutable",
"x-ms-version": "2009-09-19",
"timing-allow-origin": "*"
},
"mimeType": "text/javascript",
"charset": "utf-8",
"connectionReused": true,
"connectionId": 18,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 305,
"timing": {
"requestTime": 1890151.541287,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 0.605,
"sendEnd": 2.75,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 157.445,
"receiveHeadersEnd": 157.554
},
"responseTime": 1720670453117.918,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": true,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.28",
"timestamp": 1890151.69917,
"dataLength": 12895,
"encodedDataLength": 0
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.28",
"timestamp": 1890151.699302,
"dataLength": 0,
"encodedDataLength": 5088
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.28",
"timestamp": 1890151.699096,
"encodedDataLength": 5393
}
},
{
"method": "Network.responseReceivedExtraInfo",
"params": {
"requestId": "98243.41",
"blockedCookies": [],
"headers": {
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"access-control-allow-origin": "*",
"cache-control": "public, max-age=432000",
"content-encoding": "br",
"content-length": "504",
"content-md5": "YFrAklqNwGuL+H5Q5yxZnw==",
"content-type": "text/javascript; charset=utf-8",
"cross-origin-resource-policy": "cross-origin",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"etag": "0x8DA4E28D9D7FE33",
"last-modified": "Tue, 14 Jun 2022 17:10:58 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"timing-allow-origin": "*",
"x-azure-ref-originshield": "Ref A: B8EEA923C1E142F4AD117996A20A0CE3 Ref B: SG2EDGE2616 Ref C: 2024-07-09T03:37:54Z",
"x-cache": "TCP_HIT",
"x-ms-blob-type": "BlockBlob",
"x-ms-lease-status": "unlocked",
"x-ms-request-id": "c8814529-e01e-00d8-0d39-d010d8000000",
"x-ms-version": "2009-09-19",
"x-msedge-ref": "Ref A: 2848611F72B0405296342A7A0E24028F Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z"
},
"resourceIPAddressSpace": "Public",
"statusCode": 200,
"cookiePartitionKey": "https://bing.com",
"cookiePartitionKeyOpaque": false,
"exemptedCookies": []
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.38",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.699624,
"type": "XHR",
"response": {
"url": "https://cn.bing.com/rp/JXkjDPywJD9oeuWPLy7bD8Jc6mw.br.js",
"status": 200,
"statusText": "",
"headers": {
"x-ms-blob-type": "BlockBlob",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"content-encoding": "br",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"x-azure-ref-originshield": "Ref A: 56E8C694D2A4462E96C14322E28B230B Ref B: SG2EDGE2611 Ref C: 2024-07-10T12:57:07Z",
"content-md5": "Dsb9bELHm1DHL/PEEhsR3g==",
"x-cache": "TCP_HIT",
"cross-origin-resource-policy": "cross-origin",
"content-length": "278",
"x-ms-lease-status": "unlocked",
"last-modified": "Wed, 24 Jun 2020 04:38:06 GMT",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: AC75164642274CCA9D4D6FAB5F1A81D4 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z",
"etag": "0x8D817F863CB5C41",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"content-type": "application/x-javascript; charset=utf-8",
"access-control-allow-origin": "*",
"x-ms-request-id": "6aeeb8d9-601e-001d-3ba3-d23a3d000000",
"cache-control": "public, max-age=432000",
"x-ms-version": "2009-09-19",
"timing-allow-origin": "*"
},
"mimeType": "application/x-javascript",
"charset": "utf-8",
"connectionReused": true,
"connectionId": 18,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 776,
"timing": {
"requestTime": 1890151.542754,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 2.118,
"sendEnd": 2.983,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 156.523,
"receiveHeadersEnd": 156.618
},
"responseTime": 1720670453118.469,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": true,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.38",
"timestamp": 1890151.699649,
"dataLength": 423,
"encodedDataLength": 0
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.38",
"timestamp": 1890151.699729,
"dataLength": 0,
"encodedDataLength": 296
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.38",
"timestamp": 1890151.699521,
"encodedDataLength": 1072
}
},
{
"method": "Network.responseReceivedExtraInfo",
"params": {
"requestId": "98243.45",
"blockedCookies": [],
"headers": {
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"access-control-allow-origin": "*",
"cache-control": "public, max-age=432000",
"content-encoding": "br",
"content-length": "368",
"content-md5": "xl2SFLZCQEcsZUNAUSfMmA==",
"content-type": "application/x-javascript; charset=utf-8",
"cross-origin-resource-policy": "cross-origin",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"etag": "0x8D818D85EA0A147",
"last-modified": "Thu, 25 Jun 2020 07:21:25 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"timing-allow-origin": "*",
"x-azure-ref-originshield": "Ref A: 4F4ADD3595104AE78DD371BC59F74568 Ref B: SG2EDGE2613 Ref C: 2024-07-10T15:53:45Z",
"x-cache": "TCP_HIT",
"x-ms-blob-type": "BlockBlob",
"x-ms-lease-status": "unlocked",
"x-ms-request-id": "88569670-601e-0050-2118-d2f5d1000000",
"x-ms-version": "2009-09-19",
"x-msedge-ref": "Ref A: D470225E283C47D78FAF5DC713ED3A10 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z"
},
"resourceIPAddressSpace": "Public",
"statusCode": 200,
"cookiePartitionKey": "https://bing.com",
"cookiePartitionKeyOpaque": false,
"exemptedCookies": []
}
},
{
"method": "Network.responseReceivedExtraInfo",
"params": {
"requestId": "98243.40",
"blockedCookies": [],
"headers": {
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"access-control-allow-origin": "*",
"cache-control": "public, max-age=432000, no-transform, immutable",
"content-encoding": "br",
"content-length": "8971",
"content-md5": "RrkbppEchbUvHpxJo7d8Cw==",
"content-type": "text/javascript; charset=utf-8",
"cross-origin-resource-policy": "cross-origin",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"etag": "0x8DC9C6602317C27",
"last-modified": "Thu, 04 Jul 2024 20:15:11 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"timing-allow-origin": "*",
"x-azure-ref-originshield": "Ref A: E7986E75BF3E48C1837E00BCC0A036E4 Ref B: SG2EDGE2506 Ref C: 2024-07-10T00:00:20Z",
"x-cache": "TCP_HIT",
"x-ms-blob-type": "BlockBlob",
"x-ms-lease-status": "unlocked",
"x-ms-request-id": "fb333b0e-701e-00da-6858-d2ae60000000",
"x-ms-version": "2009-09-19",
"x-msedge-ref": "Ref A: 9433BD10F1164BDE8907F83E272A8046 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z"
},
"resourceIPAddressSpace": "Public",
"statusCode": 200,
"cookiePartitionKey": "https://bing.com",
"cookiePartitionKeyOpaque": false,
"exemptedCookies": []
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.41",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.699893,
"type": "XHR",
"response": {
"url": "https://cn.bing.com/rp/MjkKTrIX9w2UKVd1W1WV1Gj2zWM.br.js",
"status": 200,
"statusText": "",
"headers": {
"x-ms-blob-type": "BlockBlob",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"content-encoding": "br",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"x-azure-ref-originshield": "Ref A: B8EEA923C1E142F4AD117996A20A0CE3 Ref B: SG2EDGE2616 Ref C: 2024-07-09T03:37:54Z",
"content-md5": "YFrAklqNwGuL+H5Q5yxZnw==",
"x-cache": "TCP_HIT",
"cross-origin-resource-policy": "cross-origin",
"content-length": "504",
"x-ms-lease-status": "unlocked",
"last-modified": "Tue, 14 Jun 2022 17:10:58 GMT",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: 2848611F72B0405296342A7A0E24028F Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z",
"etag": "0x8DA4E28D9D7FE33",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"content-type": "text/javascript; charset=utf-8",
"access-control-allow-origin": "*",
"x-ms-request-id": "c8814529-e01e-00d8-0d39-d010d8000000",
"cache-control": "public, max-age=432000",
"x-ms-version": "2009-09-19",
"timing-allow-origin": "*"
},
"mimeType": "text/javascript",
"charset": "utf-8",
"connectionReused": true,
"connectionId": 18,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 283,
"timing": {
"requestTime": 1890151.543045,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 1.928,
"sendEnd": 2.694,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 156.548,
"receiveHeadersEnd": 156.602
},
"responseTime": 1720670453118.773,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": true,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.41",
"timestamp": 1890151.699913,
"dataLength": 938,
"encodedDataLength": 0
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.41",
"timestamp": 1890151.699978,
"dataLength": 0,
"encodedDataLength": 522
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.41",
"timestamp": 1890151.699757,
"encodedDataLength": 805
}
},
{
"method": "Network.responseReceivedExtraInfo",
"params": {
"requestId": "98243.49",
"blockedCookies": [],
"headers": {
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"access-control-allow-origin": "*",
"cache-control": "public, max-age=432000, no-transform, immutable",
"content-encoding": "br",
"content-length": "1532",
"content-md5": "FXbNzL5WiMdS7y/N9ZEDfg==",
"content-type": "text/javascript; charset=utf-8",
"cross-origin-resource-policy": "cross-origin",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"etag": "0x8DB728BA690BB7D",
"last-modified": "Wed, 21 Jun 2023 19:13:52 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"timing-allow-origin": "*",
"x-azure-ref-originshield": "Ref A: 451D9EF5784840F6884A8B0C008E6634 Ref B: SG2EDGE2409 Ref C: 2024-07-10T12:54:52Z",
"x-cache": "TCP_HIT",
"x-ms-blob-type": "BlockBlob",
"x-ms-lease-status": "unlocked",
"x-ms-request-id": "8856a3a7-301e-00db-6c05-d0f1bc000000",
"x-ms-version": "2009-09-19",
"x-msedge-ref": "Ref A: D129C08D6A87495CBD46B77C06281084 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z"
},
"resourceIPAddressSpace": "Public",
"statusCode": 200,
"cookiePartitionKey": "https://bing.com",
"cookiePartitionKeyOpaque": false,
"exemptedCookies": []
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.45",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.700136,
"type": "XHR",
"response": {
"url": "https://cn.bing.com/rp/V_fBQ_iVmAgE_Ta_T-6BNXc0ZY4.br.js",
"status": 200,
"statusText": "",
"headers": {
"x-ms-blob-type": "BlockBlob",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"content-encoding": "br",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"x-azure-ref-originshield": "Ref A: 4F4ADD3595104AE78DD371BC59F74568 Ref B: SG2EDGE2613 Ref C: 2024-07-10T15:53:45Z",
"content-md5": "xl2SFLZCQEcsZUNAUSfMmA==",
"x-cache": "TCP_HIT",
"cross-origin-resource-policy": "cross-origin",
"content-length": "368",
"x-ms-lease-status": "unlocked",
"last-modified": "Thu, 25 Jun 2020 07:21:25 GMT",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: D470225E283C47D78FAF5DC713ED3A10 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z",
"etag": "0x8D818D85EA0A147",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"content-type": "application/x-javascript; charset=utf-8",
"access-control-allow-origin": "*",
"x-ms-request-id": "88569670-601e-0050-2118-d2f5d1000000",
"cache-control": "public, max-age=432000",
"x-ms-version": "2009-09-19",
"timing-allow-origin": "*"
},
"mimeType": "application/x-javascript",
"charset": "utf-8",
"connectionReused": true,
"connectionId": 18,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 282,
"timing": {
"requestTime": 1890151.543409,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 1.7,
"sendEnd": 2.333,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 156.411,
"receiveHeadersEnd": 156.461
},
"responseTime": 1720670453119,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": true,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.responseReceivedExtraInfo",
"params": {
"requestId": "98243.39",
"blockedCookies": [],
"headers": {
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"access-control-allow-origin": "*",
"cache-control": "public, max-age=432000",
"content-encoding": "br",
"content-length": "258",
"content-md5": "mOWXO8D36JvtqS/wRuZISQ==",
"content-type": "application/x-javascript; charset=utf-8",
"cross-origin-resource-policy": "cross-origin",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"etag": "0x8D817F96894398A",
"last-modified": "Wed, 24 Jun 2020 04:45:24 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"timing-allow-origin": "*",
"x-azure-ref-originshield": "Ref A: 3F925E8E0D194677A1A353EA6ED5FBC3 Ref B: SG2EDGE2605 Ref C: 2024-07-10T12:55:55Z",
"x-cache": "TCP_HIT",
"x-ms-blob-type": "BlockBlob",
"x-ms-lease-status": "unlocked",
"x-ms-request-id": "a138ab59-801e-0005-589e-d2e55a000000",
"x-ms-version": "2009-09-19",
"x-msedge-ref": "Ref A: 7452B0675B194A9D8FC68ADD2D88344B Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z"
},
"resourceIPAddressSpace": "Public",
"statusCode": 200,
"cookiePartitionKey": "https://bing.com",
"cookiePartitionKeyOpaque": false,
"exemptedCookies": []
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.40",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.700289,
"type": "XHR",
"response": {
"url": "https://cn.bing.com/rp/XM6LKGnaO0IrEHDb20t2QJ2NUlA.br.js",
"status": 200,
"statusText": "",
"headers": {
"x-ms-blob-type": "BlockBlob",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"content-encoding": "br",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"x-azure-ref-originshield": "Ref A: E7986E75BF3E48C1837E00BCC0A036E4 Ref B: SG2EDGE2506 Ref C: 2024-07-10T00:00:20Z",
"content-md5": "RrkbppEchbUvHpxJo7d8Cw==",
"x-cache": "TCP_HIT",
"cross-origin-resource-policy": "cross-origin",
"content-length": "8971",
"x-ms-lease-status": "unlocked",
"last-modified": "Thu, 04 Jul 2024 20:15:11 GMT",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: 9433BD10F1164BDE8907F83E272A8046 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z",
"etag": "0x8DC9C6602317C27",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"content-type": "text/javascript; charset=utf-8",
"access-control-allow-origin": "*",
"x-ms-request-id": "fb333b0e-701e-00da-6858-d2ae60000000",
"cache-control": "public, max-age=432000, no-transform, immutable",
"x-ms-version": "2009-09-19",
"timing-allow-origin": "*"
},
"mimeType": "text/javascript",
"charset": "utf-8",
"connectionReused": true,
"connectionId": 18,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 316,
"timing": {
"requestTime": 1890151.54293,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 2.01,
"sendEnd": 2.809,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 157.008,
"receiveHeadersEnd": 157.054
},
"responseTime": 1720670453119.117,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": true,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.responseReceivedExtraInfo",
"params": {
"requestId": "98243.44",
"blockedCookies": [],
"headers": {
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"access-control-allow-origin": "*",
"cache-control": "public, max-age=432000",
"content-encoding": "br",
"content-length": "156",
"content-md5": "0ApKmxnWdlgJ/r3VvxbmFQ==",
"content-type": "application/x-javascript; charset=utf-8",
"cross-origin-resource-policy": "cross-origin",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"etag": "0x8D817F8175C1352",
"last-modified": "Wed, 24 Jun 2020 04:35:58 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"timing-allow-origin": "*",
"x-azure-ref-originshield": "Ref A: 360658BF1D764CBEACBFBA668AF579D8 Ref B: SG2EDGE2508 Ref C: 2024-07-11T00:59:46Z",
"x-cache": "TCP_HIT",
"x-ms-blob-type": "BlockBlob",
"x-ms-lease-status": "unlocked",
"x-ms-request-id": "ef31f4cf-801e-0093-0dd4-d1ec8b000000",
"x-ms-version": "2009-09-19",
"x-msedge-ref": "Ref A: A335BA630FBA43B3AC4F29E9A11E6742 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z"
},
"resourceIPAddressSpace": "Public",
"statusCode": 200,
"cookiePartitionKey": "https://bing.com",
"cookiePartitionKeyOpaque": false,
"exemptedCookies": []
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.49",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.700436,
"type": "XHR",
"response": {
"url": "https://cn.bing.com/rp/9cuwOQ_qE7qTGKohzrf_gIjTlPI.br.js",
"status": 200,
"statusText": "",
"headers": {
"x-ms-blob-type": "BlockBlob",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"content-encoding": "br",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"x-azure-ref-originshield": "Ref A: 451D9EF5784840F6884A8B0C008E6634 Ref B: SG2EDGE2409 Ref C: 2024-07-10T12:54:52Z",
"content-md5": "FXbNzL5WiMdS7y/N9ZEDfg==",
"x-cache": "TCP_HIT",
"cross-origin-resource-policy": "cross-origin",
"content-length": "1532",
"x-ms-lease-status": "unlocked",
"last-modified": "Wed, 21 Jun 2023 19:13:52 GMT",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: D129C08D6A87495CBD46B77C06281084 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z",
"etag": "0x8DB728BA690BB7D",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"content-type": "text/javascript; charset=utf-8",
"access-control-allow-origin": "*",
"x-ms-request-id": "8856a3a7-301e-00db-6c05-d0f1bc000000",
"cache-control": "public, max-age=432000, no-transform, immutable",
"x-ms-version": "2009-09-19",
"timing-allow-origin": "*"
},
"mimeType": "text/javascript",
"charset": "utf-8",
"connectionReused": true,
"connectionId": 18,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 306,
"timing": {
"requestTime": 1890151.543767,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 1.492,
"sendEnd": 1.977,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 156.277,
"receiveHeadersEnd": 156.32
},
"responseTime": 1720670453119.223,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": true,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.responseReceivedExtraInfo",
"params": {
"requestId": "98243.43",
"blockedCookies": [],
"headers": {
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"access-control-allow-origin": "*",
"cache-control": "public, max-age=432000",
"content-encoding": "br",
"content-length": "806",
"content-md5": "hRrTe9xFPcEQGLGPgVvjhw==",
"content-type": "text/javascript; charset=utf-8",
"cross-origin-resource-policy": "cross-origin",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"etag": "0x8D93B915A1EAA58",
"last-modified": "Wed, 30 Jun 2021 06:36:11 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"timing-allow-origin": "*",
"x-azure-ref-originshield": "Ref A: 6EC9009B118F4157BF293B254392D269 Ref B: SG2EDGE2610 Ref C: 2024-07-11T00:57:42Z",
"x-cache": "TCP_HIT",
"x-ms-blob-type": "BlockBlob",
"x-ms-lease-status": "unlocked",
"x-ms-request-id": "00aaca8a-601e-000d-26bc-d1ff55000000",
"x-ms-version": "2009-09-19",
"x-msedge-ref": "Ref A: CE31B12080D04F42AFCD8652AF12A26F Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z"
},
"resourceIPAddressSpace": "Public",
"statusCode": 200,
"cookiePartitionKey": "https://bing.com",
"cookiePartitionKeyOpaque": false,
"exemptedCookies": []
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.39",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.700583,
"type": "XHR",
"response": {
"url": "https://cn.bing.com/rp/ilbkF5vv0sk3tJ8LDY0Nm39p12g.br.js",
"status": 200,
"statusText": "",
"headers": {
"x-ms-blob-type": "BlockBlob",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"content-encoding": "br",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"x-azure-ref-originshield": "Ref A: 3F925E8E0D194677A1A353EA6ED5FBC3 Ref B: SG2EDGE2605 Ref C: 2024-07-10T12:55:55Z",
"content-md5": "mOWXO8D36JvtqS/wRuZISQ==",
"x-cache": "TCP_HIT",
"cross-origin-resource-policy": "cross-origin",
"content-length": "258",
"x-ms-lease-status": "unlocked",
"last-modified": "Wed, 24 Jun 2020 04:45:24 GMT",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: 7452B0675B194A9D8FC68ADD2D88344B Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z",
"etag": "0x8D817F96894398A",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"content-type": "application/x-javascript; charset=utf-8",
"access-control-allow-origin": "*",
"x-ms-request-id": "a138ab59-801e-0005-589e-d2e55a000000",
"cache-control": "public, max-age=432000",
"x-ms-version": "2009-09-19",
"timing-allow-origin": "*"
},
"mimeType": "application/x-javascript",
"charset": "utf-8",
"connectionReused": true,
"connectionId": 18,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 777,
"timing": {
"requestTime": 1890151.542847,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 2.061,
"sendEnd": 2.891,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 157.295,
"receiveHeadersEnd": 157.347
},
"responseTime": 1720670453119.327,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": true,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.responseReceivedExtraInfo",
"params": {
"requestId": "98243.47",
"blockedCookies": [],
"headers": {
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"access-control-allow-origin": "*",
"cache-control": "public, max-age=432000, no-transform, immutable",
"content-encoding": "br",
"content-length": "312",
"content-md5": "Ij6CMW7d9STrT+a4Nf7dFA==",
"content-type": "text/javascript; charset=utf-8",
"cross-origin-resource-policy": "cross-origin",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"etag": "0x8DC7A4E4E6F4FF1",
"last-modified": "Wed, 22 May 2024 10:59:52 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"timing-allow-origin": "*",
"x-azure-ref-originshield": "Ref A: ED9194B4E72C4DC4A92D09CA2D385D9D Ref B: SG2EDGE2410 Ref C: 2024-07-10T21:02:03Z",
"x-cache": "TCP_HIT",
"x-ms-blob-type": "BlockBlob",
"x-ms-lease-status": "unlocked",
"x-ms-request-id": "8c4c9e5c-001e-0024-72cb-d1c121000000",
"x-ms-version": "2009-09-19",
"x-msedge-ref": "Ref A: E1FD3E8F05FB49EABA612FC6D4D08EC0 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z"
},
"resourceIPAddressSpace": "Public",
"statusCode": 200,
"cookiePartitionKey": "https://bing.com",
"cookiePartitionKeyOpaque": false,
"exemptedCookies": []
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.44",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.700734,
"type": "XHR",
"response": {
"url": "https://cn.bing.com/rp/8CgcSSLayxEVUBf0swP_bQGMId8.br.js",
"status": 200,
"statusText": "",
"headers": {
"x-ms-blob-type": "BlockBlob",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"content-encoding": "br",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"x-azure-ref-originshield": "Ref A: 360658BF1D764CBEACBFBA668AF579D8 Ref B: SG2EDGE2508 Ref C: 2024-07-11T00:59:46Z",
"content-md5": "0ApKmxnWdlgJ/r3VvxbmFQ==",
"x-cache": "TCP_HIT",
"cross-origin-resource-policy": "cross-origin",
"content-length": "156",
"x-ms-lease-status": "unlocked",
"last-modified": "Wed, 24 Jun 2020 04:35:58 GMT",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: A335BA630FBA43B3AC4F29E9A11E6742 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z",
"etag": "0x8D817F8175C1352",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"content-type": "application/x-javascript; charset=utf-8",
"access-control-allow-origin": "*",
"x-ms-request-id": "ef31f4cf-801e-0093-0dd4-d1ec8b000000",
"cache-control": "public, max-age=432000",
"x-ms-version": "2009-09-19",
"timing-allow-origin": "*"
},
"mimeType": "application/x-javascript",
"charset": "utf-8",
"connectionReused": true,
"connectionId": 18,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 282,
"timing": {
"requestTime": 1890151.543329,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 1.745,
"sendEnd": 2.412,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 156.928,
"receiveHeadersEnd": 156.968
},
"responseTime": 1720670453119.434,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": true,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.45",
"timestamp": 1890151.700822,
"dataLength": 576,
"encodedDataLength": 386
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.45",
"timestamp": 1890151.700388,
"encodedDataLength": 668
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.40",
"timestamp": 1890151.700932,
"dataLength": 21924,
"encodedDataLength": 8989
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.40",
"timestamp": 1890151.700549,
"encodedDataLength": 9305
}
},
{
"method": "Network.responseReceivedExtraInfo",
"params": {
"requestId": "98243.42",
"blockedCookies": [],
"headers": {
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"access-control-allow-origin": "*",
"cache-control": "public, max-age=432000",
"content-encoding": "br",
"content-length": "714",
"content-md5": "wQmZQwuzNQKGWvk013IgpA==",
"content-type": "text/javascript; charset=utf-8",
"cross-origin-resource-policy": "cross-origin",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"etag": "0x8D9F6F656EEF44C",
"last-modified": "Wed, 23 Feb 2022 18:00:13 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"timing-allow-origin": "*",
"x-azure-ref-originshield": "Ref A: 9984C69D7B7A4EE2B9E8A84B5999539B Ref B: SG2EDGE2520 Ref C: 2024-07-09T06:14:10Z",
"x-cache": "TCP_HIT",
"x-ms-blob-type": "BlockBlob",
"x-ms-lease-status": "unlocked",
"x-ms-request-id": "e30dcdca-301e-0010-17bc-d1f2e9000000",
"x-ms-version": "2009-09-19",
"x-msedge-ref": "Ref A: 7C63E8854CDA4D0196350CFE42CE3D27 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z"
},
"resourceIPAddressSpace": "Public",
"statusCode": 200,
"cookiePartitionKey": "https://bing.com",
"cookiePartitionKeyOpaque": false,
"exemptedCookies": []
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.43",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.701095,
"type": "XHR",
"response": {
"url": "https://cn.bing.com/rp/n21aGRCN5EKHB3qObygw029dyNU.br.js",
"status": 200,
"statusText": "",
"headers": {
"x-ms-blob-type": "BlockBlob",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"content-encoding": "br",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"x-azure-ref-originshield": "Ref A: 6EC9009B118F4157BF293B254392D269 Ref B: SG2EDGE2610 Ref C: 2024-07-11T00:57:42Z",
"content-md5": "hRrTe9xFPcEQGLGPgVvjhw==",
"x-cache": "TCP_HIT",
"cross-origin-resource-policy": "cross-origin",
"content-length": "806",
"x-ms-lease-status": "unlocked",
"last-modified": "Wed, 30 Jun 2021 06:36:11 GMT",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: CE31B12080D04F42AFCD8652AF12A26F Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z",
"etag": "0x8D93B915A1EAA58",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"content-type": "text/javascript; charset=utf-8",
"access-control-allow-origin": "*",
"x-ms-request-id": "00aaca8a-601e-000d-26bc-d1ff55000000",
"cache-control": "public, max-age=432000",
"x-ms-version": "2009-09-19",
"timing-allow-origin": "*"
},
"mimeType": "text/javascript",
"charset": "utf-8",
"connectionReused": true,
"connectionId": 18,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 281,
"timing": {
"requestTime": 1890151.543257,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 1.779,
"sendEnd": 2.483,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 157.345,
"receiveHeadersEnd": 157.392
},
"responseTime": 1720670453119.784,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": true,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.responseReceivedExtraInfo",
"params": {
"requestId": "98243.46",
"blockedCookies": [],
"headers": {
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"access-control-allow-origin": "*",
"cache-control": "public, max-age=432000",
"content-encoding": "br",
"content-length": "203",
"content-md5": "QIcJkitTo2dw/Udpu2lXSg==",
"content-type": "application/x-javascript; charset=utf-8",
"cross-origin-resource-policy": "cross-origin",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"etag": "0x8D8A30065DFBB94",
"last-modified": "Fri, 18 Dec 2020 02:55:37 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"timing-allow-origin": "*",
"x-azure-ref-originshield": "Ref A: 6A11E0A9446E417693F5BFDA6375E0FE Ref B: SG2EDGE2520 Ref C: 2024-07-09T07:17:33Z",
"x-cache": "TCP_HIT",
"x-ms-blob-type": "BlockBlob",
"x-ms-lease-status": "unlocked",
"x-ms-request-id": "52c14abe-201e-001c-19ce-d165e1000000",
"x-ms-version": "2009-09-19",
"x-msedge-ref": "Ref A: 82D988E20AEA4BC88E8033A3AEF13843 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z"
},
"resourceIPAddressSpace": "Public",
"statusCode": 200,
"cookiePartitionKey": "https://bing.com",
"cookiePartitionKeyOpaque": false,
"exemptedCookies": []
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.47",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.701242,
"type": "XHR",
"response": {
"url": "https://cn.bing.com/rp/_2I169N92jVtSc_VEsV0nma5sRY.br.js",
"status": 200,
"statusText": "",
"headers": {
"x-ms-blob-type": "BlockBlob",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"content-encoding": "br",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"x-azure-ref-originshield": "Ref A: ED9194B4E72C4DC4A92D09CA2D385D9D Ref B: SG2EDGE2410 Ref C: 2024-07-10T21:02:03Z",
"content-md5": "Ij6CMW7d9STrT+a4Nf7dFA==",
"x-cache": "TCP_HIT",
"cross-origin-resource-policy": "cross-origin",
"content-length": "312",
"x-ms-lease-status": "unlocked",
"last-modified": "Wed, 22 May 2024 10:59:52 GMT",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: E1FD3E8F05FB49EABA612FC6D4D08EC0 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z",
"etag": "0x8DC7A4E4E6F4FF1",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"content-type": "text/javascript; charset=utf-8",
"access-control-allow-origin": "*",
"x-ms-request-id": "8c4c9e5c-001e-0024-72cb-d1c121000000",
"cache-control": "public, max-age=432000, no-transform, immutable",
"x-ms-version": "2009-09-19",
"timing-allow-origin": "*"
},
"mimeType": "text/javascript",
"charset": "utf-8",
"connectionReused": true,
"connectionId": 18,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 317,
"timing": {
"requestTime": 1890151.543606,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 1.577,
"sendEnd": 2.137,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 157.102,
"receiveHeadersEnd": 157.184
},
"responseTime": 1720670453119.926,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": true,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.39",
"timestamp": 1890151.701324,
"dataLength": 425,
"encodedDataLength": 276
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.39",
"timestamp": 1890151.700875,
"encodedDataLength": 1053
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.44",
"timestamp": 1890151.701413,
"dataLength": 226,
"encodedDataLength": 174
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.44",
"timestamp": 1890151.700953,
"encodedDataLength": 456
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.42",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.701564,
"type": "XHR",
"response": {
"url": "https://cn.bing.com/rp/Gyuq2bqitqDJM0BeAkbKXGlQXNw.br.js",
"status": 200,
"statusText": "",
"headers": {
"x-ms-blob-type": "BlockBlob",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"content-encoding": "br",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"x-azure-ref-originshield": "Ref A: 9984C69D7B7A4EE2B9E8A84B5999539B Ref B: SG2EDGE2520 Ref C: 2024-07-09T06:14:10Z",
"content-md5": "wQmZQwuzNQKGWvk013IgpA==",
"x-cache": "TCP_HIT",
"cross-origin-resource-policy": "cross-origin",
"content-length": "714",
"x-ms-lease-status": "unlocked",
"last-modified": "Wed, 23 Feb 2022 18:00:13 GMT",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: 7C63E8854CDA4D0196350CFE42CE3D27 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z",
"etag": "0x8D9F6F656EEF44C",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"content-type": "text/javascript; charset=utf-8",
"access-control-allow-origin": "*",
"x-ms-request-id": "e30dcdca-301e-0010-17bc-d1f2e9000000",
"cache-control": "public, max-age=432000",
"x-ms-version": "2009-09-19",
"timing-allow-origin": "*"
},
"mimeType": "text/javascript",
"charset": "utf-8",
"connectionReused": true,
"connectionId": 18,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 307,
"timing": {
"requestTime": 1890151.543171,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 1.836,
"sendEnd": 2.569,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 157.835,
"receiveHeadersEnd": 157.879
},
"responseTime": 1720670453120.184,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": true,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.46",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.701698,
"type": "XHR",
"response": {
"url": "https://cn.bing.com/rp/C7TuoP5bfHv-CZlMHZy7yfvI4Fk.br.js",
"status": 200,
"statusText": "",
"headers": {
"x-ms-blob-type": "BlockBlob",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"content-encoding": "br",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"x-azure-ref-originshield": "Ref A: 6A11E0A9446E417693F5BFDA6375E0FE Ref B: SG2EDGE2520 Ref C: 2024-07-09T07:17:33Z",
"content-md5": "QIcJkitTo2dw/Udpu2lXSg==",
"x-cache": "TCP_HIT",
"cross-origin-resource-policy": "cross-origin",
"content-length": "203",
"x-ms-lease-status": "unlocked",
"last-modified": "Fri, 18 Dec 2020 02:55:37 GMT",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: 82D988E20AEA4BC88E8033A3AEF13843 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z",
"etag": "0x8D8A30065DFBB94",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"content-type": "application/x-javascript; charset=utf-8",
"access-control-allow-origin": "*",
"x-ms-request-id": "52c14abe-201e-001c-19ce-d165e1000000",
"cache-control": "public, max-age=432000",
"x-ms-version": "2009-09-19",
"timing-allow-origin": "*"
},
"mimeType": "application/x-javascript",
"charset": "utf-8",
"connectionReused": true,
"connectionId": 18,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 774,
"timing": {
"requestTime": 1890151.543528,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 1.618,
"sendEnd": 2.214,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 157.583,
"receiveHeadersEnd": 157.629
},
"responseTime": 1720670453120.295,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": true,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.46",
"timestamp": 1890151.701716,
"dataLength": 328,
"encodedDataLength": 0
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.46",
"timestamp": 1890151.701785,
"dataLength": 0,
"encodedDataLength": 221
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.46",
"timestamp": 1890151.701458,
"encodedDataLength": 995
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.43",
"timestamp": 1890151.701866,
"dataLength": 1589,
"encodedDataLength": 824
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.43",
"timestamp": 1890151.701248,
"encodedDataLength": 1105
}
},
{
"method": "Network.responseReceivedExtraInfo",
"params": {
"requestId": "98243.53",
"blockedCookies": [],
"headers": {
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"access-control-allow-origin": "*",
"cache-control": "public, max-age=432000, no-transform, immutable",
"content-encoding": "br",
"content-length": "772",
"content-md5": "yaTET5I1fmUKhVemn0wu5w==",
"content-type": "text/javascript; charset=utf-8",
"cross-origin-resource-policy": "cross-origin",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"etag": "0x8DC2D9457D9D552",
"last-modified": "Wed, 14 Feb 2024 19:37:13 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"timing-allow-origin": "*",
"x-azure-ref-originshield": "Ref A: 987F0E97758B43D4AD97B1643A25A60A Ref B: SG2EDGE2618 Ref C: 2024-07-10T12:54:43Z",
"x-cache": "TCP_HIT",
"x-ms-blob-type": "BlockBlob",
"x-ms-lease-status": "unlocked",
"x-ms-request-id": "d4890ef1-f01e-007d-7e97-d246a2000000",
"x-ms-version": "2009-09-19",
"x-msedge-ref": "Ref A: EB19AABB0E3E417484073AD68FA1B8EA Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z"
},
"resourceIPAddressSpace": "Public",
"statusCode": 200,
"cookiePartitionKey": "https://bing.com",
"cookiePartitionKeyOpaque": false,
"exemptedCookies": []
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.47",
"timestamp": 1890151.701958,
"dataLength": 622,
"encodedDataLength": 330
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.47",
"timestamp": 1890151.701333,
"encodedDataLength": 647
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.42",
"timestamp": 1890151.702055,
"dataLength": 1274,
"encodedDataLength": 732
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.42",
"timestamp": 1890151.701627,
"encodedDataLength": 1039
}
},
{
"method": "Network.responseReceivedExtraInfo",
"params": {
"requestId": "98243.48",
"blockedCookies": [],
"headers": {
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"access-control-allow-origin": "*",
"cache-control": "public, max-age=432000",
"content-encoding": "br",
"content-length": "492",
"content-md5": "rSmdN6tN5TS/1yEQ8Z6pNA==",
"content-type": "text/javascript; charset=utf-8",
"cross-origin-resource-policy": "cross-origin",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"etag": "0x8DA639238D31B08",
"last-modified": "Mon, 11 Jul 2022 23:08:09 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"timing-allow-origin": "*",
"x-azure-ref-originshield": "Ref A: 4228574CC71B42DAB1452BC8E84BC958 Ref B: SG2EDGE2512 Ref C: 2024-07-07T16:44:48Z",
"x-cache": "TCP_HIT",
"x-ms-blob-type": "BlockBlob",
"x-ms-lease-status": "unlocked",
"x-ms-request-id": "cdfe4a98-201e-00b5-7c76-cea493000000",
"x-ms-version": "2009-09-19",
"x-msedge-ref": "Ref A: 687A48AC5914408EBB0373150234D4B6 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z"
},
"resourceIPAddressSpace": "Public",
"statusCode": 200,
"cookiePartitionKey": "https://bing.com",
"cookiePartitionKeyOpaque": false,
"exemptedCookies": []
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.49",
"timestamp": 1890151.702164,
"dataLength": 3363,
"encodedDataLength": 1550
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.49",
"timestamp": 1890151.701824,
"encodedDataLength": 1856
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.53",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.702336,
"type": "XHR",
"response": {
"url": "https://cn.bing.com/rp/5L3iD467J3iJWEPwIjxlK0MMDpY.br.js",
"status": 200,
"statusText": "",
"headers": {
"x-ms-blob-type": "BlockBlob",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"content-encoding": "br",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"x-azure-ref-originshield": "Ref A: 987F0E97758B43D4AD97B1643A25A60A Ref B: SG2EDGE2618 Ref C: 2024-07-10T12:54:43Z",
"content-md5": "yaTET5I1fmUKhVemn0wu5w==",
"x-cache": "TCP_HIT",
"cross-origin-resource-policy": "cross-origin",
"content-length": "772",
"x-ms-lease-status": "unlocked",
"last-modified": "Wed, 14 Feb 2024 19:37:13 GMT",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: EB19AABB0E3E417484073AD68FA1B8EA Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z",
"etag": "0x8DC2D9457D9D552",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"content-type": "text/javascript; charset=utf-8",
"access-control-allow-origin": "*",
"x-ms-request-id": "d4890ef1-f01e-007d-7e97-d246a2000000",
"cache-control": "public, max-age=432000, no-transform, immutable",
"x-ms-version": "2009-09-19",
"timing-allow-origin": "*"
},
"mimeType": "text/javascript",
"charset": "utf-8",
"connectionReused": true,
"connectionId": 18,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 283,
"timing": {
"requestTime": 1890151.544299,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 1.062,
"sendEnd": 1.447,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 157.587,
"receiveHeadersEnd": 157.658
},
"responseTime": 1720670453121.069,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": true,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.53",
"timestamp": 1890151.702355,
"dataLength": 1725,
"encodedDataLength": 0
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.53",
"timestamp": 1890151.702431,
"dataLength": 0,
"encodedDataLength": 790
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.53",
"timestamp": 1890151.702229,
"encodedDataLength": 1073
}
},
{
"method": "Network.responseReceivedExtraInfo",
"params": {
"requestId": "98243.56",
"blockedCookies": [],
"headers": {
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"access-control-allow-origin": "*",
"cache-control": "public, max-age=432000, no-transform, immutable",
"content-encoding": "br",
"content-length": "650",
"content-md5": "zpq4pGSpepPtt22LnktPaA==",
"content-type": "text/javascript; charset=utf-8",
"cross-origin-resource-policy": "cross-origin",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"etag": "0x8DACD7AEE27F35F",
"last-modified": "Wed, 23 Nov 2022 17:48:29 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"timing-allow-origin": "*",
"x-azure-ref-originshield": "Ref A: 581EAD28B74A4EC69628006F0D608B99 Ref B: SG2EDGE2409 Ref C: 2024-07-10T12:57:00Z",
"x-cache": "TCP_HIT",
"x-ms-blob-type": "BlockBlob",
"x-ms-lease-status": "unlocked",
"x-ms-request-id": "ba3e330c-701e-00ca-41cd-d06b08000000",
"x-ms-version": "2009-09-19",
"x-msedge-ref": "Ref A: 8A78F26486B44EFB8537461E321733D1 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z"
},
"resourceIPAddressSpace": "Public",
"statusCode": 200,
"cookiePartitionKey": "https://bing.com",
"cookiePartitionKeyOpaque": false,
"exemptedCookies": []
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.48",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.702575,
"type": "XHR",
"response": {
"url": "https://cn.bing.com/rp/gKwIRAF4fg7noG1zyeUz8x3Jdhc.br.js",
"status": 200,
"statusText": "",
"headers": {
"x-ms-blob-type": "BlockBlob",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"content-encoding": "br",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"x-azure-ref-originshield": "Ref A: 4228574CC71B42DAB1452BC8E84BC958 Ref B: SG2EDGE2512 Ref C: 2024-07-07T16:44:48Z",
"content-md5": "rSmdN6tN5TS/1yEQ8Z6pNA==",
"x-cache": "TCP_HIT",
"cross-origin-resource-policy": "cross-origin",
"content-length": "492",
"x-ms-lease-status": "unlocked",
"last-modified": "Mon, 11 Jul 2022 23:08:09 GMT",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: 687A48AC5914408EBB0373150234D4B6 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z",
"etag": "0x8DA639238D31B08",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"content-type": "text/javascript; charset=utf-8",
"access-control-allow-origin": "*",
"x-ms-request-id": "cdfe4a98-201e-00b5-7c76-cea493000000",
"cache-control": "public, max-age=432000",
"x-ms-version": "2009-09-19",
"timing-allow-origin": "*"
},
"mimeType": "text/javascript",
"charset": "utf-8",
"connectionReused": true,
"connectionId": 18,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 282,
"timing": {
"requestTime": 1890151.543686,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 1.528,
"sendEnd": 2.057,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 158.356,
"receiveHeadersEnd": 158.415
},
"responseTime": 1720670453121.222,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": true,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.48",
"timestamp": 1890151.702598,
"dataLength": 924,
"encodedDataLength": 0
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.48",
"timestamp": 1890151.70267,
"dataLength": 0,
"encodedDataLength": 510
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.48",
"timestamp": 1890151.702385,
"encodedDataLength": 792
}
},
{
"method": "Network.responseReceivedExtraInfo",
"params": {
"requestId": "98243.51",
"blockedCookies": [],
"headers": {
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"access-control-allow-origin": "*",
"cache-control": "public, max-age=432000, no-transform, immutable",
"content-encoding": "br",
"content-length": "635",
"content-md5": "cbryIH17LuJqgju0sWrerw==",
"content-type": "text/javascript; charset=utf-8",
"cross-origin-resource-policy": "cross-origin",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"etag": "0x8DC0D672283F17B",
"last-modified": "Thu, 04 Jan 2024 20:52:59 GMT",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"timing-allow-origin": "*",
"x-azure-ref-originshield": "Ref A: 16CBDF51E7CB48A1BADA99EB1A96194F Ref B: SG2EDGE2421 Ref C: 2024-07-09T04:58:59Z",
"x-cache": "TCP_HIT",
"x-ms-blob-type": "BlockBlob",
"x-ms-lease-status": "unlocked",
"x-ms-request-id": "0c9f73a5-301e-00cb-133b-d034d4000000",
"x-ms-version": "2009-09-19",
"x-msedge-ref": "Ref A: 33227529F1874E3F9CA58A3DE6DB3005 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z"
},
"resourceIPAddressSpace": "Public",
"statusCode": 200,
"cookiePartitionKey": "https://bing.com",
"cookiePartitionKeyOpaque": false,
"exemptedCookies": []
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.56",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.702813,
"type": "XHR",
"response": {
"url": "https://cn.bing.com/rp/O8i6fAzu57ALnSqTI9ARYswV7d4.br.js",
"status": 200,
"statusText": "",
"headers": {
"x-ms-blob-type": "BlockBlob",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"content-encoding": "br",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"x-azure-ref-originshield": "Ref A: 581EAD28B74A4EC69628006F0D608B99 Ref B: SG2EDGE2409 Ref C: 2024-07-10T12:57:00Z",
"content-md5": "zpq4pGSpepPtt22LnktPaA==",
"x-cache": "TCP_HIT",
"cross-origin-resource-policy": "cross-origin",
"content-length": "650",
"x-ms-lease-status": "unlocked",
"last-modified": "Wed, 23 Nov 2022 17:48:29 GMT",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: 8A78F26486B44EFB8537461E321733D1 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z",
"etag": "0x8DACD7AEE27F35F",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"content-type": "text/javascript; charset=utf-8",
"access-control-allow-origin": "*",
"x-ms-request-id": "ba3e330c-701e-00ca-41cd-d06b08000000",
"cache-control": "public, max-age=432000, no-transform, immutable",
"x-ms-version": "2009-09-19",
"timing-allow-origin": "*"
},
"mimeType": "text/javascript",
"charset": "utf-8",
"connectionReused": true,
"connectionId": 18,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 316,
"timing": {
"requestTime": 1890151.544663,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 0.796,
"sendEnd": 1.085,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 157.802,
"receiveHeadersEnd": 157.873
},
"responseTime": 1720670453121.647,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": true,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.56",
"timestamp": 1890151.702834,
"dataLength": 1304,
"encodedDataLength": 0
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.56",
"timestamp": 1890151.702905,
"dataLength": 0,
"encodedDataLength": 668
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.56",
"timestamp": 1890151.70266,
"encodedDataLength": 984
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.51",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.703049,
"type": "XHR",
"response": {
"url": "https://cn.bing.com/rp/psgXZvzYJMEW2ydikIk493Va1d4.br.js",
"status": 200,
"statusText": "",
"headers": {
"x-ms-blob-type": "BlockBlob",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"content-encoding": "br",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"x-azure-ref-originshield": "Ref A: 16CBDF51E7CB48A1BADA99EB1A96194F Ref B: SG2EDGE2421 Ref C: 2024-07-09T04:58:59Z",
"content-md5": "cbryIH17LuJqgju0sWrerw==",
"x-cache": "TCP_HIT",
"cross-origin-resource-policy": "cross-origin",
"content-length": "635",
"x-ms-lease-status": "unlocked",
"last-modified": "Thu, 04 Jan 2024 20:52:59 GMT",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: 33227529F1874E3F9CA58A3DE6DB3005 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z",
"etag": "0x8DC0D672283F17B",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"content-type": "text/javascript; charset=utf-8",
"access-control-allow-origin": "*",
"x-ms-request-id": "0c9f73a5-301e-00cb-133b-d034d4000000",
"cache-control": "public, max-age=432000, no-transform, immutable",
"x-ms-version": "2009-09-19",
"timing-allow-origin": "*"
},
"mimeType": "text/javascript",
"charset": "utf-8",
"connectionReused": true,
"connectionId": 18,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 305,
"timing": {
"requestTime": 1890151.543987,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 1.339,
"sendEnd": 1.758,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 158.74,
"receiveHeadersEnd": 158.811
},
"responseTime": 1720670453121.909,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": true,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.29",
"timestamp": 1890151.703318,
"dataLength": 11032,
"encodedDataLength": 43777
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.29",
"timestamp": 1890151.703703,
"dataLength": 65536,
"encodedDataLength": 0
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.29",
"timestamp": 1890151.703769,
"dataLength": 45642,
"encodedDataLength": 0
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.29",
"timestamp": 1890151.703852,
"dataLength": 45171,
"encodedDataLength": 0
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.29",
"timestamp": 1890151.703887,
"encodedDataLength": 133889
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.57",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.704696,
"type": "Script",
"response": {
"url": "https://cn.bing.com/rp/jA1xMqBzlpnpE2ru1-s0ybbi8MM.br.js",
"status": 200,
"statusText": "",
"headers": {
"x-ms-blob-type": "BlockBlob",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"content-encoding": "br",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"x-azure-ref-originshield": "Ref A: 637C988B573D42F1B87A8616C7A052D8 Ref B: SG2EDGE2622 Ref C: 2024-07-10T12:55:35Z",
"content-md5": "OuXcJlOLJ5YKncHzThxbVw==",
"x-cache": "TCP_HIT",
"cross-origin-resource-policy": "cross-origin",
"content-length": "12109",
"x-ms-lease-status": "unlocked",
"last-modified": "Tue, 07 May 2024 17:04:45 GMT",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: BF14A4A4CA3B41AD9CFECB24EBA0DBFE Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z",
"etag": "0x8DC6EB7CBC7582B",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"content-type": "text/javascript; charset=utf-8",
"access-control-allow-origin": "*",
"x-ms-request-id": "ad234fcb-e01e-002c-141a-d0db2e000000",
"cache-control": "public, max-age=432000, no-transform, immutable",
"x-ms-version": "2009-09-19",
"timing-allow-origin": "*"
},
"mimeType": "text/javascript",
"charset": "utf-8",
"connectionReused": false,
"connectionId": 0,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": true,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 0,
"timing": {
"requestTime": 1890151.703147,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 0.044,
"sendEnd": 0.044,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 0.687,
"receiveHeadersEnd": 0.838
},
"responseTime": 1720670453039.763,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": false,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.57",
"timestamp": 1890151.70473,
"dataLength": 37756,
"encodedDataLength": 0
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.51",
"timestamp": 1890151.704844,
"dataLength": 1060,
"encodedDataLength": 644
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.57",
"timestamp": 1890151.704231,
"encodedDataLength": 0
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.58",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "blob:https://cn.bing.com/fdc79728-9aec-4a35-b7a0-4b374fcbf9f0",
"method": "GET",
"headers": {
"Referer": "",
"Origin": "https://cn.bing.com",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"mixedContentType": "none",
"initialPriority": "High",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.710693,
"wallTime": 1720670453.13128,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "dynamicImportScript",
"scriptId": "11",
"url": "https://cn.bing.com/rp/jA1xMqBzlpnpE2ru1-s0ybbi8MM.br.js",
"lineNumber": 0,
"columnNumber": 5957
},
{
"functionName": "",
"scriptId": "11",
"url": "https://cn.bing.com/rp/jA1xMqBzlpnpE2ru1-s0ybbi8MM.br.js",
"lineNumber": 0,
"columnNumber": 6095
},
{
"functionName": "",
"scriptId": "11",
"url": "https://cn.bing.com/rp/jA1xMqBzlpnpE2ru1-s0ybbi8MM.br.js",
"lineNumber": 0,
"columnNumber": 37753
}
]
}
},
"redirectHasExtraInfo": false,
"type": "Script",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.59",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/hkXWsTcGTHs44QxzZyThd4fbbPM.br.js",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "Low",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.713246,
"wallTime": 1720670453.132484,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "st",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 10818
},
{
"functionName": "fi",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 9301
},
{
"functionName": "et",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 9479
},
{
"functionName": "ft",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 9398
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 9336
},
{
"functionName": "ht",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 11036
},
{
"functionName": "r.onreadystatechange.r.onload",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 10031
}
]
}
},
"redirectHasExtraInfo": false,
"type": "Script",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.58",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.71372,
"type": "Script",
"response": {
"url": "blob:https://cn.bing.com/fdc79728-9aec-4a35-b7a0-4b374fcbf9f0",
"status": 200,
"statusText": "OK",
"headers": {
"Content-Length": "93",
"Content-Type": "text/javascript"
},
"mimeType": "text/javascript",
"charset": "",
"connectionReused": false,
"connectionId": 0,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": -1,
"protocol": "blob",
"alternateProtocolUsage": "alternativeJobWonWithoutRace",
"securityState": "secure"
},
"hasExtraInfo": false,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.58",
"timestamp": 1890151.713733,
"dataLength": 93,
"encodedDataLength": 0
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.58",
"timestamp": 1890151.713769,
"encodedDataLength": 0
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.59",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.714543,
"type": "Script",
"response": {
"url": "https://cn.bing.com/rp/hkXWsTcGTHs44QxzZyThd4fbbPM.br.js",
"status": 200,
"statusText": "",
"headers": {
"x-ms-blob-type": "BlockBlob",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"content-encoding": "br",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"x-azure-ref-originshield": "Ref A: 768D5D5C0F0541B593F22735D9B5E609 Ref B: SG2EDGE2513 Ref C: 2024-07-10T12:56:23Z",
"content-md5": "cQ12N8x+IbYv0+/mq6H9Jw==",
"x-cache": "TCP_HIT",
"cross-origin-resource-policy": "cross-origin",
"content-length": "64993",
"x-ms-lease-status": "unlocked",
"last-modified": "Tue, 01 Nov 2022 22:37:08 GMT",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: 1AF70A3626794D8FB4E8A76CBC39AE36 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z",
"etag": "0x8DABC599C3829B1",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"content-type": "text/javascript; charset=utf-8",
"access-control-allow-origin": "*",
"x-ms-request-id": "eb48c5de-e01e-0095-677a-d0df34000000",
"cache-control": "public, max-age=432000, no-transform, immutable",
"x-ms-version": "2009-09-19",
"timing-allow-origin": "*"
},
"mimeType": "text/javascript",
"charset": "utf-8",
"connectionReused": false,
"connectionId": 0,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": true,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 0,
"timing": {
"requestTime": 1890151.713454,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 0.049,
"sendEnd": 0.049,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 0.176,
"receiveHeadersEnd": 0.209
},
"responseTime": 1720670453041.391,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": false,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.59",
"timestamp": 1890151.714575,
"dataLength": 316988,
"encodedDataLength": 0
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.60",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "blob:https://cn.bing.com/444c3ca9-6cc2-4d19-9a49-fa553e35c2eb",
"method": "GET",
"headers": {
"Referer": "",
"Origin": "https://cn.bing.com",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"mixedContentType": "none",
"initialPriority": "High",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.715115,
"wallTime": 1720670453.134312,
"initiator": {
"type": "script",
"url": "blob:https://cn.bing.com/fdc79728-9aec-4a35-b7a0-4b374fcbf9f0",
"lineNumber": 0,
"columnNumber": 16
},
"redirectHasExtraInfo": false,
"type": "Script",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.60",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.715439,
"type": "Script",
"response": {
"url": "blob:https://cn.bing.com/444c3ca9-6cc2-4d19-9a49-fa553e35c2eb",
"status": 200,
"statusText": "OK",
"headers": {
"Content-Length": "27",
"Content-Type": "text/javascript"
},
"mimeType": "text/javascript",
"charset": "",
"connectionReused": false,
"connectionId": 0,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": -1,
"protocol": "blob",
"alternateProtocolUsage": "alternativeJobWonWithoutRace",
"securityState": "secure"
},
"hasExtraInfo": false,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.60",
"timestamp": 1890151.715449,
"dataLength": 27,
"encodedDataLength": 0
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.60",
"timestamp": 1890151.715471,
"encodedDataLength": 0
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.61",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "blob:https://cn.bing.com/51c4bd79-9145-4910-8a0c-5ac72e5c3f89",
"method": "GET",
"headers": {
"Referer": "",
"Origin": "https://cn.bing.com",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"mixedContentType": "none",
"initialPriority": "High",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.716342,
"wallTime": 1720670453.135586,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "default",
"scriptId": "14",
"url": "blob:https://cn.bing.com/444c3ca9-6cc2-4d19-9a49-fa553e35c2eb",
"lineNumber": 0,
"columnNumber": 18
},
{
"functionName": "",
"scriptId": "11",
"url": "https://cn.bing.com/rp/jA1xMqBzlpnpE2ru1-s0ybbi8MM.br.js",
"lineNumber": 0,
"columnNumber": 6561
}
]
}
},
"redirectHasExtraInfo": false,
"type": "Script",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.61",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.716628,
"type": "Script",
"response": {
"url": "blob:https://cn.bing.com/51c4bd79-9145-4910-8a0c-5ac72e5c3f89",
"status": 200,
"statusText": "OK",
"headers": {
"Content-Length": "11",
"Content-Type": "text/javascript"
},
"mimeType": "text/javascript",
"charset": "",
"connectionReused": false,
"connectionId": 0,
"fromDiskCache": false,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": -1,
"protocol": "blob",
"alternateProtocolUsage": "alternativeJobWonWithoutRace",
"securityState": "secure"
},
"hasExtraInfo": false,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.61",
"timestamp": 1890151.716637,
"dataLength": 11,
"encodedDataLength": 0
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.61",
"timestamp": 1890151.716658,
"encodedDataLength": 0
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.59",
"timestamp": 1890151.71453,
"encodedDataLength": 0
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.62",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/V793ayrBYjBUm-0gdrJPAEYeUiw.br.js",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "Low",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.720388,
"wallTime": 1720670453.139611,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "st",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 10818
},
{
"functionName": "fi",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 9301
},
{
"functionName": "et",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 9479
},
{
"functionName": "ft",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 9398
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 9336
},
{
"functionName": "ht",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 11036
},
{
"functionName": "r.onreadystatechange.r.onload",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 10031
}
]
}
},
"redirectHasExtraInfo": false,
"type": "Script",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.62",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.721137,
"type": "Script",
"response": {
"url": "https://cn.bing.com/rp/V793ayrBYjBUm-0gdrJPAEYeUiw.br.js",
"status": 200,
"statusText": "",
"headers": {
"x-ms-blob-type": "BlockBlob",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"content-encoding": "br",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"x-azure-ref-originshield": "Ref A: 1F7975BF9FF44AF09092DCF38331312B Ref B: SG2EDGE2422 Ref C: 2024-07-09T00:01:46Z",
"content-md5": "dbzAhNDtA54biTyiiODCKw==",
"x-cache": "TCP_HIT",
"cross-origin-resource-policy": "cross-origin",
"content-length": "5070",
"x-ms-lease-status": "unlocked",
"last-modified": "Fri, 28 Jun 2024 18:22:23 GMT",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: 91216601684C4500BDDA0CA1D50874B7 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z",
"etag": "0x8DC979F41AABE56",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"content-type": "text/javascript; charset=utf-8",
"access-control-allow-origin": "*",
"x-ms-request-id": "0388b22b-401e-00ee-3f93-d19da8000000",
"cache-control": "public, max-age=432000, no-transform, immutable",
"x-ms-version": "2009-09-19",
"timing-allow-origin": "*"
},
"mimeType": "text/javascript",
"charset": "utf-8",
"connectionReused": false,
"connectionId": 0,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": true,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 0,
"timing": {
"requestTime": 1890151.720633,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 0.055,
"sendEnd": 0.055,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 0.231,
"receiveHeadersEnd": 0.269
},
"responseTime": 1720670453117.918,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": false,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.62",
"timestamp": 1890151.721167,
"dataLength": 12895,
"encodedDataLength": 0
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.62",
"timestamp": 1890151.721086,
"encodedDataLength": 0
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.63",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/FaGqElP5DzCwweYv9HVv3an5_I8.br.js",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "Low",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.722012,
"wallTime": 1720670453.141213,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "st",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 10818
},
{
"functionName": "fi",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 9301
},
{
"functionName": "et",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 9479
},
{
"functionName": "ft",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 9398
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 9336
},
{
"functionName": "ht",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 11036
},
{
"functionName": "r.onreadystatechange.r.onload",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 10031
}
]
}
},
"redirectHasExtraInfo": false,
"type": "Script",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.responseReceived",
"params": {
"requestId": "98243.63",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"timestamp": 1890151.722603,
"type": "Script",
"response": {
"url": "https://cn.bing.com/rp/FaGqElP5DzCwweYv9HVv3an5_I8.br.js",
"status": 200,
"statusText": "",
"headers": {
"x-ms-blob-type": "BlockBlob",
"date": "Thu, 11 Jul 2024 04:00:52 GMT",
"content-encoding": "br",
"nel": "{\"report_to\":\"network-errors\",\"max_age\":604800,\"success_fraction\":0.001,\"failure_fraction\":1.0}",
"x-azure-ref-originshield": "Ref A: 7C98A01259414D718B17F66F143C2F5B Ref B: SG2EDGE2510 Ref C: 2024-07-10T12:28:59Z",
"content-md5": "wHfWkQ0meJXFU+hLDSBhyQ==",
"x-cache": "TCP_HIT",
"cross-origin-resource-policy": "cross-origin",
"content-length": "133505",
"x-ms-lease-status": "unlocked",
"last-modified": "Wed, 10 Jul 2024 04:50:46 GMT",
"accept-ch": "Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Mobile, Sec-CH-UA-Model, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version",
"x-msedge-ref": "Ref A: 3D31A1C6A7E142588EAD0D373FC05627 Ref B: SIN30EDGE0713 Ref C: 2024-07-11T04:00:53Z",
"etag": "0x8DCA09BDCFEBF34",
"report-to": "{\"group\":\"network-errors\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://aefd.nelreports.net/api/report?cat=bingaot\"}]}",
"content-type": "text/javascript; charset=utf-8",
"access-control-allow-origin": "*",
"x-ms-request-id": "c6d5d27f-001e-009d-18c3-d2c53b000000",
"cache-control": "public, max-age=432000, no-transform, immutable",
"x-ms-version": "2009-09-19",
"timing-allow-origin": "*"
},
"mimeType": "text/javascript",
"charset": "utf-8",
"connectionReused": false,
"connectionId": 0,
"remoteIPAddress": "204.79.197.200",
"remotePort": 443,
"fromDiskCache": true,
"fromServiceWorker": false,
"fromPrefetchCache": false,
"encodedDataLength": 0,
"timing": {
"requestTime": 1890151.722166,
"proxyStart": -1,
"proxyEnd": -1,
"dnsStart": -1,
"dnsEnd": -1,
"connectStart": -1,
"connectEnd": -1,
"sslStart": -1,
"sslEnd": -1,
"workerStart": -1,
"workerReady": -1,
"workerFetchStart": -1,
"workerRespondWithSettled": -1,
"sendStart": 0.041,
"sendEnd": 0.041,
"pushStart": 0,
"pushEnd": 0,
"receiveHeadersStart": 0.19,
"receiveHeadersEnd": 0.219
},
"responseTime": 1720670453115.274,
"protocol": "h2",
"alternateProtocolUsage": "unspecifiedReason",
"securityState": "secure",
"securityDetails": {
"protocol": "TLS 1.3",
"keyExchange": "",
"keyExchangeGroup": "P-384",
"cipher": "AES_256_GCM",
"certificateId": 0,
"subjectName": "www.bing.com",
"sanList": [
"*.platform.bing.com",
"*.bing.com",
"bing.com",
"ieonline.microsoft.com",
"*.windowssearch.com",
"cn.ieonline.microsoft.com",
"*.origin.bing.com",
"*.mm.bing.net",
"*.api.bing.com",
"*.cn.bing.net",
"*.cn.bing.com",
"ssl-api.bing.com",
"ssl-api.bing.net",
"*.api.bing.net",
"*.bingapis.com",
"bingsandbox.com",
"feedback.microsoft.com",
"insertmedia.bing.office.net",
"r.bat.bing.com",
"*.r.bat.bing.com",
"*.dict.bing.com",
"*.ssl.bing.com",
"*.appex.bing.com",
"*.platform.cn.bing.com",
"wp.m.bing.com",
"*.m.bing.com",
"global.bing.com",
"windowssearch.com",
"search.msn.com",
"*.bingsandbox.com",
"*.api.tiles.ditu.live.com",
"*.t0.tiles.ditu.live.com",
"*.t1.tiles.ditu.live.com",
"*.t2.tiles.ditu.live.com",
"*.t3.tiles.ditu.live.com",
"3d.live.com",
"api.search.live.com",
"beta.search.live.com",
"cnweb.search.live.com",
"ditu.live.com",
"farecast.live.com",
"image.live.com",
"images.live.com",
"local.live.com.au",
"localsearch.live.com",
"ls4d.search.live.com",
"mail.live.com",
"mapindia.live.com",
"local.live.com",
"maps.live.com",
"maps.live.com.au",
"mindia.live.com",
"news.live.com",
"origin.cnweb.search.live.com",
"preview.local.live.com",
"search.live.com",
"test.maps.live.com",
"video.live.com",
"videos.live.com",
"virtualearth.live.com",
"wap.live.com",
"webmaster.live.com",
"www.local.live.com.au",
"www.maps.live.com.au",
"webmasters.live.com",
"ecn.dev.virtualearth.net",
"www.bing.com"
],
"issuer": "Microsoft Azure RSA TLS Issuing CA 04",
"validFrom": 1718784850,
"validTo": 1734336850,
"signedCertificateTimestampList": [],
"certificateTransparencyCompliance": "unknown",
"serverSignatureAlgorithm": 2052,
"encryptedClientHello": false
}
},
"hasExtraInfo": false,
"frameId": "D6679A9F699EE881BE059AEE008B5F07"
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.63",
"timestamp": 1890151.722847,
"dataLength": 106312,
"encodedDataLength": 0
}
},
{
"method": "Network.dataReceived",
"params": {
"requestId": "98243.63",
"timestamp": 1890151.724572,
"dataLength": 254720,
"encodedDataLength": 0
}
},
{
"method": "Network.loadingFinished",
"params": {
"requestId": "98243.63",
"timestamp": 1890151.723542,
"encodedDataLength": 0
}
},
{
"method": "Network.requestWillBeSent",
"params": {
"requestId": "98243.64",
"loaderId": "DC2DB00F1A4F0A391C48E404FF168637",
"documentURL": "https://cn.bing.com/",
"request": {
"url": "https://cn.bing.com/rp/ZDuP1RxmIvW4zmuvz53att_oXdo.br.js",
"method": "GET",
"headers": {
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-mobile": "?0",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"Referer": "https://cn.bing.com/",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\""
},
"mixedContentType": "none",
"initialPriority": "Low",
"referrerPolicy": "strict-origin-when-cross-origin",
"isSameSite": true
},
"timestamp": 1890151.734865,
"wallTime": 1720670453.154086,
"initiator": {
"type": "script",
"stack": {
"callFrames": [
{
"functionName": "st",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 10818
},
{
"functionName": "fi",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 9301
},
{
"functionName": "et",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 9479
},
{
"functionName": "ft",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 9398
},
{
"functionName": "",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 9336
},
{
"functionName": "ht",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 11036
},
{
"functionName": "r.onreadystatechange.r.onload",
"scriptId": "9",
"url": "https://cn.bing.com/rp/lVV08F1da0WpM29E8OkhXe0yr9o.br.js",
"lineNumber": 0,
"columnNumber": 10031
}
]
}
},
"redirectHasExtraInfo": false,
"type": "Script",
"frameId": "D6679A9F699EE881BE059AEE008B5F07",
"hasUserGesture": false
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.68",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230453.157055,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.955602,
"size": 92,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_UR",
"value": "QS=0&TQS=0",
"domain": ".bing.com",
"path": "/",
"expires": 1755230453.156905,
"size": 13,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/AS/Suggestions?pt=page.home&mkt=zh-CN&qry=&cp=0&css=1&zis=1&cvid=7F958877A0B44FF0AC2B4FE8D34C58D7",
":scheme": "https",
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==; SRCHHPGUSR=SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0; _UR=QS=0&TQS=0",
"priority": "u=1, i",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890151.757661
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.69",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230453.177486,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.955602,
"size": 92,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_UR",
"value": "QS=0&TQS=0",
"domain": ".bing.com",
"path": "/",
"expires": 1755230453.177337,
"size": 13,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/hp/api/v1/carousel?&format=json&ecount=24&efirst=0&",
":scheme": "https",
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"content-type": "application/json",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==; SRCHHPGUSR=SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0; _UR=QS=0&TQS=0",
"priority": "u=1, i",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890151.7588
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.70",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUID",
"value": "V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245813,
"size": 57,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHUSR",
"value": "DOB=20240711",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245827,
"size": 19,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_SS",
"value": "SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 39,
"httpOnly": false,
"secure": true,
"session": true,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_HPVN",
"value": "CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==",
"domain": ".bing.com",
"path": "/",
"expires": 1755230453.177486,
"size": 328,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHHPGUSR",
"value": "SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.955602,
"size": 92,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_UR",
"value": "QS=0&TQS=0",
"domain": ".bing.com",
"path": "/",
"expires": 1755230453.177337,
"size": 13,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
}
],
"headers": {
":authority": "cn.bing.com",
":method": "GET",
":path": "/hp/api/v1/trivia?format=json&id=HPQuiz_20240711_GangiSicily&",
":scheme": "https",
"accept": "*/*",
"accept-encoding": "gzip, deflate, br, zstd",
"content-type": "application/json",
"cookie": "MUID=27EF5FA852976BB80EDC4B1153CD6A16; MUIDB=27EF5FA852976BB80EDC4B1153CD6A16; _EDGE_S=F=1&SID=33B9E8440A736F860399FCFD0B296E85; _EDGE_V=1; SRCHD=AF=NOFORM; SRCHUID=V=2&GUID=DABD9AEFD0EF404A97FAEEAF01A37C24&dmnchg=1; SRCHUSR=DOB=20240711; _SS=SID=33B9E8440A736F860399FCFD0B296E85; _HPVN=CS=eyJQbiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiUCJ9LCJTYyI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiSCJ9LCJReiI6eyJDbiI6MSwiU3QiOjAsIlFzIjowLCJQcm9kIjoiVCJ9LCJBcCI6dHJ1ZSwiTXV0ZSI6dHJ1ZSwiTGFkIjoiMjAyNC0wNy0xMVQwMDowMDowMFoiLCJJb3RkIjowLCJHd2IiOjAsIlRucyI6MCwiRGZ0IjpudWxsLCJNdnMiOjAsIkZsdCI6MCwiSW1wIjoxLCJUb2JuIjowfQ==; SRCHHPGUSR=SRCHLANG=zh-Hans&BRW=NOTP&BRH=S&CW=800&CH=600&SCW=800&SCH=600&DPR=1.0&UTC=480&DM=0; _UR=QS=0&TQS=0",
"priority": "u=1, i",
"referer": "https://cn.bing.com/",
"sec-ch-ua": "\"Not/A)Brand\";v=\"8\", \"Chromium\";v=\"126\", \"HeadlessChrome\";v=\"126\"",
"sec-ch-ua-arch": "\"arm\"",
"sec-ch-ua-bitness": "\"64\"",
"sec-ch-ua-full-version": "\"126.0.6478.126\"",
"sec-ch-ua-full-version-list": "\"Not/A)Brand\";v=\"8.0.0.0\", \"Chromium\";v=\"126.0.6478.126\", \"HeadlessChrome\";v=\"126.0.6478.126\"",
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "\"\"",
"sec-ch-ua-platform": "\"macOS\"",
"sec-ch-ua-platform-version": "\"14.2.1\"",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/126.0.6478.126 Safari/537.36"
},
"connectTiming": {
"requestTime": 1890151.75903
},
"clientSecurityState": {
"initiatorIsSecureContext": true,
"initiatorIPAddressSpace": "Public",
"privateNetworkRequestPolicy": "PreflightWarn"
},
"siteHasCookieInOtherPartition": false
}
},
{
"method": "Network.requestWillBeSentExtraInfo",
"params": {
"requestId": "98243.71",
"associatedCookies": [
{
"cookie": {
"name": "MUID",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.244094,
"size": 36,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "MUIDB",
"value": "27EF5FA852976BB80EDC4B1153CD6A16",
"domain": "cn.bing.com",
"path": "/",
"expires": 1754366452.245748,
"size": 37,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_S",
"value": "F=1&SID=33B9E8440A736F860399FCFD0B296E85",
"domain": ".bing.com",
"path": "/",
"expires": -1,
"size": 47,
"httpOnly": true,
"secure": false,
"session": true,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "_EDGE_V",
"value": "1",
"domain": ".bing.com",
"path": "/",
"expires": 1754366452.245782,
"size": 8,
"httpOnly": true,
"secure": false,
"session": false,
"priority": "Medium",
"sameParty": false,
"sourceScheme": "Secure",
"sourcePort": 443
},
"blockedReasons": [],
"exemptionReason": "None"
},
{
"cookie": {
"name": "SRCHD",
"value": "AF=NOFORM",
"domain": ".bing.com",
"path": "/",
"expires": 1755230452.245796,
"size": 14,
"httpOnly": false,
"secure": true,
"session": false,
"sameSite": "None",
"priority": "Medium",
"sameParty":
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment