diff --git a/.gitignore b/.gitignore index 76e201b..729ddf8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,2 @@ -*.swp -npm-debug.log node_modules/ -package-lock.json +.swp diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 07cc301..0000000 --- a/.travis.yml +++ /dev/null @@ -1,3 +0,0 @@ -language: node_js -node_js: - - 17 diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index ff2d580..0000000 --- a/Dockerfile +++ /dev/null @@ -1,14 +0,0 @@ -FROM node:dubnium - -# Create app directory -RUN mkdir -p /usr/src/app -WORKDIR /usr/src/app - -# Install app dependencies -COPY package.json /usr/src/app/ -RUN npm install - -# Bundle app source -COPY . /usr/src/app - -ENTRYPOINT [ "/usr/src/app/bin/webpagetest" ] diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 68138cd..0000000 --- a/LICENSE +++ /dev/null @@ -1,22 +0,0 @@ -Copyright (c) 2013 Twitter Inc. -Copyright (c) 2020 Google Inc. -Copyright (c) 2020 Marcel Duran and other contributors - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/NOTICE b/NOTICE deleted file mode 100644 index fc10a95..0000000 --- a/NOTICE +++ /dev/null @@ -1,34 +0,0 @@ ----------- WebPagetest (https://github.com/WPO-Foundation/webpagetest) --------- - -Copyright (c) 2005-2010, AOL, LLC. All rights reserved. -Copyrights licensed under the BSD License. - ----------- xml2js (https://github.com/Leonidas-from-XIV/node-xml2js) ----------- - -Copyright 2010, 2011, 2012, 2013. All rights reserved. -Licensed under the MIT License. - ---------------- commander (https://github.com/tj/commander.js) ----------------- - -Copyright (c) 2011 TJ Holowaychuk . -Licensed under the MIT License. - ----------------- mocha (https://github.com/mochajs/mocha) ---------------------- - -Copyright (c) 2011-2020 OpenJS Foundation and contributors, https://openjsf.org -Licensed under the MIT License. - ---------------------- nock (https://github.com/nock/nock) ---------------------- - -Copyright (c) 2011-2019 Pedro Teixeira and other contributors -Licensed under the MIT License. - -------------------- csv (https://github.com/adaltas/node-csv) ------------------ - -Copyright (c) 2010 Adaltas -Licensed under the MIT License. - ------------------ entities (https://github.com/fb55/entities) ------------------ - -Copyright (c) Felix Böhm. All rights reserved. -Licensed under BSD 2-Clause "Simplified" License. diff --git a/README.md b/README.md deleted file mode 100644 index 7fbe1f6..0000000 --- a/README.md +++ /dev/null @@ -1,853 +0,0 @@ -

WebPageTest Logo

-

Learn about more WebPageTest API Integrations in our docs

- -# WebPageTest API Wrapper for NodeJS - - -[![NPM Version](https://img.shields.io/npm/v/webpagetest.svg?style=flat)](https://www.npmjs.org/package/webpagetest) -[![NPM Downloads](https://img.shields.io/npm/dm/webpagetest.svg?style=flat)](https://www.npmjs.org/package/webpagetest) - -WebPageTest API Wrapper is a [NPM](https://npmjs.org) package that wraps [WebPageTest](https://github.com/WPO-Foundation/webpagetest) API for [NodeJS](https://nodejs.org) as a module and a command-line tool. - -For a better understanding of WebPageTest API Wrapper, here are some sample [Node Recipies](https://github.com/WebPageTest/WebPageTest-API-Recipes) - -## Getting started - -```bash -npm install webpagetest -g -``` - -## Basics - -### Command line - -```bash -webpagetest test https://docs.webpagetest.org/api/integrations/ -k YOURAPIKEY -``` - -### Docker - -#### Build - -```bash -docker build -t webpagetest-api . -``` - -#### Run - -```bash -docker run -it --rm webpagetest-api -k YOURAPIKEY test https://docs.webpagetest.org/api/integrations/ -``` - -### Module - -```javascript -const WebPageTest = require("webpagetest"); - -const wptServer = "www.webpagetest.org"; -const wpt = new WebPageTest(wptServer, "YOUR_API_KEY"); - -const siteToTest = "https://docs.webpagetest.org/api/integrations/"; -wpt.runTest(siteToTest, (err, data) => { - console.log(err || data); -}); -``` - -## Command Line - -### Help - -```bash -webpagetest --help -``` - -### Commands - -- **status** _[options] \_: check test status -- **results** _[options] \_: get test results -- **locations** _[options]_: list locations and the number of pending tests -- **testers** _[options]_: list testers status and details -- **test** _[options] \_: run test, _\_ can also be a path to a script file -- **testAndWait** _[options] \_: run test and waits for the result, _\_ can also be a path to a script file -- **testBalance** _[options]_: get remaining tests for the account -- **restart** _\_: restart test -- **cancel** _\_: cancel running/pending test -- **har** _\_: get the HTTP Archive (HAR) from test -- **pagespeed** _[options] \_: get the Google Page Speed results (if available) from test -- **utilization** _[options] \_: get the CPU, bandwidth and memory utilization data from test -- **request** _[options] <\id\>_: get the request data from test -- **timeline** _[options] \_: get the Chrome Developer Tools Timeline data (if available) from test -- **netlog** _[options] \_: get the Chrome Developer Tools Net log data (if available) from test -- **chrometrace** _[options] \_: get the Chrome Trace data (if available) from test -- **console** _[options] \_: get the browser console log data (if available) from test -- **testinfo** _\_: get test request info/details -- **history** _[days]_: get history of previously run tests -- **googlecsi** _[options] \_: get Google CSI data (Client Side Instrumentation) -- **response** _[options] \_: get response body for text resources -- **waterfall** _[options] \_: get the waterfall PNG image -- **screenshot** _[options] \_: get the fully loaded page screenshot in JPG format (PNG if in full resolution) -- **video** _[options] \_: create a video from _\_ (comma separated test ids) -- **player** _\_: get a html5 player for a video _\_ -- **listen** _[options]_ _[port]_: start webpagetest-api server on port _[7791_] -- **batch** _\_: run commands in batch, i.e. one command per line from _\_ in parallel - -### Options - -#### Common (works for all commands) - -- **-s, --server** _\_: the WPT server URL [https://www.webpagetest.org] -- **-d, --dryrun**: just return the RESTful API URL -- **-o, --out** _\_: place the output into \. Defaults to stdout -- **--http_method** _\_: the HTTP method to use (GET, POST) [GET] - -_The default WPT server can also be specified via environment variable `WEBPAGETEST_SERVER`_ - -#### Test (works for **test** command only) - -- **-l, --location** _\_: location to test from -- **-y, --connectivity** _\_: connectivity profile -- requires location to be specified -- (Cable|DSL|3GSlow|3G|3GFast|4G|LTE|Edge|2G|Dial|FIOS|Native|custom) [Cable] -- **-r, --runs** _\_: number of test runs [1] -- **-f, --first**: skip the Repeat View test -- **-v, --video**: capture video -- **-p, --private**: keep the test hidden from the test log -- **-L, --label** _\_: label for the test -- **-i, --onload**: stop test at document complete. typically, tests run until all activity stops -- **-S, --noscript**: disable javascript (IE, Chrome, Firefox) -- **-C, --clearcerts**: clear SSL certificate caches -- **-R, --ignoressl**: ignore SSL certificate errors, e.g. name mismatch, self-signed certificates, etc -- **-T, --standards**: forces all pages to load in standards mode (IE only) -- **-u, --tcpdump**: capture network packet trace (tcpdump) -- **-O, --bodies**: save response bodies for text resources -- **-K, --keepua**: do not add PTST to the original browser User Agent string -- **-m, --dom** _\_: DOM element to record for sub-measurement -- **-N, --duration** _\_: minimum test duration in seconds -- **--injectScript** _\_: JavaScript to run after the document has started loading -- **-E, --tester** _\_: run the test on a specific PC (name must match exactly or the test will not run) -- **-W, --mobile**: (experimental) emulate mobile browser: Chrome mobile user agent, 640x960 screen, 2x scaling and fixed viewport (Chrome only) -- **--device** _\_: device name from [mobile_devices.ini](https://github.com/WPO-Foundation/webpagetest/blob/master/www/settings/mobile_devices.ini) to use for mobile emulation (only when --mobile is specified to enable emulation and only for Chrome) -- **-M, --timeline**: capture Developer Tools Timeline (Chrome only) -- **-J, --callstack**: set between 1-5 to include the JS call stack. must be used in conjunction with timeline (increases overhead) (Chrome only) -- **-q, --chrometrace**: capture chrome trace (about://tracing) (Chrome only) -- **--tracecategories** _\\>_: trace categories (when chrometrace enabled) (Chrome only) -- **-G, --netlog**: capture Network Log (Chrome only) -- **-Q, --datareduction**: enable data reduction on Chrome 34+ Android (Chrome only) -- **-x, --useragent** _\_: custom user agent string (Chrome only) -- **-X, --cmdline** _\_: use a list of custom command line switches (Chrome only) -- **-g, --login** _\_: username for authenticating tests (http authentication) -- **-w, --password** _\_: password for authenticating tests (http authentication) -- **-t, --sensitive**: discard script and http headers in the result -- **-H, --noheaders**: disable saving of the http headers (as well as browser status messages and CPU utilization) -- **-b, --block** _\_: space-delimited list of urls to block (substring match) -- **-Z, --spof** _\_: space-delimited list of domains to simulate failure by re-routing to blackhole.webpagetest.org to silently drop all requests -- **-c, --custom** _\_: execute arbitrary javascript at the end of a test to collect custom metrics -- **-a, --authtype** _\_: type of authentication: 0 = Basic, 1 = SNS [0] -- **-n, --notify** _\_: e-mail address to notify with the test results -- **-B, --pingback** _\_: URL to ping when the test is complete (the test ID will be passed as an "id" parameter) -- **-D, --bwdown** _\_: download bandwidth in Kbps (used when specifying a custom connectivity profile) -- **-U, --bwup** _\_: upload bandwidth in Kbps (used when specifying a custom connectivity profile) -- **-bw, --browserwidth** _\_: Browser window width (in display pixels) -- **-bh, --browserheight** _\_: Browser window height (in display pixels) -- **-vh, --viewportheight** _\_: Viewport Height in css pixels -- **-vw, --viewportwidth** _\_: Viewport Width in css pixels -- **-dpr, --devicetopixelratio** _\_: Device To Pixel Ratio -- **-au, --appendua** _\_: String to append to the user agent string. This is in addition to the default PTST/ver string -- **-tt, --testtype** _\_: For running alternative test types, can specify traceroute or lighthouse -- **-pr, --profiler** _\_: Set to 1 to enable the V8 sampling profiler (Chromium only) -- **-avif, --disableAVIF** _\_: Set to 1 to disable AVIF support (Chromium 88+) -- **-webp, --disableWEBP** _\_: Set to 1 to disable WEBP support (Chromium 88+) -- **-jxl, --disableJXL** _\_: Set to 1 to disable JXL support (Chromium 88+) -- **-dts, --dtShaper** _\_: Set to 1 to use Chrome's built-in traffic-shaping instead of the packet-level netem shaping usually used by the test agents -- **-Y, --latency** _\_: first-hop Round Trip Time in ms (used when specifying a custom connectivity profile) -- **-P, --plr** _\_: packet loss rate - percent of packets to drop (used when specifying a custom connectivity profile) -- **-z, --noopt**: disable optimization checks (for faster testing) -- **-I, --noimages**: disable screen shot capturing -- **-F, --full**: save a full-resolution version of the fully loaded screen shot as a PNG -- **-j, --jpeg** _\_: jpeg compression level (30-100) for the screen shots and video capture -- **-A, --medianvideo**: store the video from the median run when capturing video is enabled -- **--htmlbody**: save the content of only the base HTML response -- **--tsview** _\_: test name to use when submitting results to tsviewdb (for private instances that have integrated with tsviewdb) -- **--tsviewconfigs** _\_: configs to use when submitting results to tsviewdb (for private instances that have integrated with tsviewdb) -- **--affinity** _\_: string to hash test to a specific test agent. tester will be picked by index among available testers -- **--priority** _\_: change test priority (0-9) [enforced by API key, otherwise 5] -- **--continuous**: capture video continuously (unstable/experimental, may cause tests to fail) -- **--spdy3**: force SPDY version 3 (Chrome only) -- **--swrender**: force software rendering, disable GPU acceleration (Chrome only) -- **--poll** _\_: poll for results after test is scheduled at every seconds [5] -- **--wait** _\_: wait for test results informed by agent once complete listening on : [hostname:first port available above 8000] -- **--timeout** _\_: timeout for polling and waiting results [no timeout] -- **--lighthouse**: perform lighthouse test (Chrome only, Linux agent only) -- **-thc, --throttleCPU** _\_: custom cpu throttle - -#### API Key (works for **test**, **restart**,**locations**, **testBalance** and **cancel** commands) - -- **-k, --key** _\_:API key (if assigned). Contact the WebPageTest server administrator for a key if required or request an API key for limited testing at [webpagetest.org/getkey.php](https://www.webpagetest.org/getkey.php) - -#### Request (works for **status**, **results**, **locations**, **testers** and **test** commands) - -- **-e, --request** _\_: echo request ID, useful to track asynchronous requests - -#### Results (works for **results** and **test** commands) - -- **-b, --breakdown**: include the breakdown of requests and bytes by mime type -- **-D, --domains**: include the breakdown of requests and bytes by domain -- **-p, --pagespeed**: include the PageSpeed score in the response (may be slower) -- **-R, --requests**: include the request data in the response (slower and results in much larger responses) -- **-m, --median** _\_: set the metric used to calculate median for multiple runs tests [loadTime] -- **--medianrun** _\_: set the run used for median for multiple runs tests [median] -- **-S, --specs** _\_: set the specs for performance test suite -- **-r, --reporter** _\_: set performance test suite reporter output: [dot]|spec|tap|xunit|list|progress|min|nyan|landing|json|doc|markdown|teamcity - -#### Run (works for **pagespeed**, **utilization**, **request**, **timeline**, **netlog**, **chrometrace**, **console**, **googlecsi**, **response**, **waterfall** and **screenshot** commands) - -- **-r, --run** _\_: which run number on a multiple runs test [1] -- **-c, --cached**: get the Repeat View (cached view) instead of default First View (primed cache) - -#### Image (works for **waterfall** and **screenshot** commands) - -- **-t, --thumbnail**: get the thumbnail of actual image -- **-u, --uri**: return the base64 string representation (inline) of actual image - -#### Screenshot (works for **screenshot** command only) - -- **-f, --full**: get full resolution screenshot in PNG format if available -- **-n, --render**: get the page screenshot at the Start Render point (i.e.: when something was first displayed on screen) -- **-p, --complete**: get the page screenshot at the Document Complete point (i.e.: when window.onload was fired) - -#### Waterfall (works for **waterfall** command only) - -- **-T, --type** _\_: set the chart type: waterfall or connection [waterfall] -- **-M, --mime**: set chart coloring by MIME type [false] -- **-w, --width** _\_: chart image width in px (300-2000) [930] -- **-m, --max** _\_: set maximum time in seconds [automatic] -- **-R, --requests** _\_: filter requests (e.g.:1,2,3,4-9,8) [all] -- **-C, --nocpu**: hide CPU utilization [false] -- **-b, --nobandwidth**: hide bandwidth utilization [false] -- **-e, --noellipsis**: hide ellipsis (...) for missing items [false] -- **-l, --nolabels**: hide labels for requests (URL) [false] - -#### Video (works for **video** command only) - -- **-e, --end** _\_: frame comparison end point: [visual]=visually complete | all=last change | doc=document complete | full=fully loaded - -#### Response (works for **response** command only) - -- **-R, --request** _\_: the request number [1] - -#### Listen (works for **listen** command only) - -- **-k, --key** _\_: private key file to use for SSL -- **-c, --cert** _\_: public x509 certificate file to use for SSL - -### Examples - -#### 1. Get API available locations - -```bash -$ webpagetest locations -k YOURAPIKEY -``` - -```javascript -{ - "response": { - "statusCode": 200, "statusText": "Ok", - "data": { - "location": [ - ... - { - "id": "SanJose_IE9", - "Label": "San Jose, CA USA (IE 9,Chrome,Firefox)", - "location": "SanJose_IE9", - "Browser": "IE 9", - "PendingTests": { - "p1": 0, "p2": 0, "p3": 0, "p4": 0, "p5": 2, "p6": 2, "p7": 0, - "p8": 0, "p9": 0, "Total": 7, "HighPriority": 2, "LowPriority": 4, - "Testing": 1, "Idle": 0 - } - }, - ... - ] - } - } -} -``` - -#### 2. Run test on https://docs.webpagetest.org/api/integrations/ from San Jose on IE9 - -```bash -webpagetest test https://docs.webpagetest.org/api/integrations/ -k YOURAPIKEY --location SanJose_IE9 -``` - -```javascript -{ - "statusCode": 200, - "statusText": "Ok", - "data": { - "testId": "121025_PT_N8K", - "ownerKey": "868cb2813a0f376a977dd1a24ab041b4f12361b3", - "jsonUrl": "https://www.webpagetest.org/results.php?test=121025_PT_N8K&f=json", - "xmlUrl": "https://www.webpagetest.org/xmlResult.php?test=121025_PT_N8K", - "userUrl": "https://www.webpagetest.org/results.php?test=121025_PT_N8K", - "summaryCSV": "https://www.webpagetest.org/csv.php?test=121025_PT_N8K", - "detailCSV": "https://www.webpagetest.org/csv.php?test=121025_PT_N8K&requests=1" - } -} -``` - -#### 3. Check current test status - -```bash -webpagetest status 121025_PT_N8K -k YOURAPIKEY -``` - -```javascript -{ - "statusCode": 101, - "statusText": "Test Pending", - "data": { - "statusCode": 101, - "statusText": "Test Pending", - "testId": "121025_PT_N8K", - "runs": 1, - "fvonly": 0, - "location": "SanJose_IE9" - } -} -``` - -#### 4. Get test results - -```bash -webpagetest results 121025_PT_N8K -k YOURAPIKEY -``` - -```javascript -{ - "response": { - "statusCode": 200, "statusText": "Ok", - "data": { - "testId": "121025_PT_N8K", - "summary": "https://www.webpagetest.org/result/121025_PT_N8K/", - "testUrl": "https://docs.webpagetest.org/api/integrations/", - "location": "SanJose_IE9", - "connectivity": "DSL", - "bwDown": 1500, "bwUp": 384, "latency": 50, "plr": 0, - "completed": "Thu, 25 Oct 2012 23:42:11 +0000", - "runs": 1, "successfulFVRuns": 1, - "average": { - "firstView": { - "loadTime": 3942, "TTFB": 1518, - "bytesIn": 963405, "bytesInDoc": 431612, - "requests": 32, "requestsDoc": 19, - "render": 2509, "fullyLoaded": 7765, - "docTime": 3942, "domTime": 0, - "titleTime": 1641, "avgRun": 1 - } - }, - ... - } - } -} -``` - - - -#### 5. Get remaining tests count for the account - -```bash -webpagetest testBalance -k YOURAPIKEY -``` - -```javascript -{ - "data": { - "remaining": 1175 - } -} -``` - -#### Run test on https://docs.webpagetest.org/api/integrations/ and poll results every 5 seconds timing out in 60 seconds - -```bash -webpagetest test https://docs.webpagetest.org/api/integrations/ --poll 5 --timeout 60 -``` - -#### Or run test on https://docs.webpagetest.org/api/integrations/ and wait for results listening on localhost\* port 8000\*\* - -```bash -webpagetest test https://docs.webpagetest.org/api/integrations/ --wait 8000 -``` - -```javascript -{ - "response": { - "statusCode": 200, "statusText": "Ok", - "data": { - "testId": "121025_PT_N8K", - "testUrl": "https://docs.webpagetest.org/api/integrations/", - ... - "median": { - "firstView": { - "loadTime": 3942, "TTFB": 1518, - "render": 2509, "fullyLoaded": 7765, - ... - } - }, - ... - } - } -} -``` - -_\* hostname and port are optional, defaults to \:\<8000\>_ -_\*\* localhost and port must be reacheable from WebPageTest server_ - -## Module - -Methods and options (including the one letter shorthands) are the same when using as a Node module, however a more verbose version of both commands (methods) and options (parameters) are available and encouraged to use for code clarity. - -### Methods - -- `getTestStatus(id, options, callback)` -- `getTestResults(id, options, callback)` -- `getLocations(options, callback)` -- `getTesters(options, callback)` -- `getTestBalance(options, callback)` -- `runTest(url_or_script, options, callback)` -- `runTestAndWait(url_or_script, options, callback)` -- `restartTest(id, options, callback)` -- `cancelTest(id, options, callback)` -- `getHARData(id, options, callback)` -- `getPageSpeedData(id, options, callback)` -- `getUtilizationData(id, options, callback)` -- `getRequestData(id, options, callback)` -- `getTimelineData(id, options, callback)` -- `getNetLogData(id, options, callback)` -- `getChromeTraceData(id, options, callback)` -- `getConsoleLogData(id, options, callback)` -- `getTestInfo(id, options, callback)` -- `getHistory(days, options, callback)` -- `getGoogleCsiData(id, options, callback)` -- `getResponseBody(id, options, callback)` -- `getWaterfallImage(id, options, callback)` -- `getScreenshotImage(id, options, callback)` -- `createVideo(tests, options, callback)` -- `getEmbedVideoPlayer(id, options, callback)` -- `listen(port, options, callback)` -- `scriptToString(script)` - -### Parameters - -- **id**: test ID string _required_ -- **options**: parameters object _optional_, see below -- **callback**: the callback `(error, data)` _optional=> _ -- **url_or_script**: decoded url or script string _required_ -- **port**: port number _optional_ \[default: 7791\] -- **script**: script array in the format: - -```javascript -[ - {command1: 'value1'}, - {command2: 123}, - {command3: ['value1', 'value2', ... , 'valueN']}, - ... - 'commandN'} -] -``` - -#### Notes - -- `getWaterfallImage` and `getScreenshotImage` callback function has a third parameter `info` which is an object with `{type: 'image/jpeg or png', encoding: 'utf8 or binary'}` -- `scriptToString` script array values 1-N are optional. e.g: - -```javascript -const script = wpt.scriptToString([ - { logData: 0 }, - { navigate: "http://foo.com/login" }, - { logData: 1 }, - { setValue: ["name=username", "johndoe"] }, - { setValue: ["name=password", "12345"] }, - { submitForm: "action=http://foo.com/main" }, - "waitForComplete", -]); - -wpt.runTest(script, (err, data) => { - console.log(err || data); -}); -``` - -### Options - -#### Common (works for all methods with `options` parameter) - -- **dryRun**: _Boolean_, if `true`, method does not make an actual request to the API Server but rather returns an object with `url` which contains the actual URL to make the GET request to WebPageTest API Server -- **server**: _String_, if specified, overrides the WebPageTest server informed in the constructor only for that method call -- **http_method**: _String_, if specified, overrides the HTTP method in the constructor only for that method call (GET, POST) [GET] - -#### Test (works with `runTest` and `runTestAndWait`) - -- **location**: _String_, location to test from -- **connectivity**: _String_, connectivity profile -- requires location to be specified -- (Cable|DSL|3GSlow|3G|3GFast|4G|LTE|Edge|2G|Dial|FIOS|Native|custom) [Cable] -- **runs**: _Number_, number of test runs [1] -- **firstViewOnly**: _Boolean_, skip the Repeat View test -- **video**: _Boolean_, capture video -- **private**: _Boolean_, keep the test hidden from the test log -- **label**: _String_, label for the test -- **stopAtDocumentComplete**: _Boolean_, stop test at document complete. typically, tests run until all activity stops -- **disableJavaScript**: _Boolean_, disable JavaScript (IE, Chrome, Firefox) -- **clearCerts**: _Boolean_, clear SSL certificate caches -- **ignoreSSL**: _Boolean_, ignore SSL certificate errors, e.g. name mismatch, self-signed certificates, etc -- **disableCompatibilityView**: _Boolean_, forces all pages to load in standards mode (IE only) -- **tcpDump**: _Boolean_, capture network packet trace (tcpdump) -- **saveResponseBodies**: _Boolean_, save response bodies for text resources -- **keepOriginalUserAgent**: _Boolean_, do not add PTST to the original browser User Agent string -- **domElement**: _String_, DOM element to record for sub-measurement -- **minimumDuration**: _Number_, minimum test duration in seconds -- **tester**: _String_, run the test on a specific PC (name must match exactly or the test will not run) -- **emulateMobile**: _Boolean_, (experimental) emulate mobile browser: Chrome mobile user agent, 640x960 screen, 2x scaling and fixed viewport (Chrome only) -- **device**: _String_, device name from [mobile_devices.ini](https://github.com/WPO-Foundation/webpagetest/blob/master/www/settings/mobile_devices.ini) to use for mobile emulation (only when emulateMobile=true is specified to enable emulation and only for Chrome) -- **timeline**: _Boolean_, capture Developer Tools Timeline (Chrome only) -- **timelineCallStack**: _Boolean_, set between 1-5 to include the JS call stack. must be used in conjunction with timeline (increases overhead) (Chrome only) -- **chromeTrace**: _Boolean_, capture chrome trace (about://tracing) (Chrome only) -- **netLog**: _Boolean_, capture Network Log (Chrome only) -- **dataReduction**: _Boolean_, enable data reduction on Chrome 34+ Android (Chrome only) -- **userAgent**: _String_, custom user agent string (Chrome only) -- **commandLine**: _String_, use a list of custom command line switches (Chrome only) -- **login**: _String_, username for authenticating tests (http authentication) -- **password**: _String_, password for authenticating tests (http authentication) -- **sensitive**: _Boolean_, discard script and http headers in the result -- **disableHTTPHeaders**: _Boolean_, disable saving of the http headers (as well as browser status messages and CPU utilization) -- **block**: _String_, space-delimited list of urls to block (substring match) -- **spof**: _String_, space-delimited list of domains to simulate failure by re-routing to blackhole.webpagetest.org to silently drop all requests -- **customMetrics**: _String_, execute arbitrary JavaScript at the end of a test to collect custom metrics -- **authenticationType**: _Number_, type of authentication: 0 = Basic, 1 = SNS [0] -- **notifyEmail**: _String_, e-mail address to notify with the test results -- **pingback**: _String_, URL to ping when the test is complete (the test ID will be passed as an "id" parameter) -- **bandwidthDown**: _String_, download bandwidth in Kbps (used when specifying a custom connectivity profile) -- **bandwidthUp**: _String_, upload bandwidth in Kbps (used when specifying a custom connectivity profile) -- **browserwidth**: _String_, Browser window width (in display pixels) -- **browserheight**: _String_, Browser window height (in display pixels) -- **viewportheight**: _String_, Viewport Height in css pixels -- **viewportwidth**: _String_, Viewport Width in css pixels -- **devicetopixelratio**: _String_, Device To Pixel Ratio -- **appendua**: _String_, String to append to the user agent string. This is in addition to the default PTST/ver string -- **testtype**: _String_, For running alternative test types, can specify traceroute or lighthouse -- **profiler**: _Number_, Set to 1 to enable the V8 sampling profiler (Chromium only) -- **disableAVIF**: _Number_, Set to 1 to disable AVIF support (Chromium 88+) -- **disableWEBP**: _Number_, Set to 1 to disable WEBP support (Chromium 88+) -- **disableJXL**: _Number_, Set to 1 to disable JpegXL support (Chromium 88+) -- **dtShaper**: _Number_, Set to 1 to use Chrome's built-in traffic-shaping instead of the packet-level netem shaping usually used by the test agents -- **latency**: _String_, first-hop Round Trip Time in ms (used when specifying a custom connectivity profile) -- **packetLossRate**: _Number_, packet loss rate - percent of packets to drop (used when specifying a custom connectivity profile) -- **disableOptimization**: _Boolean_, disable optimization checks (for faster testing) -- **disableScreenshot**: _Boolean_, disable screen shot capturing -- **fullResolutionScreenshot**: _Boolean_, save a full-resolution version of the fully loaded screen shot as a PNG -- **jpegQuality**: _Number_, jpeg compression level (30-100) for the screen shots and video capture -- **medianVideo**: _Boolean_, store the video from the median run when capturing video is enabled -- **htmlBody**: _Boolean_, save the content of only the base HTML response -- **tsView**: _String_, test name to use when submitting results to tsviewdb (for private instances that have integrated with tsviewdb) -- **tsViewConfigs**: _String_, configs to use when submitting results to tsviewdb (for private instances that have integrated with tsviewdb) -- **affinity**: _String_, string to hash test to a specific test agent. tester will be picked by index among available testers -- **priority**: _Number_, change test priority (0-9) [enforced by API key, otherwise 5] -- **blockAds**: _Boolean_, block ads defined by http://adblockplus.org -- **continuousVideoCapture**: _Boolean_, capture video continuously (unstable/experimental, may cause tests to fail) -- **forceSpdy3**: _Boolean_, force SPDY version 3 (Chrome only) -- **forceSoftwareRendering**: _Boolean_, force software rendering, disable GPU acceleration (Chrome only) -- **pollResults**: _Number_, poll for results after test is scheduled at every seconds [5] -- **waitResults**: _String_, wait for test results informed by agent once complete listening on : [hostname:first port available above 8000] -- **timeout**: _String_, timeout for polling and waiting results [no timeout] -- **lighthouse**: _Boolean_, perform lighthouse test (Chrome only, Linux agent only) -- **throttleCPU**: _Number_, custom cpu throttling - -#### API Key (works for `runTest`, `runTestAndWait`, `restartTest` and `cancelTest` methods) - -- **key**: _String_, API key (if assigned). Contact the WebPageTest server administrator for a key if required - -#### Request (works for `getTestStatus` `getResults` `getLocations` `getTesters` `runTest` and `runTestAndWait` methods) - -- **requestId**: _String_, echo request ID, useful to track asynchronous requests - -#### Results (works for `getResults` `runTest` and `runTestAndWait` methods) - -- **breakDown**: _Boolean_, include the breakdown of requests and bytes by mime type -- **domains**: _Boolean_, include the breakdown of requests and bytes by domain -- **pageSpeed**: _Boolean_, include the PageSpeed score in the response (may be slower) -- **requests**: _Boolean_, include the request data in the response (slower and results in much larger responses) -- **medianMetric**: _String_, set the metric used to calculate median for multiple runs tests (default: loadTime) -- **specs**: _String_, set the specs for performance test suite -- **reporter**: _String_, set performance test suite reporter output: [dot]|spec|tap|xunit|list|progress|min|nyan|landing|json|doc|markdown|teamcity - -#### Run (works for `getPageSpeedData`, `getUtilizationData`, `getRequestData`, `getTimelineData`, `getNetLogData`, `getChromeTraceData`, `getConsoleLogData`, `getGoogleCsiData`, `getResponseBody`, `getWaterfallImage` and `getScreenshotImage` methods) - -- **run**: _Number_, the test run number for multiple runs tests (default: 1, first test) -- **repeatView**: _Boolean_, if `true` returns the repeat view (cached) data - -#### Image (works for `getWaterfallImage` and `getScreenshotImage` methods) - -- **thumbnail**: _Boolean_, returns the thumbnail of actual image -- **dataURI**: _Boolean_, returns the base64 string representation (inline) of actual image - -#### Screenshot (works for `getScreenshotImage` method only) - -- **fullResolution**: _Boolean_, returns the full resolution screenshot in PNG format if available -- **startRender**: _Boolean_, returns the page screenshot at the Start Render point (i.e.: when something was first displayed on screen) -- **documentComplete**: _Boolean_, returns the page screenshot at the Document Complete point (i.e.: when `window.onload` was fired) - -#### Waterfall (works for `getWaterfallImage` method only) - -- **chartType**: _String_, set the chart type: waterfall or connection [waterfall] -- **colorByMime**: _Boolean_, set chart coloring by MIME type [false] -- **chartWidth** _Number_: chart image width in px (300-2000) [930] -- **maxTime** _Number_: set maximum time in seconds [automatic] -- **requests** _String_: filter requests (e.g.:1,2,3,4-9,8) [all] -- **noCPU**: _Boolean_, hide CPU utilization [false] -- **noBandwidth**: _Boolean_, hide bandwidth utilization [false] -- **noEllipsis**: _Boolean_, hide ellipsis (...) for missing items [false] -- **noLabels**: _Boolean_, hide labels for requests (URL) [false] - -#### Video (works for `createVideo` method only) - -- **comparisonEndPoint** _String_: frame comparison end point: [visual]=visually complete | all=last change | doc=document complete | full=fully loaded - -#### Response (works for `getResponseBody` method only) - -- **request** _Number_: the request number [1] - -#### Listen (works for `listen` method only) - -- **key** _String_: private key file path to use for SSL -- **cert** _String_: public x509 certificate file path to use for SSL - -#### Location (works for `getLocations` method only) - -- **allLocations** _Boolean_: if true, returns all available locations irrespective of API availability - -### Examples - -#### 1. Instantiating - -```javascript -const WebPageTest = require("webpagetest"); - -const wpt = new WebPageTest("my-wpt.foo.com"); // default: www.webpagetest.org -const wptPublic = new WebPageTest("www.webpagetest.org", "MY_API_KEY"); -``` - -#### 2. Get available locations - -```javascript -wpt.getLocations((err, data) => { - console.log(err || data); -}); -``` - -#### 3. Run test on https://docs.webpagetest.org/api/integrations/ from San Jose on IE9 - -```javascript -wpt.runTest( - "https://docs.webpagetest.org/api/integrations/", - { location: "SanJose_IE9" }, - (err, data) => { - console.log(err || data); - } -); -``` - -#### 4. Check current test status - -```javascript -wpt.getTestStatus("121025_PT_N8K", (err, data) => { - console.log(err || data); -}); -``` - -#### 5. Get test results - -```javascript -wpt.getTestResults("121025_PT_N8K", (err, data) => { - console.log(err || data); -}); -``` - -#### 6. Get test waterfall thumbnail from repeat view as data URI - -```javascript -wpt.getWaterfallImage( - "121025_PT_N8K", - { - thumbnail: true, - repeatView: true, - dataURI: true, - }, - (err, data, info) => { - console.log(err || data, info); - } -); -``` - -#### Run test on https://docs.webpagetest.org/api/integrations/ and poll results every 5 seconds timing out in 60 seconds - -```javascript -wpt.runTest( - "https://docs.webpagetest.org/api/integrations/", - { pollResults: 5, timeout: 60 }, - (err, data) => { - console.log(err || data); - } -); -``` - -#### Or run test on https://docs.webpagetest.org/api/integrations/ and wait results listening on localhost\* port 8000\*\* - -```javascript -wpt.runTest( - "https://docs.webpagetest.org/api/integrations/", - { waitResults: "localhost:8000" }, - (err, data) => { - console.log(err || data); - } -); -``` - -_\* hostname and port are optional, defaults to \:\<8000\>_ - -_\*\* localhost:8000 must be reacheable from WebPageTest server_ - -## Server mode - -WebPageTest API Wrapper comes with a handy RESTful API proxy - -### Command Line - -```bash -webpagetest listen 8080 --server wpt.foo.com -``` - -```bash -server listening on port 8080 -http://localhost:8080 -``` - -```bash -curl http://localhost:8080/help -curl http://localhost:8080/test/webpagetest.org/?location=SanJose_IE9 -``` - -```bash -webpagetest listen 8443 --key key.pem --cert cert.pem --server wpt.foo.com -``` - -```bash -server listening on port 8443 -https://localhost:8443 -``` - -#### Notes - -- port _8080_ is optional, default port is _7791_ -- `wpt.foo.com` is overriding the default `www.webpagetest.org` server but can still be overridden with `server` option -- when _--key_ and _--cert_ are provided, HTTPS is used instead of default HTTP server - -### Module - -```javascript -const server = wpt.listen(8080, (err, data) => { - if (err) throw err; - console.log("listening on " + data.url); -}); // listen on port 8080 (optional), default port is 7791 - -setTimeout(() => { - server.close(() => { - console.log("server closed"); - }); -}, 10000); // wait for 10s before stop listening -``` - -## Batch - -Batch command is available as command line only and loads a batch file containing one WebPageTest CLI command with options per line. It runs all commands in parallel, but returns an array of results in order as they appear in the batch file once all results are ready. The exit status code is the sum of all individual commands' exit status code. - -By running - -```bash -webpagetest batch commands.txt -``` - -where `commands.txt` contains: - -```bash -test https://docs.webpagetest.org/api/integrations/ --first --location foo -test https://docs.webpagetest.org/api/integrations/ --first --location bar -``` - -It schedules the 2 tests above returning an array of size 2 in the same order as in `commands.txt` file: - -```javascript -[ - { - "statusCode": 200, "statusText": "Ok", - "data": { - "testId": "130715_AB_C1D", - ... - } - }, - { - "statusCode": 200, "statusText": "Ok", - "data": { - "testId": "130715_CD_E2F", - ... - } - } -] -``` - -With exit status 0 in case none of commands returns an error: - -```bash -echo $? -0 -``` - -By running multiple sync tests, i.e. with either `--poll` or `--wait`, all tests are scheduled and results are polled or wait in parallel; meaning, if tests are set to run in different locations or same location with multiple agents, the final result might come together, but the result array will only return once _all_ tests are done. e.g.: - -`commands.txt`: - -```bash -test https://docs.webpagetest.org/api/integrations/ --first --location foo --poll --timeout 60 -test https://docs.webpagetest.org/api/integrations/ --first --location bar --poll --timeout 60 -``` - -## Test Specs (Continuous Integration) - -WebPageTest API Wrapper provides a simple seamless way to integrate WebPageTest with Continuous Integration tools. - -[See dedicated page](https://github.com/WebPageTest/webpagetest-api/wiki/Test-Specs) - -## Tests - -```bash -npm test -``` - -## Issues - -Have a bug/feature request? Please create an issue here on GitHub! - -https://github.com/WebPageTest/webpagetest-api/issues - -## Author - -**WebPageTest** - -- https://github.com/WebPageTest - -## License - -Copyright 2013 Twitter Inc. -Copyright 2020 Google Inc. -Copyright 2020 Marcel Duran and other contributors - -Licensed under the [MIT License](https://github.com/WebPageTest/webpagetest-api/raw/master/LICENSE) - ---- - -

Learn about more WebPageTest API Integrations in our docs

diff --git a/app.js b/app.js new file mode 100644 index 0000000..f0b55bb --- /dev/null +++ b/app.js @@ -0,0 +1,3 @@ +var WebPageTest = require('webpagetest'); +var wpt = new WebPageTest(); +wpt.listen(process.env.VCAP_APP_PORT || 3000); diff --git a/assets/images/recipe-banner.png b/assets/images/recipe-banner.png deleted file mode 100644 index ab5d500..0000000 Binary files a/assets/images/recipe-banner.png and /dev/null differ diff --git a/bin/webpagetest b/bin/webpagetest deleted file mode 100755 index 5c2c41c..0000000 --- a/bin/webpagetest +++ /dev/null @@ -1,309 +0,0 @@ -#!/usr/bin/env node - -/** - * Copyright (c) 2013, Twitter Inc. - * Copyright (c) 2020, Google Inc. - * Copyright (c) 2020, Marcel Duran and other contributors - * Released under the MIT License - */ - -var program = require('commander'), - fs = require('fs'), - WebPageTest = require('../lib/webpagetest'), - mapping = require('../lib/mapping'); - -var command, file, ret, - options = {}, - args = [], - results = [], - defaultServer = process.env.WEBPAGETEST_SERVER || - WebPageTest.defaultServer; - -// replace default values on descriptons -mapping.commands.listen.info = - mapping.commands.listen.info.replace('%s', WebPageTest.defaultListenPort); - -var output = function(data, exitStatus, preExit) { - process.stdout.write(data); - if (typeof preExit === 'function') { - preExit(); - } - process.exit(exitStatus || 0); -}; - -var formatData = function(err, data, info) { - var dataStr, - encoding = 'utf8'; - - if (err) { - data = {error: err}; - } else if (info) { - encoding = info.encoding; - if (encoding === 'binary') { - data = new Buffer.from(data, 'binary'); - type = info.type; - } else { - data = {type: info.type, data: data}; - } - } - - if (!(data instanceof Buffer)) { - try { - dataStr = JSON.stringify(data, null, 2); - } catch (ex) { - dataStr = JSON.stringify({ - data: data.toString(), - error: ex.message - }, null, 2); - } - } - - if (file) { - fs.writeFile(file, (dataStr || data), encoding, function writeFile(err) { - if (err) { - output(err.message, 1); - } - }); - } else { - output((dataStr || data), err ? 1 : 0); - } - - return data; -} - -function addOptions(prg, options, nokeyList) { - (options || []).forEach(function eachOption(option) { - var nokey = nokeyList && nokeyList.indexOf(option) > -1; - - Object.keys(option).forEach(function eachOpt(name) { - var opt = option[name], - openParam = '<', - closeParam = '>'; - - // bail shorthands - if (name == opt.key) { - return; - } - - if (opt.optional) { - openParam = '['; - closeParam = ']'; - } - - prg.option([ - !nokey && opt.key ? ('-' + opt.key + ', ') : ' ', - '--' + name, - opt.param ? (' ' + openParam + opt.param + closeParam) : '' - ].join(''), - name === 'server' ? opt.info.replace('%s', defaultServer) : opt.info - ); - }); - }); -} - -// global options -addOptions( - program.version(WebPageTest.version), - [mapping.options.common, { - 'out': { - key: 'o', - param: 'file', - info: 'place the output into . Defaults to stdout' - } - }] -); - -Object.keys(mapping.commands).forEach(function eachCommand(name) { - var param, - openParam = '<', - closeParam = '>', - cmd = mapping.commands[name]; - - function defaultAction(param, opts) { - command = cmd.name; - if (cmd.param) { - args.push(param); - } - if (cmd.options) { - options = mapping.setOptions(name, opts || param); - } - } - - var customActions = { - 'test': function(what, opts) { - // check for script file - if (fs.existsSync(what) && fs.statSync(what).isFile()) { - what = fs.readFileSync(what, 'utf8'); - } - - defaultAction(decodeURIComponent(what), opts); - if (options.specs && !program.batch) { - options.exitOnResults = true; - } - }, - 'results': function(id, opts) { - defaultAction(id, opts); - if (opts.specs && !program.dryrun && !program.batch) { - formatData = null; - } - }, - 'listen': function(port, opts) { - defaultAction(port, opts); - formatData = function customFormat(err, data) { - if (err) { - output(JSON.stringify({error: err}, null, 2), 1); - } else { - process.stderr.write('server listening on ' + data.url); - } - }; - } - }; - - // command with (optional) parameter - if (cmd.param) { - if (cmd.optional) { - openParam = '['; - closeParam = ']'; - } - param = [name, ' ', openParam, cmd.param, closeParam].join(''); - } else { - param = name; - } - - addOptions( - program - .command(param) - .description(cmd.info) - .action(customActions[name] || defaultAction), - cmd.options, - cmd.nokey - ); -}); - -function parseBatch(filename) { - var lines; - - try { - lines = (fs.readFileSync(filename, 'utf8') || '') - .split('\n') - .filter(function(line) {return line;}) - .map(function(line) {return line.split(' ');}) - .map(function(line) { - var tmp = []; - return line.reduce(function(prev, curr, index) { - if (/^[^\\]?['"]/.test(curr)) { - tmp.push(curr.slice(1)); - } else if (tmp.length) { - if (/[^\\]['"]$/.test(curr)) { - tmp.push(curr.slice(0, curr.length - 1)); - prev.push(tmp.join(' ')); - tmp = []; - } else { - tmp.push(curr); - } - } else { - prev.push(curr); - } - return prev; - }, ['', '']); - }); - } catch (err) { - output(err.message + '\n', 1); - } - - return lines; -} -//return console.log(parseBatch('batch.txt')); - -function batch(file) { - var accErr = 0, - count = 0, - originalFormatData = formatData, - originalOutput = output; - - function checkDone() { - count--; - if (!count) { - originalOutput( - results.length ? JSON.stringify(results, null, 2) : '', - accErr - ); - } - }; - - function checkError(err) { - accErr += err ? 1 : 0; - checkDone(); - } - - function aggregate(index, err, data, info) { - results[index] = originalFormatData(err, data, info); - checkError(err); - } - - program.batch = true; - var cmds = parseBatch(file); - if (!cmds) { - return; - } - count = cmds.length; - output = function(){}; - - cmds.forEach(function(cmd, index) { - program.parse(cmd); - formatData = options.specs ? checkError : aggregate.bind(null, index); - execCommand(); - cleanupProgram(); - }); -} - -function cleanupProgram() { - command = null; - options = {}; - args = []; - program.commands.forEach(function(c) { - c.options.forEach(function(o) { - delete c[o.long.slice(2)]; - }); - }); - delete program.server; - delete program.dryrun; - delete program.out; - delete program.http_method; -} - -function execCommand() { - var wpt = new WebPageTest(program.server || defaultServer, options.key); - - // options - if (options) { - options.dryRun = program.dryrun; - options.http_method = program.http_method; - args.push(options); - } - - // callback - if (formatData) { - args.push(formatData); - } - - file = program.out; - - wpt[command].apply(wpt, args); -} - -program - .command('batch ') - .description( - 'run commands in batch, i.e. one command per line from in parallel') - .action(batch); - -program.parse(process.argv); - -if (command) { - execCommand(); -} else if (!program.batch) { - output(program.helpInformation(), 1, function defaultHelp() { - program.emit('--help'); - }); -} diff --git a/lib/consts.js b/lib/consts.js deleted file mode 100644 index 1a6573f..0000000 --- a/lib/consts.js +++ /dev/null @@ -1,7 +0,0 @@ -const DEFAULT_POLL_VALUE = 60; -const POLL_LOWER_LIMIT = 20; - -module.exports = { - DEFAULT_POLL_VALUE, - POLL_LOWER_LIMIT -}; \ No newline at end of file diff --git a/lib/helper.js b/lib/helper.js deleted file mode 100644 index 2e0ab53..0000000 --- a/lib/helper.js +++ /dev/null @@ -1,287 +0,0 @@ -/** - * Copyright (c) 2013, Twitter Inc. - * Copyright (c) 2020, Google Inc. - * Copyright (c) 2020, Marcel Duran and other contributors - * Released under the MIT License - */ - -var xml2js = require('xml2js'), - url = require('url'), - os = require('os'), - csv = require('csv'), - entities = require('entities') - qs = require('querystring'); - -var parser = new xml2js.Parser({explicitArray: false, mergeAttrs: true}); - -var reNumber = /^[\.\+\-]?[\d\.]+$/, - reInvalidDec = /(?:\.\d*){2,}/, - reDec = /\./, - reLineBreak = /[\n\r]+/g, - reLastBreak = /\n$/, - reProtocol = /^https?:\/\//i, - reIp = /\d+\.\d+\.\d+\.\d+/, // 127.0.0.1 - - TAB = '\t', - NEWLINE = '\n'; - -function parseNumber(s) { - if (typeof s !== 'string' || !reNumber.test(s) || reInvalidDec.test(s)) { - return s; - } - - return reDec.test(s) ? parseFloat(s, 10) : parseInt(s, 10); -} - -function normalizeObj(root) { - if (typeof root === 'object') { - Object.keys(root).forEach(function(key) { - var value = root[key]; - if (typeof value === 'string') { - if (value.length === 0 || value === '\n') { - delete root[key]; - } else { - root[key] = parseNumber(value); - } - } else { - normalizeObj(value); - } - }); - } -} - -function xmlToObj(xml, callback) { - parser.parseString(xml, function (err, obj) { - if (err) { - callback(err); - } - - normalizeObj(obj); - callback(undefined, obj); - }); -} - -function svToObj(delimiter, headers, sv) { - var data, - start = 0, - obj = {}; - - delimiter = delimiter || ','; - - if (!sv) { - return {}; - } - - sv = sv.toString(); - // keep line breaks consistent as "\n" and remove the very last one - data = sv.replace(reLineBreak, '\n').replace(reLastBreak, '').split('\n'); - - if (!headers) { - headers = data[0].split(delimiter); - start = 1; - } - - // edge case: when response provides headers, 1st 2 rows should be ignored - if (data[0].split(delimiter)[3] === 'IP Address') { - start = 2; - } - - headers.forEach(function headersEach(header) { - obj[header] = []; - }); - - data.slice(start).forEach(function dataEach(row) { - row.split(delimiter).forEach(function rowEach(value, index) { - if (headers[index]) { - obj[headers[index]].push(parseNumber(value)); - } - }); - }); - - return obj; -} - -function csvParser(data, callback) { - csv.parse(data.toString(), { columns: true }, function(err, data) { - if (err) { - callback.bind(this, err); - } - csv.transform(data, function(row) { - var key, value; - for (key in row) { - value = row[key].replace(/|<\/b>/g, ''); - row[key] = entities.decodeHTML(value, 2); - } - return row; - }, callback.bind(this)); - }); -} -csvParser.async = true; - -// Net log has a buggy end of file, attempt to fix -function netLogParser(data) { - data = (data || '{}').toString(); - if (data.slice(data.length - 3) === ',\r\n') { - data = data.slice(0, data.length - 3) + ']}'; - } - - return JSON.parse(data); -} - -// Convert image (binary) into data URI (string) -function dataURI(data) { - return new Buffer.from(data || '', 'binary').toString('base64'); -} - -// Convert script objects into formatted string -function scriptToString(data) { - var script = []; - - data.forEach(function dataEach(step) { - var key, value; - - if (typeof step === 'string') { - script.push(step); - } else if (typeof step === 'object') { - key = [Object.keys(step)[0]]; - value = step[key]; - if (value !== undefined && value !== null && value !== '') { - key = key.concat(value); - } - script.push(key.join(TAB)); - } - }); - - return script.join(NEWLINE); -} - -// Build the RESTful API url call only -function dryRun(config, path, form) { - path = url.parse(path, true); - - if (config.method == "POST") { - return { - url: url.format({ - protocol: config.protocol, - hostname: config.hostname, - port: (config.port !== 80 && config.port !== 443 ? - config.port : undefined), - pathname: path.pathname, - }), - form: qs.stringify(form) - }; - } - - return { - url: url.format({ - protocol: config.protocol, - hostname: config.hostname, - port: (config.port !== 80 && config.port !== 443 ? - config.port : undefined), - pathname: path.pathname, - query: path.query - }) - }; -} - -// Normalize server config -function normalizeServer(server) { - // normalize hostname - if (!reProtocol.test(server)) { - server = 'http://' + server; - } - server = url.parse(server); - - return { - protocol: server.protocol, - hostname: server.hostname, - auth: server.auth, - pathname: server.pathname, - port: parseInt(server.port, 10) || (server.protocol === 'https:' ? 443 : 80) - }; -} - -// Normalize localhost and port -function localhost(local, defaultPort) { - // edge case when hostname:port is not informed via cli - if (local === undefined || local === 'true') { - local = [defaultPort]; - } else { - local = local.toString().split(':'); - } - - return { - hostname: reIp.test(local[0]) || isNaN(parseInt(local[0], 10)) && - local[0] ? local[0] : os.hostname(), - port: parseInt(local[1] || (!reIp.test(local[0]) && local[0]), 10) || - defaultPort - }; -} - -// Custom API response Error -function WPTAPIError(code, message) { - this.name = 'WPTAPIError'; - this.code = code || 0; - this.message = message || this.name; -} -WPTAPIError.prototype = new Error(); -WPTAPIError.prototype.constructor = WPTAPIError; - -// Set valid parameter in query -function setQuery(map, options, query) { - query = query || {}; - options = options || {}; - - map.options.forEach(function eachOpts(opt) { - Object.keys(opt).forEach(function eachOpt(key) { - var param = opt[key], - name = param.name, - value = options[name] || options[key]; - - if (value !== undefined && param.api) { - if (param.array) { - value = [].concat(value).join(' '); - } - query[param.api] = param.bool ? param.invert ? - (value ? 0 : 1) : (value ? 1 : 0) : value; - } - }); - }); - - return query; -} - -function deepClone(obj) { - var newObj, value, key; - - if (typeof obj !== "object" || obj === null) { - return obj; - } - - newObj = Array.isArray(obj) ? [] : {}; - - for (key in obj) { - value = obj[key]; - - // Recursively (deep) copy for nested objects, including arrays - newObj[key] = deepClone(value); - } - - return newObj; -} - -module.exports = { - xmlToObj: xmlToObj, - csvToObj: svToObj.bind(null, ',', false), - tsvToObj: svToObj.bind(null, '\t'), - csvParser: csvParser, - netLogParser: netLogParser, - scriptToString: scriptToString, - dataURI: dataURI, - dryRun: dryRun, - normalizeServer: normalizeServer, - localhost: localhost, - setQuery: setQuery, - WPTAPIError: WPTAPIError, - deepClone: deepClone -}; diff --git a/lib/mapping.js b/lib/mapping.js deleted file mode 100644 index 5908c77..0000000 --- a/lib/mapping.js +++ /dev/null @@ -1,1526 +0,0 @@ -/** - * Copyright (c) 2013, Twitter Inc. - * Copyright (c) 2020, Google Inc. - * Copyright (c) 2020, Marcel Duran and other contributors - * Released under the MIT License - */ - -var reBool = /^0|false|no|off$/i; - -var options = { - common: { - server: { - name: "server", - key: "s", - param: "server", - info: "the WPT server URL [%s]", - }, - dryrun: { - name: "dryRun", - key: "d", - bool: true, - info: "just return the RESTful API URL", - }, - http_method: { - name: "http_method", - param: "string", - info: "HTTP method to use for submitting the test (GET or POST) [GET]", - } - }, - test: { - location: { - name: "location", - key: "l", - api: "location", - param: "location", - info: "location to test from", - }, - - // Test Setting tab - connectivity: { - name: "connectivity", - key: "y", - api: "connectivity", - param: "profile", - info: "connectivity profile (Cable|DSL|3GSlow|3G|3GFast|4G|LTE|Edge|2G|Dial|FIOS|Native|custom) [Cable]", - }, - runs: { - name: "runs", - key: "r", - api: "runs", - param: "number", - info: "number of test runs [1]", - }, - first: { - name: "firstViewOnly", - key: "f", - api: "fvonly", - bool: true, - info: "skip the Repeat View test", - }, - video: { - name: "video", - key: "v", - api: "video", - bool: true, - info: "capture video", - }, - private: { - name: "private", - key: "p", - api: "private", - bool: true, - info: "keep the test hidden from the test log", - }, - label: { - name: "label", - key: "L", - api: "label", - param: "label", - info: "label for the test", - }, - - // Advanced tab - onload: { - name: "stopAtDocumentComplete", - key: "i", - api: "web10", - bool: true, - info: "stop test at document complete. typically, tests run until all activity stops", - }, - noscript: { - name: "disableJavaScript", - key: "S", - api: "noscript", - bool: true, - info: "disable JavaScript (IE, Chrome, Firefox)", - }, - clearcerts: { - name: "clearCerts", - key: "C", - api: "clearcerts", - bool: true, - info: "clear SSL certificate caches", - }, - ignoressl: { - name: "ignoreSSL", - key: "R", - api: "ignoreSSL", - bool: true, - info: "ignore SSL certificate errors, e.g. name mismatch, self-signed certificates, etc", - }, - standards: { - name: "disableCompatibilityView", - key: "T", - api: "standards", - bool: true, - info: "forces all pages to load in standards mode (IE only)", - }, - tcpdump: { - name: "tcpDump", - key: "u", - api: "tcpdump", - bool: true, - info: "capture network packet trace (tcpdump)", - }, - bodies: { - name: "saveResponseBodies", - key: "O", - api: "bodies", - bool: true, - info: "save response bodies for text resources", - }, - keepua: { - name: "keepOriginalUserAgent", - key: "K", - api: "keepua", - bool: true, - info: "do not add PTST to the original browser User Agent string", - }, - dom: { - name: "domElement", - key: "m", - api: "domelement", - param: "element", - info: "DOM element to record for sub-measurement", - }, - duration: { - name: "minimumDuration", - key: "N", - api: "time", - param: "seconds", - info: "minimum test duration in seconds", - }, - tester: { - name: "tester", - key: "E", - api: "tester", - param: "name", - info: "run the test on a specific PC (name must match exactly or the test will not run)", - }, - injectScript: { - name: "injectScript", - api: "injectScript", - param: "injectScript", - info: "JavaScript to run after the document has started loading", - }, - - // Chrome tab - mobile: { - name: "emulateMobile", - key: "W", - api: "mobile", - bool: true, - info: "(experimental) emulate mobile browser: Chrome mobile user agent, 640x960 screen, 2x scaling and fixed viewport (Chrome only)", - }, - device: { - name: "device", - api: "mobileDevice", - param: "string", - info: "device name from mobile_devices.ini to use for mobile emulation (only when mobile=1 is specified to enable emulation and only for Chrome)", - }, - timeline: { - name: "timeline", - key: "M", - api: "timeline", - bool: true, - info: "capture Developer Tools Timeline (Chrome only)", - }, - callstack: { - name: "timelineCallStack", - key: "J", - api: "timelineStack", - bool: true, - info: "set between 1-5 to include the JS call stack. must be used in conjunction with timeline (increases overhead) (Chrome only)", - valid: /[1-5]/, - }, - chrometrace: { - name: "chromeTrace", - key: "q", - api: "trace", - bool: true, - info: "capture chrome trace (about://tracing) (Chrome only)", - }, - tracecategories: { - name: "traceCategories", - api: "traceCategories", - param: "categories", - info: "trace categories (when chrometrace enabled) (Chrome only)", - }, - netlog: { - name: "netLog", - key: "G", - api: "netlog", - bool: true, - info: "capture Network Log (Chrome only)", - }, - datareduction: { - name: "dataReduction", - key: "Q", - api: "dataReduction", - bool: true, - info: "enable data reduction on Chrome 34+ Android (Chrome only)", - }, - useragent: { - name: "userAgent", - key: "x", - api: "uastring", - param: "string", - info: "custom user agent string (Chrome only)", - }, - cmdline: { - name: "commandLine", - key: "X", - api: "cmdline", - param: "switches", - info: "use a list of custom command line switches (Chrome only)", - }, - lighthouse: { - name: "lighthouse", - api: "lighthouse", - bool: true, - info: "perform lighthouse test (Chrome only, Linux agent only)", - }, - - //throttle_cpu param - throttleCPU: { - name: "throttleCPU", - key: "thc", - api: "throttle_cpu", - param: "number", - info: "custom cpu throttling", - }, - - // Auth tab - login: { - name: "login", - key: "g", - api: "login", - param: "username", - info: "username for authenticating tests (http authentication)", - }, - password: { - name: "password", - key: "w", - api: "password", - param: "password", - info: "password for authenticating tests (http authentication)", - }, - - // Script tab - sensitive: { - name: "sensitive", - key: "t", - api: "sensitive", - bool: true, - info: "discard script and http headers in the result", - }, - noheaders: { - name: "disableHTTPHeaders", - key: "H", - api: "noheaders", - bool: true, - info: "disable saving of the http headers (as well as browser status messages and CPU utilization)", - }, - - // Block tab - block: { - name: "block", - key: "b", - api: "block", - param: "urls", - array: true, - info: "space-delimited list of urls to block (substring match)", - }, - - // SPOF tab - spof: { - name: "spof", - key: "Z", - api: "spof", - param: "domains", - array: true, - info: "space-delimited list of domains to simulate failure by re-routing to blackhole.webpagetest.org to silently drop all requests", - }, - - // Custom tab - custom: { - name: "customMetrics", - key: "c", - api: "custom", - param: "script", - info: "execute arbitrary JavaScript at the end of a test to collect custom metrics", - }, - - // API only settings - authtype: { - name: "authenticationType", - key: "a", - api: "authType", - param: "type", - info: "type of authentication: 0 = Basic, 1 = SNS [0]", - }, - notify: { - name: "notifyEmail", - key: "n", - api: "notify", - param: "e-mail", - info: "e-mail address to notify with the test results", - }, - pingback: { - name: "pingback", - key: "B", - api: "pingback", - param: "url", - info: 'URL to ping when the test is complete (the test ID will be passed as an "id" parameter)', - }, - bwdown: { - name: "bandwidthDown", - key: "D", - api: "bwDown", - param: "bandwidth", - info: "download bandwidth in Kbps (used when specifying a custom connectivity profile)", - }, - bwup: { - name: "bandwidthUp", - key: "U", - api: "bwUp", - param: "bandwidth", - info: "upload bandwidth in Kbps (used when specifying a custom connectivity profile)", - }, - browserwidth: { - name: "browserwidth", - key: "bw", - api: "browser_width", - param: "pixels", - info: "Browser window width (in display pixels)", - }, - browserheight: { - name: "browserheight", - key: "bh", - api: "browser_height", - param: "pixels", - info: "Browser window height (in display pixels)", - }, - viewportheight: { - name: "viewportheight", - key: "vh", - api: "height", - param: "pixels", - info: "Viewport Height in css pixels", - }, - viewportwidth: { - name: "viewportwidth", - key: "vw", - api: "width", - param: "pixels", - info: "Viewport Width in css pixels", - }, - devicetopixelratio: { - name: "devicetopixelratio", - key: "dpr", - api: "dpr", - param: "ratio", - info: "Device To Pixel Ratio", - }, - appendua: { - name: "appendua", - key: "au", - api: "appendua", - param: "string", - info: "String to append to the user agent string. This is in addition to the default PTST/ver string", - }, - testtype: { - name: "testtype", - key: "tt", - api: "type", - param: "string", - info: "For running alternative test types, can specify traceroute or lighthouse", - }, - profiler: { - name: "profiler", - key: "pr", - api: "profiler", - param: "number", - info: "Set to 1 to enable the V8 sampling profiler (Chromium only)", - }, - disableAVIF: { - name: "disableAVIF", - key: "avif", - api: "disableAVIF", - param: "number", - info: "Set to 1 to disable AVIF support (Chromium 88+)", - }, - disableWEBP: { - name: "disableWEBP", - key: "webp", - api: "disableWEBP", - param: "number", - info: "Set to 1 to disable WEBP support (Chromium 88+)", - }, - disableJXL: { - name: "disableJXL", - key: "jxl", - api: "disableJXL", - param: "number", - info: "Set to 1 to disable JpegXL support (Chromium 88+)", - }, - dtShaper: { - name: "dtShaper", - key: "dts", - api: "dtShaper", - param: "number", - info: "Set to 1 to use Chrome's built-in traffic-shaping instead of the packet-level netem shaping usually used by the test agents", - }, - latency: { - name: "latency", - key: "Y", - api: "latency", - param: "time", - info: "first-hop Round Trip Time in ms (used when specifying a custom connectivity profile)", - }, - plr: { - name: "packetLossRate", - key: "P", - api: "plr", - param: "percentage", - info: "packet loss rate - percent of packets to drop (used when specifying a custom connectivity profile)", - }, - noopt: { - name: "disableOptimization", - key: "z", - api: "noopt", - bool: true, - info: "disable optimization checks (for faster testing)", - }, - noimages: { - name: "disableScreenshot", - key: "I", - api: "noimages", - bool: true, - info: "disable screen shot capturing", - }, - full: { - name: "fullResolutionScreenshot", - key: "F", - api: "pngss", - bool: true, - info: "save a full-resolution version of the fully loaded screen shot as a PNG", - }, - jpeg: { - name: "jpegQuality", - key: "j", - api: "iq", - param: "level", - info: "jpeg compression level (30-100) for the screen shots and video capture", - }, - medianvideo: { - name: "medianVideo", - key: "A", - api: "mv", - bool: true, - info: "store the video from the median run when capturing video is enabled", - }, - htmlbody: { - name: "htmlBody", - api: "htmlbody", - bool: true, - info: "save the content of only the base HTML response", - }, - tsview: { - name: "tsView", - api: "tsview_id", - param: "id", - info: "test name to use when submitting results to tsviewdb (for private instances that have integrated with tsviewdb)", - }, - tsviewconfigs: { - name: "tsViewConfigs", - api: "tsview_configs", - param: "string", - info: "configs to use when submitting results to tsviewdb (for private instances that have integrated with tsviewdb)", - }, - affinity: { - name: "affinity", - api: "affinity", - param: "string", - info: "string to hash test to a specific test agent. tester will be picked by index among available testers", - }, - priority: { - name: "priority", - api: "priority", - param: "number", - info: "change test priority (0-9) [enforced by API key, otherwise 5]", - valid: /^\d$/, - }, - // Undocumented/experimental/transitent/deprecated - noads: { - name: "blockAds", - api: "blockads", - bool: true, - info: "block ads defined by adblockrules.org", - }, - continuous: { - name: "continuousVideoCapture", - api: "continuousVideo", - bool: true, - info: "capture video continuously (unstable/experimental, may cause tests to fail)", - }, - spdy3: { - name: "forceSpdy3", - api: "spdy3", - bool: true, - info: "force SPDY version 3 (Chrome only)", - }, - swrender: { - name: "forceSoftwareRendering", - api: "swrender", - bool: true, - info: "force software rendering, disable GPU acceleration (Chrome only)", - }, - - // Synchonous tests + results - poll: { - name: "pollResults", - param: "interval", - optional: true, - info: "poll for results after test is scheduled at every seconds [5]", - }, - wait: { - name: "waitResults", - param: "hostname:port", - optional: true, - info: "wait for test results informed by agent once complete listening on : [hostname:first port available above 8000]", - }, - timeout: { - name: "timeout", - param: "seconds", - info: "timeout for polling and waiting results [no timeout]", - }, - }, - testAndWait: { - location: { - name: "location", - key: "l", - api: "location", - param: "location", - info: "location to test from", - }, - - // Test Setting tab - connectivity: { - name: "connectivity", - key: "y", - api: "connectivity", - param: "profile", - info: "connectivity profile (Cable|DSL|3GSlow|3G|3GFast|4G|LTE|Edge|2G|Dial|FIOS|Native|custom) [Cable]", - }, - runs: { - name: "runs", - key: "r", - api: "runs", - param: "number", - info: "number of test runs [1]", - }, - first: { - name: "firstViewOnly", - key: "f", - api: "fvonly", - bool: true, - info: "skip the Repeat View test", - }, - video: { - name: "video", - key: "v", - api: "video", - bool: true, - info: "capture video", - }, - private: { - name: "private", - key: "p", - api: "private", - bool: true, - info: "keep the test hidden from the test log", - }, - label: { - name: "label", - key: "L", - api: "label", - param: "label", - info: "label for the test", - }, - - // Advanced tab - onload: { - name: "stopAtDocumentComplete", - key: "i", - api: "web10", - bool: true, - info: "stop test at document complete. typically, tests run until all activity stops", - }, - noscript: { - name: "disableJavaScript", - key: "S", - api: "noscript", - bool: true, - info: "disable JavaScript (IE, Chrome, Firefox)", - }, - clearcerts: { - name: "clearCerts", - key: "C", - api: "clearcerts", - bool: true, - info: "clear SSL certificate caches", - }, - ignoressl: { - name: "ignoreSSL", - key: "R", - api: "ignoreSSL", - bool: true, - info: "ignore SSL certificate errors, e.g. name mismatch, self-signed certificates, etc", - }, - standards: { - name: "disableCompatibilityView", - key: "T", - api: "standards", - bool: true, - info: "forces all pages to load in standards mode (IE only)", - }, - tcpdump: { - name: "tcpDump", - key: "u", - api: "tcpdump", - bool: true, - info: "capture network packet trace (tcpdump)", - }, - bodies: { - name: "saveResponseBodies", - key: "O", - api: "bodies", - bool: true, - info: "save response bodies for text resources", - }, - keepua: { - name: "keepOriginalUserAgent", - key: "K", - api: "keepua", - bool: true, - info: "do not add PTST to the original browser User Agent string", - }, - dom: { - name: "domElement", - key: "m", - api: "domelement", - param: "element", - info: "DOM element to record for sub-measurement", - }, - duration: { - name: "minimumDuration", - key: "N", - api: "time", - param: "seconds", - info: "minimum test duration in seconds", - }, - tester: { - name: "tester", - key: "E", - api: "tester", - param: "name", - info: "run the test on a specific PC (name must match exactly or the test will not run)", - }, - injectScript: { - name: "injectScript", - api: "injectScript", - param: "injectScript", - info: "JavaScript to run after the document has started loading", - }, - - // Chrome tab - mobile: { - name: "emulateMobile", - key: "W", - api: "mobile", - bool: true, - info: "(experimental) emulate mobile browser: Chrome mobile user agent, 640x960 screen, 2x scaling and fixed viewport (Chrome only)", - }, - device: { - name: "device", - api: "mobileDevice", - param: "string", - info: "device name from mobile_devices.ini to use for mobile emulation (only when mobile=1 is specified to enable emulation and only for Chrome)", - }, - timeline: { - name: "timeline", - key: "M", - api: "timeline", - bool: true, - info: "capture Developer Tools Timeline (Chrome only)", - }, - callstack: { - name: "timelineCallStack", - key: "J", - api: "timelineStack", - bool: true, - info: "set between 1-5 to include the JS call stack. must be used in conjunction with timeline (increases overhead) (Chrome only)", - valid: /[1-5]/, - }, - chrometrace: { - name: "chromeTrace", - key: "q", - api: "trace", - bool: true, - info: "capture chrome trace (about://tracing) (Chrome only)", - }, - tracecategories: { - name: "traceCategories", - api: "traceCategories", - param: "categories", - info: "trace categories (when chrometrace enabled) (Chrome only)", - }, - netlog: { - name: "netLog", - key: "G", - api: "netlog", - bool: true, - info: "capture Network Log (Chrome only)", - }, - datareduction: { - name: "dataReduction", - key: "Q", - api: "dataReduction", - bool: true, - info: "enable data reduction on Chrome 34+ Android (Chrome only)", - }, - useragent: { - name: "userAgent", - key: "x", - api: "uastring", - param: "string", - info: "custom user agent string (Chrome only)", - }, - cmdline: { - name: "commandLine", - key: "X", - api: "cmdline", - param: "switches", - info: "use a list of custom command line switches (Chrome only)", - }, - lighthouse: { - name: "lighthouse", - api: "lighthouse", - bool: true, - info: "perform lighthouse test (Chrome only, Linux agent only)", - }, - - //throttle_cpu param - throttleCPU: { - name: "throttleCPU", - key: "thc", - api: "throttle_cpu", - param: "number", - info: "custom cpu throttling", - }, - - // Auth tab - login: { - name: "login", - key: "g", - api: "login", - param: "username", - info: "username for authenticating tests (http authentication)", - }, - password: { - name: "password", - key: "w", - api: "password", - param: "password", - info: "password for authenticating tests (http authentication)", - }, - - // Script tab - sensitive: { - name: "sensitive", - key: "t", - api: "sensitive", - bool: true, - info: "discard script and http headers in the result", - }, - noheaders: { - name: "disableHTTPHeaders", - key: "H", - api: "noheaders", - bool: true, - info: "disable saving of the http headers (as well as browser status messages and CPU utilization)", - }, - - // Block tab - block: { - name: "block", - key: "b", - api: "block", - param: "urls", - array: true, - info: "space-delimited list of urls to block (substring match)", - }, - - // SPOF tab - spof: { - name: "spof", - key: "Z", - api: "spof", - param: "domains", - array: true, - info: "space-delimited list of domains to simulate failure by re-routing to blackhole.webpagetest.org to silently drop all requests", - }, - - // Custom tab - custom: { - name: "customMetrics", - key: "c", - api: "custom", - param: "script", - info: "execute arbitrary JavaScript at the end of a test to collect custom metrics", - }, - - // API only settings - authtype: { - name: "authenticationType", - key: "a", - api: "authType", - param: "type", - info: "type of authentication: 0 = Basic, 1 = SNS [0]", - }, - notify: { - name: "notifyEmail", - key: "n", - api: "notify", - param: "e-mail", - info: "e-mail address to notify with the test results", - }, - pingback: { - name: "pingback", - key: "B", - api: "pingback", - param: "url", - info: 'URL to ping when the test is complete (the test ID will be passed as an "id" parameter)', - }, - bwdown: { - name: "bandwidthDown", - key: "D", - api: "bwDown", - param: "bandwidth", - info: "download bandwidth in Kbps (used when specifying a custom connectivity profile)", - }, - bwup: { - name: "bandwidthUp", - key: "U", - api: "bwUp", - param: "bandwidth", - info: "upload bandwidth in Kbps (used when specifying a custom connectivity profile)", - }, - browserwidth: { - name: "browserwidth", - key: "bw", - api: "browser_width", - param: "pixels", - info: "Browser window width (in display pixels)", - }, - browserheight: { - name: "browserheight", - key: "bh", - api: "browser_height", - param: "pixels", - info: "Browser window height (in display pixels)", - }, - viewportheight: { - name: "viewportheight", - key: "vh", - api: "height", - param: "pixels", - info: "Viewport Height in css pixels", - }, - viewportwidth: { - name: "viewportwidth", - key: "vw", - api: "width", - param: "pixels", - info: "Viewport Width in css pixels", - }, - devicetopixelratio: { - name: "devicetopixelratio", - key: "dpr", - api: "dpr", - param: "ratio", - info: "Device To Pixel Ratio", - }, - appendua: { - name: "appendua", - key: "au", - api: "appendua", - param: "string", - info: "String to append to the user agent string. This is in addition to the default PTST/ver string", - }, - testtype: { - name: "testtype", - key: "tt", - api: "type", - param: "string", - info: "For running alternative test types, can specify traceroute or lighthouse", - }, - profiler: { - name: "profiler", - key: "pr", - api: "profiler", - param: "number", - info: "Set to 1 to enable the V8 sampling profiler (Chromium only)", - }, - disableAVIF: { - name: "disableAVIF", - key: "avif", - api: "disableAVIF", - param: "number", - info: "Set to 1 to disable AVIF support (Chromium 88+)", - }, - disableWEBP: { - name: "disableWEBP", - key: "webp", - api: "disableWEBP", - param: "number", - info: "Set to 1 to disable WEBP support (Chromium 88+)", - }, - disableJXL: { - name: "disableJXL", - key: "jxl", - api: "disableJXL", - param: "number", - info: "Set to 1 to disable JpegXL support (Chromium 88+)", - }, - dtShaper: { - name: "dtShaper", - key: "dts", - api: "dtShaper", - param: "number", - info: "Set to 1 to use Chrome's built-in traffic-shaping instead of the packet-level netem shaping usually used by the test agents", - }, - latency: { - name: "latency", - key: "Y", - api: "latency", - param: "time", - info: "first-hop Round Trip Time in ms (used when specifying a custom connectivity profile)", - }, - plr: { - name: "packetLossRate", - key: "P", - api: "plr", - param: "percentage", - info: "packet loss rate - percent of packets to drop (used when specifying a custom connectivity profile)", - }, - noopt: { - name: "disableOptimization", - key: "z", - api: "noopt", - bool: true, - info: "disable optimization checks (for faster testing)", - }, - noimages: { - name: "disableScreenshot", - key: "I", - api: "noimages", - bool: true, - info: "disable screen shot capturing", - }, - full: { - name: "fullResolutionScreenshot", - key: "F", - api: "pngss", - bool: true, - info: "save a full-resolution version of the fully loaded screen shot as a PNG", - }, - jpeg: { - name: "jpegQuality", - key: "j", - api: "iq", - param: "level", - info: "jpeg compression level (30-100) for the screen shots and video capture", - }, - medianvideo: { - name: "medianVideo", - key: "A", - api: "mv", - bool: true, - info: "store the video from the median run when capturing video is enabled", - }, - htmlbody: { - name: "htmlBody", - api: "htmlbody", - bool: true, - info: "save the content of only the base HTML response", - }, - tsview: { - name: "tsView", - api: "tsview_id", - param: "id", - info: "test name to use when submitting results to tsviewdb (for private instances that have integrated with tsviewdb)", - }, - tsviewconfigs: { - name: "tsViewConfigs", - api: "tsview_configs", - param: "string", - info: "configs to use when submitting results to tsviewdb (for private instances that have integrated with tsviewdb)", - }, - affinity: { - name: "affinity", - api: "affinity", - param: "string", - info: "string to hash test to a specific test agent. tester will be picked by index among available testers", - }, - priority: { - name: "priority", - api: "priority", - param: "number", - info: "change test priority (0-9) [enforced by API key, otherwise 5]", - valid: /^\d$/, - }, - // Undocumented/experimental/transitent/deprecated - noads: { - name: "blockAds", - api: "blockads", - bool: true, - info: "block ads defined by adblockrules.org", - }, - continuous: { - name: "continuousVideoCapture", - api: "continuousVideo", - bool: true, - info: "capture video continuously (unstable/experimental, may cause tests to fail)", - }, - spdy3: { - name: "forceSpdy3", - api: "spdy3", - bool: true, - info: "force SPDY version 3 (Chrome only)", - }, - swrender: { - name: "forceSoftwareRendering", - api: "swrender", - bool: true, - info: "force software rendering, disable GPU acceleration (Chrome only)", - }, - - // Synchonous tests + results - wait: { - name: "waitResults", - param: "hostname:port", - optional: true, - info: "wait for test results informed by agent once complete listening on : [hostname:first port available above 8000]", - }, - }, - request: { - request: { - name: "requestId", - key: "e", - api: "r", - param: "id", - info: "echo request ID, useful to track asynchronous requests", - }, - }, - run: { - run: { - name: "run", - key: "r", - param: "number", - info: "which run number on a multiple runs test [1]", - }, - cached: { - name: "repeatView", - key: "c", - bool: true, - info: "get the Repeat View (cached view) instead of default First View (primed cache)", - }, - }, - image: { - thumbnail: { - name: "thumbnail", - key: "t", - bool: true, - info: "get the thumbnail of actual image", - }, - uri: { - name: "dataURI", - key: "u", - bool: true, - info: "return the base64 string representation (inline) of actual image", - }, - }, - screenshot: { - full: { - name: "fullResolution", - key: "f", - bool: true, - info: "get full resolution screenshot in PNG format if available", - }, - render: { - name: "startRender", - key: "n", - bool: true, - info: "get the page screenshot at the Start Render point (i.e.: when something was first displayed on screen)", - }, - complete: { - name: "documentComplete", - key: "p", - bool: true, - info: "get the page screenshot at the Document Complete point (i.e.: when window.onload was fired)", - }, - }, - results: { - breakdown: { - name: "breakDown", - key: "b", - api: "breakdown", - bool: true, - info: "include the breakdown of requests and bytes by mime type", - }, - domains: { - name: "domains", - key: "D", - api: "domains", - bool: true, - info: "include the breakdown of requests and bytes by domain", - }, - pagespeed: { - name: "pageSpeed", - key: "p", - api: "pagespeed", - bool: true, - info: "include the PageSpeed score in the response (may be slower)", - }, - requests: { - name: "requests", - key: "R", - api: "requests", - bool: true, - info: "include the request data in the response (slower and results in much larger responses)", - }, - median: { - name: "medianMetric", - key: "m", - api: "medianMetric", - param: "metric", - info: "set the metric used to calculate median for multiple runs tests [loadTime]", - }, - medianrun: { - name: "medianRun", - api: "medianRun", - param: "metric", - info: "set the run used for median for multiple runs tests [median]", - }, - specs: { - name: "specs", - key: "S", - param: "json_or_file", - info: "set the specs for performance test suite", - }, - reporter: { - name: "reporter", - key: "r", - param: "name", - info: "set performance test suite reporter output: [dot]|spec|tap|xunit|list|progress|min|nyan|landing|json|doc|markdown|teamcity", - valid: - /^(?:dot|spec|tap|xunit|list|progress|min|nyan|landing|json|doc|markdown|teamcity)$/, - }, - proxy: { - name: "proxy", - info: "set the proxy used to fetch results", - }, - }, - waterfall: { - type: { - name: "chartType", - api: "type", - key: "T", - param: "chart", - info: "set the chart type: waterfall or connection [waterfall]", - }, - mime: { - name: "colorByMime", - api: "mime", - key: "M", - bool: true, - info: "set chart coloring by MIME type [false]", - }, - width: { - name: "chartWidth", - api: "width", - key: "w", - param: "px", - info: "chart image width in px (300-2000) [930]", - }, - max: { - name: "maxTime", - api: "max", - key: "m", - param: "seconds", - info: "set maximum time in seconds [automatic]", - }, - requests: { - name: "requests", - api: "requests", - key: "R", - param: "items", - info: "filter requests (e.g.:1,2,3,4-9,8) [all]", - }, - nocpu: { - name: "noCPU", - api: "cpu", - key: "C", - bool: true, - invert: true, - info: "hide CPU utilization [false]", - }, - nobandwidth: { - name: "noBandwidth", - api: "bw", - key: "b", - bool: true, - invert: true, - info: "hide bandwidth utilization [false]", - }, - noellipsis: { - name: "noEllipsis", - api: "dots", - key: "i", - bool: true, - invert: true, - info: "hide ellipsis (...) for missing items [false]", - }, - nolabels: { - name: "noLabels", - api: "labels", - key: "l", - bool: true, - invert: true, - info: "hide labels for requests (URL) [false]", - }, - }, - apikey: { - key: { - name: "key", - key: "k", - api: "k", - param: "api_key", - info: "API key (if assigned). Contact the WebPageTest server administrator for a key if required", - }, - }, - video: { - end: { - name: "comparisonEndPoint", - key: "e", - api: "end", - param: "end_point", - info: "frame comparison end point: [visual]=visually complete | all=last change | doc=document complete | full=fully loaded", - valid: /^(?:visual|all|doc|full)$/, - }, - }, - response: { - request: { - name: "request", - api: "request", - key: "R", - param: "number", - info: "the request number [1]", - }, - }, - listen: { - key: { - name: "key", - key: "k", - param: "file", - info: "private key file to use for SSL", - }, - cert: { - name: "cert", - key: "c", - param: "file", - info: "public x509 certificate file to use for SSL", - }, - }, -}; - -var commands = { - status: { - name: "getTestStatus", - param: "id", - options: [options.request, options.apikey], - info: "check test status", - }, - results: { - name: "getTestResults", - param: "id", - options: [options.results, options.request, options.apikey], - info: "get test results", - }, - locations: { - name: "getLocations", - options: [options.request, options.apikey], - info: "list locations and the number of pending tests", - }, - testBalance: { - name: "getTestBalance", - options: [options.apikey], - info: "get remaining tests for the account", - }, - testers: { - name: "getTesters", - options: [options.request, options.apikey], - info: "list testers status and details", - }, - test: { - name: "runTest", - param: "url_or_script", - options: [options.apikey, options.test, options.request, options.results], - info: "run test", - nokey: [options.results], - }, - testAndWait: { - name: "runTestAndWait", - param: "url_or_script", - options: [ - options.apikey, - options.testAndWait, - options.request, - options.results, - ], - info: "run test and waits for the result", - nokey: [options.results], - }, - restart: { - name: "restartTest", - param: "id", - options: [options.apikey], - info: "restart test", - }, - cancel: { - name: "cancelTest", - param: "id", - options: [options.apikey], - info: "cancel running/pending test", - }, - har: { - name: "getHARData", - param: "id", - options: [options.apikey], - info: "get the HTTP Archive (HAR) from test", - }, - pagespeed: { - name: "getPageSpeedData", - param: "id", - options: [options.run, options.apikey], - info: "get the Google Page Speed results (if available) from test", - }, - utilization: { - name: "getUtilizationData", - param: "id", - options: [options.run, options.apikey], - info: "get the CPU, bandwidth and memory utilization data from test", - }, - request: { - name: "getRequestData", - param: "id", - options: [options.run, options.apikey], - info: "get the request data from test", - }, - timeline: { - name: "getTimelineData", - param: "id", - options: [options.run, options.apikey], - info: "get the Chrome Developer Tools Timeline data (if available) from test", - }, - netlog: { - name: "getNetLogData", - param: "id", - options: [options.run, options.apikey], - info: "get the Chrome Developer Tools Net log data (if available) from test", - }, - chrometrace: { - name: "getChromeTraceData", - param: "id", - options: [options.run, options.apikey], - info: "get the Chrome Trace data (if available) from test", - }, - console: { - name: "getConsoleLogData", - param: "id", - options: [options.run, options.apikey], - info: "get the browser console log data (if available) from test", - }, - testinfo: { - name: "getTestInfo", - param: "id", - options: [options.apikey], - info: "get test request info/details", - }, - history: { - name: "getHistory", - param: "days", - optional: true, - options: [options.apikey], - info: "get history of previously run tests", - }, - googlecsi: { - name: "getGoogleCsiData", - param: "id", - options: [options.run, options.apikey], - info: "get Google CSI data (Client Side Instrumentation)", - }, - response: { - name: "getResponseBody", - param: "id", - options: [options.run, options.response, options.apikey], - info: "get response body for text resources", - }, - waterfall: { - name: "getWaterfallImage", - param: "id", - options: [options.run, options.image, options.waterfall, options.apikey], - info: "get the waterfall PNG image", - }, - screenshot: { - name: "getScreenshotImage", - param: "id", - options: [options.run, options.image, options.screenshot, options.apikey], - info: "get the fully loaded page screenshot in JPG format (PNG if in full resolution)", - }, - video: { - name: "createVideo", - param: "tests", - options: [options.video, options.apikey], - info: "create a video from (comma separated test ids)", - }, - player: { - name: "getEmbedVideoPlayer", - param: "id", - options: [options.apikey], - info: "get a html5 player for a video ", - }, - listen: { - name: "listen", - param: "hostname:port", - optional: true, - options: [options.listen,options.apikey], - info: "start webpagetest-api proxy server on : [hostname:%s]", - }, -}; - -// add options shorthands by referrencing flag through key -Object.keys(options).forEach(function eachType(type) { - Object.keys(options[type]).forEach(function eachOption(option) { - var obj = options[type][option]; - if (obj.key) { - options[type][obj.key] = obj; - } - }); -}); - -// set valid options only per command -function setOptions(command, query) { - var count, opts; - - command = commands[command]; - if (!command) { - return; - } - - opts = {}; - count = Object.keys(query).length; - - [options.common].concat(command.options).some(function someTypes(options) { - if (!options) { - return; - } - Object.keys(options).some(function someOptions(key) { - var valid = options[key].valid; - - if (key in query) { - if (options[key].bool) { - opts[options[key].name] = !reBool.test(query[key]); - } else if (!valid || (valid && valid.test(query[key]))) { - opts[options[key].name] = decodeURIComponent(query[key]); - } - count -= 1; - } - - return count === 0; - }); - - return count === 0; - }); - - return opts; -} - -module.exports = { - setOptions: setOptions, - commands: commands, - options: options, -}; diff --git a/lib/server.js b/lib/server.js deleted file mode 100644 index d0f3617..0000000 --- a/lib/server.js +++ /dev/null @@ -1,183 +0,0 @@ -/** - * Copyright (c) 2013, Twitter Inc. - * Copyright (c) 2020, Google Inc. - * Copyright (c) 2020, Marcel Duran and other contributors - * Released under the MIT License - */ - -var https = require('https'), - http = require('http'), - path = require('path'), - url = require('url'), - fs = require('fs'), - mapping = require('./mapping'); - -var help = {}; - -function normalizeRequest(uri) { - var idx, - parsed = url.parse(uri, true), - pathname = path.join(parsed.pathname, '/'); - - pathname = pathname.slice(1, pathname.length - 1); - idx = pathname.lastIndexOf('/'); - idx = (idx < 0 ? pathname.length : idx); - - return { - command: pathname.slice(0, idx).toLowerCase(), - id: pathname.slice(idx + 1), - query: parsed.query - }; -} - -function output(callback, err, data, info) { - var code = 200, - type = 'application/json;charset=utf-8'; - - if (err) { - data = {error: err}; - code = err.code || code; - } else if (info) { - if (info.encoding === 'binary') { - data = new Buffer.from(data, 'binary'); - type = info.type; - } else { - data = {type: info.type, data: data}; - } - } - - if (!(data instanceof Buffer)) { - try { - data = JSON.stringify(data, null, 2); - } catch (ex) { - data = JSON.stringify({ - data: data.toString(), - error: ex.message - }, null, 2); - } - if (callback) { - type = 'application/javascript;charset=utf-8'; - data = callback + '(' + data + ');'; - } - } - - this.writeHead(code, {'Content-Type': type}); - this.end(data); -} - -function buildHelp(defaultServer) { - Object.keys(mapping.commands).forEach(function eachCommand(key) { - var name, - options = {}, - opts = [mapping.options.common], - method = mapping.commands[key]; - - if (key === 'listen') { - return; - } - - name = [ - key, - method.param ? [ - '/', - method.optional ? '[' : '<', - method.param, - method.optional ? ']' : '>' - ].join('') : '', - method.options ? '?[options]' : '' - ].join(''); - - if (method.options) { - opts = opts.concat(method.options); - } - opts.forEach(function eachOptions(option) { - var nokey = method.nokey && method.nokey.indexOf(option) > -1; - - Object.keys(option).forEach(function eachOption(optKey) { - var opt = option[optKey]; - - // ignore shorthands - if (optKey === opt.key) { - return; - } - - options[[ - opt.key && !nokey ? opt.key + ', ' : '', - optKey - ].join('')] = optKey === 'server' ? - opt.info.replace('%s', defaultServer) : opt.info; - }); - }); - - help[name] = { - description: method.info, - options: options - }; - }); - - help = {help: help}; -} - -function route(req, res) { - var uri = normalizeRequest(req.url), - method = (mapping.commands[uri.command] || {}).name, - args = [], - callback = uri.query.callback || uri.query.cb; - - if (method && method !== 'listen') { - // id, url or script - if (uri.id) { - args.push(decodeURIComponent(uri.id)); - } - - // options - args.push(mapping.setOptions(uri.command, uri.query)); - - // callback - args.push(output.bind(res, callback)); - - this[method].apply(this, args); - } else { - // help - output.call(res, callback, null, help); - } -} - -module.exports = { - listen: function listen(local, options, callback) { - var server; - - if (fs.existsSync(options.key) && fs.existsSync(options.cert)) { - server = https.createServer({ - key: fs.readFileSync(path.resolve(process.cwd(), options.key)), - cert: fs.readFileSync(path.resolve(process.cwd(), options.cert)) - }, route.bind(this)); - } else { - server = http.createServer(route.bind(this)); - } - - server.on('error', function listenError(err) { - if (typeof callback === 'function') { - callback(err); - } - }).on('listening', function listenError() { - if (typeof callback === 'function') { - callback(undefined, { - server: server, - protocol: server instanceof https.Server ? 'https' : 'http', - hostname: local.hostname, - port: local.port, - url: url.format({ - protocol: server instanceof https.Server ? 'https' : 'http', - hostname: local.hostname, - port: local.port - }) - }); - } - }).listen(local.port); - - buildHelp(url.format(this.config.hostname)); - - return server; - } -}; diff --git a/lib/specs.js b/lib/specs.js deleted file mode 100644 index 3e952b3..0000000 --- a/lib/specs.js +++ /dev/null @@ -1,203 +0,0 @@ -/** - * Copyright (c) 2013, Twitter Inc. - * Copyright (c) 2020, Google Inc. - * Copyright (c) 2020, Marcel Duran and other contributors - * Released under the MIT License - */ - -var fs = require('fs'), - Mocha = require('mocha'), - assert = require('assert'); - -function buildSuite(defaults, tests) { - describe(defaults.suiteName || 'WebPageTest', function () { - tests.forEach(function (test) { - it(test.text, function () { - if (test.result instanceof Error) { - return assert.ifError(test.result); - } - assert(test.result); - }); - }); - }); -} - -function parseSpecs(data) { - var specs; - - // already an object - if (typeof data === 'object') { - return data; - } - - // from file - if (fs.existsSync(data) && fs.statSync(data).isFile()) { - data = fs.readFileSync(data, 'utf8'); - } - - // from string - try { - specs = JSON.parse(data); - } catch (e) { - return new Error('SpecsParserError: ' + e.message); - } - - return specs; -} - -function buildTest(metric, spec, actual, defaults) { - var operation, expected, result, text; - - // text - text = defaults.text || spec.text || - '{metric}: {actual} should be {operation} {expected}'; - - // operation - if (typeof spec !== 'object') { - operation = defaults.operation || '<'; - expected = spec; - } else { - if ('max' in spec) { - operation = '<'; - expected = spec.max; - } - if ('min' in spec) { - if (!operation) { - operation = '>'; - expected = spec.min; - } else { - operation = '<>'; - expected = [spec.max, spec.min]; - } - } - } - - // test - switch (operation) { - case '<': - result = actual < expected; - operation = 'less than'; - break; - case '>': - result = actual > expected; - operation = 'greater than'; - break; - case '<>': - result = actual < expected[0] && actual > expected[1]; - operation = 'less than ' + expected[0] + ' and greater than'; - expected = expected[1]; - break; - default: - result = actual === expected; - operation = 'equal to'; - } - - // result - text = text - .replace('{metric}', metric) - .replace('{actual}', actual) - .replace('{operation}', operation) - .replace('{expected}', expected); - - return { - text: text, - result: result - }; -} - -function specsRunner(specs, reporter, callback, err, data) { - var defaults = {}, - tests = [], - path = []; - - // bail if test not complete - if (!err && (!data || data.statusCode !== 200)) { - return callback(err, data); - } - - function traverse(specs, data) { - Object.keys(specs).forEach(function (key) { - // bail on default - if (key === 'defaults' && !path.length) { - return; - } - - path.push(key); - if (data[key] === undefined || data[key] === null) { - tests.push({ - text: path.join('.'), - result: new Error('not found') - }); - path.pop(); - return; - } - if (Array.isArray(data[key]) && specs[key].find && specs[key].find.length) { - specs[key].find.forEach(find => { - if (find.key && find.pattern && find.spec) { - var arrData = data[key]; - var filteredData = arrData.find(function (item) { - var regex = new RegExp(find.pattern); - return regex.test(item[find.key]); - }); - if (filteredData) { - path.push(find.key + "." + filteredData[find.key]); - traverse(find.spec, filteredData); - path.pop(); - } else if (find.required) { - tests.push({ - text: path.join('.') + "." + find.key + ".match(" + find.pattern + ")", - result: new Error('not found') - }); - } - } - }); - path.pop(); - return; - } - var spec = specs[key]; - if (typeof spec === 'object' && !spec.min && !spec.max) { - traverse(spec, data[key]); - path.pop(); - } else if (typeof spec === 'number' && Array.isArray(data[key])) { - tests.push( - buildTest(path.join('.'), spec, data[key].length, defaults)); - path.pop(); - } else { - tests.push(buildTest(path.join('.'), spec, data[key], defaults)); - path.pop(); - } - }); - } - - // parse specs - specs = parseSpecs(specs); - - // error handling - if (specs instanceof Error) { - err = err || specs; - } else if (!(data && data.data)) { - err = err || new Error('no data'); - } - - if (err) { - tests.push({ - text: err.message, - result: err - }); - } else { - defaults = specs.defaults || {}; - traverse(specs, data.data); - } - - // run mocha suite - var mocha = new Mocha({ - reporter: reporter - }); - mocha.suite.emit('pre-require', global, null, mocha); - buildSuite(defaults, tests); - mocha.run(callback || function (failures) { - process.exit(failures); - }); -} - -module.exports = specsRunner; \ No newline at end of file diff --git a/lib/webpagetest.js b/lib/webpagetest.js deleted file mode 100644 index 8ac3063..0000000 --- a/lib/webpagetest.js +++ /dev/null @@ -1,1030 +0,0 @@ -/** - * Copyright (c) 2013, Twitter Inc. - * Copyright (c) 2020, Google Inc. - * Copyright (c) 2020, Marcel Duran and other contributors - * Released under the MIT License - */ - -var http = require("http"), - https = require("https"), - url = require("url"), - path = require("path"), - zlib = require("zlib"), - specs = require("./specs"), - helper = require("./helper"), - server = require("./server"), - mapping = require("./mapping"), - qs = require('querystring'); - -const { DEFAULT_POLL_VALUE, POLL_LOWER_LIMIT} = require("./consts"); - -var reSpace = /\s/, - reConnectivity = - /^(?:Cable|DSL|3GSlow|3G|3GFast|4G|LTE|Edge|2G|Dial|FIOS|Native|custom)$/, - reHTMLOutput = /([^<]+)<\/h\d>/, // for H3 on cancelTest.php - reHTTPmethods = /^(?:GET|POST)$/; - -var paths = { - testStatus: "testStatus.php", - testResults: "jsonResult.php", - locations: "getLocations.php", - testers: "getTesters.php", - testBalance: "testBalance.php", - test: "runtest.php", - gzip: "getgzip.php", - har: "export.php", - waterfall: "waterfall.php", - thumbnail: "thumbnail.php", - cancel: "cancelTest.php", - history: "testlog.php", - videoCreation: "video/create.php", - videoView: "video/view.php", - googleCsi: "google/google_csi.php", - responseBody: "response_body.php", - timeline: "getTimeline.php", -}; - -var filenames = { - pageSpeed: "pagespeed.txt", - utilization: "progress.csv", - request: "IEWTR.txt", - netLog: "netlog.txt", - chromeTrace: "trace.json", - consoleLog: "console_log.json", - testInfo: "testinfo.json", - history: "history.csv", - waterfall: "waterfall.png", - screenshot: "screen.jpg", - screenshotStartRender: "screen_render.jpg", - screenshotDocumentComplete: "screen_doc.jpg", - screenshotFullResolution: "screen.png", - cached: "_Cached", -}; - -// GET/POST helper function -function get(config, pathname, data, proxy, agent, callback, encoding) { - var protocol, options; - - if (proxy) { - var proxyUrl = url.parse(proxy); - var pathForProxy = config.protocol + "//"; - - if (config.auth) { - pathForProxy += config.auth + "@"; - } - - pathForProxy += config.hostname + ":" + config.port + pathname; - protocol = proxyUrl.protocol === "https:" ? https : http; - - options = { - host: proxyUrl.hostname, - port: proxyUrl.port, - path: pathForProxy, - headers: { - Host: config.hostname, - }, - method: config.method - }; - } else { - protocol = config.protocol === "https:" ? https : http; - options = { - path: pathname, - host: config.hostname, - auth: config.auth, - port: config.port, - method: config.method, - headers: {}, - }; - } - - if (options.method == "POST") { - options.headers['Content-Type'] = 'application/x-www-form-urlencoded'; - } - - // api key always required - options.headers["X-WPT-API-KEY"] = this.config.key; - options.headers["accept-encoding"] = "gzip,deflate"; - options.headers["User-Agent"] = "WebpagetestNodeWrapper/v0.7.4"; - - if (agent) { - options.agent = agent; - } - - var request = protocol - .request(options, function getResponse(res) { - var data, - length, - statusCode = res.statusCode; - - if (statusCode !== 200) { - callback( - new helper.WPTAPIError(statusCode, http.STATUS_CODES[statusCode]) - ); - } else { - data = []; - length = 0; - - encoding = res.headers["content-encoding"] || encoding || "uft8"; - - res.on("data", function onData(chunk) { - data.push(chunk); - length += chunk.length; - }); - - res.on("end", function onEnd() { - var i, - len, - pos, - buffer = new Buffer.alloc(length), - type = (res.headers["content-type"] || "").split(";")[0]; - - for (i = 0, len = data.length, pos = 0; i < len; i += 1) { - data[i].copy(buffer, pos); - pos += data[i].length; - } - - if (encoding === "gzip" || encoding === "deflate") { - // compressed response (gzip,deflate) - zlib.unzip(buffer, function unzip(err, buffer) { - if (err) { - callback(err); - } else { - callback(undefined, buffer.toString(), { - type: type, - encoding: encoding, - }); - } - }); - } else { - // uncompressed response - callback(undefined, buffer, { - type: type, - encoding: encoding, - }); - } - }); - } - }) - .on("error", function onError(err) { - callback(err); - }); - - if (options.method == "POST") { - return request.end(qs.stringify(data)); - } - - return request.end(); - -} - -// execute callback properly normalizing optional args -function callbackYield(callback, err, data, options) { - if (typeof callback === "function") { - callback.apply(callback, [err, data].concat(options.args)); - } -} - -// helper for async parser callback -function asyncParserCallback(options, err, data) { - callbackYield(this, err, data, options); -} - -// WPT API call wrapper -function api(pathname, callback, query, options) { - var config; - - options = options || {}; - - // check server override - if (options.server) { - config = helper.normalizeServer(options.server); - } else { - config = this.config; - } - - pathname = url.resolve(config.pathname, pathname); - - if (reHTTPmethods.test(options.http_method)) { - config.method = options.http_method; - } else { - config.method = WebPageTest.defaultHTTPMethod; - } - - - if (config.method == "GET") { - pathname = url.format({ - pathname: pathname, - query: query, - }); - query = undefined; - } - - if (options.dryRun) { - // dry run: return the API url (string) only - if (typeof callback === "function") { - callback.apply(callback, [undefined, helper.dryRun(config, pathname, query)]); - } - } else { - // make the real API call - get.call( - this, - config, - pathname, - query, - options.proxy, - options.agent, - function apiCallback(err, data, info) { - if (!err) { - try { - if (options.parser) { - // async parser - if (options.parser.async) { - return options.parser( - data, - asyncParserCallback.bind(callback, options) - ); - } else { - data = options.parser(data); - } - } else { - if (!data) { - data = {}; - } else if (info.type === "application/json") { - data = JSON.parse(data); - } else if (info.type === "text/xml") { - return helper.xmlToObj( - data, - asyncParserCallback.bind(callback, options) - ); - } else if (info.type === "text/html") { - data = { result: (reHTMLOutput.exec(data) || [])[1] }; - } else if (info.type === "text/plain") { - data = { result: data.toString() }; - } - } - } catch (ex) { - err = ex; - } - } - - callbackYield(callback, err, data, options); - }.bind(this), - options.encoding - ); - } - - // chaining - return this; -} - -// Set the appropriate filename to be requested -function setFilename(input, options, doNotDefault) { - var run, cached; - - options = options || {}; - - // set run and cached with or without defaults - run = - parseInt(options.run || options.r, 10) || (doNotDefault ? undefined : 1); - cached = - options.repeatView || options.cached || options.c ? filenames.cached : ""; - // when falsy, check set default accordingly - if (doNotDefault && !cached) { - cached = ["repeatView", "cached", "c"].some(function (key) { - return key in options; - }) - ? "" - : undefined; - } - - if (typeof input === "string") { - return run + cached + "_" + input; - } else { - if (run !== undefined) { - input.run = run; - } - if (cached !== undefined) { - input.cached = cached ? 1 : 0; - } - return input; - } -} - -// Methods - -function getTestStatus(id, options, callback) { - var query = { test: id }; - - callback = callback || options; - options = options === callback ? undefined : options; - helper.setQuery(mapping.commands.status, options, query); - - return api.call(this, paths.testStatus, callback, query, options); -} - -function getTestResults(id, options, callback) { - var query = { test: id }; - - callback = callback || (typeof options === "function" && options); - options = options === callback ? {} : helper.deepClone(options) || {}; - helper.setQuery(mapping.commands.results, options, query); - - // specs - if (options.specs && !options.dryRun) { - return api.call( - this, - paths.testResults, - specs.bind(this, options.specs, options.reporter, callback), - query, - options - ); - } - - return api.call(this, paths.testResults, callback, query, options); -} - -function getLocations(options, callback) { - callback = callback || options; - options = options === callback ? undefined : options; - - var query = helper.setQuery(mapping.commands.locations, options); - return api.call(this, paths.locations, callback, query, options); -} - -function getTesters(options, callback) { - callback = callback || options; - options = options === callback ? undefined : options; - - var query = helper.setQuery(mapping.commands.testers, options); - - return api.call(this, paths.testers, callback, query, options); -} - -function getTestBalance(options, callback) { - callback = callback || options; - options = options === callback ? undefined : options; - - var query = helper.setQuery(mapping.commands.testBalance, options); - // API key (to pass with the parans) (depricated) - // if (!query.k && this.config.key) { - // query.k = this.config.key; - // } - return api.call(this, paths.testBalance, callback, query, options); -} - -function runTest(what, options, callback) { - var query = {}; - - callback = callback || options; - options = options === callback ? {} : helper.deepClone(options); - - // testing url or script? - query[reSpace.test(what) ? "script" : "url"] = what; - // set dummy url when scripting, needed when webdriver script - if (query.script) { - query.url = "https://www.webpagetest.org"; - } - helper.setQuery(mapping.commands.test, options, query); - - // connectivity - if (reConnectivity.test(options.connectivity) && query.location) { - query.location += "." + options.connectivity; - } - - // json output format - query.f = "json"; - - // API key (to pass with the parans) (depricated) - // if (!query.k && this.config.key) { - // query.k = this.config.key; - // } - - // synchronous tests with results - var testId, - polling, - server, - listen, - timerout, - resultsOptions = {}; - - function resultsCallback(err, data) { - clearTimeout(timerout); - if (options.exitOnResults) { - process.exit(err); - } else { - callback(err, data); - } - } - - function poll(err, data) { - // poll again when test started but not complete - // and not when specs are done testing - if ( - !err && - (!data || (data && data.data && data.statusCode !== 200)) && - !(typeof err === "number" && data === undefined) - ) { - console.log( - data && data.data && data.data.statusText - ? data.data.statusText - : "Testing is in progress, please be patient" - ); - polling = setTimeout( - getTestResults.bind(this, testId, resultsOptions, poll.bind(this)), - options.pollResults - ); - } else { - if (!data) { - data = { testId: testId }; - } - resultsCallback(err, data); - } - } - - function testCallback(cb, err, data) { - if (err || !(data && data.data && data.data.testId)) { - return callback(err || data); - } - - testId = data.data.testId; - - if (options.timeout) { - timerout = setTimeout(timeout, options.timeout); - } - - if (cb) { - cb.call(this); - } - } - - function timeout() { - if (server) { - server.close(); - } - clearTimeout(polling); - callback({ - error: { - code: "TIMEOUT", - testId: testId, - message: "timeout", - }, - }); - } - - function listener() { - query.pingback = url.format({ - protocol: "http", - hostname: options.waitResults.hostname, - port: options.waitResults.port, - pathname: "/testdone", - }); - - api.call(this, paths.test, testCallback.bind(this, null), query, options); - } - - function wait() { - server.listen(options.waitResults.port, listen); - return options.waitResults; - } - - // poll|wait results timeout - if (options.timeout) { - options.timeout = (parseInt(options.timeout, 10) || 0) * 1000; - } - - // poll|wait results options - Object.keys(mapping.options.results).forEach(function resultsOpts(key) { - var name = mapping.options.results[key].name, - value = options[name] || options[key]; - - if (value !== undefined) { - resultsOptions[name] = value; - } - }); - - // poll results - if (options.pollResults && !options.dryRun) { - options.pollResults = Math.max(POLL_LOWER_LIMIT, options.pollResults || DEFAULT_POLL_VALUE) * 1000; - - return api.call( - this, - paths.test, - testCallback.bind(this, poll), - query, - options - ); - } - - // wait results - if (options.waitResults && !options.dryRun) { - options.waitResults = helper.localhost( - options.waitResults, - WebPageTest.defaultWaitResultsPort - ); - - listen = listener.bind(this); - - server = http.createServer( - function (req, res) { - var uri = url.parse(req.url, true); - - res.statusCode = 204; - res.end(); - - if (uri.pathname === "/testdone" && uri.query.id === testId) { - server.close( - getTestResults.bind( - this, - uri.query.id, - resultsOptions, - resultsCallback - ) - ); - } - }.bind(this) - ); - - server.on( - "error", - function (err) { - if (["EACCES", "EADDRINUSE"].indexOf(err.code) > -1) { - // remove old unused listener and bump port for next attempt - server.removeListener("listening", listen); - options.waitResults.port++; - wait.call(this); - } else { - callback(err); - } - }.bind(this) - ); - - return wait.call(this); - } - - return api.call(this, paths.test, callback, query, options); -} - -function runTestAndWait(what, options, callback) { - delete options.pollResults; - - options = Object.assign(options, { pollResults: DEFAULT_POLL_VALUE }); - - new Promise((resolve) => { - let test = runTest.bind(this, what, options, callback); - resolve(test()); - }); -} - -function restartTest(id, options, callback) { - var query = { resubmit: id }; - - callback = callback || options; - options = options === callback ? undefined : helper.deepClone(options); - - helper.setQuery(mapping.commands.restart, options, query); - - return api.call(this, paths.test, callback, query, options); -} - -function cancelTest(id, options, callback) { - var query = { test: id }; - - callback = callback || options; - options = options === callback ? undefined : helper.deepClone(options); - - helper.setQuery(mapping.commands.cancel, options, query); - - return api.call(this, paths.cancel, callback, query, options); -} - -function getPageSpeedData(id, options, callback) { - callback = callback || options; - options = options === callback ? undefined : options; - - return api.call( - this, - paths.gzip, - callback, - { - test: id, - file: setFilename(filenames.pageSpeed, options), - }, - options - ); -} - -function getHARData(id, options, callback) { - callback = callback || options; - options = options === callback ? undefined : options; - - return api.call(this, paths.har, callback, { test: id }, options); -} - -function getUtilizationData(id, options, callback) { - callback = callback || options; - options = options === callback ? {} : options; - options.parser = options.parser || helper.csvToObj; - - return api.call( - this, - paths.gzip, - callback, - { - test: id, - file: setFilename(filenames.utilization, options), - }, - options - ); -} - -function getRequestData(id, options, callback) { - callback = callback || options; - options = options === callback ? {} : options; - - options.parser = - options.parser || - helper.tsvToObj.bind(null, [ - "", - "", - "", - "ip_addr", - "method", - "host", - "url", - "responseCode", - "load_ms", - "ttfb_ms", - "load_start", - "bytesOut", - "bytesIn", - "objectSize", - "", - "", - "expires", - "cacheControl", - "contentType", - "contentEncoding", - "type", - "socket", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "score_cache", - "score_cdn", - "score_gzip", - "score_cookies", - "score_keep-alive", - "", - "score_minify", - "score_combine", - "score_compress", - "score_etags", - "", - "is_secure", - "dns_ms", - "connect_ms", - "ssl_ms", - "gzip_total", - "gzip_save", - "minify_total", - "minify_save", - "image_total", - "image_save", - "cache_time", - "", - "", - "", - "cdn_provider", - "dns_start", - "dns_end", - "connect_start", - "connect_end", - "ssl_start", - "ssl_end", - "initiator", - "initiator_line", - "initiator_column", - ]); - - return api.call( - this, - paths.gzip, - callback, - { - test: id, - file: setFilename(filenames.request, options), - }, - options - ); -} - -function getTimelineData(id, options, callback) { - var query; - - callback = callback || options; - options = options === callback ? undefined : options; - query = setFilename({ test: id }, options, true); - - return api.call(this, paths.timeline, callback, query, options); -} - -function getNetLogData(id, options, callback) { - callback = callback || options; - options = options === callback ? {} : options; - options.parser = options.parser || helper.netLogParser; - - return api.call( - this, - paths.gzip, - callback, - { - test: id, - file: setFilename(filenames.netLog, options), - }, - options - ); -} - -function getChromeTraceData(id, options, callback) { - callback = callback || options; - options = options === callback ? {} : options; - options.parser = options.parser || helper.netLogParser; - - return api.call( - this, - paths.gzip, - callback, - { - test: id, - file: setFilename(filenames.chromeTrace, options), - }, - options - ); -} - -function getConsoleLogData(id, options, callback) { - callback = callback || options; - options = options === callback ? {} : options; - options.parser = options.parser || JSON.parse; - - return api.call( - this, - paths.gzip, - callback, - { - test: id, - file: setFilename(filenames.consoleLog, options), - }, - options - ); -} - -function getTestInfo(id, options, callback) { - callback = callback || options; - options = options === callback ? {} : options; - options.parser = options.parser || JSON.parse; - - return api.call( - this, - paths.gzip, - callback, - { - test: id, - file: filenames.testInfo, - }, - options - ); -} - -function getHistory(days, options, callback) { - var query; - - callback = callback || options; - options = options === callback ? {} : options; - options.parser = options.parser || helper.csvParser; - query = { - all: "on", - f: "csv", - days: days ? parseInt(days, 10) : 1, - }; - - return api.call(this, paths.history, callback, query, options); -} - -function getGoogleCsiData(id, options, callback) { - var query; - - callback = callback || options; - options = options === callback ? {} : options; - options.parser = options.parser || helper.csvParser; - query = setFilename({ test: id }, options, true); - - return api.call(this, paths.googleCsi, callback, query, options); -} - -function getResponseBody(id, options, callback) { - var query; - - callback = callback || options; - options = options === callback ? {} : options; - options.args = options.args || { - type: "text/plain", - }; - query = setFilename({ test: id }, options); - query.request = options.request || 1; - - return api.call(this, paths.responseBody, callback, query, options); -} - -function getWaterfallImage(id, options, callback) { - var query, - pathname = paths.waterfall; - - callback = callback || options; - options = options === callback ? {} : options; - (query = setFilename({ test: id }, options)), - (options.encoding = options.encoding || "binary"); - options.dataURI = options.dataURI || options.uri || options.u; - options.parser = - options.parser || (options.dataURI ? helper.dataURI : undefined); - options.args = options.args || { - type: "image/png", - encoding: options.dataURI ? "utf8" : options.encoding, - }; - - if (options.thumbnail || options.t) { - pathname = paths.thumbnail; - query.file = setFilename(filenames.waterfall, options); - } - - helper.setQuery(mapping.commands.waterfall, options, query); - - return api.call(this, pathname, callback, query, options); -} - -function getScreenshotImage(id, options, callback) { - var pathname = paths.gzip, - filename = filenames.screenshot, - params = { test: id }, - type = "jpeg"; - - callback = callback || options; - options = options === callback ? {} : options; - options.encoding = options.encoding || "binary"; - options.dataURI = options.dataURI || options.uri || options.u; - options.parser = - options.parser || (options.dataURI ? helper.dataURI : undefined); - - if (options.startRender || options.render || options.n) { - filename = filenames.screenshotStartRender; - } else if (options.documentComplete || options.complete || options.p) { - filename = filenames.screenshotDocumentComplete; - } else if (options.fullResolution || options.full || options.f) { - filename = filenames.screenshotFullResolution; - type = "png"; - } - options.args = options.args || { - type: "image/" + type, - encoding: options.dataURI ? "utf8" : options.encoding, - }; - - params.file = setFilename(filename, options); - - if (options.thumbnail || options.t) { - pathname = paths.thumbnail; - params = setFilename(params, options); - } - - return api.call(this, pathname, callback, params, options); -} - -function listen(local, options, callback) { - callback = callback || options; - options = options === callback ? {} : options; - local = helper.localhost(local, WebPageTest.defaultListenPort); - - return server.listen.call(this, local, options, callback); -} - -function getEmbedVideoPlayer(id, options, callback) { - var params = { - embed: 1, - id: id, - }; - - options.args = options.args || { - type: "text/html", - encoding: options.dataURI ? "utf8" : options.encoding, - }; - - options.parser = function (data) { - return data.toString(); - }; - - api.call(this, paths.videoView, callback, params, options); -} - -function createVideo(tests, options, callback) { - //prefer the json format because the xml format is buggy with wpt 2.11 - var params = { - tests: tests, - f: "json", - end: options.comparisonEndPoint || "visual", - }; - - api.call(this, paths.videoCreation, callback, params, options); -} - -// WPT constructor -function WebPageTest(server, key) { - if (!(this instanceof WebPageTest)) { - return new WebPageTest(server, key); - } - - this.config = helper.normalizeServer(server || WebPageTest.defaultServer); - this.config.key = key; -} - -// Allow global config override -WebPageTest.paths = paths; -WebPageTest.filenames = filenames; -WebPageTest.defaultServer = "https://www.webpagetest.org"; -WebPageTest.defaultListenPort = 7791; -WebPageTest.defaultWaitResultsPort = 8000; -WebPageTest.defaultHTTPMethod = "GET"; - -// Version -Object.defineProperty(WebPageTest, "version", { - value: require("../package.json").version, -}); - -// Exposed methods -WebPageTest.scriptToString = helper.scriptToString; -WebPageTest.prototype = { - constructor: WebPageTest, - version: WebPageTest.version, - getTestStatus: getTestStatus, - getTestResults: getTestResults, - getLocations: getLocations, - getTesters: getTesters, - runTest: runTest, - runTestAndWait: runTestAndWait, - restartTest: restartTest, - cancelTest: cancelTest, - getPageSpeedData: getPageSpeedData, - getTestBalance: getTestBalance, - getHARData: getHARData, - getUtilizationData: getUtilizationData, - getRequestData: getRequestData, - getTimelineData: getTimelineData, - getNetLogData: getNetLogData, - getChromeTraceData: getChromeTraceData, - getConsoleLogData: getConsoleLogData, - getTestInfo: getTestInfo, - getHistory: getHistory, - getWaterfallImage: getWaterfallImage, - getScreenshotImage: getScreenshotImage, - getGoogleCsiData: getGoogleCsiData, - getResponseBody: getResponseBody, - getEmbedVideoPlayer: getEmbedVideoPlayer, - createVideo: createVideo, - scriptToString: WebPageTest.scriptToString, - listen: listen, - - // short aliases - status: getTestStatus, - results: getTestResults, - locations: getLocations, - testers: getTesters, - test: runTest, - testAndWait: runTestAndWait, - cancel: cancelTest, - pagespeed: getPageSpeedData, - har: getHARData, - utilization: getUtilizationData, - request: getRequestData, - timeline: getTimelineData, - netlog: getNetLogData, - chrometrace: getChromeTraceData, - console: getConsoleLogData, - testinfo: getTestInfo, - history: getHistory, - googlecsi: getGoogleCsiData, - response: getResponseBody, - player: getEmbedVideoPlayer, - video: createVideo, - waterfall: getWaterfallImage, - screenshot: getScreenshotImage, -}; - -module.exports = WebPageTest; diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json new file mode 100644 index 0000000..000cc9a --- /dev/null +++ b/npm-shrinkwrap.json @@ -0,0 +1,113 @@ +{ + "name": "wpt", + "version": "0.0.5", + "dependencies": { + "webpagetest": { + "version": "0.2.1", + "from": "webpagetest@0.2.1", + "resolved": "https://registry.npmjs.org/webpagetest/-/webpagetest-0.2.1.tgz", + "dependencies": { + "commander": { + "version": "2.1.0", + "from": "commander@~2.1.0" + }, + "mocha": { + "version": "1.17.1", + "from": "mocha@~1.17.0", + "dependencies": { + "commander": { + "version": "2.0.0", + "from": "commander@2.0.0" + }, + "growl": { + "version": "1.7.0", + "from": "growl@1.7.x" + }, + "jade": { + "version": "0.26.3", + "from": "jade@0.26.3", + "dependencies": { + "commander": { + "version": "0.6.1", + "from": "commander@0.6.1" + }, + "mkdirp": { + "version": "0.3.0", + "from": "mkdirp@0.3.0" + } + } + }, + "diff": { + "version": "1.0.7", + "from": "diff@1.0.7" + }, + "debug": { + "version": "0.7.4", + "from": "debug@*" + }, + "mkdirp": { + "version": "0.3.5", + "from": "mkdirp@0.3.5" + }, + "glob": { + "version": "3.2.3", + "from": "glob@3.2.3", + "dependencies": { + "minimatch": { + "version": "0.2.14", + "from": "minimatch@~0.2.11", + "dependencies": { + "lru-cache": { + "version": "2.5.0", + "from": "lru-cache@2" + }, + "sigmund": { + "version": "1.0.0", + "from": "sigmund@~1.0.0" + } + } + }, + "graceful-fs": { + "version": "2.0.1", + "from": "graceful-fs@~2.0.0" + }, + "inherits": { + "version": "2.0.1", + "from": "inherits@2" + } + } + } + } + }, + "xml2js": { + "version": "0.4.1", + "from": "xml2js@~0.4.1", + "dependencies": { + "sax": { + "version": "0.5.8", + "from": "sax@0.5.x" + }, + "xmlbuilder": { + "version": "2.1.0", + "from": "xmlbuilder@>=0.4.2", + "dependencies": { + "underscore": { + "version": "1.5.2", + "from": "underscore@>=1.5.x" + } + } + } + } + }, + "csv": { + "version": "0.3.6", + "from": "csv@~0.3.6" + }, + "entities": { + "version": "0.3.0", + "from": "entities@~0.3.0" + } + } + } + } +} diff --git a/package.json b/package.json index 40a360c..bb76536 100644 --- a/package.json +++ b/package.json @@ -1,42 +1,13 @@ { - "name": "webpagetest", - "version": "0.7.6", - "description": "WebPageTest API wrapper for NodeJS", - "author": "WebPageTest (http://github.com/WebPageTest)", - "homepage": "http://github.com/WebPageTest/webpagetest-api", - "keywords": [ - "webpagetest", - "api", - "performance", - "test", - "browser" - ], - "license": "MIT", - "repository": { - "type": "git", - "url": "git://github.com/WebPageTest/webpagetest-api.git" - }, - "bugs": { - "url": "http://github.com/WebPageTest/webpagetest-api/issues" - }, - "main": "lib/webpagetest.js", - "bin": { - "webpagetest": "bin/webpagetest" - }, - "scripts": { - "test": "mocha -R spec test/*-test.js" - }, - "engines": { - "node": ">=10.18.1" - }, - "dependencies": { - "commander": "^5.1.0", - "csv": "^6.2.2", - "entities": "^4.4.0", - "mocha": "^10.1.0", - "xml2js": "^0.6.2" - }, - "devDependencies": { - "nock": "^13.2.9" - } -} \ No newline at end of file + "name": "wpt", + "version": "0.0.5", + "scripts": { + "start": "node app.js" + }, + "dependencies": { + "webpagetest": "0.2.1" + }, + "engines": { + "node": ">=0.8.1" + } +} diff --git a/test/command-line-test.js b/test/command-line-test.js deleted file mode 100644 index cbcdc16..0000000 --- a/test/command-line-test.js +++ /dev/null @@ -1,348 +0,0 @@ -/** - * Copyright (c) 2013, Twitter Inc. - * Copyright (c) 2020, Google Inc. - * Copyright (c) 2020, Marcel Duran and other contributors - * Released under the MIT License - */ - -var assert = require('assert'), - path = require('path'), - fs = require('fs'), - exec = require('child_process').exec, - WebPageTest = require('../lib/webpagetest'); - -var wptServer = 'https://www.example.com:1234/foo/bar/', - nodeCmd = process.argv[0], - executable = path.join(__dirname, '../bin/webpagetest'); - -function mock(command) { - return nodeCmd + ' ' + executable + ' -s ' + wptServer + ' -d ' + command; -} - -function getHelp(command) { - command = command ? '-' + command : ''; - - return fs.readFileSync(path.join(__dirname, './fixtures/command-line/help' + - command + '.txt'), 'utf8'); -} - -describe('WebPageTest Command Line', function() { - - it('gets a test status input returns the API url', function(done) { - exec(mock('status 120816_V2_2'), function(err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.equal(data.url, wptServer + 'testStatus.php?test=120816_V2_2'); - done(); - }); - }); - - it('gets a test results input returns the API url', function(done) { - exec(mock('results 120816_V2_2'), function(err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.equal(data.url, wptServer + 'jsonResult.php?test=120816_V2_2'); - done(); - }); - }); - - it('gets a test results for multi runs with custom median metric input returns the API url', function(done) { - exec(mock('results 120816_V2_2 -m TTFB'), function(err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.equal(data.url, wptServer + - 'jsonResult.php?test=120816_V2_2&medianMetric=TTFB'); - done(); - }); - }); - - it('gets a test results with extra data input returns the API url', function(done) { - exec(mock('results 141106_8N_ZRC -bDpR'), function(err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.equal(data.url, wptServer + - 'jsonResult.php?test=141106_8N_ZRC&breakdown=1&domains=1&pagespeed=1&requests=1'); - done(); - }); - }); - - it('gets the locations list input returns the API url', function(done) { - exec(mock('locations'), function(err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.equal(data.url, wptServer + 'getLocations.php'); - done(); - }); - }); - - it('gets the testers list input returns the API url', function(done) { - exec(mock('testers'), function(err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.equal(data.url, wptServer + 'getTesters.php'); - done(); - }); - }); - - it('gets a simple test input returns the API url', function(done) { - exec(mock('test http://foobar.com'), function(err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.equal(data.url, wptServer + 'runtest.php?url=http%3A%2F%2Ffoobar.com&f=json'); - done(); - }); - }); - - it('gets a custom test input returns the API url', function(done) { - exec(mock( - 'test http://twitter.com/marcelduran ' + - '--location Local_Firefox_Chrome:Chrome ' + - '--label "test 123" ' + - '--runs 3 ' + - '--first ' + - '--timeline ' + - '--netlog ' + - '--full' - ), function(err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.equal(data.url, wptServer + 'runtest.php?url=http%3A%2F%2Ftwitter.com%2Fmarcelduran&location=Local_Firefox_Chrome%3AChrome&runs=3&fvonly=1&label=test%20123&timeline=1&netlog=1&pngss=1&f=json'); - done(); - }); - }); - - it('gets a script test input returns the API url', function(done) { - var script = WebPageTest.scriptToString([ - {logData: 0 }, - {navigate: 'http://foo.com/login' }, - '// log some data', - {logData: 1 }, - {setValue: ['name=username', 'johndoe']}, - {setValue: ['name=password', '12345'] }, - {submitForm: 'action=http://foo.com/main'}, - 'waitForComplete' - ]); - - exec(mock('test ' + encodeURIComponent(script)), function(err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.equal(data.url, wptServer + 'runtest.php?script=logData%090%0Anavigate%09http%3A%2F%2Ffoo.com%2Flogin%0A%2F%2F%20log%20some%20data%0AlogData%091%0AsetValue%09name%3Dusername%09johndoe%0AsetValue%09name%3Dpassword%0912345%0AsubmitForm%09action%3Dhttp%3A%2F%2Ffoo.com%2Fmain%0AwaitForComplete&url=https%3A%2F%2Fwww.webpagetest.org&f=json'); - done(); - }); - }); - - it('gets a script file test input returns the API url', function(done) { - var filename = path.join(__dirname, './fixtures/script.txt'); - - exec(mock('test ' + filename), function(err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.equal(data.url, wptServer + 'runtest.php?script=logData%090%0Anavigate%09http%3A%2F%2Ffoo.com%2Flogin%0A%2F%2F%20log%20some%20data%0AlogData%091%0AsetValue%09name%3Dusername%09johndoe%0AsetValue%09name%3Dpassword%0912345%0AsubmitForm%09action%3Dhttp%3A%2F%2Ffoo.com%2Fmain%0AwaitForComplete%0A&url=https%3A%2F%2Fwww.webpagetest.org&f=json'); - done(); - }); - }); - - it('gets a restart test input returns the API url', function(done) { - exec(mock('restart 120816_V2_2'), function(err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.equal(data.url, wptServer + 'runtest.php?resubmit=120816_V2_2'); - done(); - }); - }); - - it('gets a restart test with api key input returns the API url', function(done) { - exec(mock('restart -k 12345 120816_V2_2'), function(err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.equal(data.url, wptServer + 'runtest.php?resubmit=120816_V2_2&k=12345'); - done(); - }); - }); - - it('gets a cancel test input returns the API url', function(done) { - exec(mock('cancel 120816_V2_2'), function(err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.equal(data.url, wptServer + 'cancelTest.php?test=120816_V2_2'); - done(); - }); - }); - - it('gets a cancel test with api key input returns the API url', function(done) { - exec(mock('cancel -k 12345 120816_V2_2'), function(err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.equal(data.url, wptServer + 'cancelTest.php?test=120816_V2_2&k=12345'); - done(); - }); - }); - - it('gets a page speed data input returns the API url', function(done) { - exec(mock('pagespeed 120816_V2_2'), function(err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.equal(data.url, wptServer + 'getgzip.php?test=120816_V2_2&file=1_pagespeed.txt'); - done(); - }); - }); - - it('gets a HAR data input returns the API url', function(done) { - exec(mock('har 120816_V2_2'), function(err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.equal(data.url, wptServer + 'export.php?test=120816_V2_2'); - done(); - }); - }); - - it('gets a utilization data input returns the API url', function(done) { - exec(mock('utilization 120816_V2_2'), function(err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.equal(data.url, wptServer + 'getgzip.php?test=120816_V2_2&file=1_progress.csv'); - done(); - }); - }); - - it('gets a request data input returns the API url', function(done) { - exec(mock('request 120816_V2_2'), function(err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.equal(data.url, wptServer + 'getgzip.php?test=120816_V2_2&file=1_IEWTR.txt'); - done(); - }); - }); - - it('gets a timeline data input returns the default API url', function(done) { - exec(mock('timeline 120816_V2_2'), function(err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.equal(data.url, wptServer + 'getTimeline.php?test=120816_V2_2'); - done(); - }); - }); - - it('gets a custom timeline data input returns the API url', function(done) { - exec(mock('timeline 120816_V2_2 -r 2 --cached'), function(err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.equal(data.url, wptServer + 'getTimeline.php?test=120816_V2_2&run=2&cached=1'); - done(); - }); - }); - - it('gets a net log data input returns the API url', function(done) { - exec(mock('netlog 120816_V2_2'), function(err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.equal(data.url, wptServer + 'getgzip.php?test=120816_V2_2&file=1_netlog.txt'); - done(); - }); - }); - - it('gets a console log data input returns the API url', function(done) { - exec(mock('console 120816_V2_2'), function(err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.equal(data.url, wptServer + 'getgzip.php?test=120816_V2_2&file=1_console_log.json'); - done(); - }); - }); - - it('gets a test info input returns the API url', function(done) { - exec(mock('testinfo 120816_V2_2'), function(err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.equal(data.url, wptServer + 'getgzip.php?test=120816_V2_2&file=testinfo.json'); - done(); - }); - }); - - it('gets a history input returns the API url', function(done) { - exec(mock('history 2'), function(err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.equal(data.url, wptServer + 'testlog.php?all=on&f=csv&days=2'); - done(); - }); - }); - - it('gets a waterfall image input returns the API url', function(done) { - exec(mock('waterfall 120816_V2_2'), function(err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.equal(data.url, wptServer + 'waterfall.php?test=120816_V2_2&run=1&cached=0'); - done(); - }); - }); - - it('gets a waterfall thumbnail input returns the API url', function(done) { - exec(mock('waterfall 120816_V2_2 --thumbnail'), function(err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.equal(data.url, wptServer + 'thumbnail.php?test=120816_V2_2&run=1&cached=0&file=1_waterfall.png'); - done(); - }); - }); - - it('gets a customized waterfall image input returns the API url', function(done) { - exec(mock('waterfall 120816_V2_2 --type connection --mime --width 640 --max 9 --requests 1,2,4,6-8 --nocpu --nobandwidth --noellipsis --nolabels'), function(err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.equal(data.url, wptServer + 'waterfall.php?test=120816_V2_2&run=1&cached=0&type=connection&mime=1&width=640&max=9&requests=1%2C2%2C4%2C6-8&cpu=0&bw=0&dots=0&labels=0'); - done(); - }); - }); - - it('gets a screenshot input returns the API url', function(done) { - exec(mock('screenshot 120816_V2_2'), function(err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.equal(data.url, wptServer + 'getgzip.php?test=120816_V2_2&file=1_screen.jpg'); - done(); - }); - }); - - it('gets a screenshot thumbnail input returns the API url', function(done) { - exec(mock('screenshot 120816_V2_2 --thumbnail'), function(err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.equal(data.url, wptServer + 'thumbnail.php?test=120816_V2_2&file=1_screen.jpg&run=1&cached=0'); - done(); - }); - }); - - it('gets a screenshot in full resolution input returns the API url', function(done) { - exec(mock('screenshot 120816_V2_2 --full'), function(err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.equal(data.url, wptServer + 'getgzip.php?test=120816_V2_2&file=1_screen.png'); - done(); - }); - }); - - it('gets a batch input returns the batch commands output in order', function(done) { - exec(mock('batch ' + path.join(__dirname, 'fixtures/batch.txt')), function(err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.equal(data[0].url, wptServer + 'testStatus.php?test=120816_V2_2'); - assert.equal(data[1].url, wptServer + 'jsonResult.php?test=120816_V2_2'); - assert.equal(data[2].url, wptServer + 'getgzip.php?test=120816_V2_2&file=1_screen.jpg'); - done(); - }); - }); - - it('gets a test with long custom metrics script then returns API url and payload with custom metrics data', function (done) { - let script = '"[example]\n\\\\' + 'X'.repeat(6000) + '\nreturn 1;"' - - exec(mock('test http://foobar.com --http_method POST --custom ' + script), function (err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.equal(data.url, wptServer + 'runtest.php'); - assert.equal(data.form.length, 6077); - done(); - }); - }); - -}); diff --git a/test/dryrun-test.js b/test/dryrun-test.js deleted file mode 100644 index d455d5c..0000000 --- a/test/dryrun-test.js +++ /dev/null @@ -1,462 +0,0 @@ -/** - * Copyright (c) 2013, Twitter Inc. - * Copyright (c) 2020, Google Inc. - * Copyright (c) 2020, Marcel Duran and other contributors - * Released under the MIT License - */ - -var assert = require('assert'), - WebPageTest = require('../lib/webpagetest'); - -var wptServer = 'https://www.example.com:1234/foo/bar/', - wpt = new WebPageTest(wptServer, 'YOURAPIKEY'); - -describe('Dry Run', function() { - describe('An Example WebPageTest Server', function() { - - it('gets a test status request', function(done) { - wpt.getTestStatus('120816_V2_2', {dryRun: true}, function (err, data) { - if (err) return done(err); - assert.equal(data.url, wptServer + 'testStatus.php?test=120816_V2_2'); - done(); - }); - }); - - it('gets a test status request with requestId', function(done) { - wpt.getTestStatus('120816_V2_2', { - request: '12345', - dryRun: true - }, function (err, data) { - if (err) return done(err); - assert.equal(data.url, wptServer + 'testStatus.php?test=120816_V2_2&r=12345'); - done(); - }); - }); - - it('gets a test results request', function(done) { - wpt.getTestResults('120816_V2_2', {dryRun: true}, function (err, data) { - if (err) return done(err); - assert.equal(data.url, wptServer + 'jsonResult.php?test=120816_V2_2'); - done(); - }); - }); - - it('gets a test results request with requestId', function(done) { - wpt.getTestResults('120816_V2_2', { - request: '12345', - dryRun: true - }, function (err, data) { - if (err) return done(err); - assert.equal(data.url, wptServer + 'jsonResult.php?test=120816_V2_2&r=12345'); - done(); - }); - }); - - it('gets a test results for multi runs with custom median metric request', function(done) { - wpt.getTestResults('120816_V2_2', { - dryRun: true, - medianMetric: 'TTFB' - }, function (err, data) { - if (err) return done(err); - assert.equal(data.url, wptServer + - 'jsonResult.php?test=120816_V2_2&medianMetric=TTFB'); - done(); - }); - }); - - it('gets a test results with extra data request', function(done) { - wpt.getTestResults('141106_8N_ZRC', { - breakDown: true, - domains: true, - pageSpeed: true, - requests: true, - dryRun: true - }, function (err, data) { - if (err) return done(err); - assert.equal(data.url, wptServer + - 'jsonResult.php?test=141106_8N_ZRC&breakdown=1&domains=1&pagespeed=1&requests=1'); - done(); - }); - }); - - it('gets the locations list request', function(done) { - wpt.getLocations({dryRun: true}, function (err, data) { - if (err) return done(err); - assert.equal(data.url, wptServer + 'getLocations.php'); - done(); - }); - }); - - it('gets the locations list request with requestId', function(done) { - wpt.getLocations({dryRun: true, request: '12345'}, function (err, data) { - if (err) return done(err); - assert.equal(data.url, wptServer + 'getLocations.php?r=12345'); - done(); - }); - }); - - it('gets the testers list request', function(done) { - wpt.getTesters({dryRun: true}, function (err, data) { - if (err) return done(err); - assert.equal(data.url, wptServer + 'getTesters.php'); - done(); - }); - }); - - it('gets the testers list request with requestId', function(done) { - wpt.getTesters({dryRun: true, request: '12345'}, function (err, data) { - if (err) return done(err); - assert.equal(data.url, wptServer + 'getTesters.php?r=12345'); - done(); - }); - }); - - it('gets a simple test request', function(done) { - wpt.runTest('http://foobar.com', {dryRun: true}, function (err, data) { - if (err) return done(err); - assert.equal(data.url, wptServer + 'runtest.php?url=http%3A%2F%2Ffoobar.com&f=json'); - done(); - }); - }); - - it('gets a custom test request', function(done) { - wpt.runTest('http://twitter.com/marcelduran', { - 'location': 'Local_Firefox_Chrome:Chrome', - label: 'test 123', - runs: 3, - firstViewOnly: true, - timeline: true, - netLog: true, - fullResolutionScreenshot: true, - request: '12345', - dryRun: true - }, function (err, data) { - if (err) return done(err); - assert.equal(data.url, wptServer + 'runtest.php?url=http%3A%2F%2Ftwitter.com%2Fmarcelduran&location=Local_Firefox_Chrome%3AChrome&runs=3&fvonly=1&label=test%20123&timeline=1&netlog=1&pngss=1&r=12345&f=json'); - done(); - }); - }); - - it('gets a script test request', function(done) { - var script = wpt.scriptToString([ - {logData: 0 }, - {navigate: 'http://foo.com/login' }, - '// log some data', - {logData: 1 }, - {setValue: ['name=username', 'johndoe']}, - {setValue: ['name=password', '12345'] }, - {submitForm: 'action=http://foo.com/main'}, - 'waitForComplete' - ]); - - wpt.runTest(script, {dryRun: true}, function (err, data) { - if (err) return done(err); - assert.equal(data.url, wptServer + 'runtest.php?script=logData%090%0Anavigate%09http%3A%2F%2Ffoo.com%2Flogin%0A%2F%2F%20log%20some%20data%0AlogData%091%0AsetValue%09name%3Dusername%09johndoe%0AsetValue%09name%3Dpassword%0912345%0AsubmitForm%09action%3Dhttp%3A%2F%2Ffoo.com%2Fmain%0AwaitForComplete&url=https%3A%2F%2Fwww.webpagetest.org&f=json'); - done(); - }); - }); - - it('gets a restart test request', function(done) { - wpt.restartTest('120816_V2_2', {dryRun: true}, function (err, data) { - if (err) return done(err); - assert.equal(data.url, wptServer + 'runtest.php?resubmit=120816_V2_2'); - done(); - }); - }); - - it('gets a restart test with api key request', function(done) { - wpt.restartTest('120816_V2_2', {key: '12345', dryRun: true}, function (err, data) { - if (err) return done(err); - assert.equal(data.url, wptServer + 'runtest.php?resubmit=120816_V2_2&k=12345'); - done(); - }); - }); - - it('gets a cancel test request', function(done) { - wpt.cancelTest('120816_V2_2', {dryRun: true}, function (err, data) { - if (err) return done(err); - assert.equal(data.url, wptServer + 'cancelTest.php?test=120816_V2_2'); - done(); - }); - }); - - it('gets a cancel test with api key request', function(done) { - wpt.cancelTest('120816_V2_2', {key: '12345', dryRun: true}, function (err, data) { - if (err) return done(err); - assert.equal(data.url, wptServer + 'cancelTest.php?test=120816_V2_2&k=12345'); - done(); - }); - }); - - it('gets page speed data request', function(done) { - wpt.getPageSpeedData('120816_V2_2', {dryRun: true}, function (err, data) { - if (err) return done(err); - assert.equal(data.url, wptServer + 'getgzip.php?test=120816_V2_2&file=1_pagespeed.txt'); - done(); - }); - }); - - it('gets HAR data request', function(done) { - wpt.getHARData('120816_V2_2', {dryRun: true}, function (err, data) { - if (err) return done(err); - assert.equal(data.url, wptServer + 'export.php?test=120816_V2_2'); - done(); - }); - }); - - it('gets utilization data request', function(done) { - wpt.getUtilizationData('120816_V2_2', {dryRun: true}, function (err, data) { - if (err) return done(err); - assert.equal(data.url, wptServer + 'getgzip.php?test=120816_V2_2&file=1_progress.csv'); - done(); - }); - }); - - it('gets request data request', function(done) { - wpt.getRequestData('120816_V2_2', {dryRun: true}, function (err, data) { - if (err) return done(err); - assert.equal(data.url, wptServer + 'getgzip.php?test=120816_V2_2&file=1_IEWTR.txt'); - done(); - }); - }); - - it('gets default timeline data request', function(done) { - wpt.getTimelineData('120816_V2_2', {dryRun: true}, function (err, data) { - if (err) return done(err); - assert.equal(data.url, wptServer + 'getTimeline.php?test=120816_V2_2'); - done(); - }); - }); - - it('gets custom timeline data request', function(done) { - wpt.getTimelineData('120816_V2_2', { - run: 2, - cached: true, - dryRun: true - }, function (err, data) { - if (err) return done(err); - assert.equal(data.url, wptServer + 'getTimeline.php?test=120816_V2_2&run=2&cached=1'); - done(); - }); - }); - - it('gets net log data request', function(done) { - wpt.getNetLogData('120816_V2_2', {dryRun: true}, function (err, data) { - if (err) return done(err); - assert.equal(data.url, wptServer + 'getgzip.php?test=120816_V2_2&file=1_netlog.txt'); - done(); - }); - }); - - it('gets console log data request', function(done) { - wpt.getConsoleLogData('120816_V2_2', {dryRun: true}, function (err, data) { - if (err) return done(err); - assert.equal(data.url, wptServer + 'getgzip.php?test=120816_V2_2&file=1_console_log.json'); - done(); - }); - }); - - it('gets test info request', function(done) { - wpt.getTestInfo('120816_V2_2', {dryRun: true}, function (err, data) { - if (err) return done(err); - assert.equal(data.url, wptServer + 'getgzip.php?test=120816_V2_2&file=testinfo.json'); - done(); - }); - }); - - it('gets history request', function(done) { - wpt.getHistory(2, {dryRun: true}, function (err, data) { - if (err) return done(err); - assert.equal(data.url, wptServer + 'testlog.php?all=on&f=csv&days=2'); - done(); - }); - }); - - it('gets a waterfall image request', function(done) { - wpt.getWaterfallImage('120816_V2_2', {dryRun: true}, function (err, data) { - if (err) return done(err); - assert.equal(data.url, wptServer + 'waterfall.php?test=120816_V2_2&run=1&cached=0'); - done(); - }); - }); - - it('gets a waterfall thumbnail request', function(done) { - wpt.getWaterfallImage('120816_V2_2', { - thumbnail: true, - dryRun: true - }, function (err, data) { - if (err) return done(err); - assert.equal(data.url, wptServer + 'thumbnail.php?test=120816_V2_2&run=1&cached=0&file=1_waterfall.png'); - done(); - }); - }); - - it('gets a customized waterfall image request', function(done) { - wpt.getWaterfallImage('120816_V2_2', { - chartType: 'connection', - colorByMime: true, - chartWidth: 640, - maxTime: 9, - requests: '1,2,4,6-8', - noCPU: true, - noBandwidth: true, - noEllipsis: true, - noLabels: true, - dryRun: true - }, function (err, data) { - if (err) return done(err); - assert.equal(data.url, wptServer + 'waterfall.php?test=120816_V2_2&run=1&cached=0&type=connection&mime=1&width=640&max=9&requests=1%2C2%2C4%2C6-8&cpu=0&bw=0&dots=0&labels=0'); - done(); - }); - }); - - it('gets a screenshot request', function(done) { - wpt.getScreenshotImage('120816_V2_2', {dryRun: true}, function (err, data) { - if (err) return done(err); - assert.equal(data.url, wptServer + 'getgzip.php?test=120816_V2_2&file=1_screen.jpg'); - done(); - }); - }); - - it('gets a screenshot thumbnail request', function(done) { - wpt.getScreenshotImage('120816_V2_2', { - thumbnail: true, - dryRun: true - }, function (err, data) { - if (err) return done(err); - assert.equal(data.url, wptServer + 'thumbnail.php?test=120816_V2_2&file=1_screen.jpg&run=1&cached=0'); - done(); - }); - }); - - it('gets a screenshot in full resolution request', function(done) { - wpt.getScreenshotImage('120816_V2_2', { - fullResolution: true, - dryRun: true - }, function (err, data) { - if (err) return done(err); - assert.equal(data.url, wptServer + 'getgzip.php?test=120816_V2_2&file=1_screen.png'); - done(); - }); - }); - - // alias - - it('gets a custom test request using aliases', function(done) { - wpt.test('http://twitter.com/marcelduran', { - l: 'Local_Firefox_Chrome:Chrome', - L: 'test 123', - r: 3, - first: true, - M: true, - netlog: true, - full: true, - e: '12345', - dryRun: true - }, function (err, data) { - if (err) return done(err); - assert.equal(data.url, wptServer + 'runtest.php?url=http%3A%2F%2Ftwitter.com%2Fmarcelduran&fvonly=1&netlog=1&pngss=1&location=Local_Firefox_Chrome%3AChrome&runs=3&label=test%20123&timeline=1&r=12345&f=json'); - done(); - }); - }); - - it('gets a customized waterfall image request with aliases', function(done) { - wpt.waterfall('120816_V2_2', { - type: 'connection', - mime: true, - width: 640, - max: 9, - R: '1,2,4,6-8', - C: true, - b: true, - noellipsis: true, - l: true, - dryRun: true - }, function (err, data) { - if (err) return done(err); - assert.equal(data.url, wptServer + 'waterfall.php?test=120816_V2_2&run=1&cached=0&type=connection&mime=1&width=640&max=9&dots=0&requests=1%2C2%2C4%2C6-8&cpu=0&bw=0&labels=0'); - done(); - }); - }); - - it('gets a screenshot thumbnail request with aliases', function(done) { - wpt.screenshot('120816_V2_2', { - cached: true, - r: 2, - t: true, - complete: true, - dryRun: true - }, function (err, data) { - if (err) return done(err); - assert.equal(data.url, wptServer + 'thumbnail.php?test=120816_V2_2&file=2_Cached_screen_doc.jpg&run=2&cached=1'); - done(); - }); - }); - - it('create a video', function (done) { - wpt.createVideo('130416_YS_KD4-r:3-c:1,130416_W6_KEE-r:8-c:1', {dryRun: true}, function (err, data) { - if (err) throw err; - assert.equal(data.url, wptServer + 'video/create.php?tests=130416_YS_KD4-r%3A3-c%3A1%2C130416_W6_KEE-r%3A8-c%3A1&f=json&end=visual'); - done(); - }); - }); - - it('create a video with document complete comparison end point', function (done) { - wpt.createVideo('130416_YS_KD4-r:3-c:1,130416_W6_KEE-r:8-c:1', {dryRun: true, comparisonEndPoint: 'doc'}, function (err, data) { - if (err) throw err; - assert.equal(data.url, wptServer + 'video/create.php?tests=130416_YS_KD4-r%3A3-c%3A1%2C130416_W6_KEE-r%3A8-c%3A1&f=json&end=doc'); - done(); - }); - }); - - it('get the url of an embedded video', function (done) { - wpt.getEmbedVideoPlayer('130416_36ed6e37013655a14b2b857cdccec99db72adcaa', {dryRun: true}, function (err, data) { - if (err) throw err; - assert.equal(data.url, wptServer + 'video/view.php?embed=1&id=130416_36ed6e37013655a14b2b857cdccec99db72adcaa'); - done(); - }); - }); - - it('get google csi', function(done) { - wpt.getGoogleCsiData('140101_AB_12', {dryRun: true}, function(err, data) { - if (err) throw err; - assert.equal(data.url, wptServer + 'google/google_csi.php?test=140101_AB_12'); - done(); - }); - }); - - it('get google csi run 3 cached', function(done) { - wpt.getGoogleCsiData('140101_AB_12', { - dryRun: true, - repeatView: true, - run: 3 - }, function(err, data) { - if (err) throw err; - assert.equal(data.url, wptServer + 'google/google_csi.php?test=140101_AB_12&run=3&cached=1'); - done(); - }); - }); - - it('get response body for first run first request', function(done) { - wpt.getResponseBody('140101_AB_12', {dryRun: true}, function(err, data) { - if (err) throw err; - assert.equal(data.url, wptServer + 'response_body.php?test=140101_AB_12&run=1&cached=0&request=1'); - done(); - }); - }); - - it('get response body for cached 3rd run 5th request', function(done) { - wpt.getResponseBody('140101_AB_12', { - dryRun: true, - repeatView: true, - run: 3, - request: 5 - }, function(err, data) { - if (err) throw err; - assert.equal(data.url, wptServer + 'response_body.php?test=140101_AB_12&run=3&cached=1&request=5'); - done(); - }); - }); - - }); -}); diff --git a/test/edge-cases-test.js b/test/edge-cases-test.js deleted file mode 100644 index e70a5ab..0000000 --- a/test/edge-cases-test.js +++ /dev/null @@ -1,192 +0,0 @@ -/** - * Copyright (c) 2013, Twitter Inc. - * Copyright (c) 2020, Google Inc. - * Copyright (c) 2020, Marcel Duran and other contributors - * Released under the MIT License - */ - -var assert = require('assert'), - os = require('os'), - WebPageTest = require('../lib/webpagetest'), - helper = require('../lib/helper') - -var wptServer = 'https://www.example.com:1234/foo/bar/'; -var MOCK_KEY = '0987654321'; - -describe('Edge Cases of', function() { - describe('An HTTPS WebPageTest Server with API key', function() { - var wpt = new WebPageTest(wptServer, '1234567890'); - - it('gets a simple test request with another HTTP server and API key then returns API url', function(done) { - wpt.runTest('http://foobar.com', { - server: 'http://wpt.com', - key: MOCK_KEY, - dryRun: true - }, function (err, data) { - if (err) return done(err); - assert.equal(data.url, 'http://wpt.com/runtest.php?url=http%3A%2F%2Ffoobar.com&k=0987654321&f=json'); - done(); - }); - }); - }); - - describe('An HTTP WebPageTest Server with API key', function() { - var wpt = new WebPageTest(wptServer, '1234567890'); - - it('gets a simple test request with another HTTPS server and API key then returns API url', function(done) { - wpt.runTest('http://foobar.com', { - server: 'https://wpt.com:4321/baz/', - key: MOCK_KEY, - dryRun: true - }, function (err, data) { - if (err) return done(err); - assert.equal(data.url, 'https://wpt.com:4321/baz/runtest.php?url=http%3A%2F%2Ffoobar.com&k=0987654321&f=json'); - done(); - }); - }); - }); - - describe('An Example WebPageTest Server', function() { - var wpt = new WebPageTest(wptServer); - - it('gets a test with blocking urls and spof array request then returns API url', function(done) { - wpt.runTest('http://foobar.com', { - dryRun: true, - block: ['foo.com', 'bar.com'], - spof: ['baz.com', 'qux.com'] - }, function (err, data) { - if (err) return done(err); - assert.equal(data.url, wptServer + 'runtest.php?url=http%3A%2F%2Ffoobar.com&block=foo.com%20bar.com&spof=baz.com%20qux.com&f=json'); - done(); - }); - }); - - it('gets a test with blocking urls and spof strings request then returns API url', function(done) { - wpt.runTest('http://foobar.com', { - dryRun: true, - block: 'foo.com bar.com', - spof: ['baz.com qux.com'] - }, function (err, data) { - if (err) return done(err); - assert.equal(data.url, wptServer + 'runtest.php?url=http%3A%2F%2Ffoobar.com&block=foo.com%20bar.com&spof=baz.com%20qux.com&f=json'); - done(); - }); - }); - - it('gets a test with dial up connectivity and location then returns API url with connectivity appended to location', function(done) { - wpt.runTest('http://foobar.com', { - dryRun: true, - connectivity: 'Dial', - location: 'somelocation' - }, function (err, data) { - if (err) return done(err); - assert.equal(data.url, wptServer + 'runtest.php?url=http%3A%2F%2Ffoobar.com&location=somelocation.Dial&connectivity=Dial&f=json'); - done(); - }); - }); - - it('gets a test with long custom metrics script then returns API url and payload with custom metrics data', function (done) { - wpt.runTest('http://foobar.com', { - dryRun: true, - mobile: 1, - http_method: 'POST', - custom: '[example]\n\\\\' + 'X'.repeat(10000) + '\nreturn 1;' - }, function (err, data) { - if (err) return done(err); - assert.equal(data.url, wptServer + 'runtest.php'); - assert.equal(data.form.length, 10089); - done(); - }); - }); - - }); - - describe('WebPageTest localhost helper', function() { - - it('when getting a valid hostname with port returns a localhost object with hostname and port', function() { - var localhost = helper.localhost('localhost:8000', 3000); - assert.equal(localhost.hostname, 'localhost'); - assert.equal(localhost.port, 8000); - }); - - it('when getting a valid hostname only returns a localhost object with hostname and default port', function() { - var localhost = helper.localhost('localhost', 3000); - assert.equal(localhost.hostname, 'localhost'); - assert.equal(localhost.port, 3000); - }); - - it('when getting a valid port only returns a localhost object with default hostname', function() { - var localhost = helper.localhost('8000', 3000); - assert.equal(localhost.hostname, os.hostname()); - assert.equal(localhost.port, 8000); - }); - - it('when getting an ip only returns a localhost object with hostname and default port', function() { - var localhost = helper.localhost('127.0.0.1', 3000); - assert.equal(localhost.hostname, '127.0.0.1'); - assert.equal(localhost.port, 3000); - }); - - it('when getting a valid hostname with invalid port returns a localhost object with hostname and default port', function() { - var localhost = helper.localhost('localhost:foo', 3000); - assert.equal(localhost.hostname, 'localhost'); - assert.equal(localhost.port, 3000); - }); - - it('when getting an invalid hostname with valid port returns a localhost object with hostname and default port', function() { - var localhost = helper.localhost('123:8000', 3000); - assert.equal(localhost.hostname, os.hostname()); - assert.equal(localhost.port, 8000); - }); - - it('when getting a valid hostname with no port returns a localhost object with hostname and default port', function() { - var localhost = helper.localhost('localhost:', 3000); - assert.equal(localhost.hostname, 'localhost'); - assert.equal(localhost.port, 3000); - }); - - it('when getting no hostname with valid port returns a localhost object with hostname and default port', function() { - var localhost = helper.localhost(':8000', 3000); - assert.equal(localhost.hostname, os.hostname()); - assert.equal(localhost.port, 8000); - }); - - }); - - describe('WebPageTest normalizeServer helper', function() { - - it('when getting a valid standard server uri returns server info object', function() { - var server = helper.normalizeServer('example.com'); - assert.deepEqual(server, { - auth: null, - protocol: 'http:', - hostname: 'example.com', - pathname: '/', - port: 80 - }); - }); - - it('when getting a valid full server uri returns server info object', function() { - var server = helper.normalizeServer('http://foo:bar@example.com:8000/foo'); - assert.deepEqual(server, { - auth: 'foo:bar', - protocol: 'http:', - hostname: 'example.com', - pathname: '/foo', - port: 8000 - }); - }); - - it('when getting a https server uri returns server info object', function() { - var server = helper.normalizeServer('https://example.com'); - assert.deepEqual(server, { - auth: null, - protocol: 'https:', - hostname: 'example.com', - pathname: '/', - port: 443 - }); - }); - - }); -}); diff --git a/test/fixtures/batch.txt b/test/fixtures/batch.txt deleted file mode 100644 index 90970da..0000000 --- a/test/fixtures/batch.txt +++ /dev/null @@ -1,3 +0,0 @@ -status 120816_V2_2 -d -s https://www.example.com:1234/foo/bar/ -results 120816_V2_2 -d -s https://www.example.com:1234/foo/bar/ -screenshot 120816_V2_2 -d -s https://www.example.com:1234/foo/bar/ \ No newline at end of file diff --git a/test/fixtures/command-line/help.txt b/test/fixtures/command-line/help.txt deleted file mode 100644 index 000c1fd..0000000 --- a/test/fixtures/command-line/help.txt +++ /dev/null @@ -1,54 +0,0 @@ -Usage: webpagetest [options] [command] - -Options: - -V, --version output the version number - -s, --server the WPT server URL - [https://www.webpagetest.org] - -d, --dryrun just return the RESTful API URL - --http_method HTTP method to use for submitting the test - (GET or POST) [GET] - -o, --out place the output into . Defaults to - stdout - -h, --help display help for command - -Commands: - status [options] check test status - results [options] get test results - locations [options] list locations and the number of pending - tests - testBalance [options] get remaining tests for the account - testers [options] list testers status and details - test [options] run test - testAndWait [options] run test and waits for the result - restart [options] restart test - cancel [options] cancel running/pending test - har get the HTTP Archive (HAR) from test - pagespeed [options] get the Google Page Speed results (if - available) from test - utilization [options] get the CPU, bandwidth and memory - utilization data from test - request [options] get the request data from test - timeline [options] get the Chrome Developer Tools Timeline - data (if available) from test - netlog [options] get the Chrome Developer Tools Net log - data (if available) from test - chrometrace [options] get the Chrome Trace data (if available) - from test - console [options] get the browser console log data (if - available) from test - testinfo get test request info/details - history [days] get history of previously run tests - googlecsi [options] get Google CSI data (Client Side - Instrumentation) - response [options] get response body for text resources - waterfall [options] get the waterfall PNG image - screenshot [options] get the fully loaded page screenshot in - JPG format (PNG if in full resolution) - video [options] create a video from (comma - separated test ids) - player get a html5 player for a video - listen [options] [hostname:port] start webpagetest-api proxy server on - : [hostname:7791] - batch run commands in batch, i.e. one command - per line from in parallel - help [command] display help for command diff --git a/test/fixtures/objects/cancel.json b/test/fixtures/objects/cancel.json deleted file mode 100644 index 7f03402..0000000 --- a/test/fixtures/objects/cancel.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "result": "Test cancelled!" -} \ No newline at end of file diff --git a/test/fixtures/objects/cancelNotCancelled.json b/test/fixtures/objects/cancelNotCancelled.json deleted file mode 100644 index 2ee7157..0000000 --- a/test/fixtures/objects/cancelNotCancelled.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "result": "Sorry, the test could not be cancelled. It may have already started or been cancelled" -} \ No newline at end of file diff --git a/test/fixtures/objects/consoleLog.json b/test/fixtures/objects/consoleLog.json deleted file mode 100644 index 7da178c..0000000 --- a/test/fixtures/objects/consoleLog.json +++ /dev/null @@ -1,58 +0,0 @@ -[ - { - "level": "log", - "line": 4, - "parameters": [ - { - "type": "string", - "value": "foo" - }, - { - "description": "0", - "type": "number", - "value": 0 - } - ], - "repeatCount": 1, - "source": "console-api", - "stackTrace": [ - { - "columnNumber": 15, - "functionName": "", - "lineNumber": 4, - "url": "http://host.com:8000/" - } - ], - "text": "foo", - "type": "log", - "url": "http://host.com:8000/" - }, - { - "level": "log", - "line": 10, - "parameters": [ - { - "type": "string", - "value": "bar" - }, - { - "description": "1", - "type": "number", - "value": 1 - } - ], - "repeatCount": 1, - "source": "console-api", - "stackTrace": [ - { - "columnNumber": 15, - "functionName": "", - "lineNumber": 10, - "url": "http://host.com:8000/" - } - ], - "text": "bar", - "type": "log", - "url": "http://host.com:8000/" - } -] diff --git a/test/fixtures/objects/createVideo.json b/test/fixtures/objects/createVideo.json deleted file mode 100644 index 239fa1f..0000000 --- a/test/fixtures/objects/createVideo.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "statusCode":200, - "statusText":"Ok", - "data":{ - "videoId":"130416_36ed6e37013655a14b2b857cdccec99db72adcaa", - "jsonUrl":"http:\/\/www.webpagetest.org\/video\/view.php?f=json&id=130416_36ed6e37013655a14b2b857cdccec99db72adcaa", - "userUrl":"http:\/\/www.webpagetest.org\/video\/view.php?id=130416_36ed6e37013655a14b2b857cdccec99db72adcaa" - } -} diff --git a/test/fixtures/objects/embeddedVideoPlayer.html b/test/fixtures/objects/embeddedVideoPlayer.html deleted file mode 100644 index ce25f21..0000000 --- a/test/fixtures/objects/embeddedVideoPlayer.html +++ /dev/null @@ -1,56 +0,0 @@ - - - - -WebPagetest - Visual Comparison - Apr 30, 2013 : , - - - - - -
- - -
- - - diff --git a/test/fixtures/objects/googleCsiData.json b/test/fixtures/objects/googleCsiData.json deleted file mode 100644 index 222a762..0000000 --- a/test/fixtures/objects/googleCsiData.json +++ /dev/null @@ -1,83 +0,0 @@ -[ - { - "id": "140101_AB_12", - "run": "1", - "cached": "false", - "service": "myservice", - "action": "var1,var2", - "variable": "foo", - "value": "123" - }, - { - "id": "140101_AB_12", - "run": "1", - "cached": "false", - "service": "myservice", - "action": "var1,var2", - "variable": "bar", - "value": "456" - }, - { - "id": "140101_AB_12", - "run": "1", - "cached": "false", - "service": "myservice", - "action": "var1,var2", - "variable": "baz", - "value": "789" - }, - { - "id": "140101_AB_12", - "run": "2", - "cached": "false", - "service": "myservice", - "action": "var1,var2", - "variable": "foo", - "value": "234" - }, - { - "id": "140101_AB_12", - "run": "2", - "cached": "false", - "service": "myservice", - "action": "var1,var2", - "variable": "bar", - "value": "567" - }, - { - "id": "140101_AB_12", - "run": "2", - "cached": "false", - "service": "myservice", - "action": "var1,var2", - "variable": "baz", - "value": "890" - }, - { - "id": "140101_AB_12", - "run": "3", - "cached": "false", - "service": "myservice", - "action": "var1,var2", - "variable": "foo", - "value": "345" - }, - { - "id": "140101_AB_12", - "run": "3", - "cached": "false", - "service": "myservice", - "action": "var1,var2", - "variable": "bar", - "value": "678" - }, - { - "id": "140101_AB_12", - "run": "3", - "cached": "false", - "service": "myservice", - "action": "var1,var2", - "variable": "baz", - "value": "901" - } -] diff --git a/test/fixtures/objects/googleCsiDataRun2.json b/test/fixtures/objects/googleCsiDataRun2.json deleted file mode 100644 index 9d1de46..0000000 --- a/test/fixtures/objects/googleCsiDataRun2.json +++ /dev/null @@ -1,29 +0,0 @@ -[ - { - "id": "140101_AB_12", - "run": "2", - "cached": "false", - "service": "myservice", - "action": "var1,var2", - "variable": "foo", - "value": "234" - }, - { - "id": "140101_AB_12", - "run": "2", - "cached": "false", - "service": "myservice", - "action": "var1,var2", - "variable": "bar", - "value": "567" - }, - { - "id": "140101_AB_12", - "run": "2", - "cached": "false", - "service": "myservice", - "action": "var1,var2", - "variable": "baz", - "value": "890" - } -] diff --git a/test/fixtures/objects/har.json b/test/fixtures/objects/har.json deleted file mode 100644 index ead4609..0000000 --- a/test/fixtures/objects/har.json +++ /dev/null @@ -1,15114 +0,0 @@ -{ - "log": { - "version": "1.1", - "creator": { - "name": "WebPagetest", - "version": "1.8" - }, - "pages": [ - { - "startedDateTime": "2012-08-16T18:27:29.000+00:00", - "title": "Run 1, First View for ", - "id": "page_1_0", - "pageTimings": { - "onLoad": 13701, - "onContentLoad": -1 - } - }, - { - "startedDateTime": "2012-08-16T18:28:03.000+00:00", - "title": "Run 2, First View for ", - "id": "page_2_0", - "pageTimings": { - "onLoad": 10972, - "onContentLoad": -1 - } - }, - { - "startedDateTime": "2012-08-16T18:28:34.000+00:00", - "title": "Run 3, First View for ", - "id": "page_3_0", - "pageTimings": { - "onLoad": 12182, - "onContentLoad": -1 - } - } - ], - "browser": { - "name": "Google Chrome", - "version": "21.0.1180.79" - }, - "entries": [ - { - "pageref": "page_1_0", - "startedDateTime": "2012-08-16T18:27:29.994+00:00", - "time": 1491, - "request": { - "method": "GET", - "url": "https://twitter.com/", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "twitter.com" - }, - { - "name": "Referer", - "value": "http://twitter.com/" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-length", - "value": "29987" - }, - { - "name": "content-type", - "value": "text/html; charset=utf-8" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:27:30 GMT" - }, - { - "name": "etag", - "value": "\"61a4e7a628026c36523233df86d2bcaa\"" - }, - { - "name": "expires", - "value": "Tue, 31 Mar 1981 05:00:00 GMT" - }, - { - "name": "last-modified", - "value": "Thu, 16 Aug 2012 18:27:30 GMT" - }, - { - "name": "pragma", - "value": "no-cache" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "set-cookie", - "value": "dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:27:30 GMT" - }, - { - "name": "set-cookie", - "value": "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT" - }, - { - "name": "set-cookie", - "value": "_twitter_sess=BAh7DyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo%250ASGFzaHsABjoKQHVzZWR7ADoTc2hvd19oZWxwX2xpbmswOg9jcmVhdGVkX2F0%250AbCsIPo6wMDkBOgxjc3JmX2lkIiU5NTc0NmMwZDYzYzlhMjFjZWY1MGQ0ZWUz%250AMjA3NDk4MToQc3RheV9zZWN1cmVUOhNwYXNzd29yZF90b2tlbiItNWMxZTk5%250AODg2Mzc1MWQxZTJmYzlkYzIyMjA0ZTBkZWRhN2Q1ZDg5Yjobc2Vzc2lvbl9w%250AYXNzd29yZF90b2tlbiItNWMxZTk5ODg2Mzc1MWQxZTJmYzlkYzIyMjA0ZTBk%250AZWRhN2Q1ZDg5YjoJdXNlcmkEZc%252FoFzoHaWQiJTE5OGQ5N2M0OTk2NzUyMWQ2%250AMDNjZDAzMTMwNGFjZmE4OhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--81eaebfc4901aa122a8c75211ef959e385c7c842; domain=.twitter.com; path=/; secure; HttpOnly" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "strict-transport-security", - "value": "max-age=631138519" - }, - { - "name": "vary", - "value": "Accept-Encoding" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-mid", - "value": "17c6f45205128406d64318e3d4c79c0dcff838c2" - }, - { - "name": "x-runtime", - "value": "0.37937" - }, - { - "name": "x-transaction", - "value": "e300bdd8681d7255" - }, - { - "name": "x-xss-protection", - "value": "1; mode=block" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "text/html" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 1347, - "receive": 144 - } - }, - { - "pageref": "page_1_0", - "startedDateTime": "2012-08-16T18:27:31.432+00:00", - "time": 1210, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/a/1345133470/t1/css/t1_core.bundle.css", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "text/css,*/*;q=0.1" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "h8z9Td/7D2oElkR+lOzR2DPSTCy8F5l9vNLkq+TyEMF1w3LyX7ayxtfe6dslwWV3" - }, - { - "name": "x-amz-request-id", - "value": "295BF01C9B4AEE58" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:27:31 GMT" - }, - { - "name": "Last-Modified", - "value": "Thu, 16 Aug 2012 16:15:41 GMT" - }, - { - "name": "ETag", - "value": "\"59337cd26ece9dbdc2d36eaa667efb4c\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "text/css" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Content-Encoding", - "value": "gzip" - }, - { - "name": "Vary", - "value": "Accept-Encoding" - }, - { - "name": "Content-Length", - "value": "27926" - }, - { - "name": "Cache-Control", - "value": "private, max-age=31449600" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 15 Aug 2013 18:27:31 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "text/css" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": 470, - "ssl": 301, - "send": 0, - "wait": 594, - "receive": 146 - } - }, - { - "pageref": "page_1_0", - "startedDateTime": "2012-08-16T18:27:32.189+00:00", - "time": 1204, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/profile_images/2505588755/fo9wp35195hierdes2f5_normal.png", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "4+6eT2FAPhe49n4yxrbBSx22g37ylaFgzzwosHp5Qtev6bSu3Q5Bf1pRPo4qwxay" - }, - { - "name": "x-amz-request-id", - "value": "EFCECBDEDFE5608E" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:27:32 GMT" - }, - { - "name": "Last-Modified", - "value": "Wed, 15 Aug 2012 00:08:00 GMT" - }, - { - "name": "ETag", - "value": "\"2df6ad4d14cd84ebb56be69f4e838fcc\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/png" - }, - { - "name": "Content-Length", - "value": "3273" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=604800" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 23 Aug 2012 18:27:32 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/png" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": 499, - "ssl": -1, - "send": 0, - "wait": 671, - "receive": 34 - } - }, - { - "pageref": "page_1_0", - "startedDateTime": "2012-08-16T18:27:32.190+00:00", - "time": 1304, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/profile_images/1804416058/43776868-4e4e-45cc-b91c-7ec1b6f350aa_normal.png", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "scz9/mAalAfnDOTjmTH6/7Z2QBtURR49Qp1Vx356nHEePb+Now2o2kftmfoQPc5x" - }, - { - "name": "x-amz-request-id", - "value": "769DC651FEBEC1EE" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:27:32 GMT" - }, - { - "name": "Last-Modified", - "value": "Sat, 04 Feb 2012 21:42:09 GMT" - }, - { - "name": "ETag", - "value": "\"145b79a3a79e37520432d48a880b7e97\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/png" - }, - { - "name": "Content-Length", - "value": "5456" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=604800" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 23 Aug 2012 18:27:32 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/png" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": 520, - "ssl": -1, - "send": 0, - "wait": 681, - "receive": 103 - } - }, - { - "pageref": "page_1_0", - "startedDateTime": "2012-08-16T18:27:32.191+00:00", - "time": 1375, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/profile_images/2466871092/image_normal.jpg", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "7NEj14/u5J9sQNw3RlNMXtVpVYhZRJ74FUrqMsr8JfaAlp4WB8zSMVPYnrOZYPTy" - }, - { - "name": "x-amz-request-id", - "value": "5A5B0C1EC30B7ED4" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:27:32 GMT" - }, - { - "name": "Last-Modified", - "value": "Sat, 04 Aug 2012 13:11:29 GMT" - }, - { - "name": "ETag", - "value": "\"da79b27a7964b450de35597d1e47d5b4\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/jpeg" - }, - { - "name": "Content-Length", - "value": "1453" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=604800" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 23 Aug 2012 18:27:32 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/jpeg" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": 610, - "ssl": -1, - "send": 0, - "wait": 765, - "receive": 0 - } - }, - { - "pageref": "page_1_0", - "startedDateTime": "2012-08-16T18:27:32.192+00:00", - "time": 752, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "0EjGO3bb9WTEKhVNvYGh6b9jQeFAgihPIZQ/NbsiNt4kHj/25ceaF3X2lBegMBgJ" - }, - { - "name": "x-amz-request-id", - "value": "847A950EA4FC8B09" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:27:32 GMT" - }, - { - "name": "Last-Modified", - "value": "Thu, 26 May 2011 01:08:30 GMT" - }, - { - "name": "ETag", - "value": "\"46d5128c6bf7ee8b66257b966b8c883e\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/png" - }, - { - "name": "Content-Length", - "value": "1381" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=604800" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 23 Aug 2012 18:27:32 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/png" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": 245, - "ssl": 128, - "send": 0, - "wait": 505, - "receive": 2 - } - }, - { - "pageref": "page_1_0", - "startedDateTime": "2012-08-16T18:27:32.192+00:00", - "time": 870, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/a/1345133470/t1/img/twitter_web_sprite_bgs.png", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "1ZsOeVxpeSixQ9eUW7vBdJdVCjmOMLvDgu+ZczTLzbuHnDuFrUQWBQ2ptp+b0R3Z" - }, - { - "name": "x-amz-request-id", - "value": "7B74D4B95ECA0474" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:27:32 GMT" - }, - { - "name": "Last-Modified", - "value": "Thu, 16 Aug 2012 16:15:41 GMT" - }, - { - "name": "ETag", - "value": "\"dc43d8feef9a6f6bc87fb56f2810bb1f\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/png" - }, - { - "name": "Content-Length", - "value": "6602" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=604800" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 23 Aug 2012 18:27:32 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/png" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": 249, - "ssl": 126, - "send": 0, - "wait": 506, - "receive": 115 - } - }, - { - "pageref": "page_1_0", - "startedDateTime": "2012-08-16T18:27:32.198+00:00", - "time": 1904, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/a/1345133470/t1/img/twitter_web_sprite_icons.png", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "SZn+2XyAEy/JSLDLuF11DB+EDMyWDFXzXTUO3/W8freAaTH9AHevOJCsbnzmaPIf" - }, - { - "name": "x-amz-request-id", - "value": "49499E48F469851C" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:27:32 GMT" - }, - { - "name": "Last-Modified", - "value": "Thu, 16 Aug 2012 16:15:39 GMT" - }, - { - "name": "ETag", - "value": "\"223836604d80c5faa4079d6e5554cfbb\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/png" - }, - { - "name": "Content-Length", - "value": "65084" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=604800" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 23 Aug 2012 18:27:32 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/png" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": 245, - "ssl": 126, - "send": 0, - "wait": 515, - "receive": 1144 - } - }, - { - "pageref": "page_1_0", - "startedDateTime": "2012-08-16T18:27:32.209+00:00", - "time": 801, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/a/1345133470/t1/img/wash-white-30.png", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "PFDD6lGbbBN8+gH2sMpnliksoIUhfjlUM9mZKggE2bF9ZtN21zxiMfj+Ibksdm4F" - }, - { - "name": "x-amz-request-id", - "value": "8A67F9C4834A8872" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:27:32 GMT" - }, - { - "name": "Last-Modified", - "value": "Thu, 16 Aug 2012 16:15:39 GMT" - }, - { - "name": "ETag", - "value": "\"bc953c554d5f0ab6402865969e7244b4\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/png" - }, - { - "name": "Content-Length", - "value": "940" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=604800" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 23 Aug 2012 18:27:32 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/png" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": 269, - "ssl": 152, - "send": 0, - "wait": 532, - "receive": 0 - } - }, - { - "pageref": "page_1_0", - "startedDateTime": "2012-08-16T18:27:32.294+00:00", - "time": 661, - "request": { - "method": "GET", - "url": "https://api.twitter.com/receiver.html", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "api.twitter.com" - }, - { - "name": "Accept", - "value": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "max-age=300" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-type", - "value": "text/html; charset=UTF-8" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:27:32 GMT" - }, - { - "name": "expires", - "value": "Thu, 16 Aug 2012 18:32:32 GMT" - }, - { - "name": "last-modified", - "value": "Wed, 15 Aug 2012 21:05:50 GMT" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "vary", - "value": "Accept-Encoding" - }, - { - "name": "version", - "value": "HTTP/1.1" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "text/html" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": 287, - "ssl": 228, - "send": 0, - "wait": 370, - "receive": 4 - } - }, - { - "pageref": "page_1_0", - "startedDateTime": "2012-08-16T18:27:32.380+00:00", - "time": 2929, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "0vpG/0wtJEp7TOqdtyiR/AYji7s/2lD7r3rbMX/0Dp4pD1I9sUYM5mHLIsmf6o1x" - }, - { - "name": "x-amz-request-id", - "value": "A54095D1E835D86D" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:27:32 GMT" - }, - { - "name": "Last-Modified", - "value": "Thu, 16 Aug 2012 00:09:08 GMT" - }, - { - "name": "ETag", - "value": "\"4b3ce8775717a723bf0673ba11e197fb\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "application/javascript" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Content-Encoding", - "value": "gzip" - }, - { - "name": "Vary", - "value": "Accept-Encoding" - }, - { - "name": "Content-Length", - "value": "179563" - }, - { - "name": "Cache-Control", - "value": "private, max-age=31449600" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 15 Aug 2013 18:27:32 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "application/javascript" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": 137, - "ssl": 125, - "send": 0, - "wait": 396, - "receive": 2396 - } - }, - { - "pageref": "page_1_0", - "startedDateTime": "2012-08-16T18:27:32.550+00:00", - "time": 9012, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/profile_background_images/594970743/ht90irx2ejrvh0xqpjjb.jpeg", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "uFRhiBVDHHXu6Xn0edW4PU3j52UrfVMHBda00LkFkJ7LuV895qm4mYEdei8AwRLo" - }, - { - "name": "x-amz-request-id", - "value": "AFF767D128C8A8FE" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:27:31 GMT" - }, - { - "name": "Last-Modified", - "value": "Tue, 03 Jul 2012 18:45:18 GMT" - }, - { - "name": "ETag", - "value": "\"6883b757d4b1a38d9f16b0a724ab208e\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/jpeg" - }, - { - "name": "Content-Length", - "value": "916044" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=604800" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 23 Aug 2012 18:27:31 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/jpeg" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 123, - "receive": 8889 - } - }, - { - "pageref": "page_1_0", - "startedDateTime": "2012-08-16T18:27:35.385+00:00", - "time": 252, - "request": { - "method": "GET", - "url": "https://api.twitter.com/1/saved_searches.json", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "api.twitter.com" - }, - { - "name": "Accept", - "value": "application/json, text/javascript, */*; q=0.01" - }, - { - "name": "Referer", - "value": "https://api.twitter.com/receiver.html" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "X-PHX", - "value": "true" - }, - { - "name": "X-Requested-With", - "value": "XMLHttpRequest" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-length", - "value": "22" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:27:35 GMT" - }, - { - "name": "etag", - "value": "\"d751713988987e9331980363e24189ce\"" - }, - { - "name": "expires", - "value": "Tue, 31 Mar 1981 05:00:00 GMT" - }, - { - "name": "last-modified", - "value": "Thu, 16 Aug 2012 18:27:35 GMT" - }, - { - "name": "pragma", - "value": "no-cache" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "set-cookie", - "value": "original_referer=padhuUp37zigs9eJTisr5PnVtwPa2Ks3aYGytRQKC2hhgexXtH6h6g%3D%3D; path=/" - }, - { - "name": "set-cookie", - "value": "dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:27:35 GMT" - }, - { - "name": "set-cookie", - "value": "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT" - }, - { - "name": "set-cookie", - "value": "lang=pt; path=/" - }, - { - "name": "set-cookie", - "value": "_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCD6OsDA5AToTcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6EHN0YXlf%250Ac2VjdXJlVDoMY3NyZl9pZCIlOTU3NDZjMGQ2M2M5YTIxY2VmNTBkNGVlMzIw%250ANzQ5ODEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFz%250AaEhhc2h7AAY6CkB1c2VkewA6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6CXVzZXJp%250ABGXP6Bc6B2lkIiUxOThkOTdjNDk5Njc1MjFkNjAzY2QwMzEzMDRhY2ZhODoT%250Ac2hvd19oZWxwX2xpbmswOhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--0201f13306e9f1ad6db9f2f7608d7f97174e427d; domain=.twitter.com; path=/; secure; HttpOnly" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "vary", - "value": "Accept-Encoding" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-mid", - "value": "6e8450a830128122e46d7b2eccae57d078e9af04" - }, - { - "name": "x-ratelimit-class", - "value": "api" - }, - { - "name": "x-ratelimit-limit", - "value": "150" - }, - { - "name": "x-ratelimit-remaining", - "value": "150" - }, - { - "name": "x-ratelimit-reset", - "value": "1345141872" - }, - { - "name": "x-runtime", - "value": "0.02280" - }, - { - "name": "x-transaction", - "value": "b76691d4fd6d62b4" - }, - { - "name": "x-transaction-mask", - "value": "a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "application/json" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 252, - "receive": -1 - } - }, - { - "pageref": "page_1_0", - "startedDateTime": "2012-08-16T18:27:35.643+00:00", - "time": 181, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/a/1345133470/t1/img/loader.gif", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "51RcqEB8zjhSx8FJnPr3ZlHR2hZg4JEw7Z8Jn7Rd9VzS6INKwP8vyXPXBCrpKMVy" - }, - { - "name": "x-amz-request-id", - "value": "182C1108AD43EB11" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:27:35 GMT" - }, - { - "name": "Last-Modified", - "value": "Thu, 16 Aug 2012 16:15:40 GMT" - }, - { - "name": "ETag", - "value": "\"faf550cb80c83c14e5176f61e1bb6239\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/gif" - }, - { - "name": "Content-Length", - "value": "4178" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=31449600" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 15 Aug 2013 18:27:35 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/gif" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 156, - "receive": 25 - } - }, - { - "pageref": "page_1_0", - "startedDateTime": "2012-08-16T18:27:35.644+00:00", - "time": 138, - "request": { - "method": "GET", - "url": "https://api.twitter.com/1/promoted_content/27/log.png?impression_id=18585a97d622a74b", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "api.twitter.com" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - } - ], - "httpVersion": "1.1", - "queryString": [ - { - "name": "impression_id", - "value": "18585a97d622a74b" - } - ] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" - }, - { - "name": "content-length", - "value": "1" - }, - { - "name": "content-transfer-encoding", - "value": "binary" - }, - { - "name": "content-type", - "value": "image/png" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:27:35 GMT" - }, - { - "name": "etag", - "value": "\"7215ee9c7d9dc229d2921a40e899ec5f\"" - }, - { - "name": "expires", - "value": "Tue, 31 Mar 1981 05:00:00 GMT" - }, - { - "name": "last-modified", - "value": "Thu, 16 Aug 2012 18:27:35 GMT" - }, - { - "name": "pragma", - "value": "no-cache" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "set-cookie", - "value": "dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:27:35 GMT" - }, - { - "name": "set-cookie", - "value": "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT" - }, - { - "name": "set-cookie", - "value": "_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCD6OsDA5AToMY3NyZl9pZCIlOTU3NDZjMGQ2%250AM2M5YTIxY2VmNTBkNGVlMzIwNzQ5ODE6EHN0YXlfc2VjdXJlVDoTcGFzc3dv%250AcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdk%250ANWQ4OWI6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFk%250AMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6CXVzZXJpBGXP6BciCmZsYXNo%250ASUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhhc2h7AAY6CkB1%250Ac2VkewA6E3Nob3dfaGVscF9saW5rMDoHaWQiJTE5OGQ5N2M0OTk2NzUyMWQ2%250AMDNjZDAzMTMwNGFjZmE4OhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--b0bec636f1111f95dbf26ff746a311959c61ca93; domain=.twitter.com; path=/; secure; HttpOnly" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-mid", - "value": "82c22f9863bace4aceebc14038d5525bca3d5980" - }, - { - "name": "x-runtime", - "value": "0.01756" - }, - { - "name": "x-transaction", - "value": "b2ca2ee2f48e283d" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/png" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 128, - "receive": 10 - } - }, - { - "pageref": "page_1_0", - "startedDateTime": "2012-08-16T18:27:35.646+00:00", - "time": 4412, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/c/phoenix/pt/bundle/t1-more.7cc751ba2c21e9a6c6b2303739b6c255dbd458a7.js", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "TXbWBH9+gUFymJhD1NMd3fcCy07rk/qzxY1DfKBoXm8IASOjcijGeNv83cLVIpa1" - }, - { - "name": "x-amz-request-id", - "value": "179190B3D40BA2F4" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:27:35 GMT" - }, - { - "name": "Last-Modified", - "value": "Thu, 16 Aug 2012 00:09:06 GMT" - }, - { - "name": "ETag", - "value": "\"ae65bec57dbceda1ae68d40c43ba1a99\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "application/javascript" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Content-Encoding", - "value": "gzip" - }, - { - "name": "Vary", - "value": "Accept-Encoding" - }, - { - "name": "Content-Length", - "value": "388038" - }, - { - "name": "Cache-Control", - "value": "private, max-age=31449600" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 15 Aug 2013 18:27:35 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "application/javascript" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 171, - "receive": 4241 - } - }, - { - "pageref": "page_1_0", - "startedDateTime": "2012-08-16T18:27:40.410+00:00", - "time": 481, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/a/1345133470/t1/css/t1_more.bundle.css", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "text/css,*/*;q=0.1" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "WeesZkhxFaLfaTUc5LfTFkKlsTZr33TONDtAMU2omKh8L9sP0mLFiFf9n+YvVXpp" - }, - { - "name": "x-amz-request-id", - "value": "C23C30A35C9BCDE3" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:27:40 GMT" - }, - { - "name": "Last-Modified", - "value": "Thu, 16 Aug 2012 16:15:40 GMT" - }, - { - "name": "ETag", - "value": "\"3f3602e820e9ee9471e24f73c15a9a8d\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "text/css" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Content-Encoding", - "value": "gzip" - }, - { - "name": "Vary", - "value": "Accept-Encoding" - }, - { - "name": "Content-Length", - "value": "32957" - }, - { - "name": "Cache-Control", - "value": "private, max-age=31449600" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 15 Aug 2013 18:27:40 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "text/css" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 139, - "receive": 342 - } - }, - { - "pageref": "page_1_0", - "startedDateTime": "2012-08-16T18:27:41.358+00:00", - "time": 221, - "request": { - "method": "GET", - "url": "https://api.twitter.com/1/direct_messages.json?count=50&include_entities=true", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "api.twitter.com" - }, - { - "name": "Accept", - "value": "application/json, text/javascript, */*; q=0.01" - }, - { - "name": "Referer", - "value": "https://api.twitter.com/receiver.html" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "X-PHX", - "value": "true" - }, - { - "name": "X-Requested-With", - "value": "XMLHttpRequest" - } - ], - "httpVersion": "1.1", - "queryString": [ - { - "name": "count", - "value": "50" - }, - { - "name": "include_entities", - "value": "true" - } - ] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-length", - "value": "928" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:27:40 GMT" - }, - { - "name": "etag", - "value": "\"609b75034f913260b2698796fd053f97\"" - }, - { - "name": "expires", - "value": "Tue, 31 Mar 1981 05:00:00 GMT" - }, - { - "name": "last-modified", - "value": "Thu, 16 Aug 2012 18:27:40 GMT" - }, - { - "name": "pragma", - "value": "no-cache" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "set-cookie", - "value": "dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:27:40 GMT" - }, - { - "name": "set-cookie", - "value": "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT" - }, - { - "name": "set-cookie", - "value": "_twitter_sess=BAh7DzoTc2hvd19oZWxwX2xpbmswOg9jcmVhdGVkX2F0bCsIPo6wMDkBOhNw%250AYXNzd29yZF90b2tlbiItNWMxZTk5ODg2Mzc1MWQxZTJmYzlkYzIyMjA0ZTBk%250AZWRhN2Q1ZDg5YjoQc3RheV9zZWN1cmVUOgxjc3JmX2lkIiU5NTc0NmMwZDYz%250AYzlhMjFjZWY1MGQ0ZWUzMjA3NDk4MTobc2Vzc2lvbl9wYXNzd29yZF90b2tl%250AbiItNWMxZTk5ODg2Mzc1MWQxZTJmYzlkYzIyMjA0ZTBkZWRhN2Q1ZDg5YiIK%250AZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsA%250ABjoKQHVzZWR7ADoJdXNlcmkEZc%252FoFzoHaWQiJTE5OGQ5N2M0OTk2NzUyMWQ2%250AMDNjZDAzMTMwNGFjZmE4OhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--1cb67294f303b454e4cc27b207bcec031b96ca99; domain=.twitter.com; path=/; secure; HttpOnly" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "vary", - "value": "Accept-Encoding" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-mid", - "value": "d51f56ddf31c9419aeaf0f21fb5a84e22dbd6e4b" - }, - { - "name": "x-ratelimit-class", - "value": "api" - }, - { - "name": "x-ratelimit-limit", - "value": "150" - }, - { - "name": "x-ratelimit-remaining", - "value": "150" - }, - { - "name": "x-ratelimit-reset", - "value": "1345141872" - }, - { - "name": "x-runtime", - "value": "0.01969" - }, - { - "name": "x-transaction", - "value": "1f37960d3b6bb01a" - }, - { - "name": "x-transaction-mask", - "value": "a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "application/json" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 221, - "receive": 0 - } - }, - { - "pageref": "page_1_0", - "startedDateTime": "2012-08-16T18:27:41.363+00:00", - "time": 221, - "request": { - "method": "GET", - "url": "https://api.twitter.com/1/direct_messages/sent.json?count=50&include_entities=true", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "api.twitter.com" - }, - { - "name": "Accept", - "value": "application/json, text/javascript, */*; q=0.01" - }, - { - "name": "Referer", - "value": "https://api.twitter.com/receiver.html" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "X-PHX", - "value": "true" - }, - { - "name": "X-Requested-With", - "value": "XMLHttpRequest" - } - ], - "httpVersion": "1.1", - "queryString": [ - { - "name": "count", - "value": "50" - }, - { - "name": "include_entities", - "value": "true" - } - ] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-length", - "value": "935" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:27:41 GMT" - }, - { - "name": "etag", - "value": "\"f613d3f7346e4c1a034485dc484b4bda\"" - }, - { - "name": "expires", - "value": "Tue, 31 Mar 1981 05:00:00 GMT" - }, - { - "name": "last-modified", - "value": "Thu, 16 Aug 2012 18:27:41 GMT" - }, - { - "name": "pragma", - "value": "no-cache" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "set-cookie", - "value": "dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:27:41 GMT" - }, - { - "name": "set-cookie", - "value": "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT" - }, - { - "name": "set-cookie", - "value": "_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCD6OsDA5ASIKZmxhc2hJQzonQWN0aW9uQ29u%250AdHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7ADoTcGFzc3dv%250AcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdk%250ANWQ4OWI6EHN0YXlfc2VjdXJlVDoMY3NyZl9pZCIlOTU3NDZjMGQ2M2M5YTIx%250AY2VmNTBkNGVlMzIwNzQ5ODE6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6CXVzZXJp%250ABGXP6Bc6E3Nob3dfaGVscF9saW5rMDoHaWQiJTE5OGQ5N2M0OTk2NzUyMWQ2%250AMDNjZDAzMTMwNGFjZmE4OhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--c15a9843548aeff0455f07a79fc640b6d008d702; domain=.twitter.com; path=/; secure; HttpOnly" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "vary", - "value": "Accept-Encoding" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-mid", - "value": "01f5170eccc9596ea628f9b84c58511d98edde75" - }, - { - "name": "x-ratelimit-class", - "value": "api" - }, - { - "name": "x-ratelimit-limit", - "value": "150" - }, - { - "name": "x-ratelimit-remaining", - "value": "150" - }, - { - "name": "x-ratelimit-reset", - "value": "1345141872" - }, - { - "name": "x-runtime", - "value": "0.02071" - }, - { - "name": "x-transaction", - "value": "eaf263852f4482c9" - }, - { - "name": "x-transaction-mask", - "value": "a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "application/json" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 221, - "receive": 0 - } - }, - { - "pageref": "page_1_0", - "startedDateTime": "2012-08-16T18:27:41.392+00:00", - "time": 189, - "request": { - "method": "GET", - "url": "https://api.twitter.com/1/saved_searches.json", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "api.twitter.com" - }, - { - "name": "Accept", - "value": "application/json, text/javascript, */*; q=0.01" - }, - { - "name": "Referer", - "value": "https://api.twitter.com/receiver.html" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "X-PHX", - "value": "true" - }, - { - "name": "X-Requested-With", - "value": "XMLHttpRequest" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:27:41 GMT" - }, - { - "name": "etag", - "value": "\"d751713988987e9331980363e24189ce\"" - }, - { - "name": "expires", - "value": "Tue, 31 Mar 1981 05:00:00 GMT" - }, - { - "name": "last-modified", - "value": "Thu, 16 Aug 2012 18:27:41 GMT" - }, - { - "name": "pragma", - "value": "no-cache" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "set-cookie", - "value": "dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:27:41 GMT" - }, - { - "name": "set-cookie", - "value": "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT" - }, - { - "name": "set-cookie", - "value": "_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCD6OsDA5AToTcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6EHN0YXlf%250Ac2VjdXJlVDoMY3NyZl9pZCIlOTU3NDZjMGQ2M2M5YTIxY2VmNTBkNGVlMzIw%250ANzQ5ODE6E3Nob3dfaGVscF9saW5rMDobc2Vzc2lvbl9wYXNzd29yZF90b2tl%250AbiItNWMxZTk5ODg2Mzc1MWQxZTJmYzlkYzIyMjA0ZTBkZWRhN2Q1ZDg5YiIK%250AZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsA%250ABjoKQHVzZWR7ADoJdXNlcmkEZc%252FoFzoHaWQiJTE5OGQ5N2M0OTk2NzUyMWQ2%250AMDNjZDAzMTMwNGFjZmE4OhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--7dafb2ae4048354aa869776ded9f689c281ad085; domain=.twitter.com; path=/; secure; HttpOnly" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "vary", - "value": "Accept-Encoding" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-mid", - "value": "a8c2e6cc10b4dc29a14357b6c994a11c89f8f0c4" - }, - { - "name": "x-ratelimit-class", - "value": "api" - }, - { - "name": "x-ratelimit-limit", - "value": "150" - }, - { - "name": "x-ratelimit-remaining", - "value": "150" - }, - { - "name": "x-ratelimit-reset", - "value": "1345141872" - }, - { - "name": "x-runtime", - "value": "0.01561" - }, - { - "name": "x-transaction", - "value": "c07584add5425672" - }, - { - "name": "x-transaction-mask", - "value": "a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "application/json" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 189, - "receive": 0 - } - }, - { - "pageref": "page_1_0", - "startedDateTime": "2012-08-16T18:27:41.411+00:00", - "time": 386, - "request": { - "method": "GET", - "url": "https://api.twitter.com/i/search/typeahead.json?count=2500&prefetch=true&result_type=users&post_authenticity_token=bf49bcdf4afb91a0627cacfdd4dfdc09540c736e", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "api.twitter.com" - }, - { - "name": "Accept", - "value": "application/json, text/javascript, */*; q=0.01" - }, - { - "name": "Referer", - "value": "https://api.twitter.com/receiver.html" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "X-PHX", - "value": "true" - }, - { - "name": "X-Requested-With", - "value": "XMLHttpRequest" - } - ], - "httpVersion": "1.1", - "queryString": [ - { - "name": "count", - "value": "2500" - }, - { - "name": "prefetch", - "value": "true" - }, - { - "name": "result_type", - "value": "users" - }, - { - "name": "post_authenticity_token", - "value": "bf49bcdf4afb91a0627cacfdd4dfdc09540c736e" - } - ] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-length", - "value": "30925" - }, - { - "name": "content-type", - "value": "application/json;charset=utf-8" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:27:41 GMT" - }, - { - "name": "expires", - "value": "Tue, 31 Mar 1981 05:00:00 GMT" - }, - { - "name": "last-modified", - "value": "Thu, 16 Aug 2012 18:27:41 GMT" - }, - { - "name": "pragma", - "value": "no-cache" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-ratelimit-class", - "value": "api" - }, - { - "name": "x-ratelimit-limit", - "value": "150" - }, - { - "name": "x-ratelimit-remaining", - "value": "150" - }, - { - "name": "x-ratelimit-reset", - "value": "1345141872" - }, - { - "name": "x-transaction", - "value": "58668ccf18e609a4" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "application/json" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 282, - "receive": 104 - } - }, - { - "pageref": "page_1_0", - "startedDateTime": "2012-08-16T18:27:41.412+00:00", - "time": 402, - "request": { - "method": "GET", - "url": "https://api.twitter.com/1/trends/available.json?lang=pt", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "api.twitter.com" - }, - { - "name": "Accept", - "value": "application/json, text/javascript, */*; q=0.01" - }, - { - "name": "Referer", - "value": "https://api.twitter.com/receiver.html" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "X-PHX", - "value": "true" - }, - { - "name": "X-Requested-With", - "value": "XMLHttpRequest" - } - ], - "httpVersion": "1.1", - "queryString": [ - { - "name": "lang", - "value": "pt" - } - ] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "max-age=2592000, must-revalidate" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-length", - "value": "3921" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:27:41 GMT" - }, - { - "name": "etag", - "value": "\"7218403370b1badcdd8651793f0ddde0\"" - }, - { - "name": "expires", - "value": "Tue, 31 Mar 1981 05:00:00 GMT" - }, - { - "name": "last-modified", - "value": "Thu, 16 Aug 2012 18:27:41 GMT" - }, - { - "name": "pragma", - "value": "no-cache" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "set-cookie", - "value": "dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:27:41 GMT" - }, - { - "name": "set-cookie", - "value": "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT" - }, - { - "name": "set-cookie", - "value": "_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCD6OsDA5ASIKZmxhc2hJQzonQWN0aW9uQ29u%250AdHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7ADoTcGFzc3dv%250AcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdk%250ANWQ4OWI6EHN0YXlfc2VjdXJlVDoMY3NyZl9pZCIlOTU3NDZjMGQ2M2M5YTIx%250AY2VmNTBkNGVlMzIwNzQ5ODE6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6CXVzZXJp%250ABGXP6Bc6B2lkIiUxOThkOTdjNDk5Njc1MjFkNjAzY2QwMzEzMDRhY2ZhODoV%250AaW5fbmV3X3VzZXJfZmxvdzA6E3Nob3dfaGVscF9saW5rMA%253D%253D--e3877bada3d1eed6e484f51e3d0ef367598cd6c8; domain=.twitter.com; path=/; secure; HttpOnly" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "vary", - "value": "Accept-Encoding" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-mid", - "value": "a35765583d92520555073428d5f270fbfe2e0183" - }, - { - "name": "x-ratelimit-class", - "value": "api" - }, - { - "name": "x-ratelimit-limit", - "value": "150" - }, - { - "name": "x-ratelimit-remaining", - "value": "150" - }, - { - "name": "x-ratelimit-reset", - "value": "1345141872" - }, - { - "name": "x-runtime", - "value": "0.18887" - }, - { - "name": "x-transaction", - "value": "71a5106c70cab4d3" - }, - { - "name": "x-transaction-mask", - "value": "a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "application/json" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 394, - "receive": 8 - } - }, - { - "pageref": "page_1_0", - "startedDateTime": "2012-08-16T18:27:41.429+00:00", - "time": 158, - "request": { - "method": "GET", - "url": "https://twitter.com/images/spinner.gif", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "twitter.com" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "accept-ranges", - "value": "bytes" - }, - { - "name": "cache-control", - "value": "max-age=315360000" - }, - { - "name": "content-length", - "value": "457" - }, - { - "name": "content-type", - "value": "image/gif" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:27:41 GMT" - }, - { - "name": "expires", - "value": "Sun, 14 Aug 2022 18:27:41 GMT" - }, - { - "name": "last-modified", - "value": "Wed, 15 Aug 2012 21:05:49 GMT" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-xss-protection", - "value": "1; mode=block" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/gif" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 158, - "receive": 0 - } - }, - { - "pageref": "page_1_0", - "startedDateTime": "2012-08-16T18:27:41.475+00:00", - "time": 548, - "request": { - "method": "GET", - "url": "https://api.twitter.com/1/users/recommendations.json?limit=3&excluded=&display_location=wtf-component&pc=true&connections=true&algorithm=null&force_new_signup=false", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "api.twitter.com" - }, - { - "name": "Accept", - "value": "application/json, text/javascript, */*; q=0.01" - }, - { - "name": "Referer", - "value": "https://api.twitter.com/receiver.html" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "X-PHX", - "value": "true" - }, - { - "name": "X-Requested-With", - "value": "XMLHttpRequest" - } - ], - "httpVersion": "1.1", - "queryString": [ - { - "name": "limit", - "value": "3" - }, - { - "name": "excluded", - "value": "" - }, - { - "name": "display_location", - "value": "wtf-component" - }, - { - "name": "pc", - "value": "true" - }, - { - "name": "connections", - "value": "true" - }, - { - "name": "algorithm", - "value": "null" - }, - { - "name": "force_new_signup", - "value": "false" - } - ] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "private, max-age=120" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-length", - "value": "1898" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:27:41 GMT" - }, - { - "name": "etag", - "value": "\"d913919a3491f405b6539bcd2c02dc59\"" - }, - { - "name": "expires", - "value": "Thu, 16 Aug 2012 18:29:41 GMT" - }, - { - "name": "last-modified", - "value": "Thu, 16 Aug 2012 18:25:41 GMT" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "set-cookie", - "value": "dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:27:41 GMT" - }, - { - "name": "set-cookie", - "value": "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT" - }, - { - "name": "set-cookie", - "value": "_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCD6OsDA5AToMY3NyZl9pZCIlOTU3NDZjMGQ2%250AM2M5YTIxY2VmNTBkNGVlMzIwNzQ5ODE6EHN0YXlfc2VjdXJlVDoTcGFzc3dv%250AcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdk%250ANWQ4OWIiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFz%250AaEhhc2h7AAY6CkB1c2VkewA6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6E3Nob3df%250AaGVscF9saW5rMDoJdXNlcmkEZc%252FoFzoHaWQiJTE5OGQ5N2M0OTk2NzUyMWQ2%250AMDNjZDAzMTMwNGFjZmE4OhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--74ff9f2b580a7e248c0f695b4661361c096cd552; domain=.twitter.com; path=/; secure; HttpOnly" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "vary", - "value": "Accept-Encoding" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-mid", - "value": "f55659a56f266240bd50085c9928962bf1c39d73" - }, - { - "name": "x-ratelimit-class", - "value": "api" - }, - { - "name": "x-ratelimit-limit", - "value": "150" - }, - { - "name": "x-ratelimit-remaining", - "value": "150" - }, - { - "name": "x-ratelimit-reset", - "value": "1345141872" - }, - { - "name": "x-runtime", - "value": "0.06959" - }, - { - "name": "x-transaction", - "value": "9a9de3c259e63c10" - }, - { - "name": "x-transaction-mask", - "value": "a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "application/json" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 525, - "receive": 23 - } - }, - { - "pageref": "page_1_0", - "startedDateTime": "2012-08-16T18:27:41.503+00:00", - "time": 577, - "request": { - "method": "GET", - "url": "https://api.twitter.com/1/users/recommendations.json?limit=3&excluded=&display_location=wtf-component&pc=true&connections=true&algorithm=null&force_new_signup=true", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "api.twitter.com" - }, - { - "name": "Accept", - "value": "application/json, text/javascript, */*; q=0.01" - }, - { - "name": "Referer", - "value": "https://api.twitter.com/receiver.html" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "X-PHX", - "value": "true" - }, - { - "name": "X-Requested-With", - "value": "XMLHttpRequest" - } - ], - "httpVersion": "1.1", - "queryString": [ - { - "name": "limit", - "value": "3" - }, - { - "name": "excluded", - "value": "" - }, - { - "name": "display_location", - "value": "wtf-component" - }, - { - "name": "pc", - "value": "true" - }, - { - "name": "connections", - "value": "true" - }, - { - "name": "algorithm", - "value": "null" - }, - { - "name": "force_new_signup", - "value": "true" - } - ] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "private, max-age=120" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-length", - "value": "1961" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:27:41 GMT" - }, - { - "name": "etag", - "value": "\"5145df644f004c0ed7d46d9413e323bb\"" - }, - { - "name": "expires", - "value": "Thu, 16 Aug 2012 18:29:41 GMT" - }, - { - "name": "last-modified", - "value": "Thu, 16 Aug 2012 18:25:41 GMT" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "set-cookie", - "value": "dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:27:41 GMT" - }, - { - "name": "set-cookie", - "value": "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT" - }, - { - "name": "set-cookie", - "value": "_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCD6OsDA5AToMY3NyZl9pZCIlOTU3NDZjMGQ2%250AM2M5YTIxY2VmNTBkNGVlMzIwNzQ5ODE6EHN0YXlfc2VjdXJlVDoTcGFzc3dv%250AcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdk%250ANWQ4OWIiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFz%250AaEhhc2h7AAY6CkB1c2VkewA6E3Nob3dfaGVscF9saW5rMDobc2Vzc2lvbl9w%250AYXNzd29yZF90b2tlbiItNWMxZTk5ODg2Mzc1MWQxZTJmYzlkYzIyMjA0ZTBk%250AZWRhN2Q1ZDg5YjoJdXNlcmkEZc%252FoFzoHaWQiJTE5OGQ5N2M0OTk2NzUyMWQ2%250AMDNjZDAzMTMwNGFjZmE4OhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--1a0c9f3d1a0bb9a4ee5357f58685acb0140c5600; domain=.twitter.com; path=/; secure; HttpOnly" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "vary", - "value": "Accept-Encoding" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-mid", - "value": "931ec5d0e1f5e6b8415c6318c15ecf8159e175cd" - }, - { - "name": "x-ratelimit-class", - "value": "api" - }, - { - "name": "x-ratelimit-limit", - "value": "150" - }, - { - "name": "x-ratelimit-remaining", - "value": "150" - }, - { - "name": "x-ratelimit-reset", - "value": "1345141872" - }, - { - "name": "x-runtime", - "value": "0.12863" - }, - { - "name": "x-transaction", - "value": "589e90cc41a2e910" - }, - { - "name": "x-transaction-mask", - "value": "a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "application/json" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 577, - "receive": 0 - } - }, - { - "pageref": "page_1_0", - "startedDateTime": "2012-08-16T18:27:41.599+00:00", - "time": 626, - "request": { - "method": "GET", - "url": "https://ssl.google-analytics.com/ga.js", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "ssl.google-analytics.com" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "age", - "value": "19249" - }, - { - "name": "cache-control", - "value": "max-age=43200, public" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-length", - "value": "14688" - }, - { - "name": "content-type", - "value": "text/javascript" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 13:06:52 GMT" - }, - { - "name": "expires", - "value": "Fri, 17 Aug 2012 01:06:52 GMT" - }, - { - "name": "last-modified", - "value": "Wed, 18 Jul 2012 18:52:25 GMT" - }, - { - "name": "server", - "value": "GFE/2.0" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "vary", - "value": "Accept-Encoding" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "text/javascript" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": 200, - "ssl": 77, - "send": 0, - "wait": 307, - "receive": 119 - } - }, - { - "pageref": "page_1_0", - "startedDateTime": "2012-08-16T18:27:41.807+00:00", - "time": 120, - "request": { - "method": "GET", - "url": "https://api.twitter.com/1/blocks/blocking.json", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "api.twitter.com" - }, - { - "name": "Accept", - "value": "application/json, text/javascript, */*; q=0.01" - }, - { - "name": "Referer", - "value": "https://api.twitter.com/receiver.html" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "X-PHX", - "value": "true" - }, - { - "name": "X-Requested-With", - "value": "XMLHttpRequest" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-length", - "value": "22" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:27:41 GMT" - }, - { - "name": "etag", - "value": "\"d751713988987e9331980363e24189ce\"" - }, - { - "name": "expires", - "value": "Tue, 31 Mar 1981 05:00:00 GMT" - }, - { - "name": "last-modified", - "value": "Thu, 16 Aug 2012 18:27:41 GMT" - }, - { - "name": "pragma", - "value": "no-cache" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "set-cookie", - "value": "dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:27:41 GMT" - }, - { - "name": "set-cookie", - "value": "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT" - }, - { - "name": "set-cookie", - "value": "_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCD6OsDA5AToMY3NyZl9pZCIlOTU3NDZjMGQ2%250AM2M5YTIxY2VmNTBkNGVlMzIwNzQ5ODE6EHN0YXlfc2VjdXJlVDoTcGFzc3dv%250AcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdk%250ANWQ4OWIiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFz%250AaEhhc2h7AAY6CkB1c2VkewA6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6CXVzZXJp%250ABGXP6Bc6E3Nob3dfaGVscF9saW5rMDoHaWQiJTE5OGQ5N2M0OTk2NzUyMWQ2%250AMDNjZDAzMTMwNGFjZmE4OhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--83a1371d0e34c47532ded0e81bb544c7fcc278d0; domain=.twitter.com; path=/; secure; HttpOnly" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "vary", - "value": "Accept-Encoding" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-mid", - "value": "072a257af8126cffc14d324bf5566a398f54abe0" - }, - { - "name": "x-ratelimit-class", - "value": "api" - }, - { - "name": "x-ratelimit-limit", - "value": "150" - }, - { - "name": "x-ratelimit-remaining", - "value": "150" - }, - { - "name": "x-ratelimit-reset", - "value": "1345141872" - }, - { - "name": "x-runtime", - "value": "0.01359" - }, - { - "name": "x-transaction", - "value": "bfcec2fc51aa3c44" - }, - { - "name": "x-transaction-mask", - "value": "a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "application/json" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 120, - "receive": 0 - } - }, - { - "pageref": "page_1_0", - "startedDateTime": "2012-08-16T18:27:41.827+00:00", - "time": 159, - "request": { - "method": "GET", - "url": "https://api.twitter.com/1/trends/1.json?pc=true&post_authenticity_token=bf49bcdf4afb91a0627cacfdd4dfdc09540c736e", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "api.twitter.com" - }, - { - "name": "Accept", - "value": "application/json, text/javascript, */*; q=0.01" - }, - { - "name": "Referer", - "value": "https://api.twitter.com/receiver.html" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "X-PHX", - "value": "true" - }, - { - "name": "X-Requested-With", - "value": "XMLHttpRequest" - } - ], - "httpVersion": "1.1", - "queryString": [ - { - "name": "pc", - "value": "true" - }, - { - "name": "post_authenticity_token", - "value": "bf49bcdf4afb91a0627cacfdd4dfdc09540c736e" - } - ] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "max-age=300, must-revalidate" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-length", - "value": "555" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:27:41 GMT" - }, - { - "name": "etag", - "value": "\"22dba77da5237f4ed054700dc7eabd72\"" - }, - { - "name": "expires", - "value": "Tue, 31 Mar 1981 05:00:00 GMT" - }, - { - "name": "last-modified", - "value": "Thu, 16 Aug 2012 18:27:41 GMT" - }, - { - "name": "pragma", - "value": "no-cache" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "set-cookie", - "value": "dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:27:41 GMT" - }, - { - "name": "set-cookie", - "value": "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT" - }, - { - "name": "set-cookie", - "value": "_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCD6OsDA5AToMY3NyZl9pZCIlOTU3NDZjMGQ2%250AM2M5YTIxY2VmNTBkNGVlMzIwNzQ5ODE6EHN0YXlfc2VjdXJlVDoTcGFzc3dv%250AcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdk%250ANWQ4OWI6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFk%250AMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6E3Nob3dfaGVscF9saW5rMDoJ%250AdXNlcmkEZc%252FoFyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6%250AOkZsYXNoSGFzaHsABjoKQHVzZWR7ADoHaWQiJTE5OGQ5N2M0OTk2NzUyMWQ2%250AMDNjZDAzMTMwNGFjZmE4OhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--c95a83200ba5ef193a53c3c1b332f79be8b7c6b2; domain=.twitter.com; path=/; secure; HttpOnly" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "vary", - "value": "Accept-Encoding" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-mid", - "value": "32e18399f3c42586e062e530291d1abaa742cf2e" - }, - { - "name": "x-ratelimit-class", - "value": "api" - }, - { - "name": "x-ratelimit-limit", - "value": "150" - }, - { - "name": "x-ratelimit-remaining", - "value": "150" - }, - { - "name": "x-ratelimit-reset", - "value": "1345141872" - }, - { - "name": "x-runtime", - "value": "0.06128" - }, - { - "name": "x-transaction", - "value": "4e9dc9b58e3db1e7" - }, - { - "name": "x-transaction-mask", - "value": "a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "application/json" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 159, - "receive": 0 - } - }, - { - "pageref": "page_1_0", - "startedDateTime": "2012-08-16T18:27:42.014+00:00", - "time": 117, - "request": { - "method": "GET", - "url": "https://api.twitter.com/1/promoted_content/i/log.png?promoted_trend_id=5288", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "api.twitter.com" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - } - ], - "httpVersion": "1.1", - "queryString": [ - { - "name": "promoted_trend_id", - "value": "5288" - } - ] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" - }, - { - "name": "content-length", - "value": "1" - }, - { - "name": "content-transfer-encoding", - "value": "binary" - }, - { - "name": "content-type", - "value": "image/png" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:27:41 GMT" - }, - { - "name": "etag", - "value": "\"7215ee9c7d9dc229d2921a40e899ec5f\"" - }, - { - "name": "expires", - "value": "Tue, 31 Mar 1981 05:00:00 GMT" - }, - { - "name": "last-modified", - "value": "Thu, 16 Aug 2012 18:27:41 GMT" - }, - { - "name": "pragma", - "value": "no-cache" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "set-cookie", - "value": "dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:27:41 GMT" - }, - { - "name": "set-cookie", - "value": "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT" - }, - { - "name": "set-cookie", - "value": "_twitter_sess=BAh7DyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo%250ASGFzaHsABjoKQHVzZWR7ADoPY3JlYXRlZF9hdGwrCD6OsDA5AToTcGFzc3dv%250AcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdk%250ANWQ4OWI6EHN0YXlfc2VjdXJlVDoMY3NyZl9pZCIlOTU3NDZjMGQ2M2M5YTIx%250AY2VmNTBkNGVlMzIwNzQ5ODE6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6CXVzZXJp%250ABGXP6Bc6E3Nob3dfaGVscF9saW5rMDoHaWQiJTE5OGQ5N2M0OTk2NzUyMWQ2%250AMDNjZDAzMTMwNGFjZmE4OhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--f82cf0b8337eb3dd39ead1e76cfab2b2ca3d1429; domain=.twitter.com; path=/; secure; HttpOnly" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-mid", - "value": "2e0e52b88386e01b395af1e7d42298595088b447" - }, - { - "name": "x-runtime", - "value": "0.02187" - }, - { - "name": "x-transaction", - "value": "5fb13ba3ab1b66ff" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/png" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 117, - "receive": -1 - } - }, - { - "pageref": "page_1_0", - "startedDateTime": "2012-08-16T18:27:42.064+00:00", - "time": 68, - "request": { - "method": "GET", - "url": "https://ssl.google-analytics.com/__utm.gif?utmwv=5.3.4&utms=2&utmn=869617103&utmhn=twitter.com&utmcs=UTF-8&utmsr=1024x768&utmvp=997x614&utmsc=32-bit&utmul=en-us&utmje=1&utmfl=11.3%20r31&utmdt=Twitter%20%2F%20In%C3%ADcio&utmhid=775368836&utmr=0&utmp=%2F&utmac=UA-30775-6&utmcc=__utma%3D43838368.159264585.1345141647.1345141647.1345141647.1%3B%2B__utmz%3D43838368.1345141647.1.1.utmcsr%3D(direct)%7Cutmccn%3D(direct)%7Cutmcmd%3D(none)%3B&utmu=q~", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "ssl.google-analytics.com" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - } - ], - "httpVersion": "1.1", - "queryString": [ - { - "name": "utmwv", - "value": "5.3.4" - }, - { - "name": "utms", - "value": "2" - }, - { - "name": "utmn", - "value": "869617103" - }, - { - "name": "utmhn", - "value": "twitter.com" - }, - { - "name": "utmcs", - "value": "UTF-8" - }, - { - "name": "utmsr", - "value": "1024x768" - }, - { - "name": "utmvp", - "value": "997x614" - }, - { - "name": "utmsc", - "value": "32-bit" - }, - { - "name": "utmul", - "value": "en-us" - }, - { - "name": "utmje", - "value": "1" - }, - { - "name": "utmfl", - "value": "11.3 r31" - }, - { - "name": "utmdt", - "value": "Twitter / Início" - }, - { - "name": "utmhid", - "value": "775368836" - }, - { - "name": "utmr", - "value": "0" - }, - { - "name": "utmp", - "value": "/" - }, - { - "name": "utmac", - "value": "UA-30775-6" - }, - { - "name": "utmcc", - "value": "__utma=43838368.159264585.1345141647.1345141647.1345141647.1;+__utmz=43838368.1345141647.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none);" - }, - { - "name": "utmu", - "value": "q~" - } - ] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "age", - "value": "14522" - }, - { - "name": "cache-control", - "value": "private, no-cache, no-cache=Set-Cookie, proxy-revalidate" - }, - { - "name": "content-length", - "value": "35" - }, - { - "name": "content-type", - "value": "image/gif" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 14:25:39 GMT" - }, - { - "name": "expires", - "value": "Wed, 19 Apr 2000 11:43:00 GMT" - }, - { - "name": "last-modified", - "value": "Wed, 21 Jan 2004 19:51:30 GMT" - }, - { - "name": "pragma", - "value": "no-cache" - }, - { - "name": "server", - "value": "GFE/2.0" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/gif" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 68, - "receive": 0 - } - }, - { - "pageref": "page_1_0", - "startedDateTime": "2012-08-16T18:27:42.092+00:00", - "time": 118, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/profile_images/1409530731/bbm__1308837078033_normal.tmp", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "ZjRboMg0IX6RiflM4H0c93YnwzkE3bB8Tup39HHCl05T5tbj450L/qZI01RN4SzD" - }, - { - "name": "x-amz-request-id", - "value": "C9816E53EA95585A" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:27:41 GMT" - }, - { - "name": "Last-Modified", - "value": "Thu, 23 Jun 2011 14:37:42 GMT" - }, - { - "name": "ETag", - "value": "\"82ea7702bcbd6e72ca978ecbd1befc8c\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/jpeg" - }, - { - "name": "Content-Length", - "value": "975" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=31449600" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 15 Aug 2013 18:27:41 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/jpeg" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 117, - "receive": 1 - } - }, - { - "pageref": "page_1_0", - "startedDateTime": "2012-08-16T18:27:42.100+00:00", - "time": 404, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/profile_images/1583722973/tweter_normal.jpg", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "LSVtZu2wpDiFu4d+vapaVvPN8dRwUWJ43mojC0K7mTmHykIPBnV5GNuX//SsN1N0" - }, - { - "name": "x-amz-request-id", - "value": "2D2EACE842AD2DBA" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:27:41 GMT" - }, - { - "name": "Last-Modified", - "value": "Tue, 11 Oct 2011 19:50:44 GMT" - }, - { - "name": "ETag", - "value": "\"d66538ca9a2d928cbf9aa07d8985726d\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/jpeg" - }, - { - "name": "Content-Length", - "value": "21376" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=604800" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 23 Aug 2012 18:27:41 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/jpeg" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 131, - "receive": 273 - } - }, - { - "pageref": "page_1_0", - "startedDateTime": "2012-08-16T18:27:42.102+00:00", - "time": 139, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/profile_images/1727300915/image_normal.jpg", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "niBNHx22XW88tYQ+gKhJote24f7zOGGVAbxwc/f5Pjgk24bQpCJSHV4xuw8iK1MK" - }, - { - "name": "x-amz-request-id", - "value": "44C9F57F9C81A05E" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:27:41 GMT" - }, - { - "name": "Last-Modified", - "value": "Sun, 01 Jan 2012 13:07:54 GMT" - }, - { - "name": "ETag", - "value": "\"8d21d19180349b3db707fc4605e2fc33\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/jpeg" - }, - { - "name": "Content-Length", - "value": "1230" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=604800" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 23 Aug 2012 18:27:41 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/jpeg" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 139, - "receive": 0 - } - }, - { - "pageref": "page_1_0", - "startedDateTime": "2012-08-16T18:27:42.125+00:00", - "time": 189, - "request": { - "method": "GET", - "url": "https://api.twitter.com/1/statuses/friends.json?cursor=-1&user_id=401133413", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "api.twitter.com" - }, - { - "name": "Accept", - "value": "application/json, text/javascript, */*; q=0.01" - }, - { - "name": "Referer", - "value": "https://api.twitter.com/receiver.html" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "X-PHX", - "value": "true" - }, - { - "name": "X-Requested-With", - "value": "XMLHttpRequest" - } - ], - "httpVersion": "1.1", - "queryString": [ - { - "name": "cursor", - "value": "-1" - }, - { - "name": "user_id", - "value": "401133413" - } - ] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-length", - "value": "1562" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:27:41 GMT" - }, - { - "name": "etag", - "value": "\"bf03d4de0580babb935eb4e1a6f676e7\"" - }, - { - "name": "expires", - "value": "Tue, 31 Mar 1981 05:00:00 GMT" - }, - { - "name": "last-modified", - "value": "Thu, 16 Aug 2012 18:27:41 GMT" - }, - { - "name": "pragma", - "value": "no-cache" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "set-cookie", - "value": "dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:27:41 GMT" - }, - { - "name": "set-cookie", - "value": "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT" - }, - { - "name": "set-cookie", - "value": "_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCD6OsDA5AToMY3NyZl9pZCIlOTU3NDZjMGQ2%250AM2M5YTIxY2VmNTBkNGVlMzIwNzQ5ODE6EHN0YXlfc2VjdXJlVDoTcGFzc3dv%250AcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdk%250ANWQ4OWI6E3Nob3dfaGVscF9saW5rMDobc2Vzc2lvbl9wYXNzd29yZF90b2tl%250AbiItNWMxZTk5ODg2Mzc1MWQxZTJmYzlkYzIyMjA0ZTBkZWRhN2Q1ZDg5YjoJ%250AdXNlcmkEZc%252FoFyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6%250AOkZsYXNoSGFzaHsABjoKQHVzZWR7ADoHaWQiJTE5OGQ5N2M0OTk2NzUyMWQ2%250AMDNjZDAzMTMwNGFjZmE4OhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--4af407ae68696d2f787bc11b2ff71b8a99a8148f; domain=.twitter.com; path=/; secure; HttpOnly" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "vary", - "value": "Accept-Encoding" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-mid", - "value": "df44a9e4ade8718a851f7ea1fb70d429401a3d29" - }, - { - "name": "x-ratelimit-class", - "value": "api" - }, - { - "name": "x-ratelimit-limit", - "value": "150" - }, - { - "name": "x-ratelimit-remaining", - "value": "150" - }, - { - "name": "x-ratelimit-reset", - "value": "1345141872" - }, - { - "name": "x-runtime", - "value": "0.07592" - }, - { - "name": "x-transaction", - "value": "80262a2153b373bf" - }, - { - "name": "x-transaction-mask", - "value": "a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "application/json" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 173, - "receive": 16 - } - }, - { - "pageref": "page_1_0", - "startedDateTime": "2012-08-16T18:27:42.133+00:00", - "time": 548, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/profile_images/1910328549/image_reasonably_small.jpg", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "UVxzZIT6h9rcnHL1Kkv0cyPBzMJib3+iWR4mO0pvTzkdb5cIz4f5u0OQskG3WARf" - }, - { - "name": "x-amz-request-id", - "value": "CEE6E67FDC5C6B4F" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:27:41 GMT" - }, - { - "name": "Last-Modified", - "value": "Mon, 19 Mar 2012 23:35:09 GMT" - }, - { - "name": "ETag", - "value": "\"f72594541e751a06b42f38868bbc5556\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/jpeg" - }, - { - "name": "Content-Length", - "value": "6358" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=604800" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 23 Aug 2012 18:27:41 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/jpeg" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 507, - "receive": 41 - } - }, - { - "pageref": "page_1_0", - "startedDateTime": "2012-08-16T18:27:42.136+00:00", - "time": 472, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/profile_images/2325704772/wrrmef61i6jl91kwkmzq_reasonably_small.png", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "G1yVnY3N52eFahELSDckg3Jd+BD7pqs4gfMraO9oZIqakEl8XhvvAmN6EV764UZT" - }, - { - "name": "x-amz-request-id", - "value": "29FC2F61132DE635" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:27:41 GMT" - }, - { - "name": "Last-Modified", - "value": "Wed, 20 Jun 2012 16:21:33 GMT" - }, - { - "name": "ETag", - "value": "\"4050d7e7652de802767c0d9204706238\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/png" - }, - { - "name": "Content-Length", - "value": "24083" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=604800" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 23 Aug 2012 18:27:41 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/png" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 162, - "receive": 310 - } - }, - { - "pageref": "page_1_0", - "startedDateTime": "2012-08-16T18:27:42.136+00:00", - "time": 561, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/profile_images/2258914696/sq_reasonably_small.jpg", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "cbmUlFC74OizAMlbg+xxwGBv3sWeRmTTvOhnbb3wRIRFOHTv8gcELCUo9hhDWBjl" - }, - { - "name": "x-amz-request-id", - "value": "A8043AFC4081A3BE" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:27:41 GMT" - }, - { - "name": "Last-Modified", - "value": "Tue, 29 May 2012 00:21:06 GMT" - }, - { - "name": "ETag", - "value": "\"5317cf198e5b23f32acdc4f124b3a5b7\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/jpeg" - }, - { - "name": "Content-Length", - "value": "34213" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=604800" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 23 Aug 2012 18:27:41 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/jpeg" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 143, - "receive": 418 - } - }, - { - "pageref": "page_2_0", - "startedDateTime": "2012-08-16T18:28:03.478+00:00", - "time": 784, - "request": { - "method": "GET", - "url": "https://twitter.com/", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "twitter.com" - }, - { - "name": "Referer", - "value": "http://twitter.com/" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-type", - "value": "text/html; charset=utf-8" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:28:04 GMT" - }, - { - "name": "etag", - "value": "\"109784f2682b0175a921b0fba21c2f28\"" - }, - { - "name": "expires", - "value": "Tue, 31 Mar 1981 05:00:00 GMT" - }, - { - "name": "last-modified", - "value": "Thu, 16 Aug 2012 18:28:03 GMT" - }, - { - "name": "pragma", - "value": "no-cache" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "set-cookie", - "value": "dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:03 GMT" - }, - { - "name": "set-cookie", - "value": "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT" - }, - { - "name": "set-cookie", - "value": "_twitter_sess=BAh7DyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo%250ASGFzaHsABjoKQHVzZWR7ADoPY3JlYXRlZF9hdGwrCMkRsTA5AToMY3NyZl9p%250AZCIlZTE2MjEyZjA4YjcwMzJjMDQwOWZkZjlmNzI2YWVjZDM6EHN0YXlfc2Vj%250AdXJlVDoTcGFzc3dvcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMy%250AMjIwNGUwZGVkYTdkNWQ4OWI6E3Nob3dfaGVscF9saW5rMDobc2Vzc2lvbl9w%250AYXNzd29yZF90b2tlbiItNWMxZTk5ODg2Mzc1MWQxZTJmYzlkYzIyMjA0ZTBk%250AZWRhN2Q1ZDg5YjoJdXNlcmkEZc%252FoFzoHaWQiJWFmYjFmOWVjMjMwNzAzODBj%250AZGVlZGE1YjhlM2I1MDhiOhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--8198a0c7e87b78d1fa95daddd35cfcc79d9566e1; domain=.twitter.com; path=/; secure; HttpOnly" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "strict-transport-security", - "value": "max-age=631138519" - }, - { - "name": "vary", - "value": "Accept-Encoding" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-mid", - "value": "1e50b687d3f622d1ad84a2708b7d6d1b85f320c2" - }, - { - "name": "x-runtime", - "value": "0.32050" - }, - { - "name": "x-transaction", - "value": "9ac149310b1ab0ce" - }, - { - "name": "x-xss-protection", - "value": "1; mode=block" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "text/html" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 508, - "receive": 276 - } - }, - { - "pageref": "page_2_0", - "startedDateTime": "2012-08-16T18:28:04.068+00:00", - "time": 1179, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/a/1345133470/t1/css/t1_core.bundle.css", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "text/css,*/*;q=0.1" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "h8z9Td/7D2oElkR+lOzR2DPSTCy8F5l9vNLkq+TyEMF1w3LyX7ayxtfe6dslwWV3" - }, - { - "name": "x-amz-request-id", - "value": "295BF01C9B4AEE58" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:28:04 GMT" - }, - { - "name": "Last-Modified", - "value": "Thu, 16 Aug 2012 16:15:41 GMT" - }, - { - "name": "ETag", - "value": "\"59337cd26ece9dbdc2d36eaa667efb4c\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "text/css" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Content-Encoding", - "value": "gzip" - }, - { - "name": "Vary", - "value": "Accept-Encoding" - }, - { - "name": "Content-Length", - "value": "27926" - }, - { - "name": "Cache-Control", - "value": "private, max-age=31449600" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 15 Aug 2013 18:28:04 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "text/css" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": 462, - "ssl": 298, - "send": 0, - "wait": 582, - "receive": 135 - } - }, - { - "pageref": "page_2_0", - "startedDateTime": "2012-08-16T18:28:04.795+00:00", - "time": 1248, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/profile_images/1804416058/43776868-4e4e-45cc-b91c-7ec1b6f350aa_normal.png", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "scz9/mAalAfnDOTjmTH6/7Z2QBtURR49Qp1Vx356nHEePb+Now2o2kftmfoQPc5x" - }, - { - "name": "x-amz-request-id", - "value": "769DC651FEBEC1EE" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:28:05 GMT" - }, - { - "name": "Last-Modified", - "value": "Sat, 04 Feb 2012 21:42:09 GMT" - }, - { - "name": "ETag", - "value": "\"145b79a3a79e37520432d48a880b7e97\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/png" - }, - { - "name": "Content-Length", - "value": "5456" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=604800" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 23 Aug 2012 18:28:05 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/png" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": 491, - "ssl": -1, - "send": 0, - "wait": 653, - "receive": 104 - } - }, - { - "pageref": "page_2_0", - "startedDateTime": "2012-08-16T18:28:04.795+00:00", - "time": 735, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "0EjGO3bb9WTEKhVNvYGh6b9jQeFAgihPIZQ/NbsiNt4kHj/25ceaF3X2lBegMBgJ" - }, - { - "name": "x-amz-request-id", - "value": "847A950EA4FC8B09" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:28:05 GMT" - }, - { - "name": "Last-Modified", - "value": "Thu, 26 May 2011 01:08:30 GMT" - }, - { - "name": "ETag", - "value": "\"46d5128c6bf7ee8b66257b966b8c883e\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/png" - }, - { - "name": "Content-Length", - "value": "1381" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=604800" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 23 Aug 2012 18:28:05 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/png" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": 242, - "ssl": 124, - "send": 0, - "wait": 493, - "receive": 0 - } - }, - { - "pageref": "page_2_0", - "startedDateTime": "2012-08-16T18:28:04.797+00:00", - "time": 1164, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/profile_images/2466871092/image_normal.jpg", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "7NEj14/u5J9sQNw3RlNMXtVpVYhZRJ74FUrqMsr8JfaAlp4WB8zSMVPYnrOZYPTy" - }, - { - "name": "x-amz-request-id", - "value": "5A5B0C1EC30B7ED4" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:28:05 GMT" - }, - { - "name": "Last-Modified", - "value": "Sat, 04 Aug 2012 13:11:29 GMT" - }, - { - "name": "ETag", - "value": "\"da79b27a7964b450de35597d1e47d5b4\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/jpeg" - }, - { - "name": "Content-Length", - "value": "1453" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=604800" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 23 Aug 2012 18:28:05 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/jpeg" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": 504, - "ssl": -1, - "send": 0, - "wait": 660, - "receive": 0 - } - }, - { - "pageref": "page_2_0", - "startedDateTime": "2012-08-16T18:28:04.798+00:00", - "time": 887, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/a/1345133470/t1/img/twitter_web_sprite_bgs.png", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "1ZsOeVxpeSixQ9eUW7vBdJdVCjmOMLvDgu+ZczTLzbuHnDuFrUQWBQ2ptp+b0R3Z" - }, - { - "name": "x-amz-request-id", - "value": "7B74D4B95ECA0474" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:28:05 GMT" - }, - { - "name": "Last-Modified", - "value": "Thu, 16 Aug 2012 16:15:41 GMT" - }, - { - "name": "ETag", - "value": "\"dc43d8feef9a6f6bc87fb56f2810bb1f\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/png" - }, - { - "name": "Content-Length", - "value": "6602" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=604800" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 23 Aug 2012 18:28:05 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/png" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": 244, - "ssl": 123, - "send": 0, - "wait": 528, - "receive": 115 - } - }, - { - "pageref": "page_2_0", - "startedDateTime": "2012-08-16T18:28:04.801+00:00", - "time": 1867, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/a/1345133470/t1/img/twitter_web_sprite_icons.png", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "SZn+2XyAEy/JSLDLuF11DB+EDMyWDFXzXTUO3/W8freAaTH9AHevOJCsbnzmaPIf" - }, - { - "name": "x-amz-request-id", - "value": "49499E48F469851C" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:28:05 GMT" - }, - { - "name": "Last-Modified", - "value": "Thu, 16 Aug 2012 16:15:39 GMT" - }, - { - "name": "ETag", - "value": "\"223836604d80c5faa4079d6e5554cfbb\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/png" - }, - { - "name": "Content-Length", - "value": "65084" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=604800" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 23 Aug 2012 18:28:05 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/png" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": 243, - "ssl": 123, - "send": 0, - "wait": 507, - "receive": 1117 - } - }, - { - "pageref": "page_2_0", - "startedDateTime": "2012-08-16T18:28:04.814+00:00", - "time": 750, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/a/1345133470/t1/img/wash-white-30.png", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "PFDD6lGbbBN8+gH2sMpnliksoIUhfjlUM9mZKggE2bF9ZtN21zxiMfj+Ibksdm4F" - }, - { - "name": "x-amz-request-id", - "value": "8A67F9C4834A8872" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:28:05 GMT" - }, - { - "name": "Last-Modified", - "value": "Thu, 16 Aug 2012 16:15:39 GMT" - }, - { - "name": "ETag", - "value": "\"bc953c554d5f0ab6402865969e7244b4\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/png" - }, - { - "name": "Content-Length", - "value": "940" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=604800" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 23 Aug 2012 18:28:05 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/png" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": 242, - "ssl": 125, - "send": 0, - "wait": 507, - "receive": 1 - } - }, - { - "pageref": "page_2_0", - "startedDateTime": "2012-08-16T18:28:04.818+00:00", - "time": 8829, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/profile_background_images/594970743/ht90irx2ejrvh0xqpjjb.jpeg", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "uFRhiBVDHHXu6Xn0edW4PU3j52UrfVMHBda00LkFkJ7LuV895qm4mYEdei8AwRLo" - }, - { - "name": "x-amz-request-id", - "value": "AFF767D128C8A8FE" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:28:05 GMT" - }, - { - "name": "Last-Modified", - "value": "Tue, 03 Jul 2012 18:45:18 GMT" - }, - { - "name": "ETag", - "value": "\"6883b757d4b1a38d9f16b0a724ab208e\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/jpeg" - }, - { - "name": "Content-Length", - "value": "916044" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=604800" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 23 Aug 2012 18:28:05 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/jpeg" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 124, - "receive": 8705 - } - }, - { - "pageref": "page_2_0", - "startedDateTime": "2012-08-16T18:28:04.895+00:00", - "time": 658, - "request": { - "method": "GET", - "url": "https://api.twitter.com/receiver.html", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "api.twitter.com" - }, - { - "name": "Accept", - "value": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "max-age=300" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-type", - "value": "text/html; charset=UTF-8" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:28:05 GMT" - }, - { - "name": "expires", - "value": "Thu, 16 Aug 2012 18:33:05 GMT" - }, - { - "name": "last-modified", - "value": "Wed, 15 Aug 2012 21:05:50 GMT" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "vary", - "value": "Accept-Encoding" - }, - { - "name": "version", - "value": "HTTP/1.1" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "text/html" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": 283, - "ssl": 226, - "send": 0, - "wait": 371, - "receive": 4 - } - }, - { - "pageref": "page_2_0", - "startedDateTime": "2012-08-16T18:28:04.964+00:00", - "time": 2879, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "0vpG/0wtJEp7TOqdtyiR/AYji7s/2lD7r3rbMX/0Dp4pD1I9sUYM5mHLIsmf6o1x" - }, - { - "name": "x-amz-request-id", - "value": "A54095D1E835D86D" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:28:05 GMT" - }, - { - "name": "Last-Modified", - "value": "Thu, 16 Aug 2012 00:09:08 GMT" - }, - { - "name": "ETag", - "value": "\"4b3ce8775717a723bf0673ba11e197fb\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "application/javascript" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Content-Encoding", - "value": "gzip" - }, - { - "name": "Vary", - "value": "Accept-Encoding" - }, - { - "name": "Content-Length", - "value": "179563" - }, - { - "name": "Cache-Control", - "value": "private, max-age=31449600" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 15 Aug 2013 18:28:05 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "application/javascript" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": 122, - "ssl": 121, - "send": 0, - "wait": 357, - "receive": 2400 - } - }, - { - "pageref": "page_2_0", - "startedDateTime": "2012-08-16T18:28:07.945+00:00", - "time": 1029, - "request": { - "method": "GET", - "url": "https://api.twitter.com/1/saved_searches.json", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "api.twitter.com" - }, - { - "name": "Accept", - "value": "application/json, text/javascript, */*; q=0.01" - }, - { - "name": "Referer", - "value": "https://api.twitter.com/receiver.html" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "X-PHX", - "value": "true" - }, - { - "name": "X-Requested-With", - "value": "XMLHttpRequest" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-length", - "value": "22" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:28:08 GMT" - }, - { - "name": "etag", - "value": "\"d751713988987e9331980363e24189ce\"" - }, - { - "name": "expires", - "value": "Tue, 31 Mar 1981 05:00:00 GMT" - }, - { - "name": "last-modified", - "value": "Thu, 16 Aug 2012 18:28:08 GMT" - }, - { - "name": "pragma", - "value": "no-cache" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "set-cookie", - "value": "original_referer=padhuUp37zigs9eJTisr5PnVtwPa2Ks3aYGytRQKC2hhgexXtH6h6g%3D%3D; path=/" - }, - { - "name": "set-cookie", - "value": "dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:08 GMT" - }, - { - "name": "set-cookie", - "value": "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT" - }, - { - "name": "set-cookie", - "value": "lang=pt; path=/" - }, - { - "name": "set-cookie", - "value": "_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCMkRsTA5AToTcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6EHN0YXlf%250Ac2VjdXJlVDoMY3NyZl9pZCIlZTE2MjEyZjA4YjcwMzJjMDQwOWZkZjlmNzI2%250AYWVjZDM6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFk%250AMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6CXVzZXJpBGXP6Bc6E3Nob3df%250AaGVscF9saW5rMCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6%250AOkZsYXNoSGFzaHsABjoKQHVzZWR7ADoHaWQiJWFmYjFmOWVjMjMwNzAzODBj%250AZGVlZGE1YjhlM2I1MDhiOhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--edce5829132839a74ea002febb5d745285ddd58a; domain=.twitter.com; path=/; secure; HttpOnly" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "vary", - "value": "Accept-Encoding" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-mid", - "value": "36ff0db347846cd8cdb11c929c4ed5ccdd913c18" - }, - { - "name": "x-ratelimit-class", - "value": "api" - }, - { - "name": "x-ratelimit-limit", - "value": "150" - }, - { - "name": "x-ratelimit-remaining", - "value": "150" - }, - { - "name": "x-ratelimit-reset", - "value": "1345141872" - }, - { - "name": "x-runtime", - "value": "0.01716" - }, - { - "name": "x-transaction", - "value": "68d8501d4c2e13af" - }, - { - "name": "x-transaction-mask", - "value": "a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "application/json" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 1029, - "receive": 0 - } - }, - { - "pageref": "page_2_0", - "startedDateTime": "2012-08-16T18:28:08.981+00:00", - "time": 184, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/a/1345133470/t1/img/loader.gif", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "51RcqEB8zjhSx8FJnPr3ZlHR2hZg4JEw7Z8Jn7Rd9VzS6INKwP8vyXPXBCrpKMVy" - }, - { - "name": "x-amz-request-id", - "value": "182C1108AD43EB11" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:28:09 GMT" - }, - { - "name": "Last-Modified", - "value": "Thu, 16 Aug 2012 16:15:40 GMT" - }, - { - "name": "ETag", - "value": "\"faf550cb80c83c14e5176f61e1bb6239\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/gif" - }, - { - "name": "Content-Length", - "value": "4178" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=31449600" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 15 Aug 2013 18:28:09 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/gif" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 153, - "receive": 31 - } - }, - { - "pageref": "page_2_0", - "startedDateTime": "2012-08-16T18:28:09.085+00:00", - "time": 4408, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/c/phoenix/pt/bundle/t1-more.7cc751ba2c21e9a6c6b2303739b6c255dbd458a7.js", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "TXbWBH9+gUFymJhD1NMd3fcCy07rk/qzxY1DfKBoXm8IASOjcijGeNv83cLVIpa1" - }, - { - "name": "x-amz-request-id", - "value": "179190B3D40BA2F4" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:28:09 GMT" - }, - { - "name": "Last-Modified", - "value": "Thu, 16 Aug 2012 00:09:06 GMT" - }, - { - "name": "ETag", - "value": "\"ae65bec57dbceda1ae68d40c43ba1a99\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "application/javascript" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Content-Encoding", - "value": "gzip" - }, - { - "name": "Vary", - "value": "Accept-Encoding" - }, - { - "name": "Content-Length", - "value": "388038" - }, - { - "name": "Cache-Control", - "value": "private, max-age=31449600" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 15 Aug 2013 18:28:09 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "application/javascript" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 153, - "receive": 4255 - } - }, - { - "pageref": "page_2_0", - "startedDateTime": "2012-08-16T18:28:13.701+00:00", - "time": 268, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/a/1345133470/t1/css/t1_more.bundle.css", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "text/css,*/*;q=0.1" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "WeesZkhxFaLfaTUc5LfTFkKlsTZr33TONDtAMU2omKh8L9sP0mLFiFf9n+YvVXpp" - }, - { - "name": "x-amz-request-id", - "value": "C23C30A35C9BCDE3" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:28:13 GMT" - }, - { - "name": "Last-Modified", - "value": "Thu, 16 Aug 2012 16:15:40 GMT" - }, - { - "name": "ETag", - "value": "\"3f3602e820e9ee9471e24f73c15a9a8d\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "text/css" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Content-Encoding", - "value": "gzip" - }, - { - "name": "Vary", - "value": "Accept-Encoding" - }, - { - "name": "Content-Length", - "value": "32957" - }, - { - "name": "Cache-Control", - "value": "private, max-age=31449600" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 15 Aug 2013 18:28:13 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "text/css" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 129, - "receive": 139 - } - }, - { - "pageref": "page_2_0", - "startedDateTime": "2012-08-16T18:28:14.218+00:00", - "time": 246, - "request": { - "method": "GET", - "url": "https://api.twitter.com/1/direct_messages.json?count=50&include_entities=true", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "api.twitter.com" - }, - { - "name": "Accept", - "value": "application/json, text/javascript, */*; q=0.01" - }, - { - "name": "Referer", - "value": "https://api.twitter.com/receiver.html" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "X-PHX", - "value": "true" - }, - { - "name": "X-Requested-With", - "value": "XMLHttpRequest" - } - ], - "httpVersion": "1.1", - "queryString": [ - { - "name": "count", - "value": "50" - }, - { - "name": "include_entities", - "value": "true" - } - ] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-length", - "value": "928" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:28:14 GMT" - }, - { - "name": "etag", - "value": "\"609b75034f913260b2698796fd053f97\"" - }, - { - "name": "expires", - "value": "Tue, 31 Mar 1981 05:00:00 GMT" - }, - { - "name": "last-modified", - "value": "Thu, 16 Aug 2012 18:28:14 GMT" - }, - { - "name": "pragma", - "value": "no-cache" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "set-cookie", - "value": "dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:14 GMT" - }, - { - "name": "set-cookie", - "value": "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT" - }, - { - "name": "set-cookie", - "value": "_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCMkRsTA5ASIKZmxhc2hJQzonQWN0aW9uQ29u%250AdHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7ADoMY3NyZl9p%250AZCIlZTE2MjEyZjA4YjcwMzJjMDQwOWZkZjlmNzI2YWVjZDM6EHN0YXlfc2Vj%250AdXJlVDoTcGFzc3dvcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMy%250AMjIwNGUwZGVkYTdkNWQ4OWI6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6CXVzZXJp%250ABGXP6Bc6B2lkIiVhZmIxZjllYzIzMDcwMzgwY2RlZWRhNWI4ZTNiNTA4YjoV%250AaW5fbmV3X3VzZXJfZmxvdzA6E3Nob3dfaGVscF9saW5rMA%253D%253D--235d712abbc9959c964f95108c99fa8e5cc3d938; domain=.twitter.com; path=/; secure; HttpOnly" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "vary", - "value": "Accept-Encoding" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-mid", - "value": "f12024b77a501c7714b97e0331a366fd74aef83e" - }, - { - "name": "x-ratelimit-class", - "value": "api" - }, - { - "name": "x-ratelimit-limit", - "value": "150" - }, - { - "name": "x-ratelimit-remaining", - "value": "150" - }, - { - "name": "x-ratelimit-reset", - "value": "1345141872" - }, - { - "name": "x-runtime", - "value": "0.03438" - }, - { - "name": "x-transaction", - "value": "e073ca353d687e57" - }, - { - "name": "x-transaction-mask", - "value": "a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "application/json" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 246, - "receive": 0 - } - }, - { - "pageref": "page_2_0", - "startedDateTime": "2012-08-16T18:28:14.233+00:00", - "time": 260, - "request": { - "method": "GET", - "url": "https://api.twitter.com/1/direct_messages/sent.json?count=50&include_entities=true", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "api.twitter.com" - }, - { - "name": "Accept", - "value": "application/json, text/javascript, */*; q=0.01" - }, - { - "name": "Referer", - "value": "https://api.twitter.com/receiver.html" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "X-PHX", - "value": "true" - }, - { - "name": "X-Requested-With", - "value": "XMLHttpRequest" - } - ], - "httpVersion": "1.1", - "queryString": [ - { - "name": "count", - "value": "50" - }, - { - "name": "include_entities", - "value": "true" - } - ] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-length", - "value": "935" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:28:14 GMT" - }, - { - "name": "etag", - "value": "\"f613d3f7346e4c1a034485dc484b4bda\"" - }, - { - "name": "expires", - "value": "Tue, 31 Mar 1981 05:00:00 GMT" - }, - { - "name": "last-modified", - "value": "Thu, 16 Aug 2012 18:28:14 GMT" - }, - { - "name": "pragma", - "value": "no-cache" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "set-cookie", - "value": "dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:14 GMT" - }, - { - "name": "set-cookie", - "value": "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT" - }, - { - "name": "set-cookie", - "value": "_twitter_sess=BAh7DzoTc2hvd19oZWxwX2xpbmswOg9jcmVhdGVkX2F0bCsIyRGxMDkBIgpm%250AbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpGbGFzaDo6Rmxhc2hIYXNoewAG%250AOgpAdXNlZHsAOgxjc3JmX2lkIiVlMTYyMTJmMDhiNzAzMmMwNDA5ZmRmOWY3%250AMjZhZWNkMzoQc3RheV9zZWN1cmVUOhNwYXNzd29yZF90b2tlbiItNWMxZTk5%250AODg2Mzc1MWQxZTJmYzlkYzIyMjA0ZTBkZWRhN2Q1ZDg5Yjobc2Vzc2lvbl9w%250AYXNzd29yZF90b2tlbiItNWMxZTk5ODg2Mzc1MWQxZTJmYzlkYzIyMjA0ZTBk%250AZWRhN2Q1ZDg5YjoJdXNlcmkEZc%252FoFzoHaWQiJWFmYjFmOWVjMjMwNzAzODBj%250AZGVlZGE1YjhlM2I1MDhiOhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--364b01e711b490ce00e95c6984b6b34c5ecf0a49; domain=.twitter.com; path=/; secure; HttpOnly" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "vary", - "value": "Accept-Encoding" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-mid", - "value": "a4c74b8cb6c9823795f8e9569c6bea43fdd360fc" - }, - { - "name": "x-ratelimit-class", - "value": "api" - }, - { - "name": "x-ratelimit-limit", - "value": "150" - }, - { - "name": "x-ratelimit-remaining", - "value": "150" - }, - { - "name": "x-ratelimit-reset", - "value": "1345141872" - }, - { - "name": "x-runtime", - "value": "0.01953" - }, - { - "name": "x-transaction", - "value": "5687c6187e32c75a" - }, - { - "name": "x-transaction-mask", - "value": "a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "application/json" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 260, - "receive": -1 - } - }, - { - "pageref": "page_2_0", - "startedDateTime": "2012-08-16T18:28:14.253+00:00", - "time": 888, - "request": { - "method": "GET", - "url": "https://api.twitter.com/i/search/typeahead.json?count=2500&prefetch=true&result_type=users&post_authenticity_token=51bd72c7fbd5920e8b63cece5d48828d359e21e8", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "api.twitter.com" - }, - { - "name": "Accept", - "value": "application/json, text/javascript, */*; q=0.01" - }, - { - "name": "Referer", - "value": "https://api.twitter.com/receiver.html" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "X-PHX", - "value": "true" - }, - { - "name": "X-Requested-With", - "value": "XMLHttpRequest" - } - ], - "httpVersion": "1.1", - "queryString": [ - { - "name": "count", - "value": "2500" - }, - { - "name": "prefetch", - "value": "true" - }, - { - "name": "result_type", - "value": "users" - }, - { - "name": "post_authenticity_token", - "value": "51bd72c7fbd5920e8b63cece5d48828d359e21e8" - } - ] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-length", - "value": "30927" - }, - { - "name": "content-type", - "value": "application/json;charset=utf-8" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:28:14 GMT" - }, - { - "name": "expires", - "value": "Tue, 31 Mar 1981 05:00:00 GMT" - }, - { - "name": "last-modified", - "value": "Thu, 16 Aug 2012 18:28:14 GMT" - }, - { - "name": "pragma", - "value": "no-cache" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-ratelimit-class", - "value": "api" - }, - { - "name": "x-ratelimit-limit", - "value": "150" - }, - { - "name": "x-ratelimit-remaining", - "value": "150" - }, - { - "name": "x-ratelimit-reset", - "value": "1345141872" - }, - { - "name": "x-transaction", - "value": "3ad91ab14bdbefea" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "application/json" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 340, - "receive": 548 - } - }, - { - "pageref": "page_2_0", - "startedDateTime": "2012-08-16T18:28:14.253+00:00", - "time": 237, - "request": { - "method": "GET", - "url": "https://api.twitter.com/1/saved_searches.json", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "api.twitter.com" - }, - { - "name": "Accept", - "value": "application/json, text/javascript, */*; q=0.01" - }, - { - "name": "Referer", - "value": "https://api.twitter.com/receiver.html" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "X-PHX", - "value": "true" - }, - { - "name": "X-Requested-With", - "value": "XMLHttpRequest" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-length", - "value": "22" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:28:14 GMT" - }, - { - "name": "etag", - "value": "\"d751713988987e9331980363e24189ce\"" - }, - { - "name": "expires", - "value": "Tue, 31 Mar 1981 05:00:00 GMT" - }, - { - "name": "last-modified", - "value": "Thu, 16 Aug 2012 18:28:14 GMT" - }, - { - "name": "pragma", - "value": "no-cache" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "set-cookie", - "value": "dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:14 GMT" - }, - { - "name": "set-cookie", - "value": "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT" - }, - { - "name": "set-cookie", - "value": "_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCMkRsTA5AToMY3NyZl9pZCIlZTE2MjEyZjA4%250AYjcwMzJjMDQwOWZkZjlmNzI2YWVjZDM6EHN0YXlfc2VjdXJlVDoTcGFzc3dv%250AcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdk%250ANWQ4OWI6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFk%250AMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6CXVzZXJpBGXP6BciCmZsYXNo%250ASUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhhc2h7AAY6CkB1%250Ac2VkewA6E3Nob3dfaGVscF9saW5rMDoHaWQiJWFmYjFmOWVjMjMwNzAzODBj%250AZGVlZGE1YjhlM2I1MDhiOhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--24246159794fe09fe2d10ba78920ffc90c362e06; domain=.twitter.com; path=/; secure; HttpOnly" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "vary", - "value": "Accept-Encoding" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-mid", - "value": "ff23184403480d00eb183032d617437e6fc3288e" - }, - { - "name": "x-ratelimit-class", - "value": "api" - }, - { - "name": "x-ratelimit-limit", - "value": "150" - }, - { - "name": "x-ratelimit-remaining", - "value": "150" - }, - { - "name": "x-ratelimit-reset", - "value": "1345141872" - }, - { - "name": "x-runtime", - "value": "0.01640" - }, - { - "name": "x-transaction", - "value": "ca5c7ea8f988c413" - }, - { - "name": "x-transaction-mask", - "value": "a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "application/json" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 237, - "receive": 0 - } - }, - { - "pageref": "page_2_0", - "startedDateTime": "2012-08-16T18:28:14.278+00:00", - "time": 192, - "request": { - "method": "GET", - "url": "https://twitter.com/images/spinner.gif", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "twitter.com" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "accept-ranges", - "value": "bytes" - }, - { - "name": "cache-control", - "value": "max-age=315360000" - }, - { - "name": "content-length", - "value": "457" - }, - { - "name": "content-type", - "value": "image/gif" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:28:14 GMT" - }, - { - "name": "expires", - "value": "Sun, 14 Aug 2022 18:28:14 GMT" - }, - { - "name": "last-modified", - "value": "Wed, 15 Aug 2012 21:05:49 GMT" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-xss-protection", - "value": "1; mode=block" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/gif" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 192, - "receive": 0 - } - }, - { - "pageref": "page_2_0", - "startedDateTime": "2012-08-16T18:28:14.287+00:00", - "time": 212, - "request": { - "method": "GET", - "url": "https://api.twitter.com/1/trends/available.json?lang=pt", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "api.twitter.com" - }, - { - "name": "Accept", - "value": "application/json, text/javascript, */*; q=0.01" - }, - { - "name": "Referer", - "value": "https://api.twitter.com/receiver.html" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "X-PHX", - "value": "true" - }, - { - "name": "X-Requested-With", - "value": "XMLHttpRequest" - } - ], - "httpVersion": "1.1", - "queryString": [ - { - "name": "lang", - "value": "pt" - } - ] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "max-age=2592000, must-revalidate" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-length", - "value": "3912" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:28:14 GMT" - }, - { - "name": "etag", - "value": "\"f497ca90dcd36818273c5e38d5ad0bad\"" - }, - { - "name": "expires", - "value": "Tue, 31 Mar 1981 05:00:00 GMT" - }, - { - "name": "last-modified", - "value": "Thu, 16 Aug 2012 18:28:14 GMT" - }, - { - "name": "pragma", - "value": "no-cache" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "set-cookie", - "value": "dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:14 GMT" - }, - { - "name": "set-cookie", - "value": "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT" - }, - { - "name": "set-cookie", - "value": "_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCMkRsTA5AToMY3NyZl9pZCIlZTE2MjEyZjA4%250AYjcwMzJjMDQwOWZkZjlmNzI2YWVjZDM6EHN0YXlfc2VjdXJlVDoTcGFzc3dv%250AcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdk%250ANWQ4OWIiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFz%250AaEhhc2h7AAY6CkB1c2VkewA6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6CXVzZXJp%250ABGXP6Bc6E3Nob3dfaGVscF9saW5rMDoHaWQiJWFmYjFmOWVjMjMwNzAzODBj%250AZGVlZGE1YjhlM2I1MDhiOhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--c633ab869131e6b08062adb28dd9e0367b1920e8; domain=.twitter.com; path=/; secure; HttpOnly" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "vary", - "value": "Accept-Encoding" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-mid", - "value": "87cf3ff1568b90352eb055e13034d8597ae1f55b" - }, - { - "name": "x-ratelimit-class", - "value": "api" - }, - { - "name": "x-ratelimit-limit", - "value": "150" - }, - { - "name": "x-ratelimit-remaining", - "value": "150" - }, - { - "name": "x-ratelimit-reset", - "value": "1345141872" - }, - { - "name": "x-runtime", - "value": "0.03665" - }, - { - "name": "x-transaction", - "value": "00709abcb0003356" - }, - { - "name": "x-transaction-mask", - "value": "a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "application/json" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 212, - "receive": 0 - } - }, - { - "pageref": "page_2_0", - "startedDateTime": "2012-08-16T18:28:14.339+00:00", - "time": 185, - "request": { - "method": "GET", - "url": "https://api.twitter.com/1/users/recommendations.json?limit=3&excluded=&display_location=wtf-component&pc=true&connections=true&algorithm=null&force_new_signup=false", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "api.twitter.com" - }, - { - "name": "Accept", - "value": "application/json, text/javascript, */*; q=0.01" - }, - { - "name": "Referer", - "value": "https://api.twitter.com/receiver.html" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "X-PHX", - "value": "true" - }, - { - "name": "X-Requested-With", - "value": "XMLHttpRequest" - } - ], - "httpVersion": "1.1", - "queryString": [ - { - "name": "limit", - "value": "3" - }, - { - "name": "excluded", - "value": "" - }, - { - "name": "display_location", - "value": "wtf-component" - }, - { - "name": "pc", - "value": "true" - }, - { - "name": "connections", - "value": "true" - }, - { - "name": "algorithm", - "value": "null" - }, - { - "name": "force_new_signup", - "value": "false" - } - ] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "private, max-age=120" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-length", - "value": "1963" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:28:14 GMT" - }, - { - "name": "etag", - "value": "\"fc44fc29d296cc233107df242ea6d6d6\"" - }, - { - "name": "expires", - "value": "Thu, 16 Aug 2012 18:30:14 GMT" - }, - { - "name": "last-modified", - "value": "Thu, 16 Aug 2012 18:26:14 GMT" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "set-cookie", - "value": "dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:14 GMT" - }, - { - "name": "set-cookie", - "value": "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT" - }, - { - "name": "set-cookie", - "value": "_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCMkRsTA5AToTcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6EHN0YXlf%250Ac2VjdXJlVDoMY3NyZl9pZCIlZTE2MjEyZjA4YjcwMzJjMDQwOWZkZjlmNzI2%250AYWVjZDM6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFk%250AMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWIiCmZsYXNoSUM6J0FjdGlvbkNv%250AbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhhc2h7AAY6CkB1c2VkewA6CXVzZXJp%250ABGXP6Bc6E3Nob3dfaGVscF9saW5rMDoHaWQiJWFmYjFmOWVjMjMwNzAzODBj%250AZGVlZGE1YjhlM2I1MDhiOhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--3f521fffb43b81c9fb4cafd4e62562567dede94f; domain=.twitter.com; path=/; secure; HttpOnly" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "vary", - "value": "Accept-Encoding" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-mid", - "value": "6bdcfa77fc5ab3ae3e0d60346d5505858ffa6436" - }, - { - "name": "x-ratelimit-class", - "value": "api" - }, - { - "name": "x-ratelimit-limit", - "value": "150" - }, - { - "name": "x-ratelimit-remaining", - "value": "150" - }, - { - "name": "x-ratelimit-reset", - "value": "1345141872" - }, - { - "name": "x-runtime", - "value": "0.06790" - }, - { - "name": "x-transaction", - "value": "870d9d1b42e99d47" - }, - { - "name": "x-transaction-mask", - "value": "a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "application/json" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 185, - "receive": 0 - } - }, - { - "pageref": "page_2_0", - "startedDateTime": "2012-08-16T18:28:14.367+00:00", - "time": 189, - "request": { - "method": "GET", - "url": "https://api.twitter.com/1/users/recommendations.json?limit=3&excluded=&display_location=wtf-component&pc=true&connections=true&algorithm=null&force_new_signup=true", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "api.twitter.com" - }, - { - "name": "Accept", - "value": "application/json, text/javascript, */*; q=0.01" - }, - { - "name": "Referer", - "value": "https://api.twitter.com/receiver.html" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "X-PHX", - "value": "true" - }, - { - "name": "X-Requested-With", - "value": "XMLHttpRequest" - } - ], - "httpVersion": "1.1", - "queryString": [ - { - "name": "limit", - "value": "3" - }, - { - "name": "excluded", - "value": "" - }, - { - "name": "display_location", - "value": "wtf-component" - }, - { - "name": "pc", - "value": "true" - }, - { - "name": "connections", - "value": "true" - }, - { - "name": "algorithm", - "value": "null" - }, - { - "name": "force_new_signup", - "value": "true" - } - ] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "private, max-age=120" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-length", - "value": "1758" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:28:14 GMT" - }, - { - "name": "etag", - "value": "\"3da2040dc5687af32d5e1514941b66b9\"" - }, - { - "name": "expires", - "value": "Thu, 16 Aug 2012 18:30:14 GMT" - }, - { - "name": "last-modified", - "value": "Thu, 16 Aug 2012 18:26:14 GMT" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "set-cookie", - "value": "dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:14 GMT" - }, - { - "name": "set-cookie", - "value": "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT" - }, - { - "name": "set-cookie", - "value": "_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCMkRsTA5AToTcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6EHN0YXlf%250Ac2VjdXJlVDoMY3NyZl9pZCIlZTE2MjEyZjA4YjcwMzJjMDQwOWZkZjlmNzI2%250AYWVjZDM6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFk%250AMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWIiCmZsYXNoSUM6J0FjdGlvbkNv%250AbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhhc2h7AAY6CkB1c2VkewA6CXVzZXJp%250ABGXP6Bc6E3Nob3dfaGVscF9saW5rMDoHaWQiJWFmYjFmOWVjMjMwNzAzODBj%250AZGVlZGE1YjhlM2I1MDhiOhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--3f521fffb43b81c9fb4cafd4e62562567dede94f; domain=.twitter.com; path=/; secure; HttpOnly" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "vary", - "value": "Accept-Encoding" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-mid", - "value": "a70da6a5080e3da9b3c6dfc5c34e4c8aaa7e75b9" - }, - { - "name": "x-ratelimit-class", - "value": "api" - }, - { - "name": "x-ratelimit-limit", - "value": "150" - }, - { - "name": "x-ratelimit-remaining", - "value": "150" - }, - { - "name": "x-ratelimit-reset", - "value": "1345141872" - }, - { - "name": "x-runtime", - "value": "0.09999" - }, - { - "name": "x-transaction", - "value": "2628499e545e1e58" - }, - { - "name": "x-transaction-mask", - "value": "a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "application/json" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 186, - "receive": 3 - } - }, - { - "pageref": "page_2_0", - "startedDateTime": "2012-08-16T18:28:14.467+00:00", - "time": 979, - "request": { - "method": "GET", - "url": "https://ssl.google-analytics.com/ga.js", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "ssl.google-analytics.com" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "age", - "value": "19282" - }, - { - "name": "cache-control", - "value": "max-age=43200, public" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-length", - "value": "14688" - }, - { - "name": "content-type", - "value": "text/javascript" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 13:06:52 GMT" - }, - { - "name": "expires", - "value": "Fri, 17 Aug 2012 01:06:52 GMT" - }, - { - "name": "last-modified", - "value": "Wed, 18 Jul 2012 18:52:25 GMT" - }, - { - "name": "server", - "value": "GFE/2.0" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "vary", - "value": "Accept-Encoding" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "text/javascript" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": 200, - "ssl": 90, - "send": 0, - "wait": 301, - "receive": 478 - } - }, - { - "pageref": "page_2_0", - "startedDateTime": "2012-08-16T18:28:14.538+00:00", - "time": 807, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/profile_images/1583722973/tweter_normal.jpg", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "LSVtZu2wpDiFu4d+vapaVvPN8dRwUWJ43mojC0K7mTmHykIPBnV5GNuX//SsN1N0" - }, - { - "name": "x-amz-request-id", - "value": "2D2EACE842AD2DBA" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:28:14 GMT" - }, - { - "name": "Last-Modified", - "value": "Tue, 11 Oct 2011 19:50:44 GMT" - }, - { - "name": "ETag", - "value": "\"d66538ca9a2d928cbf9aa07d8985726d\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/jpeg" - }, - { - "name": "Content-Length", - "value": "21376" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=604800" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 23 Aug 2012 18:28:14 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/jpeg" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 182, - "receive": 625 - } - }, - { - "pageref": "page_2_0", - "startedDateTime": "2012-08-16T18:28:14.552+00:00", - "time": 635, - "request": { - "method": "GET", - "url": "https://api.twitter.com/1/trends/1.json?pc=true&post_authenticity_token=51bd72c7fbd5920e8b63cece5d48828d359e21e8", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "api.twitter.com" - }, - { - "name": "Accept", - "value": "application/json, text/javascript, */*; q=0.01" - }, - { - "name": "Referer", - "value": "https://api.twitter.com/receiver.html" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "X-PHX", - "value": "true" - }, - { - "name": "X-Requested-With", - "value": "XMLHttpRequest" - } - ], - "httpVersion": "1.1", - "queryString": [ - { - "name": "pc", - "value": "true" - }, - { - "name": "post_authenticity_token", - "value": "51bd72c7fbd5920e8b63cece5d48828d359e21e8" - } - ] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "max-age=300, must-revalidate" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-length", - "value": "557" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:28:14 GMT" - }, - { - "name": "etag", - "value": "\"43a91b541e1313be5a8b096c41376a58\"" - }, - { - "name": "expires", - "value": "Tue, 31 Mar 1981 05:00:00 GMT" - }, - { - "name": "last-modified", - "value": "Thu, 16 Aug 2012 18:28:14 GMT" - }, - { - "name": "pragma", - "value": "no-cache" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "set-cookie", - "value": "dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:14 GMT" - }, - { - "name": "set-cookie", - "value": "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT" - }, - { - "name": "set-cookie", - "value": "_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCMkRsTA5AToMY3NyZl9pZCIlZTE2MjEyZjA4%250AYjcwMzJjMDQwOWZkZjlmNzI2YWVjZDM6EHN0YXlfc2VjdXJlVDoTcGFzc3dv%250AcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdk%250ANWQ4OWI6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFk%250AMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6CXVzZXJpBGXP6Bc6E3Nob3df%250AaGVscF9saW5rMDoHaWQiJWFmYjFmOWVjMjMwNzAzODBjZGVlZGE1YjhlM2I1%250AMDhiOhVpbl9uZXdfdXNlcl9mbG93MCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%250AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%253D%253D--b12d2036b7dac68e1a24db40b812d819c1739fc3; domain=.twitter.com; path=/; secure; HttpOnly" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "vary", - "value": "Accept-Encoding" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-mid", - "value": "2ce50599b9d965e5c930779f9942e85ad6fafda1" - }, - { - "name": "x-ratelimit-class", - "value": "api" - }, - { - "name": "x-ratelimit-limit", - "value": "150" - }, - { - "name": "x-ratelimit-remaining", - "value": "150" - }, - { - "name": "x-ratelimit-reset", - "value": "1345141872" - }, - { - "name": "x-runtime", - "value": "0.07118" - }, - { - "name": "x-transaction", - "value": "da0b8ce486287971" - }, - { - "name": "x-transaction-mask", - "value": "a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "application/json" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 635, - "receive": 0 - } - }, - { - "pageref": "page_2_0", - "startedDateTime": "2012-08-16T18:28:14.555+00:00", - "time": 792, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/profile_images/1704174536/br_reasonably_small_normal.jpg", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "juF11vMZeNSP3U/ciJvHfMsTc9kTF0RAWFZ3U1ugOYItM5Fr1RFKgLthV3q4pVNR" - }, - { - "name": "x-amz-request-id", - "value": "7428102AFE7FD946" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:28:14 GMT" - }, - { - "name": "Last-Modified", - "value": "Tue, 20 Dec 2011 14:33:00 GMT" - }, - { - "name": "ETag", - "value": "\"28cf966feb59a79205ad4ea2a548073c\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/jpeg" - }, - { - "name": "Content-Length", - "value": "20826" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=604800" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 23 Aug 2012 18:28:14 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/jpeg" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 211, - "receive": 581 - } - }, - { - "pageref": "page_2_0", - "startedDateTime": "2012-08-16T18:28:14.556+00:00", - "time": 236, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/profile_images/1708108126/pic_normal.jpg", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "7L7r7lIP/RkORKzQvVIhHkciQmEvRrp8bxnd/sABrDZgHuFw+7geUDZeMgMRwi+V" - }, - { - "name": "x-amz-request-id", - "value": "82B79479FBBE1FAC" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:28:14 GMT" - }, - { - "name": "Last-Modified", - "value": "Thu, 22 Dec 2011 15:50:19 GMT" - }, - { - "name": "ETag", - "value": "\"17d0db28c385b7524b284f7cd3aa288c\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/jpeg" - }, - { - "name": "Content-Length", - "value": "4240" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=604800" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 23 Aug 2012 18:28:14 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/jpeg" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 211, - "receive": 25 - } - }, - { - "pageref": "page_2_0", - "startedDateTime": "2012-08-16T18:28:14.582+00:00", - "time": 883, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/profile_images/1805231321/4b87e0c3-e98a-4736-ab7c-bfa4f4a0a34c_reasonably_small.png", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "EXk+8xP49yh0nnwLxfqdsZ8uV1c+95+XXMB0MPn8F8NuW9newR7w0AUDG36RmLBJ" - }, - { - "name": "x-amz-request-id", - "value": "4D63C135FAAACB59" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:28:14 GMT" - }, - { - "name": "Last-Modified", - "value": "Sun, 05 Feb 2012 05:30:07 GMT" - }, - { - "name": "ETag", - "value": "\"14b206acb5a367cf78a86ad9df1a2bcf\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/png" - }, - { - "name": "Content-Length", - "value": "32022" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=604800" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 23 Aug 2012 18:28:14 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/png" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 256, - "receive": 627 - } - }, - { - "pageref": "page_2_0", - "startedDateTime": "2012-08-16T18:28:14.583+00:00", - "time": 839, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/profile_images/728337241/conan_4cred_reasonably_small.jpg", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "35TIKPVkRZZ/0OWJDlqn0XToZXC0Ca55SSXgQiOdDMfvgblmF8Z80CaO1dAyoRoX" - }, - { - "name": "x-amz-request-id", - "value": "B4F0015A477BC2D9" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:28:14 GMT" - }, - { - "name": "Last-Modified", - "value": "Mon, 13 Sep 2010 15:28:52 GMT" - }, - { - "name": "ETag", - "value": "\"4222af25e68e27e759a145209750ee1f\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/jpeg" - }, - { - "name": "Content-Length", - "value": "24566" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "X-Error", - "value": "bad-expires" - }, - { - "name": "X-Error", - "value": "bad-expires" - }, - { - "name": "Cache-Control", - "value": "private, max-age=604800" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 23 Aug 2012 18:28:14 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/jpeg" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 256, - "receive": 583 - } - }, - { - "pageref": "page_2_0", - "startedDateTime": "2012-08-16T18:28:14.586+00:00", - "time": 793, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/profile_images/2263764407/Screen_Shot_2012-05-30_at_10.22.08_AM_reasonably_small.png", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "CgbjkPuzZtsPB82EbsWLXKzBJgK0lK32oN+z3s/XhArYVv/Io1IAAn8OwbJX1nSa" - }, - { - "name": "x-amz-request-id", - "value": "5B59576771F3D9C5" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:28:14 GMT" - }, - { - "name": "Last-Modified", - "value": "Wed, 30 May 2012 17:21:45 GMT" - }, - { - "name": "ETag", - "value": "\"94947db49794f243c1c864f8b4bed927\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/png" - }, - { - "name": "Content-Length", - "value": "7701" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=604800" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 23 Aug 2012 18:28:14 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/png" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 705, - "receive": 88 - } - }, - { - "pageref": "page_2_0", - "startedDateTime": "2012-08-16T18:28:14.586+00:00", - "time": 699, - "request": { - "method": "GET", - "url": "https://api.twitter.com/1/statuses/friends.json?cursor=-1&user_id=401133413", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "api.twitter.com" - }, - { - "name": "Accept", - "value": "application/json, text/javascript, */*; q=0.01" - }, - { - "name": "Referer", - "value": "https://api.twitter.com/receiver.html" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "X-PHX", - "value": "true" - }, - { - "name": "X-Requested-With", - "value": "XMLHttpRequest" - } - ], - "httpVersion": "1.1", - "queryString": [ - { - "name": "cursor", - "value": "-1" - }, - { - "name": "user_id", - "value": "401133413" - } - ] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-length", - "value": "1562" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:28:14 GMT" - }, - { - "name": "etag", - "value": "\"f7f113de7363af4b1bbf9811d8b5518d\"" - }, - { - "name": "expires", - "value": "Tue, 31 Mar 1981 05:00:00 GMT" - }, - { - "name": "last-modified", - "value": "Thu, 16 Aug 2012 18:28:14 GMT" - }, - { - "name": "pragma", - "value": "no-cache" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "set-cookie", - "value": "dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:14 GMT" - }, - { - "name": "set-cookie", - "value": "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT" - }, - { - "name": "set-cookie", - "value": "_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCMkRsTA5AToMY3NyZl9pZCIlZTE2MjEyZjA4%250AYjcwMzJjMDQwOWZkZjlmNzI2YWVjZDM6EHN0YXlfc2VjdXJlVDoTcGFzc3dv%250AcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdk%250ANWQ4OWI6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFk%250AMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6CXVzZXJpBGXP6BciCmZsYXNo%250ASUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhhc2h7AAY6CkB1%250Ac2VkewA6B2lkIiVhZmIxZjllYzIzMDcwMzgwY2RlZWRhNWI4ZTNiNTA4YjoV%250AaW5fbmV3X3VzZXJfZmxvdzA6E3Nob3dfaGVscF9saW5rMA%253D%253D--0fd6de6024c24a5572c87c7320df7851bad3bc32; domain=.twitter.com; path=/; secure; HttpOnly" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "vary", - "value": "Accept-Encoding" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-mid", - "value": "74eb81785f5fc56c430d914531fce6aac5fd23f1" - }, - { - "name": "x-ratelimit-class", - "value": "api" - }, - { - "name": "x-ratelimit-limit", - "value": "150" - }, - { - "name": "x-ratelimit-remaining", - "value": "150" - }, - { - "name": "x-ratelimit-reset", - "value": "1345141872" - }, - { - "name": "x-runtime", - "value": "0.08719" - }, - { - "name": "x-transaction", - "value": "615a9b2825f469fa" - }, - { - "name": "x-transaction-mask", - "value": "a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "application/json" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 647, - "receive": 52 - } - }, - { - "pageref": "page_2_0", - "startedDateTime": "2012-08-16T18:28:15.153+00:00", - "time": 142, - "request": { - "method": "GET", - "url": "https://api.twitter.com/1/blocks/blocking.json", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "api.twitter.com" - }, - { - "name": "Accept", - "value": "application/json, text/javascript, */*; q=0.01" - }, - { - "name": "Referer", - "value": "https://api.twitter.com/receiver.html" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "X-PHX", - "value": "true" - }, - { - "name": "X-Requested-With", - "value": "XMLHttpRequest" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-length", - "value": "22" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:28:15 GMT" - }, - { - "name": "etag", - "value": "\"d751713988987e9331980363e24189ce\"" - }, - { - "name": "expires", - "value": "Tue, 31 Mar 1981 05:00:00 GMT" - }, - { - "name": "last-modified", - "value": "Thu, 16 Aug 2012 18:28:15 GMT" - }, - { - "name": "pragma", - "value": "no-cache" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "set-cookie", - "value": "dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:15 GMT" - }, - { - "name": "set-cookie", - "value": "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT" - }, - { - "name": "set-cookie", - "value": "_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCMkRsTA5ASIKZmxhc2hJQzonQWN0aW9uQ29u%250AdHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7ADoMY3NyZl9p%250AZCIlZTE2MjEyZjA4YjcwMzJjMDQwOWZkZjlmNzI2YWVjZDM6EHN0YXlfc2Vj%250AdXJlVDoTcGFzc3dvcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMy%250AMjIwNGUwZGVkYTdkNWQ4OWI6E3Nob3dfaGVscF9saW5rMDobc2Vzc2lvbl9w%250AYXNzd29yZF90b2tlbiItNWMxZTk5ODg2Mzc1MWQxZTJmYzlkYzIyMjA0ZTBk%250AZWRhN2Q1ZDg5YjoJdXNlcmkEZc%252FoFzoHaWQiJWFmYjFmOWVjMjMwNzAzODBj%250AZGVlZGE1YjhlM2I1MDhiOhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--498f104993abdf54e6c4b11cf24b2a09d0c61e19; domain=.twitter.com; path=/; secure; HttpOnly" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "vary", - "value": "Accept-Encoding" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-mid", - "value": "3bd3db0bdd999bdeb7f4c8bfb40e4f99efd3d037" - }, - { - "name": "x-ratelimit-class", - "value": "api" - }, - { - "name": "x-ratelimit-limit", - "value": "150" - }, - { - "name": "x-ratelimit-remaining", - "value": "150" - }, - { - "name": "x-ratelimit-reset", - "value": "1345141872" - }, - { - "name": "x-runtime", - "value": "0.01364" - }, - { - "name": "x-transaction", - "value": "498de3deb98f031c" - }, - { - "name": "x-transaction-mask", - "value": "a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "application/json" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 142, - "receive": 0 - } - }, - { - "pageref": "page_2_0", - "startedDateTime": "2012-08-16T18:28:15.239+00:00", - "time": 96, - "request": { - "method": "GET", - "url": "https://api.twitter.com/1/promoted_content/i/log.png?promoted_trend_id=5288", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "api.twitter.com" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - } - ], - "httpVersion": "1.1", - "queryString": [ - { - "name": "promoted_trend_id", - "value": "5288" - } - ] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" - }, - { - "name": "content-length", - "value": "1" - }, - { - "name": "content-transfer-encoding", - "value": "binary" - }, - { - "name": "content-type", - "value": "image/png" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:28:15 GMT" - }, - { - "name": "etag", - "value": "\"7215ee9c7d9dc229d2921a40e899ec5f\"" - }, - { - "name": "expires", - "value": "Tue, 31 Mar 1981 05:00:00 GMT" - }, - { - "name": "last-modified", - "value": "Thu, 16 Aug 2012 18:28:15 GMT" - }, - { - "name": "pragma", - "value": "no-cache" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "set-cookie", - "value": "dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:15 GMT" - }, - { - "name": "set-cookie", - "value": "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT" - }, - { - "name": "set-cookie", - "value": "_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCMkRsTA5AToTcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6EHN0YXlf%250Ac2VjdXJlVDoMY3NyZl9pZCIlZTE2MjEyZjA4YjcwMzJjMDQwOWZkZjlmNzI2%250AYWVjZDM6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFk%250AMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6CXVzZXJpBGXP6Bc6E3Nob3df%250AaGVscF9saW5rMDoHaWQiJWFmYjFmOWVjMjMwNzAzODBjZGVlZGE1YjhlM2I1%250AMDhiOhVpbl9uZXdfdXNlcl9mbG93MCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%250AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%253D%253D--bf4f5d9ce8bd86cefd9087a906ffd8d4fde23305; domain=.twitter.com; path=/; secure; HttpOnly" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-mid", - "value": "a69ffbd13d41f40c005c79d080785d51bf6d8a76" - }, - { - "name": "x-runtime", - "value": "0.01527" - }, - { - "name": "x-transaction", - "value": "220af1ec1b0c9027" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/png" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 96, - "receive": 0 - } - }, - { - "pageref": "page_2_0", - "startedDateTime": "2012-08-16T18:28:15.275+00:00", - "time": 62, - "request": { - "method": "GET", - "url": "https://ssl.google-analytics.com/__utm.gif?utmwv=5.3.4&utms=2&utmn=2023916517&utmhn=twitter.com&utmcs=UTF-8&utmsr=1024x768&utmvp=997x614&utmsc=32-bit&utmul=en-us&utmje=1&utmfl=11.3%20r31&utmdt=Twitter%20%2F%20In%C3%ADcio&utmhid=256817567&utmr=0&utmp=%2F&utmac=UA-30775-6&utmcc=__utma%3D43838368.1437752932.1345141681.1345141681.1345141681.1%3B%2B__utmz%3D43838368.1345141681.1.1.utmcsr%3D(direct)%7Cutmccn%3D(direct)%7Cutmcmd%3D(none)%3B&utmu=q~", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "ssl.google-analytics.com" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - } - ], - "httpVersion": "1.1", - "queryString": [ - { - "name": "utmwv", - "value": "5.3.4" - }, - { - "name": "utms", - "value": "2" - }, - { - "name": "utmn", - "value": "2023916517" - }, - { - "name": "utmhn", - "value": "twitter.com" - }, - { - "name": "utmcs", - "value": "UTF-8" - }, - { - "name": "utmsr", - "value": "1024x768" - }, - { - "name": "utmvp", - "value": "997x614" - }, - { - "name": "utmsc", - "value": "32-bit" - }, - { - "name": "utmul", - "value": "en-us" - }, - { - "name": "utmje", - "value": "1" - }, - { - "name": "utmfl", - "value": "11.3 r31" - }, - { - "name": "utmdt", - "value": "Twitter / Início" - }, - { - "name": "utmhid", - "value": "256817567" - }, - { - "name": "utmr", - "value": "0" - }, - { - "name": "utmp", - "value": "/" - }, - { - "name": "utmac", - "value": "UA-30775-6" - }, - { - "name": "utmcc", - "value": "__utma=43838368.1437752932.1345141681.1345141681.1345141681.1;+__utmz=43838368.1345141681.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none);" - }, - { - "name": "utmu", - "value": "q~" - } - ] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "age", - "value": "14556" - }, - { - "name": "cache-control", - "value": "private, no-cache, no-cache=Set-Cookie, proxy-revalidate" - }, - { - "name": "content-length", - "value": "35" - }, - { - "name": "content-type", - "value": "image/gif" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 14:25:39 GMT" - }, - { - "name": "expires", - "value": "Wed, 19 Apr 2000 11:43:00 GMT" - }, - { - "name": "last-modified", - "value": "Wed, 21 Jan 2004 19:51:30 GMT" - }, - { - "name": "pragma", - "value": "no-cache" - }, - { - "name": "server", - "value": "GFE/2.0" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/gif" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 62, - "receive": 0 - } - }, - { - "pageref": "page_3_0", - "startedDateTime": "2012-08-16T18:28:35.829+00:00", - "time": 513, - "request": { - "method": "GET", - "url": "https://twitter.com/", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "twitter.com" - }, - { - "name": "Referer", - "value": "http://twitter.com/" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-length", - "value": "29632" - }, - { - "name": "content-type", - "value": "text/html; charset=utf-8" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:28:36 GMT" - }, - { - "name": "etag", - "value": "\"a1f63bbaa42862d965092881330a7a97\"" - }, - { - "name": "expires", - "value": "Tue, 31 Mar 1981 05:00:00 GMT" - }, - { - "name": "last-modified", - "value": "Thu, 16 Aug 2012 18:28:35 GMT" - }, - { - "name": "pragma", - "value": "no-cache" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "set-cookie", - "value": "dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:35 GMT" - }, - { - "name": "set-cookie", - "value": "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT" - }, - { - "name": "set-cookie", - "value": "_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCAKOsTA5AToMY3NyZl9pZCIlYjkyZjA3NWYz%250AOGU2NDEyZjU1MjBkNmU3YmNkMDk1ZTk6EHN0YXlfc2VjdXJlVDoTcGFzc3dv%250AcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdk%250ANWQ4OWI6E3Nob3dfaGVscF9saW5rMDobc2Vzc2lvbl9wYXNzd29yZF90b2tl%250AbiItNWMxZTk5ODg2Mzc1MWQxZTJmYzlkYzIyMjA0ZTBkZWRhN2Q1ZDg5YjoJ%250AdXNlcmkEZc%252FoFzoHaWQiJWRlN2RjZjIzOWJkNzBhODAxMGFlNmY2NTk2MTI0%250AMGFmIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpGbGFzaDo6Rmxhc2hI%250AYXNoewAGOgpAdXNlZHsAOhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--6c22f0c65541d3bd6514f8ae6ef2b4907e69cad7; domain=.twitter.com; path=/; secure; HttpOnly" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "strict-transport-security", - "value": "max-age=631138519" - }, - { - "name": "vary", - "value": "Accept-Encoding" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-mid", - "value": "244fddc42feee185998bd42c7ab624cce4aa18a6" - }, - { - "name": "x-runtime", - "value": "0.28876" - }, - { - "name": "x-transaction", - "value": "4ac7be2dd2ecb49d" - }, - { - "name": "x-xss-protection", - "value": "1; mode=block" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "text/html" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 374, - "receive": 139 - } - }, - { - "pageref": "page_3_0", - "startedDateTime": "2012-08-16T18:28:36.297+00:00", - "time": 1168, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/a/1345133470/t1/css/t1_core.bundle.css", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "text/css,*/*;q=0.1" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "h8z9Td/7D2oElkR+lOzR2DPSTCy8F5l9vNLkq+TyEMF1w3LyX7ayxtfe6dslwWV3" - }, - { - "name": "x-amz-request-id", - "value": "295BF01C9B4AEE58" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:28:36 GMT" - }, - { - "name": "Last-Modified", - "value": "Thu, 16 Aug 2012 16:15:41 GMT" - }, - { - "name": "ETag", - "value": "\"59337cd26ece9dbdc2d36eaa667efb4c\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "text/css" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Content-Encoding", - "value": "gzip" - }, - { - "name": "Vary", - "value": "Accept-Encoding" - }, - { - "name": "Content-Length", - "value": "27926" - }, - { - "name": "Cache-Control", - "value": "private, max-age=31449600" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 15 Aug 2013 18:28:36 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "text/css" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": 455, - "ssl": 292, - "send": 0, - "wait": 573, - "receive": 140 - } - }, - { - "pageref": "page_3_0", - "startedDateTime": "2012-08-16T18:28:37.017+00:00", - "time": 754, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "0EjGO3bb9WTEKhVNvYGh6b9jQeFAgihPIZQ/NbsiNt4kHj/25ceaF3X2lBegMBgJ" - }, - { - "name": "x-amz-request-id", - "value": "847A950EA4FC8B09" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:28:37 GMT" - }, - { - "name": "Last-Modified", - "value": "Thu, 26 May 2011 01:08:30 GMT" - }, - { - "name": "ETag", - "value": "\"46d5128c6bf7ee8b66257b966b8c883e\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/png" - }, - { - "name": "Content-Length", - "value": "1381" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=604800" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 23 Aug 2012 18:28:37 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/png" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": 248, - "ssl": 128, - "send": 0, - "wait": 506, - "receive": 0 - } - }, - { - "pageref": "page_3_0", - "startedDateTime": "2012-08-16T18:28:37.020+00:00", - "time": 908, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/a/1345133470/t1/img/twitter_web_sprite_bgs.png", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "1ZsOeVxpeSixQ9eUW7vBdJdVCjmOMLvDgu+ZczTLzbuHnDuFrUQWBQ2ptp+b0R3Z" - }, - { - "name": "x-amz-request-id", - "value": "7B74D4B95ECA0474" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:28:37 GMT" - }, - { - "name": "Last-Modified", - "value": "Thu, 16 Aug 2012 16:15:41 GMT" - }, - { - "name": "ETag", - "value": "\"dc43d8feef9a6f6bc87fb56f2810bb1f\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/png" - }, - { - "name": "Content-Length", - "value": "6602" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=604800" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 23 Aug 2012 18:28:37 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/png" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": 250, - "ssl": 126, - "send": 0, - "wait": 522, - "receive": 136 - } - }, - { - "pageref": "page_3_0", - "startedDateTime": "2012-08-16T18:28:37.023+00:00", - "time": 1257, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/profile_images/1804416058/43776868-4e4e-45cc-b91c-7ec1b6f350aa_normal.png", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "scz9/mAalAfnDOTjmTH6/7Z2QBtURR49Qp1Vx356nHEePb+Now2o2kftmfoQPc5x" - }, - { - "name": "x-amz-request-id", - "value": "769DC651FEBEC1EE" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:28:37 GMT" - }, - { - "name": "Last-Modified", - "value": "Sat, 04 Feb 2012 21:42:09 GMT" - }, - { - "name": "ETag", - "value": "\"145b79a3a79e37520432d48a880b7e97\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/png" - }, - { - "name": "Content-Length", - "value": "5456" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=604800" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 23 Aug 2012 18:28:37 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/png" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": 499, - "ssl": -1, - "send": 0, - "wait": 660, - "receive": 98 - } - }, - { - "pageref": "page_3_0", - "startedDateTime": "2012-08-16T18:28:37.025+00:00", - "time": 1896, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/a/1345133470/t1/img/twitter_web_sprite_icons.png", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "SZn+2XyAEy/JSLDLuF11DB+EDMyWDFXzXTUO3/W8freAaTH9AHevOJCsbnzmaPIf" - }, - { - "name": "x-amz-request-id", - "value": "49499E48F469851C" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:28:37 GMT" - }, - { - "name": "Last-Modified", - "value": "Thu, 16 Aug 2012 16:15:39 GMT" - }, - { - "name": "ETag", - "value": "\"223836604d80c5faa4079d6e5554cfbb\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/png" - }, - { - "name": "Content-Length", - "value": "65084" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=604800" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 23 Aug 2012 18:28:37 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/png" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": 250, - "ssl": 128, - "send": 0, - "wait": 524, - "receive": 1122 - } - }, - { - "pageref": "page_3_0", - "startedDateTime": "2012-08-16T18:28:37.035+00:00", - "time": 1151, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/profile_images/2466871092/image_normal.jpg", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "7NEj14/u5J9sQNw3RlNMXtVpVYhZRJ74FUrqMsr8JfaAlp4WB8zSMVPYnrOZYPTy" - }, - { - "name": "x-amz-request-id", - "value": "5A5B0C1EC30B7ED4" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:28:37 GMT" - }, - { - "name": "Last-Modified", - "value": "Sat, 04 Aug 2012 13:11:29 GMT" - }, - { - "name": "ETag", - "value": "\"da79b27a7964b450de35597d1e47d5b4\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/jpeg" - }, - { - "name": "Content-Length", - "value": "1453" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=604800" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 23 Aug 2012 18:28:37 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/jpeg" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": 495, - "ssl": -1, - "send": 0, - "wait": 656, - "receive": 0 - } - }, - { - "pageref": "page_3_0", - "startedDateTime": "2012-08-16T18:28:37.037+00:00", - "time": 8961, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/profile_background_images/594970743/ht90irx2ejrvh0xqpjjb.jpeg", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "uFRhiBVDHHXu6Xn0edW4PU3j52UrfVMHBda00LkFkJ7LuV895qm4mYEdei8AwRLo" - }, - { - "name": "x-amz-request-id", - "value": "AFF767D128C8A8FE" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:28:37 GMT" - }, - { - "name": "Last-Modified", - "value": "Tue, 03 Jul 2012 18:45:18 GMT" - }, - { - "name": "ETag", - "value": "\"6883b757d4b1a38d9f16b0a724ab208e\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/jpeg" - }, - { - "name": "Content-Length", - "value": "916044" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=604800" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 23 Aug 2012 18:28:37 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/jpeg" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 133, - "receive": 8828 - } - }, - { - "pageref": "page_3_0", - "startedDateTime": "2012-08-16T18:28:37.037+00:00", - "time": 770, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/a/1345133470/t1/img/wash-white-30.png", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "PFDD6lGbbBN8+gH2sMpnliksoIUhfjlUM9mZKggE2bF9ZtN21zxiMfj+Ibksdm4F" - }, - { - "name": "x-amz-request-id", - "value": "8A67F9C4834A8872" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:28:37 GMT" - }, - { - "name": "Last-Modified", - "value": "Thu, 16 Aug 2012 16:15:39 GMT" - }, - { - "name": "ETag", - "value": "\"bc953c554d5f0ab6402865969e7244b4\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/png" - }, - { - "name": "Content-Length", - "value": "940" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=604800" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 23 Aug 2012 18:28:37 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/png" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": 253, - "ssl": 132, - "send": 0, - "wait": 517, - "receive": 0 - } - }, - { - "pageref": "page_3_0", - "startedDateTime": "2012-08-16T18:28:37.130+00:00", - "time": 653, - "request": { - "method": "GET", - "url": "https://api.twitter.com/receiver.html", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "api.twitter.com" - }, - { - "name": "Accept", - "value": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "max-age=300" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-type", - "value": "text/html; charset=UTF-8" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:28:37 GMT" - }, - { - "name": "expires", - "value": "Thu, 16 Aug 2012 18:33:37 GMT" - }, - { - "name": "last-modified", - "value": "Wed, 15 Aug 2012 21:05:50 GMT" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "vary", - "value": "Accept-Encoding" - }, - { - "name": "version", - "value": "HTTP/1.1" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "text/html" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": 278, - "ssl": 219, - "send": 0, - "wait": 367, - "receive": 8 - } - }, - { - "pageref": "page_3_0", - "startedDateTime": "2012-08-16T18:28:37.145+00:00", - "time": 2867, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "0vpG/0wtJEp7TOqdtyiR/AYji7s/2lD7r3rbMX/0Dp4pD1I9sUYM5mHLIsmf6o1x" - }, - { - "name": "x-amz-request-id", - "value": "A54095D1E835D86D" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:28:37 GMT" - }, - { - "name": "Last-Modified", - "value": "Thu, 16 Aug 2012 00:09:08 GMT" - }, - { - "name": "ETag", - "value": "\"4b3ce8775717a723bf0673ba11e197fb\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "application/javascript" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Content-Encoding", - "value": "gzip" - }, - { - "name": "Vary", - "value": "Accept-Encoding" - }, - { - "name": "Content-Length", - "value": "179563" - }, - { - "name": "Cache-Control", - "value": "private, max-age=31449600" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 15 Aug 2013 18:28:37 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "application/javascript" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": 115, - "ssl": -1, - "send": 0, - "wait": 365, - "receive": 2387 - } - }, - { - "pageref": "page_3_0", - "startedDateTime": "2012-08-16T18:28:40.155+00:00", - "time": 755, - "request": { - "method": "GET", - "url": "https://api.twitter.com/1/saved_searches.json", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "api.twitter.com" - }, - { - "name": "Accept", - "value": "application/json, text/javascript, */*; q=0.01" - }, - { - "name": "Referer", - "value": "https://api.twitter.com/receiver.html" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "X-PHX", - "value": "true" - }, - { - "name": "X-Requested-With", - "value": "XMLHttpRequest" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-length", - "value": "22" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:28:40 GMT" - }, - { - "name": "etag", - "value": "\"d751713988987e9331980363e24189ce\"" - }, - { - "name": "expires", - "value": "Tue, 31 Mar 1981 05:00:00 GMT" - }, - { - "name": "last-modified", - "value": "Thu, 16 Aug 2012 18:28:40 GMT" - }, - { - "name": "pragma", - "value": "no-cache" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "set-cookie", - "value": "original_referer=padhuUp37zigs9eJTisr5PnVtwPa2Ks3aYGytRQKC2hhgexXtH6h6g%3D%3D; path=/" - }, - { - "name": "set-cookie", - "value": "dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:40 GMT" - }, - { - "name": "set-cookie", - "value": "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT" - }, - { - "name": "set-cookie", - "value": "lang=pt; path=/" - }, - { - "name": "set-cookie", - "value": "_twitter_sess=BAh7DyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo%250ASGFzaHsABjoKQHVzZWR7ADoPY3JlYXRlZF9hdGwrCAKOsTA5AToTcGFzc3dv%250AcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdk%250ANWQ4OWI6EHN0YXlfc2VjdXJlVDoMY3NyZl9pZCIlYjkyZjA3NWYzOGU2NDEy%250AZjU1MjBkNmU3YmNkMDk1ZTk6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6E3Nob3df%250AaGVscF9saW5rMDoJdXNlcmkEZc%252FoFzoHaWQiJWRlN2RjZjIzOWJkNzBhODAx%250AMGFlNmY2NTk2MTI0MGFmOhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--178c6b7df4eebd9a16cbeb02ec4d569281c07623; domain=.twitter.com; path=/; secure; HttpOnly" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "vary", - "value": "Accept-Encoding" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-mid", - "value": "1c1c92987d53f7775504bc1d656b8864f96829d0" - }, - { - "name": "x-ratelimit-class", - "value": "api" - }, - { - "name": "x-ratelimit-limit", - "value": "150" - }, - { - "name": "x-ratelimit-remaining", - "value": "150" - }, - { - "name": "x-ratelimit-reset", - "value": "1345141872" - }, - { - "name": "x-runtime", - "value": "0.01779" - }, - { - "name": "x-transaction", - "value": "81dc4edca210470c" - }, - { - "name": "x-transaction-mask", - "value": "a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "application/json" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 755, - "receive": 0 - } - }, - { - "pageref": "page_3_0", - "startedDateTime": "2012-08-16T18:28:40.918+00:00", - "time": 175, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/a/1345133470/t1/img/loader.gif", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "51RcqEB8zjhSx8FJnPr3ZlHR2hZg4JEw7Z8Jn7Rd9VzS6INKwP8vyXPXBCrpKMVy" - }, - { - "name": "x-amz-request-id", - "value": "182C1108AD43EB11" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:28:41 GMT" - }, - { - "name": "Last-Modified", - "value": "Thu, 16 Aug 2012 16:15:40 GMT" - }, - { - "name": "ETag", - "value": "\"faf550cb80c83c14e5176f61e1bb6239\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/gif" - }, - { - "name": "Content-Length", - "value": "4178" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=31449600" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 15 Aug 2013 18:28:41 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/gif" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 155, - "receive": 20 - } - }, - { - "pageref": "page_3_0", - "startedDateTime": "2012-08-16T18:28:40.941+00:00", - "time": 4399, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/c/phoenix/pt/bundle/t1-more.7cc751ba2c21e9a6c6b2303739b6c255dbd458a7.js", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "TXbWBH9+gUFymJhD1NMd3fcCy07rk/qzxY1DfKBoXm8IASOjcijGeNv83cLVIpa1" - }, - { - "name": "x-amz-request-id", - "value": "179190B3D40BA2F4" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:28:41 GMT" - }, - { - "name": "Last-Modified", - "value": "Thu, 16 Aug 2012 00:09:06 GMT" - }, - { - "name": "ETag", - "value": "\"ae65bec57dbceda1ae68d40c43ba1a99\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "application/javascript" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Content-Encoding", - "value": "gzip" - }, - { - "name": "Vary", - "value": "Accept-Encoding" - }, - { - "name": "Content-Length", - "value": "388038" - }, - { - "name": "Cache-Control", - "value": "private, max-age=31449600" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 15 Aug 2013 18:28:41 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "application/javascript" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 167, - "receive": 4232 - } - }, - { - "pageref": "page_3_0", - "startedDateTime": "2012-08-16T18:28:45.568+00:00", - "time": 456, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/a/1345133470/t1/css/t1_more.bundle.css", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "text/css,*/*;q=0.1" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "WeesZkhxFaLfaTUc5LfTFkKlsTZr33TONDtAMU2omKh8L9sP0mLFiFf9n+YvVXpp" - }, - { - "name": "x-amz-request-id", - "value": "C23C30A35C9BCDE3" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:28:45 GMT" - }, - { - "name": "Last-Modified", - "value": "Thu, 16 Aug 2012 16:15:40 GMT" - }, - { - "name": "ETag", - "value": "\"3f3602e820e9ee9471e24f73c15a9a8d\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "text/css" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Content-Encoding", - "value": "gzip" - }, - { - "name": "Vary", - "value": "Accept-Encoding" - }, - { - "name": "Content-Length", - "value": "32957" - }, - { - "name": "Cache-Control", - "value": "private, max-age=31449600" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 15 Aug 2013 18:28:45 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "text/css" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 143, - "receive": 313 - } - }, - { - "pageref": "page_3_0", - "startedDateTime": "2012-08-16T18:28:46.274+00:00", - "time": 204, - "request": { - "method": "GET", - "url": "https://api.twitter.com/1/direct_messages.json?count=50&include_entities=true", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "api.twitter.com" - }, - { - "name": "Accept", - "value": "application/json, text/javascript, */*; q=0.01" - }, - { - "name": "Referer", - "value": "https://api.twitter.com/receiver.html" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "X-PHX", - "value": "true" - }, - { - "name": "X-Requested-With", - "value": "XMLHttpRequest" - } - ], - "httpVersion": "1.1", - "queryString": [ - { - "name": "count", - "value": "50" - }, - { - "name": "include_entities", - "value": "true" - } - ] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-length", - "value": "928" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:28:46 GMT" - }, - { - "name": "etag", - "value": "\"609b75034f913260b2698796fd053f97\"" - }, - { - "name": "expires", - "value": "Tue, 31 Mar 1981 05:00:00 GMT" - }, - { - "name": "last-modified", - "value": "Thu, 16 Aug 2012 18:28:46 GMT" - }, - { - "name": "pragma", - "value": "no-cache" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "set-cookie", - "value": "dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:46 GMT" - }, - { - "name": "set-cookie", - "value": "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT" - }, - { - "name": "set-cookie", - "value": "_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCAKOsTA5AToMY3NyZl9pZCIlYjkyZjA3NWYz%250AOGU2NDEyZjU1MjBkNmU3YmNkMDk1ZTk6EHN0YXlfc2VjdXJlVDoTcGFzc3dv%250AcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdk%250ANWQ4OWI6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFk%250AMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWIiCmZsYXNoSUM6J0FjdGlvbkNv%250AbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhhc2h7AAY6CkB1c2VkewA6CXVzZXJp%250ABGXP6Bc6B2lkIiVkZTdkY2YyMzliZDcwYTgwMTBhZTZmNjU5NjEyNDBhZjoV%250AaW5fbmV3X3VzZXJfZmxvdzA6E3Nob3dfaGVscF9saW5rMA%253D%253D--9dbc30cf2870210000beb7cf8fdfd2dd147aac19; domain=.twitter.com; path=/; secure; HttpOnly" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "vary", - "value": "Accept-Encoding" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-mid", - "value": "a52ca8be68917213518d46a149a0ed9a48271226" - }, - { - "name": "x-ratelimit-class", - "value": "api" - }, - { - "name": "x-ratelimit-limit", - "value": "150" - }, - { - "name": "x-ratelimit-remaining", - "value": "150" - }, - { - "name": "x-ratelimit-reset", - "value": "1345141872" - }, - { - "name": "x-runtime", - "value": "0.02403" - }, - { - "name": "x-transaction", - "value": "8adcd86e0cfb4972" - }, - { - "name": "x-transaction-mask", - "value": "a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "application/json" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 204, - "receive": 0 - } - }, - { - "pageref": "page_3_0", - "startedDateTime": "2012-08-16T18:28:46.276+00:00", - "time": 211, - "request": { - "method": "GET", - "url": "https://api.twitter.com/1/direct_messages/sent.json?count=50&include_entities=true", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "api.twitter.com" - }, - { - "name": "Accept", - "value": "application/json, text/javascript, */*; q=0.01" - }, - { - "name": "Referer", - "value": "https://api.twitter.com/receiver.html" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "X-PHX", - "value": "true" - }, - { - "name": "X-Requested-With", - "value": "XMLHttpRequest" - } - ], - "httpVersion": "1.1", - "queryString": [ - { - "name": "count", - "value": "50" - }, - { - "name": "include_entities", - "value": "true" - } - ] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-length", - "value": "935" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:28:46 GMT" - }, - { - "name": "etag", - "value": "\"f613d3f7346e4c1a034485dc484b4bda\"" - }, - { - "name": "expires", - "value": "Tue, 31 Mar 1981 05:00:00 GMT" - }, - { - "name": "last-modified", - "value": "Thu, 16 Aug 2012 18:28:46 GMT" - }, - { - "name": "pragma", - "value": "no-cache" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "set-cookie", - "value": "dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:46 GMT" - }, - { - "name": "set-cookie", - "value": "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT" - }, - { - "name": "set-cookie", - "value": "_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCAKOsTA5AToMY3NyZl9pZCIlYjkyZjA3NWYz%250AOGU2NDEyZjU1MjBkNmU3YmNkMDk1ZTk6EHN0YXlfc2VjdXJlVDoTcGFzc3dv%250AcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdk%250ANWQ4OWI6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFk%250AMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6CXVzZXJpBGXP6Bc6E3Nob3df%250AaGVscF9saW5rMCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6%250AOkZsYXNoSGFzaHsABjoKQHVzZWR7ADoHaWQiJWRlN2RjZjIzOWJkNzBhODAx%250AMGFlNmY2NTk2MTI0MGFmOhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--eab9364845e0dd5afe04624f9dac12ef424fa557; domain=.twitter.com; path=/; secure; HttpOnly" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "vary", - "value": "Accept-Encoding" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-mid", - "value": "9fb05d5634276050a3c5f9663a07b701a7337cdc" - }, - { - "name": "x-ratelimit-class", - "value": "api" - }, - { - "name": "x-ratelimit-limit", - "value": "150" - }, - { - "name": "x-ratelimit-remaining", - "value": "150" - }, - { - "name": "x-ratelimit-reset", - "value": "1345141872" - }, - { - "name": "x-runtime", - "value": "0.02293" - }, - { - "name": "x-transaction", - "value": "bcf94df5ec1c3471" - }, - { - "name": "x-transaction-mask", - "value": "a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "application/json" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 211, - "receive": 0 - } - }, - { - "pageref": "page_3_0", - "startedDateTime": "2012-08-16T18:28:46.294+00:00", - "time": 191, - "request": { - "method": "GET", - "url": "https://api.twitter.com/1/saved_searches.json", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "api.twitter.com" - }, - { - "name": "Accept", - "value": "application/json, text/javascript, */*; q=0.01" - }, - { - "name": "Referer", - "value": "https://api.twitter.com/receiver.html" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "X-PHX", - "value": "true" - }, - { - "name": "X-Requested-With", - "value": "XMLHttpRequest" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-length", - "value": "22" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:28:46 GMT" - }, - { - "name": "etag", - "value": "\"d751713988987e9331980363e24189ce\"" - }, - { - "name": "expires", - "value": "Tue, 31 Mar 1981 05:00:00 GMT" - }, - { - "name": "last-modified", - "value": "Thu, 16 Aug 2012 18:28:46 GMT" - }, - { - "name": "pragma", - "value": "no-cache" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "set-cookie", - "value": "dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:46 GMT" - }, - { - "name": "set-cookie", - "value": "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT" - }, - { - "name": "set-cookie", - "value": "_twitter_sess=BAh7DzoTc2hvd19oZWxwX2xpbmswOg9jcmVhdGVkX2F0bCsIAo6xMDkBOgxj%250Ac3JmX2lkIiViOTJmMDc1ZjM4ZTY0MTJmNTUyMGQ2ZTdiY2QwOTVlOToQc3Rh%250AeV9zZWN1cmVUOhNwYXNzd29yZF90b2tlbiItNWMxZTk5ODg2Mzc1MWQxZTJm%250AYzlkYzIyMjA0ZTBkZWRhN2Q1ZDg5YiIKZmxhc2hJQzonQWN0aW9uQ29udHJv%250AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7ADobc2Vzc2lvbl9w%250AYXNzd29yZF90b2tlbiItNWMxZTk5ODg2Mzc1MWQxZTJmYzlkYzIyMjA0ZTBk%250AZWRhN2Q1ZDg5YjoJdXNlcmkEZc%252FoFzoHaWQiJWRlN2RjZjIzOWJkNzBhODAx%250AMGFlNmY2NTk2MTI0MGFmOhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--4c9bca3001bf778b6e58b5ecd91eb3038d821791; domain=.twitter.com; path=/; secure; HttpOnly" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "vary", - "value": "Accept-Encoding" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-mid", - "value": "508aae63770c7690fe64735e5ce41abf820c8d07" - }, - { - "name": "x-ratelimit-class", - "value": "api" - }, - { - "name": "x-ratelimit-limit", - "value": "150" - }, - { - "name": "x-ratelimit-remaining", - "value": "150" - }, - { - "name": "x-ratelimit-reset", - "value": "1345141872" - }, - { - "name": "x-runtime", - "value": "0.01516" - }, - { - "name": "x-transaction", - "value": "7fa82bc0c8f41c0a" - }, - { - "name": "x-transaction-mask", - "value": "a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "application/json" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 191, - "receive": 0 - } - }, - { - "pageref": "page_3_0", - "startedDateTime": "2012-08-16T18:28:46.304+00:00", - "time": 1208, - "request": { - "method": "GET", - "url": "https://api.twitter.com/i/search/typeahead.json?count=2500&prefetch=true&result_type=users&post_authenticity_token=290d0a6a22bcbf17d50515c92bf65da31a3baa7c", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "api.twitter.com" - }, - { - "name": "Accept", - "value": "application/json, text/javascript, */*; q=0.01" - }, - { - "name": "Referer", - "value": "https://api.twitter.com/receiver.html" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "X-PHX", - "value": "true" - }, - { - "name": "X-Requested-With", - "value": "XMLHttpRequest" - } - ], - "httpVersion": "1.1", - "queryString": [ - { - "name": "count", - "value": "2500" - }, - { - "name": "prefetch", - "value": "true" - }, - { - "name": "result_type", - "value": "users" - }, - { - "name": "post_authenticity_token", - "value": "290d0a6a22bcbf17d50515c92bf65da31a3baa7c" - } - ] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-length", - "value": "30925" - }, - { - "name": "content-type", - "value": "application/json;charset=utf-8" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:28:46 GMT" - }, - { - "name": "expires", - "value": "Tue, 31 Mar 1981 05:00:00 GMT" - }, - { - "name": "last-modified", - "value": "Thu, 16 Aug 2012 18:28:46 GMT" - }, - { - "name": "pragma", - "value": "no-cache" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-ratelimit-class", - "value": "api" - }, - { - "name": "x-ratelimit-limit", - "value": "150" - }, - { - "name": "x-ratelimit-remaining", - "value": "150" - }, - { - "name": "x-ratelimit-reset", - "value": "1345141872" - }, - { - "name": "x-transaction", - "value": "9669306ec962aa34" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "application/json" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 568, - "receive": 640 - } - }, - { - "pageref": "page_3_0", - "startedDateTime": "2012-08-16T18:28:46.313+00:00", - "time": 271, - "request": { - "method": "GET", - "url": "https://api.twitter.com/1/trends/available.json?lang=pt", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "api.twitter.com" - }, - { - "name": "Accept", - "value": "application/json, text/javascript, */*; q=0.01" - }, - { - "name": "Referer", - "value": "https://api.twitter.com/receiver.html" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "X-PHX", - "value": "true" - }, - { - "name": "X-Requested-With", - "value": "XMLHttpRequest" - } - ], - "httpVersion": "1.1", - "queryString": [ - { - "name": "lang", - "value": "pt" - } - ] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "max-age=2592000, must-revalidate" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-length", - "value": "3921" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:28:46 GMT" - }, - { - "name": "etag", - "value": "\"e55ff5e38c5365466847a8d39c53e351\"" - }, - { - "name": "expires", - "value": "Tue, 31 Mar 1981 05:00:00 GMT" - }, - { - "name": "last-modified", - "value": "Thu, 16 Aug 2012 18:28:46 GMT" - }, - { - "name": "pragma", - "value": "no-cache" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "set-cookie", - "value": "dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:46 GMT" - }, - { - "name": "set-cookie", - "value": "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT" - }, - { - "name": "set-cookie", - "value": "_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCAKOsTA5AToMY3NyZl9pZCIlYjkyZjA3NWYz%250AOGU2NDEyZjU1MjBkNmU3YmNkMDk1ZTk6EHN0YXlfc2VjdXJlVDoTcGFzc3dv%250AcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdk%250ANWQ4OWIiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFz%250AaEhhc2h7AAY6CkB1c2VkewA6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6CXVzZXJp%250ABGXP6Bc6E3Nob3dfaGVscF9saW5rMDoHaWQiJWRlN2RjZjIzOWJkNzBhODAx%250AMGFlNmY2NTk2MTI0MGFmOhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--996014e5cdc08f7c5d489243589dda396a324b2c; domain=.twitter.com; path=/; secure; HttpOnly" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "vary", - "value": "Accept-Encoding" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-mid", - "value": "f10e13d9c139f8e37ca537e8f9b8d9eca30830c5" - }, - { - "name": "x-ratelimit-class", - "value": "api" - }, - { - "name": "x-ratelimit-limit", - "value": "150" - }, - { - "name": "x-ratelimit-remaining", - "value": "150" - }, - { - "name": "x-ratelimit-reset", - "value": "1345141872" - }, - { - "name": "x-runtime", - "value": "0.15230" - }, - { - "name": "x-transaction", - "value": "b61f832ddfa6a903" - }, - { - "name": "x-transaction-mask", - "value": "a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "application/json" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 265, - "receive": 6 - } - }, - { - "pageref": "page_3_0", - "startedDateTime": "2012-08-16T18:28:46.330+00:00", - "time": 153, - "request": { - "method": "GET", - "url": "https://twitter.com/images/spinner.gif", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "twitter.com" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "accept-ranges", - "value": "bytes" - }, - { - "name": "cache-control", - "value": "max-age=315360000" - }, - { - "name": "content-length", - "value": "457" - }, - { - "name": "content-type", - "value": "image/gif" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:28:46 GMT" - }, - { - "name": "expires", - "value": "Sun, 14 Aug 2022 18:28:46 GMT" - }, - { - "name": "last-modified", - "value": "Wed, 15 Aug 2012 21:05:49 GMT" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-xss-protection", - "value": "1; mode=block" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/gif" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 153, - "receive": 0 - } - }, - { - "pageref": "page_3_0", - "startedDateTime": "2012-08-16T18:28:46.372+00:00", - "time": 148, - "request": { - "method": "GET", - "url": "https://api.twitter.com/1/users/recommendations.json?limit=3&excluded=&display_location=wtf-component&pc=true&connections=true&algorithm=null&force_new_signup=false", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "api.twitter.com" - }, - { - "name": "Accept", - "value": "application/json, text/javascript, */*; q=0.01" - }, - { - "name": "Referer", - "value": "https://api.twitter.com/receiver.html" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "X-PHX", - "value": "true" - }, - { - "name": "X-Requested-With", - "value": "XMLHttpRequest" - } - ], - "httpVersion": "1.1", - "queryString": [ - { - "name": "limit", - "value": "3" - }, - { - "name": "excluded", - "value": "" - }, - { - "name": "display_location", - "value": "wtf-component" - }, - { - "name": "pc", - "value": "true" - }, - { - "name": "connections", - "value": "true" - }, - { - "name": "algorithm", - "value": "null" - }, - { - "name": "force_new_signup", - "value": "false" - } - ] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "private, max-age=120" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-length", - "value": "2058" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:28:46 GMT" - }, - { - "name": "etag", - "value": "\"9b4d756cc98475e8e6b89b36bc1d0484\"" - }, - { - "name": "expires", - "value": "Thu, 16 Aug 2012 18:30:46 GMT" - }, - { - "name": "last-modified", - "value": "Thu, 16 Aug 2012 18:26:46 GMT" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "set-cookie", - "value": "dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:46 GMT" - }, - { - "name": "set-cookie", - "value": "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT" - }, - { - "name": "set-cookie", - "value": "_twitter_sess=BAh7DyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo%250ASGFzaHsABjoKQHVzZWR7ADoPY3JlYXRlZF9hdGwrCAKOsTA5AToTcGFzc3dv%250AcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdk%250ANWQ4OWI6EHN0YXlfc2VjdXJlVDoMY3NyZl9pZCIlYjkyZjA3NWYzOGU2NDEy%250AZjU1MjBkNmU3YmNkMDk1ZTk6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6E3Nob3df%250AaGVscF9saW5rMDoJdXNlcmkEZc%252FoFzoHaWQiJWRlN2RjZjIzOWJkNzBhODAx%250AMGFlNmY2NTk2MTI0MGFmOhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--178c6b7df4eebd9a16cbeb02ec4d569281c07623; domain=.twitter.com; path=/; secure; HttpOnly" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "vary", - "value": "Accept-Encoding" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-mid", - "value": "8724a53eb6dbb7708ba32cc2a6bf1e05b88d00e1" - }, - { - "name": "x-ratelimit-class", - "value": "api" - }, - { - "name": "x-ratelimit-limit", - "value": "150" - }, - { - "name": "x-ratelimit-remaining", - "value": "150" - }, - { - "name": "x-ratelimit-reset", - "value": "1345141872" - }, - { - "name": "x-runtime", - "value": "0.06623" - }, - { - "name": "x-transaction", - "value": "852f3d82a404926a" - }, - { - "name": "x-transaction-mask", - "value": "a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "application/json" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 143, - "receive": 5 - } - }, - { - "pageref": "page_3_0", - "startedDateTime": "2012-08-16T18:28:46.397+00:00", - "time": 203, - "request": { - "method": "GET", - "url": "https://api.twitter.com/1/users/recommendations.json?limit=3&excluded=&display_location=wtf-component&pc=true&connections=true&algorithm=null&force_new_signup=true", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "api.twitter.com" - }, - { - "name": "Accept", - "value": "application/json, text/javascript, */*; q=0.01" - }, - { - "name": "Referer", - "value": "https://api.twitter.com/receiver.html" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "X-PHX", - "value": "true" - }, - { - "name": "X-Requested-With", - "value": "XMLHttpRequest" - } - ], - "httpVersion": "1.1", - "queryString": [ - { - "name": "limit", - "value": "3" - }, - { - "name": "excluded", - "value": "" - }, - { - "name": "display_location", - "value": "wtf-component" - }, - { - "name": "pc", - "value": "true" - }, - { - "name": "connections", - "value": "true" - }, - { - "name": "algorithm", - "value": "null" - }, - { - "name": "force_new_signup", - "value": "true" - } - ] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "private, max-age=120" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-length", - "value": "2085" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:28:46 GMT" - }, - { - "name": "etag", - "value": "\"621c42945babaf2036d8ceff7a1d776e\"" - }, - { - "name": "expires", - "value": "Thu, 16 Aug 2012 18:30:46 GMT" - }, - { - "name": "last-modified", - "value": "Thu, 16 Aug 2012 18:26:46 GMT" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "set-cookie", - "value": "dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:46 GMT" - }, - { - "name": "set-cookie", - "value": "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT" - }, - { - "name": "set-cookie", - "value": "_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCAKOsTA5AToTcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6EHN0YXlf%250Ac2VjdXJlVDoMY3NyZl9pZCIlYjkyZjA3NWYzOGU2NDEyZjU1MjBkNmU3YmNk%250AMDk1ZTk6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFk%250AMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWIiCmZsYXNoSUM6J0FjdGlvbkNv%250AbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhhc2h7AAY6CkB1c2VkewA6CXVzZXJp%250ABGXP6Bc6E3Nob3dfaGVscF9saW5rMDoHaWQiJWRlN2RjZjIzOWJkNzBhODAx%250AMGFlNmY2NTk2MTI0MGFmOhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--d8fb82a051656e842b48715f1c6a3e740def6674; domain=.twitter.com; path=/; secure; HttpOnly" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "vary", - "value": "Accept-Encoding" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-mid", - "value": "2deabd0717180d49dc30aeae1b2c602b4c0184c2" - }, - { - "name": "x-ratelimit-class", - "value": "api" - }, - { - "name": "x-ratelimit-limit", - "value": "150" - }, - { - "name": "x-ratelimit-remaining", - "value": "150" - }, - { - "name": "x-ratelimit-reset", - "value": "1345141872" - }, - { - "name": "x-runtime", - "value": "0.08615" - }, - { - "name": "x-transaction", - "value": "a7d51aad8389eefe" - }, - { - "name": "x-transaction-mask", - "value": "a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "application/json" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 195, - "receive": 8 - } - }, - { - "pageref": "page_3_0", - "startedDateTime": "2012-08-16T18:28:46.476+00:00", - "time": 983, - "request": { - "method": "GET", - "url": "https://ssl.google-analytics.com/ga.js", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "ssl.google-analytics.com" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "age", - "value": "36182" - }, - { - "name": "cache-control", - "value": "max-age=43200, public" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-length", - "value": "14688" - }, - { - "name": "content-type", - "value": "text/javascript" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 08:25:44 GMT" - }, - { - "name": "expires", - "value": "Thu, 16 Aug 2012 20:25:44 GMT" - }, - { - "name": "last-modified", - "value": "Wed, 18 Jul 2012 18:52:25 GMT" - }, - { - "name": "server", - "value": "GFE/2.0" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "vary", - "value": "Accept-Encoding" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "text/javascript" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": 238, - "ssl": 94, - "send": 0, - "wait": 346, - "receive": 399 - } - }, - { - "pageref": "page_3_0", - "startedDateTime": "2012-08-16T18:28:46.545+00:00", - "time": 638, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/profile_images/1583722973/tweter_normal.jpg", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "LSVtZu2wpDiFu4d+vapaVvPN8dRwUWJ43mojC0K7mTmHykIPBnV5GNuX//SsN1N0" - }, - { - "name": "x-amz-request-id", - "value": "2D2EACE842AD2DBA" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:28:46 GMT" - }, - { - "name": "Last-Modified", - "value": "Tue, 11 Oct 2011 19:50:44 GMT" - }, - { - "name": "ETag", - "value": "\"d66538ca9a2d928cbf9aa07d8985726d\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/jpeg" - }, - { - "name": "Content-Length", - "value": "21376" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=604800" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 23 Aug 2012 18:28:46 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/jpeg" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 176, - "receive": 462 - } - }, - { - "pageref": "page_3_0", - "startedDateTime": "2012-08-16T18:28:46.547+00:00", - "time": 172, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/profile_images/1409530731/bbm__1308837078033_normal.tmp", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "ZjRboMg0IX6RiflM4H0c93YnwzkE3bB8Tup39HHCl05T5tbj450L/qZI01RN4SzD" - }, - { - "name": "x-amz-request-id", - "value": "C9816E53EA95585A" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:28:46 GMT" - }, - { - "name": "Last-Modified", - "value": "Thu, 23 Jun 2011 14:37:42 GMT" - }, - { - "name": "ETag", - "value": "\"82ea7702bcbd6e72ca978ecbd1befc8c\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/jpeg" - }, - { - "name": "Content-Length", - "value": "975" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=31449600" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 15 Aug 2013 18:28:46 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/jpeg" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 172, - "receive": 0 - } - }, - { - "pageref": "page_3_0", - "startedDateTime": "2012-08-16T18:28:46.549+00:00", - "time": 166, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/profile_images/1804574712/88229773-40dd-4d69-b666-cab3c1303e60_normal.png", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "toQVle8h7O9rj+Ja0HZLDX8RbhC79XBO1nwgryymeq33QKxBi98gnhCFEwODbXfo" - }, - { - "name": "x-amz-request-id", - "value": "645916EA7083539C" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:28:46 GMT" - }, - { - "name": "Last-Modified", - "value": "Sat, 04 Feb 2012 23:11:17 GMT" - }, - { - "name": "ETag", - "value": "\"934663fa51404d3724fdc3930584b5e5\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/png" - }, - { - "name": "Content-Length", - "value": "6257" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=604800" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 23 Aug 2012 18:28:46 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/png" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 130, - "receive": 36 - } - }, - { - "pageref": "page_3_0", - "startedDateTime": "2012-08-16T18:28:46.593+00:00", - "time": 158, - "request": { - "method": "GET", - "url": "https://api.twitter.com/1/trends/1.json?pc=true&post_authenticity_token=290d0a6a22bcbf17d50515c92bf65da31a3baa7c", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "api.twitter.com" - }, - { - "name": "Accept", - "value": "application/json, text/javascript, */*; q=0.01" - }, - { - "name": "Referer", - "value": "https://api.twitter.com/receiver.html" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "X-PHX", - "value": "true" - }, - { - "name": "X-Requested-With", - "value": "XMLHttpRequest" - } - ], - "httpVersion": "1.1", - "queryString": [ - { - "name": "pc", - "value": "true" - }, - { - "name": "post_authenticity_token", - "value": "290d0a6a22bcbf17d50515c92bf65da31a3baa7c" - } - ] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "max-age=300, must-revalidate" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-length", - "value": "557" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:28:46 GMT" - }, - { - "name": "etag", - "value": "\"006fff0db1394683b48e81ab09fcaccf\"" - }, - { - "name": "expires", - "value": "Tue, 31 Mar 1981 05:00:00 GMT" - }, - { - "name": "last-modified", - "value": "Thu, 16 Aug 2012 18:28:46 GMT" - }, - { - "name": "pragma", - "value": "no-cache" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "set-cookie", - "value": "dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:46 GMT" - }, - { - "name": "set-cookie", - "value": "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT" - }, - { - "name": "set-cookie", - "value": "_twitter_sess=BAh7DzoTc2hvd19oZWxwX2xpbmswOg9jcmVhdGVkX2F0bCsIAo6xMDkBOgxj%250Ac3JmX2lkIiViOTJmMDc1ZjM4ZTY0MTJmNTUyMGQ2ZTdiY2QwOTVlOToQc3Rh%250AeV9zZWN1cmVUOhNwYXNzd29yZF90b2tlbiItNWMxZTk5ODg2Mzc1MWQxZTJm%250AYzlkYzIyMjA0ZTBkZWRhN2Q1ZDg5Yjobc2Vzc2lvbl9wYXNzd29yZF90b2tl%250AbiItNWMxZTk5ODg2Mzc1MWQxZTJmYzlkYzIyMjA0ZTBkZWRhN2Q1ZDg5YjoJ%250AdXNlcmkEZc%252FoFyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6%250AOkZsYXNoSGFzaHsABjoKQHVzZWR7ADoHaWQiJWRlN2RjZjIzOWJkNzBhODAx%250AMGFlNmY2NTk2MTI0MGFmOhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--af18829a8203a32ea841d0936b2693a632ca5748; domain=.twitter.com; path=/; secure; HttpOnly" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "vary", - "value": "Accept-Encoding" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-mid", - "value": "24984851311e6646dcc83c632cd7bbdb4f09072f" - }, - { - "name": "x-ratelimit-class", - "value": "api" - }, - { - "name": "x-ratelimit-limit", - "value": "150" - }, - { - "name": "x-ratelimit-remaining", - "value": "150" - }, - { - "name": "x-ratelimit-reset", - "value": "1345141872" - }, - { - "name": "x-runtime", - "value": "0.07085" - }, - { - "name": "x-transaction", - "value": "fc5ab920cfbbb309" - }, - { - "name": "x-transaction-mask", - "value": "a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "application/json" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 158, - "receive": 0 - } - }, - { - "pageref": "page_3_0", - "startedDateTime": "2012-08-16T18:28:46.621+00:00", - "time": 341, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/profile_images/2437279640/2cali45t0152zzmbrpwd_reasonably_small.jpeg", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "w+pJVvqPfG5arOaIC1Kn+adZZH7TM37Te65QYuVsJTx02ZNSEifu+hITk/o5+CPd" - }, - { - "name": "x-amz-request-id", - "value": "EF7806C91232FCDF" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:28:46 GMT" - }, - { - "name": "Last-Modified", - "value": "Fri, 27 Jul 2012 05:03:37 GMT" - }, - { - "name": "ETag", - "value": "\"60bac19c857d37fc9ec1553f7fb71b1d\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/jpeg" - }, - { - "name": "Content-Length", - "value": "7327" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=604800" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 23 Aug 2012 18:28:46 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/jpeg" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 239, - "receive": 102 - } - }, - { - "pageref": "page_3_0", - "startedDateTime": "2012-08-16T18:28:46.621+00:00", - "time": 952, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/profile_images/1863133962/HAMAD_ALMAJED_SYR_reasonably_small.jpg", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "UXwyO9Dmtzs0OEVN5hTuVVpa/r6pPVpohCdrI3WwqjVxt55JKY8aGnw2ANNeTj3P" - }, - { - "name": "x-amz-request-id", - "value": "3ABBCB82AB9EEE9D" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:28:46 GMT" - }, - { - "name": "Last-Modified", - "value": "Wed, 29 Feb 2012 20:39:05 GMT" - }, - { - "name": "ETag", - "value": "\"20acd30dcc713773547885550ad42399\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/jpeg" - }, - { - "name": "Content-Length", - "value": "40333" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=604800" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 23 Aug 2012 18:28:46 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/jpeg" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 219, - "receive": 733 - } - }, - { - "pageref": "page_3_0", - "startedDateTime": "2012-08-16T18:28:46.621+00:00", - "time": 187, - "request": { - "method": "GET", - "url": "https://api.twitter.com/1/statuses/friends.json?cursor=-1&user_id=401133413", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "api.twitter.com" - }, - { - "name": "Accept", - "value": "application/json, text/javascript, */*; q=0.01" - }, - { - "name": "Referer", - "value": "https://api.twitter.com/receiver.html" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "X-PHX", - "value": "true" - }, - { - "name": "X-Requested-With", - "value": "XMLHttpRequest" - } - ], - "httpVersion": "1.1", - "queryString": [ - { - "name": "cursor", - "value": "-1" - }, - { - "name": "user_id", - "value": "401133413" - } - ] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-length", - "value": "1562" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:28:46 GMT" - }, - { - "name": "etag", - "value": "\"bf03d4de0580babb935eb4e1a6f676e7\"" - }, - { - "name": "expires", - "value": "Tue, 31 Mar 1981 05:00:00 GMT" - }, - { - "name": "last-modified", - "value": "Thu, 16 Aug 2012 18:28:46 GMT" - }, - { - "name": "pragma", - "value": "no-cache" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "set-cookie", - "value": "dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:46 GMT" - }, - { - "name": "set-cookie", - "value": "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT" - }, - { - "name": "set-cookie", - "value": "_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCAKOsTA5AToMY3NyZl9pZCIlYjkyZjA3NWYz%250AOGU2NDEyZjU1MjBkNmU3YmNkMDk1ZTk6EHN0YXlfc2VjdXJlVDoTcGFzc3dv%250AcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdk%250ANWQ4OWIiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFz%250AaEhhc2h7AAY6CkB1c2VkewA6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6E3Nob3df%250AaGVscF9saW5rMDoJdXNlcmkEZc%252FoFzoHaWQiJWRlN2RjZjIzOWJkNzBhODAx%250AMGFlNmY2NTk2MTI0MGFmOhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--13fd29c2716e4b61ee2344a90b90705387d775a5; domain=.twitter.com; path=/; secure; HttpOnly" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "vary", - "value": "Accept-Encoding" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-mid", - "value": "20629a234103bb13832bc5f40f67d5278c57964d" - }, - { - "name": "x-ratelimit-class", - "value": "api" - }, - { - "name": "x-ratelimit-limit", - "value": "150" - }, - { - "name": "x-ratelimit-remaining", - "value": "150" - }, - { - "name": "x-ratelimit-reset", - "value": "1345141872" - }, - { - "name": "x-runtime", - "value": "0.04278" - }, - { - "name": "x-transaction", - "value": "af8939897115af8e" - }, - { - "name": "x-transaction-mask", - "value": "a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "application/json" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 156, - "receive": 31 - } - }, - { - "pageref": "page_3_0", - "startedDateTime": "2012-08-16T18:28:46.623+00:00", - "time": 904, - "request": { - "method": "GET", - "url": "https://si0.twimg.com/profile_images/2384068128/zgvcaz8zn5k474o1kin2_reasonably_small.png", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "si0.twimg.com" - }, - { - "name": "Connection", - "value": "keep-alive" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "Accept", - "value": "*/*" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "Accept-Encoding", - "value": "gzip,deflate,sdch" - }, - { - "name": "Accept-Language", - "value": "en-US,en;q=0.8" - }, - { - "name": "Accept-Charset", - "value": "ISO-8859-1,utf-8;q=0.7,*;q=0.3" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "x-amz-id-2", - "value": "v5JyqLnoVN2pYTf14XkJZ8gH2zQV4Lpb+KccRYt7UQONiO2FbvfPi9Pw0v50yh6U" - }, - { - "name": "x-amz-request-id", - "value": "BE70C09E80A78287" - }, - { - "name": "Date", - "value": "Thu, 16 Aug 2012 18:28:46 GMT" - }, - { - "name": "Last-Modified", - "value": "Tue, 10 Jul 2012 04:23:31 GMT" - }, - { - "name": "ETag", - "value": "\"fad5242dd37c997ed97e4637b2d36be3\"" - }, - { - "name": "Accept-Ranges", - "value": "bytes" - }, - { - "name": "Content-Type", - "value": "image/png" - }, - { - "name": "Content-Length", - "value": "36049" - }, - { - "name": "Server", - "value": "AmazonS3" - }, - { - "name": "Cache-Control", - "value": "private, max-age=604800" - }, - { - "name": "Age", - "value": "0" - }, - { - "name": "Expires", - "value": "Thu, 23 Aug 2012 18:28:46 GMT" - }, - { - "name": "Connection", - "value": "Keep-Alive" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/png" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 220, - "receive": 684 - } - }, - { - "pageref": "page_3_0", - "startedDateTime": "2012-08-16T18:28:46.782+00:00", - "time": 744, - "request": { - "method": "GET", - "url": "https://api.twitter.com/1/promoted_content/i/log.png?promoted_trend_id=5288", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "api.twitter.com" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - } - ], - "httpVersion": "1.1", - "queryString": [ - { - "name": "promoted_trend_id", - "value": "5288" - } - ] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" - }, - { - "name": "content-length", - "value": "1" - }, - { - "name": "content-transfer-encoding", - "value": "binary" - }, - { - "name": "content-type", - "value": "image/png" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:28:46 GMT" - }, - { - "name": "etag", - "value": "\"7215ee9c7d9dc229d2921a40e899ec5f\"" - }, - { - "name": "expires", - "value": "Tue, 31 Mar 1981 05:00:00 GMT" - }, - { - "name": "last-modified", - "value": "Thu, 16 Aug 2012 18:28:46 GMT" - }, - { - "name": "pragma", - "value": "no-cache" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "set-cookie", - "value": "dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:46 GMT" - }, - { - "name": "set-cookie", - "value": "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT" - }, - { - "name": "set-cookie", - "value": "_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCAKOsTA5AToTcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6EHN0YXlf%250Ac2VjdXJlVDoMY3NyZl9pZCIlYjkyZjA3NWYzOGU2NDEyZjU1MjBkNmU3YmNk%250AMDk1ZTk6E3Nob3dfaGVscF9saW5rMDobc2Vzc2lvbl9wYXNzd29yZF90b2tl%250AbiItNWMxZTk5ODg2Mzc1MWQxZTJmYzlkYzIyMjA0ZTBkZWRhN2Q1ZDg5YiIK%250AZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsA%250ABjoKQHVzZWR7ADoJdXNlcmkEZc%252FoFzoHaWQiJWRlN2RjZjIzOWJkNzBhODAx%250AMGFlNmY2NTk2MTI0MGFmOhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--78119ba569b876e4267007f1c05f52e8fbec6fb2; domain=.twitter.com; path=/; secure; HttpOnly" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-mid", - "value": "2bfb7c91d15b57fc4ac3c0d4ed59ba30fc0a34af" - }, - { - "name": "x-runtime", - "value": "0.01699" - }, - { - "name": "x-transaction", - "value": "3ded4dce0ec2d047" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/png" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 744, - "receive": 0 - } - }, - { - "pageref": "page_3_0", - "startedDateTime": "2012-08-16T18:28:47.230+00:00", - "time": 72, - "request": { - "method": "GET", - "url": "https://ssl.google-analytics.com/__utm.gif?utmwv=5.3.4&utms=2&utmn=279024497&utmhn=twitter.com&utmcs=UTF-8&utmsr=1024x768&utmvp=997x614&utmsc=32-bit&utmul=en-us&utmje=1&utmfl=11.3%20r31&utmdt=Twitter%20%2F%20In%C3%ADcio&utmhid=1688495001&utmr=0&utmp=%2F&utmac=UA-30775-6&utmcc=__utma%3D43838368.854034156.1345141713.1345141713.1345141713.1%3B%2B__utmz%3D43838368.1345141713.1.1.utmcsr%3D(direct)%7Cutmccn%3D(direct)%7Cutmcmd%3D(none)%3B&utmu=q~", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "ssl.google-analytics.com" - }, - { - "name": "Referer", - "value": "https://twitter.com/" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - } - ], - "httpVersion": "1.1", - "queryString": [ - { - "name": "utmwv", - "value": "5.3.4" - }, - { - "name": "utms", - "value": "2" - }, - { - "name": "utmn", - "value": "279024497" - }, - { - "name": "utmhn", - "value": "twitter.com" - }, - { - "name": "utmcs", - "value": "UTF-8" - }, - { - "name": "utmsr", - "value": "1024x768" - }, - { - "name": "utmvp", - "value": "997x614" - }, - { - "name": "utmsc", - "value": "32-bit" - }, - { - "name": "utmul", - "value": "en-us" - }, - { - "name": "utmje", - "value": "1" - }, - { - "name": "utmfl", - "value": "11.3 r31" - }, - { - "name": "utmdt", - "value": "Twitter / Início" - }, - { - "name": "utmhid", - "value": "1688495001" - }, - { - "name": "utmr", - "value": "0" - }, - { - "name": "utmp", - "value": "/" - }, - { - "name": "utmac", - "value": "UA-30775-6" - }, - { - "name": "utmcc", - "value": "__utma=43838368.854034156.1345141713.1345141713.1345141713.1;+__utmz=43838368.1345141713.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none);" - }, - { - "name": "utmu", - "value": "q~" - } - ] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "age", - "value": "1704283" - }, - { - "name": "cache-control", - "value": "private, no-cache, no-cache=Set-Cookie, proxy-revalidate" - }, - { - "name": "content-length", - "value": "35" - }, - { - "name": "content-type", - "value": "image/gif" - }, - { - "name": "date", - "value": "Sat, 28 Jul 2012 01:04:04 GMT" - }, - { - "name": "expires", - "value": "Wed, 19 Apr 2000 11:43:00 GMT" - }, - { - "name": "last-modified", - "value": "Wed, 21 Jan 2004 19:51:30 GMT" - }, - { - "name": "pragma", - "value": "no-cache" - }, - { - "name": "server", - "value": "GFE/2.0" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "image/gif" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 72, - "receive": -1 - } - }, - { - "pageref": "page_3_0", - "startedDateTime": "2012-08-16T18:28:47.515+00:00", - "time": 95, - "request": { - "method": "GET", - "url": "https://api.twitter.com/1/blocks/blocking.json", - "headersSize": -1, - "bodySize": -1, - "cookies": [], - "headers": [ - { - "name": "Host", - "value": "api.twitter.com" - }, - { - "name": "Accept", - "value": "application/json, text/javascript, */*; q=0.01" - }, - { - "name": "Referer", - "value": "https://api.twitter.com/receiver.html" - }, - { - "name": "User-Agent", - "value": "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1" - }, - { - "name": "X-PHX", - "value": "true" - }, - { - "name": "X-Requested-With", - "value": "XMLHttpRequest" - } - ], - "httpVersion": "1.1", - "queryString": [] - }, - "response": { - "status": 200, - "statusText": "", - "headersSize": -1, - "bodySize": 0, - "headers": [ - { - "name": "cache-control", - "value": "no-cache, no-store, must-revalidate, pre-check=0, post-check=0" - }, - { - "name": "content-encoding", - "value": "gzip" - }, - { - "name": "content-length", - "value": "22" - }, - { - "name": "content-type", - "value": "application/json; charset=utf-8" - }, - { - "name": "date", - "value": "Thu, 16 Aug 2012 18:28:47 GMT" - }, - { - "name": "etag", - "value": "\"d751713988987e9331980363e24189ce\"" - }, - { - "name": "expires", - "value": "Tue, 31 Mar 1981 05:00:00 GMT" - }, - { - "name": "last-modified", - "value": "Thu, 16 Aug 2012 18:28:47 GMT" - }, - { - "name": "pragma", - "value": "no-cache" - }, - { - "name": "server", - "value": "tfe" - }, - { - "name": "set-cookie", - "value": "dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:47 GMT" - }, - { - "name": "set-cookie", - "value": "pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT" - }, - { - "name": "set-cookie", - "value": "_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCAKOsTA5AToTcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6EHN0YXlf%250Ac2VjdXJlVDoMY3NyZl9pZCIlYjkyZjA3NWYzOGU2NDEyZjU1MjBkNmU3YmNk%250AMDk1ZTk6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFk%250AMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6CXVzZXJpBGXP6Bc6E3Nob3df%250AaGVscF9saW5rMDoHaWQiJWRlN2RjZjIzOWJkNzBhODAxMGFlNmY2NTk2MTI0%250AMGFmOhVpbl9uZXdfdXNlcl9mbG93MCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%250AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%253D%253D--4f19cb76167df05aba6a19869f549ccba81281ac; domain=.twitter.com; path=/; secure; HttpOnly" - }, - { - "name": "status", - "value": "200 OK" - }, - { - "name": "vary", - "value": "Accept-Encoding" - }, - { - "name": "version", - "value": "HTTP/1.1" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-mid", - "value": "27ed9e9f4ebc9b94880492611648b57cbebfeb3d" - }, - { - "name": "x-ratelimit-class", - "value": "api" - }, - { - "name": "x-ratelimit-limit", - "value": "150" - }, - { - "name": "x-ratelimit-remaining", - "value": "150" - }, - { - "name": "x-ratelimit-reset", - "value": "1345141872" - }, - { - "name": "x-runtime", - "value": "0.01716" - }, - { - "name": "x-transaction", - "value": "d3b1b43adaac50be" - }, - { - "name": "x-transaction-mask", - "value": "a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3" - } - ], - "httpVersion": "1.1", - "redirectURL": "", - "content": { - "size": 0, - "mimeType": "application/json" - }, - "cookies": [] - }, - "cache": {}, - "timings": { - "blocked": -1, - "dns": -1, - "connect": -1, - "ssl": -1, - "send": 0, - "wait": 95, - "receive": 0 - } - } - ] - } -} diff --git a/test/fixtures/objects/harNotFound.json b/test/fixtures/objects/harNotFound.json deleted file mode 100644 index a62da5c..0000000 --- a/test/fixtures/objects/harNotFound.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "log": { - "version": "1.1", - "creator": { - "name": "WebPagetest", - "version": "1.8" - }, - "pages": [], - "entries": [] - } -} diff --git a/test/fixtures/objects/history.json b/test/fixtures/objects/history.json deleted file mode 100644 index b3eb8fc..0000000 --- a/test/fixtures/objects/history.json +++ /dev/null @@ -1,62 +0,0 @@ -[ - { - "Date/Time": "11/28/13 16:24:24", - "Location": "Dublin, Ireland - Chrome - Cable", - "Test ID": "131128_9N_S23", - "URL": "http://tech.vg.no/" - }, - { - "Date/Time": "11/28/13 16:24:23", - "Location": "Dulles, VA - Chrome - Cable", - "Test ID": "131128_5W_S28", - "URL": "http://www.bdaygreetings.com" - }, - { - "Date/Time": "11/28/13 16:24:23", - "Location": "Buenos Aires, Argentina - Chrome - Cable", - "Test ID": "131128_HA_S27", - "URL": "https://buyingflow.mercadolibre.com.ar/?item_id=MLA485711339&quantity=1" - }, - { - "Date/Time": "11/28/13 16:24:19", - "Location": "Dulles, VA - IE 9 - Cable", - "Test ID": "131128_XC_S26", - "URL": "http://www.pietzoomers.com" - }, - { - "Date/Time": "11/28/13 16:24:19", - "Location": "São Paulo, Brasil - Chrome - Cable", - "Test ID": "131128_A2_S25", - "URL": "http://www.livrariasaraiva.com.br" - }, - { - "Date/Time": "11/28/13 16:24:17", - "Location": "Buenos Aires, Argentina - IE8 - Cable", - "Test ID": "131128_NW_S24", - "URL": "http://ti.kwikkiangie.ac.id" - }, - { - "Date/Time": "11/28/13 16:23:11", - "Location": "Madrid, Spain - IE 8 - Cable", - "Test ID": "131128_CM_S15", - "URL": "https://www.rastreator.com/seguro-coche/datos-comparativa.aspx" - }, - { - "Date/Time": "11/28/13 16:23:04", - "Location": "Dublin, Ireland - Chrome - Cable", - "Test ID": "131128_H8_S11", - "URL": "http://www.bilgi-sor.com" - }, - { - "Date/Time": "11/28/13 16:22:40", - "Location": "Dulles, VA - IE 9 - Cable", - "Test ID": "131128_YA_S0S", - "URL": "http://www.debrastefan.com/" - }, - { - "Date/Time": "11/28/13 16:22:35", - "Location": "Dulles, VA - IE 9 - Cable", - "Test ID": "131128_HS_S0M", - "URL": "http://recreational-looting.herokuapp.com" - } -] \ No newline at end of file diff --git a/test/fixtures/objects/locations.json b/test/fixtures/objects/locations.json deleted file mode 100644 index 7caf8db..0000000 --- a/test/fixtures/objects/locations.json +++ /dev/null @@ -1,99 +0,0 @@ -{ - "response": { - "statusCode": 200, - "statusText": "Ok", - "data": { - "location": [ - { - "id": "Local_IE7", - "Label": "Local VM", - "location": "Local_IE7", - "Browser": "IE 7", - "default": 1, - "PendingTests": { - "p1": 0, - "p2": 0, - "p3": 0, - "p4": 0, - "p5": 0, - "p6": 0, - "p7": 0, - "p8": 0, - "p9": 0, - "Total": 0, - "HighPriority": 0, - "LowPriority": 0, - "Testing": 0, - "Idle": 1 - } - }, - { - "id": "Local_Firefox_Chrome:Chrome", - "Label": "Local VM", - "location": "Local_Firefox_Chrome", - "Browser": "Chrome", - "PendingTests": { - "p1": 0, - "p2": 0, - "p3": 0, - "p4": 0, - "p5": 0, - "p6": 0, - "p7": 0, - "p8": 0, - "p9": 0, - "Total": 0, - "HighPriority": 0, - "LowPriority": 0, - "Testing": 0, - "Idle": 1 - } - }, - { - "id": "Local_Firefox_Chrome:Firefox", - "Label": "Local VM", - "location": "Local_Firefox_Chrome", - "Browser": "Firefox", - "PendingTests": { - "p1": 0, - "p2": 0, - "p3": 0, - "p4": 0, - "p5": 0, - "p6": 0, - "p7": 0, - "p8": 0, - "p9": 0, - "Total": 0, - "HighPriority": 0, - "LowPriority": 0, - "Testing": 0, - "Idle": 1 - } - }, - { - "id": "Local_Firefox_Chrome:Firefox 3.6", - "Label": "Local VM", - "location": "Local_Firefox_Chrome", - "Browser": "Firefox 3.6", - "PendingTests": { - "p1": 0, - "p2": 0, - "p3": 0, - "p4": 0, - "p5": 0, - "p6": 0, - "p7": 0, - "p8": 0, - "p9": 0, - "Total": 0, - "HighPriority": 0, - "LowPriority": 0, - "Testing": 0, - "Idle": 1 - } - } - ] - } - } -} diff --git a/test/fixtures/objects/netLog.json b/test/fixtures/objects/netLog.json deleted file mode 100644 index 7b91f9f..0000000 --- a/test/fixtures/objects/netLog.json +++ /dev/null @@ -1,43072 +0,0 @@ -{ - "constants": { - "addressFamily": { - "ADDRESS_FAMILY_IPV4": 1, - "ADDRESS_FAMILY_IPV6": 2, - "ADDRESS_FAMILY_UNSPECIFIED": 0 - }, - "certStatusFlag": { - "AUTHORITY_INVALID": 4, - "COMMON_NAME_INVALID": 1, - "DATE_INVALID": 2, - "INVALID": 128, - "IS_EV": 65536, - "NAME_CONSTRAINT_VIOLATION": 16384, - "NON_UNIQUE_NAME": 1024, - "NO_REVOCATION_MECHANISM": 16, - "PINNED_KEY_MISSING": 8192, - "REVOKED": 64, - "REV_CHECKING_ENABLED": 131072, - "UNABLE_TO_CHECK_REVOCATION": 32, - "WEAK_KEY": 2048, - "WEAK_SIGNATURE_ALGORITHM": 256 - }, - "clientInfo": { - "cl": "281580", - "command_line": "\"c:\\program files\\Google\\Chrome\\Application\\chrome.exe\" --load-extension=\"C:\\webpagetest\\extension\" --user-data-dir=\"C:\\Users\\pmeenan\\AppData\\Roaming\\webpagetest_profiles\\Chrome\" --no-proxy-server --enable-experimental-extension-apis --disable-background-networking --no-default-browser-check --no-first-run --process-per-tab --new-window --disable-translate --disable-desktop-notifications --allow-running-insecure-content --log-net-log=\"C:\\Users\\pmeenan\\AppData\\Roaming\\webpagetest\\1_netlog.txt\" http://127.0.0.1:8888/blank.html", - "name": "Google Chrome", - "official": "official", - "os_type": "Windows", - "version": "37.0.2062.124", - "version_mod": "m" - }, - "loadFlag": { - "BYPASS_CACHE": 2, - "BYPASS_PROXY": 32768, - "DISABLE_CACHE": 32, - "DISABLE_CERT_REVOCATION_CHECKING": 4096, - "DISABLE_INTERCEPT": 64, - "DO_NOT_PROMPT_FOR_LOGIN": 67108864, - "DO_NOT_SAVE_COOKIES": 16384, - "DO_NOT_SEND_AUTH_DATA": 524288, - "DO_NOT_SEND_COOKIES": 262144, - "DO_NOT_USE_EMBEDDED_IDENTITY": 268435456, - "ENABLE_LOAD_TIMING": 256, - "ENABLE_UPLOAD_PROGRESS": 128, - "FROM_CACHE_IF_OFFLINE": 16, - "IGNORE_ALL_CERT_ERRORS": 1048576, - "IGNORE_CERT_AUTHORITY_INVALID": 2048, - "IGNORE_CERT_COMMON_NAME_INVALID": 512, - "IGNORE_CERT_DATE_INVALID": 1024, - "IGNORE_CERT_WRONG_USAGE": 8192, - "IGNORE_LIMITS": 33554432, - "IS_DOWNLOAD": 65536, - "MAIN_FRAME": 2097152, - "MAYBE_USER_GESTURE": 134217728, - "NORMAL": 0, - "ONLY_FROM_CACHE": 8, - "PREFERRING_CACHE": 4, - "PREFETCH": 16777216, - "REPORT_RAW_HEADERS": 8388608, - "SUB_FRAME": 4194304, - "VALIDATE_CACHE": 1, - "VERIFY_EV_CERT": 131072 - }, - "loadState": { - "CONNECTING": 11, - "DOWNLOADING_PROXY_SCRIPT": 6, - "ESTABLISHING_PROXY_TUNNEL": 9, - "IDLE": 0, - "READING_RESPONSE": 15, - "RESOLVING_HOST": 10, - "RESOLVING_HOST_IN_PROXY_SCRIPT": 8, - "RESOLVING_PROXY_FOR_URL": 7, - "SENDING_REQUEST": 13, - "SSL_HANDSHAKE": 12, - "WAITING_FOR_APPCACHE": 5, - "WAITING_FOR_AVAILABLE_SOCKET": 2, - "WAITING_FOR_CACHE": 4, - "WAITING_FOR_DELEGATE": 3, - "WAITING_FOR_RESPONSE": 14, - "WAITING_FOR_STALLED_SOCKET_POOL": 1 - }, - "logEventPhase": { - "PHASE_BEGIN": 1, - "PHASE_END": 2, - "PHASE_NONE": 0 - }, - "logEventTypes": { - "APPCACHE_DELIVERING_CACHED_RESPONSE": 227, - "APPCACHE_DELIVERING_ERROR_RESPONSE": 229, - "APPCACHE_DELIVERING_EXECUTABLE_RESPONSE": 230, - "APPCACHE_DELIVERING_FALLBACK_RESPONSE": 228, - "AUTH_PROXY": 225, - "AUTH_SERVER": 226, - "BACKUP_CONNECT_JOB_CREATED": 87, - "BAD_PROXY_LIST_REPORTED": 28, - "CANCELLED": 0, - "CERT_VERIFIER_JOB": 249, - "CERT_VERIFIER_REQUEST": 248, - "CERT_VERIFIER_REQUEST_BOUND_TO_JOB": 250, - "CHROME_EXTENSION_ABORTED_REQUEST": 242, - "CHROME_EXTENSION_IGNORED_DUE_TO_CONFLICT": 245, - "CHROME_EXTENSION_MODIFIED_HEADERS": 244, - "CHROME_EXTENSION_PROVIDE_AUTH_CREDENTIALS": 246, - "CHROME_EXTENSION_REDIRECTED_REQUEST": 243, - "CHROME_POLICY_ABORTED_REQUEST": 247, - "CONNECT_JOB_SET_SOCKET": 79, - "DELEGATE_INFO": 94, - "DISK_CACHE_ENTRY_IMPL": 108, - "DISK_CACHE_MEM_ENTRY_IMPL": 109, - "DNS_CONFIG_CHANGED": 234, - "DNS_TRANSACTION": 237, - "DNS_TRANSACTION_ATTEMPT": 239, - "DNS_TRANSACTION_QUERY": 238, - "DNS_TRANSACTION_RESPONSE": 241, - "DNS_TRANSACTION_TCP_ATTEMPT": 240, - "DOWNLOAD_FILE_ANNOTATED": 269, - "DOWNLOAD_FILE_CLOSED": 265, - "DOWNLOAD_FILE_DELETED": 267, - "DOWNLOAD_FILE_DETACHED": 266, - "DOWNLOAD_FILE_ERROR": 268, - "DOWNLOAD_FILE_OPENED": 262, - "DOWNLOAD_FILE_RENAMED": 264, - "DOWNLOAD_ITEM_ACTIVE": 253, - "DOWNLOAD_ITEM_CANCELED": 261, - "DOWNLOAD_ITEM_COMPLETING": 259, - "DOWNLOAD_ITEM_FINISHED": 260, - "DOWNLOAD_ITEM_INTERRUPTED": 257, - "DOWNLOAD_ITEM_RENAMED": 256, - "DOWNLOAD_ITEM_RESUMED": 258, - "DOWNLOAD_ITEM_SAFETY_STATE_UPDATED": 254, - "DOWNLOAD_ITEM_UPDATED": 255, - "DOWNLOAD_STARTED": 251, - "DOWNLOAD_STREAM_DRAINED": 263, - "DOWNLOAD_URL_REQUEST": 252, - "ENTRY_CLOSE": 118, - "ENTRY_DOOM": 119, - "ENTRY_READ_DATA": 110, - "ENTRY_WRITE_DATA": 111, - "FAILED": 1, - "FILE_STREAM_ALIVE": 270, - "FILE_STREAM_BOUND_TO_OWNER": 272, - "FILE_STREAM_ERROR": 274, - "FILE_STREAM_OPEN": 273, - "FILE_STREAM_SOURCE": 271, - "FTP_COMMAND_SENT": 275, - "FTP_CONTROL_CONNECTION": 276, - "FTP_CONTROL_RESPONSE": 278, - "FTP_DATA_CONNECTION": 277, - "HOST_RESOLVER_IMPL": 3, - "HOST_RESOLVER_IMPL_ATTEMPT_FINISHED": 13, - "HOST_RESOLVER_IMPL_ATTEMPT_STARTED": 12, - "HOST_RESOLVER_IMPL_CACHE_HIT": 6, - "HOST_RESOLVER_IMPL_CREATE_JOB": 8, - "HOST_RESOLVER_IMPL_DNS_TASK": 18, - "HOST_RESOLVER_IMPL_HOSTS_HIT": 7, - "HOST_RESOLVER_IMPL_IPV6_SUPPORTED": 5, - "HOST_RESOLVER_IMPL_JOB": 9, - "HOST_RESOLVER_IMPL_JOB_ATTACH": 14, - "HOST_RESOLVER_IMPL_JOB_EVICTED": 10, - "HOST_RESOLVER_IMPL_JOB_REQUEST_ATTACH": 15, - "HOST_RESOLVER_IMPL_JOB_REQUEST_DETACH": 16, - "HOST_RESOLVER_IMPL_JOB_STARTED": 11, - "HOST_RESOLVER_IMPL_PROC_TASK": 17, - "HOST_RESOLVER_IMPL_REQUEST": 4, - "HTTP_CACHE_ADD_TO_ENTRY": 102, - "HTTP_CACHE_CREATE_ENTRY": 101, - "HTTP_CACHE_DOOM_ENTRY": 103, - "HTTP_CACHE_GET_BACKEND": 99, - "HTTP_CACHE_OPEN_ENTRY": 100, - "HTTP_CACHE_READ_DATA": 106, - "HTTP_CACHE_READ_INFO": 104, - "HTTP_CACHE_WRITE_DATA": 107, - "HTTP_CACHE_WRITE_INFO": 105, - "HTTP_STREAM_JOB": 121, - "HTTP_STREAM_JOB_BOUND_TO_REQUEST": 123, - "HTTP_STREAM_PARSER_READ_HEADERS": 215, - "HTTP_STREAM_REQUEST": 120, - "HTTP_STREAM_REQUEST_BOUND_TO_JOB": 122, - "HTTP_STREAM_REQUEST_PROTO": 124, - "HTTP_TRANSACTION_DRAIN_BODY_FOR_AUTH_RESTART": 137, - "HTTP_TRANSACTION_QUIC_SEND_REQUEST_HEADERS": 133, - "HTTP_TRANSACTION_READ_BODY": 136, - "HTTP_TRANSACTION_READ_HEADERS": 134, - "HTTP_TRANSACTION_READ_RESPONSE_HEADERS": 135, - "HTTP_TRANSACTION_READ_TUNNEL_RESPONSE_HEADERS": 128, - "HTTP_TRANSACTION_RESTART_AFTER_ERROR": 138, - "HTTP_TRANSACTION_SEND_REQUEST": 129, - "HTTP_TRANSACTION_SEND_REQUEST_BODY": 131, - "HTTP_TRANSACTION_SEND_REQUEST_HEADERS": 130, - "HTTP_TRANSACTION_SEND_TUNNEL_HEADERS": 126, - "HTTP_TRANSACTION_SPDY_SEND_REQUEST_HEADERS": 132, - "HTTP_TRANSACTION_TUNNEL_READ_HEADERS": 127, - "HTTP_TRANSACTION_TUNNEL_SEND_REQUEST": 125, - "IPV6_REACHABILITY_CHECK": 303, - "NETWORK_CHANGED": 233, - "NETWORK_CONNECTIVITY_CHANGED": 232, - "NETWORK_IP_ADDRESSES_CHANGED": 231, - "PAC_JAVASCRIPT_ALERT": 31, - "PAC_JAVASCRIPT_ERROR": 30, - "PROXY_CONFIG_CHANGED": 27, - "PROXY_LIST_FALLBACK": 29, - "PROXY_SCRIPT_DECIDER": 19, - "PROXY_SCRIPT_DECIDER_FALLING_BACK_TO_NEXT_PAC_SOURCE": 23, - "PROXY_SCRIPT_DECIDER_FETCH_PAC_SCRIPT": 21, - "PROXY_SCRIPT_DECIDER_HAS_NO_FETCHER": 22, - "PROXY_SCRIPT_DECIDER_WAIT": 20, - "PROXY_SERVICE": 24, - "PROXY_SERVICE_RESOLVED_PROXY_LIST": 26, - "PROXY_SERVICE_WAITING_FOR_INIT_PAC": 25, - "QUIC_HTTP_STREAM_READ_RESPONSE_HEADERS": 214, - "QUIC_HTTP_STREAM_SEND_REQUEST_HEADERS": 213, - "QUIC_SESSION": 180, - "QUIC_SESSION_ACK_FRAME_RECEIVED": 188, - "QUIC_SESSION_ACK_FRAME_SENT": 189, - "QUIC_SESSION_BLOCKED_FRAME_RECEIVED": 192, - "QUIC_SESSION_BLOCKED_FRAME_SENT": 193, - "QUIC_SESSION_CLOSED": 212, - "QUIC_SESSION_CLOSE_ON_ERROR": 181, - "QUIC_SESSION_CONGESTION_FEEDBACK_FRAME_RECEIVED": 202, - "QUIC_SESSION_CONGESTION_FEEDBACK_FRAME_SENT": 203, - "QUIC_SESSION_CONNECTION_CLOSE_FRAME_RECEIVED": 204, - "QUIC_SESSION_CONNECTION_CLOSE_FRAME_SENT": 205, - "QUIC_SESSION_CRYPTO_HANDSHAKE_MESSAGE_RECEIVED": 210, - "QUIC_SESSION_CRYPTO_HANDSHAKE_MESSAGE_SENT": 211, - "QUIC_SESSION_GOAWAY_FRAME_RECEIVED": 194, - "QUIC_SESSION_GOAWAY_FRAME_SENT": 195, - "QUIC_SESSION_PACKET_HEADER_RECEIVED": 185, - "QUIC_SESSION_PACKET_HEADER_REVIVED": 209, - "QUIC_SESSION_PACKET_RECEIVED": 182, - "QUIC_SESSION_PACKET_RETRANSMITTED": 184, - "QUIC_SESSION_PACKET_SENT": 183, - "QUIC_SESSION_PING_FRAME_RECEIVED": 196, - "QUIC_SESSION_PING_FRAME_SENT": 197, - "QUIC_SESSION_PUBLIC_RESET_PACKET_RECEIVED": 206, - "QUIC_SESSION_RST_STREAM_FRAME_RECEIVED": 200, - "QUIC_SESSION_RST_STREAM_FRAME_SENT": 201, - "QUIC_SESSION_STOP_WAITING_FRAME_RECEIVED": 198, - "QUIC_SESSION_STOP_WAITING_FRAME_SENT": 199, - "QUIC_SESSION_STREAM_FRAME_RECEIVED": 186, - "QUIC_SESSION_STREAM_FRAME_SENT": 187, - "QUIC_SESSION_VERSION_NEGOTIATED": 208, - "QUIC_SESSION_VERSION_NEGOTIATION_PACKET_RECEIVED": 207, - "QUIC_SESSION_WINDOW_UPDATE_FRAME_RECEIVED": 190, - "QUIC_SESSION_WINDOW_UPDATE_FRAME_SENT": 191, - "REQUEST_ALIVE": 2, - "SIGNED_CERTIFICATE_TIMESTAMPS_CHECKED": 70, - "SIGNED_CERTIFICATE_TIMESTAMPS_RECEIVED": 69, - "SIMPLE_CACHE_ENTRY": 279, - "SIMPLE_CACHE_ENTRY_CHECKSUM_BEGIN": 291, - "SIMPLE_CACHE_ENTRY_CHECKSUM_END": 292, - "SIMPLE_CACHE_ENTRY_CLOSE_BEGIN": 301, - "SIMPLE_CACHE_ENTRY_CLOSE_CALL": 300, - "SIMPLE_CACHE_ENTRY_CLOSE_END": 302, - "SIMPLE_CACHE_ENTRY_CREATE_BEGIN": 286, - "SIMPLE_CACHE_ENTRY_CREATE_CALL": 284, - "SIMPLE_CACHE_ENTRY_CREATE_END": 287, - "SIMPLE_CACHE_ENTRY_CREATE_OPTIMISTIC": 285, - "SIMPLE_CACHE_ENTRY_DOOM_BEGIN": 298, - "SIMPLE_CACHE_ENTRY_DOOM_CALL": 297, - "SIMPLE_CACHE_ENTRY_DOOM_END": 299, - "SIMPLE_CACHE_ENTRY_OPEN_BEGIN": 282, - "SIMPLE_CACHE_ENTRY_OPEN_CALL": 281, - "SIMPLE_CACHE_ENTRY_OPEN_END": 283, - "SIMPLE_CACHE_ENTRY_READ_BEGIN": 289, - "SIMPLE_CACHE_ENTRY_READ_CALL": 288, - "SIMPLE_CACHE_ENTRY_READ_END": 290, - "SIMPLE_CACHE_ENTRY_SET_KEY": 280, - "SIMPLE_CACHE_ENTRY_WRITE_BEGIN": 295, - "SIMPLE_CACHE_ENTRY_WRITE_CALL": 293, - "SIMPLE_CACHE_ENTRY_WRITE_END": 296, - "SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC": 294, - "SOCKET_ALIVE": 34, - "SOCKET_BYTES_RECEIVED": 63, - "SOCKET_BYTES_SENT": 61, - "SOCKET_CLOSED": 67, - "SOCKET_IN_USE": 38, - "SOCKET_POOL": 81, - "SOCKET_POOL_BOUND_TO_CONNECT_JOB": 88, - "SOCKET_POOL_BOUND_TO_SOCKET": 89, - "SOCKET_POOL_CONNECTING_N_SOCKETS": 90, - "SOCKET_POOL_CONNECT_JOB": 77, - "SOCKET_POOL_CONNECT_JOB_CONNECT": 78, - "SOCKET_POOL_CONNECT_JOB_TIMED_OUT": 80, - "SOCKET_POOL_REUSED_AN_EXISTING_SOCKET": 84, - "SOCKET_POOL_STALLED_MAX_SOCKETS": 82, - "SOCKET_POOL_STALLED_MAX_SOCKETS_PER_GROUP": 83, - "SOCKET_READ_ERROR": 65, - "SOCKET_STREAM_CONNECT": 216, - "SOCKET_STREAM_RECEIVED": 218, - "SOCKET_STREAM_SENT": 217, - "SOCKET_WRITE_ERROR": 66, - "SOCKS5_CONNECT": 40, - "SOCKS5_GREET_READ": 222, - "SOCKS5_GREET_WRITE": 221, - "SOCKS5_HANDSHAKE_READ": 224, - "SOCKS5_HANDSHAKE_WRITE": 223, - "SOCKS_CONNECT": 39, - "SOCKS_HOSTNAME_TOO_BIG": 41, - "SOCKS_SERVER_ERROR": 45, - "SOCKS_UNEXPECTEDLY_CLOSED_DURING_GREETING": 42, - "SOCKS_UNEXPECTEDLY_CLOSED_DURING_HANDSHAKE": 43, - "SOCKS_UNEXPECTED_AUTH": 46, - "SOCKS_UNEXPECTED_VERSION": 44, - "SOCKS_UNKNOWN_ADDRESS_TYPE": 47, - "SPARSE_DELETE_CHILDREN": 117, - "SPARSE_GET_RANGE": 116, - "SPARSE_READ": 112, - "SPARSE_READ_CHILD_DATA": 114, - "SPARSE_WRITE": 113, - "SPARSE_WRITE_CHILD_DATA": 115, - "SPDY_PROXY_CLIENT_SESSION": 179, - "SPDY_SESSION": 139, - "SPDY_SESSION_CLOSE": 163, - "SPDY_SESSION_GOAWAY": 152, - "SPDY_SESSION_INITIALIZED": 140, - "SPDY_SESSION_INITIAL_WINDOW_SIZE_NO_FLOW_CONTROL": 165, - "SPDY_SESSION_INITIAL_WINDOW_SIZE_OUT_OF_RANGE": 166, - "SPDY_SESSION_PING": 151, - "SPDY_SESSION_POOL_CREATED_NEW_SESSION": 170, - "SPDY_SESSION_POOL_FOUND_EXISTING_SESSION": 168, - "SPDY_SESSION_POOL_FOUND_EXISTING_SESSION_FROM_IP_POOL": 169, - "SPDY_SESSION_POOL_IMPORTED_SESSION_FROM_SOCKET": 171, - "SPDY_SESSION_POOL_REMOVE_SESSION": 172, - "SPDY_SESSION_PUSHED_SYN_STREAM": 142, - "SPDY_SESSION_RECEIVED_WINDOW_UPDATE_FRAME": 153, - "SPDY_SESSION_RECV_DATA": 159, - "SPDY_SESSION_RECV_HEADERS": 144, - "SPDY_SESSION_RECV_PUSH_PROMISE": 160, - "SPDY_SESSION_RECV_SETTING": 148, - "SPDY_SESSION_RECV_SETTINGS": 147, - "SPDY_SESSION_RST_STREAM": 149, - "SPDY_SESSION_SEND_CREDENTIAL": 157, - "SPDY_SESSION_SEND_DATA": 158, - "SPDY_SESSION_SEND_HEADERS": 143, - "SPDY_SESSION_SEND_RST_STREAM": 150, - "SPDY_SESSION_SEND_SETTINGS": 146, - "SPDY_SESSION_SENT_WINDOW_UPDATE_FRAME": 154, - "SPDY_SESSION_STALLED_MAX_STREAMS": 164, - "SPDY_SESSION_STREAM_STALLED_BY_SESSION_SEND_WINDOW": 161, - "SPDY_SESSION_STREAM_STALLED_BY_STREAM_SEND_WINDOW": 162, - "SPDY_SESSION_SYN_REPLY": 145, - "SPDY_SESSION_SYN_STREAM": 141, - "SPDY_SESSION_UPDATE_RECV_WINDOW": 156, - "SPDY_SESSION_UPDATE_SEND_WINDOW": 155, - "SPDY_SESSION_UPDATE_STREAMS_SEND_WINDOW_SIZE": 167, - "SPDY_STREAM": 173, - "SPDY_STREAM_ADOPTED_PUSH_STREAM": 174, - "SPDY_STREAM_ERROR": 178, - "SPDY_STREAM_FLOW_CONTROL_UNSTALLED": 175, - "SPDY_STREAM_UPDATE_RECV_WINDOW": 177, - "SPDY_STREAM_UPDATE_SEND_WINDOW": 176, - "SSL_CERTIFICATES_RECEIVED": 68, - "SSL_CHANNEL_ID_PROVIDED": 53, - "SSL_CHANNEL_ID_REQUESTED": 52, - "SSL_CLIENT_CERT_PROVIDED": 54, - "SSL_CLIENT_CERT_REQUESTED": 50, - "SSL_CONNECT": 48, - "SSL_GET_DOMAIN_BOUND_CERT": 51, - "SSL_HANDSHAKE_ERROR": 55, - "SSL_NSS_ERROR": 60, - "SSL_READ_ERROR": 56, - "SSL_SERVER_HANDSHAKE": 49, - "SSL_SOCKET_BYTES_RECEIVED": 64, - "SSL_SOCKET_BYTES_SENT": 62, - "SSL_VERIFICATION_MERGED": 59, - "SSL_VERSION_FALLBACK": 58, - "SSL_WRITE_ERROR": 57, - "SUBMITTED_TO_RESOLVER_THREAD": 33, - "TCP_ACCEPT": 37, - "TCP_CLIENT_SOCKET_POOL_REQUESTED_SOCKET": 85, - "TCP_CLIENT_SOCKET_POOL_REQUESTED_SOCKETS": 86, - "TCP_CONNECT": 35, - "TCP_CONNECT_ATTEMPT": 36, - "THROTTLING_DISABLED_FOR_HOST": 235, - "THROTTLING_REJECTED_REQUEST": 236, - "UDP_BYTES_RECEIVED": 73, - "UDP_BYTES_SENT": 74, - "UDP_CONNECT": 71, - "UDP_LOCAL_ADDRESS": 72, - "UDP_RECEIVE_ERROR": 75, - "UDP_SEND_ERROR": 76, - "URL_REQUEST_DELEGATE": 93, - "URL_REQUEST_JOB_BYTES_READ": 95, - "URL_REQUEST_JOB_FILTERED_BYTES_READ": 96, - "URL_REQUEST_REDIRECTED": 92, - "URL_REQUEST_REDIRECT_JOB": 98, - "URL_REQUEST_SET_PRIORITY": 97, - "URL_REQUEST_START_JOB": 91, - "WAITING_FOR_PROXY_RESOLVER_THREAD": 32, - "WEB_SOCKET_READ_RESPONSE_HEADERS": 220, - "WEB_SOCKET_SEND_REQUEST_HEADERS": 219 - }, - "logFormatVersion": 1, - "logLevelType": { - "LOG_ALL": 0, - "LOG_ALL_BUT_BYTES": 1, - "LOG_STRIP_PRIVATE_DATA": 2 - }, - "logSourceType": { - "CERT_VERIFIER_JOB": 15, - "CONNECT_JOB": 4, - "DISK_CACHE_ENTRY": 10, - "DNS_PROBER": 18, - "DOWNLOAD": 16, - "EXPONENTIAL_BACKOFF_THROTTLING": 13, - "FILESTREAM": 17, - "HOST_RESOLVER_IMPL_JOB": 9, - "HOST_RESOLVER_IMPL_REQUEST": 8, - "HTTP_STREAM_JOB": 12, - "IPV6_REACHABILITY_CHECK": 20, - "MEMORY_CACHE_ENTRY": 11, - "NONE": 0, - "PROXY_CLIENT_SOCKET": 19, - "PROXY_SCRIPT_DECIDER": 3, - "QUIC_SESSION": 7, - "SOCKET": 5, - "SOCKET_STREAM": 2, - "SPDY_SESSION": 6, - "UDP_SOCKET": 14, - "URL_REQUEST": 1 - }, - "netError": { - "ABORTED": -3, - "ACCESS_DENIED": -10, - "ADDRESS_INVALID": -108, - "ADDRESS_IN_USE": -147, - "ADDRESS_UNREACHABLE": -109, - "ADD_USER_CERT_FAILED": -503, - "BAD_SSL_CLIENT_AUTH_CERT": -117, - "BLOCKED_BY_ADMINISTRATOR": -22, - "BLOCKED_BY_CLIENT": -20, - "BLOCKED_ENROLLMENT_CHECK_PENDING": -24, - "CACHE_CHECKSUM_MISMATCH": -408, - "CACHE_CHECKSUM_READ_FAILURE": -407, - "CACHE_CREATE_FAILURE": -405, - "CACHE_MISS": -400, - "CACHE_OPEN_FAILURE": -404, - "CACHE_OPERATION_NOT_SUPPORTED": -403, - "CACHE_RACE": -406, - "CACHE_READ_FAILURE": -401, - "CACHE_WRITE_FAILURE": -402, - "CERT_AUTHORITY_INVALID": -202, - "CERT_COMMON_NAME_INVALID": -200, - "CERT_CONTAINS_ERRORS": -203, - "CERT_DATABASE_CHANGED": -714, - "CERT_DATE_INVALID": -201, - "CERT_END": -213, - "CERT_ERROR_IN_SSL_RENEGOTIATION": -116, - "CERT_INVALID": -207, - "CERT_NAME_CONSTRAINT_VIOLATION": -212, - "CERT_NON_UNIQUE_NAME": -210, - "CERT_NO_REVOCATION_MECHANISM": -204, - "CERT_REVOKED": -206, - "CERT_UNABLE_TO_CHECK_REVOCATION": -205, - "CERT_WEAK_KEY": -211, - "CERT_WEAK_SIGNATURE_ALGORITHM": -208, - "CLIENT_AUTH_CERT_TYPE_UNSUPPORTED": -151, - "CONNECTION_ABORTED": -103, - "CONNECTION_CLOSED": -100, - "CONNECTION_FAILED": -104, - "CONNECTION_REFUSED": -102, - "CONNECTION_RESET": -101, - "CONNECTION_TIMED_OUT": -118, - "CONTENT_DECODING_FAILED": -330, - "CONTENT_LENGTH_MISMATCH": -354, - "CT_NO_SCTS_VERIFIED_OK": -158, - "DISALLOWED_URL_SCHEME": -301, - "DNS_CACHE_MISS": -804, - "DNS_MALFORMED_RESPONSE": -800, - "DNS_SEARCH_EMPTY": -805, - "DNS_SERVER_FAILED": -802, - "DNS_SERVER_REQUIRES_TCP": -801, - "DNS_SORT_ERROR": -806, - "DNS_TIMED_OUT": -803, - "EMPTY_RESPONSE": -324, - "ENCODING_CONVERSION_FAILED": -333, - "ENCODING_DETECTION_FAILED": -340, - "FAILED": -2, - "FILE_EXISTS": -16, - "FILE_NOT_FOUND": -6, - "FILE_NO_SPACE": -18, - "FILE_PATH_TOO_LONG": -17, - "FILE_TOO_BIG": -8, - "FILE_VIRUS_INFECTED": -19, - "FTP_BAD_COMMAND_SEQUENCE": -607, - "FTP_COMMAND_NOT_SUPPORTED": -606, - "FTP_FAILED": -601, - "FTP_FILE_BUSY": -604, - "FTP_SERVICE_UNAVAILABLE": -602, - "FTP_SYNTAX_ERROR": -605, - "FTP_TRANSFER_ABORTED": -603, - "HOST_RESOLVER_QUEUE_TOO_LARGE": -119, - "HTTPS_PROXY_TUNNEL_RESPONSE": -140, - "IMPORT_CA_CERT_FAILED": -705, - "IMPORT_CA_CERT_NOT_CA": -703, - "IMPORT_CERT_ALREADY_EXISTS": -704, - "IMPORT_SERVER_CERT_FAILED": -706, - "INCOMPLETE_CHUNKED_ENCODING": -355, - "INCOMPLETE_SPDY_HEADERS": -347, - "INSECURE_RESPONSE": -501, - "INSUFFICIENT_RESOURCES": -12, - "INTERNET_DISCONNECTED": -106, - "INVALID_ARGUMENT": -4, - "INVALID_AUTH_CREDENTIALS": -338, - "INVALID_CHUNKED_ENCODING": -321, - "INVALID_HANDLE": -5, - "INVALID_RESPONSE": -320, - "INVALID_SPDY_STREAM": -335, - "INVALID_URL": -300, - "IO_PENDING": -1, - "KEY_GENERATION_FAILED": -710, - "MALFORMED_IDENTITY": -329, - "MANDATORY_PROXY_CONFIGURATION_FAILED": -131, - "METHOD_NOT_SUPPORTED": -322, - "MISCONFIGURED_AUTH_ENVIRONMENT": -343, - "MISSING_AUTH_CREDENTIALS": -341, - "MSG_TOO_BIG": -142, - "NAME_NOT_RESOLVED": -105, - "NAME_RESOLUTION_FAILED": -137, - "NETWORK_ACCESS_DENIED": -138, - "NETWORK_CHANGED": -21, - "NETWORK_IO_SUSPENDED": -331, - "NOT_IMPLEMENTED": -11, - "NO_PRIVATE_KEY_FOR_CERT": -502, - "NO_SSL_VERSIONS_ENABLED": -112, - "NO_SUPPORTED_PROXIES": -336, - "NPN_NEGOTIATION_FAILED": -122, - "ORIGIN_BOUND_CERT_GENERATION_FAILED": -711, - "ORIGIN_BOUND_CERT_GENERATION_TYPE_MISMATCH": -152, - "OUT_OF_MEMORY": -13, - "PAC_NOT_IN_DHCP": -348, - "PAC_SCRIPT_FAILED": -327, - "PAC_STATUS_NOT_OK": -326, - "PKCS12_IMPORT_BAD_PASSWORD": -701, - "PKCS12_IMPORT_FAILED": -702, - "PKCS12_IMPORT_INVALID_FILE": -708, - "PKCS12_IMPORT_INVALID_MAC": -707, - "PKCS12_IMPORT_UNSUPPORTED": -709, - "PRECONNECT_MAX_SOCKET_LIMIT": -133, - "PRIVATE_KEY_EXPORT_FAILED": -712, - "PROTOCOL_SWITCHED": -146, - "PROXY_AUTH_REQUESTED": -127, - "PROXY_AUTH_REQUESTED_WITH_NO_CONNECTION": -364, - "PROXY_AUTH_UNSUPPORTED": -115, - "PROXY_CERTIFICATE_INVALID": -136, - "PROXY_CONNECTION_FAILED": -130, - "QUIC_HANDSHAKE_FAILED": -358, - "QUIC_PROTOCOL_ERROR": -356, - "REQUEST_FOR_SECURE_RESOURCE_OVER_INSECURE_QUIC": -359, - "REQUEST_RANGE_NOT_SATISFIABLE": -328, - "RESPONSE_BODY_TOO_BIG_TO_DRAIN": -345, - "RESPONSE_HEADERS_MULTIPLE_CONTENT_DISPOSITION": -349, - "RESPONSE_HEADERS_MULTIPLE_CONTENT_LENGTH": -346, - "RESPONSE_HEADERS_MULTIPLE_LOCATION": -350, - "RESPONSE_HEADERS_TOO_BIG": -325, - "RESPONSE_HEADERS_TRUNCATED": -357, - "SELF_SIGNED_CERT_GENERATION_FAILED": -713, - "SOCKET_IS_CONNECTED": -23, - "SOCKET_NOT_CONNECTED": -15, - "SOCKET_RECEIVE_BUFFER_SIZE_UNCHANGEABLE": -162, - "SOCKET_SEND_BUFFER_SIZE_UNCHANGEABLE": -163, - "SOCKET_SET_RECEIVE_BUFFER_SIZE_ERROR": -160, - "SOCKET_SET_SEND_BUFFER_SIZE_ERROR": -161, - "SOCKS_CONNECTION_FAILED": -120, - "SOCKS_CONNECTION_HOST_UNREACHABLE": -121, - "SPDY_COMPRESSION_ERROR": -363, - "SPDY_FLOW_CONTROL_ERROR": -361, - "SPDY_FRAME_SIZE_ERROR": -362, - "SPDY_INADEQUATE_TRANSPORT_SECURITY": -360, - "SPDY_PING_FAILED": -352, - "SPDY_PROTOCOL_ERROR": -337, - "SPDY_SERVER_REFUSED_STREAM": -351, - "SPDY_SESSION_ALREADY_EXISTS": -143, - "SSL_BAD_PEER_PUBLIC_KEY": -149, - "SSL_BAD_RECORD_MAC_ALERT": -126, - "SSL_CLIENT_AUTH_CERT_NEEDED": -110, - "SSL_CLIENT_AUTH_CERT_NO_PRIVATE_KEY": -135, - "SSL_CLIENT_AUTH_PRIVATE_KEY_ACCESS_DENIED": -134, - "SSL_CLIENT_AUTH_SIGNATURE_FAILED": -141, - "SSL_DECOMPRESSION_FAILURE_ALERT": -125, - "SSL_DECRYPT_ERROR_ALERT": -153, - "SSL_HANDSHAKE_NOT_COMPLETED": -148, - "SSL_INAPPROPRIATE_FALLBACK": -157, - "SSL_NO_RENEGOTIATION": -123, - "SSL_PINNED_KEY_NOT_IN_CERT_CHAIN": -150, - "SSL_PROTOCOL_ERROR": -107, - "SSL_RENEGOTIATION_REQUESTED": -114, - "SSL_SERVER_CERT_CHANGED": -156, - "SSL_UNRECOGNIZED_NAME_ALERT": -159, - "SSL_UNSAFE_NEGOTIATION": -128, - "SSL_VERSION_OR_CIPHER_MISMATCH": -113, - "SSL_WEAK_SERVER_EPHEMERAL_DH_KEY": -129, - "SYN_REPLY_NOT_RECEIVED": -332, - "TEMPORARILY_THROTTLED": -139, - "TIMED_OUT": -7, - "TOO_MANY_REDIRECTS": -310, - "TOO_MANY_SOCKET_STREAMS": -155, - "TUNNEL_CONNECTION_FAILED": -111, - "UNDOCUMENTED_SECURITY_LIBRARY_STATUS": -344, - "UNEXPECTED": -9, - "UNEXPECTED_PROXY_AUTH": -323, - "UNEXPECTED_SECURITY_LIBRARY_STATUS": -342, - "UNKNOWN_URL_SCHEME": -302, - "UNRECOGNIZED_FTP_DIRECTORY_LISTING_FORMAT": -334, - "UNSAFE_PORT": -312, - "UNSAFE_REDIRECT": -311, - "UNSUPPORTED_AUTH_SCHEME": -339, - "UPLOAD_FILE_CHANGED": -14, - "WINSOCK_UNEXPECTED_WRITTEN_BYTES": -124, - "WS_PROTOCOL_ERROR": -145, - "WS_THROTTLE_QUEUE_TOO_LARGE": -154 - }, - "quicError": { - "INVALID_ERROR_CODE": 21, - "QUIC_CONNECTION_IP_POOLED": 62, - "QUIC_CONNECTION_TIMED_OUT": 25, - "QUIC_CRYPTO_DUPLICATE_TAG": 43, - "QUIC_CRYPTO_ENCRYPTION_LEVEL_INCORRECT": 44, - "QUIC_CRYPTO_INTERNAL_ERROR": 38, - "QUIC_CRYPTO_INVALID_VALUE_LENGTH": 31, - "QUIC_CRYPTO_MESSAGE_AFTER_HANDSHAKE_COMPLETE": 32, - "QUIC_CRYPTO_MESSAGE_INDEX_NOT_FOUND": 37, - "QUIC_CRYPTO_MESSAGE_PARAMETER_NOT_FOUND": 35, - "QUIC_CRYPTO_MESSAGE_PARAMETER_NO_OVERLAP": 36, - "QUIC_CRYPTO_MESSAGE_WHILE_VALIDATING_CLIENT_HELLO": 54, - "QUIC_CRYPTO_NO_SUPPORT": 40, - "QUIC_CRYPTO_SERVER_CONFIG_EXPIRED": 45, - "QUIC_CRYPTO_SYMMETRIC_KEY_SETUP_FAILED": 53, - "QUIC_CRYPTO_TAGS_OUT_OF_ORDER": 29, - "QUIC_CRYPTO_TOO_MANY_ENTRIES": 30, - "QUIC_CRYPTO_TOO_MANY_REJECTS": 41, - "QUIC_CRYPTO_VERSION_NOT_SUPPORTED": 39, - "QUIC_DECOMPRESSION_FAILURE": 24, - "QUIC_DECRYPTION_FAILURE": 12, - "QUIC_ENCRYPTION_FAILURE": 13, - "QUIC_ERROR_MIGRATING_ADDRESS": 26, - "QUIC_FLOW_CONTROL_INVALID_WINDOW": 64, - "QUIC_FLOW_CONTROL_RECEIVED_TOO_MUCH_DATA": 59, - "QUIC_FLOW_CONTROL_SENT_TOO_MUCH_DATA": 63, - "QUIC_HANDSHAKE_FAILED": 28, - "QUIC_INTERNAL_ERROR": 1, - "QUIC_INVALID_ACK_DATA": 9, - "QUIC_INVALID_BLOCKED_DATA": 58, - "QUIC_INVALID_CHANNEL_ID_SIGNATURE": 52, - "QUIC_INVALID_CONGESTION_FEEDBACK_DATA": 47, - "QUIC_INVALID_CONNECTION_CLOSE_DATA": 7, - "QUIC_INVALID_CRYPTO_MESSAGE_PARAMETER": 34, - "QUIC_INVALID_CRYPTO_MESSAGE_TYPE": 33, - "QUIC_INVALID_FEC_DATA": 5, - "QUIC_INVALID_FRAME_DATA": 4, - "QUIC_INVALID_GOAWAY_DATA": 8, - "QUIC_INVALID_HEADERS_STREAM_DATA": 56, - "QUIC_INVALID_HEADER_ID": 22, - "QUIC_INVALID_NEGOTIATED_VALUE": 23, - "QUIC_INVALID_PACKET_HEADER": 3, - "QUIC_INVALID_PRIORITY": 49, - "QUIC_INVALID_PUBLIC_RST_PACKET": 11, - "QUIC_INVALID_RST_STREAM_DATA": 6, - "QUIC_INVALID_STOP_WAITING_DATA": 60, - "QUIC_INVALID_STREAM_DATA": 46, - "QUIC_INVALID_STREAM_FRAME": 50, - "QUIC_INVALID_STREAM_ID": 17, - "QUIC_INVALID_VERSION": 20, - "QUIC_INVALID_VERSION_NEGOTIATION_PACKET": 10, - "QUIC_INVALID_WINDOW_UPDATE_DATA": 57, - "QUIC_MISSING_PAYLOAD": 48, - "QUIC_NO_ERROR": 0, - "QUIC_PACKET_FOR_NONEXISTENT_STREAM": 15, - "QUIC_PACKET_READ_ERROR": 51, - "QUIC_PACKET_TOO_LARGE": 14, - "QUIC_PACKET_WRITE_ERROR": 27, - "QUIC_PEER_GOING_AWAY": 16, - "QUIC_PROOF_INVALID": 42, - "QUIC_PUBLIC_RESET": 19, - "QUIC_STREAM_DATA_AFTER_TERMINATION": 2, - "QUIC_TOO_MANY_OPEN_STREAMS": 18, - "QUIC_UNENCRYPTED_STREAM_DATA": 61, - "QUIC_VERSION_NEGOTIATION_MISMATCH": 55 - }, - "quicRstStreamError": { - "QUIC_BAD_APPLICATION_PAYLOAD": 3, - "QUIC_ERROR_PROCESSING_STREAM": 1, - "QUIC_MULTIPLE_TERMINATION_OFFSETS": 2, - "QUIC_RST_FLOW_CONTROL_ACCOUNTING": 7, - "QUIC_STREAM_CANCELLED": 6, - "QUIC_STREAM_CONNECTION_ERROR": 4, - "QUIC_STREAM_NO_ERROR": 0, - "QUIC_STREAM_PEER_GOING_AWAY": 5 - }, - "timeTickOffset": "1410510083955" - }, - "events": [ - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "www.google.com:80", - "is_speculative": true, - "source_dependency": { - "id": 0, - "type": 0 - } - }, - "phase": 1, - "source": { - "id": 2, - "type": 8 - }, - "time": "1250423872", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 2, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 3, - "type": 20 - }, - "time": "1250423872", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 3, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 4, - "type": 14 - }, - "time": "1250423872", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 4, - "type": 14 - }, - "time": "1250423872", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 4, - "type": 14 - }, - "time": "1250423873", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:56534" - }, - "phase": 0, - "source": { - "id": 4, - "type": 14 - }, - "time": "1250423873", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 4, - "type": 14 - }, - "time": "1250423873", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 3, - "type": 20 - }, - "time": "1250423873", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 2, - "type": 8 - }, - "time": "1250423873", - "type": 5 - }, - { - "phase": 0, - "source": { - "id": 2, - "type": 8 - }, - "time": "1250423873", - "type": 8 - }, - { - "params": { - "host": "www.google.com", - "source_dependency": { - "id": 2, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 5, - "type": 9 - }, - "time": "1250423873", - "type": 9 - }, - { - "phase": 0, - "source": { - "id": 5, - "type": 9 - }, - "time": "1250423873", - "type": 11 - }, - { - "phase": 1, - "source": { - "id": 5, - "type": 9 - }, - "time": "1250423873", - "type": 17 - }, - { - "params": { - "attempt_number": 1 - }, - "phase": 0, - "source": { - "id": 5, - "type": 9 - }, - "time": "1250423873", - "type": 12 - }, - { - "params": { - "source_dependency": { - "id": 5, - "type": 9 - } - }, - "phase": 0, - "source": { - "id": 2, - "type": 8 - }, - "time": "1250423873", - "type": 14 - }, - { - "params": { - "priority": "LOWEST", - "source_dependency": { - "id": 2, - "type": 8 - } - }, - "phase": 0, - "source": { - "id": 5, - "type": 9 - }, - "time": "1250423873", - "type": 15 - }, - { - "params": { - "original_url": "http://127.0.0.1:8888/", - "priority": "HIGHEST", - "url": "http://127.0.0.1:8888/" - }, - "phase": 1, - "source": { - "id": 6, - "type": 12 - }, - "time": "1250424005", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 6, - "type": 12 - }, - "time": "1250424008", - "type": 24 - }, - { - "params": { - "new_config": { - "source": "UNKNOWN" - } - }, - "phase": 0, - "source": { - "id": 7, - "type": 0 - }, - "time": "1250424008", - "type": 27 - }, - { - "params": { - "pac_string": "DIRECT" - }, - "phase": 0, - "source": { - "id": 6, - "type": 12 - }, - "time": "1250424009", - "type": 26 - }, - { - "phase": 2, - "source": { - "id": 6, - "type": 12 - }, - "time": "1250424009", - "type": 24 - }, - { - "params": { - "source_dependency": { - "id": 8, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 6, - "type": 12 - }, - "time": "1250424009", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 6, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 8, - "type": 8 - }, - "time": "1250424009", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 8, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 9, - "type": 20 - }, - "time": "1250424009", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 9, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 10, - "type": 14 - }, - "time": "1250424009", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 10, - "type": 14 - }, - "time": "1250424009", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 10, - "type": 14 - }, - "time": "1250424009", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:50964" - }, - "phase": 0, - "source": { - "id": 10, - "type": 14 - }, - "time": "1250424009", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 10, - "type": 14 - }, - "time": "1250424009", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 9, - "type": 20 - }, - "time": "1250424009", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 8, - "type": 8 - }, - "time": "1250424009", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 8, - "type": 8 - }, - "time": "1250424009", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 6, - "type": 12 - }, - "time": "1250424010", - "type": 3 - }, - { - "params": { - "host_and_port": "127.0.0.1:8888" - }, - "phase": 0, - "source": { - "id": 6, - "type": 12 - }, - "time": "1250424010", - "type": 86 - }, - { - "params": { - "num_sockets": 1 - }, - "phase": 1, - "source": { - "id": 6, - "type": 12 - }, - "time": "1250424010", - "type": 90 - }, - { - "params": { - "group_name": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 11, - "type": 4 - }, - "time": "1250424010", - "type": 77 - }, - { - "phase": 1, - "source": { - "id": 11, - "type": 4 - }, - "time": "1250424010", - "type": 78 - }, - { - "params": { - "source_dependency": { - "id": 12, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 11, - "type": 4 - }, - "time": "1250424010", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 11, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 12, - "type": 8 - }, - "time": "1250424010", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 12, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 13, - "type": 20 - }, - "time": "1250424010", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 13, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 14, - "type": 14 - }, - "time": "1250424010", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 14, - "type": 14 - }, - "time": "1250424010", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 14, - "type": 14 - }, - "time": "1250424010", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:50965" - }, - "phase": 0, - "source": { - "id": 14, - "type": 14 - }, - "time": "1250424010", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 14, - "type": 14 - }, - "time": "1250424010", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 13, - "type": 20 - }, - "time": "1250424010", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 12, - "type": 8 - }, - "time": "1250424010", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 12, - "type": 8 - }, - "time": "1250424011", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 11, - "type": 4 - }, - "time": "1250424011", - "type": 3 - }, - { - "params": { - "source_dependency": { - "id": 11, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 15, - "type": 5 - }, - "time": "1250424011", - "type": 34 - }, - { - "params": { - "address_list": [ - "127.0.0.1:8888" - ] - }, - "phase": 1, - "source": { - "id": 15, - "type": 5 - }, - "time": "1250424011", - "type": 35 - }, - { - "params": { - "address": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 15, - "type": 5 - }, - "time": "1250424011", - "type": 36 - }, - { - "phase": 2, - "source": { - "id": 6, - "type": 12 - }, - "time": "1250424012", - "type": 90 - }, - { - "params": { - "original_url": "http://127.0.0.1:8888/", - "priority": "HIGHEST", - "url": "http://127.0.0.1:8888/" - }, - "phase": 1, - "source": { - "id": 16, - "type": 12 - }, - "time": "1250424012", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 16, - "type": 12 - }, - "time": "1250424012", - "type": 24 - }, - { - "params": { - "pac_string": "DIRECT" - }, - "phase": 0, - "source": { - "id": 16, - "type": 12 - }, - "time": "1250424012", - "type": 26 - }, - { - "phase": 2, - "source": { - "id": 16, - "type": 12 - }, - "time": "1250424012", - "type": 24 - }, - { - "params": { - "source_dependency": { - "id": 17, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 16, - "type": 12 - }, - "time": "1250424012", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 16, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 17, - "type": 8 - }, - "time": "1250424012", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 17, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 18, - "type": 20 - }, - "time": "1250424012", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 18, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 19, - "type": 14 - }, - "time": "1250424012", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 19, - "type": 14 - }, - "time": "1250424012", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 19, - "type": 14 - }, - "time": "1250424012", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:50966" - }, - "phase": 0, - "source": { - "id": 19, - "type": 14 - }, - "time": "1250424012", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 19, - "type": 14 - }, - "time": "1250424012", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 18, - "type": 20 - }, - "time": "1250424012", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 17, - "type": 8 - }, - "time": "1250424012", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 17, - "type": 8 - }, - "time": "1250424012", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 16, - "type": 12 - }, - "time": "1250424012", - "type": 3 - }, - { - "params": { - "host_and_port": "127.0.0.1:8888" - }, - "phase": 0, - "source": { - "id": 16, - "type": 12 - }, - "time": "1250424012", - "type": 86 - }, - { - "params": { - "num_sockets": 2 - }, - "phase": 1, - "source": { - "id": 16, - "type": 12 - }, - "time": "1250424012", - "type": 90 - }, - { - "params": { - "group_name": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 20, - "type": 4 - }, - "time": "1250424012", - "type": 77 - }, - { - "phase": 1, - "source": { - "id": 20, - "type": 4 - }, - "time": "1250424012", - "type": 78 - }, - { - "params": { - "source_dependency": { - "id": 21, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 20, - "type": 4 - }, - "time": "1250424012", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 20, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 21, - "type": 8 - }, - "time": "1250424012", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 21, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 22, - "type": 20 - }, - "time": "1250424012", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 22, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 23, - "type": 14 - }, - "time": "1250424012", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 23, - "type": 14 - }, - "time": "1250424012", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 23, - "type": 14 - }, - "time": "1250424012", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:50967" - }, - "phase": 0, - "source": { - "id": 23, - "type": 14 - }, - "time": "1250424012", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 23, - "type": 14 - }, - "time": "1250424012", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 22, - "type": 20 - }, - "time": "1250424012", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 21, - "type": 8 - }, - "time": "1250424012", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 21, - "type": 8 - }, - "time": "1250424012", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 20, - "type": 4 - }, - "time": "1250424012", - "type": 3 - }, - { - "params": { - "source_dependency": { - "id": 20, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 24, - "type": 5 - }, - "time": "1250424012", - "type": 34 - }, - { - "params": { - "address_list": [ - "127.0.0.1:8888" - ] - }, - "phase": 1, - "source": { - "id": 24, - "type": 5 - }, - "time": "1250424012", - "type": 35 - }, - { - "params": { - "address": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 24, - "type": 5 - }, - "time": "1250424013", - "type": 36 - }, - { - "phase": 2, - "source": { - "id": 16, - "type": 12 - }, - "time": "1250424013", - "type": 90 - }, - { - "phase": 2, - "source": { - "id": 6, - "type": 12 - }, - "time": "1250424013", - "type": 121 - }, - { - "phase": 2, - "source": { - "id": 16, - "type": 12 - }, - "time": "1250424013", - "type": 121 - }, - { - "phase": 2, - "source": { - "id": 15, - "type": 5 - }, - "time": "1250424016", - "type": 36 - }, - { - "params": { - "source_address": "127.0.0.1:50980" - }, - "phase": 2, - "source": { - "id": 15, - "type": 5 - }, - "time": "1250424016", - "type": 35 - }, - { - "params": { - "source_dependency": { - "id": 15, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 11, - "type": 4 - }, - "time": "1250424016", - "type": 79 - }, - { - "phase": 2, - "source": { - "id": 11, - "type": 4 - }, - "time": "1250424016", - "type": 78 - }, - { - "phase": 2, - "source": { - "id": 11, - "type": 4 - }, - "time": "1250424016", - "type": 77 - }, - { - "phase": 2, - "source": { - "id": 24, - "type": 5 - }, - "time": "1250424016", - "type": 36 - }, - { - "params": { - "source_address": "127.0.0.1:50981" - }, - "phase": 2, - "source": { - "id": 24, - "type": 5 - }, - "time": "1250424016", - "type": 35 - }, - { - "params": { - "source_dependency": { - "id": 24, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 20, - "type": 4 - }, - "time": "1250424016", - "type": 79 - }, - { - "phase": 2, - "source": { - "id": 20, - "type": 4 - }, - "time": "1250424016", - "type": 78 - }, - { - "phase": 2, - "source": { - "id": 20, - "type": 4 - }, - "time": "1250424016", - "type": 77 - }, - { - "params": { - "attempt_number": 1 - }, - "phase": 0, - "source": { - "id": 5, - "type": 9 - }, - "time": "1250424310", - "type": 13 - }, - { - "params": { - "address_list": [ - "74.125.228.16:0", - "74.125.228.17:0", - "74.125.228.18:0", - "74.125.228.19:0", - "74.125.228.20:0" - ] - }, - "phase": 2, - "source": { - "id": 5, - "type": 9 - }, - "time": "1250424310", - "type": 17 - }, - { - "phase": 2, - "source": { - "id": 5, - "type": 9 - }, - "time": "1250424310", - "type": 9 - }, - { - "phase": 2, - "source": { - "id": 2, - "type": 8 - }, - "time": "1250424310", - "type": 4 - }, - { - "phase": 1, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250425433", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250425433", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250425433", - "type": 93 - }, - { - "params": { - "load_flags": 136446208, - "method": "GET", - "priority": "HIGHEST", - "url": "http://127.0.0.1:8888/blank.html" - }, - "phase": 1, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250425433", - "type": 91 - }, - { - "params": { - "host": "127.0.0.1" - }, - "phase": 0, - "source": { - "id": 1, - "type": 13 - }, - "time": "1250425434", - "type": 235 - }, - { - "phase": 2, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250425434", - "type": 91 - }, - { - "params": { - "load_flags": 136446208, - "method": "GET", - "priority": "HIGHEST", - "url": "http://127.0.0.1:8888/blank.html" - }, - "phase": 1, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250425434", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250425445", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250425445", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250425445", - "type": 99 - }, - { - "phase": 1, - "source": { - "id": 27, - "type": 1 - }, - "time": "1250426307", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 27, - "type": 1 - }, - "time": "1250426307", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 27, - "type": 1 - }, - "time": "1250426307", - "type": 93 - }, - { - "params": { - "load_flags": 136446208, - "method": "GET", - "priority": "HIGHEST", - "url": "chrome-extension://nkeimhogjdpnpccoofpliimaahmaaome/background.html" - }, - "phase": 1, - "source": { - "id": 27, - "type": 1 - }, - "time": "1250426308", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 28, - "type": 1 - }, - "time": "1250426308", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 28, - "type": 1 - }, - "time": "1250426308", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 28, - "type": 1 - }, - "time": "1250426308", - "type": 93 - }, - { - "params": { - "load_flags": 136446208, - "method": "GET", - "priority": "HIGHEST", - "url": "chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/_generated_background_page.html" - }, - "phase": 1, - "source": { - "id": 28, - "type": 1 - }, - "time": "1250426308", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 29, - "type": 1 - }, - "time": "1250426308", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 29, - "type": 1 - }, - "time": "1250426308", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 29, - "type": 1 - }, - "time": "1250426308", - "type": 93 - }, - { - "params": { - "load_flags": 136446208, - "method": "GET", - "priority": "HIGHEST", - "url": "chrome-extension://ejfgipfkkpdadoidbhfedneaabgolbno/_generated_background_page.html" - }, - "phase": 1, - "source": { - "id": 29, - "type": 1 - }, - "time": "1250426308", - "type": 91 - }, - { - "phase": 2, - "source": { - "id": 28, - "type": 1 - }, - "time": "1250426308", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 28, - "type": 1 - }, - "time": "1250426308", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 28, - "type": 1 - }, - "time": "1250426308", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 28, - "type": 1 - }, - "time": "1250426310", - "type": 2 - }, - { - "phase": 2, - "source": { - "id": 29, - "type": 1 - }, - "time": "1250426310", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 29, - "type": 1 - }, - "time": "1250426310", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 29, - "type": 1 - }, - "time": "1250426310", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 29, - "type": 1 - }, - "time": "1250426310", - "type": 2 - }, - { - "phase": 2, - "source": { - "id": 27, - "type": 1 - }, - "time": "1250426311", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 27, - "type": 1 - }, - "time": "1250426311", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 27, - "type": 1 - }, - "time": "1250426311", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 27, - "type": 1 - }, - "time": "1250426311", - "type": 2 - }, - { - "phase": 2, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250426367", - "type": 99 - }, - { - "phase": 1, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250426367", - "type": 100 - }, - { - "params": { - "net_error": -2 - }, - "phase": 2, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250426367", - "type": 100 - }, - { - "phase": 1, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250426367", - "type": 101 - }, - { - "params": { - "created": true, - "key": "http://127.0.0.1:8888/blank.html" - }, - "phase": 1, - "source": { - "id": 30, - "type": 10 - }, - "time": "1250426367", - "type": 108 - }, - { - "phase": 2, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250426367", - "type": 101 - }, - { - "phase": 1, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250426367", - "type": 102 - }, - { - "phase": 2, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250426367", - "type": 102 - }, - { - "phase": 1, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250426367", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250426367", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250426367", - "type": 120 - }, - { - "params": { - "original_url": "http://127.0.0.1:8888/", - "priority": "HIGHEST", - "url": "http://127.0.0.1:8888/" - }, - "phase": 1, - "source": { - "id": 31, - "type": 12 - }, - "time": "1250426367", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 31, - "type": 12 - }, - "time": "1250426367", - "type": 24 - }, - { - "params": { - "pac_string": "DIRECT" - }, - "phase": 0, - "source": { - "id": 31, - "type": 12 - }, - "time": "1250426367", - "type": 26 - }, - { - "phase": 2, - "source": { - "id": 31, - "type": 12 - }, - "time": "1250426367", - "type": 24 - }, - { - "params": { - "source_dependency": { - "id": 32, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 31, - "type": 12 - }, - "time": "1250426367", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 31, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 32, - "type": 8 - }, - "time": "1250426367", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 32, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 33, - "type": 20 - }, - "time": "1250426367", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 33, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 34, - "type": 14 - }, - "time": "1250426367", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 34, - "type": 14 - }, - "time": "1250426367", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 34, - "type": 14 - }, - "time": "1250426367", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:50968" - }, - "phase": 0, - "source": { - "id": 34, - "type": 14 - }, - "time": "1250426367", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 34, - "type": 14 - }, - "time": "1250426367", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 33, - "type": 20 - }, - "time": "1250426367", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 32, - "type": 8 - }, - "time": "1250426367", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 32, - "type": 8 - }, - "time": "1250426367", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 31, - "type": 12 - }, - "time": "1250426367", - "type": 3 - }, - { - "params": { - "host_and_port": "127.0.0.1:8888" - }, - "phase": 0, - "source": { - "id": 31, - "type": 12 - }, - "time": "1250426367", - "type": 85 - }, - { - "phase": 1, - "source": { - "id": 31, - "type": 12 - }, - "time": "1250426367", - "type": 81 - }, - { - "params": { - "source_dependency": { - "id": 15, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 31, - "type": 12 - }, - "time": "1250426368", - "type": 89 - }, - { - "phase": 2, - "source": { - "id": 31, - "type": 12 - }, - "time": "1250426368", - "type": 81 - }, - { - "params": { - "source_dependency": { - "id": 31, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 15, - "type": 5 - }, - "time": "1250426368", - "type": 38 - }, - { - "params": { - "source_dependency": { - "id": 31, - "type": 12 - } - }, - "phase": 0, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250426368", - "type": 122 - }, - { - "params": { - "source_dependency": { - "id": 25, - "type": 1 - } - }, - "phase": 0, - "source": { - "id": 31, - "type": 12 - }, - "time": "1250426368", - "type": 123 - }, - { - "phase": 2, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250426368", - "type": 120 - }, - { - "phase": 2, - "source": { - "id": 31, - "type": 12 - }, - "time": "1250426368", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250426368", - "type": 129 - }, - { - "params": { - "headers": [ - "Host: 127.0.0.1:8888", - "Connection: keep-alive", - "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", - "Accept-Encoding: gzip,deflate,sdch", - "Accept-Language: en-US,en;q=0.8" - ], - "line": "GET /blank.html HTTP/1.1\r\n" - }, - "phase": 0, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250426368", - "type": 130 - }, - { - "params": { - "byte_count": 343 - }, - "phase": 0, - "source": { - "id": 15, - "type": 5 - }, - "time": "1250426368", - "type": 61 - }, - { - "phase": 2, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250426368", - "type": 129 - }, - { - "phase": 1, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250426368", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250426368", - "type": 215 - }, - { - "params": { - "byte_count": 355 - }, - "phase": 0, - "source": { - "id": 15, - "type": 5 - }, - "time": "1250426386", - "type": 63 - }, - { - "phase": 2, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250426387", - "type": 215 - }, - { - "params": { - "headers": [ - "HTTP/1.1 200 OK", - "Cache: no-cache", - "Content-Type: text/html" - ] - }, - "phase": 0, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250426387", - "type": 135 - }, - { - "phase": 2, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250426387", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250426387", - "type": 105 - }, - { - "params": { - "buf_len": 108, - "index": 0, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 30, - "type": 10 - }, - "time": "1250426387", - "type": 111 - }, - { - "params": { - "bytes_copied": 108 - }, - "phase": 2, - "source": { - "id": 30, - "type": 10 - }, - "time": "1250426387", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250426387", - "type": 105 - }, - { - "phase": 1, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250426387", - "type": 107 - }, - { - "params": { - "buf_len": 0, - "index": 1, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 30, - "type": 10 - }, - "time": "1250426387", - "type": 111 - }, - { - "params": { - "bytes_copied": 0 - }, - "phase": 2, - "source": { - "id": 30, - "type": 10 - }, - "time": "1250426387", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250426387", - "type": 107 - }, - { - "phase": 1, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250426387", - "type": 105 - }, - { - "params": { - "buf_len": 0, - "index": 2, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 30, - "type": 10 - }, - "time": "1250426387", - "type": 111 - }, - { - "params": { - "bytes_copied": 0 - }, - "phase": 2, - "source": { - "id": 30, - "type": 10 - }, - "time": "1250426387", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250426387", - "type": 105 - }, - { - "phase": 1, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250426387", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250426387", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250426387", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250426387", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250426387", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250426387", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250426387", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250426387", - "type": 107 - }, - { - "params": { - "buf_len": 295, - "index": 1, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 30, - "type": 10 - }, - "time": "1250426387", - "type": 111 - }, - { - "params": { - "bytes_copied": 295 - }, - "phase": 2, - "source": { - "id": 30, - "type": 10 - }, - "time": "1250426387", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250426387", - "type": 107 - }, - { - "phase": 1, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250426387", - "type": 136 - }, - { - "params": { - "byte_count": 0 - }, - "phase": 0, - "source": { - "id": 15, - "type": 5 - }, - "time": "1250426387", - "type": 63 - }, - { - "phase": 0, - "source": { - "id": 15, - "type": 5 - }, - "time": "1250426387", - "type": 67 - }, - { - "phase": 2, - "source": { - "id": 15, - "type": 5 - }, - "time": "1250426388", - "type": 38 - }, - { - "phase": 2, - "source": { - "id": 15, - "type": 5 - }, - "time": "1250426388", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250426388", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250426388", - "type": 107 - }, - { - "phase": 2, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250426388", - "type": 107 - }, - { - "phase": 2, - "source": { - "id": 25, - "type": 1 - }, - "time": "1250426388", - "type": 2 - }, - { - "phase": 0, - "source": { - "id": 30, - "type": 10 - }, - "time": "1250426388", - "type": 118 - }, - { - "phase": 2, - "source": { - "id": 30, - "type": 10 - }, - "time": "1250426389", - "type": 108 - }, - { - "phase": 1, - "source": { - "id": 35, - "type": 1 - }, - "time": "1250426406", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 35, - "type": 1 - }, - "time": "1250426406", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 35, - "type": 1 - }, - "time": "1250426406", - "type": 93 - }, - { - "params": { - "load_flags": 134349056, - "method": "GET", - "priority": "LOW", - "url": "chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/util.js" - }, - "phase": 1, - "source": { - "id": 35, - "type": 1 - }, - "time": "1250426407", - "type": 91 - }, - { - "phase": 2, - "source": { - "id": 35, - "type": 1 - }, - "time": "1250426407", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 35, - "type": 1 - }, - "time": "1250426407", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 35, - "type": 1 - }, - "time": "1250426407", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 35, - "type": 1 - }, - "time": "1250426407", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 36, - "type": 1 - }, - "time": "1250426418", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 36, - "type": 1 - }, - "time": "1250426418", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 36, - "type": 1 - }, - "time": "1250426418", - "type": 93 - }, - { - "params": { - "load_flags": 134349056, - "method": "GET", - "priority": "LOW", - "url": "chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/b64.js" - }, - "phase": 1, - "source": { - "id": 36, - "type": 1 - }, - "time": "1250426418", - "type": 91 - }, - { - "phase": 2, - "source": { - "id": 36, - "type": 1 - }, - "time": "1250426418", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 36, - "type": 1 - }, - "time": "1250426418", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 36, - "type": 1 - }, - "time": "1250426418", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 36, - "type": 1 - }, - "time": "1250426419", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 37, - "type": 1 - }, - "time": "1250426419", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 37, - "type": 1 - }, - "time": "1250426419", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 37, - "type": 1 - }, - "time": "1250426419", - "type": 93 - }, - { - "params": { - "load_flags": 134349056, - "method": "GET", - "priority": "LOW", - "url": "chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/closeable.js" - }, - "phase": 1, - "source": { - "id": 37, - "type": 1 - }, - "time": "1250426419", - "type": 91 - }, - { - "phase": 2, - "source": { - "id": 37, - "type": 1 - }, - "time": "1250426420", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 37, - "type": 1 - }, - "time": "1250426420", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 37, - "type": 1 - }, - "time": "1250426420", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 37, - "type": 1 - }, - "time": "1250426420", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 38, - "type": 1 - }, - "time": "1250426420", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 38, - "type": 1 - }, - "time": "1250426420", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 38, - "type": 1 - }, - "time": "1250426420", - "type": 93 - }, - { - "params": { - "load_flags": 134349056, - "method": "GET", - "priority": "LOW", - "url": "chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/countdown.js" - }, - "phase": 1, - "source": { - "id": 38, - "type": 1 - }, - "time": "1250426420", - "type": 91 - }, - { - "phase": 2, - "source": { - "id": 38, - "type": 1 - }, - "time": "1250426421", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 38, - "type": 1 - }, - "time": "1250426421", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 38, - "type": 1 - }, - "time": "1250426421", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 38, - "type": 1 - }, - "time": "1250426421", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 39, - "type": 1 - }, - "time": "1250426422", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 39, - "type": 1 - }, - "time": "1250426422", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 39, - "type": 1 - }, - "time": "1250426422", - "type": 93 - }, - { - "params": { - "load_flags": 134349056, - "method": "GET", - "priority": "LOW", - "url": "chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/sha256.js" - }, - "phase": 1, - "source": { - "id": 39, - "type": 1 - }, - "time": "1250426422", - "type": 91 - }, - { - "phase": 2, - "source": { - "id": 39, - "type": 1 - }, - "time": "1250426422", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 39, - "type": 1 - }, - "time": "1250426422", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 39, - "type": 1 - }, - "time": "1250426422", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 39, - "type": 1 - }, - "time": "1250426422", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 40, - "type": 1 - }, - "time": "1250426423", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 40, - "type": 1 - }, - "time": "1250426423", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 40, - "type": 1 - }, - "time": "1250426423", - "type": 93 - }, - { - "params": { - "load_flags": 134349056, - "method": "GET", - "priority": "LOW", - "url": "chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/llgnubby.js" - }, - "phase": 1, - "source": { - "id": 40, - "type": 1 - }, - "time": "1250426424", - "type": 91 - }, - { - "phase": 2, - "source": { - "id": 40, - "type": 1 - }, - "time": "1250426424", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 40, - "type": 1 - }, - "time": "1250426424", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 40, - "type": 1 - }, - "time": "1250426424", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 40, - "type": 1 - }, - "time": "1250426424", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 41, - "type": 1 - }, - "time": "1250426425", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 41, - "type": 1 - }, - "time": "1250426425", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 41, - "type": 1 - }, - "time": "1250426425", - "type": 93 - }, - { - "params": { - "load_flags": 134349056, - "method": "GET", - "priority": "LOW", - "url": "chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/llhidgnubby.js" - }, - "phase": 1, - "source": { - "id": 41, - "type": 1 - }, - "time": "1250426425", - "type": 91 - }, - { - "phase": 2, - "source": { - "id": 41, - "type": 1 - }, - "time": "1250426425", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 41, - "type": 1 - }, - "time": "1250426425", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 41, - "type": 1 - }, - "time": "1250426426", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 41, - "type": 1 - }, - "time": "1250426426", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 42, - "type": 1 - }, - "time": "1250426427", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 42, - "type": 1 - }, - "time": "1250426427", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 42, - "type": 1 - }, - "time": "1250426427", - "type": 93 - }, - { - "params": { - "load_flags": 134349056, - "method": "GET", - "priority": "LOW", - "url": "chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/llusbgnubby.js" - }, - "phase": 1, - "source": { - "id": 42, - "type": 1 - }, - "time": "1250426427", - "type": 91 - }, - { - "phase": 2, - "source": { - "id": 42, - "type": 1 - }, - "time": "1250426427", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 42, - "type": 1 - }, - "time": "1250426427", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 42, - "type": 1 - }, - "time": "1250426427", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 42, - "type": 1 - }, - "time": "1250426427", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 43, - "type": 1 - }, - "time": "1250426428", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 43, - "type": 1 - }, - "time": "1250426428", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 43, - "type": 1 - }, - "time": "1250426428", - "type": 93 - }, - { - "params": { - "load_flags": 134349056, - "method": "GET", - "priority": "LOW", - "url": "chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/gnubbies.js" - }, - "phase": 1, - "source": { - "id": 43, - "type": 1 - }, - "time": "1250426429", - "type": 91 - }, - { - "phase": 2, - "source": { - "id": 43, - "type": 1 - }, - "time": "1250426429", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 43, - "type": 1 - }, - "time": "1250426429", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 43, - "type": 1 - }, - "time": "1250426429", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 43, - "type": 1 - }, - "time": "1250426429", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 44, - "type": 1 - }, - "time": "1250426430", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 44, - "type": 1 - }, - "time": "1250426430", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 44, - "type": 1 - }, - "time": "1250426430", - "type": 93 - }, - { - "params": { - "load_flags": 134349056, - "method": "GET", - "priority": "LOW", - "url": "chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/gnubby.js" - }, - "phase": 1, - "source": { - "id": 44, - "type": 1 - }, - "time": "1250426430", - "type": 91 - }, - { - "phase": 2, - "source": { - "id": 44, - "type": 1 - }, - "time": "1250426430", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 44, - "type": 1 - }, - "time": "1250426430", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 44, - "type": 1 - }, - "time": "1250426430", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 44, - "type": 1 - }, - "time": "1250426430", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 45, - "type": 1 - }, - "time": "1250426432", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 45, - "type": 1 - }, - "time": "1250426432", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 45, - "type": 1 - }, - "time": "1250426432", - "type": 93 - }, - { - "params": { - "load_flags": 134349056, - "method": "GET", - "priority": "LOW", - "url": "chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/gnubby-u2f.js" - }, - "phase": 1, - "source": { - "id": 45, - "type": 1 - }, - "time": "1250426432", - "type": 91 - }, - { - "phase": 2, - "source": { - "id": 45, - "type": 1 - }, - "time": "1250426432", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 45, - "type": 1 - }, - "time": "1250426432", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 45, - "type": 1 - }, - "time": "1250426432", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 45, - "type": 1 - }, - "time": "1250426432", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 46, - "type": 1 - }, - "time": "1250426433", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 46, - "type": 1 - }, - "time": "1250426433", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 46, - "type": 1 - }, - "time": "1250426433", - "type": 93 - }, - { - "params": { - "load_flags": 134349056, - "method": "GET", - "priority": "LOW", - "url": "chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/gnubbycodetypes.js" - }, - "phase": 1, - "source": { - "id": 46, - "type": 1 - }, - "time": "1250426433", - "type": 91 - }, - { - "phase": 2, - "source": { - "id": 46, - "type": 1 - }, - "time": "1250426433", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 46, - "type": 1 - }, - "time": "1250426433", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 46, - "type": 1 - }, - "time": "1250426433", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 46, - "type": 1 - }, - "time": "1250426433", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 47, - "type": 1 - }, - "time": "1250426434", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 47, - "type": 1 - }, - "time": "1250426434", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 47, - "type": 1 - }, - "time": "1250426434", - "type": 93 - }, - { - "params": { - "load_flags": 134349056, - "method": "GET", - "priority": "LOW", - "url": "chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/gnubbyfactory.js" - }, - "phase": 1, - "source": { - "id": 47, - "type": 1 - }, - "time": "1250426434", - "type": 91 - }, - { - "phase": 2, - "source": { - "id": 47, - "type": 1 - }, - "time": "1250426434", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 47, - "type": 1 - }, - "time": "1250426434", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 47, - "type": 1 - }, - "time": "1250426434", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 47, - "type": 1 - }, - "time": "1250426435", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 48, - "type": 1 - }, - "time": "1250426436", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 48, - "type": 1 - }, - "time": "1250426436", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 48, - "type": 1 - }, - "time": "1250426436", - "type": 93 - }, - { - "params": { - "load_flags": 134349056, - "method": "GET", - "priority": "LOW", - "url": "chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/gnubbymsgtypes.js" - }, - "phase": 1, - "source": { - "id": 48, - "type": 1 - }, - "time": "1250426436", - "type": 91 - }, - { - "phase": 2, - "source": { - "id": 48, - "type": 1 - }, - "time": "1250426436", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 48, - "type": 1 - }, - "time": "1250426436", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 48, - "type": 1 - }, - "time": "1250426437", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 48, - "type": 1 - }, - "time": "1250426437", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 49, - "type": 1 - }, - "time": "1250426437", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 49, - "type": 1 - }, - "time": "1250426437", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 49, - "type": 1 - }, - "time": "1250426437", - "type": 93 - }, - { - "params": { - "load_flags": 134349056, - "method": "GET", - "priority": "LOW", - "url": "chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/usbgnubbyfactory.js" - }, - "phase": 1, - "source": { - "id": 49, - "type": 1 - }, - "time": "1250426437", - "type": 91 - }, - { - "phase": 2, - "source": { - "id": 49, - "type": 1 - }, - "time": "1250426437", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 49, - "type": 1 - }, - "time": "1250426437", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 49, - "type": 1 - }, - "time": "1250426438", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 49, - "type": 1 - }, - "time": "1250426438", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 50, - "type": 1 - }, - "time": "1250426438", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 50, - "type": 1 - }, - "time": "1250426438", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 50, - "type": 1 - }, - "time": "1250426438", - "type": 93 - }, - { - "params": { - "load_flags": 134349056, - "method": "GET", - "priority": "LOW", - "url": "chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/devicestatuscodes.js" - }, - "phase": 1, - "source": { - "id": 50, - "type": 1 - }, - "time": "1250426438", - "type": 91 - }, - { - "phase": 2, - "source": { - "id": 50, - "type": 1 - }, - "time": "1250426439", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 50, - "type": 1 - }, - "time": "1250426439", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 50, - "type": 1 - }, - "time": "1250426439", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 50, - "type": 1 - }, - "time": "1250426439", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 51, - "type": 1 - }, - "time": "1250426439", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 51, - "type": 1 - }, - "time": "1250426439", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 51, - "type": 1 - }, - "time": "1250426439", - "type": 93 - }, - { - "params": { - "load_flags": 134349056, - "method": "GET", - "priority": "LOW", - "url": "chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/enroller.js" - }, - "phase": 1, - "source": { - "id": 51, - "type": 1 - }, - "time": "1250426439", - "type": 91 - }, - { - "phase": 2, - "source": { - "id": 51, - "type": 1 - }, - "time": "1250426440", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 51, - "type": 1 - }, - "time": "1250426440", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 51, - "type": 1 - }, - "time": "1250426440", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 51, - "type": 1 - }, - "time": "1250426440", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 52, - "type": 1 - }, - "time": "1250426441", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 52, - "type": 1 - }, - "time": "1250426441", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 52, - "type": 1 - }, - "time": "1250426441", - "type": 93 - }, - { - "params": { - "load_flags": 134349056, - "method": "GET", - "priority": "LOW", - "url": "chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/enrollhelper.js" - }, - "phase": 1, - "source": { - "id": 52, - "type": 1 - }, - "time": "1250426441", - "type": 91 - }, - { - "phase": 2, - "source": { - "id": 52, - "type": 1 - }, - "time": "1250426441", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 52, - "type": 1 - }, - "time": "1250426441", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 52, - "type": 1 - }, - "time": "1250426441", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 52, - "type": 1 - }, - "time": "1250426441", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 53, - "type": 1 - }, - "time": "1250426442", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 53, - "type": 1 - }, - "time": "1250426442", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 53, - "type": 1 - }, - "time": "1250426442", - "type": 93 - }, - { - "params": { - "load_flags": 134349056, - "method": "GET", - "priority": "LOW", - "url": "chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/usbenrollhelper.js" - }, - "phase": 1, - "source": { - "id": 53, - "type": 1 - }, - "time": "1250426442", - "type": 91 - }, - { - "phase": 2, - "source": { - "id": 53, - "type": 1 - }, - "time": "1250426443", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 53, - "type": 1 - }, - "time": "1250426443", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 53, - "type": 1 - }, - "time": "1250426443", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 53, - "type": 1 - }, - "time": "1250426443", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 54, - "type": 1 - }, - "time": "1250426444", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 54, - "type": 1 - }, - "time": "1250426444", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 54, - "type": 1 - }, - "time": "1250426444", - "type": 93 - }, - { - "params": { - "load_flags": 134349056, - "method": "GET", - "priority": "LOW", - "url": "chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/requestqueue.js" - }, - "phase": 1, - "source": { - "id": 54, - "type": 1 - }, - "time": "1250426444", - "type": 91 - }, - { - "phase": 2, - "source": { - "id": 54, - "type": 1 - }, - "time": "1250426444", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 54, - "type": 1 - }, - "time": "1250426444", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 54, - "type": 1 - }, - "time": "1250426444", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 54, - "type": 1 - }, - "time": "1250426444", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 55, - "type": 1 - }, - "time": "1250426445", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 55, - "type": 1 - }, - "time": "1250426445", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 55, - "type": 1 - }, - "time": "1250426445", - "type": 93 - }, - { - "params": { - "load_flags": 134349056, - "method": "GET", - "priority": "LOW", - "url": "chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/signer.js" - }, - "phase": 1, - "source": { - "id": 55, - "type": 1 - }, - "time": "1250426445", - "type": 91 - }, - { - "phase": 2, - "source": { - "id": 55, - "type": 1 - }, - "time": "1250426445", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 55, - "type": 1 - }, - "time": "1250426446", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 55, - "type": 1 - }, - "time": "1250426446", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 55, - "type": 1 - }, - "time": "1250426446", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 56, - "type": 1 - }, - "time": "1250426447", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 56, - "type": 1 - }, - "time": "1250426447", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 56, - "type": 1 - }, - "time": "1250426447", - "type": 93 - }, - { - "params": { - "load_flags": 134349056, - "method": "GET", - "priority": "LOW", - "url": "chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/signhelper.js" - }, - "phase": 1, - "source": { - "id": 56, - "type": 1 - }, - "time": "1250426447", - "type": 91 - }, - { - "phase": 2, - "source": { - "id": 56, - "type": 1 - }, - "time": "1250426447", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 56, - "type": 1 - }, - "time": "1250426447", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 56, - "type": 1 - }, - "time": "1250426447", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 56, - "type": 1 - }, - "time": "1250426447", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 57, - "type": 1 - }, - "time": "1250426448", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 57, - "type": 1 - }, - "time": "1250426448", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 57, - "type": 1 - }, - "time": "1250426448", - "type": 93 - }, - { - "params": { - "load_flags": 134349056, - "method": "GET", - "priority": "LOW", - "url": "chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/singlesigner.js" - }, - "phase": 1, - "source": { - "id": 57, - "type": 1 - }, - "time": "1250426448", - "type": 91 - }, - { - "phase": 2, - "source": { - "id": 57, - "type": 1 - }, - "time": "1250426448", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 57, - "type": 1 - }, - "time": "1250426448", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 57, - "type": 1 - }, - "time": "1250426448", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 57, - "type": 1 - }, - "time": "1250426448", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 58, - "type": 1 - }, - "time": "1250426449", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 58, - "type": 1 - }, - "time": "1250426449", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 58, - "type": 1 - }, - "time": "1250426449", - "type": 93 - }, - { - "params": { - "load_flags": 134349056, - "method": "GET", - "priority": "LOW", - "url": "chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/multiplesigner.js" - }, - "phase": 1, - "source": { - "id": 58, - "type": 1 - }, - "time": "1250426449", - "type": 91 - }, - { - "phase": 2, - "source": { - "id": 58, - "type": 1 - }, - "time": "1250426450", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 58, - "type": 1 - }, - "time": "1250426450", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 58, - "type": 1 - }, - "time": "1250426450", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 58, - "type": 1 - }, - "time": "1250426450", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 59, - "type": 1 - }, - "time": "1250426450", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 59, - "type": 1 - }, - "time": "1250426450", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 59, - "type": 1 - }, - "time": "1250426450", - "type": 93 - }, - { - "params": { - "load_flags": 134349056, - "method": "GET", - "priority": "LOW", - "url": "chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/usbsignhelper.js" - }, - "phase": 1, - "source": { - "id": 59, - "type": 1 - }, - "time": "1250426451", - "type": 91 - }, - { - "phase": 2, - "source": { - "id": 59, - "type": 1 - }, - "time": "1250426451", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 59, - "type": 1 - }, - "time": "1250426451", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 59, - "type": 1 - }, - "time": "1250426451", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 59, - "type": 1 - }, - "time": "1250426451", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 60, - "type": 1 - }, - "time": "1250426452", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 60, - "type": 1 - }, - "time": "1250426452", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 60, - "type": 1 - }, - "time": "1250426452", - "type": 93 - }, - { - "params": { - "load_flags": 134349056, - "method": "GET", - "priority": "LOW", - "url": "chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/webrequest.js" - }, - "phase": 1, - "source": { - "id": 60, - "type": 1 - }, - "time": "1250426452", - "type": 91 - }, - { - "phase": 2, - "source": { - "id": 60, - "type": 1 - }, - "time": "1250426452", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 60, - "type": 1 - }, - "time": "1250426452", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 60, - "type": 1 - }, - "time": "1250426452", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 60, - "type": 1 - }, - "time": "1250426452", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 61, - "type": 1 - }, - "time": "1250426453", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 61, - "type": 1 - }, - "time": "1250426453", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 61, - "type": 1 - }, - "time": "1250426453", - "type": 93 - }, - { - "params": { - "load_flags": 134349056, - "method": "GET", - "priority": "LOW", - "url": "chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/background.js" - }, - "phase": 1, - "source": { - "id": 61, - "type": 1 - }, - "time": "1250426453", - "type": 91 - }, - { - "phase": 2, - "source": { - "id": 61, - "type": 1 - }, - "time": "1250426454", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 61, - "type": 1 - }, - "time": "1250426454", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 61, - "type": 1 - }, - "time": "1250426454", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 61, - "type": 1 - }, - "time": "1250426454", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 62, - "type": 1 - }, - "time": "1250426479", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 62, - "type": 1 - }, - "time": "1250426479", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 62, - "type": 1 - }, - "time": "1250426479", - "type": 93 - }, - { - "params": { - "load_flags": 134349056, - "method": "GET", - "priority": "LOW", - "url": "chrome-extension://ejfgipfkkpdadoidbhfedneaabgolbno/wpt/background.js" - }, - "phase": 1, - "source": { - "id": 62, - "type": 1 - }, - "time": "1250426479", - "type": 91 - }, - { - "phase": 2, - "source": { - "id": 62, - "type": 1 - }, - "time": "1250426480", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 62, - "type": 1 - }, - "time": "1250426480", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 62, - "type": 1 - }, - "time": "1250426480", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 62, - "type": 1 - }, - "time": "1250426481", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 63, - "type": 1 - }, - "time": "1250426548", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 63, - "type": 1 - }, - "time": "1250426548", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 63, - "type": 1 - }, - "time": "1250426548", - "type": 93 - }, - { - "params": { - "load_flags": 134349056, - "method": "GET", - "priority": "LOW", - "url": "chrome-extension://ejfgipfkkpdadoidbhfedneaabgolbno/deps.js" - }, - "phase": 1, - "source": { - "id": 63, - "type": 1 - }, - "time": "1250426548", - "type": 91 - }, - { - "params": { - "net_error": -6 - }, - "phase": 0, - "source": { - "id": 63, - "type": 1 - }, - "time": "1250426548", - "type": 1 - }, - { - "params": { - "net_error": -6 - }, - "phase": 2, - "source": { - "id": 63, - "type": 1 - }, - "time": "1250426548", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 63, - "type": 1 - }, - "time": "1250426548", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 63, - "type": 1 - }, - "time": "1250426548", - "type": 93 - }, - { - "params": { - "net_error": -6 - }, - "phase": 2, - "source": { - "id": 63, - "type": 1 - }, - "time": "1250426548", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 64, - "type": 1 - }, - "time": "1250426558", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 64, - "type": 1 - }, - "time": "1250426558", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 64, - "type": 1 - }, - "time": "1250426558", - "type": 93 - }, - { - "params": { - "load_flags": 134349056, - "method": "GET", - "priority": "LOW", - "url": "chrome-extension://nkeimhogjdpnpccoofpliimaahmaaome/startup.js" - }, - "phase": 1, - "source": { - "id": 64, - "type": 1 - }, - "time": "1250426559", - "type": 91 - }, - { - "params": { - "net_error": -6 - }, - "phase": 0, - "source": { - "id": 64, - "type": 1 - }, - "time": "1250426559", - "type": 1 - }, - { - "params": { - "net_error": -6 - }, - "phase": 2, - "source": { - "id": 64, - "type": 1 - }, - "time": "1250426559", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 64, - "type": 1 - }, - "time": "1250426559", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 64, - "type": 1 - }, - "time": "1250426559", - "type": 93 - }, - { - "params": { - "net_error": -6 - }, - "phase": 2, - "source": { - "id": 64, - "type": 1 - }, - "time": "1250426559", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 65, - "type": 1 - }, - "time": "1250426559", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 65, - "type": 1 - }, - "time": "1250426560", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 65, - "type": 1 - }, - "time": "1250426560", - "type": 93 - }, - { - "params": { - "load_flags": 134349056, - "method": "GET", - "priority": "LOW", - "url": "chrome-extension://nkeimhogjdpnpccoofpliimaahmaaome/thunk.js" - }, - "phase": 1, - "source": { - "id": 65, - "type": 1 - }, - "time": "1250426560", - "type": 91 - }, - { - "phase": 2, - "source": { - "id": 65, - "type": 1 - }, - "time": "1250426560", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 65, - "type": 1 - }, - "time": "1250426560", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 65, - "type": 1 - }, - "time": "1250426560", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 65, - "type": 1 - }, - "time": "1250426560", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 66, - "type": 1 - }, - "time": "1250426583", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 66, - "type": 1 - }, - "time": "1250426583", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 66, - "type": 1 - }, - "time": "1250426583", - "type": 93 - }, - { - "params": { - "load_flags": 136446208, - "method": "GET", - "priority": "HIGHEST", - "url": "chrome-extension://ennkphjdgehloodpbhlhldgbnhmacadg/_generated_background_page.html" - }, - "phase": 1, - "source": { - "id": 66, - "type": 1 - }, - "time": "1250426583", - "type": 91 - }, - { - "phase": 2, - "source": { - "id": 66, - "type": 1 - }, - "time": "1250426583", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 66, - "type": 1 - }, - "time": "1250426583", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 66, - "type": 1 - }, - "time": "1250426583", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 66, - "type": 1 - }, - "time": "1250426583", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426712", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426712", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426712", - "type": 93 - }, - { - "params": { - "load_flags": 201457920, - "method": "GET", - "priority": "LOWEST", - "url": "http://127.0.0.1:8888/favicon.ico" - }, - "phase": 1, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426712", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426713", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426713", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426713", - "type": 99 - }, - { - "phase": 2, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426713", - "type": 99 - }, - { - "phase": 1, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426713", - "type": 100 - }, - { - "params": { - "net_error": -2 - }, - "phase": 2, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426713", - "type": 100 - }, - { - "phase": 1, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426713", - "type": 101 - }, - { - "params": { - "created": true, - "key": "http://127.0.0.1:8888/favicon.ico" - }, - "phase": 1, - "source": { - "id": 69, - "type": 10 - }, - "time": "1250426713", - "type": 108 - }, - { - "phase": 2, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426717", - "type": 101 - }, - { - "phase": 1, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426717", - "type": 102 - }, - { - "phase": 2, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426717", - "type": 102 - }, - { - "phase": 1, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426717", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426717", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426717", - "type": 120 - }, - { - "params": { - "original_url": "http://127.0.0.1:8888/", - "priority": "LOWEST", - "url": "http://127.0.0.1:8888/" - }, - "phase": 1, - "source": { - "id": 70, - "type": 12 - }, - "time": "1250426717", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 70, - "type": 12 - }, - "time": "1250426717", - "type": 24 - }, - { - "params": { - "pac_string": "DIRECT" - }, - "phase": 0, - "source": { - "id": 70, - "type": 12 - }, - "time": "1250426717", - "type": 26 - }, - { - "phase": 2, - "source": { - "id": 70, - "type": 12 - }, - "time": "1250426717", - "type": 24 - }, - { - "params": { - "source_dependency": { - "id": 71, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 70, - "type": 12 - }, - "time": "1250426717", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 70, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 71, - "type": 8 - }, - "time": "1250426717", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 71, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 72, - "type": 20 - }, - "time": "1250426717", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 72, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 73, - "type": 14 - }, - "time": "1250426717", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 73, - "type": 14 - }, - "time": "1250426717", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 73, - "type": 14 - }, - "time": "1250426717", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:50969" - }, - "phase": 0, - "source": { - "id": 73, - "type": 14 - }, - "time": "1250426717", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 73, - "type": 14 - }, - "time": "1250426717", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 72, - "type": 20 - }, - "time": "1250426717", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 71, - "type": 8 - }, - "time": "1250426717", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 71, - "type": 8 - }, - "time": "1250426717", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 70, - "type": 12 - }, - "time": "1250426717", - "type": 3 - }, - { - "params": { - "host_and_port": "127.0.0.1:8888" - }, - "phase": 0, - "source": { - "id": 70, - "type": 12 - }, - "time": "1250426717", - "type": 85 - }, - { - "phase": 1, - "source": { - "id": 70, - "type": 12 - }, - "time": "1250426717", - "type": 81 - }, - { - "params": { - "source_dependency": { - "id": 24, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 70, - "type": 12 - }, - "time": "1250426717", - "type": 89 - }, - { - "phase": 2, - "source": { - "id": 70, - "type": 12 - }, - "time": "1250426717", - "type": 81 - }, - { - "params": { - "source_dependency": { - "id": 70, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 24, - "type": 5 - }, - "time": "1250426717", - "type": 38 - }, - { - "params": { - "source_dependency": { - "id": 70, - "type": 12 - } - }, - "phase": 0, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426717", - "type": 122 - }, - { - "params": { - "source_dependency": { - "id": 67, - "type": 1 - } - }, - "phase": 0, - "source": { - "id": 70, - "type": 12 - }, - "time": "1250426717", - "type": 123 - }, - { - "phase": 2, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426717", - "type": 120 - }, - { - "phase": 2, - "source": { - "id": 70, - "type": 12 - }, - "time": "1250426717", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426717", - "type": 129 - }, - { - "params": { - "headers": [ - "Host: 127.0.0.1:8888", - "Connection: keep-alive", - "Accept: */*", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", - "Accept-Encoding: gzip,deflate,sdch", - "Accept-Language: en-US,en;q=0.8" - ], - "line": "GET /favicon.ico HTTP/1.1\r\n" - }, - "phase": 0, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426717", - "type": 130 - }, - { - "params": { - "byte_count": 273 - }, - "phase": 0, - "source": { - "id": 24, - "type": 5 - }, - "time": "1250426717", - "type": 61 - }, - { - "phase": 2, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426717", - "type": 129 - }, - { - "phase": 1, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426717", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426717", - "type": 215 - }, - { - "params": { - "byte_count": 181 - }, - "phase": 0, - "source": { - "id": 24, - "type": 5 - }, - "time": "1250426718", - "type": 63 - }, - { - "phase": 2, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426718", - "type": 215 - }, - { - "params": { - "headers": [ - "HTTP/1.1 200 OK", - "Server: wptdriver", - "Cache: no-cache", - "Pragma: no-cache", - "Content-Type: application/json", - "Content-Length: 56" - ] - }, - "phase": 0, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426718", - "type": 135 - }, - { - "phase": 2, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426718", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426718", - "type": 105 - }, - { - "params": { - "buf_len": 172, - "index": 0, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 69, - "type": 10 - }, - "time": "1250426718", - "type": 111 - }, - { - "params": { - "bytes_copied": 172 - }, - "phase": 2, - "source": { - "id": 69, - "type": 10 - }, - "time": "1250426718", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426718", - "type": 105 - }, - { - "phase": 1, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426718", - "type": 107 - }, - { - "params": { - "buf_len": 0, - "index": 1, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 69, - "type": 10 - }, - "time": "1250426718", - "type": 111 - }, - { - "params": { - "bytes_copied": 0 - }, - "phase": 2, - "source": { - "id": 69, - "type": 10 - }, - "time": "1250426718", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426718", - "type": 107 - }, - { - "phase": 1, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426718", - "type": 105 - }, - { - "params": { - "buf_len": 0, - "index": 2, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 69, - "type": 10 - }, - "time": "1250426718", - "type": 111 - }, - { - "params": { - "bytes_copied": 0 - }, - "phase": 2, - "source": { - "id": 69, - "type": 10 - }, - "time": "1250426718", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426718", - "type": 105 - }, - { - "phase": 1, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426718", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426718", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426718", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426718", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426718", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426718", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426718", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426718", - "type": 107 - }, - { - "params": { - "buf_len": 56, - "index": 1, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 69, - "type": 10 - }, - "time": "1250426718", - "type": 111 - }, - { - "params": { - "bytes_copied": 56 - }, - "phase": 2, - "source": { - "id": 69, - "type": 10 - }, - "time": "1250426718", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426718", - "type": 107 - }, - { - "phase": 1, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426718", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 24, - "type": 5 - }, - "time": "1250426718", - "type": 38 - }, - { - "phase": 0, - "source": { - "id": 24, - "type": 5 - }, - "time": "1250426718", - "type": 67 - }, - { - "phase": 2, - "source": { - "id": 24, - "type": 5 - }, - "time": "1250426718", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426718", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426718", - "type": 107 - }, - { - "phase": 2, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426718", - "type": 107 - }, - { - "phase": 2, - "source": { - "id": 67, - "type": 1 - }, - "time": "1250426719", - "type": 2 - }, - { - "phase": 0, - "source": { - "id": 69, - "type": 10 - }, - "time": "1250426719", - "type": 118 - }, - { - "phase": 2, - "source": { - "id": 69, - "type": 10 - }, - "time": "1250426719", - "type": 108 - }, - { - "phase": 1, - "source": { - "id": 74, - "type": 1 - }, - "time": "1250426904", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 74, - "type": 1 - }, - "time": "1250426904", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 74, - "type": 1 - }, - "time": "1250426905", - "type": 93 - }, - { - "params": { - "load_flags": 134349056, - "method": "POST", - "priority": "LOW", - "url": "http://127.0.0.1:8888/event/load?timestamp=1273.9999999757856&fixedViewport=1" - }, - "phase": 1, - "source": { - "id": 74, - "type": 1 - }, - "time": "1250426905", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 74, - "type": 1 - }, - "time": "1250426905", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 74, - "type": 1 - }, - "time": "1250426905", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 74, - "type": 1 - }, - "time": "1250426905", - "type": 99 - }, - { - "phase": 2, - "source": { - "id": 74, - "type": 1 - }, - "time": "1250426905", - "type": 99 - }, - { - "phase": 1, - "source": { - "id": 74, - "type": 1 - }, - "time": "1250426905", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 74, - "type": 1 - }, - "time": "1250426905", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 74, - "type": 1 - }, - "time": "1250426905", - "type": 120 - }, - { - "params": { - "original_url": "http://127.0.0.1:8888/", - "priority": "LOW", - "url": "http://127.0.0.1:8888/" - }, - "phase": 1, - "source": { - "id": 76, - "type": 12 - }, - "time": "1250426905", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 76, - "type": 12 - }, - "time": "1250426905", - "type": 24 - }, - { - "params": { - "pac_string": "DIRECT" - }, - "phase": 0, - "source": { - "id": 76, - "type": 12 - }, - "time": "1250426905", - "type": 26 - }, - { - "phase": 2, - "source": { - "id": 76, - "type": 12 - }, - "time": "1250426905", - "type": 24 - }, - { - "params": { - "source_dependency": { - "id": 77, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 76, - "type": 12 - }, - "time": "1250426905", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 76, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 77, - "type": 8 - }, - "time": "1250426905", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 77, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 78, - "type": 20 - }, - "time": "1250426905", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 78, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 79, - "type": 14 - }, - "time": "1250426905", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 79, - "type": 14 - }, - "time": "1250426905", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 79, - "type": 14 - }, - "time": "1250426905", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:50970" - }, - "phase": 0, - "source": { - "id": 79, - "type": 14 - }, - "time": "1250426905", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 79, - "type": 14 - }, - "time": "1250426905", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 78, - "type": 20 - }, - "time": "1250426905", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 77, - "type": 8 - }, - "time": "1250426905", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 77, - "type": 8 - }, - "time": "1250426905", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 76, - "type": 12 - }, - "time": "1250426905", - "type": 3 - }, - { - "params": { - "host_and_port": "127.0.0.1:8888" - }, - "phase": 0, - "source": { - "id": 76, - "type": 12 - }, - "time": "1250426905", - "type": 85 - }, - { - "phase": 1, - "source": { - "id": 76, - "type": 12 - }, - "time": "1250426905", - "type": 81 - }, - { - "params": { - "group_name": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 80, - "type": 4 - }, - "time": "1250426905", - "type": 77 - }, - { - "phase": 1, - "source": { - "id": 80, - "type": 4 - }, - "time": "1250426905", - "type": 78 - }, - { - "params": { - "source_dependency": { - "id": 81, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 80, - "type": 4 - }, - "time": "1250426905", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 80, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 81, - "type": 8 - }, - "time": "1250426905", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 81, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 82, - "type": 20 - }, - "time": "1250426906", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 82, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 83, - "type": 14 - }, - "time": "1250426906", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 83, - "type": 14 - }, - "time": "1250426906", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 83, - "type": 14 - }, - "time": "1250426906", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:50971" - }, - "phase": 0, - "source": { - "id": 83, - "type": 14 - }, - "time": "1250426906", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 83, - "type": 14 - }, - "time": "1250426906", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 82, - "type": 20 - }, - "time": "1250426906", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 81, - "type": 8 - }, - "time": "1250426906", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 81, - "type": 8 - }, - "time": "1250426906", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 80, - "type": 4 - }, - "time": "1250426906", - "type": 3 - }, - { - "params": { - "source_dependency": { - "id": 80, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 84, - "type": 5 - }, - "time": "1250426906", - "type": 34 - }, - { - "params": { - "address_list": [ - "127.0.0.1:8888" - ] - }, - "phase": 1, - "source": { - "id": 84, - "type": 5 - }, - "time": "1250426906", - "type": 35 - }, - { - "params": { - "address": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 84, - "type": 5 - }, - "time": "1250426906", - "type": 36 - }, - { - "phase": 2, - "source": { - "id": 84, - "type": 5 - }, - "time": "1250426906", - "type": 36 - }, - { - "params": { - "source_address": "127.0.0.1:50982" - }, - "phase": 2, - "source": { - "id": 84, - "type": 5 - }, - "time": "1250426906", - "type": 35 - }, - { - "params": { - "source_dependency": { - "id": 84, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 80, - "type": 4 - }, - "time": "1250426906", - "type": 79 - }, - { - "phase": 2, - "source": { - "id": 80, - "type": 4 - }, - "time": "1250426906", - "type": 78 - }, - { - "phase": 2, - "source": { - "id": 80, - "type": 4 - }, - "time": "1250426906", - "type": 77 - }, - { - "params": { - "source_dependency": { - "id": 80, - "type": 4 - } - }, - "phase": 0, - "source": { - "id": 76, - "type": 12 - }, - "time": "1250426906", - "type": 88 - }, - { - "params": { - "source_dependency": { - "id": 84, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 76, - "type": 12 - }, - "time": "1250426906", - "type": 89 - }, - { - "phase": 2, - "source": { - "id": 76, - "type": 12 - }, - "time": "1250426906", - "type": 81 - }, - { - "params": { - "source_dependency": { - "id": 76, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 84, - "type": 5 - }, - "time": "1250426906", - "type": 38 - }, - { - "params": { - "source_dependency": { - "id": 76, - "type": 12 - } - }, - "phase": 0, - "source": { - "id": 74, - "type": 1 - }, - "time": "1250426906", - "type": 122 - }, - { - "params": { - "source_dependency": { - "id": 74, - "type": 1 - } - }, - "phase": 0, - "source": { - "id": 76, - "type": 12 - }, - "time": "1250426906", - "type": 123 - }, - { - "phase": 2, - "source": { - "id": 74, - "type": 1 - }, - "time": "1250426906", - "type": 120 - }, - { - "phase": 2, - "source": { - "id": 76, - "type": 12 - }, - "time": "1250426906", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 74, - "type": 1 - }, - "time": "1250426907", - "type": 129 - }, - { - "params": { - "headers": [ - "Host: 127.0.0.1:8888", - "Connection: keep-alive", - "Content-Length: 0", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", - "Origin: chrome-extension://ejfgipfkkpdadoidbhfedneaabgolbno", - "Accept: */*", - "Accept-Encoding: gzip,deflate", - "Accept-Language: en-US,en;q=0.8" - ], - "line": "POST /event/load?timestamp=1273.9999999757856&fixedViewport=1 HTTP/1.1\r\n" - }, - "phase": 0, - "source": { - "id": 74, - "type": 1 - }, - "time": "1250426907", - "type": 130 - }, - { - "params": { - "byte_count": 393 - }, - "phase": 0, - "source": { - "id": 84, - "type": 5 - }, - "time": "1250426907", - "type": 61 - }, - { - "phase": 2, - "source": { - "id": 74, - "type": 1 - }, - "time": "1250426907", - "type": 129 - }, - { - "phase": 1, - "source": { - "id": 74, - "type": 1 - }, - "time": "1250426907", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 74, - "type": 1 - }, - "time": "1250426907", - "type": 215 - }, - { - "params": { - "byte_count": 161 - }, - "phase": 0, - "source": { - "id": 84, - "type": 5 - }, - "time": "1250426907", - "type": 63 - }, - { - "phase": 2, - "source": { - "id": 74, - "type": 1 - }, - "time": "1250426907", - "type": 215 - }, - { - "params": { - "headers": [ - "HTTP/1.1 200 OK", - "Server: wptdriver", - "Cache: no-cache", - "Pragma: no-cache", - "Content-Type: application/json", - "Content-Length: 36" - ] - }, - "phase": 0, - "source": { - "id": 74, - "type": 1 - }, - "time": "1250426907", - "type": 135 - }, - { - "phase": 2, - "source": { - "id": 74, - "type": 1 - }, - "time": "1250426907", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 74, - "type": 1 - }, - "time": "1250426907", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 74, - "type": 1 - }, - "time": "1250426907", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 74, - "type": 1 - }, - "time": "1250426907", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 74, - "type": 1 - }, - "time": "1250426907", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 74, - "type": 1 - }, - "time": "1250426907", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 74, - "type": 1 - }, - "time": "1250426907", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 74, - "type": 1 - }, - "time": "1250426907", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 74, - "type": 1 - }, - "time": "1250426907", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 84, - "type": 5 - }, - "time": "1250426907", - "type": 38 - }, - { - "phase": 0, - "source": { - "id": 84, - "type": 5 - }, - "time": "1250426907", - "type": 67 - }, - { - "phase": 2, - "source": { - "id": 84, - "type": 5 - }, - "time": "1250426908", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 74, - "type": 1 - }, - "time": "1250426908", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 74, - "type": 1 - }, - "time": "1250426908", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 85, - "type": 1 - }, - "time": "1250426922", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 85, - "type": 1 - }, - "time": "1250426922", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 85, - "type": 1 - }, - "time": "1250426922", - "type": 93 - }, - { - "params": { - "load_flags": 134349056, - "method": "GET", - "priority": "LOW", - "url": "chrome-extension://ennkphjdgehloodpbhlhldgbnhmacadg/settings_app.js" - }, - "phase": 1, - "source": { - "id": 85, - "type": 1 - }, - "time": "1250426922", - "type": 91 - }, - { - "phase": 2, - "source": { - "id": 85, - "type": 1 - }, - "time": "1250426923", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 85, - "type": 1 - }, - "time": "1250426923", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 85, - "type": 1 - }, - "time": "1250426923", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 85, - "type": 1 - }, - "time": "1250426923", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 86, - "type": 1 - }, - "time": "1250426953", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 86, - "type": 1 - }, - "time": "1250426953", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 86, - "type": 1 - }, - "time": "1250426953", - "type": 93 - }, - { - "params": { - "load_flags": 136446208, - "method": "GET", - "priority": "HIGHEST", - "url": "chrome-extension://gfdkimpbcpahaombhbimeihdjnejgicl/_generated_background_page.html" - }, - "phase": 1, - "source": { - "id": 86, - "type": 1 - }, - "time": "1250426953", - "type": 91 - }, - { - "phase": 2, - "source": { - "id": 86, - "type": 1 - }, - "time": "1250426953", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 86, - "type": 1 - }, - "time": "1250426953", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 86, - "type": 1 - }, - "time": "1250426953", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 86, - "type": 1 - }, - "time": "1250426953", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 87, - "type": 1 - }, - "time": "1250427211", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 87, - "type": 1 - }, - "time": "1250427211", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 87, - "type": 1 - }, - "time": "1250427211", - "type": 93 - }, - { - "params": { - "load_flags": 136446208, - "method": "GET", - "priority": "HIGHEST", - "url": "chrome-extension://neajdppkdcdipfabeoofebfddakdcjhd/_generated_background_page.html" - }, - "phase": 1, - "source": { - "id": 87, - "type": 1 - }, - "time": "1250427211", - "type": 91 - }, - { - "phase": 2, - "source": { - "id": 87, - "type": 1 - }, - "time": "1250427211", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 87, - "type": 1 - }, - "time": "1250427211", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 87, - "type": 1 - }, - "time": "1250427211", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 87, - "type": 1 - }, - "time": "1250427211", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 88, - "type": 1 - }, - "time": "1250427211", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 88, - "type": 1 - }, - "time": "1250427211", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 88, - "type": 1 - }, - "time": "1250427211", - "type": 93 - }, - { - "params": { - "load_flags": 134349056, - "method": "GET", - "priority": "LOW", - "url": "chrome-extension://gfdkimpbcpahaombhbimeihdjnejgicl/js/event_handler.js" - }, - "phase": 1, - "source": { - "id": 88, - "type": 1 - }, - "time": "1250427211", - "type": 91 - }, - { - "phase": 2, - "source": { - "id": 88, - "type": 1 - }, - "time": "1250427213", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 88, - "type": 1 - }, - "time": "1250427213", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 88, - "type": 1 - }, - "time": "1250427213", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 88, - "type": 1 - }, - "time": "1250427213", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 89, - "type": 1 - }, - "time": "1250427434", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 89, - "type": 1 - }, - "time": "1250427435", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 89, - "type": 1 - }, - "time": "1250427435", - "type": 93 - }, - { - "params": { - "load_flags": 134349056, - "method": "GET", - "priority": "LOW", - "url": "chrome-extension://neajdppkdcdipfabeoofebfddakdcjhd/tts_extension.js" - }, - "phase": 1, - "source": { - "id": 89, - "type": 1 - }, - "time": "1250427435", - "type": 91 - }, - { - "phase": 2, - "source": { - "id": 89, - "type": 1 - }, - "time": "1250427435", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 89, - "type": 1 - }, - "time": "1250427435", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 89, - "type": 1 - }, - "time": "1250427435", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 89, - "type": 1 - }, - "time": "1250427435", - "type": 2 - }, - { - "params": { - "original_url": "http://127.0.0.1:8888/", - "priority": "HIGHEST", - "url": "http://127.0.0.1:8888/" - }, - "phase": 1, - "source": { - "id": 90, - "type": 12 - }, - "time": "1250427676", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 90, - "type": 12 - }, - "time": "1250427676", - "type": 24 - }, - { - "params": { - "pac_string": "DIRECT" - }, - "phase": 0, - "source": { - "id": 90, - "type": 12 - }, - "time": "1250427676", - "type": 26 - }, - { - "phase": 2, - "source": { - "id": 90, - "type": 12 - }, - "time": "1250427676", - "type": 24 - }, - { - "params": { - "source_dependency": { - "id": 91, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 90, - "type": 12 - }, - "time": "1250427676", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 90, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 91, - "type": 8 - }, - "time": "1250427676", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 91, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 92, - "type": 20 - }, - "time": "1250427676", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 92, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 93, - "type": 14 - }, - "time": "1250427676", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 93, - "type": 14 - }, - "time": "1250427676", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 93, - "type": 14 - }, - "time": "1250427676", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:50972" - }, - "phase": 0, - "source": { - "id": 93, - "type": 14 - }, - "time": "1250427676", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 93, - "type": 14 - }, - "time": "1250427676", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 92, - "type": 20 - }, - "time": "1250427676", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 91, - "type": 8 - }, - "time": "1250427676", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 91, - "type": 8 - }, - "time": "1250427676", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 90, - "type": 12 - }, - "time": "1250427676", - "type": 3 - }, - { - "params": { - "host_and_port": "127.0.0.1:8888" - }, - "phase": 0, - "source": { - "id": 90, - "type": 12 - }, - "time": "1250427676", - "type": 86 - }, - { - "params": { - "num_sockets": 1 - }, - "phase": 1, - "source": { - "id": 90, - "type": 12 - }, - "time": "1250427676", - "type": 90 - }, - { - "params": { - "group_name": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 94, - "type": 4 - }, - "time": "1250427676", - "type": 77 - }, - { - "phase": 1, - "source": { - "id": 94, - "type": 4 - }, - "time": "1250427677", - "type": 78 - }, - { - "params": { - "source_dependency": { - "id": 95, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 94, - "type": 4 - }, - "time": "1250427677", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 94, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 95, - "type": 8 - }, - "time": "1250427677", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 95, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 96, - "type": 20 - }, - "time": "1250427677", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 96, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 97, - "type": 14 - }, - "time": "1250427677", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 97, - "type": 14 - }, - "time": "1250427677", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 97, - "type": 14 - }, - "time": "1250427677", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:50973" - }, - "phase": 0, - "source": { - "id": 97, - "type": 14 - }, - "time": "1250427677", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 97, - "type": 14 - }, - "time": "1250427677", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 96, - "type": 20 - }, - "time": "1250427677", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 95, - "type": 8 - }, - "time": "1250427677", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 95, - "type": 8 - }, - "time": "1250427677", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 94, - "type": 4 - }, - "time": "1250427677", - "type": 3 - }, - { - "params": { - "source_dependency": { - "id": 94, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 98, - "type": 5 - }, - "time": "1250427677", - "type": 34 - }, - { - "params": { - "address_list": [ - "127.0.0.1:8888" - ] - }, - "phase": 1, - "source": { - "id": 98, - "type": 5 - }, - "time": "1250427677", - "type": 35 - }, - { - "params": { - "address": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 98, - "type": 5 - }, - "time": "1250427677", - "type": 36 - }, - { - "phase": 2, - "source": { - "id": 90, - "type": 12 - }, - "time": "1250427677", - "type": 90 - }, - { - "params": { - "original_url": "http://127.0.0.1:8888/", - "priority": "HIGHEST", - "url": "http://127.0.0.1:8888/" - }, - "phase": 1, - "source": { - "id": 99, - "type": 12 - }, - "time": "1250427677", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 99, - "type": 12 - }, - "time": "1250427677", - "type": 24 - }, - { - "params": { - "pac_string": "DIRECT" - }, - "phase": 0, - "source": { - "id": 99, - "type": 12 - }, - "time": "1250427677", - "type": 26 - }, - { - "phase": 2, - "source": { - "id": 99, - "type": 12 - }, - "time": "1250427677", - "type": 24 - }, - { - "params": { - "source_dependency": { - "id": 100, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 99, - "type": 12 - }, - "time": "1250427677", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 99, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 100, - "type": 8 - }, - "time": "1250427677", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 100, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 101, - "type": 20 - }, - "time": "1250427677", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 101, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 102, - "type": 14 - }, - "time": "1250427677", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 102, - "type": 14 - }, - "time": "1250427677", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 102, - "type": 14 - }, - "time": "1250427678", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:50974" - }, - "phase": 0, - "source": { - "id": 102, - "type": 14 - }, - "time": "1250427678", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 102, - "type": 14 - }, - "time": "1250427678", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 101, - "type": 20 - }, - "time": "1250427678", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 100, - "type": 8 - }, - "time": "1250427678", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 100, - "type": 8 - }, - "time": "1250427678", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 99, - "type": 12 - }, - "time": "1250427678", - "type": 3 - }, - { - "params": { - "host_and_port": "127.0.0.1:8888" - }, - "phase": 0, - "source": { - "id": 99, - "type": 12 - }, - "time": "1250427678", - "type": 86 - }, - { - "params": { - "num_sockets": 2 - }, - "phase": 1, - "source": { - "id": 99, - "type": 12 - }, - "time": "1250427678", - "type": 90 - }, - { - "params": { - "group_name": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 103, - "type": 4 - }, - "time": "1250427678", - "type": 77 - }, - { - "phase": 1, - "source": { - "id": 103, - "type": 4 - }, - "time": "1250427678", - "type": 78 - }, - { - "params": { - "source_dependency": { - "id": 104, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 103, - "type": 4 - }, - "time": "1250427678", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 103, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 104, - "type": 8 - }, - "time": "1250427678", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 104, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 105, - "type": 20 - }, - "time": "1250427678", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 105, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 106, - "type": 14 - }, - "time": "1250427678", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 106, - "type": 14 - }, - "time": "1250427678", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 106, - "type": 14 - }, - "time": "1250427678", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:50975" - }, - "phase": 0, - "source": { - "id": 106, - "type": 14 - }, - "time": "1250427678", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 106, - "type": 14 - }, - "time": "1250427678", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 105, - "type": 20 - }, - "time": "1250427678", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 104, - "type": 8 - }, - "time": "1250427678", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 104, - "type": 8 - }, - "time": "1250427678", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 103, - "type": 4 - }, - "time": "1250427678", - "type": 3 - }, - { - "params": { - "source_dependency": { - "id": 103, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 107, - "type": 5 - }, - "time": "1250427678", - "type": 34 - }, - { - "params": { - "address_list": [ - "127.0.0.1:8888" - ] - }, - "phase": 1, - "source": { - "id": 107, - "type": 5 - }, - "time": "1250427678", - "type": 35 - }, - { - "params": { - "address": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 107, - "type": 5 - }, - "time": "1250427678", - "type": 36 - }, - { - "phase": 2, - "source": { - "id": 99, - "type": 12 - }, - "time": "1250427678", - "type": 90 - }, - { - "phase": 2, - "source": { - "id": 90, - "type": 12 - }, - "time": "1250427678", - "type": 121 - }, - { - "phase": 2, - "source": { - "id": 99, - "type": 12 - }, - "time": "1250427678", - "type": 121 - }, - { - "phase": 2, - "source": { - "id": 98, - "type": 5 - }, - "time": "1250427678", - "type": 36 - }, - { - "params": { - "source_address": "127.0.0.1:50983" - }, - "phase": 2, - "source": { - "id": 98, - "type": 5 - }, - "time": "1250427678", - "type": 35 - }, - { - "params": { - "source_dependency": { - "id": 98, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 94, - "type": 4 - }, - "time": "1250427678", - "type": 79 - }, - { - "phase": 2, - "source": { - "id": 94, - "type": 4 - }, - "time": "1250427678", - "type": 78 - }, - { - "phase": 2, - "source": { - "id": 94, - "type": 4 - }, - "time": "1250427678", - "type": 77 - }, - { - "phase": 2, - "source": { - "id": 107, - "type": 5 - }, - "time": "1250427678", - "type": 36 - }, - { - "params": { - "source_address": "127.0.0.1:50984" - }, - "phase": 2, - "source": { - "id": 107, - "type": 5 - }, - "time": "1250427678", - "type": 35 - }, - { - "params": { - "source_dependency": { - "id": 107, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 103, - "type": 4 - }, - "time": "1250427678", - "type": 79 - }, - { - "phase": 2, - "source": { - "id": 103, - "type": 4 - }, - "time": "1250427678", - "type": 78 - }, - { - "phase": 2, - "source": { - "id": 103, - "type": 4 - }, - "time": "1250427678", - "type": 77 - }, - { - "phase": 1, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427679", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427679", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427679", - "type": 93 - }, - { - "params": { - "load_flags": 10617088, - "method": "GET", - "priority": "HIGHEST", - "url": "http://127.0.0.1:8888/blank2.html" - }, - "phase": 1, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427680", - "type": 91 - }, - { - "phase": 2, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427680", - "type": 91 - }, - { - "params": { - "load_flags": 10617088, - "method": "GET", - "priority": "HIGHEST", - "url": "http://127.0.0.1:8888/blank2.html" - }, - "phase": 1, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427680", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427680", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427680", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427680", - "type": 99 - }, - { - "phase": 2, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427680", - "type": 99 - }, - { - "phase": 1, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427680", - "type": 100 - }, - { - "params": { - "net_error": -2 - }, - "phase": 2, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427680", - "type": 100 - }, - { - "phase": 1, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427680", - "type": 101 - }, - { - "params": { - "created": true, - "key": "http://127.0.0.1:8888/blank2.html" - }, - "phase": 1, - "source": { - "id": 110, - "type": 10 - }, - "time": "1250427680", - "type": 108 - }, - { - "phase": 2, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427681", - "type": 101 - }, - { - "phase": 1, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427681", - "type": 102 - }, - { - "phase": 2, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427681", - "type": 102 - }, - { - "phase": 1, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427681", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427681", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427681", - "type": 120 - }, - { - "params": { - "original_url": "http://127.0.0.1:8888/", - "priority": "HIGHEST", - "url": "http://127.0.0.1:8888/" - }, - "phase": 1, - "source": { - "id": 111, - "type": 12 - }, - "time": "1250427681", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 111, - "type": 12 - }, - "time": "1250427681", - "type": 24 - }, - { - "params": { - "pac_string": "DIRECT" - }, - "phase": 0, - "source": { - "id": 111, - "type": 12 - }, - "time": "1250427681", - "type": 26 - }, - { - "phase": 2, - "source": { - "id": 111, - "type": 12 - }, - "time": "1250427681", - "type": 24 - }, - { - "params": { - "source_dependency": { - "id": 112, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 111, - "type": 12 - }, - "time": "1250427681", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 111, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 112, - "type": 8 - }, - "time": "1250427681", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 112, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 113, - "type": 20 - }, - "time": "1250427681", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 113, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 114, - "type": 14 - }, - "time": "1250427681", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 114, - "type": 14 - }, - "time": "1250427681", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 114, - "type": 14 - }, - "time": "1250427681", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:50976" - }, - "phase": 0, - "source": { - "id": 114, - "type": 14 - }, - "time": "1250427681", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 114, - "type": 14 - }, - "time": "1250427681", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 113, - "type": 20 - }, - "time": "1250427681", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 112, - "type": 8 - }, - "time": "1250427681", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 112, - "type": 8 - }, - "time": "1250427681", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 111, - "type": 12 - }, - "time": "1250427681", - "type": 3 - }, - { - "params": { - "host_and_port": "127.0.0.1:8888" - }, - "phase": 0, - "source": { - "id": 111, - "type": 12 - }, - "time": "1250427681", - "type": 85 - }, - { - "phase": 1, - "source": { - "id": 111, - "type": 12 - }, - "time": "1250427681", - "type": 81 - }, - { - "params": { - "source_dependency": { - "id": 98, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 111, - "type": 12 - }, - "time": "1250427681", - "type": 89 - }, - { - "phase": 2, - "source": { - "id": 111, - "type": 12 - }, - "time": "1250427681", - "type": 81 - }, - { - "params": { - "source_dependency": { - "id": 111, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 98, - "type": 5 - }, - "time": "1250427681", - "type": 38 - }, - { - "params": { - "source_dependency": { - "id": 111, - "type": 12 - } - }, - "phase": 0, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427681", - "type": 122 - }, - { - "params": { - "source_dependency": { - "id": 108, - "type": 1 - } - }, - "phase": 0, - "source": { - "id": 111, - "type": 12 - }, - "time": "1250427681", - "type": 123 - }, - { - "phase": 2, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427681", - "type": 120 - }, - { - "phase": 2, - "source": { - "id": 111, - "type": 12 - }, - "time": "1250427681", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427681", - "type": 129 - }, - { - "params": { - "headers": [ - "Host: 127.0.0.1:8888", - "Connection: keep-alive", - "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", - "Accept-Encoding: gzip,deflate,sdch", - "Accept-Language: en-US,en;q=0.8" - ], - "line": "GET /blank2.html HTTP/1.1\r\n" - }, - "phase": 0, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427681", - "type": 130 - }, - { - "params": { - "byte_count": 344 - }, - "phase": 0, - "source": { - "id": 98, - "type": 5 - }, - "time": "1250427681", - "type": 61 - }, - { - "phase": 2, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427681", - "type": 129 - }, - { - "phase": 1, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427681", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427681", - "type": 215 - }, - { - "params": { - "byte_count": 355 - }, - "phase": 0, - "source": { - "id": 98, - "type": 5 - }, - "time": "1250427682", - "type": 63 - }, - { - "phase": 2, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427682", - "type": 215 - }, - { - "params": { - "headers": [ - "HTTP/1.1 200 OK", - "Cache: no-cache", - "Content-Type: text/html" - ] - }, - "phase": 0, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427682", - "type": 135 - }, - { - "phase": 2, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427682", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427682", - "type": 105 - }, - { - "params": { - "buf_len": 108, - "index": 0, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 110, - "type": 10 - }, - "time": "1250427682", - "type": 111 - }, - { - "params": { - "bytes_copied": 108 - }, - "phase": 2, - "source": { - "id": 110, - "type": 10 - }, - "time": "1250427682", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427682", - "type": 105 - }, - { - "phase": 1, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427682", - "type": 107 - }, - { - "params": { - "buf_len": 0, - "index": 1, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 110, - "type": 10 - }, - "time": "1250427682", - "type": 111 - }, - { - "params": { - "bytes_copied": 0 - }, - "phase": 2, - "source": { - "id": 110, - "type": 10 - }, - "time": "1250427682", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427682", - "type": 107 - }, - { - "phase": 1, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427682", - "type": 105 - }, - { - "params": { - "buf_len": 0, - "index": 2, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 110, - "type": 10 - }, - "time": "1250427682", - "type": 111 - }, - { - "params": { - "bytes_copied": 0 - }, - "phase": 2, - "source": { - "id": 110, - "type": 10 - }, - "time": "1250427682", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427682", - "type": 105 - }, - { - "phase": 1, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427682", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427682", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427682", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427682", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427682", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427682", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427682", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427682", - "type": 107 - }, - { - "params": { - "buf_len": 295, - "index": 1, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 110, - "type": 10 - }, - "time": "1250427682", - "type": 111 - }, - { - "params": { - "bytes_copied": 295 - }, - "phase": 2, - "source": { - "id": 110, - "type": 10 - }, - "time": "1250427682", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427682", - "type": 107 - }, - { - "phase": 1, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427682", - "type": 136 - }, - { - "params": { - "byte_count": 0 - }, - "phase": 0, - "source": { - "id": 98, - "type": 5 - }, - "time": "1250427682", - "type": 63 - }, - { - "phase": 0, - "source": { - "id": 98, - "type": 5 - }, - "time": "1250427682", - "type": 67 - }, - { - "phase": 2, - "source": { - "id": 98, - "type": 5 - }, - "time": "1250427682", - "type": 38 - }, - { - "phase": 2, - "source": { - "id": 98, - "type": 5 - }, - "time": "1250427682", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427682", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427682", - "type": 107 - }, - { - "phase": 2, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427682", - "type": 107 - }, - { - "phase": 2, - "source": { - "id": 108, - "type": 1 - }, - "time": "1250427683", - "type": 2 - }, - { - "phase": 0, - "source": { - "id": 110, - "type": 10 - }, - "time": "1250427683", - "type": 118 - }, - { - "phase": 2, - "source": { - "id": 110, - "type": 10 - }, - "time": "1250427683", - "type": 108 - }, - { - "phase": 1, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427772", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427772", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427772", - "type": 93 - }, - { - "params": { - "load_flags": 67240192, - "method": "GET", - "priority": "LOWEST", - "url": "http://127.0.0.1:8888/favicon.ico" - }, - "phase": 1, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427772", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427773", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427773", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427773", - "type": 99 - }, - { - "phase": 2, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427773", - "type": 99 - }, - { - "phase": 1, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427773", - "type": 100 - }, - { - "params": { - "created": false, - "key": "http://127.0.0.1:8888/favicon.ico" - }, - "phase": 1, - "source": { - "id": 116, - "type": 10 - }, - "time": "1250427773", - "type": 108 - }, - { - "phase": 2, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427773", - "type": 100 - }, - { - "phase": 1, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427773", - "type": 102 - }, - { - "phase": 2, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427773", - "type": 102 - }, - { - "phase": 1, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427773", - "type": 104 - }, - { - "params": { - "buf_len": 172, - "index": 0, - "offset": 0 - }, - "phase": 1, - "source": { - "id": 116, - "type": 10 - }, - "time": "1250427773", - "type": 110 - }, - { - "params": { - "bytes_copied": 172 - }, - "phase": 2, - "source": { - "id": 116, - "type": 10 - }, - "time": "1250427773", - "type": 110 - }, - { - "phase": 2, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427773", - "type": 104 - }, - { - "phase": 1, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427773", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427773", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427773", - "type": 120 - }, - { - "params": { - "original_url": "http://127.0.0.1:8888/", - "priority": "LOWEST", - "url": "http://127.0.0.1:8888/" - }, - "phase": 1, - "source": { - "id": 117, - "type": 12 - }, - "time": "1250427773", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 117, - "type": 12 - }, - "time": "1250427773", - "type": 24 - }, - { - "params": { - "pac_string": "DIRECT" - }, - "phase": 0, - "source": { - "id": 117, - "type": 12 - }, - "time": "1250427773", - "type": 26 - }, - { - "phase": 2, - "source": { - "id": 117, - "type": 12 - }, - "time": "1250427773", - "type": 24 - }, - { - "params": { - "source_dependency": { - "id": 118, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 117, - "type": 12 - }, - "time": "1250427773", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 117, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 118, - "type": 8 - }, - "time": "1250427773", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 118, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 119, - "type": 20 - }, - "time": "1250427773", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 119, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 120, - "type": 14 - }, - "time": "1250427773", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 120, - "type": 14 - }, - "time": "1250427773", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 120, - "type": 14 - }, - "time": "1250427774", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:50977" - }, - "phase": 0, - "source": { - "id": 120, - "type": 14 - }, - "time": "1250427774", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 120, - "type": 14 - }, - "time": "1250427774", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 119, - "type": 20 - }, - "time": "1250427774", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 118, - "type": 8 - }, - "time": "1250427774", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 118, - "type": 8 - }, - "time": "1250427774", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 117, - "type": 12 - }, - "time": "1250427774", - "type": 3 - }, - { - "params": { - "host_and_port": "127.0.0.1:8888" - }, - "phase": 0, - "source": { - "id": 117, - "type": 12 - }, - "time": "1250427774", - "type": 85 - }, - { - "phase": 1, - "source": { - "id": 117, - "type": 12 - }, - "time": "1250427774", - "type": 81 - }, - { - "params": { - "source_dependency": { - "id": 107, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 117, - "type": 12 - }, - "time": "1250427774", - "type": 89 - }, - { - "phase": 2, - "source": { - "id": 117, - "type": 12 - }, - "time": "1250427774", - "type": 81 - }, - { - "params": { - "source_dependency": { - "id": 117, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 107, - "type": 5 - }, - "time": "1250427774", - "type": 38 - }, - { - "params": { - "source_dependency": { - "id": 117, - "type": 12 - } - }, - "phase": 0, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427774", - "type": 122 - }, - { - "params": { - "source_dependency": { - "id": 115, - "type": 1 - } - }, - "phase": 0, - "source": { - "id": 117, - "type": 12 - }, - "time": "1250427774", - "type": 123 - }, - { - "phase": 2, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427774", - "type": 120 - }, - { - "phase": 2, - "source": { - "id": 117, - "type": 12 - }, - "time": "1250427774", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427774", - "type": 129 - }, - { - "params": { - "headers": [ - "Host: 127.0.0.1:8888", - "Connection: keep-alive", - "Accept: */*", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", - "Accept-Encoding: gzip,deflate,sdch", - "Accept-Language: en-US,en;q=0.8" - ], - "line": "GET /favicon.ico HTTP/1.1\r\n" - }, - "phase": 0, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427774", - "type": 130 - }, - { - "params": { - "byte_count": 273 - }, - "phase": 0, - "source": { - "id": 107, - "type": 5 - }, - "time": "1250427774", - "type": 61 - }, - { - "phase": 2, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427774", - "type": 129 - }, - { - "phase": 1, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427774", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427774", - "type": 215 - }, - { - "params": { - "byte_count": 181 - }, - "phase": 0, - "source": { - "id": 107, - "type": 5 - }, - "time": "1250427774", - "type": 63 - }, - { - "phase": 2, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427774", - "type": 215 - }, - { - "params": { - "headers": [ - "HTTP/1.1 200 OK", - "Server: wptdriver", - "Cache: no-cache", - "Pragma: no-cache", - "Content-Type: application/json", - "Content-Length: 56" - ] - }, - "phase": 0, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427774", - "type": 135 - }, - { - "phase": 2, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427774", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427774", - "type": 105 - }, - { - "params": { - "buf_len": 172, - "index": 0, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 116, - "type": 10 - }, - "time": "1250427774", - "type": 111 - }, - { - "params": { - "bytes_copied": 172 - }, - "phase": 2, - "source": { - "id": 116, - "type": 10 - }, - "time": "1250427774", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427774", - "type": 105 - }, - { - "phase": 1, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427774", - "type": 107 - }, - { - "params": { - "buf_len": 0, - "index": 1, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 116, - "type": 10 - }, - "time": "1250427774", - "type": 111 - }, - { - "params": { - "bytes_copied": 0 - }, - "phase": 2, - "source": { - "id": 116, - "type": 10 - }, - "time": "1250427774", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427774", - "type": 107 - }, - { - "phase": 1, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427774", - "type": 105 - }, - { - "params": { - "buf_len": 0, - "index": 2, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 116, - "type": 10 - }, - "time": "1250427774", - "type": 111 - }, - { - "params": { - "bytes_copied": 0 - }, - "phase": 2, - "source": { - "id": 116, - "type": 10 - }, - "time": "1250427774", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427774", - "type": 105 - }, - { - "phase": 1, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427775", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427775", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427775", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427775", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427775", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427775", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427775", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427775", - "type": 107 - }, - { - "params": { - "buf_len": 56, - "index": 1, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 116, - "type": 10 - }, - "time": "1250427775", - "type": 111 - }, - { - "params": { - "bytes_copied": 56 - }, - "phase": 2, - "source": { - "id": 116, - "type": 10 - }, - "time": "1250427775", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427775", - "type": 107 - }, - { - "phase": 1, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427775", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 107, - "type": 5 - }, - "time": "1250427775", - "type": 38 - }, - { - "phase": 0, - "source": { - "id": 107, - "type": 5 - }, - "time": "1250427775", - "type": 67 - }, - { - "phase": 2, - "source": { - "id": 107, - "type": 5 - }, - "time": "1250427775", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427775", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427775", - "type": 107 - }, - { - "phase": 2, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427775", - "type": 107 - }, - { - "phase": 2, - "source": { - "id": 115, - "type": 1 - }, - "time": "1250427775", - "type": 2 - }, - { - "phase": 0, - "source": { - "id": 116, - "type": 10 - }, - "time": "1250427775", - "type": 118 - }, - { - "phase": 2, - "source": { - "id": 116, - "type": 10 - }, - "time": "1250427775", - "type": 108 - }, - { - "phase": 1, - "source": { - "id": 121, - "type": 1 - }, - "time": "1250427784", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 121, - "type": 1 - }, - "time": "1250427784", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 121, - "type": 1 - }, - "time": "1250427784", - "type": 93 - }, - { - "params": { - "load_flags": 131328, - "method": "POST", - "priority": "LOW", - "url": "http://127.0.0.1:8888/event/load?timestamp=81.99999993667006&fixedViewport=1" - }, - "phase": 1, - "source": { - "id": 121, - "type": 1 - }, - "time": "1250427784", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 121, - "type": 1 - }, - "time": "1250427785", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 121, - "type": 1 - }, - "time": "1250427785", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 121, - "type": 1 - }, - "time": "1250427785", - "type": 99 - }, - { - "phase": 2, - "source": { - "id": 121, - "type": 1 - }, - "time": "1250427785", - "type": 99 - }, - { - "phase": 1, - "source": { - "id": 121, - "type": 1 - }, - "time": "1250427785", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 121, - "type": 1 - }, - "time": "1250427785", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 121, - "type": 1 - }, - "time": "1250427785", - "type": 120 - }, - { - "params": { - "original_url": "http://127.0.0.1:8888/", - "priority": "LOW", - "url": "http://127.0.0.1:8888/" - }, - "phase": 1, - "source": { - "id": 122, - "type": 12 - }, - "time": "1250427785", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 122, - "type": 12 - }, - "time": "1250427785", - "type": 24 - }, - { - "params": { - "pac_string": "DIRECT" - }, - "phase": 0, - "source": { - "id": 122, - "type": 12 - }, - "time": "1250427785", - "type": 26 - }, - { - "phase": 2, - "source": { - "id": 122, - "type": 12 - }, - "time": "1250427785", - "type": 24 - }, - { - "params": { - "source_dependency": { - "id": 123, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 122, - "type": 12 - }, - "time": "1250427785", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 122, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 123, - "type": 8 - }, - "time": "1250427785", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 123, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 124, - "type": 20 - }, - "time": "1250427785", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 124, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 125, - "type": 14 - }, - "time": "1250427785", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 125, - "type": 14 - }, - "time": "1250427785", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 125, - "type": 14 - }, - "time": "1250427785", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:50978" - }, - "phase": 0, - "source": { - "id": 125, - "type": 14 - }, - "time": "1250427785", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 125, - "type": 14 - }, - "time": "1250427785", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 124, - "type": 20 - }, - "time": "1250427785", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 123, - "type": 8 - }, - "time": "1250427785", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 123, - "type": 8 - }, - "time": "1250427785", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 122, - "type": 12 - }, - "time": "1250427785", - "type": 3 - }, - { - "params": { - "host_and_port": "127.0.0.1:8888" - }, - "phase": 0, - "source": { - "id": 122, - "type": 12 - }, - "time": "1250427785", - "type": 85 - }, - { - "phase": 1, - "source": { - "id": 122, - "type": 12 - }, - "time": "1250427785", - "type": 81 - }, - { - "params": { - "group_name": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 126, - "type": 4 - }, - "time": "1250427785", - "type": 77 - }, - { - "phase": 1, - "source": { - "id": 126, - "type": 4 - }, - "time": "1250427785", - "type": 78 - }, - { - "params": { - "source_dependency": { - "id": 127, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 126, - "type": 4 - }, - "time": "1250427785", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 126, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 127, - "type": 8 - }, - "time": "1250427785", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 127, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 128, - "type": 20 - }, - "time": "1250427785", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 128, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 129, - "type": 14 - }, - "time": "1250427785", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 129, - "type": 14 - }, - "time": "1250427785", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 129, - "type": 14 - }, - "time": "1250427785", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:50979" - }, - "phase": 0, - "source": { - "id": 129, - "type": 14 - }, - "time": "1250427785", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 129, - "type": 14 - }, - "time": "1250427785", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 128, - "type": 20 - }, - "time": "1250427785", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 127, - "type": 8 - }, - "time": "1250427785", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 127, - "type": 8 - }, - "time": "1250427785", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 126, - "type": 4 - }, - "time": "1250427785", - "type": 3 - }, - { - "params": { - "source_dependency": { - "id": 126, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 130, - "type": 5 - }, - "time": "1250427785", - "type": 34 - }, - { - "params": { - "address_list": [ - "127.0.0.1:8888" - ] - }, - "phase": 1, - "source": { - "id": 130, - "type": 5 - }, - "time": "1250427785", - "type": 35 - }, - { - "params": { - "address": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 130, - "type": 5 - }, - "time": "1250427786", - "type": 36 - }, - { - "phase": 2, - "source": { - "id": 130, - "type": 5 - }, - "time": "1250427786", - "type": 36 - }, - { - "params": { - "source_address": "127.0.0.1:50985" - }, - "phase": 2, - "source": { - "id": 130, - "type": 5 - }, - "time": "1250427786", - "type": 35 - }, - { - "params": { - "source_dependency": { - "id": 130, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 126, - "type": 4 - }, - "time": "1250427786", - "type": 79 - }, - { - "phase": 2, - "source": { - "id": 126, - "type": 4 - }, - "time": "1250427786", - "type": 78 - }, - { - "phase": 2, - "source": { - "id": 126, - "type": 4 - }, - "time": "1250427786", - "type": 77 - }, - { - "params": { - "source_dependency": { - "id": 126, - "type": 4 - } - }, - "phase": 0, - "source": { - "id": 122, - "type": 12 - }, - "time": "1250427786", - "type": 88 - }, - { - "params": { - "source_dependency": { - "id": 130, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 122, - "type": 12 - }, - "time": "1250427786", - "type": 89 - }, - { - "phase": 2, - "source": { - "id": 122, - "type": 12 - }, - "time": "1250427786", - "type": 81 - }, - { - "params": { - "source_dependency": { - "id": 122, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 130, - "type": 5 - }, - "time": "1250427786", - "type": 38 - }, - { - "params": { - "source_dependency": { - "id": 122, - "type": 12 - } - }, - "phase": 0, - "source": { - "id": 121, - "type": 1 - }, - "time": "1250427786", - "type": 122 - }, - { - "params": { - "source_dependency": { - "id": 121, - "type": 1 - } - }, - "phase": 0, - "source": { - "id": 122, - "type": 12 - }, - "time": "1250427786", - "type": 123 - }, - { - "phase": 2, - "source": { - "id": 121, - "type": 1 - }, - "time": "1250427786", - "type": 120 - }, - { - "phase": 2, - "source": { - "id": 122, - "type": 12 - }, - "time": "1250427786", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 121, - "type": 1 - }, - "time": "1250427786", - "type": 129 - }, - { - "params": { - "headers": [ - "Host: 127.0.0.1:8888", - "Connection: keep-alive", - "Content-Length: 0", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", - "Origin: chrome-extension://ejfgipfkkpdadoidbhfedneaabgolbno", - "Accept: */*", - "Accept-Encoding: gzip,deflate", - "Accept-Language: en-US,en;q=0.8" - ], - "line": "POST /event/load?timestamp=81.99999993667006&fixedViewport=1 HTTP/1.1\r\n" - }, - "phase": 0, - "source": { - "id": 121, - "type": 1 - }, - "time": "1250427786", - "type": 130 - }, - { - "params": { - "byte_count": 392 - }, - "phase": 0, - "source": { - "id": 130, - "type": 5 - }, - "time": "1250427786", - "type": 61 - }, - { - "phase": 2, - "source": { - "id": 121, - "type": 1 - }, - "time": "1250427786", - "type": 129 - }, - { - "phase": 1, - "source": { - "id": 121, - "type": 1 - }, - "time": "1250427786", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 121, - "type": 1 - }, - "time": "1250427786", - "type": 215 - }, - { - "params": { - "byte_count": 161 - }, - "phase": 0, - "source": { - "id": 130, - "type": 5 - }, - "time": "1250427786", - "type": 63 - }, - { - "phase": 2, - "source": { - "id": 121, - "type": 1 - }, - "time": "1250427786", - "type": 215 - }, - { - "params": { - "headers": [ - "HTTP/1.1 200 OK", - "Server: wptdriver", - "Cache: no-cache", - "Pragma: no-cache", - "Content-Type: application/json", - "Content-Length: 36" - ] - }, - "phase": 0, - "source": { - "id": 121, - "type": 1 - }, - "time": "1250427786", - "type": 135 - }, - { - "phase": 2, - "source": { - "id": 121, - "type": 1 - }, - "time": "1250427786", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 121, - "type": 1 - }, - "time": "1250427786", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 121, - "type": 1 - }, - "time": "1250427786", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 121, - "type": 1 - }, - "time": "1250427786", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 121, - "type": 1 - }, - "time": "1250427786", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 121, - "type": 1 - }, - "time": "1250427787", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 121, - "type": 1 - }, - "time": "1250427787", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 121, - "type": 1 - }, - "time": "1250427787", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 121, - "type": 1 - }, - "time": "1250427787", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 130, - "type": 5 - }, - "time": "1250427787", - "type": 38 - }, - { - "phase": 0, - "source": { - "id": 130, - "type": 5 - }, - "time": "1250427787", - "type": 67 - }, - { - "phase": 2, - "source": { - "id": 130, - "type": 5 - }, - "time": "1250427787", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 121, - "type": 1 - }, - "time": "1250427787", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 121, - "type": 1 - }, - "time": "1250427787", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428844", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428844", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428844", - "type": 93 - }, - { - "params": { - "load_flags": 131328, - "method": "GET", - "priority": "LOW", - "url": "http://127.0.0.1:8888/task" - }, - "phase": 1, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428844", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428844", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428844", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428844", - "type": 99 - }, - { - "phase": 2, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428844", - "type": 99 - }, - { - "phase": 1, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428844", - "type": 100 - }, - { - "params": { - "net_error": -2 - }, - "phase": 2, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428844", - "type": 100 - }, - { - "phase": 1, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428844", - "type": 101 - }, - { - "params": { - "created": true, - "key": "http://127.0.0.1:8888/task" - }, - "phase": 1, - "source": { - "id": 133, - "type": 10 - }, - "time": "1250428845", - "type": 108 - }, - { - "phase": 2, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428845", - "type": 101 - }, - { - "phase": 1, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428845", - "type": 102 - }, - { - "phase": 2, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428845", - "type": 102 - }, - { - "phase": 1, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428845", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428845", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428845", - "type": 120 - }, - { - "params": { - "original_url": "http://127.0.0.1:8888/", - "priority": "LOW", - "url": "http://127.0.0.1:8888/" - }, - "phase": 1, - "source": { - "id": 134, - "type": 12 - }, - "time": "1250428845", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 134, - "type": 12 - }, - "time": "1250428845", - "type": 24 - }, - { - "params": { - "pac_string": "DIRECT" - }, - "phase": 0, - "source": { - "id": 134, - "type": 12 - }, - "time": "1250428845", - "type": 26 - }, - { - "phase": 2, - "source": { - "id": 134, - "type": 12 - }, - "time": "1250428845", - "type": 24 - }, - { - "params": { - "source_dependency": { - "id": 135, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 134, - "type": 12 - }, - "time": "1250428845", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 134, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 135, - "type": 8 - }, - "time": "1250428845", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 135, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 136, - "type": 20 - }, - "time": "1250428845", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 136, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 137, - "type": 14 - }, - "time": "1250428845", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 137, - "type": 14 - }, - "time": "1250428845", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 137, - "type": 14 - }, - "time": "1250428845", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:50980" - }, - "phase": 0, - "source": { - "id": 137, - "type": 14 - }, - "time": "1250428845", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 137, - "type": 14 - }, - "time": "1250428845", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 136, - "type": 20 - }, - "time": "1250428846", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 135, - "type": 8 - }, - "time": "1250428846", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 135, - "type": 8 - }, - "time": "1250428846", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 134, - "type": 12 - }, - "time": "1250428846", - "type": 3 - }, - { - "params": { - "host_and_port": "127.0.0.1:8888" - }, - "phase": 0, - "source": { - "id": 134, - "type": 12 - }, - "time": "1250428846", - "type": 85 - }, - { - "phase": 1, - "source": { - "id": 134, - "type": 12 - }, - "time": "1250428846", - "type": 81 - }, - { - "params": { - "group_name": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 138, - "type": 4 - }, - "time": "1250428846", - "type": 77 - }, - { - "phase": 1, - "source": { - "id": 138, - "type": 4 - }, - "time": "1250428846", - "type": 78 - }, - { - "params": { - "source_dependency": { - "id": 139, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 138, - "type": 4 - }, - "time": "1250428846", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 138, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 139, - "type": 8 - }, - "time": "1250428846", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 139, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 140, - "type": 20 - }, - "time": "1250428846", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 140, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 141, - "type": 14 - }, - "time": "1250428846", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 141, - "type": 14 - }, - "time": "1250428846", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 141, - "type": 14 - }, - "time": "1250428846", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:50981" - }, - "phase": 0, - "source": { - "id": 141, - "type": 14 - }, - "time": "1250428846", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 141, - "type": 14 - }, - "time": "1250428846", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 140, - "type": 20 - }, - "time": "1250428846", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 139, - "type": 8 - }, - "time": "1250428846", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 139, - "type": 8 - }, - "time": "1250428846", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 138, - "type": 4 - }, - "time": "1250428846", - "type": 3 - }, - { - "params": { - "source_dependency": { - "id": 138, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 142, - "type": 5 - }, - "time": "1250428846", - "type": 34 - }, - { - "params": { - "address_list": [ - "127.0.0.1:8888" - ] - }, - "phase": 1, - "source": { - "id": 142, - "type": 5 - }, - "time": "1250428846", - "type": 35 - }, - { - "params": { - "address": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 142, - "type": 5 - }, - "time": "1250428846", - "type": 36 - }, - { - "phase": 2, - "source": { - "id": 142, - "type": 5 - }, - "time": "1250428846", - "type": 36 - }, - { - "params": { - "source_address": "127.0.0.1:50986" - }, - "phase": 2, - "source": { - "id": 142, - "type": 5 - }, - "time": "1250428846", - "type": 35 - }, - { - "params": { - "source_dependency": { - "id": 142, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 138, - "type": 4 - }, - "time": "1250428846", - "type": 79 - }, - { - "phase": 2, - "source": { - "id": 138, - "type": 4 - }, - "time": "1250428846", - "type": 78 - }, - { - "phase": 2, - "source": { - "id": 138, - "type": 4 - }, - "time": "1250428846", - "type": 77 - }, - { - "params": { - "source_dependency": { - "id": 138, - "type": 4 - } - }, - "phase": 0, - "source": { - "id": 134, - "type": 12 - }, - "time": "1250428846", - "type": 88 - }, - { - "params": { - "source_dependency": { - "id": 142, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 134, - "type": 12 - }, - "time": "1250428846", - "type": 89 - }, - { - "phase": 2, - "source": { - "id": 134, - "type": 12 - }, - "time": "1250428846", - "type": 81 - }, - { - "params": { - "source_dependency": { - "id": 134, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 142, - "type": 5 - }, - "time": "1250428846", - "type": 38 - }, - { - "params": { - "source_dependency": { - "id": 134, - "type": 12 - } - }, - "phase": 0, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428846", - "type": 122 - }, - { - "params": { - "source_dependency": { - "id": 131, - "type": 1 - } - }, - "phase": 0, - "source": { - "id": 134, - "type": 12 - }, - "time": "1250428846", - "type": 123 - }, - { - "phase": 2, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428846", - "type": 120 - }, - { - "phase": 2, - "source": { - "id": 134, - "type": 12 - }, - "time": "1250428846", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428846", - "type": 129 - }, - { - "params": { - "headers": [ - "Host: 127.0.0.1:8888", - "Connection: keep-alive", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", - "Accept: */*", - "Accept-Encoding: gzip,deflate,sdch", - "Accept-Language: en-US,en;q=0.8" - ], - "line": "GET /task HTTP/1.1\r\n" - }, - "phase": 0, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428846", - "type": 130 - }, - { - "params": { - "byte_count": 266 - }, - "phase": 0, - "source": { - "id": 142, - "type": 5 - }, - "time": "1250428846", - "type": 61 - }, - { - "phase": 2, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428846", - "type": 129 - }, - { - "phase": 1, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428846", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428846", - "type": 215 - }, - { - "params": { - "byte_count": 161 - }, - "phase": 0, - "source": { - "id": 142, - "type": 5 - }, - "time": "1250428847", - "type": 63 - }, - { - "phase": 2, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428847", - "type": 215 - }, - { - "params": { - "headers": [ - "HTTP/1.1 200 OK", - "Server: wptdriver", - "Cache: no-cache", - "Pragma: no-cache", - "Content-Type: application/json", - "Content-Length: 36" - ] - }, - "phase": 0, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428847", - "type": 135 - }, - { - "phase": 2, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428847", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428847", - "type": 105 - }, - { - "params": { - "buf_len": 172, - "index": 0, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 133, - "type": 10 - }, - "time": "1250428847", - "type": 111 - }, - { - "params": { - "bytes_copied": 172 - }, - "phase": 2, - "source": { - "id": 133, - "type": 10 - }, - "time": "1250428847", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428847", - "type": 105 - }, - { - "phase": 1, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428847", - "type": 107 - }, - { - "params": { - "buf_len": 0, - "index": 1, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 133, - "type": 10 - }, - "time": "1250428847", - "type": 111 - }, - { - "params": { - "bytes_copied": 0 - }, - "phase": 2, - "source": { - "id": 133, - "type": 10 - }, - "time": "1250428847", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428847", - "type": 107 - }, - { - "phase": 1, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428847", - "type": 105 - }, - { - "params": { - "buf_len": 0, - "index": 2, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 133, - "type": 10 - }, - "time": "1250428847", - "type": 111 - }, - { - "params": { - "bytes_copied": 0 - }, - "phase": 2, - "source": { - "id": 133, - "type": 10 - }, - "time": "1250428847", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428847", - "type": 105 - }, - { - "phase": 1, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428847", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428847", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428847", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428847", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428847", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428847", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428847", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428847", - "type": 107 - }, - { - "params": { - "buf_len": 36, - "index": 1, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 133, - "type": 10 - }, - "time": "1250428847", - "type": 111 - }, - { - "params": { - "bytes_copied": 36 - }, - "phase": 2, - "source": { - "id": 133, - "type": 10 - }, - "time": "1250428847", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428847", - "type": 107 - }, - { - "phase": 1, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428847", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 142, - "type": 5 - }, - "time": "1250428847", - "type": 38 - }, - { - "phase": 0, - "source": { - "id": 142, - "type": 5 - }, - "time": "1250428847", - "type": 67 - }, - { - "phase": 2, - "source": { - "id": 142, - "type": 5 - }, - "time": "1250428847", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428847", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428847", - "type": 107 - }, - { - "phase": 2, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428847", - "type": 107 - }, - { - "phase": 2, - "source": { - "id": 131, - "type": 1 - }, - "time": "1250428847", - "type": 2 - }, - { - "phase": 0, - "source": { - "id": 133, - "type": 10 - }, - "time": "1250428848", - "type": 118 - }, - { - "phase": 2, - "source": { - "id": 133, - "type": 10 - }, - "time": "1250428851", - "type": 108 - }, - { - "phase": 1, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429838", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429839", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429839", - "type": 93 - }, - { - "params": { - "load_flags": 131328, - "method": "GET", - "priority": "LOW", - "url": "http://127.0.0.1:8888/task" - }, - "phase": 1, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429839", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429839", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429839", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429839", - "type": 99 - }, - { - "phase": 2, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429839", - "type": 99 - }, - { - "phase": 1, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429839", - "type": 100 - }, - { - "params": { - "created": false, - "key": "http://127.0.0.1:8888/task" - }, - "phase": 1, - "source": { - "id": 144, - "type": 10 - }, - "time": "1250429839", - "type": 108 - }, - { - "phase": 2, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429839", - "type": 100 - }, - { - "phase": 1, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429839", - "type": 102 - }, - { - "phase": 2, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429839", - "type": 102 - }, - { - "phase": 1, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429839", - "type": 104 - }, - { - "params": { - "buf_len": 172, - "index": 0, - "offset": 0 - }, - "phase": 1, - "source": { - "id": 144, - "type": 10 - }, - "time": "1250429839", - "type": 110 - }, - { - "params": { - "bytes_copied": 172 - }, - "phase": 2, - "source": { - "id": 144, - "type": 10 - }, - "time": "1250429839", - "type": 110 - }, - { - "phase": 2, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429839", - "type": 104 - }, - { - "phase": 1, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429839", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429839", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429839", - "type": 120 - }, - { - "params": { - "original_url": "http://127.0.0.1:8888/", - "priority": "LOW", - "url": "http://127.0.0.1:8888/" - }, - "phase": 1, - "source": { - "id": 145, - "type": 12 - }, - "time": "1250429839", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 145, - "type": 12 - }, - "time": "1250429840", - "type": 24 - }, - { - "params": { - "pac_string": "DIRECT" - }, - "phase": 0, - "source": { - "id": 145, - "type": 12 - }, - "time": "1250429840", - "type": 26 - }, - { - "phase": 2, - "source": { - "id": 145, - "type": 12 - }, - "time": "1250429840", - "type": 24 - }, - { - "params": { - "source_dependency": { - "id": 146, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 145, - "type": 12 - }, - "time": "1250429840", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 145, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 146, - "type": 8 - }, - "time": "1250429840", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 146, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 147, - "type": 20 - }, - "time": "1250429840", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 147, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 148, - "type": 14 - }, - "time": "1250429840", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 148, - "type": 14 - }, - "time": "1250429840", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 148, - "type": 14 - }, - "time": "1250429840", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:50982" - }, - "phase": 0, - "source": { - "id": 148, - "type": 14 - }, - "time": "1250429840", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 148, - "type": 14 - }, - "time": "1250429840", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 147, - "type": 20 - }, - "time": "1250429840", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 146, - "type": 8 - }, - "time": "1250429840", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 146, - "type": 8 - }, - "time": "1250429840", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 145, - "type": 12 - }, - "time": "1250429840", - "type": 3 - }, - { - "params": { - "host_and_port": "127.0.0.1:8888" - }, - "phase": 0, - "source": { - "id": 145, - "type": 12 - }, - "time": "1250429840", - "type": 85 - }, - { - "phase": 1, - "source": { - "id": 145, - "type": 12 - }, - "time": "1250429840", - "type": 81 - }, - { - "params": { - "group_name": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 149, - "type": 4 - }, - "time": "1250429840", - "type": 77 - }, - { - "phase": 1, - "source": { - "id": 149, - "type": 4 - }, - "time": "1250429840", - "type": 78 - }, - { - "params": { - "source_dependency": { - "id": 150, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 149, - "type": 4 - }, - "time": "1250429840", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 149, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 150, - "type": 8 - }, - "time": "1250429840", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 150, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 151, - "type": 20 - }, - "time": "1250429840", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 151, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 152, - "type": 14 - }, - "time": "1250429840", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 152, - "type": 14 - }, - "time": "1250429840", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 152, - "type": 14 - }, - "time": "1250429840", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:50983" - }, - "phase": 0, - "source": { - "id": 152, - "type": 14 - }, - "time": "1250429840", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 152, - "type": 14 - }, - "time": "1250429840", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 151, - "type": 20 - }, - "time": "1250429840", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 150, - "type": 8 - }, - "time": "1250429840", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 150, - "type": 8 - }, - "time": "1250429840", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 149, - "type": 4 - }, - "time": "1250429840", - "type": 3 - }, - { - "params": { - "source_dependency": { - "id": 149, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 153, - "type": 5 - }, - "time": "1250429840", - "type": 34 - }, - { - "params": { - "address_list": [ - "127.0.0.1:8888" - ] - }, - "phase": 1, - "source": { - "id": 153, - "type": 5 - }, - "time": "1250429840", - "type": 35 - }, - { - "params": { - "address": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 153, - "type": 5 - }, - "time": "1250429840", - "type": 36 - }, - { - "phase": 2, - "source": { - "id": 153, - "type": 5 - }, - "time": "1250429840", - "type": 36 - }, - { - "params": { - "source_address": "127.0.0.1:50987" - }, - "phase": 2, - "source": { - "id": 153, - "type": 5 - }, - "time": "1250429841", - "type": 35 - }, - { - "params": { - "source_dependency": { - "id": 153, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 149, - "type": 4 - }, - "time": "1250429841", - "type": 79 - }, - { - "phase": 2, - "source": { - "id": 149, - "type": 4 - }, - "time": "1250429841", - "type": 78 - }, - { - "phase": 2, - "source": { - "id": 149, - "type": 4 - }, - "time": "1250429841", - "type": 77 - }, - { - "params": { - "source_dependency": { - "id": 149, - "type": 4 - } - }, - "phase": 0, - "source": { - "id": 145, - "type": 12 - }, - "time": "1250429841", - "type": 88 - }, - { - "params": { - "source_dependency": { - "id": 153, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 145, - "type": 12 - }, - "time": "1250429841", - "type": 89 - }, - { - "phase": 2, - "source": { - "id": 145, - "type": 12 - }, - "time": "1250429841", - "type": 81 - }, - { - "params": { - "source_dependency": { - "id": 145, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 153, - "type": 5 - }, - "time": "1250429841", - "type": 38 - }, - { - "params": { - "source_dependency": { - "id": 145, - "type": 12 - } - }, - "phase": 0, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429841", - "type": 122 - }, - { - "params": { - "source_dependency": { - "id": 143, - "type": 1 - } - }, - "phase": 0, - "source": { - "id": 145, - "type": 12 - }, - "time": "1250429841", - "type": 123 - }, - { - "phase": 2, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429841", - "type": 120 - }, - { - "phase": 2, - "source": { - "id": 145, - "type": 12 - }, - "time": "1250429841", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429841", - "type": 129 - }, - { - "params": { - "headers": [ - "Host: 127.0.0.1:8888", - "Connection: keep-alive", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", - "Accept: */*", - "Accept-Encoding: gzip,deflate,sdch", - "Accept-Language: en-US,en;q=0.8" - ], - "line": "GET /task HTTP/1.1\r\n" - }, - "phase": 0, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429841", - "type": 130 - }, - { - "params": { - "byte_count": 266 - }, - "phase": 0, - "source": { - "id": 153, - "type": 5 - }, - "time": "1250429841", - "type": 61 - }, - { - "phase": 2, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429841", - "type": 129 - }, - { - "phase": 1, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429841", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429841", - "type": 215 - }, - { - "params": { - "byte_count": 161 - }, - "phase": 0, - "source": { - "id": 153, - "type": 5 - }, - "time": "1250429841", - "type": 63 - }, - { - "phase": 2, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429841", - "type": 215 - }, - { - "params": { - "headers": [ - "HTTP/1.1 200 OK", - "Server: wptdriver", - "Cache: no-cache", - "Pragma: no-cache", - "Content-Type: application/json", - "Content-Length: 36" - ] - }, - "phase": 0, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429841", - "type": 135 - }, - { - "phase": 2, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429841", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429841", - "type": 105 - }, - { - "params": { - "buf_len": 172, - "index": 0, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 144, - "type": 10 - }, - "time": "1250429841", - "type": 111 - }, - { - "params": { - "bytes_copied": 172 - }, - "phase": 2, - "source": { - "id": 144, - "type": 10 - }, - "time": "1250429841", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429841", - "type": 105 - }, - { - "phase": 1, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429841", - "type": 107 - }, - { - "params": { - "buf_len": 0, - "index": 1, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 144, - "type": 10 - }, - "time": "1250429841", - "type": 111 - }, - { - "params": { - "bytes_copied": 0 - }, - "phase": 2, - "source": { - "id": 144, - "type": 10 - }, - "time": "1250429841", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429841", - "type": 107 - }, - { - "phase": 1, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429841", - "type": 105 - }, - { - "params": { - "buf_len": 0, - "index": 2, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 144, - "type": 10 - }, - "time": "1250429841", - "type": 111 - }, - { - "params": { - "bytes_copied": 0 - }, - "phase": 2, - "source": { - "id": 144, - "type": 10 - }, - "time": "1250429841", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429841", - "type": 105 - }, - { - "phase": 1, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429841", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429841", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429841", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429841", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429842", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429842", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429842", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429842", - "type": 107 - }, - { - "params": { - "buf_len": 36, - "index": 1, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 144, - "type": 10 - }, - "time": "1250429842", - "type": 111 - }, - { - "params": { - "bytes_copied": 36 - }, - "phase": 2, - "source": { - "id": 144, - "type": 10 - }, - "time": "1250429842", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429842", - "type": 107 - }, - { - "phase": 1, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429842", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 153, - "type": 5 - }, - "time": "1250429842", - "type": 38 - }, - { - "phase": 0, - "source": { - "id": 153, - "type": 5 - }, - "time": "1250429842", - "type": 67 - }, - { - "phase": 2, - "source": { - "id": 153, - "type": 5 - }, - "time": "1250429842", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429842", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429842", - "type": 107 - }, - { - "phase": 2, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429842", - "type": 107 - }, - { - "phase": 2, - "source": { - "id": 143, - "type": 1 - }, - "time": "1250429842", - "type": 2 - }, - { - "phase": 0, - "source": { - "id": 144, - "type": 10 - }, - "time": "1250429842", - "type": 118 - }, - { - "phase": 2, - "source": { - "id": 144, - "type": 10 - }, - "time": "1250429842", - "type": 108 - }, - { - "phase": 1, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430839", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430839", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430839", - "type": 93 - }, - { - "params": { - "load_flags": 131328, - "method": "GET", - "priority": "LOW", - "url": "http://127.0.0.1:8888/task" - }, - "phase": 1, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430840", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430840", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430840", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430840", - "type": 99 - }, - { - "phase": 2, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430840", - "type": 99 - }, - { - "phase": 1, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430840", - "type": 100 - }, - { - "params": { - "created": false, - "key": "http://127.0.0.1:8888/task" - }, - "phase": 1, - "source": { - "id": 155, - "type": 10 - }, - "time": "1250430840", - "type": 108 - }, - { - "phase": 2, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430840", - "type": 100 - }, - { - "phase": 1, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430840", - "type": 102 - }, - { - "phase": 2, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430840", - "type": 102 - }, - { - "phase": 1, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430840", - "type": 104 - }, - { - "params": { - "buf_len": 172, - "index": 0, - "offset": 0 - }, - "phase": 1, - "source": { - "id": 155, - "type": 10 - }, - "time": "1250430840", - "type": 110 - }, - { - "params": { - "bytes_copied": 172 - }, - "phase": 2, - "source": { - "id": 155, - "type": 10 - }, - "time": "1250430840", - "type": 110 - }, - { - "phase": 2, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430840", - "type": 104 - }, - { - "phase": 1, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430841", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430841", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430841", - "type": 120 - }, - { - "params": { - "original_url": "http://127.0.0.1:8888/", - "priority": "LOW", - "url": "http://127.0.0.1:8888/" - }, - "phase": 1, - "source": { - "id": 156, - "type": 12 - }, - "time": "1250430841", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 156, - "type": 12 - }, - "time": "1250430841", - "type": 24 - }, - { - "params": { - "pac_string": "DIRECT" - }, - "phase": 0, - "source": { - "id": 156, - "type": 12 - }, - "time": "1250430841", - "type": 26 - }, - { - "phase": 2, - "source": { - "id": 156, - "type": 12 - }, - "time": "1250430841", - "type": 24 - }, - { - "params": { - "source_dependency": { - "id": 157, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 156, - "type": 12 - }, - "time": "1250430841", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 156, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 157, - "type": 8 - }, - "time": "1250430841", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 157, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 158, - "type": 20 - }, - "time": "1250430841", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 158, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 159, - "type": 14 - }, - "time": "1250430841", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 159, - "type": 14 - }, - "time": "1250430841", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 159, - "type": 14 - }, - "time": "1250430841", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:50984" - }, - "phase": 0, - "source": { - "id": 159, - "type": 14 - }, - "time": "1250430841", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 159, - "type": 14 - }, - "time": "1250430841", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 158, - "type": 20 - }, - "time": "1250430841", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 157, - "type": 8 - }, - "time": "1250430841", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 157, - "type": 8 - }, - "time": "1250430841", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 156, - "type": 12 - }, - "time": "1250430841", - "type": 3 - }, - { - "params": { - "host_and_port": "127.0.0.1:8888" - }, - "phase": 0, - "source": { - "id": 156, - "type": 12 - }, - "time": "1250430841", - "type": 85 - }, - { - "phase": 1, - "source": { - "id": 156, - "type": 12 - }, - "time": "1250430841", - "type": 81 - }, - { - "params": { - "group_name": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 160, - "type": 4 - }, - "time": "1250430841", - "type": 77 - }, - { - "phase": 1, - "source": { - "id": 160, - "type": 4 - }, - "time": "1250430841", - "type": 78 - }, - { - "params": { - "source_dependency": { - "id": 161, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 160, - "type": 4 - }, - "time": "1250430841", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 160, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 161, - "type": 8 - }, - "time": "1250430841", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 161, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 162, - "type": 20 - }, - "time": "1250430841", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 162, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 163, - "type": 14 - }, - "time": "1250430841", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 163, - "type": 14 - }, - "time": "1250430841", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 163, - "type": 14 - }, - "time": "1250430841", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:50985" - }, - "phase": 0, - "source": { - "id": 163, - "type": 14 - }, - "time": "1250430841", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 163, - "type": 14 - }, - "time": "1250430841", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 162, - "type": 20 - }, - "time": "1250430841", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 161, - "type": 8 - }, - "time": "1250430841", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 161, - "type": 8 - }, - "time": "1250430841", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 160, - "type": 4 - }, - "time": "1250430841", - "type": 3 - }, - { - "params": { - "source_dependency": { - "id": 160, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 164, - "type": 5 - }, - "time": "1250430842", - "type": 34 - }, - { - "params": { - "address_list": [ - "127.0.0.1:8888" - ] - }, - "phase": 1, - "source": { - "id": 164, - "type": 5 - }, - "time": "1250430842", - "type": 35 - }, - { - "params": { - "address": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 164, - "type": 5 - }, - "time": "1250430842", - "type": 36 - }, - { - "phase": 2, - "source": { - "id": 164, - "type": 5 - }, - "time": "1250430842", - "type": 36 - }, - { - "params": { - "source_address": "127.0.0.1:50988" - }, - "phase": 2, - "source": { - "id": 164, - "type": 5 - }, - "time": "1250430842", - "type": 35 - }, - { - "params": { - "source_dependency": { - "id": 164, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 160, - "type": 4 - }, - "time": "1250430842", - "type": 79 - }, - { - "phase": 2, - "source": { - "id": 160, - "type": 4 - }, - "time": "1250430842", - "type": 78 - }, - { - "phase": 2, - "source": { - "id": 160, - "type": 4 - }, - "time": "1250430842", - "type": 77 - }, - { - "params": { - "source_dependency": { - "id": 160, - "type": 4 - } - }, - "phase": 0, - "source": { - "id": 156, - "type": 12 - }, - "time": "1250430842", - "type": 88 - }, - { - "params": { - "source_dependency": { - "id": 164, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 156, - "type": 12 - }, - "time": "1250430842", - "type": 89 - }, - { - "phase": 2, - "source": { - "id": 156, - "type": 12 - }, - "time": "1250430842", - "type": 81 - }, - { - "params": { - "source_dependency": { - "id": 156, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 164, - "type": 5 - }, - "time": "1250430842", - "type": 38 - }, - { - "params": { - "source_dependency": { - "id": 156, - "type": 12 - } - }, - "phase": 0, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430842", - "type": 122 - }, - { - "params": { - "source_dependency": { - "id": 154, - "type": 1 - } - }, - "phase": 0, - "source": { - "id": 156, - "type": 12 - }, - "time": "1250430842", - "type": 123 - }, - { - "phase": 2, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430842", - "type": 120 - }, - { - "phase": 2, - "source": { - "id": 156, - "type": 12 - }, - "time": "1250430842", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430842", - "type": 129 - }, - { - "params": { - "headers": [ - "Host: 127.0.0.1:8888", - "Connection: keep-alive", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", - "Accept: */*", - "Accept-Encoding: gzip,deflate,sdch", - "Accept-Language: en-US,en;q=0.8" - ], - "line": "GET /task HTTP/1.1\r\n" - }, - "phase": 0, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430842", - "type": 130 - }, - { - "params": { - "byte_count": 266 - }, - "phase": 0, - "source": { - "id": 164, - "type": 5 - }, - "time": "1250430843", - "type": 61 - }, - { - "phase": 2, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430843", - "type": 129 - }, - { - "phase": 1, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430843", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430843", - "type": 215 - }, - { - "params": { - "byte_count": 161 - }, - "phase": 0, - "source": { - "id": 164, - "type": 5 - }, - "time": "1250430843", - "type": 63 - }, - { - "phase": 2, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430843", - "type": 215 - }, - { - "params": { - "headers": [ - "HTTP/1.1 200 OK", - "Server: wptdriver", - "Cache: no-cache", - "Pragma: no-cache", - "Content-Type: application/json", - "Content-Length: 36" - ] - }, - "phase": 0, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430843", - "type": 135 - }, - { - "phase": 2, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430843", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430843", - "type": 105 - }, - { - "params": { - "buf_len": 172, - "index": 0, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 155, - "type": 10 - }, - "time": "1250430843", - "type": 111 - }, - { - "params": { - "bytes_copied": 172 - }, - "phase": 2, - "source": { - "id": 155, - "type": 10 - }, - "time": "1250430843", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430843", - "type": 105 - }, - { - "phase": 1, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430843", - "type": 107 - }, - { - "params": { - "buf_len": 0, - "index": 1, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 155, - "type": 10 - }, - "time": "1250430843", - "type": 111 - }, - { - "params": { - "bytes_copied": 0 - }, - "phase": 2, - "source": { - "id": 155, - "type": 10 - }, - "time": "1250430843", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430844", - "type": 107 - }, - { - "phase": 1, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430844", - "type": 105 - }, - { - "params": { - "buf_len": 0, - "index": 2, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 155, - "type": 10 - }, - "time": "1250430844", - "type": 111 - }, - { - "params": { - "bytes_copied": 0 - }, - "phase": 2, - "source": { - "id": 155, - "type": 10 - }, - "time": "1250430844", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430844", - "type": 105 - }, - { - "phase": 1, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430844", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430844", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430844", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430844", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430844", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430844", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430844", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430844", - "type": 107 - }, - { - "params": { - "buf_len": 36, - "index": 1, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 155, - "type": 10 - }, - "time": "1250430844", - "type": 111 - }, - { - "params": { - "bytes_copied": 36 - }, - "phase": 2, - "source": { - "id": 155, - "type": 10 - }, - "time": "1250430844", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430844", - "type": 107 - }, - { - "phase": 1, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430844", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 164, - "type": 5 - }, - "time": "1250430844", - "type": 38 - }, - { - "phase": 0, - "source": { - "id": 164, - "type": 5 - }, - "time": "1250430844", - "type": 67 - }, - { - "phase": 2, - "source": { - "id": 164, - "type": 5 - }, - "time": "1250430844", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430844", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430844", - "type": 107 - }, - { - "phase": 2, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430844", - "type": 107 - }, - { - "phase": 2, - "source": { - "id": 154, - "type": 1 - }, - "time": "1250430844", - "type": 2 - }, - { - "phase": 0, - "source": { - "id": 155, - "type": 10 - }, - "time": "1250430844", - "type": 118 - }, - { - "phase": 2, - "source": { - "id": 155, - "type": 10 - }, - "time": "1250430844", - "type": 108 - }, - { - "phase": 1, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431840", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431840", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431840", - "type": 93 - }, - { - "params": { - "load_flags": 131328, - "method": "GET", - "priority": "LOW", - "url": "http://127.0.0.1:8888/task" - }, - "phase": 1, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431840", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431840", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431840", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431840", - "type": 99 - }, - { - "phase": 2, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431840", - "type": 99 - }, - { - "phase": 1, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431840", - "type": 100 - }, - { - "params": { - "created": false, - "key": "http://127.0.0.1:8888/task" - }, - "phase": 1, - "source": { - "id": 166, - "type": 10 - }, - "time": "1250431841", - "type": 108 - }, - { - "phase": 2, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431841", - "type": 100 - }, - { - "phase": 1, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431841", - "type": 102 - }, - { - "phase": 2, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431841", - "type": 102 - }, - { - "phase": 1, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431841", - "type": 104 - }, - { - "params": { - "buf_len": 172, - "index": 0, - "offset": 0 - }, - "phase": 1, - "source": { - "id": 166, - "type": 10 - }, - "time": "1250431841", - "type": 110 - }, - { - "params": { - "bytes_copied": 172 - }, - "phase": 2, - "source": { - "id": 166, - "type": 10 - }, - "time": "1250431841", - "type": 110 - }, - { - "phase": 2, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431841", - "type": 104 - }, - { - "phase": 1, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431841", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431841", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431841", - "type": 120 - }, - { - "params": { - "original_url": "http://127.0.0.1:8888/", - "priority": "LOW", - "url": "http://127.0.0.1:8888/" - }, - "phase": 1, - "source": { - "id": 167, - "type": 12 - }, - "time": "1250431841", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 167, - "type": 12 - }, - "time": "1250431841", - "type": 24 - }, - { - "params": { - "pac_string": "DIRECT" - }, - "phase": 0, - "source": { - "id": 167, - "type": 12 - }, - "time": "1250431841", - "type": 26 - }, - { - "phase": 2, - "source": { - "id": 167, - "type": 12 - }, - "time": "1250431841", - "type": 24 - }, - { - "params": { - "source_dependency": { - "id": 168, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 167, - "type": 12 - }, - "time": "1250431841", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 167, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 168, - "type": 8 - }, - "time": "1250431841", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 168, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 169, - "type": 20 - }, - "time": "1250431841", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 169, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 170, - "type": 14 - }, - "time": "1250431841", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 170, - "type": 14 - }, - "time": "1250431841", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 170, - "type": 14 - }, - "time": "1250431841", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:50986" - }, - "phase": 0, - "source": { - "id": 170, - "type": 14 - }, - "time": "1250431841", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 170, - "type": 14 - }, - "time": "1250431841", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 169, - "type": 20 - }, - "time": "1250431841", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 168, - "type": 8 - }, - "time": "1250431841", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 168, - "type": 8 - }, - "time": "1250431841", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 167, - "type": 12 - }, - "time": "1250431841", - "type": 3 - }, - { - "params": { - "host_and_port": "127.0.0.1:8888" - }, - "phase": 0, - "source": { - "id": 167, - "type": 12 - }, - "time": "1250431841", - "type": 85 - }, - { - "phase": 1, - "source": { - "id": 167, - "type": 12 - }, - "time": "1250431841", - "type": 81 - }, - { - "params": { - "group_name": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 171, - "type": 4 - }, - "time": "1250431841", - "type": 77 - }, - { - "phase": 1, - "source": { - "id": 171, - "type": 4 - }, - "time": "1250431841", - "type": 78 - }, - { - "params": { - "source_dependency": { - "id": 172, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 171, - "type": 4 - }, - "time": "1250431841", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 171, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 172, - "type": 8 - }, - "time": "1250431841", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 172, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 173, - "type": 20 - }, - "time": "1250431842", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 173, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 174, - "type": 14 - }, - "time": "1250431842", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 174, - "type": 14 - }, - "time": "1250431842", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 174, - "type": 14 - }, - "time": "1250431842", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:50987" - }, - "phase": 0, - "source": { - "id": 174, - "type": 14 - }, - "time": "1250431842", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 174, - "type": 14 - }, - "time": "1250431842", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 173, - "type": 20 - }, - "time": "1250431842", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 172, - "type": 8 - }, - "time": "1250431842", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 172, - "type": 8 - }, - "time": "1250431842", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 171, - "type": 4 - }, - "time": "1250431842", - "type": 3 - }, - { - "params": { - "source_dependency": { - "id": 171, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 175, - "type": 5 - }, - "time": "1250431842", - "type": 34 - }, - { - "params": { - "address_list": [ - "127.0.0.1:8888" - ] - }, - "phase": 1, - "source": { - "id": 175, - "type": 5 - }, - "time": "1250431842", - "type": 35 - }, - { - "params": { - "address": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 175, - "type": 5 - }, - "time": "1250431842", - "type": 36 - }, - { - "phase": 2, - "source": { - "id": 175, - "type": 5 - }, - "time": "1250431842", - "type": 36 - }, - { - "params": { - "source_address": "127.0.0.1:50989" - }, - "phase": 2, - "source": { - "id": 175, - "type": 5 - }, - "time": "1250431842", - "type": 35 - }, - { - "params": { - "source_dependency": { - "id": 175, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 171, - "type": 4 - }, - "time": "1250431842", - "type": 79 - }, - { - "phase": 2, - "source": { - "id": 171, - "type": 4 - }, - "time": "1250431842", - "type": 78 - }, - { - "phase": 2, - "source": { - "id": 171, - "type": 4 - }, - "time": "1250431842", - "type": 77 - }, - { - "params": { - "source_dependency": { - "id": 171, - "type": 4 - } - }, - "phase": 0, - "source": { - "id": 167, - "type": 12 - }, - "time": "1250431842", - "type": 88 - }, - { - "params": { - "source_dependency": { - "id": 175, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 167, - "type": 12 - }, - "time": "1250431842", - "type": 89 - }, - { - "phase": 2, - "source": { - "id": 167, - "type": 12 - }, - "time": "1250431842", - "type": 81 - }, - { - "params": { - "source_dependency": { - "id": 167, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 175, - "type": 5 - }, - "time": "1250431842", - "type": 38 - }, - { - "params": { - "source_dependency": { - "id": 167, - "type": 12 - } - }, - "phase": 0, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431843", - "type": 122 - }, - { - "params": { - "source_dependency": { - "id": 165, - "type": 1 - } - }, - "phase": 0, - "source": { - "id": 167, - "type": 12 - }, - "time": "1250431843", - "type": 123 - }, - { - "phase": 2, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431843", - "type": 120 - }, - { - "phase": 2, - "source": { - "id": 167, - "type": 12 - }, - "time": "1250431843", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431843", - "type": 129 - }, - { - "params": { - "headers": [ - "Host: 127.0.0.1:8888", - "Connection: keep-alive", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", - "Accept: */*", - "Accept-Encoding: gzip,deflate,sdch", - "Accept-Language: en-US,en;q=0.8" - ], - "line": "GET /task HTTP/1.1\r\n" - }, - "phase": 0, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431843", - "type": 130 - }, - { - "params": { - "byte_count": 266 - }, - "phase": 0, - "source": { - "id": 175, - "type": 5 - }, - "time": "1250431843", - "type": 61 - }, - { - "phase": 2, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431843", - "type": 129 - }, - { - "phase": 1, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431843", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431843", - "type": 215 - }, - { - "params": { - "byte_count": 241 - }, - "phase": 0, - "source": { - "id": 175, - "type": 5 - }, - "time": "1250431846", - "type": 63 - }, - { - "phase": 2, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431847", - "type": 215 - }, - { - "params": { - "headers": [ - "HTTP/1.1 200 OK", - "Server: wptdriver", - "Cache: no-cache", - "Pragma: no-cache", - "Content-Type: application/json", - "Content-Length: 115" - ] - }, - "phase": 0, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431847", - "type": 135 - }, - { - "phase": 2, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431847", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431847", - "type": 105 - }, - { - "params": { - "buf_len": 172, - "index": 0, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 166, - "type": 10 - }, - "time": "1250431847", - "type": 111 - }, - { - "params": { - "bytes_copied": 172 - }, - "phase": 2, - "source": { - "id": 166, - "type": 10 - }, - "time": "1250431847", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431847", - "type": 105 - }, - { - "phase": 1, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431847", - "type": 107 - }, - { - "params": { - "buf_len": 0, - "index": 1, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 166, - "type": 10 - }, - "time": "1250431847", - "type": 111 - }, - { - "params": { - "bytes_copied": 0 - }, - "phase": 2, - "source": { - "id": 166, - "type": 10 - }, - "time": "1250431847", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431847", - "type": 107 - }, - { - "phase": 1, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431847", - "type": 105 - }, - { - "params": { - "buf_len": 0, - "index": 2, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 166, - "type": 10 - }, - "time": "1250431847", - "type": 111 - }, - { - "params": { - "bytes_copied": 0 - }, - "phase": 2, - "source": { - "id": 166, - "type": 10 - }, - "time": "1250431847", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431847", - "type": 105 - }, - { - "phase": 1, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431847", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431847", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431847", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431847", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431847", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431847", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431847", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431847", - "type": 107 - }, - { - "params": { - "buf_len": 115, - "index": 1, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 166, - "type": 10 - }, - "time": "1250431848", - "type": 111 - }, - { - "params": { - "bytes_copied": 115 - }, - "phase": 2, - "source": { - "id": 166, - "type": 10 - }, - "time": "1250431848", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431848", - "type": 107 - }, - { - "phase": 1, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431848", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 175, - "type": 5 - }, - "time": "1250431848", - "type": 38 - }, - { - "phase": 0, - "source": { - "id": 175, - "type": 5 - }, - "time": "1250431848", - "type": 67 - }, - { - "phase": 2, - "source": { - "id": 175, - "type": 5 - }, - "time": "1250431848", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431848", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431848", - "type": 107 - }, - { - "phase": 2, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431848", - "type": 107 - }, - { - "phase": 2, - "source": { - "id": 165, - "type": 1 - }, - "time": "1250431848", - "type": 2 - }, - { - "phase": 0, - "source": { - "id": 166, - "type": 10 - }, - "time": "1250431848", - "type": 118 - }, - { - "phase": 2, - "source": { - "id": 166, - "type": 10 - }, - "time": "1250431848", - "type": 108 - }, - { - "params": { - "original_url": "http://marcelduran.com/", - "priority": "HIGHEST", - "url": "http://marcelduran.com/" - }, - "phase": 1, - "source": { - "id": 176, - "type": 12 - }, - "time": "1250431857", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 176, - "type": 12 - }, - "time": "1250431857", - "type": 24 - }, - { - "params": { - "pac_string": "DIRECT" - }, - "phase": 0, - "source": { - "id": 176, - "type": 12 - }, - "time": "1250431857", - "type": 26 - }, - { - "phase": 2, - "source": { - "id": 176, - "type": 12 - }, - "time": "1250431857", - "type": 24 - }, - { - "params": { - "source_dependency": { - "id": 177, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 176, - "type": 12 - }, - "time": "1250431857", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "marcelduran.com:80", - "is_speculative": false, - "source_dependency": { - "id": 176, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 177, - "type": 8 - }, - "time": "1250431857", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 177, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 178, - "type": 20 - }, - "time": "1250431857", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 178, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 179, - "type": 14 - }, - "time": "1250431857", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 179, - "type": 14 - }, - "time": "1250431857", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 179, - "type": 14 - }, - "time": "1250431857", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:50988" - }, - "phase": 0, - "source": { - "id": 179, - "type": 14 - }, - "time": "1250431857", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 179, - "type": 14 - }, - "time": "1250431857", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 178, - "type": 20 - }, - "time": "1250431857", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 177, - "type": 8 - }, - "time": "1250431857", - "type": 5 - }, - { - "params": { - "net_error": -804 - }, - "phase": 2, - "source": { - "id": 177, - "type": 8 - }, - "time": "1250431857", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 176, - "type": 12 - }, - "time": "1250431857", - "type": 3 - }, - { - "params": { - "host_and_port": "marcelduran.com:80" - }, - "phase": 0, - "source": { - "id": 176, - "type": 12 - }, - "time": "1250431857", - "type": 86 - }, - { - "params": { - "num_sockets": 1 - }, - "phase": 1, - "source": { - "id": 176, - "type": 12 - }, - "time": "1250431857", - "type": 90 - }, - { - "params": { - "group_name": "marcelduran.com:80" - }, - "phase": 1, - "source": { - "id": 180, - "type": 4 - }, - "time": "1250431857", - "type": 77 - }, - { - "phase": 1, - "source": { - "id": 180, - "type": 4 - }, - "time": "1250431857", - "type": 78 - }, - { - "params": { - "source_dependency": { - "id": 181, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 180, - "type": 4 - }, - "time": "1250431857", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "marcelduran.com:80", - "is_speculative": false, - "source_dependency": { - "id": 180, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 181, - "type": 8 - }, - "time": "1250431857", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 181, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 182, - "type": 20 - }, - "time": "1250431858", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 182, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 183, - "type": 14 - }, - "time": "1250431858", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 183, - "type": 14 - }, - "time": "1250431858", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 183, - "type": 14 - }, - "time": "1250431858", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:50989" - }, - "phase": 0, - "source": { - "id": 183, - "type": 14 - }, - "time": "1250431858", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 183, - "type": 14 - }, - "time": "1250431858", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 182, - "type": 20 - }, - "time": "1250431858", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 181, - "type": 8 - }, - "time": "1250431858", - "type": 5 - }, - { - "phase": 0, - "source": { - "id": 181, - "type": 8 - }, - "time": "1250431858", - "type": 8 - }, - { - "params": { - "host": "marcelduran.com", - "source_dependency": { - "id": 181, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 184, - "type": 9 - }, - "time": "1250431858", - "type": 9 - }, - { - "phase": 0, - "source": { - "id": 184, - "type": 9 - }, - "time": "1250431858", - "type": 11 - }, - { - "phase": 1, - "source": { - "id": 184, - "type": 9 - }, - "time": "1250431858", - "type": 17 - }, - { - "params": { - "attempt_number": 1 - }, - "phase": 0, - "source": { - "id": 184, - "type": 9 - }, - "time": "1250431858", - "type": 12 - }, - { - "params": { - "source_dependency": { - "id": 184, - "type": 9 - } - }, - "phase": 0, - "source": { - "id": 181, - "type": 8 - }, - "time": "1250431858", - "type": 14 - }, - { - "params": { - "priority": "LOWEST", - "source_dependency": { - "id": 181, - "type": 8 - } - }, - "phase": 0, - "source": { - "id": 184, - "type": 9 - }, - "time": "1250431858", - "type": 15 - }, - { - "phase": 2, - "source": { - "id": 176, - "type": 12 - }, - "time": "1250431858", - "type": 90 - }, - { - "params": { - "original_url": "http://marcelduran.com/", - "priority": "HIGHEST", - "url": "http://marcelduran.com/" - }, - "phase": 1, - "source": { - "id": 185, - "type": 12 - }, - "time": "1250431858", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 185, - "type": 12 - }, - "time": "1250431858", - "type": 24 - }, - { - "params": { - "pac_string": "DIRECT" - }, - "phase": 0, - "source": { - "id": 185, - "type": 12 - }, - "time": "1250431858", - "type": 26 - }, - { - "phase": 2, - "source": { - "id": 185, - "type": 12 - }, - "time": "1250431858", - "type": 24 - }, - { - "params": { - "source_dependency": { - "id": 186, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 185, - "type": 12 - }, - "time": "1250431858", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "marcelduran.com:80", - "is_speculative": false, - "source_dependency": { - "id": 185, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 186, - "type": 8 - }, - "time": "1250431858", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 186, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 187, - "type": 20 - }, - "time": "1250431858", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 187, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 188, - "type": 14 - }, - "time": "1250431858", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 188, - "type": 14 - }, - "time": "1250431858", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 188, - "type": 14 - }, - "time": "1250431858", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:50990" - }, - "phase": 0, - "source": { - "id": 188, - "type": 14 - }, - "time": "1250431858", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 188, - "type": 14 - }, - "time": "1250431859", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 187, - "type": 20 - }, - "time": "1250431859", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 186, - "type": 8 - }, - "time": "1250431859", - "type": 5 - }, - { - "params": { - "net_error": -804 - }, - "phase": 2, - "source": { - "id": 186, - "type": 8 - }, - "time": "1250431859", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 185, - "type": 12 - }, - "time": "1250431859", - "type": 3 - }, - { - "params": { - "host_and_port": "marcelduran.com:80" - }, - "phase": 0, - "source": { - "id": 185, - "type": 12 - }, - "time": "1250431859", - "type": 86 - }, - { - "params": { - "num_sockets": 2 - }, - "phase": 1, - "source": { - "id": 185, - "type": 12 - }, - "time": "1250431859", - "type": 90 - }, - { - "params": { - "group_name": "marcelduran.com:80" - }, - "phase": 1, - "source": { - "id": 189, - "type": 4 - }, - "time": "1250431859", - "type": 77 - }, - { - "phase": 1, - "source": { - "id": 189, - "type": 4 - }, - "time": "1250431859", - "type": 78 - }, - { - "params": { - "source_dependency": { - "id": 190, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 189, - "type": 4 - }, - "time": "1250431859", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "marcelduran.com:80", - "is_speculative": false, - "source_dependency": { - "id": 189, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 190, - "type": 8 - }, - "time": "1250431859", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 190, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 191, - "type": 20 - }, - "time": "1250431859", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 191, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 192, - "type": 14 - }, - "time": "1250431859", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 192, - "type": 14 - }, - "time": "1250431859", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 192, - "type": 14 - }, - "time": "1250431859", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:50991" - }, - "phase": 0, - "source": { - "id": 192, - "type": 14 - }, - "time": "1250431859", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 192, - "type": 14 - }, - "time": "1250431859", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 191, - "type": 20 - }, - "time": "1250431859", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 190, - "type": 8 - }, - "time": "1250431859", - "type": 5 - }, - { - "params": { - "source_dependency": { - "id": 184, - "type": 9 - } - }, - "phase": 0, - "source": { - "id": 190, - "type": 8 - }, - "time": "1250431859", - "type": 14 - }, - { - "params": { - "priority": "LOWEST", - "source_dependency": { - "id": 190, - "type": 8 - } - }, - "phase": 0, - "source": { - "id": 184, - "type": 9 - }, - "time": "1250431859", - "type": 15 - }, - { - "phase": 2, - "source": { - "id": 185, - "type": 12 - }, - "time": "1250431859", - "type": 90 - }, - { - "phase": 2, - "source": { - "id": 176, - "type": 12 - }, - "time": "1250431859", - "type": 121 - }, - { - "phase": 2, - "source": { - "id": 185, - "type": 12 - }, - "time": "1250431859", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250431861", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250431861", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250431861", - "type": 93 - }, - { - "params": { - "load_flags": 10617088, - "method": "GET", - "priority": "HIGHEST", - "url": "http://marcelduran.com/" - }, - "phase": 1, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250431861", - "type": 91 - }, - { - "phase": 2, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250431861", - "type": 91 - }, - { - "params": { - "load_flags": 10617088, - "method": "GET", - "priority": "HIGHEST", - "url": "http://marcelduran.com/" - }, - "phase": 1, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250431861", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250431861", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250431861", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250431862", - "type": 99 - }, - { - "phase": 2, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250431862", - "type": 99 - }, - { - "phase": 1, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250431862", - "type": 100 - }, - { - "params": { - "net_error": -2 - }, - "phase": 2, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250431862", - "type": 100 - }, - { - "phase": 1, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250431862", - "type": 101 - }, - { - "params": { - "created": true, - "key": "http://marcelduran.com/" - }, - "phase": 1, - "source": { - "id": 195, - "type": 10 - }, - "time": "1250431862", - "type": 108 - }, - { - "phase": 2, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250431862", - "type": 101 - }, - { - "phase": 1, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250431862", - "type": 102 - }, - { - "phase": 2, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250431862", - "type": 102 - }, - { - "phase": 1, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250431862", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250431862", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250431862", - "type": 120 - }, - { - "params": { - "original_url": "http://marcelduran.com/", - "priority": "HIGHEST", - "url": "http://marcelduran.com/" - }, - "phase": 1, - "source": { - "id": 196, - "type": 12 - }, - "time": "1250431862", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 196, - "type": 12 - }, - "time": "1250431862", - "type": 24 - }, - { - "params": { - "pac_string": "DIRECT" - }, - "phase": 0, - "source": { - "id": 196, - "type": 12 - }, - "time": "1250431862", - "type": 26 - }, - { - "phase": 2, - "source": { - "id": 196, - "type": 12 - }, - "time": "1250431862", - "type": 24 - }, - { - "params": { - "source_dependency": { - "id": 197, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 196, - "type": 12 - }, - "time": "1250431862", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "marcelduran.com:80", - "is_speculative": false, - "source_dependency": { - "id": 196, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 197, - "type": 8 - }, - "time": "1250431862", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 197, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 198, - "type": 20 - }, - "time": "1250431862", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 198, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 199, - "type": 14 - }, - "time": "1250431862", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 199, - "type": 14 - }, - "time": "1250431862", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 199, - "type": 14 - }, - "time": "1250431862", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:50992" - }, - "phase": 0, - "source": { - "id": 199, - "type": 14 - }, - "time": "1250431862", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 199, - "type": 14 - }, - "time": "1250431863", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 198, - "type": 20 - }, - "time": "1250431863", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 197, - "type": 8 - }, - "time": "1250431863", - "type": 5 - }, - { - "params": { - "net_error": -804 - }, - "phase": 2, - "source": { - "id": 197, - "type": 8 - }, - "time": "1250431863", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 196, - "type": 12 - }, - "time": "1250431863", - "type": 3 - }, - { - "params": { - "host_and_port": "marcelduran.com:80" - }, - "phase": 0, - "source": { - "id": 196, - "type": 12 - }, - "time": "1250431863", - "type": 85 - }, - { - "phase": 1, - "source": { - "id": 196, - "type": 12 - }, - "time": "1250431863", - "type": 81 - }, - { - "params": { - "attempt_number": 1 - }, - "phase": 0, - "source": { - "id": 184, - "type": 9 - }, - "time": "1250431942", - "type": 13 - }, - { - "params": { - "address_list": [ - "207.97.227.245:0" - ] - }, - "phase": 2, - "source": { - "id": 184, - "type": 9 - }, - "time": "1250431942", - "type": 17 - }, - { - "phase": 2, - "source": { - "id": 184, - "type": 9 - }, - "time": "1250431942", - "type": 9 - }, - { - "phase": 2, - "source": { - "id": 181, - "type": 8 - }, - "time": "1250431942", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 180, - "type": 4 - }, - "time": "1250431942", - "type": 3 - }, - { - "params": { - "source_dependency": { - "id": 180, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 200, - "type": 5 - }, - "time": "1250431942", - "type": 34 - }, - { - "params": { - "address_list": [ - "207.97.227.245:80" - ] - }, - "phase": 1, - "source": { - "id": 200, - "type": 5 - }, - "time": "1250431942", - "type": 35 - }, - { - "params": { - "address": "207.97.227.245:80" - }, - "phase": 1, - "source": { - "id": 200, - "type": 5 - }, - "time": "1250431942", - "type": 36 - }, - { - "phase": 2, - "source": { - "id": 190, - "type": 8 - }, - "time": "1250431942", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 189, - "type": 4 - }, - "time": "1250431942", - "type": 3 - }, - { - "params": { - "source_dependency": { - "id": 189, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 201, - "type": 5 - }, - "time": "1250431942", - "type": 34 - }, - { - "params": { - "address_list": [ - "207.97.227.245:80" - ] - }, - "phase": 1, - "source": { - "id": 201, - "type": 5 - }, - "time": "1250431942", - "type": 35 - }, - { - "params": { - "address": "207.97.227.245:80" - }, - "phase": 1, - "source": { - "id": 201, - "type": 5 - }, - "time": "1250431942", - "type": 36 - }, - { - "phase": 2, - "source": { - "id": 200, - "type": 5 - }, - "time": "1250432011", - "type": 36 - }, - { - "params": { - "source_address": "192.168.102.82:50990" - }, - "phase": 2, - "source": { - "id": 200, - "type": 5 - }, - "time": "1250432011", - "type": 35 - }, - { - "params": { - "source_dependency": { - "id": 200, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 180, - "type": 4 - }, - "time": "1250432011", - "type": 79 - }, - { - "phase": 2, - "source": { - "id": 180, - "type": 4 - }, - "time": "1250432011", - "type": 78 - }, - { - "phase": 2, - "source": { - "id": 180, - "type": 4 - }, - "time": "1250432011", - "type": 77 - }, - { - "params": { - "source_dependency": { - "id": 180, - "type": 4 - } - }, - "phase": 0, - "source": { - "id": 196, - "type": 12 - }, - "time": "1250432011", - "type": 88 - }, - { - "params": { - "source_dependency": { - "id": 200, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 196, - "type": 12 - }, - "time": "1250432011", - "type": 89 - }, - { - "phase": 2, - "source": { - "id": 196, - "type": 12 - }, - "time": "1250432011", - "type": 81 - }, - { - "params": { - "source_dependency": { - "id": 196, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 200, - "type": 5 - }, - "time": "1250432011", - "type": 38 - }, - { - "params": { - "source_dependency": { - "id": 196, - "type": 12 - } - }, - "phase": 0, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250432011", - "type": 122 - }, - { - "params": { - "source_dependency": { - "id": 193, - "type": 1 - } - }, - "phase": 0, - "source": { - "id": 196, - "type": 12 - }, - "time": "1250432011", - "type": 123 - }, - { - "phase": 2, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250432011", - "type": 120 - }, - { - "phase": 2, - "source": { - "id": 196, - "type": 12 - }, - "time": "1250432011", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250432011", - "type": 129 - }, - { - "params": { - "headers": [ - "Host: marcelduran.com", - "Connection: keep-alive", - "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", - "Accept-Encoding: gzip,deflate,sdch", - "Accept-Language: en-US,en;q=0.8" - ], - "line": "GET / HTTP/1.1\r\n" - }, - "phase": 0, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250432011", - "type": 130 - }, - { - "params": { - "byte_count": 334 - }, - "phase": 0, - "source": { - "id": 200, - "type": 5 - }, - "time": "1250432012", - "type": 61 - }, - { - "phase": 2, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250432012", - "type": 129 - }, - { - "phase": 1, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250432012", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250432012", - "type": 215 - }, - { - "phase": 2, - "source": { - "id": 201, - "type": 5 - }, - "time": "1250432014", - "type": 36 - }, - { - "params": { - "source_address": "192.168.102.82:50991" - }, - "phase": 2, - "source": { - "id": 201, - "type": 5 - }, - "time": "1250432014", - "type": 35 - }, - { - "params": { - "source_dependency": { - "id": 201, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 189, - "type": 4 - }, - "time": "1250432014", - "type": 79 - }, - { - "phase": 2, - "source": { - "id": 189, - "type": 4 - }, - "time": "1250432014", - "type": 78 - }, - { - "phase": 2, - "source": { - "id": 189, - "type": 4 - }, - "time": "1250432014", - "type": 77 - }, - { - "params": { - "byte_count": 975 - }, - "phase": 0, - "source": { - "id": 200, - "type": 5 - }, - "time": "1250432051", - "type": 63 - }, - { - "phase": 2, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250432051", - "type": 215 - }, - { - "params": { - "headers": [ - "HTTP/1.1 200 OK", - "Server: GitHub.com", - "Date: Fri, 26 Sep 2014 19:42:01 GMT", - "Content-Type: text/html; charset=utf-8", - "Last-Modified: Tue, 13 Aug 2013 23:46:37 GMT", - "Transfer-Encoding: chunked", - "Connection: close", - "Expires: Fri, 26 Sep 2014 19:52:01 GMT", - "Cache-Control: max-age=600", - "Vary: Accept-Encoding", - "Content-Encoding: gzip" - ] - }, - "phase": 0, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250432051", - "type": 135 - }, - { - "phase": 2, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250432051", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250432052", - "type": 105 - }, - { - "params": { - "buf_len": 340, - "index": 0, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 195, - "type": 10 - }, - "time": "1250432052", - "type": 111 - }, - { - "params": { - "bytes_copied": 340 - }, - "phase": 2, - "source": { - "id": 195, - "type": 10 - }, - "time": "1250432052", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250432052", - "type": 105 - }, - { - "phase": 1, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250432052", - "type": 107 - }, - { - "params": { - "buf_len": 0, - "index": 1, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 195, - "type": 10 - }, - "time": "1250432052", - "type": 111 - }, - { - "params": { - "bytes_copied": 0 - }, - "phase": 2, - "source": { - "id": 195, - "type": 10 - }, - "time": "1250432052", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250432052", - "type": 107 - }, - { - "phase": 1, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250432052", - "type": 105 - }, - { - "params": { - "buf_len": 0, - "index": 2, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 195, - "type": 10 - }, - "time": "1250432052", - "type": 111 - }, - { - "params": { - "bytes_copied": 0 - }, - "phase": 2, - "source": { - "id": 195, - "type": 10 - }, - "time": "1250432052", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250432052", - "type": 105 - }, - { - "phase": 1, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250432052", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250432052", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250432052", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250432052", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250432052", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250432052", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250432052", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250432052", - "type": 107 - }, - { - "params": { - "buf_len": 639, - "index": 1, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 195, - "type": 10 - }, - "time": "1250432052", - "type": 111 - }, - { - "params": { - "bytes_copied": 639 - }, - "phase": 2, - "source": { - "id": 195, - "type": 10 - }, - "time": "1250432052", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250432052", - "type": 107 - }, - { - "phase": 1, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250432052", - "type": 136 - }, - { - "phase": 0, - "source": { - "id": 200, - "type": 5 - }, - "time": "1250432052", - "type": 67 - }, - { - "phase": 2, - "source": { - "id": 200, - "type": 5 - }, - "time": "1250432053", - "type": 38 - }, - { - "phase": 2, - "source": { - "id": 200, - "type": 5 - }, - "time": "1250432053", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250432053", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250432053", - "type": 107 - }, - { - "phase": 2, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250432053", - "type": 107 - }, - { - "phase": 2, - "source": { - "id": 193, - "type": 1 - }, - "time": "1250432053", - "type": 2 - }, - { - "phase": 0, - "source": { - "id": 195, - "type": 10 - }, - "time": "1250432053", - "type": 118 - }, - { - "phase": 2, - "source": { - "id": 195, - "type": 10 - }, - "time": "1250432053", - "type": 108 - }, - { - "phase": 1, - "source": { - "id": 202, - "type": 1 - }, - "time": "1250432146", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 202, - "type": 1 - }, - "time": "1250432147", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 202, - "type": 1 - }, - "time": "1250432147", - "type": 93 - }, - { - "params": { - "load_flags": 131328, - "method": "POST", - "priority": "LOW", - "upload_id": "0", - "url": "http://127.0.0.1:8888/event/received_data" - }, - "phase": 1, - "source": { - "id": 202, - "type": 1 - }, - "time": "1250432147", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 202, - "type": 1 - }, - "time": "1250432147", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 202, - "type": 1 - }, - "time": "1250432147", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 202, - "type": 1 - }, - "time": "1250432147", - "type": 99 - }, - { - "phase": 2, - "source": { - "id": 202, - "type": 1 - }, - "time": "1250432147", - "type": 99 - }, - { - "phase": 1, - "source": { - "id": 202, - "type": 1 - }, - "time": "1250432147", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 202, - "type": 1 - }, - "time": "1250432147", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 202, - "type": 1 - }, - "time": "1250432147", - "type": 120 - }, - { - "params": { - "original_url": "http://127.0.0.1:8888/", - "priority": "LOW", - "url": "http://127.0.0.1:8888/" - }, - "phase": 1, - "source": { - "id": 204, - "type": 12 - }, - "time": "1250432147", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 204, - "type": 12 - }, - "time": "1250432147", - "type": 24 - }, - { - "params": { - "pac_string": "DIRECT" - }, - "phase": 0, - "source": { - "id": 204, - "type": 12 - }, - "time": "1250432147", - "type": 26 - }, - { - "phase": 2, - "source": { - "id": 204, - "type": 12 - }, - "time": "1250432147", - "type": 24 - }, - { - "params": { - "source_dependency": { - "id": 205, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 204, - "type": 12 - }, - "time": "1250432147", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 204, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 205, - "type": 8 - }, - "time": "1250432147", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 205, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 206, - "type": 20 - }, - "time": "1250432147", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 206, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 207, - "type": 14 - }, - "time": "1250432147", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 207, - "type": 14 - }, - "time": "1250432147", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 207, - "type": 14 - }, - "time": "1250432148", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:53438" - }, - "phase": 0, - "source": { - "id": 207, - "type": 14 - }, - "time": "1250432148", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 207, - "type": 14 - }, - "time": "1250432148", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 206, - "type": 20 - }, - "time": "1250432148", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 205, - "type": 8 - }, - "time": "1250432148", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 205, - "type": 8 - }, - "time": "1250432148", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 204, - "type": 12 - }, - "time": "1250432148", - "type": 3 - }, - { - "params": { - "host_and_port": "127.0.0.1:8888" - }, - "phase": 0, - "source": { - "id": 204, - "type": 12 - }, - "time": "1250432148", - "type": 85 - }, - { - "phase": 1, - "source": { - "id": 204, - "type": 12 - }, - "time": "1250432148", - "type": 81 - }, - { - "params": { - "group_name": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 208, - "type": 4 - }, - "time": "1250432148", - "type": 77 - }, - { - "phase": 1, - "source": { - "id": 208, - "type": 4 - }, - "time": "1250432148", - "type": 78 - }, - { - "params": { - "source_dependency": { - "id": 209, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 208, - "type": 4 - }, - "time": "1250432148", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 208, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 209, - "type": 8 - }, - "time": "1250432148", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 209, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 210, - "type": 20 - }, - "time": "1250432148", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 210, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 211, - "type": 14 - }, - "time": "1250432148", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 211, - "type": 14 - }, - "time": "1250432148", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 211, - "type": 14 - }, - "time": "1250432148", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:53439" - }, - "phase": 0, - "source": { - "id": 211, - "type": 14 - }, - "time": "1250432148", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 211, - "type": 14 - }, - "time": "1250432148", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 210, - "type": 20 - }, - "time": "1250432148", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 209, - "type": 8 - }, - "time": "1250432148", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 209, - "type": 8 - }, - "time": "1250432148", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 208, - "type": 4 - }, - "time": "1250432148", - "type": 3 - }, - { - "params": { - "source_dependency": { - "id": 208, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 212, - "type": 5 - }, - "time": "1250432148", - "type": 34 - }, - { - "params": { - "address_list": [ - "127.0.0.1:8888" - ] - }, - "phase": 1, - "source": { - "id": 212, - "type": 5 - }, - "time": "1250432148", - "type": 35 - }, - { - "params": { - "address": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 212, - "type": 5 - }, - "time": "1250432148", - "type": 36 - }, - { - "phase": 2, - "source": { - "id": 212, - "type": 5 - }, - "time": "1250432149", - "type": 36 - }, - { - "params": { - "source_address": "127.0.0.1:50992" - }, - "phase": 2, - "source": { - "id": 212, - "type": 5 - }, - "time": "1250432149", - "type": 35 - }, - { - "params": { - "source_dependency": { - "id": 212, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 208, - "type": 4 - }, - "time": "1250432149", - "type": 79 - }, - { - "phase": 2, - "source": { - "id": 208, - "type": 4 - }, - "time": "1250432149", - "type": 78 - }, - { - "phase": 2, - "source": { - "id": 208, - "type": 4 - }, - "time": "1250432149", - "type": 77 - }, - { - "params": { - "source_dependency": { - "id": 208, - "type": 4 - } - }, - "phase": 0, - "source": { - "id": 204, - "type": 12 - }, - "time": "1250432149", - "type": 88 - }, - { - "params": { - "source_dependency": { - "id": 212, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 204, - "type": 12 - }, - "time": "1250432149", - "type": 89 - }, - { - "phase": 2, - "source": { - "id": 204, - "type": 12 - }, - "time": "1250432149", - "type": 81 - }, - { - "params": { - "source_dependency": { - "id": 204, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 212, - "type": 5 - }, - "time": "1250432149", - "type": 38 - }, - { - "params": { - "source_dependency": { - "id": 204, - "type": 12 - } - }, - "phase": 0, - "source": { - "id": 202, - "type": 1 - }, - "time": "1250432149", - "type": 122 - }, - { - "params": { - "source_dependency": { - "id": 202, - "type": 1 - } - }, - "phase": 0, - "source": { - "id": 204, - "type": 12 - }, - "time": "1250432149", - "type": 123 - }, - { - "phase": 2, - "source": { - "id": 202, - "type": 1 - }, - "time": "1250432149", - "type": 120 - }, - { - "phase": 2, - "source": { - "id": 204, - "type": 12 - }, - "time": "1250432149", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 202, - "type": 1 - }, - "time": "1250432149", - "type": 129 - }, - { - "params": { - "headers": [ - "Host: 127.0.0.1:8888", - "Connection: keep-alive", - "Content-Length: 0", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", - "Origin: chrome-extension://ejfgipfkkpdadoidbhfedneaabgolbno", - "Content-Type: text/plain;charset=UTF-8", - "Accept: */*", - "Accept-Encoding: gzip,deflate", - "Accept-Language: en-US,en;q=0.8" - ], - "line": "POST /event/received_data HTTP/1.1\r\n" - }, - "phase": 0, - "source": { - "id": 202, - "type": 1 - }, - "time": "1250432149", - "type": 130 - }, - { - "params": { - "byte_count": 397 - }, - "phase": 0, - "source": { - "id": 212, - "type": 5 - }, - "time": "1250432149", - "type": 61 - }, - { - "phase": 2, - "source": { - "id": 202, - "type": 1 - }, - "time": "1250432149", - "type": 129 - }, - { - "phase": 1, - "source": { - "id": 202, - "type": 1 - }, - "time": "1250432149", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 202, - "type": 1 - }, - "time": "1250432149", - "type": 215 - }, - { - "params": { - "byte_count": 0 - }, - "phase": 0, - "source": { - "id": 212, - "type": 5 - }, - "time": "1250432150", - "type": 63 - }, - { - "params": { - "net_error": -324 - }, - "phase": 2, - "source": { - "id": 202, - "type": 1 - }, - "time": "1250432150", - "type": 215 - }, - { - "params": { - "net_error": -324 - }, - "phase": 2, - "source": { - "id": 202, - "type": 1 - }, - "time": "1250432150", - "type": 134 - }, - { - "params": { - "net_error": -324 - }, - "phase": 2, - "source": { - "id": 202, - "type": 1 - }, - "time": "1250432150", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 202, - "type": 1 - }, - "time": "1250432150", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 202, - "type": 1 - }, - "time": "1250432150", - "type": 93 - }, - { - "phase": 0, - "source": { - "id": 212, - "type": 5 - }, - "time": "1250432150", - "type": 67 - }, - { - "phase": 2, - "source": { - "id": 212, - "type": 5 - }, - "time": "1250432150", - "type": 38 - }, - { - "phase": 2, - "source": { - "id": 212, - "type": 5 - }, - "time": "1250432150", - "type": 34 - }, - { - "params": { - "net_error": -324 - }, - "phase": 2, - "source": { - "id": 202, - "type": 1 - }, - "time": "1250432150", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 213, - "type": 1 - }, - "time": "1250432151", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 213, - "type": 1 - }, - "time": "1250432151", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 213, - "type": 1 - }, - "time": "1250432151", - "type": 93 - }, - { - "params": { - "load_flags": 131328, - "method": "POST", - "priority": "LOW", - "url": "http://127.0.0.1:8888/event/navigate" - }, - "phase": 1, - "source": { - "id": 213, - "type": 1 - }, - "time": "1250432151", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 213, - "type": 1 - }, - "time": "1250432152", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 213, - "type": 1 - }, - "time": "1250432152", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 213, - "type": 1 - }, - "time": "1250432152", - "type": 99 - }, - { - "phase": 2, - "source": { - "id": 213, - "type": 1 - }, - "time": "1250432152", - "type": 99 - }, - { - "phase": 1, - "source": { - "id": 213, - "type": 1 - }, - "time": "1250432152", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 213, - "type": 1 - }, - "time": "1250432152", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 213, - "type": 1 - }, - "time": "1250432152", - "type": 120 - }, - { - "params": { - "original_url": "http://127.0.0.1:8888/", - "priority": "LOW", - "url": "http://127.0.0.1:8888/" - }, - "phase": 1, - "source": { - "id": 215, - "type": 12 - }, - "time": "1250432152", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 215, - "type": 12 - }, - "time": "1250432152", - "type": 24 - }, - { - "params": { - "pac_string": "DIRECT" - }, - "phase": 0, - "source": { - "id": 215, - "type": 12 - }, - "time": "1250432152", - "type": 26 - }, - { - "phase": 2, - "source": { - "id": 215, - "type": 12 - }, - "time": "1250432152", - "type": 24 - }, - { - "params": { - "source_dependency": { - "id": 216, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 215, - "type": 12 - }, - "time": "1250432152", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 215, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 216, - "type": 8 - }, - "time": "1250432152", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 216, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 217, - "type": 20 - }, - "time": "1250432152", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 217, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 218, - "type": 14 - }, - "time": "1250432152", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 218, - "type": 14 - }, - "time": "1250432152", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 218, - "type": 14 - }, - "time": "1250432152", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:53440" - }, - "phase": 0, - "source": { - "id": 218, - "type": 14 - }, - "time": "1250432152", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 218, - "type": 14 - }, - "time": "1250432152", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 217, - "type": 20 - }, - "time": "1250432152", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 216, - "type": 8 - }, - "time": "1250432152", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 216, - "type": 8 - }, - "time": "1250432152", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 215, - "type": 12 - }, - "time": "1250432152", - "type": 3 - }, - { - "params": { - "host_and_port": "127.0.0.1:8888" - }, - "phase": 0, - "source": { - "id": 215, - "type": 12 - }, - "time": "1250432152", - "type": 85 - }, - { - "phase": 1, - "source": { - "id": 215, - "type": 12 - }, - "time": "1250432152", - "type": 81 - }, - { - "params": { - "group_name": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 219, - "type": 4 - }, - "time": "1250432152", - "type": 77 - }, - { - "phase": 1, - "source": { - "id": 219, - "type": 4 - }, - "time": "1250432152", - "type": 78 - }, - { - "params": { - "source_dependency": { - "id": 220, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 219, - "type": 4 - }, - "time": "1250432152", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 219, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 220, - "type": 8 - }, - "time": "1250432153", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 220, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 221, - "type": 20 - }, - "time": "1250432153", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 221, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 222, - "type": 14 - }, - "time": "1250432153", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 222, - "type": 14 - }, - "time": "1250432153", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 222, - "type": 14 - }, - "time": "1250432153", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:53441" - }, - "phase": 0, - "source": { - "id": 222, - "type": 14 - }, - "time": "1250432153", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 222, - "type": 14 - }, - "time": "1250432153", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 221, - "type": 20 - }, - "time": "1250432153", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 220, - "type": 8 - }, - "time": "1250432153", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 220, - "type": 8 - }, - "time": "1250432153", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 219, - "type": 4 - }, - "time": "1250432153", - "type": 3 - }, - { - "params": { - "source_dependency": { - "id": 219, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 223, - "type": 5 - }, - "time": "1250432153", - "type": 34 - }, - { - "params": { - "address_list": [ - "127.0.0.1:8888" - ] - }, - "phase": 1, - "source": { - "id": 223, - "type": 5 - }, - "time": "1250432153", - "type": 35 - }, - { - "params": { - "address": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 223, - "type": 5 - }, - "time": "1250432153", - "type": 36 - }, - { - "phase": 2, - "source": { - "id": 223, - "type": 5 - }, - "time": "1250432154", - "type": 36 - }, - { - "params": { - "source_address": "127.0.0.1:50993" - }, - "phase": 2, - "source": { - "id": 223, - "type": 5 - }, - "time": "1250432154", - "type": 35 - }, - { - "params": { - "source_dependency": { - "id": 223, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 219, - "type": 4 - }, - "time": "1250432154", - "type": 79 - }, - { - "phase": 2, - "source": { - "id": 219, - "type": 4 - }, - "time": "1250432154", - "type": 78 - }, - { - "phase": 2, - "source": { - "id": 219, - "type": 4 - }, - "time": "1250432154", - "type": 77 - }, - { - "params": { - "source_dependency": { - "id": 219, - "type": 4 - } - }, - "phase": 0, - "source": { - "id": 215, - "type": 12 - }, - "time": "1250432154", - "type": 88 - }, - { - "params": { - "source_dependency": { - "id": 223, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 215, - "type": 12 - }, - "time": "1250432154", - "type": 89 - }, - { - "phase": 2, - "source": { - "id": 215, - "type": 12 - }, - "time": "1250432154", - "type": 81 - }, - { - "params": { - "source_dependency": { - "id": 215, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 223, - "type": 5 - }, - "time": "1250432154", - "type": 38 - }, - { - "params": { - "source_dependency": { - "id": 215, - "type": 12 - } - }, - "phase": 0, - "source": { - "id": 213, - "type": 1 - }, - "time": "1250432154", - "type": 122 - }, - { - "params": { - "source_dependency": { - "id": 213, - "type": 1 - } - }, - "phase": 0, - "source": { - "id": 215, - "type": 12 - }, - "time": "1250432154", - "type": 123 - }, - { - "phase": 2, - "source": { - "id": 213, - "type": 1 - }, - "time": "1250432154", - "type": 120 - }, - { - "phase": 2, - "source": { - "id": 215, - "type": 12 - }, - "time": "1250432154", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 213, - "type": 1 - }, - "time": "1250432154", - "type": 129 - }, - { - "params": { - "headers": [ - "Host: 127.0.0.1:8888", - "Connection: keep-alive", - "Content-Length: 0", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", - "Origin: chrome-extension://ejfgipfkkpdadoidbhfedneaabgolbno", - "Accept: */*", - "Accept-Encoding: gzip,deflate", - "Accept-Language: en-US,en;q=0.8" - ], - "line": "POST /event/navigate HTTP/1.1\r\n" - }, - "phase": 0, - "source": { - "id": 213, - "type": 1 - }, - "time": "1250432154", - "type": 130 - }, - { - "params": { - "byte_count": 352 - }, - "phase": 0, - "source": { - "id": 223, - "type": 5 - }, - "time": "1250432154", - "type": 61 - }, - { - "phase": 2, - "source": { - "id": 213, - "type": 1 - }, - "time": "1250432154", - "type": 129 - }, - { - "phase": 1, - "source": { - "id": 213, - "type": 1 - }, - "time": "1250432154", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 213, - "type": 1 - }, - "time": "1250432154", - "type": 215 - }, - { - "params": { - "byte_count": 161 - }, - "phase": 0, - "source": { - "id": 223, - "type": 5 - }, - "time": "1250432154", - "type": 63 - }, - { - "phase": 2, - "source": { - "id": 213, - "type": 1 - }, - "time": "1250432154", - "type": 215 - }, - { - "params": { - "headers": [ - "HTTP/1.1 200 OK", - "Server: wptdriver", - "Cache: no-cache", - "Pragma: no-cache", - "Content-Type: application/json", - "Content-Length: 36" - ] - }, - "phase": 0, - "source": { - "id": 213, - "type": 1 - }, - "time": "1250432154", - "type": 135 - }, - { - "phase": 2, - "source": { - "id": 213, - "type": 1 - }, - "time": "1250432154", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 213, - "type": 1 - }, - "time": "1250432154", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 213, - "type": 1 - }, - "time": "1250432154", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 213, - "type": 1 - }, - "time": "1250432154", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 213, - "type": 1 - }, - "time": "1250432155", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 213, - "type": 1 - }, - "time": "1250432155", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 213, - "type": 1 - }, - "time": "1250432155", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 213, - "type": 1 - }, - "time": "1250432155", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 213, - "type": 1 - }, - "time": "1250432155", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 223, - "type": 5 - }, - "time": "1250432155", - "type": 38 - }, - { - "phase": 0, - "source": { - "id": 223, - "type": 5 - }, - "time": "1250432155", - "type": 67 - }, - { - "phase": 2, - "source": { - "id": 223, - "type": 5 - }, - "time": "1250432155", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 213, - "type": 1 - }, - "time": "1250432155", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 213, - "type": 1 - }, - "time": "1250432155", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 224, - "type": 1 - }, - "time": "1250432183", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 224, - "type": 1 - }, - "time": "1250432183", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 224, - "type": 1 - }, - "time": "1250432184", - "type": 93 - }, - { - "params": { - "load_flags": 131328, - "method": "POST", - "priority": "LOW", - "upload_id": "0", - "url": "http://127.0.0.1:8888/event/request_data" - }, - "phase": 1, - "source": { - "id": 224, - "type": 1 - }, - "time": "1250432184", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 224, - "type": 1 - }, - "time": "1250432184", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 224, - "type": 1 - }, - "time": "1250432184", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 224, - "type": 1 - }, - "time": "1250432184", - "type": 99 - }, - { - "phase": 2, - "source": { - "id": 224, - "type": 1 - }, - "time": "1250432184", - "type": 99 - }, - { - "phase": 1, - "source": { - "id": 224, - "type": 1 - }, - "time": "1250432184", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 224, - "type": 1 - }, - "time": "1250432184", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 224, - "type": 1 - }, - "time": "1250432184", - "type": 120 - }, - { - "params": { - "original_url": "http://127.0.0.1:8888/", - "priority": "LOW", - "url": "http://127.0.0.1:8888/" - }, - "phase": 1, - "source": { - "id": 226, - "type": 12 - }, - "time": "1250432184", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 226, - "type": 12 - }, - "time": "1250432184", - "type": 24 - }, - { - "params": { - "pac_string": "DIRECT" - }, - "phase": 0, - "source": { - "id": 226, - "type": 12 - }, - "time": "1250432184", - "type": 26 - }, - { - "phase": 2, - "source": { - "id": 226, - "type": 12 - }, - "time": "1250432184", - "type": 24 - }, - { - "params": { - "source_dependency": { - "id": 227, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 226, - "type": 12 - }, - "time": "1250432184", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 226, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 227, - "type": 8 - }, - "time": "1250432184", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 227, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 228, - "type": 20 - }, - "time": "1250432184", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 228, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 229, - "type": 14 - }, - "time": "1250432184", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 229, - "type": 14 - }, - "time": "1250432184", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 229, - "type": 14 - }, - "time": "1250432185", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:53442" - }, - "phase": 0, - "source": { - "id": 229, - "type": 14 - }, - "time": "1250432185", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 229, - "type": 14 - }, - "time": "1250432185", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 228, - "type": 20 - }, - "time": "1250432185", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 227, - "type": 8 - }, - "time": "1250432185", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 227, - "type": 8 - }, - "time": "1250432185", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 226, - "type": 12 - }, - "time": "1250432185", - "type": 3 - }, - { - "params": { - "host_and_port": "127.0.0.1:8888" - }, - "phase": 0, - "source": { - "id": 226, - "type": 12 - }, - "time": "1250432185", - "type": 85 - }, - { - "phase": 1, - "source": { - "id": 226, - "type": 12 - }, - "time": "1250432185", - "type": 81 - }, - { - "params": { - "group_name": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 230, - "type": 4 - }, - "time": "1250432185", - "type": 77 - }, - { - "phase": 1, - "source": { - "id": 230, - "type": 4 - }, - "time": "1250432185", - "type": 78 - }, - { - "params": { - "source_dependency": { - "id": 231, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 230, - "type": 4 - }, - "time": "1250432185", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 230, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 231, - "type": 8 - }, - "time": "1250432185", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 231, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 232, - "type": 20 - }, - "time": "1250432185", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 232, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 233, - "type": 14 - }, - "time": "1250432185", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 233, - "type": 14 - }, - "time": "1250432185", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 233, - "type": 14 - }, - "time": "1250432185", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:53443" - }, - "phase": 0, - "source": { - "id": 233, - "type": 14 - }, - "time": "1250432185", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 233, - "type": 14 - }, - "time": "1250432185", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 232, - "type": 20 - }, - "time": "1250432185", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 231, - "type": 8 - }, - "time": "1250432185", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 231, - "type": 8 - }, - "time": "1250432185", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 230, - "type": 4 - }, - "time": "1250432185", - "type": 3 - }, - { - "params": { - "source_dependency": { - "id": 230, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 234, - "type": 5 - }, - "time": "1250432185", - "type": 34 - }, - { - "params": { - "address_list": [ - "127.0.0.1:8888" - ] - }, - "phase": 1, - "source": { - "id": 234, - "type": 5 - }, - "time": "1250432185", - "type": 35 - }, - { - "params": { - "address": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 234, - "type": 5 - }, - "time": "1250432185", - "type": 36 - }, - { - "phase": 2, - "source": { - "id": 234, - "type": 5 - }, - "time": "1250432187", - "type": 36 - }, - { - "params": { - "source_address": "127.0.0.1:50994" - }, - "phase": 2, - "source": { - "id": 234, - "type": 5 - }, - "time": "1250432187", - "type": 35 - }, - { - "params": { - "source_dependency": { - "id": 234, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 230, - "type": 4 - }, - "time": "1250432187", - "type": 79 - }, - { - "phase": 2, - "source": { - "id": 230, - "type": 4 - }, - "time": "1250432187", - "type": 78 - }, - { - "phase": 2, - "source": { - "id": 230, - "type": 4 - }, - "time": "1250432187", - "type": 77 - }, - { - "params": { - "source_dependency": { - "id": 230, - "type": 4 - } - }, - "phase": 0, - "source": { - "id": 226, - "type": 12 - }, - "time": "1250432187", - "type": 88 - }, - { - "params": { - "source_dependency": { - "id": 234, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 226, - "type": 12 - }, - "time": "1250432187", - "type": 89 - }, - { - "phase": 2, - "source": { - "id": 226, - "type": 12 - }, - "time": "1250432187", - "type": 81 - }, - { - "params": { - "source_dependency": { - "id": 226, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 234, - "type": 5 - }, - "time": "1250432187", - "type": 38 - }, - { - "params": { - "source_dependency": { - "id": 226, - "type": 12 - } - }, - "phase": 0, - "source": { - "id": 224, - "type": 1 - }, - "time": "1250432187", - "type": 122 - }, - { - "params": { - "source_dependency": { - "id": 224, - "type": 1 - } - }, - "phase": 0, - "source": { - "id": 226, - "type": 12 - }, - "time": "1250432187", - "type": 123 - }, - { - "phase": 2, - "source": { - "id": 224, - "type": 1 - }, - "time": "1250432187", - "type": 120 - }, - { - "phase": 2, - "source": { - "id": 226, - "type": 12 - }, - "time": "1250432187", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 224, - "type": 1 - }, - "time": "1250432187", - "type": 129 - }, - { - "params": { - "headers": [ - "Host: 127.0.0.1:8888", - "Connection: keep-alive", - "Content-Length: 1184", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", - "Origin: chrome-extension://ejfgipfkkpdadoidbhfedneaabgolbno", - "Content-Type: text/plain;charset=UTF-8", - "Accept: */*", - "Accept-Encoding: gzip,deflate", - "Accept-Language: en-US,en;q=0.8" - ], - "line": "POST /event/request_data HTTP/1.1\r\n" - }, - "phase": 0, - "source": { - "id": 224, - "type": 1 - }, - "time": "1250432187", - "type": 130 - }, - { - "params": { - "byte_count": 399 - }, - "phase": 0, - "source": { - "id": 234, - "type": 5 - }, - "time": "1250432187", - "type": 61 - }, - { - "params": { - "did_merge": false, - "is_chunked": false, - "length": 1184 - }, - "phase": 0, - "source": { - "id": 224, - "type": 1 - }, - "time": "1250432187", - "type": 131 - }, - { - "params": { - "byte_count": 1184 - }, - "phase": 0, - "source": { - "id": 234, - "type": 5 - }, - "time": "1250432187", - "type": 61 - }, - { - "phase": 2, - "source": { - "id": 224, - "type": 1 - }, - "time": "1250432187", - "type": 129 - }, - { - "phase": 1, - "source": { - "id": 224, - "type": 1 - }, - "time": "1250432187", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 224, - "type": 1 - }, - "time": "1250432187", - "type": 215 - }, - { - "params": { - "byte_count": 161 - }, - "phase": 0, - "source": { - "id": 234, - "type": 5 - }, - "time": "1250432199", - "type": 63 - }, - { - "phase": 2, - "source": { - "id": 224, - "type": 1 - }, - "time": "1250432200", - "type": 215 - }, - { - "params": { - "headers": [ - "HTTP/1.1 200 OK", - "Server: wptdriver", - "Cache: no-cache", - "Pragma: no-cache", - "Content-Type: application/json", - "Content-Length: 36" - ] - }, - "phase": 0, - "source": { - "id": 224, - "type": 1 - }, - "time": "1250432200", - "type": 135 - }, - { - "phase": 2, - "source": { - "id": 224, - "type": 1 - }, - "time": "1250432200", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 224, - "type": 1 - }, - "time": "1250432200", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 224, - "type": 1 - }, - "time": "1250432200", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 224, - "type": 1 - }, - "time": "1250432200", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 224, - "type": 1 - }, - "time": "1250432200", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 224, - "type": 1 - }, - "time": "1250432200", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 224, - "type": 1 - }, - "time": "1250432200", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 224, - "type": 1 - }, - "time": "1250432200", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 224, - "type": 1 - }, - "time": "1250432200", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 234, - "type": 5 - }, - "time": "1250432200", - "type": 38 - }, - { - "phase": 0, - "source": { - "id": 234, - "type": 5 - }, - "time": "1250432200", - "type": 67 - }, - { - "phase": 2, - "source": { - "id": 234, - "type": 5 - }, - "time": "1250432200", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 224, - "type": 1 - }, - "time": "1250432200", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 224, - "type": 1 - }, - "time": "1250432200", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 235, - "type": 1 - }, - "time": "1250432209", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 235, - "type": 1 - }, - "time": "1250432209", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 235, - "type": 1 - }, - "time": "1250432209", - "type": 93 - }, - { - "params": { - "load_flags": 131328, - "method": "POST", - "priority": "LOW", - "url": "http://127.0.0.1:8888/event/load?timestamp=319.00000013411045&fixedViewport=1" - }, - "phase": 1, - "source": { - "id": 235, - "type": 1 - }, - "time": "1250432209", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 235, - "type": 1 - }, - "time": "1250432209", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 235, - "type": 1 - }, - "time": "1250432209", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 235, - "type": 1 - }, - "time": "1250432210", - "type": 99 - }, - { - "phase": 2, - "source": { - "id": 235, - "type": 1 - }, - "time": "1250432210", - "type": 99 - }, - { - "phase": 1, - "source": { - "id": 235, - "type": 1 - }, - "time": "1250432210", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 235, - "type": 1 - }, - "time": "1250432210", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 235, - "type": 1 - }, - "time": "1250432210", - "type": 120 - }, - { - "params": { - "original_url": "http://127.0.0.1:8888/", - "priority": "LOW", - "url": "http://127.0.0.1:8888/" - }, - "phase": 1, - "source": { - "id": 236, - "type": 12 - }, - "time": "1250432210", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 236, - "type": 12 - }, - "time": "1250432210", - "type": 24 - }, - { - "params": { - "pac_string": "DIRECT" - }, - "phase": 0, - "source": { - "id": 236, - "type": 12 - }, - "time": "1250432210", - "type": 26 - }, - { - "phase": 2, - "source": { - "id": 236, - "type": 12 - }, - "time": "1250432210", - "type": 24 - }, - { - "params": { - "source_dependency": { - "id": 237, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 236, - "type": 12 - }, - "time": "1250432210", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 236, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 237, - "type": 8 - }, - "time": "1250432210", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 237, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 238, - "type": 20 - }, - "time": "1250432210", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 238, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 239, - "type": 14 - }, - "time": "1250432210", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 239, - "type": 14 - }, - "time": "1250432210", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 239, - "type": 14 - }, - "time": "1250432210", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:53444" - }, - "phase": 0, - "source": { - "id": 239, - "type": 14 - }, - "time": "1250432210", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 239, - "type": 14 - }, - "time": "1250432210", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 238, - "type": 20 - }, - "time": "1250432210", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 237, - "type": 8 - }, - "time": "1250432210", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 237, - "type": 8 - }, - "time": "1250432210", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 236, - "type": 12 - }, - "time": "1250432210", - "type": 3 - }, - { - "params": { - "host_and_port": "127.0.0.1:8888" - }, - "phase": 0, - "source": { - "id": 236, - "type": 12 - }, - "time": "1250432210", - "type": 85 - }, - { - "phase": 1, - "source": { - "id": 236, - "type": 12 - }, - "time": "1250432210", - "type": 81 - }, - { - "params": { - "group_name": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 240, - "type": 4 - }, - "time": "1250432210", - "type": 77 - }, - { - "phase": 1, - "source": { - "id": 240, - "type": 4 - }, - "time": "1250432210", - "type": 78 - }, - { - "params": { - "source_dependency": { - "id": 241, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 240, - "type": 4 - }, - "time": "1250432210", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 240, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 241, - "type": 8 - }, - "time": "1250432210", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 241, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 242, - "type": 20 - }, - "time": "1250432210", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 242, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 243, - "type": 14 - }, - "time": "1250432210", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 243, - "type": 14 - }, - "time": "1250432210", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 243, - "type": 14 - }, - "time": "1250432210", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:53445" - }, - "phase": 0, - "source": { - "id": 243, - "type": 14 - }, - "time": "1250432210", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 243, - "type": 14 - }, - "time": "1250432210", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 242, - "type": 20 - }, - "time": "1250432210", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 241, - "type": 8 - }, - "time": "1250432210", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 241, - "type": 8 - }, - "time": "1250432210", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 240, - "type": 4 - }, - "time": "1250432210", - "type": 3 - }, - { - "params": { - "source_dependency": { - "id": 240, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 244, - "type": 5 - }, - "time": "1250432210", - "type": 34 - }, - { - "params": { - "address_list": [ - "127.0.0.1:8888" - ] - }, - "phase": 1, - "source": { - "id": 244, - "type": 5 - }, - "time": "1250432211", - "type": 35 - }, - { - "params": { - "address": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 244, - "type": 5 - }, - "time": "1250432211", - "type": 36 - }, - { - "phase": 2, - "source": { - "id": 244, - "type": 5 - }, - "time": "1250432211", - "type": 36 - }, - { - "params": { - "source_address": "127.0.0.1:50995" - }, - "phase": 2, - "source": { - "id": 244, - "type": 5 - }, - "time": "1250432211", - "type": 35 - }, - { - "params": { - "source_dependency": { - "id": 244, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 240, - "type": 4 - }, - "time": "1250432211", - "type": 79 - }, - { - "phase": 2, - "source": { - "id": 240, - "type": 4 - }, - "time": "1250432211", - "type": 78 - }, - { - "phase": 2, - "source": { - "id": 240, - "type": 4 - }, - "time": "1250432211", - "type": 77 - }, - { - "params": { - "source_dependency": { - "id": 240, - "type": 4 - } - }, - "phase": 0, - "source": { - "id": 236, - "type": 12 - }, - "time": "1250432211", - "type": 88 - }, - { - "params": { - "source_dependency": { - "id": 244, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 236, - "type": 12 - }, - "time": "1250432211", - "type": 89 - }, - { - "phase": 2, - "source": { - "id": 236, - "type": 12 - }, - "time": "1250432211", - "type": 81 - }, - { - "params": { - "source_dependency": { - "id": 236, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 244, - "type": 5 - }, - "time": "1250432211", - "type": 38 - }, - { - "params": { - "source_dependency": { - "id": 236, - "type": 12 - } - }, - "phase": 0, - "source": { - "id": 235, - "type": 1 - }, - "time": "1250432211", - "type": 122 - }, - { - "params": { - "source_dependency": { - "id": 235, - "type": 1 - } - }, - "phase": 0, - "source": { - "id": 236, - "type": 12 - }, - "time": "1250432211", - "type": 123 - }, - { - "phase": 2, - "source": { - "id": 235, - "type": 1 - }, - "time": "1250432211", - "type": 120 - }, - { - "phase": 2, - "source": { - "id": 236, - "type": 12 - }, - "time": "1250432211", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 235, - "type": 1 - }, - "time": "1250432211", - "type": 129 - }, - { - "params": { - "headers": [ - "Host: 127.0.0.1:8888", - "Connection: keep-alive", - "Content-Length: 0", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", - "Origin: chrome-extension://ejfgipfkkpdadoidbhfedneaabgolbno", - "Accept: */*", - "Accept-Encoding: gzip,deflate", - "Accept-Language: en-US,en;q=0.8" - ], - "line": "POST /event/load?timestamp=319.00000013411045&fixedViewport=1 HTTP/1.1\r\n" - }, - "phase": 0, - "source": { - "id": 235, - "type": 1 - }, - "time": "1250432211", - "type": 130 - }, - { - "params": { - "byte_count": 393 - }, - "phase": 0, - "source": { - "id": 244, - "type": 5 - }, - "time": "1250432212", - "type": 61 - }, - { - "phase": 2, - "source": { - "id": 235, - "type": 1 - }, - "time": "1250432212", - "type": 129 - }, - { - "phase": 1, - "source": { - "id": 235, - "type": 1 - }, - "time": "1250432212", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 235, - "type": 1 - }, - "time": "1250432212", - "type": 215 - }, - { - "params": { - "byte_count": 161 - }, - "phase": 0, - "source": { - "id": 244, - "type": 5 - }, - "time": "1250432214", - "type": 63 - }, - { - "phase": 2, - "source": { - "id": 235, - "type": 1 - }, - "time": "1250432214", - "type": 215 - }, - { - "params": { - "headers": [ - "HTTP/1.1 200 OK", - "Server: wptdriver", - "Cache: no-cache", - "Pragma: no-cache", - "Content-Type: application/json", - "Content-Length: 36" - ] - }, - "phase": 0, - "source": { - "id": 235, - "type": 1 - }, - "time": "1250432214", - "type": 135 - }, - { - "phase": 2, - "source": { - "id": 235, - "type": 1 - }, - "time": "1250432214", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 235, - "type": 1 - }, - "time": "1250432214", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 235, - "type": 1 - }, - "time": "1250432214", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 235, - "type": 1 - }, - "time": "1250432214", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 235, - "type": 1 - }, - "time": "1250432214", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 235, - "type": 1 - }, - "time": "1250432214", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 235, - "type": 1 - }, - "time": "1250432214", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 235, - "type": 1 - }, - "time": "1250432214", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 235, - "type": 1 - }, - "time": "1250432214", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 244, - "type": 5 - }, - "time": "1250432214", - "type": 38 - }, - { - "phase": 0, - "source": { - "id": 244, - "type": 5 - }, - "time": "1250432214", - "type": 67 - }, - { - "phase": 2, - "source": { - "id": 244, - "type": 5 - }, - "time": "1250432214", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 235, - "type": 1 - }, - "time": "1250432214", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 235, - "type": 1 - }, - "time": "1250432215", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 245, - "type": 1 - }, - "time": "1250432241", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 245, - "type": 1 - }, - "time": "1250432242", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 245, - "type": 1 - }, - "time": "1250432242", - "type": 93 - }, - { - "params": { - "load_flags": 131328, - "method": "POST", - "priority": "LOW", - "url": "http://127.0.0.1:8888/event/complete" - }, - "phase": 1, - "source": { - "id": 245, - "type": 1 - }, - "time": "1250432242", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 245, - "type": 1 - }, - "time": "1250432242", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 245, - "type": 1 - }, - "time": "1250432242", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 245, - "type": 1 - }, - "time": "1250432242", - "type": 99 - }, - { - "phase": 2, - "source": { - "id": 245, - "type": 1 - }, - "time": "1250432242", - "type": 99 - }, - { - "phase": 1, - "source": { - "id": 245, - "type": 1 - }, - "time": "1250432242", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 245, - "type": 1 - }, - "time": "1250432242", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 245, - "type": 1 - }, - "time": "1250432242", - "type": 120 - }, - { - "params": { - "original_url": "http://127.0.0.1:8888/", - "priority": "LOW", - "url": "http://127.0.0.1:8888/" - }, - "phase": 1, - "source": { - "id": 247, - "type": 12 - }, - "time": "1250432242", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 247, - "type": 12 - }, - "time": "1250432242", - "type": 24 - }, - { - "params": { - "pac_string": "DIRECT" - }, - "phase": 0, - "source": { - "id": 247, - "type": 12 - }, - "time": "1250432242", - "type": 26 - }, - { - "phase": 2, - "source": { - "id": 247, - "type": 12 - }, - "time": "1250432242", - "type": 24 - }, - { - "params": { - "source_dependency": { - "id": 248, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 247, - "type": 12 - }, - "time": "1250432242", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 247, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 248, - "type": 8 - }, - "time": "1250432242", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 248, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 249, - "type": 20 - }, - "time": "1250432242", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 249, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 250, - "type": 14 - }, - "time": "1250432242", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 250, - "type": 14 - }, - "time": "1250432242", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 250, - "type": 14 - }, - "time": "1250432243", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:53446" - }, - "phase": 0, - "source": { - "id": 250, - "type": 14 - }, - "time": "1250432243", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 250, - "type": 14 - }, - "time": "1250432243", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 249, - "type": 20 - }, - "time": "1250432243", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 248, - "type": 8 - }, - "time": "1250432243", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 248, - "type": 8 - }, - "time": "1250432243", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 247, - "type": 12 - }, - "time": "1250432243", - "type": 3 - }, - { - "params": { - "host_and_port": "127.0.0.1:8888" - }, - "phase": 0, - "source": { - "id": 247, - "type": 12 - }, - "time": "1250432243", - "type": 85 - }, - { - "phase": 1, - "source": { - "id": 247, - "type": 12 - }, - "time": "1250432243", - "type": 81 - }, - { - "params": { - "group_name": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 251, - "type": 4 - }, - "time": "1250432243", - "type": 77 - }, - { - "phase": 1, - "source": { - "id": 251, - "type": 4 - }, - "time": "1250432243", - "type": 78 - }, - { - "params": { - "source_dependency": { - "id": 252, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 251, - "type": 4 - }, - "time": "1250432243", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 251, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 252, - "type": 8 - }, - "time": "1250432243", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 252, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 253, - "type": 20 - }, - "time": "1250432243", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 253, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 254, - "type": 14 - }, - "time": "1250432243", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 254, - "type": 14 - }, - "time": "1250432243", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 254, - "type": 14 - }, - "time": "1250432243", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:53447" - }, - "phase": 0, - "source": { - "id": 254, - "type": 14 - }, - "time": "1250432243", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 254, - "type": 14 - }, - "time": "1250432243", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 253, - "type": 20 - }, - "time": "1250432243", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 252, - "type": 8 - }, - "time": "1250432243", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 252, - "type": 8 - }, - "time": "1250432243", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 251, - "type": 4 - }, - "time": "1250432243", - "type": 3 - }, - { - "params": { - "source_dependency": { - "id": 251, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 255, - "type": 5 - }, - "time": "1250432243", - "type": 34 - }, - { - "params": { - "address_list": [ - "127.0.0.1:8888" - ] - }, - "phase": 1, - "source": { - "id": 255, - "type": 5 - }, - "time": "1250432243", - "type": 35 - }, - { - "params": { - "address": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 255, - "type": 5 - }, - "time": "1250432243", - "type": 36 - }, - { - "phase": 2, - "source": { - "id": 255, - "type": 5 - }, - "time": "1250432246", - "type": 36 - }, - { - "params": { - "source_address": "127.0.0.1:50996" - }, - "phase": 2, - "source": { - "id": 255, - "type": 5 - }, - "time": "1250432246", - "type": 35 - }, - { - "params": { - "source_dependency": { - "id": 255, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 251, - "type": 4 - }, - "time": "1250432246", - "type": 79 - }, - { - "phase": 2, - "source": { - "id": 251, - "type": 4 - }, - "time": "1250432246", - "type": 78 - }, - { - "phase": 2, - "source": { - "id": 251, - "type": 4 - }, - "time": "1250432246", - "type": 77 - }, - { - "params": { - "source_dependency": { - "id": 251, - "type": 4 - } - }, - "phase": 0, - "source": { - "id": 247, - "type": 12 - }, - "time": "1250432246", - "type": 88 - }, - { - "params": { - "source_dependency": { - "id": 255, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 247, - "type": 12 - }, - "time": "1250432246", - "type": 89 - }, - { - "phase": 2, - "source": { - "id": 247, - "type": 12 - }, - "time": "1250432246", - "type": 81 - }, - { - "params": { - "source_dependency": { - "id": 247, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 255, - "type": 5 - }, - "time": "1250432246", - "type": 38 - }, - { - "params": { - "source_dependency": { - "id": 247, - "type": 12 - } - }, - "phase": 0, - "source": { - "id": 245, - "type": 1 - }, - "time": "1250432246", - "type": 122 - }, - { - "params": { - "source_dependency": { - "id": 245, - "type": 1 - } - }, - "phase": 0, - "source": { - "id": 247, - "type": 12 - }, - "time": "1250432246", - "type": 123 - }, - { - "phase": 2, - "source": { - "id": 245, - "type": 1 - }, - "time": "1250432246", - "type": 120 - }, - { - "phase": 2, - "source": { - "id": 247, - "type": 12 - }, - "time": "1250432246", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 245, - "type": 1 - }, - "time": "1250432246", - "type": 129 - }, - { - "params": { - "headers": [ - "Host: 127.0.0.1:8888", - "Connection: keep-alive", - "Content-Length: 0", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", - "Origin: chrome-extension://ejfgipfkkpdadoidbhfedneaabgolbno", - "Accept: */*", - "Accept-Encoding: gzip,deflate", - "Accept-Language: en-US,en;q=0.8" - ], - "line": "POST /event/complete HTTP/1.1\r\n" - }, - "phase": 0, - "source": { - "id": 245, - "type": 1 - }, - "time": "1250432246", - "type": 130 - }, - { - "params": { - "byte_count": 352 - }, - "phase": 0, - "source": { - "id": 255, - "type": 5 - }, - "time": "1250432247", - "type": 61 - }, - { - "phase": 2, - "source": { - "id": 245, - "type": 1 - }, - "time": "1250432247", - "type": 129 - }, - { - "phase": 1, - "source": { - "id": 245, - "type": 1 - }, - "time": "1250432247", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 245, - "type": 1 - }, - "time": "1250432247", - "type": 215 - }, - { - "params": { - "byte_count": 161 - }, - "phase": 0, - "source": { - "id": 255, - "type": 5 - }, - "time": "1250432247", - "type": 63 - }, - { - "phase": 2, - "source": { - "id": 245, - "type": 1 - }, - "time": "1250432247", - "type": 215 - }, - { - "params": { - "headers": [ - "HTTP/1.1 200 OK", - "Server: wptdriver", - "Cache: no-cache", - "Pragma: no-cache", - "Content-Type: application/json", - "Content-Length: 36" - ] - }, - "phase": 0, - "source": { - "id": 245, - "type": 1 - }, - "time": "1250432247", - "type": 135 - }, - { - "phase": 2, - "source": { - "id": 245, - "type": 1 - }, - "time": "1250432247", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 245, - "type": 1 - }, - "time": "1250432247", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 245, - "type": 1 - }, - "time": "1250432247", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 245, - "type": 1 - }, - "time": "1250432247", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 245, - "type": 1 - }, - "time": "1250432247", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 245, - "type": 1 - }, - "time": "1250432247", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 245, - "type": 1 - }, - "time": "1250432247", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 245, - "type": 1 - }, - "time": "1250432247", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 245, - "type": 1 - }, - "time": "1250432247", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 255, - "type": 5 - }, - "time": "1250432247", - "type": 38 - }, - { - "phase": 0, - "source": { - "id": 255, - "type": 5 - }, - "time": "1250432247", - "type": 67 - }, - { - "phase": 2, - "source": { - "id": 255, - "type": 5 - }, - "time": "1250432247", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 245, - "type": 1 - }, - "time": "1250432247", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 245, - "type": 1 - }, - "time": "1250432248", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432266", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432266", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432266", - "type": 93 - }, - { - "params": { - "load_flags": 67240192, - "method": "GET", - "priority": "LOWEST", - "url": "http://marcelduran.com/favicon.ico" - }, - "phase": 1, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432266", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432267", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432267", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432267", - "type": 99 - }, - { - "phase": 2, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432267", - "type": 99 - }, - { - "phase": 1, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432267", - "type": 100 - }, - { - "params": { - "net_error": -2 - }, - "phase": 2, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432267", - "type": 100 - }, - { - "phase": 1, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432267", - "type": 101 - }, - { - "params": { - "created": true, - "key": "http://marcelduran.com/favicon.ico" - }, - "phase": 1, - "source": { - "id": 258, - "type": 10 - }, - "time": "1250432267", - "type": 108 - }, - { - "phase": 2, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432267", - "type": 101 - }, - { - "phase": 1, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432267", - "type": 102 - }, - { - "phase": 2, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432267", - "type": 102 - }, - { - "phase": 1, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432267", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432267", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432267", - "type": 120 - }, - { - "params": { - "original_url": "http://marcelduran.com/", - "priority": "LOWEST", - "url": "http://marcelduran.com/" - }, - "phase": 1, - "source": { - "id": 259, - "type": 12 - }, - "time": "1250432267", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 259, - "type": 12 - }, - "time": "1250432267", - "type": 24 - }, - { - "params": { - "pac_string": "DIRECT" - }, - "phase": 0, - "source": { - "id": 259, - "type": 12 - }, - "time": "1250432267", - "type": 26 - }, - { - "phase": 2, - "source": { - "id": 259, - "type": 12 - }, - "time": "1250432267", - "type": 24 - }, - { - "params": { - "source_dependency": { - "id": 260, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 259, - "type": 12 - }, - "time": "1250432267", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "marcelduran.com:80", - "is_speculative": false, - "source_dependency": { - "id": 259, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 260, - "type": 8 - }, - "time": "1250432267", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 260, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 261, - "type": 20 - }, - "time": "1250432267", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 261, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 262, - "type": 14 - }, - "time": "1250432267", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 262, - "type": 14 - }, - "time": "1250432267", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 262, - "type": 14 - }, - "time": "1250432268", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:53448" - }, - "phase": 0, - "source": { - "id": 262, - "type": 14 - }, - "time": "1250432268", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 262, - "type": 14 - }, - "time": "1250432268", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 261, - "type": 20 - }, - "time": "1250432268", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 260, - "type": 8 - }, - "time": "1250432268", - "type": 5 - }, - { - "phase": 0, - "source": { - "id": 260, - "type": 8 - }, - "time": "1250432268", - "type": 6 - }, - { - "phase": 2, - "source": { - "id": 260, - "type": 8 - }, - "time": "1250432268", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 259, - "type": 12 - }, - "time": "1250432268", - "type": 3 - }, - { - "params": { - "host_and_port": "marcelduran.com:80" - }, - "phase": 0, - "source": { - "id": 259, - "type": 12 - }, - "time": "1250432268", - "type": 85 - }, - { - "phase": 1, - "source": { - "id": 259, - "type": 12 - }, - "time": "1250432268", - "type": 81 - }, - { - "params": { - "source_dependency": { - "id": 201, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 259, - "type": 12 - }, - "time": "1250432268", - "type": 89 - }, - { - "phase": 2, - "source": { - "id": 259, - "type": 12 - }, - "time": "1250432268", - "type": 81 - }, - { - "params": { - "source_dependency": { - "id": 259, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 201, - "type": 5 - }, - "time": "1250432268", - "type": 38 - }, - { - "params": { - "source_dependency": { - "id": 259, - "type": 12 - } - }, - "phase": 0, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432268", - "type": 122 - }, - { - "params": { - "source_dependency": { - "id": 256, - "type": 1 - } - }, - "phase": 0, - "source": { - "id": 259, - "type": 12 - }, - "time": "1250432268", - "type": 123 - }, - { - "phase": 2, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432268", - "type": 120 - }, - { - "phase": 2, - "source": { - "id": 259, - "type": 12 - }, - "time": "1250432268", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432268", - "type": 129 - }, - { - "params": { - "headers": [ - "Host: marcelduran.com", - "Connection: keep-alive", - "Accept: */*", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", - "Accept-Encoding: gzip,deflate,sdch", - "Accept-Language: en-US,en;q=0.8" - ], - "line": "GET /favicon.ico HTTP/1.1\r\n" - }, - "phase": 0, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432268", - "type": 130 - }, - { - "params": { - "byte_count": 274 - }, - "phase": 0, - "source": { - "id": 201, - "type": 5 - }, - "time": "1250432268", - "type": 61 - }, - { - "phase": 2, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432268", - "type": 129 - }, - { - "phase": 1, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432268", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432268", - "type": 215 - }, - { - "params": { - "byte_count": 1104 - }, - "phase": 0, - "source": { - "id": 201, - "type": 5 - }, - "time": "1250432305", - "type": 63 - }, - { - "phase": 2, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432305", - "type": 215 - }, - { - "params": { - "headers": [ - "HTTP/1.1 200 OK", - "Server: GitHub.com", - "Date: Fri, 26 Sep 2014 19:42:01 GMT", - "Content-Type: image/x-icon", - "Content-Length: 801", - "Last-Modified: Tue, 13 Aug 2013 23:46:37 GMT", - "Connection: close", - "Expires: Fri, 26 Sep 2014 19:52:01 GMT", - "Cache-Control: max-age=600", - "Vary: Accept-Encoding", - "Accept-Ranges: bytes" - ] - }, - "phase": 0, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432305", - "type": 135 - }, - { - "phase": 2, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432305", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432305", - "type": 105 - }, - { - "params": { - "buf_len": 348, - "index": 0, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 258, - "type": 10 - }, - "time": "1250432305", - "type": 111 - }, - { - "params": { - "bytes_copied": 348 - }, - "phase": 2, - "source": { - "id": 258, - "type": 10 - }, - "time": "1250432305", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432305", - "type": 105 - }, - { - "phase": 1, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432305", - "type": 107 - }, - { - "params": { - "buf_len": 0, - "index": 1, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 258, - "type": 10 - }, - "time": "1250432305", - "type": 111 - }, - { - "params": { - "bytes_copied": 0 - }, - "phase": 2, - "source": { - "id": 258, - "type": 10 - }, - "time": "1250432305", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432305", - "type": 107 - }, - { - "phase": 1, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432305", - "type": 105 - }, - { - "params": { - "buf_len": 0, - "index": 2, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 258, - "type": 10 - }, - "time": "1250432305", - "type": 111 - }, - { - "params": { - "bytes_copied": 0 - }, - "phase": 2, - "source": { - "id": 258, - "type": 10 - }, - "time": "1250432306", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432306", - "type": 105 - }, - { - "phase": 1, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432306", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432306", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432306", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432306", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432306", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432306", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432306", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432306", - "type": 107 - }, - { - "params": { - "buf_len": 801, - "index": 1, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 258, - "type": 10 - }, - "time": "1250432306", - "type": 111 - }, - { - "params": { - "bytes_copied": 801 - }, - "phase": 2, - "source": { - "id": 258, - "type": 10 - }, - "time": "1250432306", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432306", - "type": 107 - }, - { - "phase": 1, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432306", - "type": 136 - }, - { - "phase": 0, - "source": { - "id": 201, - "type": 5 - }, - "time": "1250432306", - "type": 67 - }, - { - "phase": 2, - "source": { - "id": 201, - "type": 5 - }, - "time": "1250432306", - "type": 38 - }, - { - "phase": 2, - "source": { - "id": 201, - "type": 5 - }, - "time": "1250432306", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432306", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432306", - "type": 107 - }, - { - "phase": 2, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432306", - "type": 107 - }, - { - "phase": 2, - "source": { - "id": 256, - "type": 1 - }, - "time": "1250432306", - "type": 2 - }, - { - "phase": 0, - "source": { - "id": 258, - "type": 10 - }, - "time": "1250432306", - "type": 118 - }, - { - "phase": 2, - "source": { - "id": 258, - "type": 10 - }, - "time": "1250432306", - "type": 108 - }, - { - "phase": 1, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432841", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432841", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432841", - "type": 93 - }, - { - "params": { - "load_flags": 131328, - "method": "GET", - "priority": "LOW", - "url": "http://127.0.0.1:8888/task" - }, - "phase": 1, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432841", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432842", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432842", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432842", - "type": 99 - }, - { - "phase": 2, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432842", - "type": 99 - }, - { - "phase": 1, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432842", - "type": 100 - }, - { - "params": { - "created": false, - "key": "http://127.0.0.1:8888/task" - }, - "phase": 1, - "source": { - "id": 264, - "type": 10 - }, - "time": "1250432842", - "type": 108 - }, - { - "phase": 2, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432842", - "type": 100 - }, - { - "phase": 1, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432842", - "type": 102 - }, - { - "phase": 2, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432842", - "type": 102 - }, - { - "phase": 1, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432842", - "type": 104 - }, - { - "params": { - "buf_len": 172, - "index": 0, - "offset": 0 - }, - "phase": 1, - "source": { - "id": 264, - "type": 10 - }, - "time": "1250432842", - "type": 110 - }, - { - "params": { - "bytes_copied": 172 - }, - "phase": 2, - "source": { - "id": 264, - "type": 10 - }, - "time": "1250432842", - "type": 110 - }, - { - "phase": 2, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432842", - "type": 104 - }, - { - "phase": 1, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432842", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432842", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432842", - "type": 120 - }, - { - "params": { - "original_url": "http://127.0.0.1:8888/", - "priority": "LOW", - "url": "http://127.0.0.1:8888/" - }, - "phase": 1, - "source": { - "id": 265, - "type": 12 - }, - "time": "1250432842", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 265, - "type": 12 - }, - "time": "1250432842", - "type": 24 - }, - { - "params": { - "pac_string": "DIRECT" - }, - "phase": 0, - "source": { - "id": 265, - "type": 12 - }, - "time": "1250432842", - "type": 26 - }, - { - "phase": 2, - "source": { - "id": 265, - "type": 12 - }, - "time": "1250432842", - "type": 24 - }, - { - "params": { - "source_dependency": { - "id": 266, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 265, - "type": 12 - }, - "time": "1250432842", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 265, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 266, - "type": 8 - }, - "time": "1250432842", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 266, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 267, - "type": 20 - }, - "time": "1250432842", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 267, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 268, - "type": 14 - }, - "time": "1250432842", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 268, - "type": 14 - }, - "time": "1250432842", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 268, - "type": 14 - }, - "time": "1250432843", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:53449" - }, - "phase": 0, - "source": { - "id": 268, - "type": 14 - }, - "time": "1250432843", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 268, - "type": 14 - }, - "time": "1250432843", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 267, - "type": 20 - }, - "time": "1250432843", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 266, - "type": 8 - }, - "time": "1250432843", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 266, - "type": 8 - }, - "time": "1250432843", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 265, - "type": 12 - }, - "time": "1250432843", - "type": 3 - }, - { - "params": { - "host_and_port": "127.0.0.1:8888" - }, - "phase": 0, - "source": { - "id": 265, - "type": 12 - }, - "time": "1250432843", - "type": 85 - }, - { - "phase": 1, - "source": { - "id": 265, - "type": 12 - }, - "time": "1250432843", - "type": 81 - }, - { - "params": { - "group_name": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 269, - "type": 4 - }, - "time": "1250432843", - "type": 77 - }, - { - "phase": 1, - "source": { - "id": 269, - "type": 4 - }, - "time": "1250432843", - "type": 78 - }, - { - "params": { - "source_dependency": { - "id": 270, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 269, - "type": 4 - }, - "time": "1250432843", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 269, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 270, - "type": 8 - }, - "time": "1250432843", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 270, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 271, - "type": 20 - }, - "time": "1250432843", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 271, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 272, - "type": 14 - }, - "time": "1250432843", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 272, - "type": 14 - }, - "time": "1250432843", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 272, - "type": 14 - }, - "time": "1250432843", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:53450" - }, - "phase": 0, - "source": { - "id": 272, - "type": 14 - }, - "time": "1250432843", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 272, - "type": 14 - }, - "time": "1250432843", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 271, - "type": 20 - }, - "time": "1250432843", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 270, - "type": 8 - }, - "time": "1250432843", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 270, - "type": 8 - }, - "time": "1250432843", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 269, - "type": 4 - }, - "time": "1250432843", - "type": 3 - }, - { - "params": { - "source_dependency": { - "id": 269, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 273, - "type": 5 - }, - "time": "1250432843", - "type": 34 - }, - { - "params": { - "address_list": [ - "127.0.0.1:8888" - ] - }, - "phase": 1, - "source": { - "id": 273, - "type": 5 - }, - "time": "1250432843", - "type": 35 - }, - { - "params": { - "address": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 273, - "type": 5 - }, - "time": "1250432843", - "type": 36 - }, - { - "phase": 2, - "source": { - "id": 273, - "type": 5 - }, - "time": "1250432846", - "type": 36 - }, - { - "params": { - "source_address": "127.0.0.1:50997" - }, - "phase": 2, - "source": { - "id": 273, - "type": 5 - }, - "time": "1250432846", - "type": 35 - }, - { - "params": { - "source_dependency": { - "id": 273, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 269, - "type": 4 - }, - "time": "1250432846", - "type": 79 - }, - { - "phase": 2, - "source": { - "id": 269, - "type": 4 - }, - "time": "1250432846", - "type": 78 - }, - { - "phase": 2, - "source": { - "id": 269, - "type": 4 - }, - "time": "1250432846", - "type": 77 - }, - { - "params": { - "source_dependency": { - "id": 269, - "type": 4 - } - }, - "phase": 0, - "source": { - "id": 265, - "type": 12 - }, - "time": "1250432846", - "type": 88 - }, - { - "params": { - "source_dependency": { - "id": 273, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 265, - "type": 12 - }, - "time": "1250432846", - "type": 89 - }, - { - "phase": 2, - "source": { - "id": 265, - "type": 12 - }, - "time": "1250432846", - "type": 81 - }, - { - "params": { - "source_dependency": { - "id": 265, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 273, - "type": 5 - }, - "time": "1250432846", - "type": 38 - }, - { - "params": { - "source_dependency": { - "id": 265, - "type": 12 - } - }, - "phase": 0, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432846", - "type": 122 - }, - { - "params": { - "source_dependency": { - "id": 263, - "type": 1 - } - }, - "phase": 0, - "source": { - "id": 265, - "type": 12 - }, - "time": "1250432846", - "type": 123 - }, - { - "phase": 2, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432846", - "type": 120 - }, - { - "phase": 2, - "source": { - "id": 265, - "type": 12 - }, - "time": "1250432846", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432847", - "type": 129 - }, - { - "params": { - "headers": [ - "Host: 127.0.0.1:8888", - "Connection: keep-alive", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", - "Accept: */*", - "Accept-Encoding: gzip,deflate,sdch", - "Accept-Language: en-US,en;q=0.8" - ], - "line": "GET /task HTTP/1.1\r\n" - }, - "phase": 0, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432847", - "type": 130 - }, - { - "params": { - "byte_count": 266 - }, - "phase": 0, - "source": { - "id": 273, - "type": 5 - }, - "time": "1250432847", - "type": 61 - }, - { - "phase": 2, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432847", - "type": 129 - }, - { - "phase": 1, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432847", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432847", - "type": 215 - }, - { - "params": { - "byte_count": 161 - }, - "phase": 0, - "source": { - "id": 273, - "type": 5 - }, - "time": "1250432847", - "type": 63 - }, - { - "phase": 2, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432847", - "type": 215 - }, - { - "params": { - "headers": [ - "HTTP/1.1 200 OK", - "Server: wptdriver", - "Cache: no-cache", - "Pragma: no-cache", - "Content-Type: application/json", - "Content-Length: 36" - ] - }, - "phase": 0, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432847", - "type": 135 - }, - { - "phase": 2, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432847", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432847", - "type": 105 - }, - { - "params": { - "buf_len": 172, - "index": 0, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 264, - "type": 10 - }, - "time": "1250432847", - "type": 111 - }, - { - "params": { - "bytes_copied": 172 - }, - "phase": 2, - "source": { - "id": 264, - "type": 10 - }, - "time": "1250432847", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432847", - "type": 105 - }, - { - "phase": 1, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432847", - "type": 107 - }, - { - "params": { - "buf_len": 0, - "index": 1, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 264, - "type": 10 - }, - "time": "1250432848", - "type": 111 - }, - { - "params": { - "bytes_copied": 0 - }, - "phase": 2, - "source": { - "id": 264, - "type": 10 - }, - "time": "1250432848", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432848", - "type": 107 - }, - { - "phase": 1, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432848", - "type": 105 - }, - { - "params": { - "buf_len": 0, - "index": 2, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 264, - "type": 10 - }, - "time": "1250432848", - "type": 111 - }, - { - "params": { - "bytes_copied": 0 - }, - "phase": 2, - "source": { - "id": 264, - "type": 10 - }, - "time": "1250432848", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432848", - "type": 105 - }, - { - "phase": 1, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432848", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432848", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432848", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432848", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432848", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432848", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432848", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432848", - "type": 107 - }, - { - "params": { - "buf_len": 36, - "index": 1, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 264, - "type": 10 - }, - "time": "1250432848", - "type": 111 - }, - { - "params": { - "bytes_copied": 36 - }, - "phase": 2, - "source": { - "id": 264, - "type": 10 - }, - "time": "1250432848", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432848", - "type": 107 - }, - { - "phase": 1, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432848", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 273, - "type": 5 - }, - "time": "1250432848", - "type": 38 - }, - { - "phase": 0, - "source": { - "id": 273, - "type": 5 - }, - "time": "1250432848", - "type": 67 - }, - { - "phase": 2, - "source": { - "id": 273, - "type": 5 - }, - "time": "1250432848", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432848", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432848", - "type": 107 - }, - { - "phase": 2, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432848", - "type": 107 - }, - { - "phase": 2, - "source": { - "id": 263, - "type": 1 - }, - "time": "1250432849", - "type": 2 - }, - { - "phase": 0, - "source": { - "id": 264, - "type": 10 - }, - "time": "1250432849", - "type": 118 - }, - { - "phase": 2, - "source": { - "id": 264, - "type": 10 - }, - "time": "1250432849", - "type": 108 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250433840", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250433840", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250433840", - "type": 93 - }, - { - "params": { - "load_flags": 64, - "method": "GET", - "priority": "LOWEST", - "url": "https://ssl.gstatic.com/safebrowsing/csd/client_model_v5.pb" - }, - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250433840", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250433850", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250433850", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250433850", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250433850", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250433850", - "type": 120 - }, - { - "params": { - "original_url": "https://ssl.gstatic.com/", - "priority": "LOWEST", - "url": "https://ssl.gstatic.com/" - }, - "phase": 1, - "source": { - "id": 276, - "type": 12 - }, - "time": "1250433851", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 276, - "type": 12 - }, - "time": "1250433851", - "type": 24 - }, - { - "params": { - "new_config": { - "source": "UNKNOWN" - } - }, - "phase": 0, - "source": { - "id": 277, - "type": 0 - }, - "time": "1250433851", - "type": 27 - }, - { - "params": { - "pac_string": "DIRECT" - }, - "phase": 0, - "source": { - "id": 276, - "type": 12 - }, - "time": "1250433851", - "type": 26 - }, - { - "phase": 2, - "source": { - "id": 276, - "type": 12 - }, - "time": "1250433851", - "type": 24 - }, - { - "params": { - "source_dependency": { - "id": 278, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 276, - "type": 12 - }, - "time": "1250433851", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "ssl.gstatic.com:443", - "is_speculative": false, - "source_dependency": { - "id": 276, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 278, - "type": 8 - }, - "time": "1250433851", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 278, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 279, - "type": 20 - }, - "time": "1250433851", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 279, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 280, - "type": 14 - }, - "time": "1250433851", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 280, - "type": 14 - }, - "time": "1250433851", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 280, - "type": 14 - }, - "time": "1250433851", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:53451" - }, - "phase": 0, - "source": { - "id": 280, - "type": 14 - }, - "time": "1250433851", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 280, - "type": 14 - }, - "time": "1250433851", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 279, - "type": 20 - }, - "time": "1250433851", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 278, - "type": 8 - }, - "time": "1250433851", - "type": 5 - }, - { - "params": { - "net_error": -804 - }, - "phase": 2, - "source": { - "id": 278, - "type": 8 - }, - "time": "1250433851", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 276, - "type": 12 - }, - "time": "1250433851", - "type": 3 - }, - { - "phase": 1, - "source": { - "id": 276, - "type": 12 - }, - "time": "1250433851", - "type": 81 - }, - { - "params": { - "group_name": "ssl/ssl.gstatic.com:443" - }, - "phase": 1, - "source": { - "id": 281, - "type": 4 - }, - "time": "1250433851", - "type": 77 - }, - { - "phase": 1, - "source": { - "id": 281, - "type": 4 - }, - "time": "1250433851", - "type": 78 - }, - { - "params": { - "host_and_port": "ssl.gstatic.com:443" - }, - "phase": 0, - "source": { - "id": 281, - "type": 4 - }, - "time": "1250433851", - "type": 85 - }, - { - "phase": 1, - "source": { - "id": 281, - "type": 4 - }, - "time": "1250433851", - "type": 81 - }, - { - "params": { - "group_name": "ssl/ssl.gstatic.com:443" - }, - "phase": 1, - "source": { - "id": 282, - "type": 4 - }, - "time": "1250433851", - "type": 77 - }, - { - "phase": 1, - "source": { - "id": 282, - "type": 4 - }, - "time": "1250433851", - "type": 78 - }, - { - "params": { - "source_dependency": { - "id": 283, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 282, - "type": 4 - }, - "time": "1250433851", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "ssl.gstatic.com:443", - "is_speculative": false, - "source_dependency": { - "id": 282, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 283, - "type": 8 - }, - "time": "1250433851", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 283, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 284, - "type": 20 - }, - "time": "1250433851", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 284, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 285, - "type": 14 - }, - "time": "1250433851", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 285, - "type": 14 - }, - "time": "1250433851", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 285, - "type": 14 - }, - "time": "1250433851", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:53452" - }, - "phase": 0, - "source": { - "id": 285, - "type": 14 - }, - "time": "1250433851", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 285, - "type": 14 - }, - "time": "1250433851", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 284, - "type": 20 - }, - "time": "1250433851", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 283, - "type": 8 - }, - "time": "1250433851", - "type": 5 - }, - { - "phase": 0, - "source": { - "id": 283, - "type": 8 - }, - "time": "1250433851", - "type": 8 - }, - { - "params": { - "host": "ssl.gstatic.com", - "source_dependency": { - "id": 283, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 286, - "type": 9 - }, - "time": "1250433851", - "type": 9 - }, - { - "phase": 0, - "source": { - "id": 286, - "type": 9 - }, - "time": "1250433851", - "type": 11 - }, - { - "phase": 1, - "source": { - "id": 286, - "type": 9 - }, - "time": "1250433851", - "type": 17 - }, - { - "params": { - "attempt_number": 1 - }, - "phase": 0, - "source": { - "id": 286, - "type": 9 - }, - "time": "1250433851", - "type": 12 - }, - { - "params": { - "source_dependency": { - "id": 286, - "type": 9 - } - }, - "phase": 0, - "source": { - "id": 283, - "type": 8 - }, - "time": "1250433851", - "type": 14 - }, - { - "params": { - "priority": "LOWEST", - "source_dependency": { - "id": 283, - "type": 8 - } - }, - "phase": 0, - "source": { - "id": 286, - "type": 9 - }, - "time": "1250433851", - "type": 15 - }, - { - "phase": 1, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433870", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433870", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433870", - "type": 93 - }, - { - "params": { - "load_flags": 131328, - "method": "GET", - "priority": "LOW", - "url": "http://127.0.0.1:8888/task" - }, - "phase": 1, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433870", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433870", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433870", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433870", - "type": 99 - }, - { - "phase": 2, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433870", - "type": 99 - }, - { - "phase": 1, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433870", - "type": 100 - }, - { - "params": { - "created": false, - "key": "http://127.0.0.1:8888/task" - }, - "phase": 1, - "source": { - "id": 288, - "type": 10 - }, - "time": "1250433870", - "type": 108 - }, - { - "phase": 2, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433870", - "type": 100 - }, - { - "phase": 1, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433870", - "type": 102 - }, - { - "phase": 2, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433870", - "type": 102 - }, - { - "phase": 1, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433870", - "type": 104 - }, - { - "params": { - "buf_len": 172, - "index": 0, - "offset": 0 - }, - "phase": 1, - "source": { - "id": 288, - "type": 10 - }, - "time": "1250433870", - "type": 110 - }, - { - "params": { - "bytes_copied": 172 - }, - "phase": 2, - "source": { - "id": 288, - "type": 10 - }, - "time": "1250433870", - "type": 110 - }, - { - "phase": 2, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433870", - "type": 104 - }, - { - "phase": 1, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433870", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433870", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433870", - "type": 120 - }, - { - "params": { - "original_url": "http://127.0.0.1:8888/", - "priority": "LOW", - "url": "http://127.0.0.1:8888/" - }, - "phase": 1, - "source": { - "id": 289, - "type": 12 - }, - "time": "1250433870", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 289, - "type": 12 - }, - "time": "1250433870", - "type": 24 - }, - { - "params": { - "pac_string": "DIRECT" - }, - "phase": 0, - "source": { - "id": 289, - "type": 12 - }, - "time": "1250433870", - "type": 26 - }, - { - "phase": 2, - "source": { - "id": 289, - "type": 12 - }, - "time": "1250433870", - "type": 24 - }, - { - "params": { - "source_dependency": { - "id": 290, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 289, - "type": 12 - }, - "time": "1250433870", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 289, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 290, - "type": 8 - }, - "time": "1250433870", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 290, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 291, - "type": 20 - }, - "time": "1250433870", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 291, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 292, - "type": 14 - }, - "time": "1250433870", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 292, - "type": 14 - }, - "time": "1250433870", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 292, - "type": 14 - }, - "time": "1250433871", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:57789" - }, - "phase": 0, - "source": { - "id": 292, - "type": 14 - }, - "time": "1250433871", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 292, - "type": 14 - }, - "time": "1250433871", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 291, - "type": 20 - }, - "time": "1250433871", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 290, - "type": 8 - }, - "time": "1250433871", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 290, - "type": 8 - }, - "time": "1250433871", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 289, - "type": 12 - }, - "time": "1250433871", - "type": 3 - }, - { - "params": { - "host_and_port": "127.0.0.1:8888" - }, - "phase": 0, - "source": { - "id": 289, - "type": 12 - }, - "time": "1250433871", - "type": 85 - }, - { - "phase": 1, - "source": { - "id": 289, - "type": 12 - }, - "time": "1250433871", - "type": 81 - }, - { - "params": { - "group_name": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 293, - "type": 4 - }, - "time": "1250433871", - "type": 77 - }, - { - "phase": 1, - "source": { - "id": 293, - "type": 4 - }, - "time": "1250433871", - "type": 78 - }, - { - "params": { - "source_dependency": { - "id": 294, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 293, - "type": 4 - }, - "time": "1250433871", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 293, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 294, - "type": 8 - }, - "time": "1250433871", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 294, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 295, - "type": 20 - }, - "time": "1250433871", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 295, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 296, - "type": 14 - }, - "time": "1250433871", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 296, - "type": 14 - }, - "time": "1250433871", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 296, - "type": 14 - }, - "time": "1250433871", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:57790" - }, - "phase": 0, - "source": { - "id": 296, - "type": 14 - }, - "time": "1250433871", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 296, - "type": 14 - }, - "time": "1250433871", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 295, - "type": 20 - }, - "time": "1250433871", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 294, - "type": 8 - }, - "time": "1250433871", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 294, - "type": 8 - }, - "time": "1250433871", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 293, - "type": 4 - }, - "time": "1250433871", - "type": 3 - }, - { - "params": { - "source_dependency": { - "id": 293, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 297, - "type": 5 - }, - "time": "1250433871", - "type": 34 - }, - { - "params": { - "address_list": [ - "127.0.0.1:8888" - ] - }, - "phase": 1, - "source": { - "id": 297, - "type": 5 - }, - "time": "1250433871", - "type": 35 - }, - { - "params": { - "address": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 297, - "type": 5 - }, - "time": "1250433871", - "type": 36 - }, - { - "phase": 2, - "source": { - "id": 297, - "type": 5 - }, - "time": "1250433871", - "type": 36 - }, - { - "params": { - "source_address": "127.0.0.1:50998" - }, - "phase": 2, - "source": { - "id": 297, - "type": 5 - }, - "time": "1250433871", - "type": 35 - }, - { - "params": { - "source_dependency": { - "id": 297, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 293, - "type": 4 - }, - "time": "1250433871", - "type": 79 - }, - { - "phase": 2, - "source": { - "id": 293, - "type": 4 - }, - "time": "1250433871", - "type": 78 - }, - { - "phase": 2, - "source": { - "id": 293, - "type": 4 - }, - "time": "1250433871", - "type": 77 - }, - { - "params": { - "source_dependency": { - "id": 293, - "type": 4 - } - }, - "phase": 0, - "source": { - "id": 289, - "type": 12 - }, - "time": "1250433871", - "type": 88 - }, - { - "params": { - "source_dependency": { - "id": 297, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 289, - "type": 12 - }, - "time": "1250433871", - "type": 89 - }, - { - "phase": 2, - "source": { - "id": 289, - "type": 12 - }, - "time": "1250433871", - "type": 81 - }, - { - "params": { - "source_dependency": { - "id": 289, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 297, - "type": 5 - }, - "time": "1250433871", - "type": 38 - }, - { - "params": { - "source_dependency": { - "id": 289, - "type": 12 - } - }, - "phase": 0, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433872", - "type": 122 - }, - { - "params": { - "source_dependency": { - "id": 287, - "type": 1 - } - }, - "phase": 0, - "source": { - "id": 289, - "type": 12 - }, - "time": "1250433872", - "type": 123 - }, - { - "phase": 2, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433872", - "type": 120 - }, - { - "phase": 2, - "source": { - "id": 289, - "type": 12 - }, - "time": "1250433872", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433872", - "type": 129 - }, - { - "params": { - "headers": [ - "Host: 127.0.0.1:8888", - "Connection: keep-alive", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", - "Accept: */*", - "Accept-Encoding: gzip,deflate,sdch", - "Accept-Language: en-US,en;q=0.8" - ], - "line": "GET /task HTTP/1.1\r\n" - }, - "phase": 0, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433872", - "type": 130 - }, - { - "params": { - "byte_count": 266 - }, - "phase": 0, - "source": { - "id": 297, - "type": 5 - }, - "time": "1250433872", - "type": 61 - }, - { - "phase": 2, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433872", - "type": 129 - }, - { - "phase": 1, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433872", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433872", - "type": 215 - }, - { - "params": { - "byte_count": 161 - }, - "phase": 0, - "source": { - "id": 297, - "type": 5 - }, - "time": "1250433872", - "type": 63 - }, - { - "phase": 2, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433872", - "type": 215 - }, - { - "params": { - "headers": [ - "HTTP/1.1 200 OK", - "Server: wptdriver", - "Cache: no-cache", - "Pragma: no-cache", - "Content-Type: application/json", - "Content-Length: 36" - ] - }, - "phase": 0, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433872", - "type": 135 - }, - { - "phase": 2, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433872", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433872", - "type": 105 - }, - { - "params": { - "buf_len": 172, - "index": 0, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 288, - "type": 10 - }, - "time": "1250433872", - "type": 111 - }, - { - "params": { - "bytes_copied": 172 - }, - "phase": 2, - "source": { - "id": 288, - "type": 10 - }, - "time": "1250433872", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433872", - "type": 105 - }, - { - "phase": 1, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433872", - "type": 107 - }, - { - "params": { - "buf_len": 0, - "index": 1, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 288, - "type": 10 - }, - "time": "1250433872", - "type": 111 - }, - { - "params": { - "bytes_copied": 0 - }, - "phase": 2, - "source": { - "id": 288, - "type": 10 - }, - "time": "1250433872", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433872", - "type": 107 - }, - { - "phase": 1, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433872", - "type": 105 - }, - { - "params": { - "buf_len": 0, - "index": 2, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 288, - "type": 10 - }, - "time": "1250433872", - "type": 111 - }, - { - "params": { - "bytes_copied": 0 - }, - "phase": 2, - "source": { - "id": 288, - "type": 10 - }, - "time": "1250433872", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433872", - "type": 105 - }, - { - "phase": 1, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433872", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433872", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433872", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433872", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433872", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433872", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433872", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433872", - "type": 107 - }, - { - "params": { - "buf_len": 36, - "index": 1, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 288, - "type": 10 - }, - "time": "1250433872", - "type": 111 - }, - { - "params": { - "bytes_copied": 36 - }, - "phase": 2, - "source": { - "id": 288, - "type": 10 - }, - "time": "1250433873", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433873", - "type": 107 - }, - { - "phase": 1, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433873", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 297, - "type": 5 - }, - "time": "1250433873", - "type": 38 - }, - { - "phase": 0, - "source": { - "id": 297, - "type": 5 - }, - "time": "1250433873", - "type": 67 - }, - { - "phase": 2, - "source": { - "id": 297, - "type": 5 - }, - "time": "1250433873", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433873", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433873", - "type": 107 - }, - { - "phase": 2, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433873", - "type": 107 - }, - { - "phase": 2, - "source": { - "id": 287, - "type": 1 - }, - "time": "1250433873", - "type": 2 - }, - { - "phase": 0, - "source": { - "id": 288, - "type": 10 - }, - "time": "1250433873", - "type": 118 - }, - { - "phase": 2, - "source": { - "id": 288, - "type": 10 - }, - "time": "1250433873", - "type": 108 - }, - { - "params": { - "attempt_number": 1 - }, - "phase": 0, - "source": { - "id": 286, - "type": 9 - }, - "time": "1250433890", - "type": 13 - }, - { - "params": { - "address_list": [ - "173.194.121.24:0", - "173.194.121.31:0", - "173.194.121.15:0", - "173.194.121.23:0" - ] - }, - "phase": 2, - "source": { - "id": 286, - "type": 9 - }, - "time": "1250433890", - "type": 17 - }, - { - "phase": 2, - "source": { - "id": 286, - "type": 9 - }, - "time": "1250433890", - "type": 9 - }, - { - "phase": 2, - "source": { - "id": 283, - "type": 8 - }, - "time": "1250433890", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 282, - "type": 4 - }, - "time": "1250433890", - "type": 3 - }, - { - "params": { - "source_dependency": { - "id": 298, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 282, - "type": 4 - }, - "time": "1250433890", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "ssl.gstatic.com:443", - "is_speculative": false, - "source_dependency": { - "id": 282, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 298, - "type": 8 - }, - "time": "1250433890", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 298, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 299, - "type": 20 - }, - "time": "1250433890", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 299, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 300, - "type": 14 - }, - "time": "1250433890", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 300, - "type": 14 - }, - "time": "1250433890", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 300, - "type": 14 - }, - "time": "1250433890", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:57791" - }, - "phase": 0, - "source": { - "id": 300, - "type": 14 - }, - "time": "1250433890", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 300, - "type": 14 - }, - "time": "1250433890", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 299, - "type": 20 - }, - "time": "1250433890", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 298, - "type": 8 - }, - "time": "1250433890", - "type": 5 - }, - { - "phase": 0, - "source": { - "id": 298, - "type": 8 - }, - "time": "1250433890", - "type": 6 - }, - { - "phase": 2, - "source": { - "id": 298, - "type": 8 - }, - "time": "1250433890", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 282, - "type": 4 - }, - "time": "1250433890", - "type": 3 - }, - { - "params": { - "source_dependency": { - "id": 282, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250433890", - "type": 34 - }, - { - "params": { - "address_list": [ - "173.194.121.24:443", - "173.194.121.31:443", - "173.194.121.15:443", - "173.194.121.23:443" - ] - }, - "phase": 1, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250433890", - "type": 35 - }, - { - "params": { - "address": "173.194.121.24:443" - }, - "phase": 1, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250433890", - "type": 36 - }, - { - "phase": 2, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250433927", - "type": 36 - }, - { - "params": { - "source_address": "192.168.102.82:50999" - }, - "phase": 2, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250433927", - "type": 35 - }, - { - "params": { - "source_dependency": { - "id": 301, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 282, - "type": 4 - }, - "time": "1250433927", - "type": 79 - }, - { - "phase": 2, - "source": { - "id": 282, - "type": 4 - }, - "time": "1250433927", - "type": 78 - }, - { - "phase": 2, - "source": { - "id": 282, - "type": 4 - }, - "time": "1250433927", - "type": 77 - }, - { - "params": { - "source_dependency": { - "id": 282, - "type": 4 - } - }, - "phase": 0, - "source": { - "id": 281, - "type": 4 - }, - "time": "1250433927", - "type": 88 - }, - { - "params": { - "source_dependency": { - "id": 301, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 281, - "type": 4 - }, - "time": "1250433927", - "type": 89 - }, - { - "phase": 2, - "source": { - "id": 281, - "type": 4 - }, - "time": "1250433927", - "type": 81 - }, - { - "params": { - "source_dependency": { - "id": 281, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250433927", - "type": 38 - }, - { - "phase": 1, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250433927", - "type": 48 - }, - { - "params": { - "byte_count": 215 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250433928", - "type": 61 - }, - { - "params": { - "byte_count": 3896 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250433969", - "type": 63 - }, - { - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250433969", - "type": 52 - }, - { - "phase": 1, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250433969", - "type": 51 - }, - { - "phase": 2, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250433975", - "type": 51 - }, - { - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250433975", - "type": 53 - }, - { - "params": { - "certificates": [ - "-----BEGIN CERTIFICATE-----\nMIIGrzCCBZegAwIBAgIId3X9Tn29Wk4wDQYJKoZIhvcNAQEFBQAwSTELMAkGA1UE\nBhMCVVMxEzARBgNVBAoTCkdvb2dsZSBJbmMxJTAjBgNVBAMTHEdvb2dsZSBJbnRl\ncm5ldCBBdXRob3JpdHkgRzIwHhcNMTQwOTEwMTMzMTQ1WhcNMTQxMjA5MDAwMDAw\nWjBmMQswCQYDVQQGEwJVUzETMBEGA1UECAwKQ2FsaWZvcm5pYTEWMBQGA1UEBwwN\nTW91bnRhaW4gVmlldzETMBEGA1UECgwKR29vZ2xlIEluYzEVMBMGA1UEAwwMKi5n\nb29nbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEs0l2VnP+s/x9vpxg\nGU/Gph+htOAjGVjzmfL86IJog64QuYRJduLGXCrOvXl0IDtblcjpnqNNOSXIIZ/Y\n8/SpxKOCBEcwggRDMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjCCAxAG\nA1UdEQSCAwcwggMDggwqLmdvb2dsZS5jb22CDSouYW5kcm9pZC5jb22CFiouYXBw\nZW5naW5lLmdvb2dsZS5jb22CEiouY2xvdWQuZ29vZ2xlLmNvbYIWKi5nb29nbGUt\nYW5hbHl0aWNzLmNvbYILKi5nb29nbGUuY2GCCyouZ29vZ2xlLmNsgg4qLmdvb2ds\nZS5jby5pboIOKi5nb29nbGUuY28uanCCDiouZ29vZ2xlLmNvLnVrgg8qLmdvb2ds\nZS5jb20uYXKCDyouZ29vZ2xlLmNvbS5hdYIPKi5nb29nbGUuY29tLmJygg8qLmdv\nb2dsZS5jb20uY2+CDyouZ29vZ2xlLmNvbS5teIIPKi5nb29nbGUuY29tLnRygg8q\nLmdvb2dsZS5jb20udm6CCyouZ29vZ2xlLmRlggsqLmdvb2dsZS5lc4ILKi5nb29n\nbGUuZnKCCyouZ29vZ2xlLmh1ggsqLmdvb2dsZS5pdIILKi5nb29nbGUubmyCCyou\nZ29vZ2xlLnBsggsqLmdvb2dsZS5wdIISKi5nb29nbGVhZGFwaXMuY29tgg8qLmdv\nb2dsZWFwaXMuY26CFCouZ29vZ2xlY29tbWVyY2UuY29tghEqLmdvb2dsZXZpZGVv\nLmNvbYIMKi5nc3RhdGljLmNugg0qLmdzdGF0aWMuY29tggoqLmd2dDEuY29tggoq\nLmd2dDIuY29tggwqLnVyY2hpbi5jb22CECoudXJsLmdvb2dsZS5jb22CFioueW91\ndHViZS1ub2Nvb2tpZS5jb22CDSoueW91dHViZS5jb22CFioueW91dHViZWVkdWNh\ndGlvbi5jb22CCyoueXRpbWcuY29tggthbmRyb2lkLmNvbYIEZy5jb4IGZ29vLmds\nghRnb29nbGUtYW5hbHl0aWNzLmNvbYIKZ29vZ2xlLmNvbYISZ29vZ2xlY29tbWVy\nY2UuY29tggp1cmNoaW4uY29tggh5b3V0dS5iZYILeW91dHViZS5jb22CFHlvdXR1\nYmVlZHVjYXRpb24uY29tMAsGA1UdDwQEAwIHgDBoBggrBgEFBQcBAQRcMFowKwYI\nKwYBBQUHMAKGH2h0dHA6Ly9wa2kuZ29vZ2xlLmNvbS9HSUFHMi5jcnQwKwYIKwYB\nBQUHMAGGH2h0dHA6Ly9jbGllbnRzMS5nb29nbGUuY29tL29jc3AwHQYDVR0OBBYE\nFEf0J4rvoWtxDt0WHpSOWAiKZvviMAwGA1UdEwEB/wQCMAAwHwYDVR0jBBgwFoAU\nSt0GFhu89mi1dvWBtrtiGrpagS8wFwYDVR0gBBAwDjAMBgorBgEEAdZ5AgUBMDAG\nA1UdHwQpMCcwJaAjoCGGH2h0dHA6Ly9wa2kuZ29vZ2xlLmNvbS9HSUFHMi5jcmww\nDQYJKoZIhvcNAQEFBQADggEBAGIjdi4mWuMB/E1rTZ4+1hBiwvC7zeHPldFHSQ+X\nMYWDD3Nu2AWILzpyNmNPWMj1F4Kbfnnfhnqzesb5Wx37vvUrbN0JtlEVgF7Lp831\nHMm4/kcehWvHpdriDK0xuV3iDQnkCYbxoxf9gYLi3f5LOPmmEsMD4mfrFFq/Lqi6\nle2OqQXcJ8YQilUymsKtSNGo6AfmoLbQAMcadTcEUVeTgyu2CTcpAvMYnbk89jWg\nnBOADE7uiZkz0LazVhJm9kRztnIcltb0S7Y9bKFUBGrHE+jQmuaMFzRtkgMcDUN7\n/bZdSv8bOm+FyW47cmqTn3FJIWatzoZXBpo+5v/ecVM0RUw=\n-----END CERTIFICATE-----\n", - "-----BEGIN CERTIFICATE-----\nMIID8DCCAtigAwIBAgIDAjp2MA0GCSqGSIb3DQEBBQUAMEIxCzAJBgNVBAYTAlVT\nMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMRswGQYDVQQDExJHZW9UcnVzdCBHbG9i\nYWwgQ0EwHhcNMTMwNDA1MTUxNTU1WhcNMTYxMjMxMjM1OTU5WjBJMQswCQYDVQQG\nEwJVUzETMBEGA1UEChMKR29vZ2xlIEluYzElMCMGA1UEAxMcR29vZ2xlIEludGVy\nbmV0IEF1dGhvcml0eSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB\nAJwqBHdc2FCROgajguDYUEi8iT/xGXAaiEZ+4I/F8YnOIe5a/mENtzJEiaB0C1NP\nVaTOgmKV7utZX8bhBYASxF6UP7xbSDj0U/ck5vuR6RXEz/RTDfRK/J9U3n2+oGtv\nh8DQUB8oMANA2ghzUWx//zo8pzcGjr1LEQTrfSTe5vn8MXH7lNVg8y5Kr0LSy+rE\nahqyzFPdFUuLH8gZYR/Nnag+YyuENWllhMgZxUYi+FOVvuOAShDGKuy6lyARxzmZ\nEASg8GF6lSWMTlJ14rbtCMoU/M4iarNOz0YDl5cDfsCx3nuvRTPPuj5xt970JSXC\nDTWJnZ37DhF5iR43xa+OcmkCAwEAAaOB5zCB5DAfBgNVHSMEGDAWgBTAephojYn7\nqwVkDBF9qn1luMrMTjAdBgNVHQ4EFgQUSt0GFhu89mi1dvWBtrtiGrpagS8wEgYD\nVR0TAQH/BAgwBgEB/wIBADAOBgNVHQ8BAf8EBAMCAQYwNQYDVR0fBC4wLDAqoCig\nJoYkaHR0cDovL2cuc3ltY2IuY29tL2NybHMvZ3RnbG9iYWwuY3JsMC4GCCsGAQUF\nBwEBBCIwIDAeBggrBgEFBQcwAYYSaHR0cDovL2cuc3ltY2QuY29tMBcGA1UdIAQQ\nMA4wDAYKKwYBBAHWeQIFATANBgkqhkiG9w0BAQUFAAOCAQEAJ4zP6cc7vsBv6JaE\n+5xcXZDkd9uLMmCbZdiFJrW6nx7eZE4fxsggWwmfq6ngCTRFomUlNz1/Wm8gzPn6\n8R2PEAwCOsTJAXaWvpv5Fdg50cUDR3a4iowx1mDV5I/b+jzG1Zgo+ByPF5E0y8tS\netH7OiDk4Yax2BgPvtaHZI3FCiVCUe+yOLjgHdDh/Ob0r0a678C/xbQF9ZR1DP6i\nvgK66oZb+TWzZvXFjYWhGiN3GhkXVBNgnwvhtJwoKvmuAjRtJZOcgqgXe/GFsNMP\nWOH7sf6coaPo/ck/9Ndx3L2MpBngISMjVROPpBYCCX65r+7bU2S9cS+5Oc4wt7S8\nVOBHBw==\n-----END CERTIFICATE-----\n", - "-----BEGIN CERTIFICATE-----\nMIIDfTCCAuagAwIBAgIDErvmMA0GCSqGSIb3DQEBBQUAME4xCzAJBgNVBAYTAlVT\nMRAwDgYDVQQKEwdFcXVpZmF4MS0wKwYDVQQLEyRFcXVpZmF4IFNlY3VyZSBDZXJ0\naWZpY2F0ZSBBdXRob3JpdHkwHhcNMDIwNTIxMDQwMDAwWhcNMTgwODIxMDQwMDAw\nWjBCMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEbMBkGA1UE\nAxMSR2VvVHJ1c3QgR2xvYmFsIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\nCgKCAQEA2swYYzD99BcjGlZ+W988bDjkcbd4kdS8odhM+KhDtgPpTSEHCIjaWC9m\nOSm9BXiLnTjoBbdqfnGk5sRgprDvgOSJKA+eJdbtg/OtppHHmMlCGDUUna2YRpIu\nT8rxh0PBFpVXLVDviS2Aelet8u5fa9IAjbkU+BQVNdnARqN7csiRv8lVK83Qlz6c\nJmTM386DGXHKTubU1XupGc1V3sjs0l44U+VcT4wt/lAjNvxm5suOpDkZALeVAjmR\nCw7+OC7RHQWa9k0+bw8HHa8sHo9gOeL6NlMTOdReJivbPagUvTLrGAMoUgRx5asz\nPeE4uwc2hGKceeoWMPRfwCvocWvk+QIDAQABo4HwMIHtMB8GA1UdIwQYMBaAFEjm\naPkr0rKV10fYIyAQTzOYkJ/UMB0GA1UdDgQWBBTAephojYn7qwVkDBF9qn1luMrM\nTjAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjA6BgNVHR8EMzAxMC+g\nLaArhilodHRwOi8vY3JsLmdlb3RydXN0LmNvbS9jcmxzL3NlY3VyZWNhLmNybDBO\nBgNVHSAERzBFMEMGBFUdIAAwOzA5BggrBgEFBQcCARYtaHR0cHM6Ly93d3cuZ2Vv\ndHJ1c3QuY29tL3Jlc291cmNlcy9yZXBvc2l0b3J5MA0GCSqGSIb3DQEBBQUAA4GB\nAHbhEm5OSxYShjAGsoEIz/AIx8dxfmbuwu3UOx//8PDITtZDOLC5MH0Y0FWDomrL\nNhGc6Ehmo21/uBPUR/6LWlxz/K7ZGzIZOKuXNBSqltLroxwUCEm2u+WR74M26x1W\nb8ravHNjkOR/ez4iyz0H7V84dJzjA1BOoa+Y7mHyhD8S\n-----END CERTIFICATE-----\n" - ] - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250433984", - "type": 68 - }, - { - "params": { - "byte_count": 254 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250433984", - "type": 61 - }, - { - "params": { - "certificates": [ - "-----BEGIN CERTIFICATE-----\nMIIGrzCCBZegAwIBAgIId3X9Tn29Wk4wDQYJKoZIhvcNAQEFBQAwSTELMAkGA1UE\nBhMCVVMxEzARBgNVBAoTCkdvb2dsZSBJbmMxJTAjBgNVBAMTHEdvb2dsZSBJbnRl\ncm5ldCBBdXRob3JpdHkgRzIwHhcNMTQwOTEwMTMzMTQ1WhcNMTQxMjA5MDAwMDAw\nWjBmMQswCQYDVQQGEwJVUzETMBEGA1UECAwKQ2FsaWZvcm5pYTEWMBQGA1UEBwwN\nTW91bnRhaW4gVmlldzETMBEGA1UECgwKR29vZ2xlIEluYzEVMBMGA1UEAwwMKi5n\nb29nbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEs0l2VnP+s/x9vpxg\nGU/Gph+htOAjGVjzmfL86IJog64QuYRJduLGXCrOvXl0IDtblcjpnqNNOSXIIZ/Y\n8/SpxKOCBEcwggRDMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjCCAxAG\nA1UdEQSCAwcwggMDggwqLmdvb2dsZS5jb22CDSouYW5kcm9pZC5jb22CFiouYXBw\nZW5naW5lLmdvb2dsZS5jb22CEiouY2xvdWQuZ29vZ2xlLmNvbYIWKi5nb29nbGUt\nYW5hbHl0aWNzLmNvbYILKi5nb29nbGUuY2GCCyouZ29vZ2xlLmNsgg4qLmdvb2ds\nZS5jby5pboIOKi5nb29nbGUuY28uanCCDiouZ29vZ2xlLmNvLnVrgg8qLmdvb2ds\nZS5jb20uYXKCDyouZ29vZ2xlLmNvbS5hdYIPKi5nb29nbGUuY29tLmJygg8qLmdv\nb2dsZS5jb20uY2+CDyouZ29vZ2xlLmNvbS5teIIPKi5nb29nbGUuY29tLnRygg8q\nLmdvb2dsZS5jb20udm6CCyouZ29vZ2xlLmRlggsqLmdvb2dsZS5lc4ILKi5nb29n\nbGUuZnKCCyouZ29vZ2xlLmh1ggsqLmdvb2dsZS5pdIILKi5nb29nbGUubmyCCyou\nZ29vZ2xlLnBsggsqLmdvb2dsZS5wdIISKi5nb29nbGVhZGFwaXMuY29tgg8qLmdv\nb2dsZWFwaXMuY26CFCouZ29vZ2xlY29tbWVyY2UuY29tghEqLmdvb2dsZXZpZGVv\nLmNvbYIMKi5nc3RhdGljLmNugg0qLmdzdGF0aWMuY29tggoqLmd2dDEuY29tggoq\nLmd2dDIuY29tggwqLnVyY2hpbi5jb22CECoudXJsLmdvb2dsZS5jb22CFioueW91\ndHViZS1ub2Nvb2tpZS5jb22CDSoueW91dHViZS5jb22CFioueW91dHViZWVkdWNh\ndGlvbi5jb22CCyoueXRpbWcuY29tggthbmRyb2lkLmNvbYIEZy5jb4IGZ29vLmds\nghRnb29nbGUtYW5hbHl0aWNzLmNvbYIKZ29vZ2xlLmNvbYISZ29vZ2xlY29tbWVy\nY2UuY29tggp1cmNoaW4uY29tggh5b3V0dS5iZYILeW91dHViZS5jb22CFHlvdXR1\nYmVlZHVjYXRpb24uY29tMAsGA1UdDwQEAwIHgDBoBggrBgEFBQcBAQRcMFowKwYI\nKwYBBQUHMAKGH2h0dHA6Ly9wa2kuZ29vZ2xlLmNvbS9HSUFHMi5jcnQwKwYIKwYB\nBQUHMAGGH2h0dHA6Ly9jbGllbnRzMS5nb29nbGUuY29tL29jc3AwHQYDVR0OBBYE\nFEf0J4rvoWtxDt0WHpSOWAiKZvviMAwGA1UdEwEB/wQCMAAwHwYDVR0jBBgwFoAU\nSt0GFhu89mi1dvWBtrtiGrpagS8wFwYDVR0gBBAwDjAMBgorBgEEAdZ5AgUBMDAG\nA1UdHwQpMCcwJaAjoCGGH2h0dHA6Ly9wa2kuZ29vZ2xlLmNvbS9HSUFHMi5jcmww\nDQYJKoZIhvcNAQEFBQADggEBAGIjdi4mWuMB/E1rTZ4+1hBiwvC7zeHPldFHSQ+X\nMYWDD3Nu2AWILzpyNmNPWMj1F4Kbfnnfhnqzesb5Wx37vvUrbN0JtlEVgF7Lp831\nHMm4/kcehWvHpdriDK0xuV3iDQnkCYbxoxf9gYLi3f5LOPmmEsMD4mfrFFq/Lqi6\nle2OqQXcJ8YQilUymsKtSNGo6AfmoLbQAMcadTcEUVeTgyu2CTcpAvMYnbk89jWg\nnBOADE7uiZkz0LazVhJm9kRztnIcltb0S7Y9bKFUBGrHE+jQmuaMFzRtkgMcDUN7\n/bZdSv8bOm+FyW47cmqTn3FJIWatzoZXBpo+5v/ecVM0RUw=\n-----END CERTIFICATE-----\n", - "-----BEGIN CERTIFICATE-----\nMIID8DCCAtigAwIBAgIDAjp2MA0GCSqGSIb3DQEBBQUAMEIxCzAJBgNVBAYTAlVT\nMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMRswGQYDVQQDExJHZW9UcnVzdCBHbG9i\nYWwgQ0EwHhcNMTMwNDA1MTUxNTU1WhcNMTYxMjMxMjM1OTU5WjBJMQswCQYDVQQG\nEwJVUzETMBEGA1UEChMKR29vZ2xlIEluYzElMCMGA1UEAxMcR29vZ2xlIEludGVy\nbmV0IEF1dGhvcml0eSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB\nAJwqBHdc2FCROgajguDYUEi8iT/xGXAaiEZ+4I/F8YnOIe5a/mENtzJEiaB0C1NP\nVaTOgmKV7utZX8bhBYASxF6UP7xbSDj0U/ck5vuR6RXEz/RTDfRK/J9U3n2+oGtv\nh8DQUB8oMANA2ghzUWx//zo8pzcGjr1LEQTrfSTe5vn8MXH7lNVg8y5Kr0LSy+rE\nahqyzFPdFUuLH8gZYR/Nnag+YyuENWllhMgZxUYi+FOVvuOAShDGKuy6lyARxzmZ\nEASg8GF6lSWMTlJ14rbtCMoU/M4iarNOz0YDl5cDfsCx3nuvRTPPuj5xt970JSXC\nDTWJnZ37DhF5iR43xa+OcmkCAwEAAaOB5zCB5DAfBgNVHSMEGDAWgBTAephojYn7\nqwVkDBF9qn1luMrMTjAdBgNVHQ4EFgQUSt0GFhu89mi1dvWBtrtiGrpagS8wEgYD\nVR0TAQH/BAgwBgEB/wIBADAOBgNVHQ8BAf8EBAMCAQYwNQYDVR0fBC4wLDAqoCig\nJoYkaHR0cDovL2cuc3ltY2IuY29tL2NybHMvZ3RnbG9iYWwuY3JsMC4GCCsGAQUF\nBwEBBCIwIDAeBggrBgEFBQcwAYYSaHR0cDovL2cuc3ltY2QuY29tMBcGA1UdIAQQ\nMA4wDAYKKwYBBAHWeQIFATANBgkqhkiG9w0BAQUFAAOCAQEAJ4zP6cc7vsBv6JaE\n+5xcXZDkd9uLMmCbZdiFJrW6nx7eZE4fxsggWwmfq6ngCTRFomUlNz1/Wm8gzPn6\n8R2PEAwCOsTJAXaWvpv5Fdg50cUDR3a4iowx1mDV5I/b+jzG1Zgo+ByPF5E0y8tS\netH7OiDk4Yax2BgPvtaHZI3FCiVCUe+yOLjgHdDh/Ob0r0a678C/xbQF9ZR1DP6i\nvgK66oZb+TWzZvXFjYWhGiN3GhkXVBNgnwvhtJwoKvmuAjRtJZOcgqgXe/GFsNMP\nWOH7sf6coaPo/ck/9Ndx3L2MpBngISMjVROPpBYCCX65r+7bU2S9cS+5Oc4wt7S8\nVOBHBw==\n-----END CERTIFICATE-----\n", - "-----BEGIN CERTIFICATE-----\nMIIDfTCCAuagAwIBAgIDErvmMA0GCSqGSIb3DQEBBQUAME4xCzAJBgNVBAYTAlVT\nMRAwDgYDVQQKEwdFcXVpZmF4MS0wKwYDVQQLEyRFcXVpZmF4IFNlY3VyZSBDZXJ0\naWZpY2F0ZSBBdXRob3JpdHkwHhcNMDIwNTIxMDQwMDAwWhcNMTgwODIxMDQwMDAw\nWjBCMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEbMBkGA1UE\nAxMSR2VvVHJ1c3QgR2xvYmFsIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\nCgKCAQEA2swYYzD99BcjGlZ+W988bDjkcbd4kdS8odhM+KhDtgPpTSEHCIjaWC9m\nOSm9BXiLnTjoBbdqfnGk5sRgprDvgOSJKA+eJdbtg/OtppHHmMlCGDUUna2YRpIu\nT8rxh0PBFpVXLVDviS2Aelet8u5fa9IAjbkU+BQVNdnARqN7csiRv8lVK83Qlz6c\nJmTM386DGXHKTubU1XupGc1V3sjs0l44U+VcT4wt/lAjNvxm5suOpDkZALeVAjmR\nCw7+OC7RHQWa9k0+bw8HHa8sHo9gOeL6NlMTOdReJivbPagUvTLrGAMoUgRx5asz\nPeE4uwc2hGKceeoWMPRfwCvocWvk+QIDAQABo4HwMIHtMB8GA1UdIwQYMBaAFEjm\naPkr0rKV10fYIyAQTzOYkJ/UMB0GA1UdDgQWBBTAephojYn7qwVkDBF9qn1luMrM\nTjAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjA6BgNVHR8EMzAxMC+g\nLaArhilodHRwOi8vY3JsLmdlb3RydXN0LmNvbS9jcmxzL3NlY3VyZWNhLmNybDBO\nBgNVHSAERzBFMEMGBFUdIAAwOzA5BggrBgEFBQcCARYtaHR0cHM6Ly93d3cuZ2Vv\ndHJ1c3QuY29tL3Jlc291cmNlcy9yZXBvc2l0b3J5MA0GCSqGSIb3DQEBBQUAA4GB\nAHbhEm5OSxYShjAGsoEIz/AIx8dxfmbuwu3UOx//8PDITtZDOLC5MH0Y0FWDomrL\nNhGc6Ehmo21/uBPUR/6LWlxz/K7ZGzIZOKuXNBSqltLroxwUCEm2u+WR74M26x1W\nb8ravHNjkOR/ez4iyz0H7V84dJzjA1BOoa+Y7mHyhD8S\n-----END CERTIFICATE-----\n" - ] - }, - "phase": 1, - "source": { - "id": 302, - "type": 15 - }, - "time": "1250433984", - "type": 249 - }, - { - "phase": 1, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250433985", - "type": 248 - }, - { - "params": { - "source_dependency": { - "id": 302, - "type": 15 - } - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250433985", - "type": 250 - }, - { - "params": { - "cert_status": 0, - "common_name_fallback_used": false, - "has_md2": false, - "has_md4": false, - "has_md5": false, - "is_issued_by_additional_trust_anchor": false, - "is_issued_by_known_root": true, - "public_key_hashes": [ - "sha1/b4GUo5kKhrJ35Pdtf5unLt3svgg=", - "sha256/ygxFHu/R7bnx8DDBUj3OlAjdvrzShiu6rP4Rl0aSiWg=", - "sha1/Q9rWMO5T+KmAym79hfRqo3mQ4Oo=", - "sha256/7HIpactkIAq2Y49orFOOQKurWxmmSFZhBCoQYcRhJ3Y=", - "sha1/wHqYaI2J+6sFZAwRfap9ZbjKzE4=", - "sha256/h6801m+z8v3zbgkRHpq6L29Esgfzhj89C1SyUCOQmqU=" - ], - "verified_cert": { - "certificates": [ - "-----BEGIN CERTIFICATE-----\nMIIGrzCCBZegAwIBAgIId3X9Tn29Wk4wDQYJKoZIhvcNAQEFBQAwSTELMAkGA1UE\nBhMCVVMxEzARBgNVBAoTCkdvb2dsZSBJbmMxJTAjBgNVBAMTHEdvb2dsZSBJbnRl\ncm5ldCBBdXRob3JpdHkgRzIwHhcNMTQwOTEwMTMzMTQ1WhcNMTQxMjA5MDAwMDAw\nWjBmMQswCQYDVQQGEwJVUzETMBEGA1UECAwKQ2FsaWZvcm5pYTEWMBQGA1UEBwwN\nTW91bnRhaW4gVmlldzETMBEGA1UECgwKR29vZ2xlIEluYzEVMBMGA1UEAwwMKi5n\nb29nbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEs0l2VnP+s/x9vpxg\nGU/Gph+htOAjGVjzmfL86IJog64QuYRJduLGXCrOvXl0IDtblcjpnqNNOSXIIZ/Y\n8/SpxKOCBEcwggRDMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjCCAxAG\nA1UdEQSCAwcwggMDggwqLmdvb2dsZS5jb22CDSouYW5kcm9pZC5jb22CFiouYXBw\nZW5naW5lLmdvb2dsZS5jb22CEiouY2xvdWQuZ29vZ2xlLmNvbYIWKi5nb29nbGUt\nYW5hbHl0aWNzLmNvbYILKi5nb29nbGUuY2GCCyouZ29vZ2xlLmNsgg4qLmdvb2ds\nZS5jby5pboIOKi5nb29nbGUuY28uanCCDiouZ29vZ2xlLmNvLnVrgg8qLmdvb2ds\nZS5jb20uYXKCDyouZ29vZ2xlLmNvbS5hdYIPKi5nb29nbGUuY29tLmJygg8qLmdv\nb2dsZS5jb20uY2+CDyouZ29vZ2xlLmNvbS5teIIPKi5nb29nbGUuY29tLnRygg8q\nLmdvb2dsZS5jb20udm6CCyouZ29vZ2xlLmRlggsqLmdvb2dsZS5lc4ILKi5nb29n\nbGUuZnKCCyouZ29vZ2xlLmh1ggsqLmdvb2dsZS5pdIILKi5nb29nbGUubmyCCyou\nZ29vZ2xlLnBsggsqLmdvb2dsZS5wdIISKi5nb29nbGVhZGFwaXMuY29tgg8qLmdv\nb2dsZWFwaXMuY26CFCouZ29vZ2xlY29tbWVyY2UuY29tghEqLmdvb2dsZXZpZGVv\nLmNvbYIMKi5nc3RhdGljLmNugg0qLmdzdGF0aWMuY29tggoqLmd2dDEuY29tggoq\nLmd2dDIuY29tggwqLnVyY2hpbi5jb22CECoudXJsLmdvb2dsZS5jb22CFioueW91\ndHViZS1ub2Nvb2tpZS5jb22CDSoueW91dHViZS5jb22CFioueW91dHViZWVkdWNh\ndGlvbi5jb22CCyoueXRpbWcuY29tggthbmRyb2lkLmNvbYIEZy5jb4IGZ29vLmds\nghRnb29nbGUtYW5hbHl0aWNzLmNvbYIKZ29vZ2xlLmNvbYISZ29vZ2xlY29tbWVy\nY2UuY29tggp1cmNoaW4uY29tggh5b3V0dS5iZYILeW91dHViZS5jb22CFHlvdXR1\nYmVlZHVjYXRpb24uY29tMAsGA1UdDwQEAwIHgDBoBggrBgEFBQcBAQRcMFowKwYI\nKwYBBQUHMAKGH2h0dHA6Ly9wa2kuZ29vZ2xlLmNvbS9HSUFHMi5jcnQwKwYIKwYB\nBQUHMAGGH2h0dHA6Ly9jbGllbnRzMS5nb29nbGUuY29tL29jc3AwHQYDVR0OBBYE\nFEf0J4rvoWtxDt0WHpSOWAiKZvviMAwGA1UdEwEB/wQCMAAwHwYDVR0jBBgwFoAU\nSt0GFhu89mi1dvWBtrtiGrpagS8wFwYDVR0gBBAwDjAMBgorBgEEAdZ5AgUBMDAG\nA1UdHwQpMCcwJaAjoCGGH2h0dHA6Ly9wa2kuZ29vZ2xlLmNvbS9HSUFHMi5jcmww\nDQYJKoZIhvcNAQEFBQADggEBAGIjdi4mWuMB/E1rTZ4+1hBiwvC7zeHPldFHSQ+X\nMYWDD3Nu2AWILzpyNmNPWMj1F4Kbfnnfhnqzesb5Wx37vvUrbN0JtlEVgF7Lp831\nHMm4/kcehWvHpdriDK0xuV3iDQnkCYbxoxf9gYLi3f5LOPmmEsMD4mfrFFq/Lqi6\nle2OqQXcJ8YQilUymsKtSNGo6AfmoLbQAMcadTcEUVeTgyu2CTcpAvMYnbk89jWg\nnBOADE7uiZkz0LazVhJm9kRztnIcltb0S7Y9bKFUBGrHE+jQmuaMFzRtkgMcDUN7\n/bZdSv8bOm+FyW47cmqTn3FJIWatzoZXBpo+5v/ecVM0RUw=\n-----END CERTIFICATE-----\n", - "-----BEGIN CERTIFICATE-----\nMIID8DCCAtigAwIBAgIDAjp2MA0GCSqGSIb3DQEBBQUAMEIxCzAJBgNVBAYTAlVT\nMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMRswGQYDVQQDExJHZW9UcnVzdCBHbG9i\nYWwgQ0EwHhcNMTMwNDA1MTUxNTU1WhcNMTYxMjMxMjM1OTU5WjBJMQswCQYDVQQG\nEwJVUzETMBEGA1UEChMKR29vZ2xlIEluYzElMCMGA1UEAxMcR29vZ2xlIEludGVy\nbmV0IEF1dGhvcml0eSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB\nAJwqBHdc2FCROgajguDYUEi8iT/xGXAaiEZ+4I/F8YnOIe5a/mENtzJEiaB0C1NP\nVaTOgmKV7utZX8bhBYASxF6UP7xbSDj0U/ck5vuR6RXEz/RTDfRK/J9U3n2+oGtv\nh8DQUB8oMANA2ghzUWx//zo8pzcGjr1LEQTrfSTe5vn8MXH7lNVg8y5Kr0LSy+rE\nahqyzFPdFUuLH8gZYR/Nnag+YyuENWllhMgZxUYi+FOVvuOAShDGKuy6lyARxzmZ\nEASg8GF6lSWMTlJ14rbtCMoU/M4iarNOz0YDl5cDfsCx3nuvRTPPuj5xt970JSXC\nDTWJnZ37DhF5iR43xa+OcmkCAwEAAaOB5zCB5DAfBgNVHSMEGDAWgBTAephojYn7\nqwVkDBF9qn1luMrMTjAdBgNVHQ4EFgQUSt0GFhu89mi1dvWBtrtiGrpagS8wEgYD\nVR0TAQH/BAgwBgEB/wIBADAOBgNVHQ8BAf8EBAMCAQYwNQYDVR0fBC4wLDAqoCig\nJoYkaHR0cDovL2cuc3ltY2IuY29tL2NybHMvZ3RnbG9iYWwuY3JsMC4GCCsGAQUF\nBwEBBCIwIDAeBggrBgEFBQcwAYYSaHR0cDovL2cuc3ltY2QuY29tMBcGA1UdIAQQ\nMA4wDAYKKwYBBAHWeQIFATANBgkqhkiG9w0BAQUFAAOCAQEAJ4zP6cc7vsBv6JaE\n+5xcXZDkd9uLMmCbZdiFJrW6nx7eZE4fxsggWwmfq6ngCTRFomUlNz1/Wm8gzPn6\n8R2PEAwCOsTJAXaWvpv5Fdg50cUDR3a4iowx1mDV5I/b+jzG1Zgo+ByPF5E0y8tS\netH7OiDk4Yax2BgPvtaHZI3FCiVCUe+yOLjgHdDh/Ob0r0a678C/xbQF9ZR1DP6i\nvgK66oZb+TWzZvXFjYWhGiN3GhkXVBNgnwvhtJwoKvmuAjRtJZOcgqgXe/GFsNMP\nWOH7sf6coaPo/ck/9Ndx3L2MpBngISMjVROPpBYCCX65r+7bU2S9cS+5Oc4wt7S8\nVOBHBw==\n-----END CERTIFICATE-----\n", - "-----BEGIN CERTIFICATE-----\nMIIDVDCCAjygAwIBAgIDAjRWMA0GCSqGSIb3DQEBBQUAMEIxCzAJBgNVBAYTAlVT\nMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMRswGQYDVQQDExJHZW9UcnVzdCBHbG9i\nYWwgQ0EwHhcNMDIwNTIxMDQwMDAwWhcNMjIwNTIxMDQwMDAwWjBCMQswCQYDVQQG\nEwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEbMBkGA1UEAxMSR2VvVHJ1c3Qg\nR2xvYmFsIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2swYYzD9\n9BcjGlZ+W988bDjkcbd4kdS8odhM+KhDtgPpTSEHCIjaWC9mOSm9BXiLnTjoBbdq\nfnGk5sRgprDvgOSJKA+eJdbtg/OtppHHmMlCGDUUna2YRpIuT8rxh0PBFpVXLVDv\niS2Aelet8u5fa9IAjbkU+BQVNdnARqN7csiRv8lVK83Qlz6cJmTM386DGXHKTubU\n1XupGc1V3sjs0l44U+VcT4wt/lAjNvxm5suOpDkZALeVAjmRCw7+OC7RHQWa9k0+\nbw8HHa8sHo9gOeL6NlMTOdReJivbPagUvTLrGAMoUgRx5aszPeE4uwc2hGKceeoW\nMPRfwCvocWvk+QIDAQABo1MwUTAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTA\nephojYn7qwVkDBF9qn1luMrMTjAfBgNVHSMEGDAWgBTAephojYn7qwVkDBF9qn1l\nuMrMTjANBgkqhkiG9w0BAQUFAAOCAQEANeMpauUvXVSOKVCUn5kaFOSPeCpilKIn\nZ57QzxpeR+nBsqTP3UEaBU6bS+5Kb1VSsyShNwrrZHYqLizz/Tt1kL/6cdjHPTfS\ntQWVYrmm3ok9Nns4d0iXrKYgjy6myQzCsplFAMfOEVEiIuCl6rYVSAlk6l5PdPcF\nPseKUgzbFbS9bZvlxrFUaKnjaZC2mqUPuLk/IH2uSrW4nOQdtqvmlKXBx4Ot2/Un\nhw4EbNX/3aBd7YdStysVAq45pmp06drE57xNNB6pXE0zX5IJL4hmXXeXxx12E6nV\n5fEWCRE11azbJHFwLJhWC9kXtNHjUStedejV0NxPNO3CBWaAocvmMw==\n-----END CERTIFICATE-----\n" - ] - } - }, - "phase": 2, - "source": { - "id": 302, - "type": 15 - }, - "time": "1250434015", - "type": 249 - }, - { - "phase": 2, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434015", - "type": 248 - }, - { - "phase": 2, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434015", - "type": 48 - }, - { - "params": { - "source_dependency": { - "id": 301, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 281, - "type": 4 - }, - "time": "1250434015", - "type": 79 - }, - { - "phase": 2, - "source": { - "id": 281, - "type": 4 - }, - "time": "1250434015", - "type": 78 - }, - { - "phase": 2, - "source": { - "id": 281, - "type": 4 - }, - "time": "1250434015", - "type": 77 - }, - { - "params": { - "source_dependency": { - "id": 281, - "type": 4 - } - }, - "phase": 0, - "source": { - "id": 276, - "type": 12 - }, - "time": "1250434015", - "type": 88 - }, - { - "params": { - "source_dependency": { - "id": 301, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 276, - "type": 12 - }, - "time": "1250434015", - "type": 89 - }, - { - "phase": 2, - "source": { - "id": 276, - "type": 12 - }, - "time": "1250434015", - "type": 81 - }, - { - "params": { - "source_dependency": { - "id": 276, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434015", - "type": 38 - }, - { - "params": { - "next_proto_status": "negotiated", - "proto": "spdy/3.1", - "server_protos": "" - }, - "phase": 0, - "source": { - "id": 276, - "type": 12 - }, - "time": "1250434015", - "type": 124 - }, - { - "params": { - "source_dependency": { - "id": 303, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 276, - "type": 12 - }, - "time": "1250434015", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "ssl.gstatic.com:443", - "is_speculative": false, - "source_dependency": { - "id": 276, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 303, - "type": 8 - }, - "time": "1250434015", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 303, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 304, - "type": 20 - }, - "time": "1250434015", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 304, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 305, - "type": 14 - }, - "time": "1250434015", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 305, - "type": 14 - }, - "time": "1250434015", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 305, - "type": 14 - }, - "time": "1250434016", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:57792" - }, - "phase": 0, - "source": { - "id": 305, - "type": 14 - }, - "time": "1250434016", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 305, - "type": 14 - }, - "time": "1250434016", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 304, - "type": 20 - }, - "time": "1250434016", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 303, - "type": 8 - }, - "time": "1250434016", - "type": 5 - }, - { - "phase": 0, - "source": { - "id": 303, - "type": 8 - }, - "time": "1250434016", - "type": 6 - }, - { - "phase": 2, - "source": { - "id": 303, - "type": 8 - }, - "time": "1250434016", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 276, - "type": 12 - }, - "time": "1250434016", - "type": 3 - }, - { - "params": { - "host": "ssl.gstatic.com:443", - "proxy": "DIRECT" - }, - "phase": 1, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434016", - "type": 139 - }, - { - "params": { - "source_dependency": { - "id": 301, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434016", - "type": 140 - }, - { - "params": { - "settings": [ - "[id:4 flags:0 value:1000]", - "[id:7 flags:0 value:10485760]" - ] - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434016", - "type": 146 - }, - { - "params": { - "delta": 10420224, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434016", - "type": 177 - }, - { - "params": { - "delta": 10420224, - "stream_id": 0 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434016", - "type": 154 - }, - { - "params": { - "source_dependency": { - "id": 306, - "type": 6 - } - }, - "phase": 0, - "source": { - "id": 276, - "type": 12 - }, - "time": "1250434016", - "type": 171 - }, - { - "params": { - "byte_count": 28 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434016", - "type": 62 - }, - { - "params": { - "byte_count": 49 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434016", - "type": 61 - }, - { - "params": { - "byte_count": 16 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434016", - "type": 62 - }, - { - "params": { - "byte_count": 37 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434016", - "type": 61 - }, - { - "params": { - "source_dependency": { - "id": 276, - "type": 12 - } - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434016", - "type": 122 - }, - { - "params": { - "source_dependency": { - "id": 275, - "type": 1 - } - }, - "phase": 0, - "source": { - "id": 276, - "type": 12 - }, - "time": "1250434016", - "type": 123 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434016", - "type": 120 - }, - { - "phase": 2, - "source": { - "id": 276, - "type": 12 - }, - "time": "1250434016", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434016", - "type": 129 - }, - { - "params": { - "headers": { - ":host": "ssl.gstatic.com", - ":method": "GET", - ":path": "/safebrowsing/csd/client_model_v5.pb", - ":scheme": "https", - ":version": "HTTP/1.1", - "accept-encoding": "gzip,deflate", - "user-agent": "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36" - } - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434016", - "type": 132 - }, - { - "params": { - "fin": true, - "headers": [ - ":host: ssl.gstatic.com", - ":method: GET", - ":path: /safebrowsing/csd/client_model_v5.pb", - ":scheme: https", - ":version: HTTP/1.1", - "accept-encoding: gzip,deflate", - "user-agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36" - ], - "spdy_priority": 3, - "stream_id": 1, - "unidirectional": false - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434016", - "type": 141 - }, - { - "params": { - "byte_count": 233 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434016", - "type": 62 - }, - { - "params": { - "byte_count": 254 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434016", - "type": 61 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434016", - "type": 129 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434017", - "type": 134 - }, - { - "params": { - "byte_count": 270 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434029", - "type": 63 - }, - { - "params": { - "byte_count": 86 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434030", - "type": 63 - }, - { - "params": { - "byte_count": 44 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434030", - "type": 64 - }, - { - "params": { - "clear_persisted": false, - "host": "ssl.gstatic.com:443" - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434030", - "type": 147 - }, - { - "params": { - "flags": 1, - "id": 4, - "value": 100 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434030", - "type": 148 - }, - { - "params": { - "delta_window_size": 0 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434030", - "type": 167 - }, - { - "params": { - "flags": 0, - "id": 7, - "value": 65536 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434030", - "type": 148 - }, - { - "params": { - "delta": 983040, - "stream_id": 0 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434030", - "type": 153 - }, - { - "params": { - "delta": 983040, - "window_size": 1048576 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434030", - "type": 155 - }, - { - "params": { - "byte_count": 258 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434055", - "type": 63 - }, - { - "params": { - "byte_count": 237 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434055", - "type": 64 - }, - { - "params": { - "fin": false, - "headers": [ - ":status: 200 OK", - ":version: HTTP/1.1", - "age: 110872", - "alternate-protocol: 443:quic,p=0.002", - "cache-control: public, max-age=691200", - "content-length: 77984", - "content-type: application/octet-stream", - "date: Thu, 25 Sep 2014 12:54:11 GMT", - "expires: Fri, 03 Oct 2014 12:54:11 GMT", - "last-modified: Fri, 01 Nov 2013 02:26:35 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ], - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434055", - "type": 145 - }, - { - "params": { - "headers": [ - "HTTP/1.1 200 OK", - "status: 200 OK", - "version: HTTP/1.1", - "age: 110872", - "alternate-protocol: 443:quic,p=0.002", - "cache-control: public, max-age=691200", - "content-length: 77984", - "content-type: application/octet-stream", - "date: Thu, 25 Sep 2014 12:54:11 GMT", - "expires: Fri, 03 Oct 2014 12:54:11 GMT", - "last-modified: Fri, 01 Nov 2013 02:26:35 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434056", - "type": 135 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434056", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434056", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434056", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434056", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434056", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434056", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434056", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434056", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434056", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1401, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434056", - "type": 159 - }, - { - "params": { - "delta": -1401, - "window_size": 10484359 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434056", - "type": 156 - }, - { - "params": { - "delta": -1401, - "stream_id": 1, - "window_size": 10484359 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434056", - "type": 177 - }, - { - "params": { - "delta": 1401, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434057", - "type": 177 - }, - { - "params": { - "delta": 1401, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434057", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434057", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434057", - "type": 136 - }, - { - "params": { - "byte_count": 4290 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434059", - "type": 63 - }, - { - "params": { - "byte_count": 4227 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434059", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 4227, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434059", - "type": 159 - }, - { - "params": { - "delta": -4227, - "window_size": 10481533 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434059", - "type": 156 - }, - { - "params": { - "delta": -4227, - "stream_id": 1, - "window_size": 10481533 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434059", - "type": 177 - }, - { - "params": { - "delta": 4096, - "window_size": 10485629 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434060", - "type": 177 - }, - { - "params": { - "delta": 4096, - "stream_id": 1, - "window_size": 10485629 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434060", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434060", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434060", - "type": 136 - }, - { - "params": { - "delta": 131, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434060", - "type": 177 - }, - { - "params": { - "delta": 131, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434060", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434060", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434060", - "type": 136 - }, - { - "params": { - "byte_count": 5720 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434060", - "type": 63 - }, - { - "params": { - "byte_count": 5636 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434060", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 5636, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434061", - "type": 159 - }, - { - "params": { - "delta": -5636, - "window_size": 10480124 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434061", - "type": 156 - }, - { - "params": { - "delta": -5636, - "stream_id": 1, - "window_size": 10480124 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434061", - "type": 177 - }, - { - "params": { - "delta": 4096, - "window_size": 10484220 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434062", - "type": 177 - }, - { - "params": { - "delta": 4096, - "stream_id": 1, - "window_size": 10484220 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434062", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434062", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434062", - "type": 136 - }, - { - "params": { - "delta": 1540, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434062", - "type": 177 - }, - { - "params": { - "delta": 1540, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434062", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434062", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434062", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434062", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434062", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434062", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434062", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434062", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434063", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434063", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434063", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434063", - "type": 136 - }, - { - "params": { - "byte_count": 28 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434064", - "type": 63 - }, - { - "params": { - "byte_count": 1402 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434064", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434064", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434064", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434064", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434064", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434065", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434065", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434065", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434065", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434066", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434066", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434066", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434066", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434066", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434067", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434067", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434067", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434067", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434069", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434069", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434069", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434069", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434069", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434070", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434070", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434070", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434070", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434071", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434071", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434071", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434071", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434071", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434072", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434072", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434072", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434072", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434074", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434074", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434074", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434074", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434074", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434075", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434075", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434075", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434075", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434076", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434076", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434076", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434076", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434076", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434077", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434077", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434077", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434077", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434078", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434078", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434078", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434078", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434078", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434079", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434079", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434079", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434079", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434081", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434081", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434081", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434081", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434081", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434082", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434082", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434082", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434082", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434083", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434083", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434083", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434083", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434083", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434084", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434084", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434084", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434084", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434085", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434085", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434085", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434085", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434085", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434086", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434086", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434086", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434086", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434088", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434088", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434088", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434088", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434088", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434089", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434089", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434089", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434089", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434090", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434090", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434090", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434090", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434090", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434091", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434091", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434091", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434091", - "type": 136 - }, - { - "params": { - "byte_count": 276 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434092", - "type": 63 - }, - { - "params": { - "byte_count": 1154 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434092", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434092", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434092", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434092", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434092", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434093", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434093", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434093", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434093", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434095", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434095", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434095", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434095", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434095", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434096", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434096", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434096", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434096", - "type": 136 - }, - { - "params": { - "byte_count": 390 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434097", - "type": 63 - }, - { - "params": { - "byte_count": 369 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434097", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 369, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434097", - "type": 159 - }, - { - "params": { - "delta": -369, - "window_size": 10485391 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434097", - "type": 156 - }, - { - "params": { - "delta": -369, - "stream_id": 1, - "window_size": 10485391 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434097", - "type": 177 - }, - { - "params": { - "delta": 369, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434098", - "type": 177 - }, - { - "params": { - "delta": 369, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434098", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434098", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434098", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434098", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434098", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1401, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434098", - "type": 159 - }, - { - "params": { - "delta": -1401, - "window_size": 10484359 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434098", - "type": 156 - }, - { - "params": { - "delta": -1401, - "stream_id": 1, - "window_size": 10484359 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434098", - "type": 177 - }, - { - "params": { - "delta": 1401, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434099", - "type": 177 - }, - { - "params": { - "delta": 34169, - "stream_id": 0 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434099", - "type": 154 - }, - { - "params": { - "delta": 1401, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434099", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434099", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434099", - "type": 136 - }, - { - "params": { - "byte_count": 16 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434099", - "type": 62 - }, - { - "params": { - "byte_count": 37 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434099", - "type": 61 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434100", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434100", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434100", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434100", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434100", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434101", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434101", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434101", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434101", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434102", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434102", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434102", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434102", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434102", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434103", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434103", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434103", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434103", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434105", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434105", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434105", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434105", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434105", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434106", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434106", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434106", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434106", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434107", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434107", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434107", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434107", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434107", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434108", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434108", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434108", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434108", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434110", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434110", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434110", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434110", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434110", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434111", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434111", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434111", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434111", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434112", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434112", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434112", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434112", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434112", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434113", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434113", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434113", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434113", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434114", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434114", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434114", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434114", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434114", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434115", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434115", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434115", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434115", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434117", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434117", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434117", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434117", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434117", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434118", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434118", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434118", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434118", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434119", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434119", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434119", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434119", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434119", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434120", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434120", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434120", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434120", - "type": 136 - }, - { - "params": { - "byte_count": 134 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434121", - "type": 63 - }, - { - "params": { - "byte_count": 1296 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434121", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434121", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434121", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434121", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434121", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434122", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434122", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434122", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434122", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434124", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434124", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434124", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434124", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434124", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434125", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434125", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434125", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434125", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434126", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434126", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434126", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434126", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434126", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434127", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434127", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434127", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434127", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434128", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434128", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434128", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434128", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434128", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434129", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434129", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434129", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434129", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434131", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434131", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434131", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434131", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434131", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434132", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434132", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434132", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434132", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434133", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434133", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434133", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434133", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434133", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434134", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434134", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434134", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434134", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434135", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434135", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434135", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434135", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434135", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434136", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434136", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434136", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434136", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434138", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434138", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434138", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434138", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434138", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434139", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434139", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434139", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434139", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434140", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434140", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434140", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434140", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434140", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434141", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434141", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434141", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434141", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434142", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434142", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434142", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434142", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434142", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434143", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434143", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434143", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434143", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434145", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434145", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434145", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434145", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434145", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434146", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434146", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434146", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434146", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434147", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434147", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434147", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434147", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434147", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434148", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434148", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434148", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434148", - "type": 136 - }, - { - "params": { - "byte_count": 382 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434150", - "type": 63 - }, - { - "params": { - "byte_count": 1048 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434150", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434150", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434150", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434150", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434150", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434151", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434151", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434151", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434151", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434152", - "type": 63 - }, - { - "params": { - "byte_count": 369 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434152", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 369, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434152", - "type": 159 - }, - { - "params": { - "delta": -369, - "window_size": 10485391 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434152", - "type": 156 - }, - { - "params": { - "delta": -369, - "stream_id": 1, - "window_size": 10485391 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434152", - "type": 177 - }, - { - "params": { - "delta": 369, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434153", - "type": 177 - }, - { - "params": { - "delta": 369, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434153", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434153", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434153", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434154", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434154", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1401, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434154", - "type": 159 - }, - { - "params": { - "delta": -1401, - "window_size": 10484359 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434154", - "type": 156 - }, - { - "params": { - "delta": -1401, - "stream_id": 1, - "window_size": 10484359 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434154", - "type": 177 - }, - { - "params": { - "delta": 1401, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434155", - "type": 177 - }, - { - "params": { - "delta": 1401, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434155", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434155", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434155", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434157", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434157", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434157", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434157", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434157", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434158", - "type": 177 - }, - { - "params": { - "delta": 34177, - "stream_id": 0 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434158", - "type": 154 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434158", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434158", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434158", - "type": 136 - }, - { - "params": { - "byte_count": 16 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434158", - "type": 62 - }, - { - "params": { - "byte_count": 37 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434158", - "type": 61 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434159", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434159", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434159", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434159", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434159", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434160", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434160", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434160", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434160", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434161", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434161", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434161", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434161", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434161", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434162", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434162", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434162", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434162", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434164", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434164", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434164", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434164", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434164", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434165", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434165", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434165", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434165", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434166", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434166", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434166", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434166", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434166", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434167", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434167", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434167", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434167", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434168", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434168", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434168", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434168", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434168", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434169", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434169", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434169", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434169", - "type": 136 - }, - { - "params": { - "byte_count": 1430 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434171", - "type": 63 - }, - { - "params": { - "byte_count": 1409 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434171", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1409, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434171", - "type": 159 - }, - { - "params": { - "delta": -1409, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434171", - "type": 156 - }, - { - "params": { - "delta": -1409, - "stream_id": 1, - "window_size": 10484351 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434171", - "type": 177 - }, - { - "params": { - "delta": 1409, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434172", - "type": 177 - }, - { - "params": { - "delta": 1409, - "stream_id": 1, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434172", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434172", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434172", - "type": 136 - }, - { - "params": { - "byte_count": 198 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434173", - "type": 63 - }, - { - "params": { - "byte_count": 1196 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434173", - "type": 64 - }, - { - "params": { - "fin": false, - "size": 1184, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434173", - "type": 159 - }, - { - "params": { - "delta": -1184, - "window_size": 10484576 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434173", - "type": 156 - }, - { - "params": { - "delta": -1184, - "stream_id": 1, - "window_size": 10484576 - }, - "phase": 0, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434173", - "type": 177 - }, - { - "params": { - "fin": true, - "size": 0, - "stream_id": 1 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434173", - "type": 159 - }, - { - "params": { - "delta": 1184, - "window_size": 10485760 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434173", - "type": 177 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434173", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434173", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434173", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 275, - "type": 1 - }, - "time": "1250434173", - "type": 2 - }, - { - "params": { - "is_ack": false, - "type": "received", - "unique_id": 0 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434174", - "type": 151 - }, - { - "params": { - "is_ack": true, - "type": "sent", - "unique_id": 0 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250434174", - "type": 151 - }, - { - "params": { - "byte_count": 12 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434174", - "type": 62 - }, - { - "params": { - "byte_count": 33 - }, - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250434174", - "type": 61 - }, - { - "phase": 1, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434858", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434858", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434858", - "type": 93 - }, - { - "params": { - "load_flags": 131328, - "method": "GET", - "priority": "LOW", - "url": "http://127.0.0.1:8888/task" - }, - "phase": 1, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434858", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434859", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434859", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434859", - "type": 99 - }, - { - "phase": 2, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434859", - "type": 99 - }, - { - "phase": 1, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434859", - "type": 100 - }, - { - "params": { - "created": false, - "key": "http://127.0.0.1:8888/task" - }, - "phase": 1, - "source": { - "id": 308, - "type": 10 - }, - "time": "1250434859", - "type": 108 - }, - { - "phase": 2, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434859", - "type": 100 - }, - { - "phase": 1, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434859", - "type": 102 - }, - { - "phase": 2, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434859", - "type": 102 - }, - { - "phase": 1, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434859", - "type": 104 - }, - { - "params": { - "buf_len": 172, - "index": 0, - "offset": 0 - }, - "phase": 1, - "source": { - "id": 308, - "type": 10 - }, - "time": "1250434859", - "type": 110 - }, - { - "params": { - "bytes_copied": 172 - }, - "phase": 2, - "source": { - "id": 308, - "type": 10 - }, - "time": "1250434859", - "type": 110 - }, - { - "phase": 2, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434859", - "type": 104 - }, - { - "phase": 1, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434859", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434859", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434859", - "type": 120 - }, - { - "params": { - "original_url": "http://127.0.0.1:8888/", - "priority": "LOW", - "url": "http://127.0.0.1:8888/" - }, - "phase": 1, - "source": { - "id": 309, - "type": 12 - }, - "time": "1250434859", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 309, - "type": 12 - }, - "time": "1250434859", - "type": 24 - }, - { - "params": { - "pac_string": "DIRECT" - }, - "phase": 0, - "source": { - "id": 309, - "type": 12 - }, - "time": "1250434859", - "type": 26 - }, - { - "phase": 2, - "source": { - "id": 309, - "type": 12 - }, - "time": "1250434859", - "type": 24 - }, - { - "params": { - "source_dependency": { - "id": 310, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 309, - "type": 12 - }, - "time": "1250434859", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 309, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 310, - "type": 8 - }, - "time": "1250434859", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 310, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 311, - "type": 20 - }, - "time": "1250434859", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 311, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 312, - "type": 14 - }, - "time": "1250434859", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 312, - "type": 14 - }, - "time": "1250434859", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 312, - "type": 14 - }, - "time": "1250434859", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:57793" - }, - "phase": 0, - "source": { - "id": 312, - "type": 14 - }, - "time": "1250434859", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 312, - "type": 14 - }, - "time": "1250434859", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 311, - "type": 20 - }, - "time": "1250434860", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 310, - "type": 8 - }, - "time": "1250434860", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 310, - "type": 8 - }, - "time": "1250434860", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 309, - "type": 12 - }, - "time": "1250434860", - "type": 3 - }, - { - "params": { - "host_and_port": "127.0.0.1:8888" - }, - "phase": 0, - "source": { - "id": 309, - "type": 12 - }, - "time": "1250434860", - "type": 85 - }, - { - "phase": 1, - "source": { - "id": 309, - "type": 12 - }, - "time": "1250434860", - "type": 81 - }, - { - "params": { - "group_name": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 313, - "type": 4 - }, - "time": "1250434860", - "type": 77 - }, - { - "phase": 1, - "source": { - "id": 313, - "type": 4 - }, - "time": "1250434860", - "type": 78 - }, - { - "params": { - "source_dependency": { - "id": 314, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 313, - "type": 4 - }, - "time": "1250434860", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 313, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 314, - "type": 8 - }, - "time": "1250434860", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 314, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 315, - "type": 20 - }, - "time": "1250434860", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 315, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 316, - "type": 14 - }, - "time": "1250434860", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 316, - "type": 14 - }, - "time": "1250434860", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 316, - "type": 14 - }, - "time": "1250434860", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:57794" - }, - "phase": 0, - "source": { - "id": 316, - "type": 14 - }, - "time": "1250434860", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 316, - "type": 14 - }, - "time": "1250434860", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 315, - "type": 20 - }, - "time": "1250434860", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 314, - "type": 8 - }, - "time": "1250434860", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 314, - "type": 8 - }, - "time": "1250434860", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 313, - "type": 4 - }, - "time": "1250434860", - "type": 3 - }, - { - "params": { - "source_dependency": { - "id": 313, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 317, - "type": 5 - }, - "time": "1250434860", - "type": 34 - }, - { - "params": { - "address_list": [ - "127.0.0.1:8888" - ] - }, - "phase": 1, - "source": { - "id": 317, - "type": 5 - }, - "time": "1250434860", - "type": 35 - }, - { - "params": { - "address": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 317, - "type": 5 - }, - "time": "1250434860", - "type": 36 - }, - { - "phase": 2, - "source": { - "id": 317, - "type": 5 - }, - "time": "1250434860", - "type": 36 - }, - { - "params": { - "source_address": "127.0.0.1:51000" - }, - "phase": 2, - "source": { - "id": 317, - "type": 5 - }, - "time": "1250434860", - "type": 35 - }, - { - "params": { - "source_dependency": { - "id": 317, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 313, - "type": 4 - }, - "time": "1250434860", - "type": 79 - }, - { - "phase": 2, - "source": { - "id": 313, - "type": 4 - }, - "time": "1250434860", - "type": 78 - }, - { - "phase": 2, - "source": { - "id": 313, - "type": 4 - }, - "time": "1250434860", - "type": 77 - }, - { - "params": { - "source_dependency": { - "id": 313, - "type": 4 - } - }, - "phase": 0, - "source": { - "id": 309, - "type": 12 - }, - "time": "1250434860", - "type": 88 - }, - { - "params": { - "source_dependency": { - "id": 317, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 309, - "type": 12 - }, - "time": "1250434860", - "type": 89 - }, - { - "phase": 2, - "source": { - "id": 309, - "type": 12 - }, - "time": "1250434861", - "type": 81 - }, - { - "params": { - "source_dependency": { - "id": 309, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 317, - "type": 5 - }, - "time": "1250434861", - "type": 38 - }, - { - "params": { - "source_dependency": { - "id": 309, - "type": 12 - } - }, - "phase": 0, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434861", - "type": 122 - }, - { - "params": { - "source_dependency": { - "id": 307, - "type": 1 - } - }, - "phase": 0, - "source": { - "id": 309, - "type": 12 - }, - "time": "1250434861", - "type": 123 - }, - { - "phase": 2, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434861", - "type": 120 - }, - { - "phase": 2, - "source": { - "id": 309, - "type": 12 - }, - "time": "1250434861", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434861", - "type": 129 - }, - { - "params": { - "headers": [ - "Host: 127.0.0.1:8888", - "Connection: keep-alive", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", - "Accept: */*", - "Accept-Encoding: gzip,deflate,sdch", - "Accept-Language: en-US,en;q=0.8" - ], - "line": "GET /task HTTP/1.1\r\n" - }, - "phase": 0, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434861", - "type": 130 - }, - { - "params": { - "byte_count": 266 - }, - "phase": 0, - "source": { - "id": 317, - "type": 5 - }, - "time": "1250434861", - "type": 61 - }, - { - "phase": 2, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434861", - "type": 129 - }, - { - "phase": 1, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434861", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434861", - "type": 215 - }, - { - "params": { - "byte_count": 161 - }, - "phase": 0, - "source": { - "id": 317, - "type": 5 - }, - "time": "1250434861", - "type": 63 - }, - { - "phase": 2, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434861", - "type": 215 - }, - { - "params": { - "headers": [ - "HTTP/1.1 200 OK", - "Server: wptdriver", - "Cache: no-cache", - "Pragma: no-cache", - "Content-Type: application/json", - "Content-Length: 36" - ] - }, - "phase": 0, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434861", - "type": 135 - }, - { - "phase": 2, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434861", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434861", - "type": 105 - }, - { - "params": { - "buf_len": 172, - "index": 0, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 308, - "type": 10 - }, - "time": "1250434861", - "type": 111 - }, - { - "params": { - "bytes_copied": 172 - }, - "phase": 2, - "source": { - "id": 308, - "type": 10 - }, - "time": "1250434861", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434861", - "type": 105 - }, - { - "phase": 1, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434861", - "type": 107 - }, - { - "params": { - "buf_len": 0, - "index": 1, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 308, - "type": 10 - }, - "time": "1250434861", - "type": 111 - }, - { - "params": { - "bytes_copied": 0 - }, - "phase": 2, - "source": { - "id": 308, - "type": 10 - }, - "time": "1250434861", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434861", - "type": 107 - }, - { - "phase": 1, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434861", - "type": 105 - }, - { - "params": { - "buf_len": 0, - "index": 2, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 308, - "type": 10 - }, - "time": "1250434861", - "type": 111 - }, - { - "params": { - "bytes_copied": 0 - }, - "phase": 2, - "source": { - "id": 308, - "type": 10 - }, - "time": "1250434861", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434861", - "type": 105 - }, - { - "phase": 1, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434861", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434861", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434861", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434861", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434862", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434862", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434862", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434862", - "type": 107 - }, - { - "params": { - "buf_len": 36, - "index": 1, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 308, - "type": 10 - }, - "time": "1250434862", - "type": 111 - }, - { - "params": { - "bytes_copied": 36 - }, - "phase": 2, - "source": { - "id": 308, - "type": 10 - }, - "time": "1250434862", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434862", - "type": 107 - }, - { - "phase": 1, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434862", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 317, - "type": 5 - }, - "time": "1250434862", - "type": 38 - }, - { - "phase": 0, - "source": { - "id": 317, - "type": 5 - }, - "time": "1250434862", - "type": 67 - }, - { - "phase": 2, - "source": { - "id": 317, - "type": 5 - }, - "time": "1250434862", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434862", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434862", - "type": 107 - }, - { - "phase": 2, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434862", - "type": 107 - }, - { - "phase": 2, - "source": { - "id": 307, - "type": 1 - }, - "time": "1250434862", - "type": 2 - }, - { - "phase": 0, - "source": { - "id": 308, - "type": 10 - }, - "time": "1250434862", - "type": 118 - }, - { - "phase": 2, - "source": { - "id": 308, - "type": 10 - }, - "time": "1250434862", - "type": 108 - }, - { - "phase": 1, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435860", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435860", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435860", - "type": 93 - }, - { - "params": { - "load_flags": 131328, - "method": "GET", - "priority": "LOW", - "url": "http://127.0.0.1:8888/task" - }, - "phase": 1, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435861", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435861", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435861", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435861", - "type": 99 - }, - { - "phase": 2, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435861", - "type": 99 - }, - { - "phase": 1, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435861", - "type": 100 - }, - { - "params": { - "created": false, - "key": "http://127.0.0.1:8888/task" - }, - "phase": 1, - "source": { - "id": 319, - "type": 10 - }, - "time": "1250435861", - "type": 108 - }, - { - "phase": 2, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435861", - "type": 100 - }, - { - "phase": 1, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435861", - "type": 102 - }, - { - "phase": 2, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435861", - "type": 102 - }, - { - "phase": 1, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435861", - "type": 104 - }, - { - "params": { - "buf_len": 172, - "index": 0, - "offset": 0 - }, - "phase": 1, - "source": { - "id": 319, - "type": 10 - }, - "time": "1250435861", - "type": 110 - }, - { - "params": { - "bytes_copied": 172 - }, - "phase": 2, - "source": { - "id": 319, - "type": 10 - }, - "time": "1250435861", - "type": 110 - }, - { - "phase": 2, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435861", - "type": 104 - }, - { - "phase": 1, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435861", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435861", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435861", - "type": 120 - }, - { - "params": { - "original_url": "http://127.0.0.1:8888/", - "priority": "LOW", - "url": "http://127.0.0.1:8888/" - }, - "phase": 1, - "source": { - "id": 320, - "type": 12 - }, - "time": "1250435861", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 320, - "type": 12 - }, - "time": "1250435861", - "type": 24 - }, - { - "params": { - "pac_string": "DIRECT" - }, - "phase": 0, - "source": { - "id": 320, - "type": 12 - }, - "time": "1250435861", - "type": 26 - }, - { - "phase": 2, - "source": { - "id": 320, - "type": 12 - }, - "time": "1250435861", - "type": 24 - }, - { - "params": { - "source_dependency": { - "id": 321, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 320, - "type": 12 - }, - "time": "1250435861", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 320, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 321, - "type": 8 - }, - "time": "1250435861", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 321, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 322, - "type": 20 - }, - "time": "1250435861", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 322, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 323, - "type": 14 - }, - "time": "1250435861", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 323, - "type": 14 - }, - "time": "1250435862", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 323, - "type": 14 - }, - "time": "1250435862", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:57795" - }, - "phase": 0, - "source": { - "id": 323, - "type": 14 - }, - "time": "1250435862", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 323, - "type": 14 - }, - "time": "1250435862", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 322, - "type": 20 - }, - "time": "1250435862", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 321, - "type": 8 - }, - "time": "1250435862", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 321, - "type": 8 - }, - "time": "1250435862", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 320, - "type": 12 - }, - "time": "1250435862", - "type": 3 - }, - { - "params": { - "host_and_port": "127.0.0.1:8888" - }, - "phase": 0, - "source": { - "id": 320, - "type": 12 - }, - "time": "1250435862", - "type": 85 - }, - { - "phase": 1, - "source": { - "id": 320, - "type": 12 - }, - "time": "1250435862", - "type": 81 - }, - { - "params": { - "group_name": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 324, - "type": 4 - }, - "time": "1250435862", - "type": 77 - }, - { - "phase": 1, - "source": { - "id": 324, - "type": 4 - }, - "time": "1250435862", - "type": 78 - }, - { - "params": { - "source_dependency": { - "id": 325, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 324, - "type": 4 - }, - "time": "1250435862", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 324, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 325, - "type": 8 - }, - "time": "1250435862", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 325, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 326, - "type": 20 - }, - "time": "1250435862", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 326, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 327, - "type": 14 - }, - "time": "1250435862", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 327, - "type": 14 - }, - "time": "1250435862", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 327, - "type": 14 - }, - "time": "1250435862", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:57796" - }, - "phase": 0, - "source": { - "id": 327, - "type": 14 - }, - "time": "1250435862", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 327, - "type": 14 - }, - "time": "1250435862", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 326, - "type": 20 - }, - "time": "1250435862", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 325, - "type": 8 - }, - "time": "1250435862", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 325, - "type": 8 - }, - "time": "1250435862", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 324, - "type": 4 - }, - "time": "1250435862", - "type": 3 - }, - { - "params": { - "source_dependency": { - "id": 324, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 328, - "type": 5 - }, - "time": "1250435862", - "type": 34 - }, - { - "params": { - "address_list": [ - "127.0.0.1:8888" - ] - }, - "phase": 1, - "source": { - "id": 328, - "type": 5 - }, - "time": "1250435862", - "type": 35 - }, - { - "params": { - "address": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 328, - "type": 5 - }, - "time": "1250435862", - "type": 36 - }, - { - "phase": 2, - "source": { - "id": 328, - "type": 5 - }, - "time": "1250435862", - "type": 36 - }, - { - "params": { - "source_address": "127.0.0.1:51001" - }, - "phase": 2, - "source": { - "id": 328, - "type": 5 - }, - "time": "1250435862", - "type": 35 - }, - { - "params": { - "source_dependency": { - "id": 328, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 324, - "type": 4 - }, - "time": "1250435862", - "type": 79 - }, - { - "phase": 2, - "source": { - "id": 324, - "type": 4 - }, - "time": "1250435863", - "type": 78 - }, - { - "phase": 2, - "source": { - "id": 324, - "type": 4 - }, - "time": "1250435863", - "type": 77 - }, - { - "params": { - "source_dependency": { - "id": 324, - "type": 4 - } - }, - "phase": 0, - "source": { - "id": 320, - "type": 12 - }, - "time": "1250435863", - "type": 88 - }, - { - "params": { - "source_dependency": { - "id": 328, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 320, - "type": 12 - }, - "time": "1250435863", - "type": 89 - }, - { - "phase": 2, - "source": { - "id": 320, - "type": 12 - }, - "time": "1250435863", - "type": 81 - }, - { - "params": { - "source_dependency": { - "id": 320, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 328, - "type": 5 - }, - "time": "1250435863", - "type": 38 - }, - { - "params": { - "source_dependency": { - "id": 320, - "type": 12 - } - }, - "phase": 0, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435863", - "type": 122 - }, - { - "params": { - "source_dependency": { - "id": 318, - "type": 1 - } - }, - "phase": 0, - "source": { - "id": 320, - "type": 12 - }, - "time": "1250435863", - "type": 123 - }, - { - "phase": 2, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435863", - "type": 120 - }, - { - "phase": 2, - "source": { - "id": 320, - "type": 12 - }, - "time": "1250435863", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435863", - "type": 129 - }, - { - "params": { - "headers": [ - "Host: 127.0.0.1:8888", - "Connection: keep-alive", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", - "Accept: */*", - "Accept-Encoding: gzip,deflate,sdch", - "Accept-Language: en-US,en;q=0.8" - ], - "line": "GET /task HTTP/1.1\r\n" - }, - "phase": 0, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435863", - "type": 130 - }, - { - "params": { - "byte_count": 266 - }, - "phase": 0, - "source": { - "id": 328, - "type": 5 - }, - "time": "1250435863", - "type": 61 - }, - { - "phase": 2, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435863", - "type": 129 - }, - { - "phase": 1, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435863", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435863", - "type": 215 - }, - { - "params": { - "byte_count": 161 - }, - "phase": 0, - "source": { - "id": 328, - "type": 5 - }, - "time": "1250435863", - "type": 63 - }, - { - "phase": 2, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435863", - "type": 215 - }, - { - "params": { - "headers": [ - "HTTP/1.1 200 OK", - "Server: wptdriver", - "Cache: no-cache", - "Pragma: no-cache", - "Content-Type: application/json", - "Content-Length: 36" - ] - }, - "phase": 0, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435863", - "type": 135 - }, - { - "phase": 2, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435863", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435863", - "type": 105 - }, - { - "params": { - "buf_len": 172, - "index": 0, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 319, - "type": 10 - }, - "time": "1250435863", - "type": 111 - }, - { - "params": { - "bytes_copied": 172 - }, - "phase": 2, - "source": { - "id": 319, - "type": 10 - }, - "time": "1250435863", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435863", - "type": 105 - }, - { - "phase": 1, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435863", - "type": 107 - }, - { - "params": { - "buf_len": 0, - "index": 1, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 319, - "type": 10 - }, - "time": "1250435863", - "type": 111 - }, - { - "params": { - "bytes_copied": 0 - }, - "phase": 2, - "source": { - "id": 319, - "type": 10 - }, - "time": "1250435863", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435863", - "type": 107 - }, - { - "phase": 1, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435863", - "type": 105 - }, - { - "params": { - "buf_len": 0, - "index": 2, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 319, - "type": 10 - }, - "time": "1250435863", - "type": 111 - }, - { - "params": { - "bytes_copied": 0 - }, - "phase": 2, - "source": { - "id": 319, - "type": 10 - }, - "time": "1250435863", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435863", - "type": 105 - }, - { - "phase": 1, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435863", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435863", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435863", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435863", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435863", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435863", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435864", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435864", - "type": 107 - }, - { - "params": { - "buf_len": 36, - "index": 1, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 319, - "type": 10 - }, - "time": "1250435864", - "type": 111 - }, - { - "params": { - "bytes_copied": 36 - }, - "phase": 2, - "source": { - "id": 319, - "type": 10 - }, - "time": "1250435864", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435864", - "type": 107 - }, - { - "phase": 1, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435864", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 328, - "type": 5 - }, - "time": "1250435864", - "type": 38 - }, - { - "phase": 0, - "source": { - "id": 328, - "type": 5 - }, - "time": "1250435864", - "type": 67 - }, - { - "phase": 2, - "source": { - "id": 328, - "type": 5 - }, - "time": "1250435864", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435864", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435864", - "type": 107 - }, - { - "phase": 2, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435864", - "type": 107 - }, - { - "phase": 2, - "source": { - "id": 318, - "type": 1 - }, - "time": "1250435864", - "type": 2 - }, - { - "phase": 0, - "source": { - "id": 319, - "type": 10 - }, - "time": "1250435864", - "type": 118 - }, - { - "phase": 2, - "source": { - "id": 319, - "type": 10 - }, - "time": "1250435864", - "type": 108 - }, - { - "phase": 1, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436861", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436861", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436862", - "type": 93 - }, - { - "params": { - "load_flags": 131328, - "method": "GET", - "priority": "LOW", - "url": "http://127.0.0.1:8888/task" - }, - "phase": 1, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436862", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436862", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436862", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436862", - "type": 99 - }, - { - "phase": 2, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436862", - "type": 99 - }, - { - "phase": 1, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436862", - "type": 100 - }, - { - "params": { - "created": false, - "key": "http://127.0.0.1:8888/task" - }, - "phase": 1, - "source": { - "id": 330, - "type": 10 - }, - "time": "1250436862", - "type": 108 - }, - { - "phase": 2, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436862", - "type": 100 - }, - { - "phase": 1, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436862", - "type": 102 - }, - { - "phase": 2, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436862", - "type": 102 - }, - { - "phase": 1, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436862", - "type": 104 - }, - { - "params": { - "buf_len": 172, - "index": 0, - "offset": 0 - }, - "phase": 1, - "source": { - "id": 330, - "type": 10 - }, - "time": "1250436862", - "type": 110 - }, - { - "params": { - "bytes_copied": 172 - }, - "phase": 2, - "source": { - "id": 330, - "type": 10 - }, - "time": "1250436862", - "type": 110 - }, - { - "phase": 2, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436862", - "type": 104 - }, - { - "phase": 1, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436862", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436862", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436862", - "type": 120 - }, - { - "params": { - "original_url": "http://127.0.0.1:8888/", - "priority": "LOW", - "url": "http://127.0.0.1:8888/" - }, - "phase": 1, - "source": { - "id": 331, - "type": 12 - }, - "time": "1250436862", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 331, - "type": 12 - }, - "time": "1250436862", - "type": 24 - }, - { - "params": { - "pac_string": "DIRECT" - }, - "phase": 0, - "source": { - "id": 331, - "type": 12 - }, - "time": "1250436862", - "type": 26 - }, - { - "phase": 2, - "source": { - "id": 331, - "type": 12 - }, - "time": "1250436862", - "type": 24 - }, - { - "params": { - "source_dependency": { - "id": 332, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 331, - "type": 12 - }, - "time": "1250436862", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 331, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 332, - "type": 8 - }, - "time": "1250436862", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 332, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 333, - "type": 20 - }, - "time": "1250436862", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 333, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 334, - "type": 14 - }, - "time": "1250436862", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 334, - "type": 14 - }, - "time": "1250436862", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 334, - "type": 14 - }, - "time": "1250436863", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:57797" - }, - "phase": 0, - "source": { - "id": 334, - "type": 14 - }, - "time": "1250436863", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 334, - "type": 14 - }, - "time": "1250436863", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 333, - "type": 20 - }, - "time": "1250436863", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 332, - "type": 8 - }, - "time": "1250436863", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 332, - "type": 8 - }, - "time": "1250436863", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 331, - "type": 12 - }, - "time": "1250436863", - "type": 3 - }, - { - "params": { - "host_and_port": "127.0.0.1:8888" - }, - "phase": 0, - "source": { - "id": 331, - "type": 12 - }, - "time": "1250436863", - "type": 85 - }, - { - "phase": 1, - "source": { - "id": 331, - "type": 12 - }, - "time": "1250436863", - "type": 81 - }, - { - "params": { - "group_name": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 335, - "type": 4 - }, - "time": "1250436863", - "type": 77 - }, - { - "phase": 1, - "source": { - "id": 335, - "type": 4 - }, - "time": "1250436863", - "type": 78 - }, - { - "params": { - "source_dependency": { - "id": 336, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 335, - "type": 4 - }, - "time": "1250436863", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 335, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 336, - "type": 8 - }, - "time": "1250436863", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 336, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 337, - "type": 20 - }, - "time": "1250436863", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 337, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 338, - "type": 14 - }, - "time": "1250436863", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 338, - "type": 14 - }, - "time": "1250436863", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 338, - "type": 14 - }, - "time": "1250436863", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:57798" - }, - "phase": 0, - "source": { - "id": 338, - "type": 14 - }, - "time": "1250436863", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 338, - "type": 14 - }, - "time": "1250436863", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 337, - "type": 20 - }, - "time": "1250436863", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 336, - "type": 8 - }, - "time": "1250436863", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 336, - "type": 8 - }, - "time": "1250436863", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 335, - "type": 4 - }, - "time": "1250436863", - "type": 3 - }, - { - "params": { - "source_dependency": { - "id": 335, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 339, - "type": 5 - }, - "time": "1250436863", - "type": 34 - }, - { - "params": { - "address_list": [ - "127.0.0.1:8888" - ] - }, - "phase": 1, - "source": { - "id": 339, - "type": 5 - }, - "time": "1250436863", - "type": 35 - }, - { - "params": { - "address": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 339, - "type": 5 - }, - "time": "1250436863", - "type": 36 - }, - { - "phase": 2, - "source": { - "id": 339, - "type": 5 - }, - "time": "1250436863", - "type": 36 - }, - { - "params": { - "source_address": "127.0.0.1:51002" - }, - "phase": 2, - "source": { - "id": 339, - "type": 5 - }, - "time": "1250436863", - "type": 35 - }, - { - "params": { - "source_dependency": { - "id": 339, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 335, - "type": 4 - }, - "time": "1250436863", - "type": 79 - }, - { - "phase": 2, - "source": { - "id": 335, - "type": 4 - }, - "time": "1250436863", - "type": 78 - }, - { - "phase": 2, - "source": { - "id": 335, - "type": 4 - }, - "time": "1250436863", - "type": 77 - }, - { - "params": { - "source_dependency": { - "id": 335, - "type": 4 - } - }, - "phase": 0, - "source": { - "id": 331, - "type": 12 - }, - "time": "1250436863", - "type": 88 - }, - { - "params": { - "source_dependency": { - "id": 339, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 331, - "type": 12 - }, - "time": "1250436863", - "type": 89 - }, - { - "phase": 2, - "source": { - "id": 331, - "type": 12 - }, - "time": "1250436863", - "type": 81 - }, - { - "params": { - "source_dependency": { - "id": 331, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 339, - "type": 5 - }, - "time": "1250436863", - "type": 38 - }, - { - "params": { - "source_dependency": { - "id": 331, - "type": 12 - } - }, - "phase": 0, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436863", - "type": 122 - }, - { - "params": { - "source_dependency": { - "id": 329, - "type": 1 - } - }, - "phase": 0, - "source": { - "id": 331, - "type": 12 - }, - "time": "1250436863", - "type": 123 - }, - { - "phase": 2, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436863", - "type": 120 - }, - { - "phase": 2, - "source": { - "id": 331, - "type": 12 - }, - "time": "1250436863", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436863", - "type": 129 - }, - { - "params": { - "headers": [ - "Host: 127.0.0.1:8888", - "Connection: keep-alive", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", - "Accept: */*", - "Accept-Encoding: gzip,deflate,sdch", - "Accept-Language: en-US,en;q=0.8" - ], - "line": "GET /task HTTP/1.1\r\n" - }, - "phase": 0, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436864", - "type": 130 - }, - { - "params": { - "byte_count": 266 - }, - "phase": 0, - "source": { - "id": 339, - "type": 5 - }, - "time": "1250436864", - "type": 61 - }, - { - "phase": 2, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436864", - "type": 129 - }, - { - "phase": 1, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436864", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436864", - "type": 215 - }, - { - "params": { - "byte_count": 209 - }, - "phase": 0, - "source": { - "id": 339, - "type": 5 - }, - "time": "1250436864", - "type": 63 - }, - { - "phase": 2, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436864", - "type": 215 - }, - { - "params": { - "headers": [ - "HTTP/1.1 200 OK", - "Server: wptdriver", - "Cache: no-cache", - "Pragma: no-cache", - "Content-Type: application/json", - "Content-Length: 84" - ] - }, - "phase": 0, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436864", - "type": 135 - }, - { - "phase": 2, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436864", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436864", - "type": 105 - }, - { - "params": { - "buf_len": 172, - "index": 0, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 330, - "type": 10 - }, - "time": "1250436864", - "type": 111 - }, - { - "params": { - "bytes_copied": 172 - }, - "phase": 2, - "source": { - "id": 330, - "type": 10 - }, - "time": "1250436864", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436864", - "type": 105 - }, - { - "phase": 1, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436864", - "type": 107 - }, - { - "params": { - "buf_len": 0, - "index": 1, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 330, - "type": 10 - }, - "time": "1250436864", - "type": 111 - }, - { - "params": { - "bytes_copied": 0 - }, - "phase": 2, - "source": { - "id": 330, - "type": 10 - }, - "time": "1250436864", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436864", - "type": 107 - }, - { - "phase": 1, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436864", - "type": 105 - }, - { - "params": { - "buf_len": 0, - "index": 2, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 330, - "type": 10 - }, - "time": "1250436864", - "type": 111 - }, - { - "params": { - "bytes_copied": 0 - }, - "phase": 2, - "source": { - "id": 330, - "type": 10 - }, - "time": "1250436864", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436864", - "type": 105 - }, - { - "phase": 1, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436864", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436864", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436864", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436864", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436864", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436864", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436864", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436864", - "type": 107 - }, - { - "params": { - "buf_len": 84, - "index": 1, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 330, - "type": 10 - }, - "time": "1250436864", - "type": 111 - }, - { - "params": { - "bytes_copied": 84 - }, - "phase": 2, - "source": { - "id": 330, - "type": 10 - }, - "time": "1250436865", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436865", - "type": 107 - }, - { - "phase": 1, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436865", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 339, - "type": 5 - }, - "time": "1250436865", - "type": 38 - }, - { - "phase": 0, - "source": { - "id": 339, - "type": 5 - }, - "time": "1250436865", - "type": 67 - }, - { - "phase": 2, - "source": { - "id": 339, - "type": 5 - }, - "time": "1250436865", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436865", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436865", - "type": 107 - }, - { - "phase": 2, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436865", - "type": 107 - }, - { - "phase": 2, - "source": { - "id": 329, - "type": 1 - }, - "time": "1250436865", - "type": 2 - }, - { - "phase": 0, - "source": { - "id": 330, - "type": 10 - }, - "time": "1250436865", - "type": 118 - }, - { - "phase": 2, - "source": { - "id": 330, - "type": 10 - }, - "time": "1250436865", - "type": 108 - }, - { - "phase": 1, - "source": { - "id": 340, - "type": 1 - }, - "time": "1250436880", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 340, - "type": 1 - }, - "time": "1250436880", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 340, - "type": 1 - }, - "time": "1250436880", - "type": 93 - }, - { - "params": { - "load_flags": 131328, - "method": "POST", - "priority": "LOW", - "url": "http://127.0.0.1:8888/event/stats?domCount=10" - }, - "phase": 1, - "source": { - "id": 340, - "type": 1 - }, - "time": "1250436880", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 340, - "type": 1 - }, - "time": "1250436881", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 340, - "type": 1 - }, - "time": "1250436881", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 340, - "type": 1 - }, - "time": "1250436881", - "type": 99 - }, - { - "phase": 2, - "source": { - "id": 340, - "type": 1 - }, - "time": "1250436881", - "type": 99 - }, - { - "phase": 1, - "source": { - "id": 340, - "type": 1 - }, - "time": "1250436881", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 340, - "type": 1 - }, - "time": "1250436881", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 340, - "type": 1 - }, - "time": "1250436881", - "type": 120 - }, - { - "params": { - "original_url": "http://127.0.0.1:8888/", - "priority": "LOW", - "url": "http://127.0.0.1:8888/" - }, - "phase": 1, - "source": { - "id": 342, - "type": 12 - }, - "time": "1250436881", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 342, - "type": 12 - }, - "time": "1250436881", - "type": 24 - }, - { - "params": { - "pac_string": "DIRECT" - }, - "phase": 0, - "source": { - "id": 342, - "type": 12 - }, - "time": "1250436881", - "type": 26 - }, - { - "phase": 2, - "source": { - "id": 342, - "type": 12 - }, - "time": "1250436881", - "type": 24 - }, - { - "params": { - "source_dependency": { - "id": 343, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 342, - "type": 12 - }, - "time": "1250436881", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 342, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 343, - "type": 8 - }, - "time": "1250436881", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 343, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 344, - "type": 20 - }, - "time": "1250436881", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 344, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 345, - "type": 14 - }, - "time": "1250436881", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 345, - "type": 14 - }, - "time": "1250436881", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 345, - "type": 14 - }, - "time": "1250436881", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:57799" - }, - "phase": 0, - "source": { - "id": 345, - "type": 14 - }, - "time": "1250436881", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 345, - "type": 14 - }, - "time": "1250436881", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 344, - "type": 20 - }, - "time": "1250436881", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 343, - "type": 8 - }, - "time": "1250436881", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 343, - "type": 8 - }, - "time": "1250436881", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 342, - "type": 12 - }, - "time": "1250436881", - "type": 3 - }, - { - "params": { - "host_and_port": "127.0.0.1:8888" - }, - "phase": 0, - "source": { - "id": 342, - "type": 12 - }, - "time": "1250436881", - "type": 85 - }, - { - "phase": 1, - "source": { - "id": 342, - "type": 12 - }, - "time": "1250436881", - "type": 81 - }, - { - "params": { - "group_name": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 346, - "type": 4 - }, - "time": "1250436881", - "type": 77 - }, - { - "phase": 1, - "source": { - "id": 346, - "type": 4 - }, - "time": "1250436881", - "type": 78 - }, - { - "params": { - "source_dependency": { - "id": 347, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 346, - "type": 4 - }, - "time": "1250436881", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 346, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 347, - "type": 8 - }, - "time": "1250436881", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 347, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 348, - "type": 20 - }, - "time": "1250436881", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 348, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 349, - "type": 14 - }, - "time": "1250436881", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 349, - "type": 14 - }, - "time": "1250436881", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 349, - "type": 14 - }, - "time": "1250436881", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:57800" - }, - "phase": 0, - "source": { - "id": 349, - "type": 14 - }, - "time": "1250436881", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 349, - "type": 14 - }, - "time": "1250436881", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 348, - "type": 20 - }, - "time": "1250436881", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 347, - "type": 8 - }, - "time": "1250436881", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 347, - "type": 8 - }, - "time": "1250436881", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 346, - "type": 4 - }, - "time": "1250436881", - "type": 3 - }, - { - "params": { - "source_dependency": { - "id": 346, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 350, - "type": 5 - }, - "time": "1250436881", - "type": 34 - }, - { - "params": { - "address_list": [ - "127.0.0.1:8888" - ] - }, - "phase": 1, - "source": { - "id": 350, - "type": 5 - }, - "time": "1250436881", - "type": 35 - }, - { - "params": { - "address": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 350, - "type": 5 - }, - "time": "1250436881", - "type": 36 - }, - { - "phase": 2, - "source": { - "id": 350, - "type": 5 - }, - "time": "1250436882", - "type": 36 - }, - { - "params": { - "source_address": "127.0.0.1:51003" - }, - "phase": 2, - "source": { - "id": 350, - "type": 5 - }, - "time": "1250436882", - "type": 35 - }, - { - "params": { - "source_dependency": { - "id": 350, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 346, - "type": 4 - }, - "time": "1250436882", - "type": 79 - }, - { - "phase": 2, - "source": { - "id": 346, - "type": 4 - }, - "time": "1250436882", - "type": 78 - }, - { - "phase": 2, - "source": { - "id": 346, - "type": 4 - }, - "time": "1250436882", - "type": 77 - }, - { - "params": { - "source_dependency": { - "id": 346, - "type": 4 - } - }, - "phase": 0, - "source": { - "id": 342, - "type": 12 - }, - "time": "1250436882", - "type": 88 - }, - { - "params": { - "source_dependency": { - "id": 350, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 342, - "type": 12 - }, - "time": "1250436882", - "type": 89 - }, - { - "phase": 2, - "source": { - "id": 342, - "type": 12 - }, - "time": "1250436882", - "type": 81 - }, - { - "params": { - "source_dependency": { - "id": 342, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 350, - "type": 5 - }, - "time": "1250436882", - "type": 38 - }, - { - "params": { - "source_dependency": { - "id": 342, - "type": 12 - } - }, - "phase": 0, - "source": { - "id": 340, - "type": 1 - }, - "time": "1250436882", - "type": 122 - }, - { - "params": { - "source_dependency": { - "id": 340, - "type": 1 - } - }, - "phase": 0, - "source": { - "id": 342, - "type": 12 - }, - "time": "1250436882", - "type": 123 - }, - { - "phase": 2, - "source": { - "id": 340, - "type": 1 - }, - "time": "1250436882", - "type": 120 - }, - { - "phase": 2, - "source": { - "id": 342, - "type": 12 - }, - "time": "1250436882", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 340, - "type": 1 - }, - "time": "1250436882", - "type": 129 - }, - { - "params": { - "headers": [ - "Host: 127.0.0.1:8888", - "Connection: keep-alive", - "Content-Length: 0", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", - "Origin: chrome-extension://ejfgipfkkpdadoidbhfedneaabgolbno", - "Accept: */*", - "Accept-Encoding: gzip,deflate", - "Accept-Language: en-US,en;q=0.8" - ], - "line": "POST /event/stats?domCount=10 HTTP/1.1\r\n" - }, - "phase": 0, - "source": { - "id": 340, - "type": 1 - }, - "time": "1250436882", - "type": 130 - }, - { - "params": { - "byte_count": 361 - }, - "phase": 0, - "source": { - "id": 350, - "type": 5 - }, - "time": "1250436882", - "type": 61 - }, - { - "phase": 2, - "source": { - "id": 340, - "type": 1 - }, - "time": "1250436882", - "type": 129 - }, - { - "phase": 1, - "source": { - "id": 340, - "type": 1 - }, - "time": "1250436882", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 340, - "type": 1 - }, - "time": "1250436882", - "type": 215 - }, - { - "params": { - "byte_count": 161 - }, - "phase": 0, - "source": { - "id": 350, - "type": 5 - }, - "time": "1250436882", - "type": 63 - }, - { - "phase": 2, - "source": { - "id": 340, - "type": 1 - }, - "time": "1250436882", - "type": 215 - }, - { - "params": { - "headers": [ - "HTTP/1.1 200 OK", - "Server: wptdriver", - "Cache: no-cache", - "Pragma: no-cache", - "Content-Type: application/json", - "Content-Length: 36" - ] - }, - "phase": 0, - "source": { - "id": 340, - "type": 1 - }, - "time": "1250436882", - "type": 135 - }, - { - "phase": 2, - "source": { - "id": 340, - "type": 1 - }, - "time": "1250436882", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 340, - "type": 1 - }, - "time": "1250436882", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 340, - "type": 1 - }, - "time": "1250436882", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 340, - "type": 1 - }, - "time": "1250436882", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 340, - "type": 1 - }, - "time": "1250436882", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 340, - "type": 1 - }, - "time": "1250436883", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 340, - "type": 1 - }, - "time": "1250436883", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 340, - "type": 1 - }, - "time": "1250436883", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 340, - "type": 1 - }, - "time": "1250436883", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 350, - "type": 5 - }, - "time": "1250436883", - "type": 38 - }, - { - "phase": 0, - "source": { - "id": 350, - "type": 5 - }, - "time": "1250436883", - "type": 67 - }, - { - "phase": 2, - "source": { - "id": 350, - "type": 5 - }, - "time": "1250436883", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 340, - "type": 1 - }, - "time": "1250436883", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 340, - "type": 1 - }, - "time": "1250436883", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 351, - "type": 1 - }, - "time": "1250436888", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 351, - "type": 1 - }, - "time": "1250436888", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 351, - "type": 1 - }, - "time": "1250436888", - "type": 93 - }, - { - "params": { - "load_flags": 131328, - "method": "POST", - "priority": "LOW", - "url": "http://127.0.0.1:8888/event/window_timing?domContentLoadedEventStart=318&domContentLoadedEventEnd=318&loadEventStart=319&loadEventEnd=342&msFirstPaint=414.5359992980957" - }, - "phase": 1, - "source": { - "id": 351, - "type": 1 - }, - "time": "1250436888", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 351, - "type": 1 - }, - "time": "1250436888", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 351, - "type": 1 - }, - "time": "1250436888", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 351, - "type": 1 - }, - "time": "1250436888", - "type": 99 - }, - { - "phase": 2, - "source": { - "id": 351, - "type": 1 - }, - "time": "1250436888", - "type": 99 - }, - { - "phase": 1, - "source": { - "id": 351, - "type": 1 - }, - "time": "1250436888", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 351, - "type": 1 - }, - "time": "1250436888", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 351, - "type": 1 - }, - "time": "1250436888", - "type": 120 - }, - { - "params": { - "original_url": "http://127.0.0.1:8888/", - "priority": "LOW", - "url": "http://127.0.0.1:8888/" - }, - "phase": 1, - "source": { - "id": 353, - "type": 12 - }, - "time": "1250436888", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 353, - "type": 12 - }, - "time": "1250436889", - "type": 24 - }, - { - "params": { - "pac_string": "DIRECT" - }, - "phase": 0, - "source": { - "id": 353, - "type": 12 - }, - "time": "1250436889", - "type": 26 - }, - { - "phase": 2, - "source": { - "id": 353, - "type": 12 - }, - "time": "1250436889", - "type": 24 - }, - { - "params": { - "source_dependency": { - "id": 354, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 353, - "type": 12 - }, - "time": "1250436889", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 353, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 354, - "type": 8 - }, - "time": "1250436889", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 354, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 355, - "type": 20 - }, - "time": "1250436889", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 355, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 356, - "type": 14 - }, - "time": "1250436889", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 356, - "type": 14 - }, - "time": "1250436889", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 356, - "type": 14 - }, - "time": "1250436889", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:57801" - }, - "phase": 0, - "source": { - "id": 356, - "type": 14 - }, - "time": "1250436889", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 356, - "type": 14 - }, - "time": "1250436889", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 355, - "type": 20 - }, - "time": "1250436889", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 354, - "type": 8 - }, - "time": "1250436889", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 354, - "type": 8 - }, - "time": "1250436889", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 353, - "type": 12 - }, - "time": "1250436889", - "type": 3 - }, - { - "params": { - "host_and_port": "127.0.0.1:8888" - }, - "phase": 0, - "source": { - "id": 353, - "type": 12 - }, - "time": "1250436889", - "type": 85 - }, - { - "phase": 1, - "source": { - "id": 353, - "type": 12 - }, - "time": "1250436889", - "type": 81 - }, - { - "params": { - "group_name": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 357, - "type": 4 - }, - "time": "1250436889", - "type": 77 - }, - { - "phase": 1, - "source": { - "id": 357, - "type": 4 - }, - "time": "1250436889", - "type": 78 - }, - { - "params": { - "source_dependency": { - "id": 358, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 357, - "type": 4 - }, - "time": "1250436889", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 357, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 358, - "type": 8 - }, - "time": "1250436889", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 358, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 359, - "type": 20 - }, - "time": "1250436889", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 359, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 360, - "type": 14 - }, - "time": "1250436889", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 360, - "type": 14 - }, - "time": "1250436889", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 360, - "type": 14 - }, - "time": "1250436889", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:57802" - }, - "phase": 0, - "source": { - "id": 360, - "type": 14 - }, - "time": "1250436889", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 360, - "type": 14 - }, - "time": "1250436889", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 359, - "type": 20 - }, - "time": "1250436889", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 358, - "type": 8 - }, - "time": "1250436889", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 358, - "type": 8 - }, - "time": "1250436889", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 357, - "type": 4 - }, - "time": "1250436889", - "type": 3 - }, - { - "params": { - "source_dependency": { - "id": 357, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 361, - "type": 5 - }, - "time": "1250436889", - "type": 34 - }, - { - "params": { - "address_list": [ - "127.0.0.1:8888" - ] - }, - "phase": 1, - "source": { - "id": 361, - "type": 5 - }, - "time": "1250436889", - "type": 35 - }, - { - "params": { - "address": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 361, - "type": 5 - }, - "time": "1250436889", - "type": 36 - }, - { - "phase": 2, - "source": { - "id": 361, - "type": 5 - }, - "time": "1250436890", - "type": 36 - }, - { - "params": { - "source_address": "127.0.0.1:51004" - }, - "phase": 2, - "source": { - "id": 361, - "type": 5 - }, - "time": "1250436890", - "type": 35 - }, - { - "params": { - "source_dependency": { - "id": 361, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 357, - "type": 4 - }, - "time": "1250436890", - "type": 79 - }, - { - "phase": 2, - "source": { - "id": 357, - "type": 4 - }, - "time": "1250436890", - "type": 78 - }, - { - "phase": 2, - "source": { - "id": 357, - "type": 4 - }, - "time": "1250436890", - "type": 77 - }, - { - "params": { - "source_dependency": { - "id": 357, - "type": 4 - } - }, - "phase": 0, - "source": { - "id": 353, - "type": 12 - }, - "time": "1250436890", - "type": 88 - }, - { - "params": { - "source_dependency": { - "id": 361, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 353, - "type": 12 - }, - "time": "1250436890", - "type": 89 - }, - { - "phase": 2, - "source": { - "id": 353, - "type": 12 - }, - "time": "1250436890", - "type": 81 - }, - { - "params": { - "source_dependency": { - "id": 353, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 361, - "type": 5 - }, - "time": "1250436890", - "type": 38 - }, - { - "params": { - "source_dependency": { - "id": 353, - "type": 12 - } - }, - "phase": 0, - "source": { - "id": 351, - "type": 1 - }, - "time": "1250436890", - "type": 122 - }, - { - "params": { - "source_dependency": { - "id": 351, - "type": 1 - } - }, - "phase": 0, - "source": { - "id": 353, - "type": 12 - }, - "time": "1250436890", - "type": 123 - }, - { - "phase": 2, - "source": { - "id": 351, - "type": 1 - }, - "time": "1250436890", - "type": 120 - }, - { - "phase": 2, - "source": { - "id": 353, - "type": 12 - }, - "time": "1250436890", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 351, - "type": 1 - }, - "time": "1250436890", - "type": 129 - }, - { - "params": { - "headers": [ - "Host: 127.0.0.1:8888", - "Connection: keep-alive", - "Content-Length: 0", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", - "Origin: chrome-extension://ejfgipfkkpdadoidbhfedneaabgolbno", - "Accept: */*", - "Accept-Encoding: gzip,deflate", - "Accept-Language: en-US,en;q=0.8" - ], - "line": "POST /event/window_timing?domContentLoadedEventStart=318&domContentLoadedEventEnd=318&loadEventStart=319&loadEventEnd=342&msFirstPaint=414.5359992980957 HTTP/1.1\r\n" - }, - "phase": 0, - "source": { - "id": 351, - "type": 1 - }, - "time": "1250436890", - "type": 130 - }, - { - "params": { - "byte_count": 484 - }, - "phase": 0, - "source": { - "id": 361, - "type": 5 - }, - "time": "1250436890", - "type": 61 - }, - { - "phase": 2, - "source": { - "id": 351, - "type": 1 - }, - "time": "1250436890", - "type": 129 - }, - { - "phase": 1, - "source": { - "id": 351, - "type": 1 - }, - "time": "1250436890", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 351, - "type": 1 - }, - "time": "1250436890", - "type": 215 - }, - { - "params": { - "byte_count": 161 - }, - "phase": 0, - "source": { - "id": 361, - "type": 5 - }, - "time": "1250436890", - "type": 63 - }, - { - "phase": 2, - "source": { - "id": 351, - "type": 1 - }, - "time": "1250436890", - "type": 215 - }, - { - "params": { - "headers": [ - "HTTP/1.1 200 OK", - "Server: wptdriver", - "Cache: no-cache", - "Pragma: no-cache", - "Content-Type: application/json", - "Content-Length: 36" - ] - }, - "phase": 0, - "source": { - "id": 351, - "type": 1 - }, - "time": "1250436890", - "type": 135 - }, - { - "phase": 2, - "source": { - "id": 351, - "type": 1 - }, - "time": "1250436891", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 351, - "type": 1 - }, - "time": "1250436891", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 351, - "type": 1 - }, - "time": "1250436891", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 351, - "type": 1 - }, - "time": "1250436891", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 351, - "type": 1 - }, - "time": "1250436891", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 351, - "type": 1 - }, - "time": "1250436891", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 351, - "type": 1 - }, - "time": "1250436891", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 351, - "type": 1 - }, - "time": "1250436891", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 351, - "type": 1 - }, - "time": "1250436891", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 361, - "type": 5 - }, - "time": "1250436891", - "type": 38 - }, - { - "phase": 0, - "source": { - "id": 361, - "type": 5 - }, - "time": "1250436891", - "type": 67 - }, - { - "phase": 2, - "source": { - "id": 361, - "type": 5 - }, - "time": "1250436891", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 351, - "type": 1 - }, - "time": "1250436891", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 351, - "type": 1 - }, - "time": "1250436891", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436896", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436896", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436896", - "type": 93 - }, - { - "params": { - "load_flags": 131328, - "method": "GET", - "priority": "LOW", - "url": "http://127.0.0.1:8888/task" - }, - "phase": 1, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436896", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436896", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436896", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436896", - "type": 99 - }, - { - "phase": 2, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436896", - "type": 99 - }, - { - "phase": 1, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436896", - "type": 100 - }, - { - "params": { - "created": false, - "key": "http://127.0.0.1:8888/task" - }, - "phase": 1, - "source": { - "id": 363, - "type": 10 - }, - "time": "1250436896", - "type": 108 - }, - { - "phase": 2, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436897", - "type": 100 - }, - { - "phase": 1, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436897", - "type": 102 - }, - { - "phase": 2, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436897", - "type": 102 - }, - { - "phase": 1, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436897", - "type": 104 - }, - { - "params": { - "buf_len": 172, - "index": 0, - "offset": 0 - }, - "phase": 1, - "source": { - "id": 363, - "type": 10 - }, - "time": "1250436897", - "type": 110 - }, - { - "params": { - "bytes_copied": 172 - }, - "phase": 2, - "source": { - "id": 363, - "type": 10 - }, - "time": "1250436897", - "type": 110 - }, - { - "phase": 2, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436897", - "type": 104 - }, - { - "phase": 1, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436897", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436897", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436897", - "type": 120 - }, - { - "params": { - "original_url": "http://127.0.0.1:8888/", - "priority": "LOW", - "url": "http://127.0.0.1:8888/" - }, - "phase": 1, - "source": { - "id": 364, - "type": 12 - }, - "time": "1250436897", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 364, - "type": 12 - }, - "time": "1250436897", - "type": 24 - }, - { - "params": { - "pac_string": "DIRECT" - }, - "phase": 0, - "source": { - "id": 364, - "type": 12 - }, - "time": "1250436897", - "type": 26 - }, - { - "phase": 2, - "source": { - "id": 364, - "type": 12 - }, - "time": "1250436897", - "type": 24 - }, - { - "params": { - "source_dependency": { - "id": 365, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 364, - "type": 12 - }, - "time": "1250436897", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 364, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 365, - "type": 8 - }, - "time": "1250436897", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 365, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 366, - "type": 20 - }, - "time": "1250436897", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 366, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 367, - "type": 14 - }, - "time": "1250436897", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 367, - "type": 14 - }, - "time": "1250436897", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 367, - "type": 14 - }, - "time": "1250436897", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:57803" - }, - "phase": 0, - "source": { - "id": 367, - "type": 14 - }, - "time": "1250436897", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 367, - "type": 14 - }, - "time": "1250436897", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 366, - "type": 20 - }, - "time": "1250436897", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 365, - "type": 8 - }, - "time": "1250436897", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 365, - "type": 8 - }, - "time": "1250436897", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 364, - "type": 12 - }, - "time": "1250436897", - "type": 3 - }, - { - "params": { - "host_and_port": "127.0.0.1:8888" - }, - "phase": 0, - "source": { - "id": 364, - "type": 12 - }, - "time": "1250436897", - "type": 85 - }, - { - "phase": 1, - "source": { - "id": 364, - "type": 12 - }, - "time": "1250436897", - "type": 81 - }, - { - "params": { - "group_name": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 368, - "type": 4 - }, - "time": "1250436897", - "type": 77 - }, - { - "phase": 1, - "source": { - "id": 368, - "type": 4 - }, - "time": "1250436897", - "type": 78 - }, - { - "params": { - "source_dependency": { - "id": 369, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 368, - "type": 4 - }, - "time": "1250436897", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 368, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 369, - "type": 8 - }, - "time": "1250436897", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 369, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 370, - "type": 20 - }, - "time": "1250436897", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 370, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 371, - "type": 14 - }, - "time": "1250436897", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 371, - "type": 14 - }, - "time": "1250436897", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 371, - "type": 14 - }, - "time": "1250436897", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:57804" - }, - "phase": 0, - "source": { - "id": 371, - "type": 14 - }, - "time": "1250436897", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 371, - "type": 14 - }, - "time": "1250436897", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 370, - "type": 20 - }, - "time": "1250436897", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 369, - "type": 8 - }, - "time": "1250436897", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 369, - "type": 8 - }, - "time": "1250436897", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 368, - "type": 4 - }, - "time": "1250436897", - "type": 3 - }, - { - "params": { - "source_dependency": { - "id": 368, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 372, - "type": 5 - }, - "time": "1250436897", - "type": 34 - }, - { - "params": { - "address_list": [ - "127.0.0.1:8888" - ] - }, - "phase": 1, - "source": { - "id": 372, - "type": 5 - }, - "time": "1250436897", - "type": 35 - }, - { - "params": { - "address": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 372, - "type": 5 - }, - "time": "1250436897", - "type": 36 - }, - { - "phase": 2, - "source": { - "id": 372, - "type": 5 - }, - "time": "1250436898", - "type": 36 - }, - { - "params": { - "source_address": "127.0.0.1:51005" - }, - "phase": 2, - "source": { - "id": 372, - "type": 5 - }, - "time": "1250436898", - "type": 35 - }, - { - "params": { - "source_dependency": { - "id": 372, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 368, - "type": 4 - }, - "time": "1250436898", - "type": 79 - }, - { - "phase": 2, - "source": { - "id": 368, - "type": 4 - }, - "time": "1250436898", - "type": 78 - }, - { - "phase": 2, - "source": { - "id": 368, - "type": 4 - }, - "time": "1250436898", - "type": 77 - }, - { - "params": { - "source_dependency": { - "id": 368, - "type": 4 - } - }, - "phase": 0, - "source": { - "id": 364, - "type": 12 - }, - "time": "1250436898", - "type": 88 - }, - { - "params": { - "source_dependency": { - "id": 372, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 364, - "type": 12 - }, - "time": "1250436898", - "type": 89 - }, - { - "phase": 2, - "source": { - "id": 364, - "type": 12 - }, - "time": "1250436898", - "type": 81 - }, - { - "params": { - "source_dependency": { - "id": 364, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 372, - "type": 5 - }, - "time": "1250436898", - "type": 38 - }, - { - "params": { - "source_dependency": { - "id": 364, - "type": 12 - } - }, - "phase": 0, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436898", - "type": 122 - }, - { - "params": { - "source_dependency": { - "id": 362, - "type": 1 - } - }, - "phase": 0, - "source": { - "id": 364, - "type": 12 - }, - "time": "1250436898", - "type": 123 - }, - { - "phase": 2, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436898", - "type": 120 - }, - { - "phase": 2, - "source": { - "id": 364, - "type": 12 - }, - "time": "1250436898", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436898", - "type": 129 - }, - { - "params": { - "headers": [ - "Host: 127.0.0.1:8888", - "Connection: keep-alive", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", - "Accept: */*", - "Accept-Encoding: gzip,deflate,sdch", - "Accept-Language: en-US,en;q=0.8" - ], - "line": "GET /task HTTP/1.1\r\n" - }, - "phase": 0, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436898", - "type": 130 - }, - { - "params": { - "byte_count": 266 - }, - "phase": 0, - "source": { - "id": 372, - "type": 5 - }, - "time": "1250436898", - "type": 61 - }, - { - "phase": 2, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436898", - "type": 129 - }, - { - "phase": 1, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436898", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436898", - "type": 215 - }, - { - "params": { - "byte_count": 207 - }, - "phase": 0, - "source": { - "id": 372, - "type": 5 - }, - "time": "1250436901", - "type": 63 - }, - { - "phase": 2, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436901", - "type": 215 - }, - { - "params": { - "headers": [ - "HTTP/1.1 200 OK", - "Server: wptdriver", - "Cache: no-cache", - "Pragma: no-cache", - "Content-Type: application/json", - "Content-Length: 82" - ] - }, - "phase": 0, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436901", - "type": 135 - }, - { - "phase": 2, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436901", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436901", - "type": 105 - }, - { - "params": { - "buf_len": 172, - "index": 0, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 363, - "type": 10 - }, - "time": "1250436901", - "type": 111 - }, - { - "params": { - "bytes_copied": 172 - }, - "phase": 2, - "source": { - "id": 363, - "type": 10 - }, - "time": "1250436901", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436901", - "type": 105 - }, - { - "phase": 1, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436901", - "type": 107 - }, - { - "params": { - "buf_len": 0, - "index": 1, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 363, - "type": 10 - }, - "time": "1250436901", - "type": 111 - }, - { - "params": { - "bytes_copied": 0 - }, - "phase": 2, - "source": { - "id": 363, - "type": 10 - }, - "time": "1250436901", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436901", - "type": 107 - }, - { - "phase": 1, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436901", - "type": 105 - }, - { - "params": { - "buf_len": 0, - "index": 2, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 363, - "type": 10 - }, - "time": "1250436901", - "type": 111 - }, - { - "params": { - "bytes_copied": 0 - }, - "phase": 2, - "source": { - "id": 363, - "type": 10 - }, - "time": "1250436901", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436901", - "type": 105 - }, - { - "phase": 1, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436901", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436901", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436901", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436901", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436901", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436901", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436901", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436901", - "type": 107 - }, - { - "params": { - "buf_len": 82, - "index": 1, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 363, - "type": 10 - }, - "time": "1250436901", - "type": 111 - }, - { - "params": { - "bytes_copied": 82 - }, - "phase": 2, - "source": { - "id": 363, - "type": 10 - }, - "time": "1250436901", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436901", - "type": 107 - }, - { - "phase": 1, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436901", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 372, - "type": 5 - }, - "time": "1250436901", - "type": 38 - }, - { - "phase": 0, - "source": { - "id": 372, - "type": 5 - }, - "time": "1250436901", - "type": 67 - }, - { - "phase": 2, - "source": { - "id": 372, - "type": 5 - }, - "time": "1250436902", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436902", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436902", - "type": 107 - }, - { - "phase": 2, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436902", - "type": 107 - }, - { - "phase": 2, - "source": { - "id": 362, - "type": 1 - }, - "time": "1250436902", - "type": 2 - }, - { - "phase": 0, - "source": { - "id": 363, - "type": 10 - }, - "time": "1250436902", - "type": 118 - }, - { - "phase": 2, - "source": { - "id": 363, - "type": 10 - }, - "time": "1250436902", - "type": 108 - }, - { - "phase": 1, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436909", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436909", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436909", - "type": 93 - }, - { - "params": { - "load_flags": 131328, - "method": "GET", - "priority": "LOW", - "url": "http://127.0.0.1:8888/task" - }, - "phase": 1, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436909", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436909", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436909", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436909", - "type": 99 - }, - { - "phase": 2, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436909", - "type": 99 - }, - { - "phase": 1, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436909", - "type": 100 - }, - { - "params": { - "created": false, - "key": "http://127.0.0.1:8888/task" - }, - "phase": 1, - "source": { - "id": 374, - "type": 10 - }, - "time": "1250436910", - "type": 108 - }, - { - "phase": 2, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436910", - "type": 100 - }, - { - "phase": 1, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436910", - "type": 102 - }, - { - "phase": 2, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436910", - "type": 102 - }, - { - "phase": 1, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436910", - "type": 104 - }, - { - "params": { - "buf_len": 172, - "index": 0, - "offset": 0 - }, - "phase": 1, - "source": { - "id": 374, - "type": 10 - }, - "time": "1250436910", - "type": 110 - }, - { - "params": { - "bytes_copied": 172 - }, - "phase": 2, - "source": { - "id": 374, - "type": 10 - }, - "time": "1250436910", - "type": 110 - }, - { - "phase": 2, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436910", - "type": 104 - }, - { - "phase": 1, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436910", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436910", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436910", - "type": 120 - }, - { - "params": { - "original_url": "http://127.0.0.1:8888/", - "priority": "LOW", - "url": "http://127.0.0.1:8888/" - }, - "phase": 1, - "source": { - "id": 375, - "type": 12 - }, - "time": "1250436910", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 375, - "type": 12 - }, - "time": "1250436910", - "type": 24 - }, - { - "params": { - "pac_string": "DIRECT" - }, - "phase": 0, - "source": { - "id": 375, - "type": 12 - }, - "time": "1250436910", - "type": 26 - }, - { - "phase": 2, - "source": { - "id": 375, - "type": 12 - }, - "time": "1250436910", - "type": 24 - }, - { - "params": { - "source_dependency": { - "id": 376, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 375, - "type": 12 - }, - "time": "1250436910", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 375, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 376, - "type": 8 - }, - "time": "1250436910", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 376, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 377, - "type": 20 - }, - "time": "1250436910", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 377, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 378, - "type": 14 - }, - "time": "1250436910", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 378, - "type": 14 - }, - "time": "1250436910", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 378, - "type": 14 - }, - "time": "1250436910", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:57805" - }, - "phase": 0, - "source": { - "id": 378, - "type": 14 - }, - "time": "1250436910", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 378, - "type": 14 - }, - "time": "1250436910", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 377, - "type": 20 - }, - "time": "1250436910", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 376, - "type": 8 - }, - "time": "1250436910", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 376, - "type": 8 - }, - "time": "1250436910", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 375, - "type": 12 - }, - "time": "1250436910", - "type": 3 - }, - { - "params": { - "host_and_port": "127.0.0.1:8888" - }, - "phase": 0, - "source": { - "id": 375, - "type": 12 - }, - "time": "1250436910", - "type": 85 - }, - { - "phase": 1, - "source": { - "id": 375, - "type": 12 - }, - "time": "1250436910", - "type": 81 - }, - { - "params": { - "group_name": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 379, - "type": 4 - }, - "time": "1250436910", - "type": 77 - }, - { - "phase": 1, - "source": { - "id": 379, - "type": 4 - }, - "time": "1250436910", - "type": 78 - }, - { - "params": { - "source_dependency": { - "id": 380, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 379, - "type": 4 - }, - "time": "1250436910", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 379, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 380, - "type": 8 - }, - "time": "1250436910", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 380, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 381, - "type": 20 - }, - "time": "1250436910", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 381, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 382, - "type": 14 - }, - "time": "1250436910", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 382, - "type": 14 - }, - "time": "1250436910", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 382, - "type": 14 - }, - "time": "1250436910", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:57806" - }, - "phase": 0, - "source": { - "id": 382, - "type": 14 - }, - "time": "1250436910", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 382, - "type": 14 - }, - "time": "1250436910", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 381, - "type": 20 - }, - "time": "1250436910", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 380, - "type": 8 - }, - "time": "1250436910", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 380, - "type": 8 - }, - "time": "1250436910", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 379, - "type": 4 - }, - "time": "1250436910", - "type": 3 - }, - { - "params": { - "source_dependency": { - "id": 379, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 383, - "type": 5 - }, - "time": "1250436910", - "type": 34 - }, - { - "params": { - "address_list": [ - "127.0.0.1:8888" - ] - }, - "phase": 1, - "source": { - "id": 383, - "type": 5 - }, - "time": "1250436910", - "type": 35 - }, - { - "params": { - "address": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 383, - "type": 5 - }, - "time": "1250436910", - "type": 36 - }, - { - "phase": 2, - "source": { - "id": 383, - "type": 5 - }, - "time": "1250436911", - "type": 36 - }, - { - "params": { - "source_address": "127.0.0.1:51006" - }, - "phase": 2, - "source": { - "id": 383, - "type": 5 - }, - "time": "1250436911", - "type": 35 - }, - { - "params": { - "source_dependency": { - "id": 383, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 379, - "type": 4 - }, - "time": "1250436911", - "type": 79 - }, - { - "phase": 2, - "source": { - "id": 379, - "type": 4 - }, - "time": "1250436911", - "type": 78 - }, - { - "phase": 2, - "source": { - "id": 379, - "type": 4 - }, - "time": "1250436911", - "type": 77 - }, - { - "params": { - "source_dependency": { - "id": 379, - "type": 4 - } - }, - "phase": 0, - "source": { - "id": 375, - "type": 12 - }, - "time": "1250436911", - "type": 88 - }, - { - "params": { - "source_dependency": { - "id": 383, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 375, - "type": 12 - }, - "time": "1250436911", - "type": 89 - }, - { - "phase": 2, - "source": { - "id": 375, - "type": 12 - }, - "time": "1250436911", - "type": 81 - }, - { - "params": { - "source_dependency": { - "id": 375, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 383, - "type": 5 - }, - "time": "1250436911", - "type": 38 - }, - { - "params": { - "source_dependency": { - "id": 375, - "type": 12 - } - }, - "phase": 0, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436911", - "type": 122 - }, - { - "params": { - "source_dependency": { - "id": 373, - "type": 1 - } - }, - "phase": 0, - "source": { - "id": 375, - "type": 12 - }, - "time": "1250436911", - "type": 123 - }, - { - "phase": 2, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436911", - "type": 120 - }, - { - "phase": 2, - "source": { - "id": 375, - "type": 12 - }, - "time": "1250436911", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436911", - "type": 129 - }, - { - "params": { - "headers": [ - "Host: 127.0.0.1:8888", - "Connection: keep-alive", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36", - "Accept: */*", - "Accept-Encoding: gzip,deflate,sdch", - "Accept-Language: en-US,en;q=0.8" - ], - "line": "GET /task HTTP/1.1\r\n" - }, - "phase": 0, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436911", - "type": 130 - }, - { - "params": { - "byte_count": 266 - }, - "phase": 0, - "source": { - "id": 383, - "type": 5 - }, - "time": "1250436911", - "type": 61 - }, - { - "phase": 2, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436911", - "type": 129 - }, - { - "phase": 1, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436911", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436911", - "type": 215 - }, - { - "params": { - "byte_count": 161 - }, - "phase": 0, - "source": { - "id": 383, - "type": 5 - }, - "time": "1250436911", - "type": 63 - }, - { - "phase": 2, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436911", - "type": 215 - }, - { - "params": { - "headers": [ - "HTTP/1.1 200 OK", - "Server: wptdriver", - "Cache: no-cache", - "Pragma: no-cache", - "Content-Type: application/json", - "Content-Length: 36" - ] - }, - "phase": 0, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436911", - "type": 135 - }, - { - "phase": 2, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436911", - "type": 134 - }, - { - "phase": 1, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436911", - "type": 105 - }, - { - "params": { - "buf_len": 172, - "index": 0, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 374, - "type": 10 - }, - "time": "1250436911", - "type": 111 - }, - { - "params": { - "bytes_copied": 172 - }, - "phase": 2, - "source": { - "id": 374, - "type": 10 - }, - "time": "1250436911", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436911", - "type": 105 - }, - { - "phase": 1, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436911", - "type": 107 - }, - { - "params": { - "buf_len": 0, - "index": 1, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 374, - "type": 10 - }, - "time": "1250436911", - "type": 111 - }, - { - "params": { - "bytes_copied": 0 - }, - "phase": 2, - "source": { - "id": 374, - "type": 10 - }, - "time": "1250436912", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436912", - "type": 107 - }, - { - "phase": 1, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436912", - "type": 105 - }, - { - "params": { - "buf_len": 0, - "index": 2, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 374, - "type": 10 - }, - "time": "1250436912", - "type": 111 - }, - { - "params": { - "bytes_copied": 0 - }, - "phase": 2, - "source": { - "id": 374, - "type": 10 - }, - "time": "1250436912", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436912", - "type": 105 - }, - { - "phase": 1, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436912", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436912", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436912", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436912", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436912", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436912", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436912", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436912", - "type": 107 - }, - { - "params": { - "buf_len": 36, - "index": 1, - "offset": 0, - "truncate": true - }, - "phase": 1, - "source": { - "id": 374, - "type": 10 - }, - "time": "1250436912", - "type": 111 - }, - { - "params": { - "bytes_copied": 36 - }, - "phase": 2, - "source": { - "id": 374, - "type": 10 - }, - "time": "1250436912", - "type": 111 - }, - { - "phase": 2, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436912", - "type": 107 - }, - { - "phase": 1, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436912", - "type": 136 - }, - { - "phase": 2, - "source": { - "id": 383, - "type": 5 - }, - "time": "1250436912", - "type": 38 - }, - { - "phase": 0, - "source": { - "id": 383, - "type": 5 - }, - "time": "1250436912", - "type": 67 - }, - { - "phase": 2, - "source": { - "id": 383, - "type": 5 - }, - "time": "1250436912", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436912", - "type": 136 - }, - { - "phase": 1, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436912", - "type": 107 - }, - { - "phase": 2, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436912", - "type": 107 - }, - { - "phase": 2, - "source": { - "id": 373, - "type": 1 - }, - "time": "1250436912", - "type": 2 - }, - { - "phase": 0, - "source": { - "id": 374, - "type": 10 - }, - "time": "1250436912", - "type": 118 - }, - { - "phase": 2, - "source": { - "id": 374, - "type": 10 - }, - "time": "1250436912", - "type": 108 - }, - { - "phase": 1, - "source": { - "id": 384, - "type": 1 - }, - "time": "1250437861", - "type": 2 - }, - { - "phase": 1, - "source": { - "id": 384, - "type": 1 - }, - "time": "1250437861", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 384, - "type": 1 - }, - "time": "1250437861", - "type": 93 - }, - { - "params": { - "load_flags": 131328, - "method": "GET", - "priority": "LOW", - "url": "http://127.0.0.1:8888/task" - }, - "phase": 1, - "source": { - "id": 384, - "type": 1 - }, - "time": "1250437861", - "type": 91 - }, - { - "phase": 1, - "source": { - "id": 384, - "type": 1 - }, - "time": "1250437861", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 384, - "type": 1 - }, - "time": "1250437861", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 384, - "type": 1 - }, - "time": "1250437861", - "type": 99 - }, - { - "phase": 2, - "source": { - "id": 384, - "type": 1 - }, - "time": "1250437861", - "type": 99 - }, - { - "phase": 1, - "source": { - "id": 384, - "type": 1 - }, - "time": "1250437862", - "type": 100 - }, - { - "params": { - "created": false, - "key": "http://127.0.0.1:8888/task" - }, - "phase": 1, - "source": { - "id": 385, - "type": 10 - }, - "time": "1250437862", - "type": 108 - }, - { - "phase": 2, - "source": { - "id": 384, - "type": 1 - }, - "time": "1250437862", - "type": 100 - }, - { - "phase": 1, - "source": { - "id": 384, - "type": 1 - }, - "time": "1250437862", - "type": 102 - }, - { - "phase": 2, - "source": { - "id": 384, - "type": 1 - }, - "time": "1250437862", - "type": 102 - }, - { - "phase": 1, - "source": { - "id": 384, - "type": 1 - }, - "time": "1250437862", - "type": 104 - }, - { - "params": { - "buf_len": 172, - "index": 0, - "offset": 0 - }, - "phase": 1, - "source": { - "id": 385, - "type": 10 - }, - "time": "1250437862", - "type": 110 - }, - { - "params": { - "bytes_copied": 172 - }, - "phase": 2, - "source": { - "id": 385, - "type": 10 - }, - "time": "1250437862", - "type": 110 - }, - { - "phase": 2, - "source": { - "id": 384, - "type": 1 - }, - "time": "1250437862", - "type": 104 - }, - { - "phase": 1, - "source": { - "id": 384, - "type": 1 - }, - "time": "1250437862", - "type": 93 - }, - { - "phase": 2, - "source": { - "id": 384, - "type": 1 - }, - "time": "1250437862", - "type": 93 - }, - { - "phase": 1, - "source": { - "id": 384, - "type": 1 - }, - "time": "1250437862", - "type": 120 - }, - { - "params": { - "original_url": "http://127.0.0.1:8888/", - "priority": "LOW", - "url": "http://127.0.0.1:8888/" - }, - "phase": 1, - "source": { - "id": 386, - "type": 12 - }, - "time": "1250437862", - "type": 121 - }, - { - "phase": 1, - "source": { - "id": 386, - "type": 12 - }, - "time": "1250437862", - "type": 24 - }, - { - "params": { - "pac_string": "DIRECT" - }, - "phase": 0, - "source": { - "id": 386, - "type": 12 - }, - "time": "1250437862", - "type": 26 - }, - { - "phase": 2, - "source": { - "id": 386, - "type": 12 - }, - "time": "1250437862", - "type": 24 - }, - { - "params": { - "source_dependency": { - "id": 387, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 386, - "type": 12 - }, - "time": "1250437862", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 386, - "type": 12 - } - }, - "phase": 1, - "source": { - "id": 387, - "type": 8 - }, - "time": "1250437862", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 387, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 388, - "type": 20 - }, - "time": "1250437862", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 388, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 389, - "type": 14 - }, - "time": "1250437862", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 389, - "type": 14 - }, - "time": "1250437862", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 389, - "type": 14 - }, - "time": "1250437862", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:57807" - }, - "phase": 0, - "source": { - "id": 389, - "type": 14 - }, - "time": "1250437862", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 389, - "type": 14 - }, - "time": "1250437862", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 388, - "type": 20 - }, - "time": "1250437863", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 387, - "type": 8 - }, - "time": "1250437863", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 387, - "type": 8 - }, - "time": "1250437863", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 386, - "type": 12 - }, - "time": "1250437863", - "type": 3 - }, - { - "params": { - "host_and_port": "127.0.0.1:8888" - }, - "phase": 0, - "source": { - "id": 386, - "type": 12 - }, - "time": "1250437863", - "type": 85 - }, - { - "phase": 1, - "source": { - "id": 386, - "type": 12 - }, - "time": "1250437863", - "type": 81 - }, - { - "params": { - "group_name": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 390, - "type": 4 - }, - "time": "1250437863", - "type": 77 - }, - { - "phase": 1, - "source": { - "id": 390, - "type": 4 - }, - "time": "1250437863", - "type": 78 - }, - { - "params": { - "source_dependency": { - "id": 391, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 390, - "type": 4 - }, - "time": "1250437863", - "type": 3 - }, - { - "params": { - "address_family": 0, - "allow_cached_response": true, - "host": "127.0.0.1:8888", - "is_speculative": false, - "source_dependency": { - "id": 390, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 391, - "type": 8 - }, - "time": "1250437863", - "type": 4 - }, - { - "params": { - "source_dependency": { - "id": 391, - "type": 8 - } - }, - "phase": 1, - "source": { - "id": 392, - "type": 20 - }, - "time": "1250437863", - "type": 303 - }, - { - "params": { - "source_dependency": { - "id": 392, - "type": 20 - } - }, - "phase": 1, - "source": { - "id": 393, - "type": 14 - }, - "time": "1250437863", - "type": 34 - }, - { - "params": { - "address": "[2001:4860:4860::8888]:53" - }, - "phase": 1, - "source": { - "id": 393, - "type": 14 - }, - "time": "1250437863", - "type": 71 - }, - { - "phase": 2, - "source": { - "id": 393, - "type": 14 - }, - "time": "1250437863", - "type": 71 - }, - { - "params": { - "address": "[::ffff:2001:0]:57808" - }, - "phase": 0, - "source": { - "id": 393, - "type": 14 - }, - "time": "1250437863", - "type": 72 - }, - { - "phase": 2, - "source": { - "id": 393, - "type": 14 - }, - "time": "1250437863", - "type": 34 - }, - { - "phase": 2, - "source": { - "id": 392, - "type": 20 - }, - "time": "1250437863", - "type": 303 - }, - { - "phase": 0, - "source": { - "id": 391, - "type": 8 - }, - "time": "1250437863", - "type": 5 - }, - { - "phase": 2, - "source": { - "id": 391, - "type": 8 - }, - "time": "1250437863", - "type": 4 - }, - { - "phase": 2, - "source": { - "id": 390, - "type": 4 - }, - "time": "1250437863", - "type": 3 - }, - { - "params": { - "source_dependency": { - "id": 390, - "type": 4 - } - }, - "phase": 1, - "source": { - "id": 394, - "type": 5 - }, - "time": "1250437863", - "type": 34 - }, - { - "params": { - "address_list": [ - "127.0.0.1:8888" - ] - }, - "phase": 1, - "source": { - "id": 394, - "type": 5 - }, - "time": "1250437863", - "type": 35 - }, - { - "params": { - "address": "127.0.0.1:8888" - }, - "phase": 1, - "source": { - "id": 394, - "type": 5 - }, - "time": "1250437863", - "type": 36 - }, - { - "phase": 0, - "source": { - "id": 384, - "type": 1 - }, - "time": "1250437871", - "type": 0 - }, - { - "phase": 2, - "source": { - "id": 384, - "type": 1 - }, - "time": "1250437871", - "type": 120 - }, - { - "phase": 2, - "source": { - "id": 386, - "type": 12 - }, - "time": "1250437871", - "type": 121 - }, - { - "phase": 0, - "source": { - "id": 386, - "type": 12 - }, - "time": "1250437871", - "type": 0 - }, - { - "phase": 2, - "source": { - "id": 386, - "type": 12 - }, - "time": "1250437871", - "type": 81 - }, - { - "phase": 2, - "source": { - "id": 384, - "type": 1 - }, - "time": "1250437871", - "type": 2 - }, - { - "phase": 2, - "source": { - "id": 394, - "type": 5 - }, - "time": "1250437873", - "type": 36 - }, - { - "params": { - "source_address": "127.0.0.1:51007" - }, - "phase": 2, - "source": { - "id": 394, - "type": 5 - }, - "time": "1250437873", - "type": 35 - }, - { - "params": { - "source_dependency": { - "id": 394, - "type": 5 - } - }, - "phase": 0, - "source": { - "id": 390, - "type": 4 - }, - "time": "1250437873", - "type": 79 - }, - { - "phase": 2, - "source": { - "id": 390, - "type": 4 - }, - "time": "1250437873", - "type": 78 - }, - { - "phase": 2, - "source": { - "id": 390, - "type": 4 - }, - "time": "1250437873", - "type": 77 - }, - { - "phase": 0, - "source": { - "id": 385, - "type": 10 - }, - "time": "1250437878", - "type": 119 - }, - { - "phase": 2, - "source": { - "id": 385, - "type": 10 - }, - "time": "1250437879", - "type": 108 - }, - { - "phase": 0, - "source": { - "id": 394, - "type": 5 - }, - "time": "1250438096", - "type": 67 - }, - { - "phase": 2, - "source": { - "id": 394, - "type": 5 - }, - "time": "1250438097", - "type": 34 - }, - { - "params": { - "description": "Closing all sessions.", - "net_error": -3 - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250438142", - "type": 163 - }, - { - "params": { - "source_dependency": { - "id": 306, - "type": 6 - } - }, - "phase": 0, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250438142", - "type": 172 - }, - { - "phase": 0, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250438142", - "type": 67 - }, - { - "phase": 2, - "source": { - "id": 306, - "type": 6 - }, - "time": "1250438142", - "type": 139 - }, - { - "phase": 2, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250438142", - "type": 38 - }, - { - "phase": 2, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250438142", - "type": 38 - }, - { - "phase": 2, - "source": { - "id": 301, - "type": 5 - }, - "time": "1250438142", - "type": 34 - } - ] -} \ No newline at end of file diff --git a/test/fixtures/objects/pageSpeed.json b/test/fixtures/objects/pageSpeed.json deleted file mode 100644 index c124b99..0000000 --- a/test/fixtures/objects/pageSpeed.json +++ /dev/null @@ -1,682 +0,0 @@ -{ - "locale": "en_US", - "rule_results": [ - { - "localized_rule_name": "Avoid bad requests", - "rule_impact": 0, - "rule_name": "AvoidBadRequests", - "rule_score": 100 - }, - { - "localized_rule_name": "Avoid CSS @import", - "rule_impact": 0, - "rule_name": "AvoidCssImport", - "rule_score": 100 - }, - { - "localized_rule_name": "Defer parsing of JavaScript", - "rule_impact": 0, - "rule_name": "DeferParsingJavaScript", - "rule_score": 100 - }, - { - "localized_rule_name": "Enable compression", - "rule_impact": 0, - "rule_name": "EnableGzipCompression", - "rule_score": 100 - }, - { - "localized_rule_name": "Enable Keep-Alive", - "rule_impact": 0, - "rule_name": "EnableKeepAlive", - "rule_score": 100 - }, - { - "localized_rule_name": "Inline Small CSS", - "rule_impact": 0, - "rule_name": "InlineSmallCss", - "rule_score": 100 - }, - { - "localized_rule_name": "Inline Small JavaScript", - "rule_impact": 0, - "rule_name": "InlineSmallJavaScript", - "rule_score": 100 - }, - { - "localized_rule_name": "Leverage browser caching", - "rule_impact": 0.4642857142857143, - "rule_name": "LeverageBrowserCaching", - "rule_score": 96, - "url_blocks": [ - { - "header": { - "format": "The following cacheable resources have a short freshness lifetime. Specify an expiration at least one week in the future for the following resources:" - }, - "urls": [ - { - "result": { - "args": [ - { - "localized_value": "http://www.google-analytics.com/ga.js", - "string_value": "http://www.google-analytics.com/ga.js", - "type": "url" - }, - { - "int_value": 43200000, - "localized_value": "12 hours", - "type": "duration" - } - ], - "format": "$1 ($2)" - } - } - ] - } - ] - }, - { - "localized_rule_name": "Make landing page redirects cacheable", - "rule_impact": 0, - "rule_name": "MakeLandingPageRedirectsCacheable", - "rule_score": 100 - }, - { - "localized_rule_name": "Minify CSS", - "rule_impact": 0, - "rule_name": "MinifyCss", - "rule_score": 100 - }, - { - "localized_rule_name": "Minify HTML", - "rule_impact": 0.1986, - "rule_name": "MinifyHTML", - "rule_score": 98, - "url_blocks": [ - { - "header": { - "args": [ - { - "int_value": 1986, - "localized_value": "1.9KiB", - "type": "bytes" - }, - { - "int_value": 2, - "localized_value": "2%", - "type": "percentage" - } - ], - "format": "Minifying the following HTML resources could reduce their size by $1 ($2 reduction)." - }, - "urls": [ - { - "result": { - "args": [ - { - "localized_value": "http://twitter.com/marcelduran", - "string_value": "http://twitter.com/marcelduran", - "type": "url" - }, - { - "int_value": 1894, - "localized_value": "1.8KiB", - "type": "bytes" - }, - { - "int_value": 1, - "localized_value": "1%", - "type": "percentage" - } - ], - "format": "Minifying $1 could save $2 ($3 reduction) after compression." - } - }, - { - "result": { - "args": [ - { - "localized_value": "http://twitter.com/", - "string_value": "http://twitter.com/", - "type": "url" - }, - { - "int_value": 92, - "localized_value": "92B", - "type": "bytes" - }, - { - "int_value": 9, - "localized_value": "9%", - "type": "percentage" - } - ], - "format": "Minifying $1 could save $2 ($3 reduction) after compression." - } - } - ] - } - ] - }, - { - "localized_rule_name": "Minify JavaScript", - "rule_impact": 0.2146, - "rule_name": "MinifyJavaScript", - "rule_score": 98, - "url_blocks": [ - { - "header": { - "args": [ - { - "int_value": 2146, - "localized_value": "2.1KiB", - "type": "bytes" - }, - { - "int_value": 1, - "localized_value": "1%", - "type": "percentage" - } - ], - "format": "Minifying the following JavaScript resources could reduce their size by $1 ($2 reduction)." - }, - "urls": [ - { - "result": { - "args": [ - { - "localized_value": "http://a0.twimg.com/c/swift/en/bundle/core.3b3c10dad7d2b9eea1cccd19f285ab122a631927.js", - "string_value": "http://a0.twimg.com/c/swift/en/bundle/core.3b3c10dad7d2b9eea1cccd19f285ab122a631927.js", - "type": "url" - }, - { - "int_value": 1209, - "localized_value": "1.2KiB", - "type": "bytes" - }, - { - "int_value": 1, - "localized_value": "1%", - "type": "percentage" - } - ], - "format": "Minifying $1 could save $2 ($3 reduction) after compression." - } - }, - { - "result": { - "args": [ - { - "localized_value": "http://a0.twimg.com/c/swift/en/bundle/profiles.7ebe3919d4e2d9059c327f10097df4a70cb565e5.js", - "string_value": "http://a0.twimg.com/c/swift/en/bundle/profiles.7ebe3919d4e2d9059c327f10097df4a70cb565e5.js", - "type": "url" - }, - { - "int_value": 738, - "localized_value": "738B", - "type": "bytes" - }, - { - "int_value": 1, - "localized_value": "1%", - "type": "percentage" - } - ], - "format": "Minifying $1 could save $2 ($3 reduction) after compression." - } - }, - { - "result": { - "args": [ - { - "localized_value": "http://a0.twimg.com/c/swift/prereqs.4644886017c33e40374df1af2ab5f5d61c520eaa.js", - "string_value": "http://a0.twimg.com/c/swift/prereqs.4644886017c33e40374df1af2ab5f5d61c520eaa.js", - "type": "url" - }, - { - "int_value": 103, - "localized_value": "103B", - "type": "bytes" - }, - { - "int_value": 1, - "localized_value": "1%", - "type": "percentage" - } - ], - "format": "Minifying $1 could save $2 ($3 reduction) after compression." - } - }, - { - "result": { - "args": [ - { - "localized_value": "http://www.google-analytics.com/ga.js", - "string_value": "http://www.google-analytics.com/ga.js", - "type": "url" - }, - { - "int_value": 96, - "localized_value": "96B", - "type": "bytes" - }, - { - "int_value": 1, - "localized_value": "1%", - "type": "percentage" - } - ], - "format": "Minifying $1 could save $2 ($3 reduction) after compression." - } - } - ] - } - ] - }, - { - "localized_rule_name": "Minimize redirects", - "rule_impact": 0, - "rule_name": "MinimizeRedirects", - "rule_score": 100 - }, - { - "localized_rule_name": "Minimize request size", - "rule_impact": 0, - "rule_name": "MinimizeRequestSize", - "rule_score": 100 - }, - { - "localized_rule_name": "Optimize images", - "rule_impact": 4.2093, - "rule_name": "OptimizeImages", - "rule_score": 35, - "url_blocks": [ - { - "header": { - "args": [ - { - "int_value": 42093, - "localized_value": "41.1KiB", - "type": "bytes" - }, - { - "int_value": 73, - "localized_value": "73%", - "type": "percentage" - } - ], - "format": "Optimizing the following images could reduce their size by $1 ($2 reduction)." - }, - "urls": [ - { - "result": { - "args": [ - { - "localized_value": "http://a0.twimg.com/profile_images/1565307797/me-july2011-700px_normal.jpg", - "string_value": "http://a0.twimg.com/profile_images/1565307797/me-july2011-700px_normal.jpg", - "type": "url" - }, - { - "int_value": 31634, - "localized_value": "30.9KiB", - "type": "bytes" - }, - { - "int_value": 86, - "localized_value": "86%", - "type": "percentage" - } - ], - "format": "Losslessly compressing $1 could save $2 ($3 reduction)." - } - }, - { - "result": { - "args": [ - { - "localized_value": "http://a0.twimg.com/profile_images/1893021490/legojslogo_normal.png", - "string_value": "http://a0.twimg.com/profile_images/1893021490/legojslogo_normal.png", - "type": "url" - }, - { - "int_value": 4054, - "localized_value": "4.0KiB", - "type": "bytes" - }, - { - "int_value": 38, - "localized_value": "38%", - "type": "percentage" - } - ], - "format": "Losslessly compressing $1 could save $2 ($3 reduction)." - } - }, - { - "result": { - "args": [ - { - "localized_value": "http://a0.twimg.com/profile_images/1164735503/Jed_Schmidt_normal.jpeg", - "string_value": "http://a0.twimg.com/profile_images/1164735503/Jed_Schmidt_normal.jpeg", - "type": "url" - }, - { - "int_value": 2810, - "localized_value": "2.7KiB", - "type": "bytes" - }, - { - "int_value": 64, - "localized_value": "64%", - "type": "percentage" - } - ], - "format": "Losslessly compressing $1 could save $2 ($3 reduction)." - } - }, - { - "result": { - "args": [ - { - "localized_value": "http://a0.twimg.com/profile_images/1612265539/304370_10150765342675029_833515028_20487612_6975164_n_normal.jpg", - "string_value": "http://a0.twimg.com/profile_images/1612265539/304370_10150765342675029_833515028_20487612_6975164_n_normal.jpg", - "type": "url" - }, - { - "int_value": 2752, - "localized_value": "2.7KiB", - "type": "bytes" - }, - { - "int_value": 66, - "localized_value": "66%", - "type": "percentage" - } - ], - "format": "Losslessly compressing $1 could save $2 ($3 reduction)." - } - }, - { - "result": { - "args": [ - { - "localized_value": "http://a0.twimg.com/a/1344923934/t1/img/wash-white-30.png", - "string_value": "http://a0.twimg.com/a/1344923934/t1/img/wash-white-30.png", - "type": "url" - }, - { - "int_value": 843, - "localized_value": "843B", - "type": "bytes" - }, - { - "int_value": 89, - "localized_value": "89%", - "type": "percentage" - } - ], - "format": "Losslessly compressing $1 could save $2 ($3 reduction)." - } - } - ] - } - ] - }, - { - "localized_rule_name": "Optimize the order of styles and scripts", - "rule_impact": 0, - "rule_name": "OptimizeTheOrderOfStylesAndScripts", - "rule_score": 100 - }, - { - "localized_rule_name": "Put CSS in the document head", - "rule_impact": 0, - "rule_name": "PutCssInTheDocumentHead", - "rule_score": 100 - }, - { - "localized_rule_name": "Remove query strings from static resources", - "rule_impact": 0, - "rule_name": "RemoveQueryStringsFromStaticResources", - "rule_score": 100 - }, - { - "localized_rule_name": "Serve resources from a consistent URL", - "rule_impact": 0, - "rule_name": "ServeResourcesFromAConsistentUrl", - "rule_score": 100 - }, - { - "localized_rule_name": "Serve scaled images", - "rule_impact": 1.7575000000000003, - "rule_name": "ServeScaledImages", - "rule_score": 95, - "url_blocks": [ - { - "header": { - "args": [ - { - "int_value": 17575, - "localized_value": "17.2KiB", - "type": "bytes" - }, - { - "int_value": 80, - "localized_value": "80%", - "type": "percentage" - } - ], - "format": "The following images are resized in HTML or CSS. Serving scaled images could save $1 ($2 reduction)." - }, - "urls": [ - { - "result": { - "args": [ - { - "localized_value": "http://p.twimg.com/AzYrCT8CUAApo8u.png:thumb", - "string_value": "http://p.twimg.com/AzYrCT8CUAApo8u.png:thumb", - "type": "url" - }, - { - "int_value": 150, - "localized_value": "150", - "type": "int" - }, - { - "int_value": 150, - "localized_value": "150", - "type": "int" - }, - { - "int_value": 66, - "localized_value": "66", - "type": "int" - }, - { - "int_value": 66, - "localized_value": "66", - "type": "int" - }, - { - "int_value": 7303, - "localized_value": "7.1KiB", - "type": "bytes" - }, - { - "int_value": 80, - "localized_value": "80%", - "type": "percentage" - } - ], - "format": "$1 is resized in HTML or CSS from $2x$3 to $4x$5. Serving a scaled image could save $6 ($7 reduction)." - } - }, - { - "result": { - "args": [ - { - "localized_value": "http://p.twimg.com/AzbObgECUAAwUPJ.jpg:thumb", - "string_value": "http://p.twimg.com/AzbObgECUAAwUPJ.jpg:thumb", - "type": "url" - }, - { - "int_value": 150, - "localized_value": "150", - "type": "int" - }, - { - "int_value": 150, - "localized_value": "150", - "type": "int" - }, - { - "int_value": 66, - "localized_value": "66", - "type": "int" - }, - { - "int_value": 66, - "localized_value": "66", - "type": "int" - }, - { - "int_value": 3771, - "localized_value": "3.7KiB", - "type": "bytes" - }, - { - "int_value": 80, - "localized_value": "80%", - "type": "percentage" - } - ], - "format": "$1 is resized in HTML or CSS from $2x$3 to $4x$5. Serving a scaled image could save $6 ($7 reduction)." - } - }, - { - "result": { - "args": [ - { - "localized_value": "http://p.twimg.com/Ay6JHXWCcAA6zfo.jpg:thumb", - "string_value": "http://p.twimg.com/Ay6JHXWCcAA6zfo.jpg:thumb", - "type": "url" - }, - { - "int_value": 150, - "localized_value": "150", - "type": "int" - }, - { - "int_value": 150, - "localized_value": "150", - "type": "int" - }, - { - "int_value": 66, - "localized_value": "66", - "type": "int" - }, - { - "int_value": 66, - "localized_value": "66", - "type": "int" - }, - { - "int_value": 3510, - "localized_value": "3.4KiB", - "type": "bytes" - }, - { - "int_value": 80, - "localized_value": "80%", - "type": "percentage" - } - ], - "format": "$1 is resized in HTML or CSS from $2x$3 to $4x$5. Serving a scaled image could save $6 ($7 reduction)." - } - }, - { - "result": { - "args": [ - { - "localized_value": "http://p.twimg.com/AzUt9DoCMAAPg-u.jpg:thumb", - "string_value": "http://p.twimg.com/AzUt9DoCMAAPg-u.jpg:thumb", - "type": "url" - }, - { - "int_value": 150, - "localized_value": "150", - "type": "int" - }, - { - "int_value": 150, - "localized_value": "150", - "type": "int" - }, - { - "int_value": 66, - "localized_value": "66", - "type": "int" - }, - { - "int_value": 66, - "localized_value": "66", - "type": "int" - }, - { - "int_value": 2991, - "localized_value": "2.9KiB", - "type": "bytes" - }, - { - "int_value": 80, - "localized_value": "80%", - "type": "percentage" - } - ], - "format": "$1 is resized in HTML or CSS from $2x$3 to $4x$5. Serving a scaled image could save $6 ($7 reduction)." - } - } - ] - } - ] - }, - { - "localized_rule_name": "Specify a cache validator", - "rule_impact": 0, - "rule_name": "SpecifyACacheValidator", - "rule_score": 100 - }, - { - "localized_rule_name": "Specify a Vary: Accept-Encoding header", - "rule_impact": 0, - "rule_name": "SpecifyAVaryAcceptEncodingHeader", - "rule_score": 100 - }, - { - "localized_rule_name": "Specify a character set", - "rule_impact": 0, - "rule_name": "SpecifyCharsetEarly", - "rule_score": 100 - }, - { - "localized_rule_name": "Specify image dimensions", - "rule_impact": 0, - "rule_name": "SpecifyImageDimensions", - "rule_score": 100 - }, - { - "localized_rule_name": "Combine images into CSS sprites", - "rule_impact": 0, - "rule_name": "SpriteImages", - "rule_score": 100 - }, - { - "localized_rule_name": "Prefer asynchronous resources", - "rule_impact": 0, - "rule_name": "PreferAsyncResources", - "rule_score": 100 - } - ], - "score": 96 -} diff --git a/test/fixtures/objects/request.json b/test/fixtures/objects/request.json deleted file mode 100644 index 83af314..0000000 --- a/test/fixtures/objects/request.json +++ /dev/null @@ -1,1836 +0,0 @@ -{ - "": [], - "ip_addr": [ - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "" - ], - "method": [ - "GET", - "GET", - "GET", - "GET", - "GET", - "GET", - "GET", - "GET", - "GET", - "GET", - "GET", - "GET", - "GET", - "GET", - "GET", - "GET", - "GET", - "GET", - "GET", - "GET", - "GET", - "GET", - "GET", - "GET", - "GET", - "GET", - "GET", - "GET", - "GET", - "GET", - "GET", - "GET", - "GET", - "GET", - "GET", - "GET", - "GET" - ], - "host": [ - "twitter.com", - "si0.twimg.com", - "si0.twimg.com", - "si0.twimg.com", - "si0.twimg.com", - "si0.twimg.com", - "si0.twimg.com", - "si0.twimg.com", - "si0.twimg.com", - "api.twitter.com", - "si0.twimg.com", - "si0.twimg.com", - "api.twitter.com", - "si0.twimg.com", - "api.twitter.com", - "si0.twimg.com", - "si0.twimg.com", - "api.twitter.com", - "api.twitter.com", - "api.twitter.com", - "api.twitter.com", - "api.twitter.com", - "twitter.com", - "api.twitter.com", - "api.twitter.com", - "ssl.google-analytics.com", - "api.twitter.com", - "api.twitter.com", - "api.twitter.com", - "ssl.google-analytics.com", - "si0.twimg.com", - "si0.twimg.com", - "si0.twimg.com", - "api.twitter.com", - "si0.twimg.com", - "si0.twimg.com", - "si0.twimg.com" - ], - "url": [ - "/", - "/a/1345133470/t1/css/t1_core.bundle.css", - "/profile_images/2505588755/fo9wp35195hierdes2f5_normal.png", - "/profile_images/1804416058/43776868-4e4e-45cc-b91c-7ec1b6f350aa_normal.png", - "/profile_images/2466871092/image_normal.jpg", - "/sticky/default_profile_images/default_profile_2_normal.png", - "/a/1345133470/t1/img/twitter_web_sprite_bgs.png", - "/a/1345133470/t1/img/twitter_web_sprite_icons.png", - "/a/1345133470/t1/img/wash-white-30.png", - "/receiver.html", - "/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js", - "/profile_background_images/594970743/ht90irx2ejrvh0xqpjjb.jpeg", - "/1/saved_searches.json", - "/a/1345133470/t1/img/loader.gif", - "/1/promoted_content/27/log.png?impression_id=18585a97d622a74b", - "/c/phoenix/pt/bundle/t1-more.7cc751ba2c21e9a6c6b2303739b6c255dbd458a7.js", - "/a/1345133470/t1/css/t1_more.bundle.css", - "/1/direct_messages.json?count=50&include_entities=true", - "/1/direct_messages/sent.json?count=50&include_entities=true", - "/1/saved_searches.json", - "/i/search/typeahead.json?count=2500&prefetch=true&result_type=users&post_authenticity_token=bf49bcdf4afb91a0627cacfdd4dfdc09540c736e", - "/1/trends/available.json?lang=pt", - "/images/spinner.gif", - "/1/users/recommendations.json?limit=3&excluded=&display_location=wtf-component&pc=true&connections=true&algorithm=null&force_new_signup=false", - "/1/users/recommendations.json?limit=3&excluded=&display_location=wtf-component&pc=true&connections=true&algorithm=null&force_new_signup=true", - "/ga.js", - "/1/blocks/blocking.json", - "/1/trends/1.json?pc=true&post_authenticity_token=bf49bcdf4afb91a0627cacfdd4dfdc09540c736e", - "/1/promoted_content/i/log.png?promoted_trend_id=5288", - "/__utm.gif?utmwv=5.3.4&utms=2&utmn=869617103&utmhn=twitter.com&utmcs=UTF-8&utmsr=1024x768&utmvp=997x614&utmsc=32-bit&utmul=en-us&utmje=1&utmfl=11.3%20r31&utmdt=Twitter%20%2F%20In%C3%ADcio&utmhid=775368836&utmr=0&utmp=%2F&utmac=UA-30775-6&utmcc=__utma%3D43838368.159264585.1345141647.1345141647.1345141647.1%3B%2B__utmz%3D43838368.1345141647.1.1.utmcsr%3D(direct)%7Cutmccn%3D(direct)%7Cutmcmd%3D(none)%3B&utmu=q~", - "/profile_images/1409530731/bbm__1308837078033_normal.tmp", - "/profile_images/1583722973/tweter_normal.jpg", - "/profile_images/1727300915/image_normal.jpg", - "/1/statuses/friends.json?cursor=-1&user_id=401133413", - "/profile_images/1910328549/image_reasonably_small.jpg", - "/profile_images/2325704772/wrrmef61i6jl91kwkmzq_reasonably_small.png", - "/profile_images/2258914696/sq_reasonably_small.jpg" - ], - "responseCode": [ - 200, - 200, - 200, - 200, - 200, - 200, - 200, - 200, - 200, - 200, - 200, - 200, - 200, - 200, - 200, - 200, - 200, - 200, - 200, - 200, - 200, - 200, - 200, - 200, - 200, - 200, - 200, - 200, - 200, - 200, - 200, - 200, - 200, - 200, - 200, - 200, - 200 - ], - "load_ms": [ - 1491, - 740, - 705, - 784, - 765, - 507, - 621, - 1659, - 532, - 374, - 2792, - 9012, - 251, - 181, - 138, - 4412, - 481, - 221, - 221, - 189, - 386, - 402, - 158, - 548, - 577, - 426, - 120, - 159, - 116, - 68, - 118, - 404, - 139, - 189, - 548, - 472, - 561 - ], - "ttfb_ms": [ - 1347, - 594, - 671, - 681, - 765, - 505, - 506, - 515, - 532, - 370, - 396, - 123, - 252, - 156, - 128, - 171, - 139, - 221, - 221, - 189, - 282, - 394, - 158, - 525, - 577, - 307, - 120, - 159, - 117, - 68, - 117, - 131, - 139, - 173, - 507, - 162, - 143 - ], - "load_start": [ - 994, - 2432, - 3189, - 3190, - 3191, - 3192, - 3192, - 3198, - 3209, - 3294, - 3380, - 3550, - 6385, - 6643, - 6644, - 6646, - 11410, - 12358, - 12363, - 12392, - 12411, - 12412, - 12429, - 12475, - 12503, - 12599, - 12807, - 12827, - 13014, - 13064, - 13092, - 13100, - 13102, - 13125, - 13133, - 13136, - 13136 - ], - "bytesOut": [ - 180, - 390, - 394, - 410, - 379, - 395, - 383, - 385, - 374, - 271, - 408, - 398, - 326, - 367, - 245, - 408, - 390, - 358, - 363, - 326, - 436, - 336, - 199, - 445, - 444, - 212, - 327, - 393, - 236, - 604, - 392, - 380, - 379, - 356, - 389, - 404, - 386 - ], - "bytesIn": [ - 1454, - 506, - 457, - 457, - 458, - 457, - 457, - 458, - 456, - 305, - 521, - 460, - 1672, - 459, - 1340, - 521, - 506, - 1549, - 1545, - 1528, - 549, - 1516, - 325, - 1490, - 1490, - 411, - 1544, - 1515, - 1340, - 375, - 459, - 459, - 458, - 1550, - 458, - 458, - 459 - ], - "objectSize": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "expires": [ - "Tue, 31 Mar 1981 05:00:00 GMT", - "Thu, 15 Aug 2013 18:27:31 GMT", - "Thu, 23 Aug 2012 18:27:32 GMT", - "Thu, 23 Aug 2012 18:27:32 GMT", - "Thu, 23 Aug 2012 18:27:32 GMT", - "Thu, 23 Aug 2012 18:27:32 GMT", - "Thu, 23 Aug 2012 18:27:32 GMT", - "Thu, 23 Aug 2012 18:27:32 GMT", - "Thu, 23 Aug 2012 18:27:32 GMT", - "Thu, 16 Aug 2012 18:32:32 GMT", - "Thu, 15 Aug 2013 18:27:32 GMT", - "Thu, 23 Aug 2012 18:27:31 GMT", - "Tue, 31 Mar 1981 05:00:00 GMT", - "Thu, 15 Aug 2013 18:27:35 GMT", - "Tue, 31 Mar 1981 05:00:00 GMT", - "Thu, 15 Aug 2013 18:27:35 GMT", - "Thu, 15 Aug 2013 18:27:40 GMT", - "Tue, 31 Mar 1981 05:00:00 GMT", - "Tue, 31 Mar 1981 05:00:00 GMT", - "Tue, 31 Mar 1981 05:00:00 GMT", - "Tue, 31 Mar 1981 05:00:00 GMT", - "Tue, 31 Mar 1981 05:00:00 GMT", - "Sun, 14 Aug 2022 18:27:41 GMT", - "Thu, 16 Aug 2012 18:29:41 GMT", - "Thu, 16 Aug 2012 18:29:41 GMT", - "Fri, 17 Aug 2012 01:06:52 GMT", - "Tue, 31 Mar 1981 05:00:00 GMT", - "Tue, 31 Mar 1981 05:00:00 GMT", - "Tue, 31 Mar 1981 05:00:00 GMT", - "Wed, 19 Apr 2000 11:43:00 GMT", - "Thu, 15 Aug 2013 18:27:41 GMT", - "Thu, 23 Aug 2012 18:27:41 GMT", - "Thu, 23 Aug 2012 18:27:41 GMT", - "Tue, 31 Mar 1981 05:00:00 GMT", - "Thu, 23 Aug 2012 18:27:41 GMT", - "Thu, 23 Aug 2012 18:27:41 GMT", - "Thu, 23 Aug 2012 18:27:41 GMT" - ], - "cacheControl": [ - "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", - "private, max-age=31449600", - "private, max-age=604800", - "private, max-age=604800", - "private, max-age=604800", - "private, max-age=604800", - "private, max-age=604800", - "private, max-age=604800", - "private, max-age=604800", - "max-age=300", - "private, max-age=31449600", - "private, max-age=604800", - "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", - "private, max-age=31449600", - "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", - "private, max-age=31449600", - "private, max-age=31449600", - "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", - "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", - "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", - "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", - "max-age=2592000, must-revalidate", - "max-age=315360000", - "private, max-age=120", - "private, max-age=120", - "max-age=43200, public", - "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", - "max-age=300, must-revalidate", - "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", - "private, no-cache, no-cache=Set-Cookie, proxy-revalidate", - "private, max-age=31449600", - "private, max-age=604800", - "private, max-age=604800", - "no-cache, no-store, must-revalidate, pre-check=0, post-check=0", - "private, max-age=604800", - "private, max-age=604800", - "private, max-age=604800" - ], - "contentType": [ - "text/html", - "text/css", - "image/png", - "image/png", - "image/jpeg", - "image/png", - "image/png", - "image/png", - "image/png", - "text/html", - "application/javascript", - "image/jpeg", - "application/json", - "image/gif", - "image/png", - "application/javascript", - "text/css", - "application/json", - "application/json", - "application/json", - "application/json", - "application/json", - "image/gif", - "application/json", - "application/json", - "text/javascript", - "application/json", - "application/json", - "image/png", - "image/gif", - "image/jpeg", - "image/jpeg", - "image/jpeg", - "application/json", - "image/jpeg", - "image/png", - "image/jpeg" - ], - "contentEncoding": [ - "gzip", - "gzip", - "", - "", - "", - "", - "", - "", - "", - "gzip", - "gzip", - "", - "gzip", - "", - "", - "gzip", - "gzip", - "gzip", - "gzip", - "gzip", - "gzip", - "gzip", - "", - "gzip", - "gzip", - "gzip", - "gzip", - "gzip", - "", - "", - "", - "", - "", - "gzip", - "", - "", - "" - ], - "type": [ - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3, - 3 - ], - "socket": [ - 0, - 563, - 614, - 650, - 641, - 614, - 641, - 623, - 650, - 668, - 632, - 563, - 0, - 623, - 0, - 632, - 632, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 955, - 0, - 0, - 0, - 0, - 563, - 632, - 623, - 0, - 650, - 614, - 641 - ], - "score_cache": [ - -1, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 0, - 100, - 100, - -1, - 100, - -1, - 100, - 100, - -1, - -1, - -1, - -1, - -1, - 100, - 0, - 0, - 50, - -1, - -1, - -1, - -1, - 100, - 100, - 100, - -1, - 100, - 100, - 100 - ], - "score_cdn": [ - -1, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - -1, - 100, - 100, - -1, - 100, - -1, - 100, - 100, - -1, - -1, - -1, - -1, - -1, - 0, - -1, - -1, - 100, - -1, - -1, - -1, - -1, - 100, - 100, - 100, - -1, - 100, - 100, - 100 - ], - "score_gzip": [ - 100, - 100, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - 100, - 100, - -1, - 100, - -1, - -1, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - -1, - 100, - 100, - 100, - 100, - 100, - -1, - -1, - -1, - -1, - -1, - 100, - -1, - -1, - -1 - ], - "score_cookies": [ - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1 - ], - "score_keep-alive": [ - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100 - ], - "score_minify": [ - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1 - ], - "score_combine": [ - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1 - ], - "score_compress": [ - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1 - ], - "score_etags": [ - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1 - ], - "is_secure": [ - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1, - 1 - ], - "dns_ms": [ - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1 - ], - "connect_ms": [ - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1 - ], - "ssl_ms": [ - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1 - ], - "gzip_total": [ - 1454, - 506, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 305, - 521, - 0, - 1672, - 0, - 0, - 521, - 506, - 1549, - 1545, - 1528, - 549, - 1516, - 0, - 1490, - 1490, - 411, - 1544, - 1515, - 0, - 0, - 0, - 0, - 0, - 1550, - 0, - 0, - 0 - ], - "gzip_save": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "minify_total": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "minify_save": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "image_total": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "image_save": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "cache_time": [ - -1, - 31449600, - 604800, - 604800, - 604800, - 604800, - 604800, - 604800, - 604800, - 300, - 31449600, - 604800, - -1, - 31449600, - -1, - 31449600, - 31449600, - -1, - -1, - -1, - -1, - -1, - 315360000, - 120, - 120, - 43200, - -1, - -1, - -1, - -1, - 31449600, - 604800, - 604800, - -1, - 604800, - 604800, - 604800 - ], - "cdn_provider": [ - "", - "Cotendo CDN", - "Cotendo CDN", - "Cotendo CDN", - "Cotendo CDN", - "Cotendo CDN", - "Cotendo CDN", - "Cotendo CDN", - "Cotendo CDN", - "", - "Cotendo CDN", - "Cotendo CDN", - "", - "Cotendo CDN", - "", - "Cotendo CDN", - "Cotendo CDN", - "", - "", - "", - "", - "", - "", - "", - "", - "Google", - "", - "", - "", - "", - "Cotendo CDN", - "Cotendo CDN", - "Cotendo CDN", - "", - "Cotendo CDN", - "Cotendo CDN", - "Cotendo CDN" - ], - "dns_start": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "dns_end": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "connect_start": [ - 0, - 2432, - 3197, - 3199, - 3201, - 3198, - 3193, - 3202, - 3216, - 3294, - 3380, - 3551, - 0, - 6648, - 0, - 6650, - 11413, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12609, - 0, - 0, - 0, - 0, - 13094, - 13102, - 13104, - 0, - 13137, - 13140, - 13139 - ], - "connect_end": [ - 0, - 2601, - 3696, - 3719, - 3811, - 3315, - 3316, - 3321, - 3333, - 3353, - 3392, - 3551, - 0, - 6648, - 0, - 6650, - 11413, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12732, - 0, - 0, - 0, - 0, - 13094, - 13102, - 13104, - 0, - 13137, - 13140, - 13139 - ], - "ssl_start": [ - 0, - 2601, - 0, - 0, - 0, - 3315, - 3316, - 3321, - 3333, - 3353, - 3392, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12732, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "ssl_end": [ - 0, - 2902, - 0, - 0, - 0, - 3443, - 3442, - 3447, - 3485, - 3581, - 3517, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12809, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "initiator": [ - "", - "https://twitter.com/", - "https://twitter.com/", - "https://twitter.com/", - "https://twitter.com/", - "https://twitter.com/", - "https://twitter.com/", - "https://twitter.com/", - "https://twitter.com/", - "https://twitter.com/", - "https://twitter.com/", - "https://twitter.com/", - "https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js", - "https://twitter.com/", - "https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js", - "https://twitter.com/", - "https://si0.twimg.com/c/phoenix/pt/bundle/t1-more.7cc751ba2c21e9a6c6b2303739b6c255dbd458a7.js", - "https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js", - "https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js", - "https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js", - "https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js", - "https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js", - "https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js", - "https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js", - "https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js", - "https://twitter.com/", - "https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js", - "https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js", - "https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js", - "https://ssl.google-analytics.com/ga.js", - "https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js", - "https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js", - "https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js", - "https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js", - "https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js", - "https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js", - "https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js" - ], - "initiator_line": [ - "", - 80, - 510, - 644, - 1154, - 324, - 274, - 280, - 408, - 3208, - 3188, - 250, - 20, - 3228, - 20, - 3188, - 23, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 246, - 20, - 20, - 20, - 52, - 20, - 20, - 20, - 20, - 20, - 20, - 20 - ], - "initiator_column": [ - "", - "", - "", - "", - "", - "", - "", - "", - "", - 6318, - 4072, - "", - 38041, - "", - 162936, - 4072, - 19802, - 38041, - 38041, - 38041, - 38041, - 38041, - 24928, - 38041, - 38041, - 416, - 38041, - 38041, - 162936, - 512, - 24928, - 24928, - 24928, - 38041, - 24928, - 24928, - 24928 - ] -} diff --git a/test/fixtures/objects/response.json b/test/fixtures/objects/response.json deleted file mode 100644 index c54fb6d..0000000 --- a/test/fixtures/objects/response.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "text/plain", - "data": { - "result": "foobar" - } -} diff --git a/test/fixtures/objects/restart.json b/test/fixtures/objects/restart.json deleted file mode 100644 index e0cc21b..0000000 --- a/test/fixtures/objects/restart.json +++ /dev/null @@ -1 +0,0 @@ -{"testId":"120817_V2_2"} diff --git a/test/fixtures/objects/runTest.json b/test/fixtures/objects/runTest.json deleted file mode 100644 index bf22631..0000000 --- a/test/fixtures/objects/runTest.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "statusCode": 200, - "statusText": "Ok", - "data": { - "testId": "120816_V2_2", - "ownerKey": "a7c32f43d2fcc75a13f558c0e4b31499d270f267", - "jsonUrl": "http://www.example.com/results.php?test=120816_V2_2&f=json", - "xmlUrl": "http://www.example.com/xmlResult.php?test=120816_V2_2", - "userUrl": "http://www.example.com/results.php?test=120816_V2_2", - "summaryCSV": "http://www.example.com/csv.php?test=120816_V2_2", - "detailCSV": "http://www.example.com/csv.php?test=120816_V2_2&requests=1" - } -} diff --git a/test/fixtures/objects/runTestInvalid.json b/test/fixtures/objects/runTestInvalid.json deleted file mode 100644 index 80d6dad..0000000 --- a/test/fixtures/objects/runTestInvalid.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "statusCode": 400, - "statusText": "Invalid URL, please try submitting your test request again." -} diff --git a/test/fixtures/objects/runTestInvalidAPIKey.json b/test/fixtures/objects/runTestInvalidAPIKey.json deleted file mode 100644 index 0c43165..0000000 --- a/test/fixtures/objects/runTestInvalidAPIKey.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "statusCode": 400, - "statusText": "Invalid API Key" -} \ No newline at end of file diff --git a/test/fixtures/objects/runTestNoAPIKey.json b/test/fixtures/objects/runTestNoAPIKey.json deleted file mode 100644 index 5bad920..0000000 --- a/test/fixtures/objects/runTestNoAPIKey.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "statusCode": 400, - "statusText": "An error occurred processing your request. Please reload the testing page and try submitting your test request again. (missing API key)" -} \ No newline at end of file diff --git a/test/fixtures/objects/screenshot.txt b/test/fixtures/objects/screenshot.txt deleted file mode 100644 index 0967386..0000000 --- a/test/fixtures/objects/screenshot.txt +++ /dev/null @@ -1 +0,0 @@ -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 diff --git a/test/fixtures/objects/screenshotFullResolution.txt b/test/fixtures/objects/screenshotFullResolution.txt deleted file mode 100644 index bdd0062..0000000 --- a/test/fixtures/objects/screenshotFullResolution.txt +++ /dev/null @@ -1 +0,0 @@ -iVBORw0KGgoAAAANSUhEUgAAA/YAAAJxCAIAAABnuL7XAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAgAElEQVR4nOy9a7RdR3UmOuesWmvtvc9DkmVhy8bgl/xAmBjimEd4pGMeIYF07IQLnXYyOqO70+Re0vcGPyTIzRh3jHQSIL4Z3R2S9KWTMchNuN0E2nKaEcgDCAYDARwsYeOX5NjGD+EHks5r773Wqprz/qi9puvsc450tI9s7XNOfcOIddaaq2rWV3PVrlk1qwpf//rXIyIAiEj4l4gQERG99yISngIAMwMAEek1AATJcDM89d6HpyGpkJqIhJvWWhEJf+ojhbU2TlwR1FB470PWQdgYo+mH6/DUe2+MiSWDhsYYZg45DqUf5ygi3vugkj7SVxCRmZk5PAolDQIhcU0wiKlu4ZWgQ7hO/G8A/lWTEdIJkuNmA5rvWGmVLDPxv774Ty1DsszxtMzE/7prGf7nX35yy9YdRBmsDkePPGljCkL2mt9QSbS2giox3UEDRHTOKbmxvGqvpYozCheaZqzPkNGEdOJMtYY0wThHldSboS6H0gyKqX2rGnrfWjtUu0MGFGcdFItrN9z33seUxsaa+N8A/I+cztjawHhqlSwz8b+++B85nbG1gfHUKllm4n998X+y6QAAUXb4qH96BqrSVxU7Bs/Awp5DQYiFHcsVF2QX7cxnFpyNM9C61AvlRStbdYqJi+smFhjiKKRgrQ03h+oyzlTz1ZqL3UflQnMcMr74XUQM5Aa3aakJqg6xX6UFDKqqVweNszWUSPC69E7IUS0mtj+VV1oS/xuA/7WkM7Y2MJ5aJctM/K8j/teSztjawHhqlSwz8b+O+B85nadnYNsElQVVNXtB8cKMrunoew9VzQ89Vl60Mz+24My5554bMo69CmrmB/VOXE9aZn1xKX1Dtb7UJ4uT1cKv1IiogKoRqocaxGmq2JDdKHcqFl/HFyGv2OtSQrCZ4dL0sZmE0j+Haki/jdimuZkYUi8z8b+u+dfvf4R0xtMG1lKiZJnjY5mJ/9PLf2oZkmWOp2Um/k8v/yN8Rz//L97Vbk899pTLMsOea4feQe3RszgP4tELOA/CAsgXnZPf+8iz1hjjvQ+kQzR9oIlK40vpn8c3CHWD9GkQcM5pCeNH8Vv6opIyZIuBjlA9gXFjjLpfIYpLNY+dVFo8SxJXnhZH/cJYn9iqVB/VLa62+MUgRk1k1VAWQe2QYOJ/Y/C/lnTG0wbGU6tkmYn/9cV/ahmSZY6nZSb+12PLAACV4zB+77w4DwAgXsoaPWs1AYkAwHyvNuedd97Q+1qdQzrF96mZgtE7Ejl2QzdjmobMJbYMLdjSTNXhi5VUU4sTCWRpzQ1V9pAy6pZJNDfEkXOppVAj1mSXVltcImOMsrqU2yGtEv8bgP81pjOeNjCeWkGyzMT/+uF/jemMpw2Mp1aQLDPxv374HyGdMIr/0GFfZMSC3qOwgMBv3fKRq69+g4gICAAIIIK78Jx8/8GnzUte8pKQBy4O95HGuVE2h0o7VGC9OaRZfF/dsqVGg81sRZx+XGExHUq3OmexhrH8UDpD6eu7saXGb2maQ15pnIJaEixB7JZBY6ax8nEBE//rmv+1pHOqdDjlNjCeWg2RBpHVJctM/I8b/2tJ51TpkFqGZJmJ/3Hjf4R0Qhf/4cOuyA0wsAAi/tZHPgIA3/jmHVdf/aMMiCAAQOAuPCc/cPBpq0XSSRNNOlzEux0N1Vl4GqYSwru6giFsNiSR7xIrLZE7FdKJS6IqxX6YPlXG43pV/YOwbr0UsxbXUDwnpa8PWXbMQ2yjcR2onanaYYcpnZkKKsUWpu8OqZf4X9f8xwU52XTG9hscT62SZW4k/qemps4///zzzjsvz/Pp6WktaUICAHjvZ2dny7J84oknHnnkkdnZWUgtw2L9VasN1jJseP7jgqwynXBRe3EeEBABfvPDH1IGPvrRj/zKr97MggTCggDgPFjVOIQESTProSmGf3WmI360VCa+jl0lpRUWL4MI2cX+llI5ZCiadagDiBb9qEr6rm6tStGqDtUnvBIeKdFDNq2FHZpF4mj2SosZl1EFNOshO4tNJLaYxP+65n8t6YyzDYynVskyNwD/O3fuvOKKK3bu3Nlut/M8t9YiYtjTOiEhwDl31llnOecuvPDCq6666vDhw3ffffdjjz2WWgbYuC3DJuF/tHQGKrEIyG/97kfCnRvff/Mtv/cRAPij3//Ir/zqzV7AwEDYEpEuLtayxf9qljGDsdM2VOyhF2PPSZNdSvpQ7pqa8iKN04aNG6RqBP8vrumlxYmdpLo1QQuzcblCysEawm/M4+/8N0/82M/5iSkAKJ49vPOLf3HOF/8CAJ553U+ZhbkzDnw5rrlwrf6oJovLbYIWG1Aw6M3Gv0T7Va3Ef1zGuCGAJR/emPC/lnTCsptxs4FkmRvDMseT/9e97nW7d++emppqt9vtdrsoCmtteBcSEhqET885V5Zlr9fbunXri1/84nvuuedrX/taahk2ZMuwefgfIZ2glWf0gh+65cPhz7037vEA/8f7b/6PTS//ve+7yTEAgIDg1VdfTc2swdBF7C1B40xofQ9VZ1zHqvoQxRDNtsREayFp8VxMLBOnH/4MFqCWF+cVm2ZMX8C3/8Onz/3MH+/4+mehcfX0xSB5/41/OHvpq2AxOt97sNy+U0DO/5UfP7Owsbnri5rvUq3iD4OaVdtx9W8e/uNvb1n+KZpx06+Om2XvyvNY8b/GdMbQBsZTq2SZ653/Vqv1lre85cILL9y2bdvU1FSe56lbn7AaMHNVVXNzc0ePHn3ooYf+5m/+pt/vp5Zhw7QMm43/EdL53Gdv3XbGOf/zH3rbJnNj4EO/++G9N+1hQQHpC/Rr+a//+SP/9t/fLE7I1+94defjn73bnHfeeUpiTKtWJC524PSmMhX/OcQyNZv2q4qqdGwl8X09zTi2Hp3FGMpLWZMG1Gw/xEt2bgpi/W1nPfnOf3vsyjcVPzjcfuzBuI6Dl/nsa3/q+z/+bhAY+q+e3i5ZAX/xR/4nrz/jzr/TZLWkql5s3+GmarL0s9GLTcK/NNN8sZ4x//GHrfoEckKyQx/hmPC/lnTG0wbGUytIlrnO+X/7299+2WWX7dixY3p6Os/zIVYTElYCIlpri6LI83xiYmLr1q0PPvggpJZho7QMm43/EdK5/vr3tNtT333EFZlBgNe/9g1hn0wB8YBI+MpXv94zMAOKu/TF+f6DT5tzzz1X+R2qDM1DKVZXiRdP0yiJcYXFhGrFxIaiucR34qKqSnH9LTU7771mx5ErFmehKc+cfcGRH30nABy98o3dF1+85Z6vQ1XGuT/0M/+r23EurIQrXpPd8r9vL+f1lWDKQQdp5rkwcitjnWMe4nJtHv5V4aFchvSPhZ1zvGTubNz414sR0lnLuy+ADYynVpAscx3y/8Y3vvHKK6/cvn371NRUWlmbMAQROXz48MMPP/zUU0957ycnJ4dsDACIKKzcmJiYIKJHH300tQwboGXYhPzrxerTuf5fvrvdnrr30TqzFgAQxTMyAwM4QGFhBmEQFvL+0vPy/Qefts45WAxsfJoA9cYCI9ggZjlchKdD0z1aABWLq2RppcISu9GixinEVjWkvF6HeC9pTh4OsZ72wFeBB0kd+6E3HfgPrzrri588+4ufNL35QGXv8qtVYBhzx+DGnz13/vtmyxbVR2tOqQtKKrG0eG2Hfj8QLWbfPPxrkZemE/jnZnINmkCREMYHzcccEzg+/K/lOxrPb3AokTHRCpJlrlv+zzvvvB/+4R8+44wzJicn4+G6hAQAmJ2d/fznP//ss8/qnR07dlxzzTXT09NDkkQ0OTkpIlddddUjjzzy2GOPjWyZDzzwwGWXXaZ/eu8PHjx42WWXbbaW4f7771cevvvd74aLcCduGe67774430suuQQA7r///iA8Gv8AcPnllyv/m6dlHuF3X/X37AWJWQBEQJhJWNygVYfBbvkACGjDogd1a+IqUd8idiaGTCQ8DU5G+M2QJjQKF0/3hDvOOSULm2kRvUOLzx/W9AOtSrTWq1peXH8Q+WSxexRompychL+/Dd70zwcm1Zp88if/9ZM/+a+3Hfhy54mD0wfvgpmjMLUVlsX9+y+eeWJq61Ylx3sfdlxSkZi32OL1X62/IL/Z+FfbJaJg4uGpXsSfQej+qq2Hz17j+caK/7WkM542MJ5aJctcv/xfddVV27ZtC4OvkJAQod/vf+Yzn1lYWJiYmLjgggsA4OGHH37mmWc+85nPXHfdde12e0ieiCYmJrZt2/YjP/Ij3/ve90a2zFtvvfUDH/gARC3Drbfeunfv3s3WMgQeEPHee++99dZbg/B11123e/dubRnuu+8+fRRw7bXXXn755eHm3r17R+MfAD74wQ9uwpZ5hHQCXnlRduixvjB6aKYaQLwYBCAQZBGWy19qAWB6wthAgUQLlrX1D8WLFzKH7DGawhhSMY6CimtCRIKhhBc5mhIK5VQdlGWOPLOYIGnWQccGoRj6M34xZFdt39n5xue7V75xqB9/9Io3HL3iDU/8REhl+VF8gzQ9Pa0/jdIESCkneq0lVZW0XFrBQ0XeJPzHRGlvI3Z29eOEKEZNv3+IZrjGjf+R0xlPGxhPrZJlrlP+p6amLr744qmpqRNui/mxj31Mr3/5l3/5+MIni4997GOnPM2EtWP//v0LCwtnn332T/zET+R5DgBXXXXVX//1X3//+9/fv3//a1/72qWvWGuDUU1PTx87duxUtQz6roiEWH9EvOSSS0Tk3nvvveyyy0JG9957765duxDxwQcfDCmHIe2hluHQoUMhzUsvvTSkGWYJ7r//fk12qGUImYZX9FGQDyPl4WO87777RGTXrl3QtAxDLwLAwYMHQxaI+MADD4T74SIMvV966aXGmHB9//33v+xlL1OfRyL/J2Sh3fHw54c+9KF9+/bt2bPn2muvDUkx8wMPPICIl156aRie14xCkcNFTHh495JLLgnKX3bZZeHFoDZs9Jb5ZNMBgDu++/3X7z774hcXS7+IIez76pM/dsUWq4UfUkjLpkrA4tMH4sLr7wdGawgCYsduSAN9HZtJZImOEdYKiMu8VFWVgWbthT7V3yf9yImoR3n31/4TAIBfvh9/HND3vwfRNiOxzalW6hnHpRuqYIj8wrj6NwP/sSkzs546oYnrpxuYVHqpmbQaT/7D5zpaOuP5DY6nVsky1yn/l156adj/Ho6LoS546pFvEvzTP/0TALzuda9TC8nz/HWve92tt976yCOPLNvFDzLtdvuSSy751re+NZplqoC2DOGmiBw8eHDfvn3hz2uvvfaSSy659dZbb7rpptAy3HrrrTfffPODDz4Yy4T+q374Q09DD3vfvn3XXXdduB9eiVuGoVdCT/eBBx5Q+XBHddNk4xevu+66Sy+91Hu/b9++vXv3hpvhGhH37dt37bXXxgqEvvu+fft+/dd/HaKWYVnO1Te4+eabA1EhqT179qgOmv7evXvDRVzkUIRA9ZBYrNjFF1+8sVvm0foMLztv8lO3f+/pmf58V2pfVw5RmGGRqWeWzpgs3vPj50B9xMbzCENtfVzOgNi5iX8dYy01miqwBtEnpDLKl2YNzbiRNDNu6o2pTLgOaepBaMpLXMFx1ppCYCr/3v3w5CNw9kuXNd/jI3v43vCbh828drjQ4S5oDFEWO6DKSVz2wNtm4z9WPjCjfa9YK1VJcw8eLRGNJ/9rSWdsbWA8tUqWuR75v+CCC9rt9pCbcVLQ0f0hH2DoZvAK1DcIAkN+wrI3E04jut0uAGzbti2+Gf5cWFhY6S0iarfbF1544be+9a3RLBOacPCl2Ldv30033RQ823379oUe7aFDh3bt2nXw4MGQeOg3h09+3759IdZFcw9uQFBs3759N954Y3gaYoHCzXChLUPICBHD05tvvllE9N0wak5E4UKV1ItQqFtvvTU8hahlgGiJbVA1pLx37969e/d+6EMf+uAHPygi4UVEVFq0ZQgI/oCOvuui+aAVAOzZs0edjfitD3zgA7/zO7+jhVraiGnxP/KRj4Qib+yWeYR0AGDrZPGuN70EVoejR8DGSWM0SBMQcxeXU2VUQBXVFIJrpU6YKh17z/FviUQ+dOxM6x2tPGz62ZpOLBN/wFpD4U9mLorCfPoP/a88d+rv6jH54Ld9czxbbGTqQcaTRxBZmxpZXNOxLW4e/uNkYzvWd/W+914/Zo2oG1v+1/Idjec3mCxz6F1Yn5Y5Jvx3Op2iOPHk8hCGOu5D18veXFbghK8nnF50Op35+fmjR4+eeeaZevPIkSPh0XFeLIqi3W4v23CtxjKhGUiOEVK46aabNMwm3LzppptC31r7qQDwwAMPxF9W3DLccMMNYXYiQP3b4C3oRxe3DDfffHPwHxRaBBHRgXP9N04qbjfiz18Wn3YCAHv27NFvXHu30mwyQ0RhPD6IQfPV79mz58Mf/nBMWhiSD3fiaPLQTYeouQh6DhVqiPCQRSwz1DKfc845L3/5y4feffzxx++555712DKP8LsPAETZ4aP+6RmoSl9VHI648gwsDACesXbiWK64ILtoZ15WbKFZlRznpDM1gS8lWn8gsZkH0V+O+FczVDY38VJhWXT8E6vcqepxplo8atZ4xYXXmogf6dM4rnTop0uz2PnV//H4mefCz74PTgqHvrP1B9/jVitWG6MzC/RT0SqJK0xPMAWALMskmmnabPyrMjq4Is38FDTt4LJdrqFBmrHiH9bwHcni9TRjYgNrKVGyzPGxzDHh/9xzzz1hFD4AhAH4+M/jC6/yfnwndevHEOeff/4999zz9a9//W1ve1uI1amq6o477giPjvOitTZs/D2yZd5www2x5O/+7u8CADMfOnTotttu04zUJdbQtfBW7CFI1L1GxIceeihOQT9DjMIgh1qGQ4cOLU0QlrQMMQPaQIVrHfkeahnCTW3E4s88vBvahPBvGN1XMrVl2Lt3r4jEHX3tuw8VZGlNxT8rMf8QuQdKi9IVt8yHDx8WkSuuuEJlHn/88e9+97vrtGWGk/+FDZJPz8C2CSoLqmr2ggAgXpgRABxDv5Kq5oceKy/amT/8dDno4ktzzpYqAdHvX1w9QxUQ9Ihp0kRwcfRnMJ0wSRFmSWInKT7NWJoI0bquqdnwKK5+tbwhk5ImCC+kpuQqrUH4zDPPnPvOl2d2vAR+9J1LDXElZH/5/4R1/XFqEkV6xfyEomn9SbMfk0pqwTch//G1OtYUBVHESQ01akOpjQ//2l6MkM542sB4apUsc53yj0sWA6yElWLx465/LLCaNBPGHK985Ssffvjhw4cPf+pTn7qg2VEnhOjEva6lUB91NMtUGW0ZoPH5b7vtthtuuMEYEwLftbf30EMPQdRd1vCbgwcPXnjhhXHLcNttt914443hlX379mlT4JxbqWXQTnPIVBuK8PTQoUMXX3xxeCt84AcPHrzooou0MYmbKWy69UMtw1DxIWpPjt8yhNCdXbt27dmzh5mDL6TpaC7MHCiCqNuNkR+ykgJxfS2to3D95JNPEtHu3bsR8Yknnrj33nvjEq2vlnnkPsPhZ8p+LwcCYAhR+F5QWACgz+C8gKAhAIAHHu9apQCbgEtq1ihI5Grg4pUKcTnjryKoGIdnqaRWHjc+nD6Nqz/+iV1a2XEFDP14xwYty52rDM2nhYhb+sdmXvuOFfe/X4qnHj3rwN/B9u3xvdhW1I9UJuPcJfLA1IOMl69tNv6VE24CBvR7i3PnxT79UFs/VvwrpSOkA+P6DY6nVsky1yP/Tz/9dBhtPT6OEzyz9P4JHYCE9YJ2u/1TP/VTX/ziF5999tl77rkn3DzzzDOfffbZu+++u91uX3nllSu9+8wzz4SLU94yhK6qjsSLyI033qhROqFlOHToUJC/7bbbbrrppqFOagj1iVOAqH2A5VqGEKgTxvI1qXDztttu27NnT0gkhACFTENScYSPqnHw4MFYn7jvKM28hxZk165d4du/9tprd+3aNdQyaHDOirXYkLY09gmiBmSI/7iYS0cBlrbMjz/+OABs3br13nvvjSXXXcs8Qp8h6OMZvaBhAYCw/z0B+IY5z0gyCOABABtXdqwELOd4BZl4ha/SBM1vCS7ZokGiqQrNCJsVYLR4qGlImaG3AoaC6lbSE6IfLW5Cr4KGE/M/gFv+Hfzaf4HVwf7H921v+vexyxvMAqPZMQ0FG9DtvYkOcYyLr69sQv5DCkMznpp+nLLeV1bHk/+1pDO23+B4apUscz3y3+12OZqVXguWugEn7N+nsPvxx9atW6+99trDhw+H06/OPPPMnTt3fvOb3zxw4MA3v/lNAFi2l8/M3W73FLYM0Azovv/97w9dc40s129TU7vxxhu1+x4CfuKWQZ/eeOONt9xyi7YnQUynBeKWIbgQcaZD6YTXb7jhhiAW7jBzrEm4OaTeUt70ApuII31RV/3GTIZY/Lj7Hlb6Kns/8zM/c9ttt+mS2aWUHp9/aLrgsWLLtsyPPfbY448/jlHkVZwyrJOWeYR0woU1YA0gEAOjRwDwDAIhKh8tAwEiNWy/4hWviDPDxp9Q+vSHMC7b0A9DGArSRcpDRGMU/BRrr+NkmrI+omhyRNOB6IulaDIuVknnVlQraJbSYzM6FZI6cuTIY1vPh3/+K/Cadyw1tUX4r3sv+M7nJiYmRCQOJ1VNYguLi8PRzLhSqi5aPJC2CflXfrCZJI27I/qdx9fjzP9a0olHUsfHBsZTq2SZ65T/V7/61ddff32r1YITYaVY/OPsqDO0hc6yAvrnstcJY4tvfOMbBw4cgBUWUfT7/U984hNf//rXU8tw2luGD3/4wzrGrx5I4n8l/kdI5++/+NltZ5zzN3f2tk3lCMjA7AnCcltgACg9eh8OwCrfctXExz97N+7evVtnH7QKKQpdwmjJAkUTYd77LMtUUl1SrUWtm9hridmMGefo2LOhSh0yJok2ucNmfo2jXVGVNYi+c1pul6WFhYXDl/+z/i/8XzCxBVbCFz6x8y9+c/v27folqA1pWXDx1PaQAvF1XCJu4sY2Lf+qJzTftn5gS7+KMee/ruuR05Fo0/HxsYGqqsZQq2SZ65T/rVu3/sZv/MaWLSu3tAkJK+Ab3/gGALz61a9e+mhmZuY3f/M3Z2ZmUsswDi3DLbfcogqHTTwT/yvxP0KfYYQuvg3nCGhJlClujk2JWYuLjYhhaUvwtyjynOJJGVg8JRTX2dC/WtTY8qSJi40F1PX00ZmLQVWOvDdq1jTEvlf3wlchoismFs6/cuay19dnnAMAywflL8zAn3xg212f237uubFtDZm4Fk0NSy/00dCXozdxiZO64fkPRqz5ikjYpNZHW1xBdBjnUBMztvyv5TuK998dHxvYbC3DRrXMMeH/2Wefve+++66++motaULCKrFs5x4AmPm+++4Le2sGpJbh9LYMYdg+ZiDxvxL/I/zCjgCrGchi30U5jetJQdFCtLjdj59Ks7Jh6HX9c8gIQkmMMc65pcakqekdaCoVmopXHys8DXYAkb0S0Vx729G3/rILPXsAWFyu53DPHfTRX91p6zNe/OKYIv0ShqinxdsbqbyaCDZupRZhiNJNwr/+GVt2/JEHv1b1GaJonPkfOZ1x/gbHU6tkmeuR/7/7u7+78sorVxOrk5CwGlRV9Vd/9VdZlqWWYV23DJuW/xHSOVmYHTt2aEJxOXnxwnAlQpplB0N1EFMjjYtmovPkoKF4yM2SxlMJSQ2tQcTF8WFL60/TVD1NdHgYNi4XMwcZd/CuhU/+33zoAFR96GyBzhYQeO6/e+6Av/9v8Pv/28Tf/9kFLzqj0+lIA2WcojgtbOK3YhmlLsRgBDGJ4tti5WMeNgP/Q4UKudCSnRDifNcF//Gg0WjpjJsNrL1EyTLHwTLHh/+ZmZksyy6++GIdGEtIGBnOuc997nPf/va3U8sA67xl2Jz8j/AL+0u/9Avt9tRDT7p2YRBQQCTsiy+DrXW8oAggAIq/6Jx8/8Gn7VC9crRfT1x40+yXrA4TNDMXqrcSp1Wo8hytLVhaJM0x8KupxcJD9af1hA0gcoBi241pZebp6enp6em5w9+Z/bM7ut1uXdex/XU6nU6ns3Xr1mLH+Vocavabk8YJI6I4oyFl1NZjXzCmNKzg1lXbm4r/oWZCGi85yOsHpgqvF/7X8h2N5zc4nloly1zX/O/bt+/cc8991atelXr5CWsBM+/fv/8v//IvIRqChdQyNOSsu5ZhE/I/wi/sMl/CiWBD0nVda9JaSdB4LepGxBnrnbiCVXWViY1JHS81qfAuN1MhITjJN6cox3Wg7Nd1rRWMzfzLkJ76CjNzs6pDfU1mnpqaCgu/VGE1HWxOf1BDCcYxVAFqSTEVHO08HX82ykA8QaYJbkL+ZfHgATezddL4zeuR/7WkM4Y2MJ5aJctc7/z/8R//8Xvf+95XvOIVqZefMBqY+cCBA3/yJ38iIqllgI3SMmxC/k82nRFgzjrrrLgy4mqIA4a08KqNiISMh4KrMILyHrRf6s1QNNsiDeJajz2eoarSXDTfoUqKbVe1VbJiWkOHJpRd1zhz5A6G+5qI2mKw7CEDhcYofXRIpOalhqUFTPxvAP710QjpjKcNjKdWyTLXO/9VVX3ta1+z1qaInYQR4Jz77Gc/+/GPfzzEf6eWYcO0DJuNf320+nRGCdTRkoTswx6lgeKh9jdMVai6MWsSrTvW+ovrOPypeodXuNl7CKP17+o/YeTNBN5j41O1NfdwCppKajpqhcE6pdm/Ka5CLSxGB1LE9RqvJgmaW2uNMVVVDRESm2nwDtVosJmXCdFBtHhRS+J/XfOvN0dIZzxtYDy1gmSZG4L/T3/609/5znd++qd/+oorrkgd/YTVgJnvvvvuT33qU08++WRqGWCDtgybh3+9OUI6q4flZiFFqLwQ9yPRyKLmEa90jusvQKtniDtc7LGFP3nPZgUAACAASURBVCnaSEQNKy6wOjTqOXEUEwaN36Py0DhGahChICFlajZh1bxCmqpASE0LpQYaHsUur+oZZ7rsGnCIFqDEnMTcKjOJ/w3A/1rSGUMbSJa5YSxzPPk/ePDg7/3e723ZsuVVr3rVK1/5ysnJyQsuuCB19xNiMPMjjzwyPz+/f//+u+6668iRI3HHVMVSy7CRWobNw/8I6ZwsbCitrpkYclOgqfU4Dz0tLK51rYNYe70YYhkW24ciNgUlFJoq13RCFepMjUry4i1UoXFJYyVjVQOCD2ea09TCi1peiTZdMs3ervo03A/OaGyFMQ9DKatFKp+J/w3A/1q+o/H8BkPLMm5aQbLMjcX/kSNHvvCFL3zxi19USaVlKf/6upZCFRviP8435p+aOXHfnFofl1dJUz7DtL61NrYWLYIagMpzM+kfqzpyOiJySnRYyQYk6sYN1XssP2QG3vvTpdVKKqWWYeO1DBue/xF+90eA1WLHLlRcf0pKaBO1ieQmbgmWfJPh49c7Q96VNl5LCxZXvKam6XC0GFkVk8ZfNMbELYtaiW+OVQv6K7mqg9qEaSK6hvSBJgotyKuFxd+AKhDu6Lll0Gz1qhnFb0kTN5b4X+/8r+U7Gs9vcDy1SpaZ+F9f/KeWIVnmeFpm4n89tgwDNViEBBggvEGAjAAACILiBQwMXAVz5pln+ibOKabYN3tjY+PBUAMfbfCpDGIz4wCNI6VVEusdZxE3YVqSuDqx8b3quo7VU0OJaQp34hS01rVigg6xjBqT2gE0LqlvFomrQYeMfLPZiCZC0UZLqjxF2z8pS0MK0+I4s8T/+uV/LemMrQ2Mp1bJMhP/64j/taQztjYwnloly0z8ryP+R0jnl/7V9e321KEn63ZuAAEEBBAAZPA/cAIsAAAkLiy3HcxXxjWqBVbHIi6zc843Hp46Rqo0RdsbmWZZRkicmrPEgqS1Vuf4lFy1rbAwQjXRPyHyGjVliaZ44gkRvRloCtpC5IOKiLWWGlcvLqaWAqOQMr2mZtZJX1EC4y8npjHkS83JDuFOIDPxvwH4X0s642kD46lVsszE//riP7UMyTLH0zIT/6eX/xHSgZOH1Txi6pUmjpyt8IJvpgyUEWlcIolWQEvkG6nqmlFc2WoW0mxypAVTSWq8qyHbUjq0+uMc43zD7q1aIoqixPSOZuoXn3CmYVtBVWr8vzzPlR9Vj5vYKWk8SDUOiCIRQ8q0eKfYxP/65X8t6YynDaSWYWNYZuI/tQyn1gZSy7AxLDPxv+5aBjh5WE0xzliarUYhctlVLFDDiwObgro6IYIRhlKOzUutChu/TW1FK1JrVxY7bUpK8AJ9FD0WqwqNU6hkDVVknKMWJDwKIVmaeKAiWI/KQ/QlcONxKjlxtYXXfbTxKjfRYIn/9c7/Wr6j8fwGx1OrZJmJ//XFf2oZkmWOp2Um/tdjy3CysFVVaeVpyTVCyDmHjVumRPtmLwLT7PKjegemtCQxrdIsU5DFQVFagNiG4jShmUnRjU4hWpegwtK4buF+HLAVpxx042gphmqlSSm/3vvgSmqOwSBC4vpIX1ca1Ry1vEQUfzDcrBdRMmNClEBunN2YGS1m/KIajbp6Skv8NFY45j9WI+Y//nMp/9oWLE2EF/v0WhYtUdyOLFvvGpQWW/YQ/9B87XGJ9OOn5nRrXryxhjLAzdTeUv5ja1kN/3Vdj/wdaYIjvPv8fYPLWuZp10pSy5BahtQypJYhtQypZVhS7xu+ZYCTh33q6Wersh/SNcZkeTEgy9Vht/+ALM8DOyJQV+W4yb/mNa8BACI0NhvUa1PZAcZaQwYABMS7mlmSfJJP8kk+ySf5JJ/kk/zGlv/qV786Pv3VEeQRgcjAycPWVRn7f3VVFq02ALSnphbm50OuWZ5PTEyUZQUAVdkbQ/ksG9Q0IWZZDgA2s2W/HxYo2MwWRcvVDgDqugJjm3UgST7JJ/kkn+STfJJP8kl+w8qHgfYx6a+OLA8nD7SNG6ToTEyGi3a7rVFN/X4/3FyYnxtD+Te/+c0q32q1wkWeF9Ss+ajqMtzs9/pD6Sf5JJ/kk3yST/JJPskn+Q0p//nPfz5cjEN/dWT5p596ZNsZ5/z1t7rbJnMgAAYGAgAvICwA0GdwXkDAcP+tV01+/LN3W1gCDWzSbI6PcZDP81yvg1cHANJsOwoAmR3c5HzYE0ryST7JJ/kkn+STfJJP8htbfhz6q2uRP1nYoiiqqtK/86KI16wsxXjK64oZm2W6G+uyyPM83l40ySf5JJ/kk3yST/JJPslvVPnQjRyT/urI8iPAbD9zh3cueD95UUxNTSuD/V63LPt1VbH3pjmeYGJycgzlL7roIgCwWdZut9kP/LaqKuu6ds4xMzV20Gq1uDn+IMkn+SSf5JN8kk/yST7Jb2D5gwcPjk9/dWT59//a+072dFvcsvWMiYkJjQHq9Xoh6V53YdEKZWNa7Q4AiMgYyr/trW8FAGYuq0EMVlWWHK1OIKI8LwBAQFpFS2O2knyST/JJPskn+SSf5JP8RpX//Be+MD791ZHl7/nOP5x0LD4idrtdWII4v/jP8ZRXphRxfcd/ImBZlkvTT/JJPskn+SSf5JN8kk/yG0x+bm7RutX11b9dKr960FpeTkhISEhISEhISEgYN1gRKfs93Yo/bNIJAHmeDy0LCBfjKd/v9wCAiLJmax1r7dCyjIE8SF1VwclL8kk+ySf5JJ/kk3yST/IbWH5hfm58+qsjy8PJg/R9APDel/1eOFh4anqL7kQZlgWE63GWZ+a6qhAQAdudjm2WLIRlGeFa7SPJJ/kkn+STfJJP8kk+yW94+XHrr44gDycPu1IMUL/f37J1W7wsIGzuM+byWp11VU9MTC5aloGLBJJ8kk/yST7JJ/kkn+ST/GaQH7f+6snKj4Bljr5SnGyY/7jJL7ssI8kn+SSf5JN8kk/yST7Jb1r5ceuvrnFZ7Uqg+FxYiGKAVsKYy2sM1krQ2Zwkn+STfJJP8kk+ySf5JL8Z5Metv3qy8iPATk1vmZudCZH+IQZIz9Ht97pLlwWMp/ygMFnWbrfrqg5/VtVgq9R4WUa70+l1u8455xwSGrG9XreRj5dxDEwny/JwnkJI39gkn+STfJJP8kk+ySf5JP+CyhdFCxqcVH8Pxqm/OrI8nDxsr9dbNgYo3oo/LAsIW/GPp/y2bWfA4his+CgEZq6rKhyFUFVVpzNR19Xll7/s537uuvPOO29ycnIE4hISEhISEhISEl4AzM/PP/roo5/+9P944IEHiqIlIqvp74UY/bN3njM+/dWR5UcgbTMefTU7O/vud/8v73nPu5fmkpCQkJCQkJCQMFaYnJzcvXv37t27//t//+QnP/kXrdZzI/rH6e+lo682F5xzL3/5y1P/PiEhISEhISFhfeE973n37t27443wE1bCpjv6qnb1z/3cdSdPVEJCQkJCQkJCwmnGu971s7/+6//n5NRU+DMdfbUSNt3RV1VZXnTRRSMwlZCQkJCQkJCQcHpx0UUXOec259FXntELAgMACIiAEAgQhP88ooC4JnBpMx59ldbXJiQkJCQkJCSsR4ReXDr66oRIR18lJCQkJCQkJCSsV6Sjr5bFZj/6KiEhISEhISEhYX0hHX11Qmy6o69aTZBWQkJCQkJCQkLCukM6+mpVLI35Vv+n/Oirun5u2XJCQkJCQkJCQsL6Qqfdqes6HX11fGzGo6+WJp6QkJCQkJCQkLAuUFVl23TCdTr6aiVsuqOvEhISEhISEhISEjY2Nt3RVwJyUgR99A/+85/+2cfv/s4BQRRAEQERQBSRkDs21yiCAAIwyEEAAKjxoUyGrVbLWmLxwgKCLCwM4FEEEYEQCTGUoshsbgwSiAgRIkm7XWzffkaR2yNHnn366Wd6vSrLaLJlW4ym8hbRGCKyaIzJrS1aWdEma51wr98/Njs7MzeLZFqttmfuV6UAtFut6enpzFp23hhTFIVBEhFGAEtisXRlr18SEgG5svKVa2XF9i1bt289I7d5XbuqqsR7Zp6Znf3+U091u91Wp71l69bJLdNoqXTlXLc7MzdzbG52fkGcA2Mxy0AEOBAwIBKIABF+6Ieu/Pfv+7Xr/+UvnlTtJCQkJCQkjDNE5PHHH5+bm1sabrBR0W63p6amXvziF4dAlOcDVVXp0sp09NVKsEu34g8xQCstCxhn+TgGK15mES/L0MUZJ8SxY8fe9hPX3LX/24CIICIkMOjXw6KJIYEQ/IOI2sNvevksTV9fgBCIEJgEBRCBgYF5kCaIviQDJ4Q9O/bWUJFlraJlDAFIZrPJycmicIYgR7CejZAVMURkDOVZVhR5q50VbTRUsffMraKoXJtFiEgQsywDgNxmuc3yPIMMMmvzvAAR770Xrrzr9vqlrxjAkBERYUEQZi6rqtfvYwsN2TzP2fu6rgO9VVV1+z13RHpVmbVyIanqWgRsluV5DfCcfwQA8Vcf7hw4sP/f/PK/+ugf/qe//qsvbN26dZV1lJCQkJCQMLYQkfvuu2/79u0XXXTR2jdIWS+oqurIkSP33HPPy1/+8uepl7+6/t7w0Vfj018dQX4Eljbj0VerpOatb7vmrv3fBoDQCxVhARDEMP7c9MMHY/o4QNPB56Zz/5wjIIRgiBCAg1cgACgC/JyTAE0yAszM7J2rEGyRT05NTlpjmV271W4VBYA4V9cLXSmrLHTxjbFZYdutVqdTtDo2yxwIVGVd1XmWtYqi9l5YEDHLMgTIiAxRnuXW2lZe5FlW1XXZ7/val73+7NyxCnxeFEyWGC2RsRYFut0uCHjvt0xuyfPceeeYi6I444wzPPPhZ546NlsVc7OdqU5rosWI1toJM0HU73Z7VT1waIgQG09GBOIKOXBg/0++4y1fu+Nbq6yjhISEhISEscXhw4fb7faOHTsgGr/b8Miy7Kyzzur3+4cPHz7nnHOep1zS0VcnRDr6ann8wR/8/l13fTtYSfgqZTDQLgjwXLCP3iIZ9NJF4ucYRqwRCIFZ2PvgIIAAsKAISvASAAERkcgYQhFxzguwsIiIJZNluTD7WlpF0W4ViDA3P1svdIHZkLFIeZYV7U4x0Sk6HWtzAKirsq6qfr9flaWvvXPOs5A1hCgstbi6qnObGTIDt8L7siz7vX5Z9rxzQMCOWUojlLfbeZ6Dk7LXL/ulq2oC0+l0mH1ZloLQnpqcrEt77Ijv1WUNmXO5MNnMZDYng4TO+dpVz5krAgIF+rAhOVzsP3DX//ff/uzn/8UvrLKmrrrqqqU377zzzrVIrkfEpVtNoZZlYyk2DD8JCQkJLzx+8IMfXHrppZuncx/j7LPPfvTRR5+/Ln6MdPTVsrArxQCthDGXP1VHX/3Zn//pYLz+ufiZKMZeAAkAQPi5Xr6ICBIggDTdVgBEMAbC+L0wezd4DiLiBzHpIoIAgIIARIQItauF2VoyxhgyIlBXzrND5rzTahct7z3Xvt/rm7Kmop1lWdFqdToTrU7HZJkA9Muqu7AwNz8/PzfXq8qq9iwiCGQIEIHZA7i69s5JYEyEvffOOecQsdVqOfHe+7qqxVhjJtutFtfc6/W7CwtVVQPgdD0FgPPzCyajqektWZEXrVbed4AAFDwXndygMGER+vHPTdoh6rwIaqwTwB/+0UdX38VPeF4RPIHU0U9ISEgYAVVVEdHm7OJnWbawsPD8pb+a/l4coz9u/dWTlQ+wBqwBBGJg9AgAnkFCxIhHy0CASIN+Vjr6anncddc/Lv9AY2qOi0GHlcAQWEMZEREhiLAHQBQUAWH2zMyhKwwAgmgMCLNUzon3RHmeZdbYqqrn5uYNQbvIDVn20u/2enMLda+yZPKi1W61Ou3WRKdj88Kz71XVwkJ3bnZuobvQ75fOM4gYRLQmMxaJGBARrSFjTGatMYSIRJgZC61Wi1o1uF7Zn5tf8LUzaAxSnuUOGBH7Vbmw0Hd13e33jLHz8/PGWgb03pvM5i3r2bPnsiyxrr33xlpXVt45ECAcBCiBBPcIla5mLF8A4M5/TIE644Wrrroq9fITEhISRsDm7N8/30hHX62KpTHf6v90HX2lYfUDNEP4GI3lozTb7CMgIiGgDG4RSgg6NwYzYzJjERHEhx1rQIAHAf3CImEqgIlZXIjY8V5AQAQRDaIp+31fVZOT7WxygpD6C72jR4/Oz8yTULvdmZqcmuy0Wnme54Ug9uu6u7AwP7/Q7/XZeUPWWgoKCYKxFokYyRC18lYrL4oss2QIici0ilanQ2hNvy69Y+R5FDRkEKgZgydA6ld17RYqL3lue70+EQECGQuIeWGrWmrH1UKNBHntbJY55wf9e4Iwuj9YdAsCsGj8PjxKDeIYIvXyExISEkbA6lcAJqwe6eir1SAdfbUSBpH1gFH//rm7jRACYbNIFgaB+IQw2ASTyBJZMoYMIggzCAKCAKJ2bnX7SBZBRucNEREBEgN4YRGu+mUNMjU50SraCLQwtzDzg2N15bZNT23funV6amqiXVhrAaisqn5Z9nr9uqpRoJXlRcsYa4GoquuyqgnJkGFBa22Rt4q8MGSAxYtjx4aoKFomsyxCQBZNKyvaeQsA+/2qrpzzHokYoK5BFsoWOwFw3h+dnbNZRobIGPC+9q523piGeERLxhupPQuHZQgDJomUV92GFNbew1/aH11l6PnmxEp99yHSUi8/ISEh4WSRBq2eD6Sjr1aDVQWmb07oTk+CggioUfnN8lBBIEDCsFmmMA+23iEEJESDFPa6x2aHncHiWhDhEI+PiGFXeJbBbjohE5tlgMDe1662CM45S1RkRTtvifcLC93eQr/TLl60Y8e2qamCjDGWjHHOV66uauc8E1KR55TZsBTAs9TOAQB7IQh+CBERCNRVXUnl2Zf9EhHJGEBg5wiwyIt2yxZFISIL8/P9fllVFRCajGrPVe0pk1arBSLdXp/qut1p2cygMYgO1B0SISJjjGHxIiFmLCxsoIZnRBLh8GE224iOgjvvvPOEXfnVyCQEJK4SEhIS1ojUxU84XUhHXy0P/SYHK0FDOE6zglZTQgJEFGEOYfZhOSkBIobwe0IUEe9dOBir6eKLgAAKAhnTdHaREEJMPJnMikjlaq69BUCkvGgVRUGA/aquypqQpianzti6rchsv9tjZutt7et+VdXOCaLJbOivO4Da+35Z1lXNzIjgvAAAW2bmqq69r+u69t6XVYmAnn2e57V3hrDT6uRFQWR6/V6/252dX/Be0ICxZCx7D84zEwqAYxHvjXPBgTAWMwBjyJAJZAY2g1fBIjQ4LiwEIwFA+L/FwVGnD6Pt0rO0Q7z0laUpn3Bc/IRpPq84Ti//+Hv4rPT0pBgbuSKWvpvmHxISEk4LVuriPzrTe3Sm98aXnDF0/8/vObzn7x88VjoAeN8Pn/fhf3bJl793ZKZ079z1oudd1/WDdPTVapCOvjoBsAnN0Wgd7YrqSVUCwAzCg8dEYIgyY0zYH0eE2YvEvdgmKUJEkmZxLgIKCiAIes/shcF7Z3w7b01MTBhj+/3+wsK8974oWhOdSWtsWdWzc3OElGeZY1dWVVnXnr0gIqDzXHvulv1eryciNssIkZuAGO89IFR16erKe66dQ4B+2ffeCyABtVtFXrQEoNfrV5Ury9p7MRkCksnIC9cMvaoCkJqBGaBfZ+yJUFDIoKB4ZkT0zrOAhHh/EGEfHYURTgcY9PR13e3pwnEGrU+4t8wIvdXjJ7vsKy/8FjdxR/zUxuoch7G1VMSyr6etgRISEk4LVurif+afjvz2t5/58NX961++U29+5bGj/+4ffgAXXAXGAsBHn3jyz3//dulsuf7yHe+4eDidN73pTUN3br/99uNoEuSDTHy9HpGOvloN0tFXy+O5UfwmnqTZ7nFwhG3oqIdt70WafjuGXTIxsya3mbWGEJm9cwCChESAwswymBRgRAEaxOQjSIhjEfaVYy8sDCAs0uq0prZMC8qxmZnu/BwCTE1NtVqthW5/YX5u5thRMlTkBYN45ypX196LACOKgHNc1nVV1yZE4IA47wWAvK+cI/ZlVQp7Y6wxRgBYuKprYbDW5rkRlso57zlsfOlZ2InJgKwhkdpJ3a2tBZsRM1Q1146zDKwxgCEeiQ0ZZnZe0JLNMgEhEgAODCPi4gkTPFXbi8Wd0VMYbTJaH/eECpzs4oEUFn8cBlJwUUJCwvhgxV5H3p45a9d7v/Hwd56e3fua87e2MgD48lN9OHfXczLbzzm29UVbMvyhs2WldL761a/q9dI9Fo+vz7peCpyOvjoh0tFXyyPuZUozrhwtqQ17wQz6/CEIRwAIwRqw1hR5ludFlhki8M4TIgtnxhCQ996z98IsAICDjfUFPDMLc9hK0wkIZHbgTxTt1uTURNXrHzl6tOz1JjudickJJHP02MzszNFedx4t5nkBiMzsnKuc9ywsghQmBcBai0SO2Xtf1zUAAGHmcgCpytIYkxfWZJmIAIKvXJBh72vv+2XlmTNr8zxzXNYMCGisIWB23lUAZKan29752dmer0EAiBARvWcByCwZCW0TARCiGDPo2Sti5sP2nSNX3PHDx1c/9LvKEeXVpL/Kserj+CTLvrIxevmrjLpZen/1Ka9EckJCQsILgJVGra7fteWPnuVHzK4/PPzkJ/70H99x/pafvHD7Y9WSeAxjv/DGzuVtH8eixDjZrk6sz4ZZJ5COvloW6eir5TE4pCnez3Hxlo565C2C6BG2AIAAmbGdTrsoWoAi3gmJscaAIUQUEAYv4lk8swB6lLDDTNPFFw6LUj2AQJ5hVmRZnjFzr9frdrvCbK211pZVffTYTK+7AMDspGLGsOEmi/PsWQQEZLDgFwFdOFsXgKwFBEGs2Rsim+eIyIBZZvMsR0Jfu6pXgqCEcLGiAKLaOWstQFV7IcbMWItCNYNrdsAkJAOeB2UhRGEQFGYmJGtJMGw+NNiASFsWXByao7sTvfBQ92CoF3gKV52ulPJK/c6l9zfDEti1V0T84mZgLCEhYWyxUjf6/z3wxEvzHY90DWw/Z2briz4xc+QTtz8F09th67DkJXlV1ysOty+b/jXXXKPXX/jCF1aS1+ul8uGOvnvNNdfE10uTfeGxOY++OinQ1PSWvFmiGmKA9Fm/112Yn1uYn+v3ujrgOs7yIQZL5auq7Pd7/X6vqspma0pZ5dFXoX+PiEhIzaY5oQ8OMNjpctDrZ405ARAQhsyYic7ERKdtidgx1y6cd8siNfuKXeVcVbuqdrV33ntm9sIsHBwIQrAWiMB5ADLtiTYRLCwsLCwseGFrLRoq63q+O7/Q7Xphyqwgls6VdV17ZiTKrMktZRkYK0g1S7eq+mVZO4dINi/yVstmVkBMlnWmpk1WlM4JYjHR7kxOTE5NbdmytWi1RLBVtLdt2z4xMWmyjDIraJwH5wGQEK0xZHMQ8N1ev6xqYynLwVoQYWFGAGaoKue8D5vqIIVjbofG77VPr1vjn7ZxhTvvvHPkUd6TGpA+To6r74+u957rcag+5RWRkJCQcFogK+Cdl569/+nm8FdjYeuL4CWXw9bhNbVXbjHe+2VTWCn90AW/44477rjjDgC45pprlsrH18vKLxVYNp3j43miFFbX32t3OjqqO2791RHkR2FpzLf6P11HXw1GpgfhXIP1qbpl+2CAXwAICAkQEDhsmEMARGStMWYQFsbswxaRgijNtAASIQJS2I8Tw1Gvg9id0NW1YASyzFprvWfv+847IiKDztW9Xq8qSyfOGEJrCZsNKI0FJAGRwZwAiIBjrpkJ0ZJhgLKuiTEzxmY2y/Oi3RIBxw6IBKCqa64ZBZz3rqq51bbW5nletIqO6/RK1y1DvI933nvPSIAAjv1gp1AbNv4ccMUM3oNhLtCHLr4AMDd7EjWuETPoyVew5qnDlUZtR+v5nd5u9HrvxJ9CJCoSEhLWI1aKdz+nwM+/5ax3fat8pHu8gPifP9sPxhZXwJvf/Ga9/tu//Vu9jmM/Voq/j6+H5L/yla+84Q1vePOb3xynycxvfetbAeArX/nK0vOIXkiko69Wg3T01YoYxOREX1YTtwN60lXYGDN4BAQQttEUEO+dc+C9Y/EszN6jMWRtGMwGQAK0AEiD/jB7rtE5AGYOkf2ZhTyz7VaGIq6uUQQJjTUiXJZ9dk6YySAaYkChsEumIWMAIHS+a+eZmQFZQAjIGmNtXddlXRFhp9Pu2I6xRmBw6q21BhDq2vW7pXgue31fOzRWDDn2mc06nYl+Vc8vdJ1wXde1896LtWSsAcKw1z2FfT8BhMU5JywQOvrMBsAQCQARMbOG68SuvoY/nRKEwOsRuoapNzkmSBWRkJCw3rHSoJWIfP/pZ16at4/WdqZeXmZLhu/ZCSLH8wG+/OUv63XcF4rzHeFae2Lh/pe//OU3vvGNKvM8xY6vHunoq9UgHX21PAb75ACAbo2vjwAgnFKLAIOFpCICwIPNMH1d12Up7Kuqqqva1bX3nixbRCRiAUGkEABEKCIsHgSJgUJ3lwERLGGryFqZJZG66oMICBsCdtwv61LEkjGZAUTHXIsXQEtExhKiQYNevAy21gnHazFI7erKVZ45DODbvBDEfll2+z0EIUPtdrvI2yBzc8dmu72er70HrEUknMYLZIwlQq6krp1nQUKbZTYE94ezvRCJ0CAKCyCCOEAGBKDQ+R9EM8lzc3yDGTWiAdVw6rr4J4vUoRwTpIpISEjYMDjOvPSP7py8t/aP9v1MTcsK3PIy25b+8X8SV+oFrrGLr9dve9vbNJdwDcctVMLzChERFiEBbk4YJUAeLAYVFC9gmsHpdPTV8iBatFl7eBXD2VaDlaLaGw1bXephruC9d7VDAO+cNIe1iohzThC9IAAYEpRwbG44J5dJxIgIAwsQgAXMjM2MIWHvaxG2QETIyM5VvvZFnpvcCmLlXelqBsgtkrU2y8iiFyhr3/OJaAAAIABJREFUx84xe0JAHGxUiUQGkawBROe8SL+uq36/n2VZGMs3Bm1mRMQ5X7q67knpGQCMtZRlngeHAIBnMsZkxhqL8Nw+oohIZAwRkDCzGMcAgABkoHFhGrD279WDOr2b4i/F87Ht5mgKnEaccDnBC4DTXhEJCQkJo+E4vWHn3HsvKH7xwuy3D/nf/6fhQ3t+4Tz7rh2+qk7QaTnOLMEar2+//Xbdej9+evvtt4/BKH46+urESEdfLQ/d1yXqgCI2u9cDgDCEHe0RgaLt8wVAQDx7YkQAIqTcWgEvUnnnPAsaQkISIEEjMthkh9GHXj4YAALIEDNEg4AsyAwgYXTcAzOHtTceUQS4dnVZ1V7Ys9g8y7Ew1mYiWZhBYA6TVjazhc3Dtvd17ebn551zxpowE2GtrWs3OzNb9sv5+YV+VTqU2rvSOaocgNg8z1vtmn0444sYbG6ssew5HKHFwiBijAEGDAdcee+9eA9IQGFpAFHo24ME8eEB+0D1WjbNDFjNQbNDGIeO7Bjihe9Sp4pISEjYSFgpFv+WO58AgO/+oPvVp7qzW86F7efooy0Z3rI7f89ZvLDQHyH9L33pSz/2Yz/29re/Xf9cWFhYVj5cryQ/Pz8f3wli8f3TiHT01WqQjr5aHhomDgAAhAghwhxERMIjQAahsNs7kAAN0gdmcOxDZ5wQjTGIWHlf1rVzHlAAyRMJkXgEFBHvnYhn5EE6mcHCmAzAiCACGQMgFjHkbVDEhFAi9l6c9845xyBSVVWV5zkSEVGR58JMRCFsvq5qI2SszWwmIszsvSMabGbjajc/N1f2umW/6peVd+y89yLM4rlm8R4FrWVmQELyiEBIBFTXZVXXgsACIGCNFytsLKA455wLc0YQ9h1ajOdCdIb2Jz2FY/mnfdD3hEfDLt0d8vk7TfZkMTJ7p532hISEhDHBSqPsv3jlS//Lg7PfXdg2+9LJcJYtAPzQNL3zbPO+803u+vPzJ9jr/Utf+hIs1+Gen58Pj/TPpfLx9UryK4mNQxcf0tFXq0A6+mp5hE6wDuETUbPVDUMTqa+bxqCAadbgsohnqapSnGFmA2gQ0YQBdwBBFBQUARZmBhRhYS8CKIAABsASTraKTrudZcYYQ2F7HWDx7L3zIJkhQjEG2HsvIGHpKogIlmVtTCkM1matvMhs1qpdr9db6HarXulK1+l0Wu2WIQKEdrtd5Dmz7/X7Zb9f9rtZbpCM89Lr9ivnJWwVxMzCYfIABKzJDHkAYM9+sJt/mNwAYPACBL6hAnTNCyAyAunpAny8OL7j7x7wAmCoY/38HY4bd+Vh5W03l33lFHb9R9hsfmkKL8BZwslzSEhIWHdYqYv/Iut++1Vn3JLncQyGc66qqv7CfH8Vwe5Dq0hP+Ci+OSSwUlKrFDvtSEdfLYt09NXyCOEtzQFYrKPdOgI9GGkWYAeIQDQ40pW8F8+urJkce8kMIQoyMQsRWRPC1gWalbUhZAUEiMAiEEGRmemJzkRnglAQ0FpEQmZfl2XpxSCiNcwCiOzD4L0YY5AAkJxz3W6XvZ/oTLQnJvKiEIHZuTkW8bVj9ux8XVb9sgaE3BbFVJFZYwzVVTU315N5IJsBQL+sWISMQUIOXW72lfO6n9BgwxwRQsoyBBBm4LAF6CDMBomIjICIMUREiCiIErr/iIMVvMOLa2XJndODU9ibHIoaWinl45zWtOwrxz8z65TjhIdwPU/979StT0hIWNdYqYvvvQ8n3rzA+mwYpKOvToh09NXyiAfpmxF91tCdJnwHUAZ74VuLeZ4XRVHkNjMAIt6xcyEe3TlXe+8R0RhjyFCzx00Y6EYGI5ABFIZaxnTyYqozsWViYrrTmWy3J1rtyaLVyfLc2IxMbm1hs8JaSxRC2sMZtHmeW2tFpC6rfq/vnDPWTkxMTE9PT09NTXQ601NT27Zsnei0RaS70J+f7VVlbY3pdCYmJyayLPMe5ufcsSO92blev2Yn4oRr7yvnK8dl5Xr9sl9Vnn3YE8d7FuEQEVTkRZFnRW6tNUQmdOiJjKEQNIT0nJOkW44uw7b+t3YM9ZhPSv5kn64x8WUF1q7zKcTJZrQWxZ7XikhISEh4gbEkSHUT4fljNR19tSqWxnyr/9N19JUxBMDsgQcd/bA7EbKICGCIwEdEAwRgrGm1somJjjWZq/p1VYKI9x7RkUEyyB5EmMAAEtAgpgUQAAXFA4IByMm0rDWEnayYyIupdhuEhRkIgT0yO2M5ywmAmT17J+w9OvDMgMYQWS/A5L137LyrnXdOOCzSpczabGpqcmLSZnah17UmZ8/bt22bnpi2FvsAIAIsBGAsoIFKwA8O0AJXh6OpxLnKGAQJ62UHh3+FA7/QDIbuxXth8eCaU2xBQJwXQB8289HB+4B4PgQG5wWftlH80H084Trd0eLjl0182fRP+Mrx3zq1WE2H+2RXNq8y0+epIhISEhJeSKxyBWDCSSEdfbUapKOvlkeWZYjOQRizBmjm2qTp4iMBESEIIWSZabVak5OTRV64qij7fVdXVVUiiiFANAheWFhYEAGQBEJwDwKHEHyLkBmTG5tZ07JZYWxBhowNu+fUvgbPFhGyzBJ4751HEgYjQAROGBFESDAz1giCgKvq+dl58ZJlWb/Xc5VrtYrpqanOxMSWuprsdJh5y/R00WrNL8wuLHSrsiLgVgEmQybytXdh3bAD7wbEMbAIGMKwiRAikiB4BiRERGMkBDh575nDemUWGfTawZEhJOQBZNE5wc0S26EjCFaDE3aRT+qVk33rBRjeXuUrL+RA+2qSGo38kVNIY/8JCQnjied1MHvTIh19dclL4m00EQDufGjYmUxHXy2PoigQ0bNH/5xPICLCEI6mAgCDwCyexXtPREWWTXZaLjdEWPbE1ZUIswcA7x3XjkUECBDD6L/uiA8EYBEzhIywsLawxggT+zzPmEzpal9Vvu4jQstaztDVrqyFBCwQ2QwqX9bOew+CGREW1nmu6+oHz/7gyJFj1hCAIBGILCwsWJsZS61WASJZltVVdWxmdmZmrqpqMoiEntk9t8kUeA+AYE3Y94Yg7C4EAs0GOQhkDFmbIaH3HgAFAAQxHIaFwiDCAgBN59+HdcwQxdxrR1//TEhISEhIWO+w1obT3E+3IqcBzNxqtU63FhsWD37P3/Hg8ND+yxb1+9PRVyvAkMmyDAAqrL33wsA42FIHNHa8Cc4XAWF2VVUact7VdeXYiQgACYRhePY+nDsGAiyEQGF9LCISCVvCzGKemyKjjICAgR0JIUCGnBlAJiAggx4QGdiDERIkRGQj7ML4uRDasOGn977Xq5wHRDAGssx69o79Qr+b55mrPSAsdHvO+2P/P3tv12NJlqVpvetjb7Nz3D0iMrunsqqyehpxMQ2D+q6EhLhAoG666AY0/In6DfUT6jfUVV8D0jRI1UyjuuEOREqDKGCYUcOoYXro+sqMCHc/x2zvvdbiYtvx9PKvOPGRmZ4Z9lRVxHE7+2z78JOVy7a9631fnE9TcQeYw6I0GMIXv38Sjr6yzgxZbIXCPRZfIcLhMvjiJYroCWH910EUDDjHIdn284iBzxfsD5sJAOH9/L/ClZWVlZVvHh988MHl5eXmuCbAbxjTNJ2dnX1Bk6/RV//g78tvL+Tjk//Lm/1WibtGX90NEYach5xnmXa7aar9EkMYAbjBGmq4ClRlSAkeFxeXlxcXzc299Wp1GLJbq1bRLXcA6jcEFgFiTVlEOChcicect2POwioQcg5DLcIkSvlkdM/mVr3NzcAOIQ80kLsP4SAqTMXda2kOIwKgWai70QPFm88xWXuxexndBQjQxCkpQgAmEg9rHmAm92gg5ZRU3GtttcENSFAJ8/5EApqElXv/Q/HWlTnNzNxAxCBmFhZ0VQ+gqiJiRu4U3og+N86MOLQw01Lor6ysrKysfN353ve+9/Of/xxAzrkbt78PuPs8z7XWP/iDP/jidvGeR18dtYr/yK3+v6roq6Spf7ZJExEhByAMoXACetKTg4SScBIhoNVm3hzOgIioChEZkyMQFhRogcMCNhBMoYkzE8KFKGUZsiRmITA8vFhlYkpJRSXApQG1GTwILqAgOBye4cQkImE+N3MzMIsk5CTh5mHmFtbgZHWq3iq8AYAoNhvdDqcsShHRxA+mmAijIGUOJm/Nrp599GvYXxKBycxrC3ZbbDEPi/MR4eHUexZAtFjrsDnjzrbaWKYPxJH9EisrKysrK48ZIvrDP/zDv/3bvz0/P7/dNPhNZbPZnJ2dffzxx1/oY/n3M/rKnCxIPO5Yxf+XPjdweDuc9xp9dTenp6ellP1+b2YiPG4UILi5OxDCkN4xix5qGwBUNUvqGbhLkQuPYJXELF7MakUgqxKDKFRZBUmZwEqUE6tSUlGAwlo1IiZhjgBbMMKMASUOlgA8wIQwhogQMcKaO3sQgiVEwr1ZmFl31WQmEFRExd08IpjBLL5Y5BCIQYdanqx7hQJgoqxBBFkaCZA0et8tYum6ZWYVJWYQHAHzZR9uARAzEUeEmbnZoeMWuC67P8h7VlZWVlZWvhn0Wu173/veV30gXw1fmvL2PYy+unMV/w9+/7eq+jX66m5OthtrrZa51cIiSVNElNm6FQzzoidxCo9obuQsIqKiKgh0N3yPHlFFSmLsLSCEIasoI5yFkkhSESIlUhUWFhUBorVWGzEjhALBHEIBUICZBeglviFEJISYAURR0fAAQyRIvbUaLdyZOImSsLszkTIZk5kRurSm9cCubnLjfZGeKSi8x8z24p+IiCLQ3f2JSJiJmJg0OXe7HKJY0nCBJcsXwqyirAKgNQv3ruWPw7L9ISirZ+ACq//AysrKyso3hbXB7AviPY++um8V/zp6nwYIwLTf3W4LeJzjl5O5psECUMpilXq9DffI6KtxyDuhcAs3FlbRCK/Xl5wXvQ0c0cz6+rZIt5uJ1lprLcLCozvHI4IISXk75pSkW+0k4ayizEJQYWYSJgY8ws0out8OASCWvlMCc3+G4BEUwogegkWuJtrrc03B4oRaSwuI0JAymMo8I5ypO/2HecCqC0DsgWaHhxQAmIGwz8MrlkwAwlLiH8Ktutd9b7M9dN0imEDMTGBmFUmqLGLmBkOg2+d0TSITujqRiK56bdcSf2VlZWVlZeU+jqn3rmv0H0+9+sbjb1yBo1bxH7nV/1cVfcXETIRebR9c3LsrzJWIvP9piwtk9Jhba+JhtdZmRhRMTAC5e20EDIm3Q85Jm1UzEyYhUmaiIATcwiiA8OZuhuBYtDNMIIZjCZNChF/ZVlIQsYBESI0ZkKQh6u4zETuEKCe9KtklCQAjCg+PMKsgclBzN1+kN8TUA7+WdXwCEB7BRKLKLKKy7FeZAetdtu7wWPx4CCBi6sodu1q27xyMdcDcH0EQHzKxljuGlZWVlZWVlZW7WKOvAPx7/0ABINDfmxw3V/G/Llb/X3L0Vbgzc0qp1OrutVYREZGUvFa/im1iQjhAi+l7qcStmVurNYDuNO8RXg01RsE268mQNUktUeEgCEOYAKeIsD4Zwm0psYmcCGZBoEBQb1SNHh7lHhEWADMzWJiVGUSqClGTpsRMUKZBBRGNKIhU1MjC3VpzgyNAYYA5elutCBjkAffwHgJAoK4NEjCRCKsIKPoVoCAmEFGIBEdEb6gNhIMC3t3yPYKZo98mLR0L/TlAN9Q8rN+vzzRXVlZWVlZWHmCNvjqGNfrqbrxVYRpyKlVaLdacqPe1ElBrtUWRz9xznogpCObmEeYGgJmFmYndzFqwYxj4ZBy2g6rIHEZOoEhMwiAHEN0hB+HkgejmMu59hd9AQeCuyA8AgQh4wBf5jpAqR0gQJ1VinZkFoYRElLvnT1KANCVzhoeLw70BfrVo3nter+zqlxDevq4fTKTMKpxEVAWICOs++EmZk/ZK3WOJuDVr7hYRbq0/AEA/cMTBAn+p8q/K+v5irfJXVlZWVlZWVt6GNfrqbmotiMgpZVUrc7MQdtbEzO5eil0pdwAiZhFm5i5GERFmUWVhDvdq3j0zx6TbnLISc5jAhBAQglAslW2Pkur5UUsdDzNbCu8gDglCT5giikMobBAFwCqMQNCyli8BAYSgFAow85i0r/E3pzAzEw+PZbW998ourpmBpXmAGcz9bgVKpMKSRISYAhEe4eFMrKI5d8NP1FpLLc3Mzd28F/SE8M+1RRFXibZ0MNkE0Nf5P8/EWllZWVlZWVm5yRp9dQxr9NXd9B0pc2IpJAYLxLU1ZuoGNF1YQkzMSgSEM7Oq5JRSEkTUWstcAajSdsjbIWXmIFcOF0Qv8RcvSqIgioBf2UcGHMGAuxO6XB+83BAcjOkpEIwARRIikgAzk5uzuxIyITEpQglQJSJWFadwa26OCIuAW++TvTo7gAARPjTXiiglFhEWZhDFUrGbu7MEs6owE5k1q6Xs92Wu5mCKLiECyNybu/lv32IFwv2w30Oj7Vto8X/2s5/d2PJHf/RHbzzbl8aPfvQjAD/+8Y/f4N2VlZWVlZX3ijX66hjW6Ku7MWu9+iQCM7M4MUU4gAgnjl5+9xbbXpGHO+BEmlPebMakYrVabYQQxph5M6YxJaGwcAqX5X6h96SS9Drf3J36fUN3yQSAg69NRKBna3UHGu63BE4UoGAmBQVo0eq7CygLZ5YEKDGp9gYCAplwUrGAIdwbkUV/wMFdXh/M3POqerctE4uICBNg7gjrkhtvrTmZiLG0iDKX3eV+vy/9jjolkCLIEeQe3Su/t94e7DHDD+77b7l4f7u4v779a1Hor6ysrKysrBzD+xl99Vqs0Vd3QwFza1aBSElIAJZuZAMES5eTH2Q1HmYWbkCIMrOMOavI1AwWFJEF21G34zAkZbiZkQfHQXqOIAphEmb3cApmIubwQPSo14gIEEd0v51uYkmE6P8LBMEJLAxzuJu1Ft6YMKiMqllEhQXitAjhlSWLeMDCzYjtevJUEIhZWJZ/YJobEaJ//9xbq+HWJfRuFkaN6xz9rnSep9oqiJAyUgIz3MOsuS0yqUN933e13L14F/L33tvX/31d1fe3S/n+1s9+9rO1yl9ZWVlZWfnm8R5GXx3DGn11N0Qwa61WIMZhIOFmMZViZkCkpBIwM+9r3+HhYdU8IAGiGHIWprJza5XMc5KTcTwZh6wSZtT/G87EERZORCARZm6ozZqKKEtQwINAEQ5aHHe6Nf3i39mt5LtmaImOUkeEmbfirZA3Yc7CSViVmaInWwWgwsnFQRbW3Lh1834goofRiqgo20IgPCkzw5qVMltr3PuPw5nFw601dwe8Z/QOY95sNCU2s93ldLmv1g65WocSPgDu2pzeakAA0G/EX4sb6/TXy/3rS/tXVf6V7qW/wEEDc+PHK66233j3xjw3tr9yqoeFNw8fzPWN17ccc0gPnMIxB7aysrKysvKV855HXx0Dnz15mg8tql0DdPXetN9dXpxfXpxP+91Vn+RjHt81WFfjS5mnaT9N+1LmWOzs48joq8045KQ9nDUlTZpUZEmhIibqHaiyrGSH27JuHgRiAtyjtTCDNYYPKW3HcUhZALjDbcmHosV5kw5VOzGTSNfEdBE8L4ocuuoUXlb+EfBgB/ctS2psj481CheKrDwmHZNk5STU/1QmJWgPpRJOAuFgBncHT2ImvuqA7d44zby2VmotpbZWI5yZkuqQ0jiM4ziM4zAMeTMOJyebZx+cfOtbT7/77d/57re/9a3f/d1nT55uNoMqiBfHHloeQlxby6ff+uu1uK++x11L+9ffvVH1Xv/xvtev/ODx094585EH8EpeuaPXOoWVlZWVlZVHxTH13ma7vVrVfWz16huMX05coAJmBoOCKMiduvkJDOpQUOKlmlqjr+7mg2dPVdlam2ttzTyaWUQEM3tEM+stoiIS1pqFG8wxMk42m0Fkf3ER4d4qUwhjk9NmGJTY3dwsDjGxfbkcoCXaCpyHMeehJ165u8O9dwVE78btIwFe/Cd7bBRi8ck3dwsAkVTlRBiURFNKqtJN6ZsbuTugFEK9kSAQwQQVMBHkcNPiNZq5GwjEMMc0t1YtJR6GYbsZz05Ok0iZi0cbN4OyhEe4qfJ23Gw3G1EqtdZSc06bzWioU3W0nimwlPjRXzDxkjb2DuT4vaC/Ud/fWNHvXK18314I79y3ZH7nPLi19H5npX77rRscP/IBbq/Tv+4prKysrKysPE7W6KtjWKOv7mYcci05J61WS7FSa4Boqek7kCTE5Mu6PAxg8DjkJDLv99aaUFCEADlJfybg3rNwcbDJZGYBCXhR1idVZQnzMAdaBMIZ5ItJfV9sJwTcoxteBuDo3jbmZj1aVlRVREU0sSyr8j02i8gJwgiQElXqa+rERCJBtEhnwrxGEOEqlTYC1hyMlGjI+ezs7NmTp8J0eXFZ67wZNzml8CBEUhnzoKrNSi21taaaTk/EsWu+d1vurzlAtDT4EpOwiOg1U82juLOm79xZ01/nhhzlTnXKKyvjOz94teXht/qtxX2qmBsj7xxzH9fnfLNTWFlZWVlZebSs0VfHsEZf3c1+fznPk1mjCGGosnc5TICcmNjh5OagCIhAAbRuY+/MGIfcEFZnmCnRmNKYlLoZvUUz9wgQglhoqfCjm9o0D8GypB0MNybqWv04uOD3Fl8s2bbN3cPDHeFLwdzX+oVJmJhJsEh5jEAUTBChACUhCxpUq1kzb2aIcLdwRIuedItDfC8RhJAUKYkIh9k8TwQ0q+hWPwRREhZlQUR/arbbX9Zaxzxst2qO/VSb1AD6P4BLgle3KeIjEwtewTvvqX23q9pfyRr5ujC/srKy8pXz/e9/H8Ann3xy9foG973Vt6+svC5r9NXdPH/+fJ6n/vSHiEUE0dNm+5IzLU43HggkIVUKcyDcGjNttpvCuKwTPHLWk80w5tTm/bTbt1ZrKxZgZiUmSULcI2QR4R4Nrj1Iy5mYWYjID17xgV7a9xApmJuZGxzRVTY9cZeYmZmIDzm11Nfmu0UPQYAQUnCCZEc2Kc1Ks36fEAYzePTbBQiDmVR5SDJkzTmrSCv1RX1BhKSSU3L3WpswnNlgJdBa2e9207xzR045adqO25NtIy3NrLWGHrrlEQ5EBJn1luHXWcV/JW9Z8d9uQv3alcvfgFNYWVlZ+bpzZ02/8sas0VfHsEZf3c3F+YtSW2vOop87wByMX4hADGYOIMJVOItamuHBiMy8HbN4K4xRcLYZn51shyF99vLF85fnvX/VQayaQcGiREwqTIzuGclLdC0zhRLFskT/uYil/9VDcCFXUn4iUPfeZJHEwszMSxtvWBCFE3nX38tioi/NY3CpLtWalzBHOHo+FRGUoYKkmoe8HcdxHESFI6zaft4TYRxON5sNM3djodqah1HAloxbFxZmUtXT0xNnydM0z3MppbZmZrW1rs4Pd6fW73PeSYl/Q6XzNu7471DH8lVJYlYpzsrKyspXxcML89dX9+8csHKbNfrqGNboq7vZ7/fuASLwYjZpbl383i0emVmEI8IdB4cdQoQglGnIiipZhcZ0drI52WyUucxlt9t7wBzNQRKpYTZLuaSck/ZIXCEiv7LaCUZET9cK77V3t5Zc7CeZ+XM5PUsP2mVWFumlfb89CTjCKYIQFNGFN8wkARXKytk4C1UExSFbdhkDZUqJx5w2m3Gz2agq3AtPc50jnIhTyuM4qIibz9O0m3a1lFrm2oxZNpvt2dNnp2dP52ohl6wqh2MrgLk5RQTcwXBQ3/9bpdveZ43/9hy5/n2lsL+z1fWBRtgHJnnLQ3rj8SsrKysrb88nn3zywEL+VUF/Nebqxe1a/yc/+cn1H3/4wx/+5Cc/+eEPf3j17o3Xt8ffOcl9G69vv9ryGFijr17JGn11N/2bISJJhUXQvPvbRERf4l78cAJG3bYyBEQcyiQEQShhSGmj8uR0m4SjGQIsYm7NUQzefGrzZZk1y5CHYRg3m3Ez5D51LBaSS77V1X/6cn1w759lxtJLS73EZwIzsTALukQeiHD0/x6s7/s5EsAcKpRCBpOq0tSbwwIS8EU6BA8czjyYkZIykQh1q9CUckp5HDcpqdXWWkNQBLHoqJpzPj09ffbBh9uTs4vdfjfNUkREadERUU+66tb4FAc3zdekl/VX/bV3+mbiLUQ7x5fFV62xtz9y51v39fjeN8kbHNKbjV9ZWVlZeSc8LNF5pYDn+9///o0q/6ocv11wX9X0N966szS/vfHOme+7f3hUrNFXd8JXppudY6z4H/P4dxd9RcysKil9bjp5EIp7hEUvegFmJkS4IZwJQv0BUiX3UeXJyfZkHKyWeT+llE7Ong6bUxlGJG7AvuDlJT59ab95MX328vLF+cXFbr+by1Rqqa02a+bmYRHeVf9XR9c9cJiEWHgx0mdm5sVOvxvtB8HhHtY98wMOcuBQ8YczQogSc1YZUhqTDomGhKQQAgLWMJfY79tut9/v9tM0NWsgSilvNpvT09PTs9NhGM38xYuXv/zVr3/5q1+fX1wG8dnTZx999J1vffSds6dPQbzf7/fTvtZaaillrqXUWpfssINpz3Kbwqx8rObsvqr9xvZ+A3DknNc5xnXn+I8cP9vxn3rlIb3BKaysrKysvBPuFOG8kk8OHDn+9lI9vphy/FHV969b7z22evV1x78B9O3vfHynBgjAtN/dbgvYbDaPcPwf//Ef47c1WABKWaxSr7fhttb+6//qv3zldfk3/14iopTzsNmI5GptnutcazNrZqVWixDiJCIEjoC7FR+YvvXhk995errNCa1R2Nlmsx3HeZ7nUoO1OV9O82WZ9vM0Tft59qlF82BCTtiMut2M283mZByHPjNBwUwuXUKDAPxwm+GgoGAm7tUxqBvoMBGD2AEP97Bww9LW6gF3D3P0ej9A1bm6l2a7uU1TvSx1b203++xojtYWbVBxww1TAAAgAElEQVTOON0OZ2fb07Oz7bBREQ9j5jFnYZ3m6eXLl+fn5/M855yfPX32Ox9+eHZ6QszNqpuZ+W6aLy53Ly8vdrv9NM2ttYgwczOgK4JURKS7if76s+nIb/DtfKu3GbaysrKysvKueMA552rAA6X8A3cId6613/4Tr6nJuT0zHqVQ5z/9z/7zDz/88OF6L+fcNfo//elPH0+9+sbj/9+/+T8/+PC7f/XJ/oOzTCCHuzEAczgcwGzdtyTI5z/+/smf/+XP1+ire3H31kxrQ1DAiUNEeonNzIdMKFIRcutXOgmyklLALTGGnE83WYl2pZS5pK3qMGSSUJU8pGGTapG5TqVYqw2YSjPbtdLC3IYhEYTDRYUYDI4AOS1Km971S8BB7ULUX4J70c+EAIiCnASM7tNJQdyfRSwJuSQECBMzegKVMlW1KNFs0SUtZqCope73ExFbbVmTMHv4y+cvrJm5lVJKKWYmIvM0PX/+fLe7dI9A5JxE0zyX/dRvbKZSqvtBL9R7l7tDEUCB1wrAuqHPubOCX+v7lZWVlZXHxu0bgDdb9X8lRwp1XvnxxyPUWaOvjmGNvrobZu7ejmUqksI5AsTMShSAuUfEoibnriMPJiiTctfPRBIZc1bhqC2sudlcjWAGkGgW4ZzVWypznud5nmqpbj5Xd5tYKMIHJhUi7W5JDDihe8jHUuhHV+oHocvsmYIQEYyu1ReiiO52AzKYB5xAIA7yIAAIAoSYQKEAOEicrDiMa1gDwBQAWAiE1tp+v6+lKAuLmFmZ9s2s32R4BBN5eCm1tfMIb60xy+npyebkpNZaa7XarDVf+hkAoDtBdSsdRHfJf72v8vWUqwc6a9f6fmVlZWXly+SVzjl3cr30/8qtdR5PWX+dNfrqGNboq7t59uzZfpqmaTI3qxEMEu3GOaowM0QwkzDDHOHCHAxmFuaeOZWzjjkxMNXSa9ZSamtUAx4OgjOBWDTnIAd5sMdszcJwuZ/CrYkOmmTgXt0T+dKYevDNBEIIcHIgCBRBixuOuUZfHw8QMQgcCApyoqAIQnegX54GMDMolIg8KIKlElyFamUy44a+wk8UEaWUOaLX9AiEO7q63yPCiSgAFUvMEeQBb7af5iB2dzfrPQUEgCHd6zPgHsvRLN/s13bUuTPg9sa7KysrKysrj5kbxjuvK8fvtfjtjtvrspzbPjl4cEX/utD/Edb6Kw9AT599eKcVf6vlhhV/Shn3W/d/teN/8IMf4Lc1WNbajSgEFQWw21/+N3/xF6+8Lv/+H/7exeXl+cW5O4gFQpKyamZJ5rbf72utBLh52xc3kMMNJ4rvfXTy9z48Pc35ycnJk80w73bnL160ZhV6XrGrsattrs0cwSRJWJkIHtFqtVbCLNzRTIFN1u2QT8ZhO+QhqUjX6kS4E9w9QBBihgTIibqxfgiTECmDenUfRAGEu3lrHu7e//BmHsFOwpKIxAzNfGo+OS7cL2vbTfM8Ta3WCHT/zYiu7wd3hRJxmFMEMbVmtYY7csbpyel2u1EVcw8PFUlpuW6Xu91+nptDGKpCxBEw8wgPHFbyAxf7d5Z+tbKysrKysvJN4k//9M+ePH3aX99X711FX/30pz99PPXqG4//13/71x98+N1/8j/vPjjN3TndwQAsEB4AJkezQEB8+o+/f/rnf/lzvm3F34XdZ0+eXjXz9raA/voxj+8arO4sudlur5qpextuf31k9NXvffzxtz/66OmTJ0NORItzZO9YBdDjpJgIgdbQDD3sFoSuoQGRiBBTs1rK7OGqrAx4q9P+8vzyxacvP/31y09//dnzT5+fn1/M+9nMAVFNKuJG84xSW3Mzd1uscD5X4pvDIppH8ZgsZotiMZtNre2rTTXmEnONuXlpUZoX8+bw4IglVytAAb4m8YFwz/OCKg1Zh6TKyxK7WZi5NffmZggHk6Q0pJQjYGYRxCzd/rI1tNYCIUnG7bA5GdOYSMjcamvVzAzuiCCAuTcScG8soL6Y/+7CbVdWVlZWVla+aRxX792Mvno89eobjH+Dq7RGX93ND/7kj3/xy1/+7//HP/vn//xf/OJXv9pPDp6DiYTdMVdDYBxUWE7ONuMwnm3HgTULnp2mbeZEqK1d7qtF5HF0dydk5ZMhm7Ww4MBUzSpqa600YibunjigiGhgAKDeFesB86CeX9td6i08wiOC4vqdB4jBwQKR6I0CvSu3T98jvMwCBgRI0N9GwN3CnCOUKYiLoxuAMh9aXwNwgFgAEDEEziBEsEOUNalo6qG7Lkl6zhYrI8Ld51p38zTNxTxIWAPE7P2gKBgIIjfE5xaaKysrKysrKyt3s0ZfvZI1+upu/qP/8D/4xS9+cXZ6Wucyz7PZi54JlTUN40ZzHobhydnZ6cnJ07PTp0/OPnjy5HQzstl0/vzlp7++fP68zrtWqwKaR2s1LLIwD8y0HVKe5rqb56nWUtwianNzd0cECEiMMQPgCIrgxSPTA8IBNydzcqcWUb3V8NZt84MJHIu5vDAzC6uICKfEzCC4u7k7hwuzKosIAWZu1dwaAGUNBjcnN4IzhTDBu2RfQIJAgMKohQFwpyANCEvOAxN1C3/zcHNTcMCbtbmU/TyXZg5WZUT0hwketIRgRdBBkP8GWvyVlZWVlZWV95M1+upONOd8QwP08Ace+fh3FX11dnLCH330D//tf+vy4jIPw9/96lfTXCWN3/r2R9/9+OPf/dZHT54+efrkyel2+8GzZyebYTsOw+lJu9z99f/2v/yzf/pP/2a/j1ZIyOa5TJMyq0hUZ/csRFmVKKlszOfi1X1uVlurpbXWe2lhBvfeoeoRABFJX4cn9MV4oEbsSt2VUiM8yAxwjugFOYg5iQxDHjfjOCjCWisRjTlykiElIQULIgIOeIQRCGEIJu7huoFweFBcxc6GOwV6Z2xvmw0mIZCb1zCERQQJuk7poL2J6C2+LNwNfbBYYwa6ZAhAEAc5d5+fY35HKysrKysrK+8nx9R71zX6j61efd3xb4CePXn6Wlb8j3P8cjJHRF+NB5HWw3z6m09TTr/3ve+RyHc+/t5nL1/s55KHk+98/PHv/f7vf+ujb29PTzdDTiJDGuFVmejJE1y8fPmLf/0vRGqpBNoMw8V+P+12J9ttykOrs7t19UxSAYuCNUVzT62WUgvX2mpX37vDWjRrzcwjiIlVmBlu7tTt+ZtHNS/NqsMCrSLMPODeHTWhjDzN+6nkrBHNWyHyNMhmTCASExbh6I0FTCIEAEyEoPAwM7O2PFtgBqg3JNDSGguAmIiUKHGv8pu1CkRiTSLKQkBYtGpuxswpkRkcBARRIIi65ejyN8DMQbFKdVZWVlZWVlbu4Zh6b7Pd9ugrPKZ69Y3Hv8lVeuRW/19V9FWpbXt6+q1vf/jRdz7+h/9OsYjqDtLt6dnJ2amkAYBbK/vp+fPP9pcXSvHhNNXLi89+85tPP/3s/OV5FpykDQcoQggqpMotgiBBAMMd4SRK4dDgSEKAKJm1WptbL3MjKCAkKqqJCCAPDo+otVVrDrAmWERr/WxJSJUJ7OHhNtW2m1qAWDBoqKC5w50JfZ09iTIJCRBEBJA2wGttrdVaSnPvPdsAwq/raAJEAREZWE6GQbNatFJmD0s5jXkQsDer8zzvd6U0BwsngMg9EF3vs+R3IQgICmICvskl/o9+9CMAP/7xj7+4+b+4yb8qvtqT+qJ/ZV/+jr586Cc/ARCr3d7Kyso7Yo2+OoY1+upuTp48HU5Oh+3JqOlUFMMAFljAwt3mUszMaj0/v/jNL395/vwzhj//5S/r/vLXv/xVLbMIMyLMhCgJW62tFCbKqsW6N6Rb8+bRHC3QHeVFRZTMiBCNmjKYWZVVWZNqUkR4tIgws9JqseYAER9Sp4KVNA85ZdVMhGatzfO0L6UaUbAQKFqNKRoQER7mm3FMogRmji76N8AizKxZDwAAMYIAhzuuGgZAATgFZeHT7bg52Xj4XKbSCjEl4XBvtZRpqtPczEkzEehg4hlX6bYAeq4tDpqd1xHq9MLoBl9onfQ2e/zxj398++Nf/il8yXwtTvC+g7zzV3b8bFeneWPLjTnfeEdfPm9wKxI//CFdc+B+DHwjb4ZXVt4f1uirY1ijr+7mu3//32AViMANZigNAliU2motrRlzj5KF1WalViu/urycdhet1qdPnpQPns27y9oqBYaUrbU6Fc3DoAmwcHOAERROERyLF87S08rCIcaelccxbce8HfOQU0ps5lHDunDfWrVWA9WptCg1AJAIs6rmcRhFhRBxYrXMtVUiI4S10moJRynGXJhZVIhYmbr1TfFWQUugVSwZtESgvnzvCAcByos0XxFZabvJZyfbiNgJ7SY0b15rMyvzVKbZmoOIInp27VLPHx4HBJjIu9XocuPxOqv4vTC6/m/rd1gn3VkHvPM9vsMJv/Kq5b7K6aquvbPAfZgbV+aBH9+StznI21PdOLbrW764b+wXzTemMr79C1pZWVn5hqH3WfHf1xbwOMdP0x6/rcG60WZx1ZYRx60Q68kpAAsPR5jDGwmC2EFEygx3L9N8cX7+8uXL3eVltDLvLqbLi1bKdhhPNpt6ebHfTxp+Mm5abQF0C0thSspgBrGYi0dzWHe6CfcIELIwsaYs42YYx2EYcs7KzO7mbubNrLqbe9SGYlENthTPTlTD4eZ5SDmnIefTk01PgTCrZdrP02UtNcJFeqzt4o7Z7TkjEIiDzyaYQYAwmGAGOCggDBX0xlilUCYVUoZ5kLuVUmpxb61ZK9WsMZFqCiI3v7r6TAAdem4XM3xe7iHeTqjz5f9r+/g9HllVfMMqjztvk76SI3mA+w7yXRWCr5zn8Vecb3yE9JOfPEKVzlrlr6x8fSmlXLVWPlDvdWv8y4vzx1OvvvH4N7hKetuKv2uA7msLeMzjr2uwrrdZXG/LODL6Cs0hIprBGeaICGaIJmK411r3lxeXu8sXn3328sWL+fISVsvlZdntrNRoHs1bqW0uSWWzGWkYm3uNsIikLCoZPDjMoxiq+dxaba1ZaxYewcrKkkfdbMbNOAxDVpXoXjvdEB9+pYgPBwgsiH6rME1TTDtmTbrZDE9OT1VONmnUJAhrQyqj1DK7myrnnIecU0rM7OQAKbF6MBkAoqW4VyECqAUxWJCUhszC3OX0SQC3VkutddpdTrvLUqsfAEhVNaXm4c16WU8AMQF9cf9wJm9kpHPnv6SvtAQ3RAX3ySceGHl7/tfa443Z3v4Ubk94fcn5xuuHP3vnQvIxMzxwAPedzu3tty/4Aydye/47d3fMWTysM3ng4G9/6s4ref2y3Ldsf3vkfXvEXd/VG4f6wBk9/D15YJJX1r435PXXi/grTc59Zf3tAffN9rCI/4F5bk949alHeLOxsrLyuhxX792Mvno89eobjH+Dq7RGX90HAwySnhIcbmGOcIe5WS11f7l7+fzF+YuX8zSVeUYr0YwD3lrZT9Plvs6FPGjpSSUQhwdFgDmIg8UC5qEtijkzhKKQM9hBBFKVTc6bPIw5JxEh1GWp37EsfxNziHAiZqJupGNmVt0Mrfo0lzJXK7VMu2k3npxsNpvMRCmlpMQEUVERFWYSEBODFGBu1WKuVs0bKCAEZSIECwTIicect2MWUXe3WpMgrNYZ8zxP+12dZ3MDlrV4BlHP8EIsnRC0FPeHl9ETvo5+xHKT23VMr64ergVvj7y9/YFC8IE93revGx98txNeP9PjP3vfgDsv4PWjve8Ajl8TvU96fvtE7pz/TnXTa53F8Rx/JR/++I1zPPIjN76Ttwfft/2V35NjJrnvLO6T19+o9W/X03cOuG+2B0T8D8zTf7z64J23HysrXw6/+MUvvupD+Prx0UcfHTNsjb56JWv01d2Ewa2ilDB392oGUIDmWuZ5ttp2F5fnL19O0+TNrFSvJROL6uQxT1OZZgpshiGLuDuqBZOyKLETO3GACEGEEATgPWMKbhxuCLiyjEk3OY2qSRgR5B7u1KOtRMRDyJQYIQzqObeexJOFudewhgif9lPZT+cvXjw5HZ89O82DMkfOmrOKivQF9Yhwi+gPg1iah5kV8wZyMEGJhCiSUcI45rPNyXazEZbaWp0mgMitFatlNqtEUGYS9iCLcDePCHOnYKbAIu3v6/ddqMNMEQwgGD3q67V+WfeVSleFEd5oGfWN93idI6vedz7h8Z99YMLrF/ANDuDL5PizeIODf5tf630jH3jrnVzhx/Breri+fxsenueq3H+He1xZeTOOrFZX3pL3J/rKnCxIvK+bBgAGjD9/l8Pb4dZmjb66m2m320/7XX/0EzAiEXH3i91ud7kLd2/t8uKiltJKLfMcZdYkEli0+4ghpU2SrmHx1oghmYnFAFrSartDDZGFuhMgzMHqwghX5pMhbYeUs7KwuVEEuQuQWHJKQRRNovlVLCwzmJVlVBKyMLNaS6tznd0m7DAJ13FMQ06JNlAiX3Kp3N0D7kboHcYOa+SmDg8okIlUCEzKcrLZPj073W42iJjnuSCaRYS1Zq1VwFkACAkDHBHe4O5hRsIsjMPqPhFAiz8m0WH5ngigt9TiP1reedX1BhPeflxw38Yv6ADu/OzxK+IPT3j1+kuobt9+d8crea72+GZX7JgPvu6v4L7V+jtFMq8ssu+b7d0W6Gu5v7LyTWKNvnola/TV3Vycn7948fLT55+WWpmFRVMeAv7y/OLy/JIJIlzmubXWxTPh7t69JYMIDHh4OJGIEPeGWhITot5NumTYeiCII7jfih2E6SySVbOmrJJFDuqWYIIQqbCqmIcyTMidALgHg5Q5qWbNiRnh1oZWcy211QZyQZA5uYc1q+AIZibq5vtB0UtuB/qNBCWCExJBiRQAOHPa5GGTcxIu8xytJVUR7Oep1rnW5u4R4fCwCAaISIWdez5vf/Z06CI4/Nmr/P4nM7DId47h7ddBX7fKuU8c8sZF6rua8MgTuW9F+eGjeoMTefsJ8eCJ3Kl+ecud3h7/ulfytSb8pvIVLp+vRfzKynvCGn111FV65Fb/X1X01fMXL5+/eP6b33xWWlMRUR3GkVj2l7v9bifCIjzv93Wa3I2IiBHuFgYEE8JtnqZGOB2GQZWZzMKauXsEd3NMCkhQdH0MwSk8ws0AJJVxSJuUB9VE7OQRIQEhsJCGZHNjV3awJtIWbhbwoCDxYDMmMFHOSQYhIOBwA0yUclZNLEoqxEygpboOB4g8yJU2KW9Tca1uSEyZenMsklASEgaFtzq3WlIehclaK/M811otmkcLOIFVJWVRZeLA8tTiSoSzePdExGKzv2y9difwRfGVlFlvowX/IiZ8XdHOOz+AO+f5ojUqP/oC4qW+0K/Tfb+m4/d+TPvHMdvv47q6/bUq7PuU+vcNuK/19sid3lbhvw+3Wysr31TW6KtjWKOv7ubicrffz6XUudYqrK15BJHUuiRPWat1nlutCBdhCo3WvDaKUGZm6vrzMs9kxkxE1GoDwKIk0q1x3MOaW7iZeXhfTRfmzDyqbJIOokRUarMye23kSCysCPfWzIhFlDRVazWs2+srg8nJ0UtnEuQkKSsHR4gI5UHzmFTYw83M3CJ6ai4IJJICtElpTgnZrJmIZO3nBACtTFbzoJpUKpNZ9QizZuEGN+9PJgDhYAqCE6Fb78TSY9sL+Fjq+8VKp3/RmQk4tsTvtchrqaKvXj8w543WxhsrxziuBrpznqvWz3c44Z1jXvlZ/LY2/Zgrc8V9Z3TnFbtxmjdWwa+Pf+Czd85/349HnsVtjvk6PXwlj5zwPoXPKyc/8ordHnxjj6/89R3zhbwuyLnubHOnnc6dbbXXB9yQ97wyDfe+eY48zpWVla87a/TVMdCzD37nzjcuL85vbDk5PXtgoq92/A/+5E9uvNud8q8zjhsA+/3uL/7iHz+wo87/+N//d7vd7uXLl1OdA8RE/UbKPdzNrXmrrcxhhjByo1qiFJ+murt4/ukvf/mv/tX+4iXcUCu5j0NmplJbgDQnIvZAqVaateZm5u5AsHBOklMakmw2w8npNufc3Pf7/W7az9Wc2UGOKLVNc51qgyZKUlsrpYZBmJWZiMLCag03YaQs4yAqpIKUZLvdnDw5SSnN03x5ebErc7MgYrcQkTxsLfjl+f7Fi91+N7VmLKwqSSWpllZb2NMnTz744INm9vLi/GK3m0qdayvNplarhRFBhFSDBURObO6I4ICAu5DpSm7v/ltBV0QMgIj+5v+7eOXvaGVdhnwD3sOL9vaCpYe3f13kMdeP8z38GqysfJP4R//ov9hslhL/vnrvin/yV391/cevV317xf/91//rBx9+96f/0/6DsywUAKyvWQf6PcHkmBvYHW3+03/39M//8uccEdN+d3lxfnlxPu13cSAfxEyd61b8j3D8NO2naV/KfEhRihttta8bfdVqM7OIgIU3q7VN07yfpjLPtgTLWvd9j941C0S4WbPWwoNZVFVEQBSICGeWnIdhGFUSEblZrbXWYq3F0mtLWXnMeTMMQ8qZVZm6YWVOOuY8pJSIObrLDQ15ON2enG03J0M+24xPTrZPttuTIQ/KmTEwNllOxnS6GU5z2ibdZD3ZDE9Ptx88Of2dp08+fHJ6djKOOXWdfWIakg55UJHEPKS0SSkxK0BmXmuYK/M4pEEV4bWUiADz3MrltJ9aqeEGOCGYYmlKgPUs31iCvQ52/tGF+czEBw76nMOq/spdvHNNy/vGe3LRXvd7cuT4qwX+NxbnfMnceZy3H6atrKx87SilHFPvlTJP0/5R1atvPP4NrhKN4+b6MwIR6RqgcRzvbAu46gl4VOP/7M/+rI9n5q7BSjndGYXw4sXzv/zLn77yuvwP/+0/nqbpcrcrpZhb68V8OIUzLQlUbi2ssTUOI29e5nJxMZ2/uHj+/Pyz35T9pdditVJYYk4pkyQQW7Pa6lzKfi6tGbMyswipcFIZcs4pqXBWGUZNSSFi7rW2/Vz2pexLq80MIE2kSkyOACHAYeGtWathxiDmPidzOHGo0vZk3G7H09OTk9MTZpzvLn79m8+evzgvpWlKmgbVsXm06vt9O39x8eLleWtGDPPQlE5Ot8NmoB6IS1Tdz/fTb158utvPDQhQAxxkTEEUILAEUSzWOaAwDsjSdtu1TP07vPyFw/M1Ivp//u6tHk59g3lLOcr7zHtV2L3u9+R1xx+pk/nK+boc58rKymvxgx/8JycnJw/Xe1c9uD/96U/xaOrVNx7/i7/7l6+7ir9GX92NtxphxBAmBDmFh7m1cBdm6or+6B6ZTgQmDpBHzLWYmyaFD9WdIiiYiZzgZg6z6rW2aW61OQWYecg5qaiwCGXVxKxMQsQgJmZiVREiDzT30tzIAWIiYiKiIGJhEWEQIveuVg5wd+DhsNYCthnT0yen2+24GcdxGEjg3i6GLEwUwURDzpoz5taKwZ08lHk8ycM4ttYsIue83Z4Om9EiLruM6eL8clerIQQQJhAxL1b7fUUfsaR0EYVZuAcxEy8NEYTDhbzyzPytH1du8/4Uqe+c9+rSve7Jvu74r0vF/HU5zpWVlddljb56JWv01d20WsNdmTmpCVMDIsKWWyUC0Ltl3SO8y02cyMNrqy1MkoQnKzOciYhAHpjmUt3dojWbq7l79+pJKeWUlIkZTL00J7mq8oFlR+4ACXNS7eFU7o1ZRKX7aQ45p5RUmEGw8FrcKsIaiCBn2/GD05M8ZGbicAKpSBYRIkQgwCwiyuzevM7FWxtUt6enm+22lDKVwqKqSfMQ1orZ+W734mI3F4cAxMzSlTcB8sUEc4m05cWPhyKWJlsKBPrDAAaWbNuVlZWVlZVvGN///vev//jJJ5+82faVB3h/oq9eC75PA3Qfj3z8u4q+mqep1UqBJDpoyikv6+zMvQoHAvCA9xynrrl3b7XV5gZmEjLAKJzICNV9rm2a2762fbNiXiOMCMwQZdVl7kPyq/SSGQDcejdArXAXkZSSiNTWdpe7adr33oBWa7hl4ZMhP9lsTsdhTJqVcpLTzfjhk7PfffbswydnJ8MgBGu1luKtMZEyi/a9CcDhKKXM0x7wzWbcjhsVRffWBGprF5e733z2/Feffvrpy4vd7NbNc1SCBSzEwsxgBoMOlXuv63G1SI8rBdpiqtOfilyV+f1efGVlZWVl5WvNjXr9asvrbl+5zevWe4+tXn3d8W/AGn11N/v9jllSSpyUmSVYmJk5wgnRLWEiutOlR1AQPKyZtdaauTAsvHpzb0IcHmZw4mAyd4MbITyaR3VP7uZB0gUtzEKsQiJd9OLh7taaWTMEhIWZW4SZzfOMcGT1MG+tMjfVEAmhMIMbI1JK/z977/JsyXWd+a3X3pl5zrmPegAFgAAIEhQfepEiIUqtZrQjOtqhlnoihcMRHjocYY78B/gP8MBzhz2gJ5545EFr1NGyTdsd/WC3DYXUYlMtUhAfIgDiWVX33nNOZu6911oe7HMvrqpuVV0UC0KBtX+suMybZ+c5WXkKEStXfuv7lothf7U8OFj1fUwlFS0pp+KacjFVRBaJIpFY3CGXklLKJfex39/flxjnkg2gG4bY98506/jkrXdvvnv7aMpKgsg1z5asFuq7iVp335Xz9fGHA6DvDHMMgBwcathWvd7otc8Pu/9rNBqNRuMXg4fu3Lf6/l606KtLXaXH3Or/44q+2q7XJBy7rtNIwubmWsAKmAKC7xTk5q7m7o7mlnOaUppLMdMCkIumki1nRlJ1NVAkZVZARVNQMzA1KoVyIUQAIWIUEWEmN3AFZwQiCiG6kwJltQJoiFhqKK27u5tVKxrLKY04qidmciPXPoS91d7Vq4dXrx4OQ+dg4zwW06Sqc56mNKcCRP2wCHFgCfNctuM8pUREw3IY9hZqrpokhH65isNiPW+Pt5t3bp3cOlGJsBjECYshOFXpPaDrrnWP1b5oF+eLtReImmEAACAASURBVE1PAODgBuAGUJOAic588ZsWv9FoNBq/MHwUMptvnbOK+ubptMm9dn7zb4+j3L3nwmPPL7t7+2zPvZadvefdn/WoeGKjr4RBGBDIwFARANRqcxVAUQwITsNKW/TVvRjHkZlN1aNyEAevDvZmulOQoxMROAEooJtaKmUuSU3BXetwrqmbGUDRktUzsIOogwIUJEd396yWNLMiMrIjECKhgnsuAC7CfYyx68yhm/N2nLcpz1oAq/qdzK2UEpmYCN1LytusBBiFFl0Y+uHw4OD61atXrh0y0zSP5lbUUtHtNE1zmubkgF3f98NSHU/W03qznXPuY5QYitmUUypZQmeIx9vtzaNbt45Pkqr0QSI6kyEYIAC5A7gbOkBV3dSQK0N38LMePXrV7QC4OYAj4q6u3/XvP1wX/8JcoUcyVXnJCKSHOLdH7utyHy+Ux9xD5l75pm1EstFo/IJx1o+vRf+rr776yiuvnG/S33//Hdy/cL+wjr8X9z/2jpr+gYffsfNDncmHokVfXYYmer4YMyulpDnN85ymOaedgX1tQCM6IbKwSBAWJFK3OaWUZnMHQgPX0xrWwIvbWNLxdnu03WzneVbLDgVREc0hmyXTpKXUEVqzXEpK8zzPpRQRWS6XB4eHB4cHw2rJMTiAuiMRs5jZPM+qysxCDOYl5TzPriYSFovF3mq5WAwxhFpIC8vQ9UPfM3PKJefCxP0wxH5wx3Gcx2l2xNh1Cn60Pl5vN44oXZxKfv2tn/3wJz+9ebQOvVy5vuqWfXFU2KVcOZIjnfpjAjlUi0xGEqSd6gh3zXzwc+b3f6tnf1r3X5o7LL0fwXd/CX6euvmR1/f//SkXht3+nV2TRqPRaNyLV199tRbrnwjtTS3r79h5yXr9/LKProvfuAwt+upimOrjD8055ZKKZvMCu2TW0zoVnWiXeptL2o7bcZzUzBGLafEq6QE1L0WneT7ebG9vNsfTuM15VsvuxT2ZzUXnnOeUppTGOY1zmlKa0jzO4ziNKaVSipqZu5rmklPORdUdAKmUMk9TznlXKPuuekZE5hpjxaXouB232029GUAAJkYkM3dHkRhjTyRz0nHK5hi7vlv0CnqyOZlzil23WC0N/Z2b773xzrweIQz96mAvdF1WMCCkgMRIjMgITI67+v70D3nt3p9Ji6pC/4PB27OK383c/ZLGpg/kvz3l/J67t+vG+ZVnex74Pncfe8Yd5fVZQ/2OnXd/7v237/gLnr9heFQFfbUSx29968xT/Pz2+T13RAud/bzkIXe/evdp3LF94adceBof6oMe+Cb3ecNGo9G4F3e05M/vh9O6/3zpf6/9d/Ctb33r7hL8Y+HCm4HKt075KD63RV9dBpmn8UIN0L3GAh7n9ec1WOfHLM6PZZwNZ9yfIFKqw7ybgQkyIjqCe/WiBwOvqbRA4Go5p+04jtNEpoxczIrVLj6YW84lpVLUMoKZKSiBgjkjFLNo6sagTICBsxAKITKp6TiNt45oztlZtlM63m4305wVipk5mLmqmWvF2MCBqhsPMxG5e0p5s9nO8wRkAAjoWqd7iavKP3YLkX4uevPW7fdv3Xb3EDtDHNOULV85OHjxMy89+/wLN09Ojud5Pf1wM6VxTr4Zi7rEro4Fk7u7I9SQAMDd4w4AO02r3UUJnNb0UC00dzlYNbtrF4N1tuBynElf7mhany9/H6hXOV9/n3XEz++5z/tcuPIyfKgzvCSP6hHBmVqm1rVn23ds3Gv7Pht3bF/4cZc/t0uexn2Ovcyb3H0FGo1G4/K88sorj1aU/1h1x+9V5Z9pdT6KD71cvZfOOoaPW736EOsf4iq16KuLIRaCXNeiIxIRITiYqbu5g7mZKhKiu5mmOW232+127BiFUIsWNTV3h2I65ZTUWIRC58RmpjlrLmAehYqwB3YLzDSoOIF00Z3n7WY9zetxMnw/FV1vxikX4NAvVhRjcchq6ijI5pCLESo5CAIjA4CZ5jxvxzGXLIIiRCGY21xyATRk5BgI++Uq9MP6aP3+7aObt24dXrka+yG7JYPFweGLn3v563//d770la8Vh09//os3/p9/9Sff/d5PXn/9aDsdXLl2eO1aymWaRnBHojpO6ztVPripu6E7gQETEDnRqRQfAfws+qri57jMd/QIuU9l/MCi+REKb+6+XXlo7f7ZUfd5hz/5kz/52te+duHh5wvZu4vae5W5l195L/yb33xglX/2npc/jYdYc/8r0Gg0GpehauvhLi1+5V6inU+EmOde3Gse95HToq8eSIu+upjY95QJSwYEYiYkwprXBLtOsxUrSkyAblrmeZ7GMc1T6DsHUHU3ACItOmdNxQyAmCkEYHZwEMqIJSXNZcoFC6JZIDpBM9esHSKMU5rGcU4plTynMs7qCN2w8KCRPTsYEEkkdDWc5gyOXQjVYt/cp3nEEyuaQwgSpOtC6DpnSuZJdUpmEokEQ5cdDeng2lXu+ytXn1quFsnK08zPfuq5L37pS7/2la+98IUvQT8cXLtx7dkXPvWZf/evvvPvvv9Xr03T5HSScyHCIIEIVfW0Z+/VPoeA0A3qHVHt0dNuDvfMQgcB/ayBD6dd/8eJh1a/PLBM/0iF8g9883vV95fhIVQrH4XQpYlnGo3GY85ZlQ/n6vvzO8+/dK/99+eOPvrdzjbn99+x517Hnq/U7z9xe+EJfNSOOnfQoq8uRGKM9elA5TJW/I/z+kcVfdUvljkFmGeDgkgICI7uVgXl6I7mYIqEhK45z9vtvNnkNFsM7qDmACzSzVOe5qwOSJLBsWQhjDHGvoeh5O04bzYlmatbKdM8juPmPYe+D0E4F80lF9ViZkbOzCFa6GfDktQdgISJwC2VrFqIuR/6MHSCqFbW0zymsZu3MQYJXYgxDn23WjrJyVRO5uKh59hBHCDEKzdWn/rc5xarFUuXcwama9ef+sxnPnvj2WeWy30oDkmvf+rF/+SZF3/l177y67/xyv/+f377X/+b77zx5ptZ7crVw6HrCGC0sdRxZAIhIkJGQrdcctICDoTuSEhAu+FbcCA3h2qTv7s9eLwq/DvkNI/2zR+53c35s/3oTvsOQcslj3rkvfCHO41Go9H4O+bCMv1etfsDa/oL6+ZL7rz8sXfsv3D7Xgvu856PkMvUe1W9U3nc6tUPu/4haNFXF4PEUONa3U/F4rvRDgIEdEKgqic301JKyaVkK6XK4neRrcBmWNTNq5cM5FKymhXjRVyEsNzf077TlNwU3YuWzTblBN2c+kEcyc0NsADVwV6UoEBJncEQEIGJGV3NzNycEAidyNFVS8kJwYuXbFHMqGQuuQek2G/mPDt0q73QLfrV3sHhlaeffea5Tz2/3N/LWac5dYvF/t7h/uHhYlgCsZqVVFCoX+w//9nPrfYP9w+vXrv61L/9f//ta3/9wzSlo3EOIgCGCMQkTIToVswMwRwdCYWYRZwAAIno1FnHDc7k93j688PV+B+FE+XdPFyhfMlzu1BX88Bj71hwr6mAj+76PLCw/ruxxXy4RwpNftNoNBqfUFr01aWu0mNu9f9xRV+lUrKqmqMj8Af7caciB0IUIgQvOeeSzcwBzH2e5yDiDoBYzNTdHczdiSKJZdtup8knSxL391Z7+/3eCs1ymudpHMdpnjMEF2EJEZjcsdRbCFVVRUvCLuIigQAR0MyDADIjMhAV91SyoWPtjQOoWTZ1UwC3ySZH6tSIuOsWe/vSDcuDwxdefvkLX/zi/uGhquZSHCj2gxlup5QzLFd7slgg+LSZxvXbFHm1t//3f+cbL7740pd+5Ze//e1v/9mf/fs33nxD5ykGYSFEYBEm0OJTSiXNgBBikBiI2eB8NQ+ws8KvFxVPr/Ej4Pzo7fnG9uUr9fOjtx/22Ic+wweez8/5Jo+EM8X8vaTz5xfcsQfuIdm/+30eqMt/4GmccVbQf9gTazQajcZjyBMbffWhwMMr1y58YbM+uWPPcrV3nzf6eNf/49/93TtenaY7w7D6fgCAcdz+0R/90/t8UOV//Z/+h9qaR3BhYsE6bOtWyM3d3dVyMtd52h4fH7/z1ltv/PSnx7dvMdHechmYkWie55Oj4+Pjo5QyhxC6fkp6dLQpCfaWcO1w/9qVK8thAPOcpmkaS949ATBwZAAWQMpF55LmnFM2cyIi5oAk1eynD9T3ITAFpmXkPkoXJTAIGJgBODJxEIkRiA3IKWDXx2HRLZbLg0NnWR5c+fXf+OpXX3kF+246Oko5p7moA3FgDghMxDJ0HIM75ZSK22q5jItDAHv7rbf+w3f//b/5zr/+F//iX/7kxz+atps5TYSwWi5Wy4EQTo6Pj26vmWG1v2AWdVd3M6sTuaeZtgBw9oykZgb7m29PD/yOnjQe8xyrRqPRaDT+bviDP/jDYdhFX92r3jvjn//xH5//9ZNV357xw9f+/MrV5/741fHKXkRAAzMlAFADAwOAWVEVCBxt/k9fWf4v/+y7lxKmP4GYmdUS+YxdYCs5OAIgkBF50VK0lGLmhOgA8zxHEVkuhdnd1bTKaCJSFwIjlzjOamJgWdM4CSABuFkg6RadCAP6lKaUixMDkSMa1mrYFKiaUqqZlqyazdBAhy4gSjHICqiASCxISO4OSDWNComJuAAiYez7EPtcdJpm6oaiCoiOpA5F/fhkfXKy2T84vPHMswC0WW+meez39vauXOuWy3GzzikzbVDCjWeevfbUtRc+/cK160/92Z/+6Rs//Zs333j91q2b4zgh4N5q0ff9JmwIkVnMPOeip8Y54A6IzHw+6MrMaon/MX71jUaj0Wg0Gp90xN3PrDfPa4DuNRbweK6v93DnNVh3jFl82OgrqJocRKJdLuv5l/z0ZQdUczUHRBJGpDnnmNJiuUREd7Cq4EFg4k5iZMjdBGlEgzzNs0jHFPu+63okQkBDVysGHREXB0MXJODIMXYGjqwA6l6SFqJSsJR5nCdiCIELGBmQoTg4kFO9E0FHBCIgRhYE4BCG5YKkP96Om3HqVjnlPM+pCx0hI7I5FLWUSylFJCCRZtWi9UahjsWaullmdwndyy9/YbFY/tbXv/7TH//ke3/x3e985zuvvvrqmz+7de3afLi3XK1W1S7H1OqlP71lAsAqyv8AIqp+RZf8jp4oWgu/0Wg0Gg0ASCmdjVbep96r1vib9cnjU68+9PqHuEp0txV/LcD29g/OArfqWEDdfpzXVw0WAiLgsFicmefUsYy6fcnoK8TqhX8KUu3jA+IuqtXdAMyrGSQiEdVquGjK2Xbm8LUj7fXNhLiXsOz6RReE0HLJ01TmRAB91+0tFsuhFyIE7GO/Wq6GoQ8xxC4Oi2G1t9o/3N8/WK1Wi2Houj50i65fDChSTNUdCAHREAzcwA3RCZ3QwNVdARRAHUhC1w2hGwxxs503YzIHVRvnBAChH7phWK72Dg4PQwhpTubQL4Z+GMA9jWOZZiYO3UAiOaWT27fH7QmxPP/8S1975Xd+7/d//w/+8D//vd/7/c9//guAfPPmZjtOse9D15WixYyYhFkqIYjIXSU+1Ot9me+o0Wg0Go3GE8jl6r07o68en3r1IdbXDXd38502p46HEtTrUK0f9Vwvu0VfXQySUBXjICAjIpzOr0L1cd+Fy5qe6XmEhZnNNOVcVNVMzXaiEyJCZPfIuOo6MZumKedsRfOUcjeVEASJiBgwCMeupyCSZsqpJtECiyKkUpIWtVKsOCEJEaMaASEKoxAQGKIhKiLUr9kd3V0dUNm5W8TQ9+a0naYxpeKOLIZczIGZQ+hjZ0Bd189TKlkBcFgsmdN23K5PjmO/GFYrjgtEh3ki5hh7BFIdiaBbrL7wpV8/2F+meQb3v/gPf77ebEUCIuaiiMhEcGqHX+U6VRB1GndFH6iiGo1Go9FoNO5Bi756IC366mJ2GnE3REACBAd0R3RHAPRTt0xVrfUpIjIzMztgUc05C3MV4vvOZxPdjQEXMQakQDROk5Y0T+ORa05pMQxd16GgxBBDIOFiWtQADBDNLeWyGceT9XacclZlISFydBZGZkBEJiRAQq+PGhDcAQEMANzBnARD10vsppRO1htVIxYDUoNiUHQ3YwBIjlX+D0TMLEjZzHd3MjE6opZc/76qOueTabsBhNVqL8a95z/9mX/wD77xs5+9/vbPXn/33fdS0RACIAOCOSA47p5+WDUYrSU+ERIJkbQufqPRaDQajcvToq8upEVfXUwt8c2QanG+eyJSqbOiUCdD9VQ5TkwkAkRqNs8zE+VawJoRcW1OE2KQIMiMgODzZDnPm02ZpnET47Doh9VigUuaZ0yUS9aci5m6JdPtNB1vxtsn4zybg4eeQyQEJwQDK2pqKMxIdb7WdyO2WHVCTCLSdSF25nCy2W42I0oMXa8GcyopaZoyQAGAzXpzcrIGtb3lHhNqKSknVWUKzAKImuc8TdJFEpmmqeTcdYNIEGaAAuAvvvTZ3/zN3/rLv/x+yn8OiAAYu161mJV6n2BmqqZaVLVePkRGxCrhaSV+o9FoNBqN+9Cirx5Ii766mDr3iQiIDmeWjohAWFOn6lSo7SxgrKrtmZmYS9Y5JWZW0yrUISImZmJCAFczRfAQhHHQGHIpueQpz/NJ2szzsN12/cDMxSybFQB1S6Vs52k7znk2LUAMhM6Ebm415qqkTmMQrgPCDmiAjEQiUJ3qJQaJbrAd03q9zUWXyz72CwQqxVTNiiGggeespSh6fW8l01qUz9PWACGIMBMRixALMYt73/cAlHPyPDHLweHTv/rlr3z5u999+5133nj9DTVfLhaqPM/mH8jHzu56kAhDkBC6rutaid9oNBqNRuM+tOirS12lx9zq/+OKvjrThFc5e3V5rPuBCN1gN34L4Lv9TMzMIpJzzqVkzXZ6l0DMIlxLV3NTK2qKiF3XsSwcfJrn7bSd52k7TilN3TRJCI5oUL0sXU1BPTLjAFUVFPrIzPM0zynnlLJQDtxF2JX/AA4ISMSCRE4SQifSTVM+mTbbuVCIsetj1zOJqWtRABQJasosIQRXdfdSlIMFEXC/dfsWr9fShcMrV0LfA5G7dSFCiMSkRd1dzWNkCosXXnzpN776tR/96MdvvfXOPE97qxVhUC0ODuhkTmRmzGz1QotICEFE7rDRbDQajUbjE8rbb7/9cZ/CJ48bN248cE2LvroMgogXaoDuNRbweK4fxzuDD+4Yszj7FS8ZnooI4ObVn6aqcs7GbXefW78bd9v9SrUlje6ecy5FEKk+AkBCIjRQd6jNfnO3ouqGQMgoUTrviBCJhAl3xzAQmwOaIiKz9MTACIQK4AhFdXZwh1Is51xUa5yUA6ga1MUO7mDmJCIxHh+t3795GznsDQvmQESIlHOexsnUuQ+uaOaaCyOKCLiXlEnI3bbjhpDzPAMgMGspRUtgccC5zO7AwuSMQKXMIcQvfPGLv/blr/zH7//Vm6//NOdCCEQEdf73NHAAYGeRaeb1VrvV941Go9H4xeAy1WrjIUhpHngXfXWfeq9q9E9O/la21Cervr17/eVp0VcXo6WYmZvjWRvfHNyJdt6Z7l6TaHf+91WQw8zMRAgAZla9Nmt/mhgNzJACCzEBk0IyK9mUiJCp67uuj9VTUktRc2IGZDUvpg7uiCgBAwNRNkulTPMkhEL1xgXRAQEIkREBwc3NHJGYgwK6Q8r5ZL3ebDar/cMudkxcrZVKKtM4q1odF2ZkcEBCEWERRDC1nHOaZyLOOZsZ1Scbqg6oDiknZu66AZFMS5q3gPjsc89/6Vd+9YUX/7/333t/mlMQilGqCP/UQqcW/XA6u1xyztCq/Eaj0Wg0Go2fjxZ9dTHzNFHtvSOYuaq5G6PX4VEAL6XM81xKQUIAz7kAQAghdjHMAd1MTdWYSZaLruuJGQEcwcmRSSREAlVyACLctbfNVIvOiZCYGADBIVB1zgFzNwTYPTFgEgS3HIKpInoU4dqTB4gSEGCeplzKisNysUrq05y2R5uj28emHmPfd0OQ6IDoVHJJYypzQcdA0oWu7we34u4SAgeZpmkcx81mDUDrk5NpHFcSiElciNjNBZmZAMDNStGsulwsh2H/5Zdf/sxnP/vDH/3w5nvvkLuEULKlrKUUd2fmEAIRmVnOOefsp6qny3xHjUaj0Wg0nkBa9NVlaNFXF1Nd8HmnvanDtlY76Wdd/NPWfpWaeBWUxxhFBBGrIyQShRiZpY6WOoKhOzoQkhAyOoJVX0siZDQArb13JAIkACaOEiILI6E7qIIqmjGiEBEiuDNz3/fDMMQQ6vlQfQckJiYSAJi20/HxScnaxz5IROQgIcZORFx9nmfNpUZnIWIMQYQBgIhEgrunOc1zGqdp3G7ncdScEYCJT22ChIBKLrV2d8B6I3L9+lOf//znn3nmGTVLpQCCmgFA13XDMIQQ6rfs7kRUB22JqJX4jUaj0Wg07sUTG331oWjRVxcTQiQCYjAHNGDy3YStuYOjAyMFCabZ1QggRAE3Iur6GLuwSbOpMnPNuD0rWWtB7+YOXlRTLlmzAYpwYBHGGANGIiDaqW5287K7eC2walafAczNzbWUnDMJxRhXq2UUNtWUCooECSJiZtvtZjuXcUoA0HVdiAM4mXkIsesHiZ27j+NYigKQllRSQgAhoTpYoAZqbqa5FLVpHOdpLHlGoqq/R3dEUHM1rflfTFRKYS7Xrz/11a/+xl/8xfd+8Jff326Pcy45lxDCam8lLPM8HR+fTNPEzDHGEAIz1zCsy3xHjUaj0Wg0nkxa9NUDadFXFxMCY/XJdKsCd0MEd1NzVy3ZXQEdwF2VCGMXtCgR9X0/9P3mZF1KQUTaeehDHb2tVvoIYGallLmkKSU1Y8IYwtB1Q9cJBzREcwYkIiJBQgNwB3RzRENwUzPTUswcAd3cHYiYiLUUAyDiKEJE85xS2c7ZsgISx9CFGAkADILIMAwiIauVlErObuqlmJadmT4AuLmqu4Gbm5ZcUppzmrXkECLUJadzszXaqj6vKEUR5q5bvPzy53/plz6/f7C/3tzOOQMiEedUXACR+74HgKrSqf++z2T6jUaj0Wg0Gg+kRV9dCJ09Hahcxor/cV7/qKKvqDrnmNeJWwQkJETc2dCXVEpWK+bmYMwkLETIzIvFYrFYBBF3Uy3gxkTMdOoeA9WZxwEMvLjNJW+n8WS7PdluNuM0pZyLVhNOJEbiqtRnwup4j7iTCZVSSs4IGEMkoJK1ZDV1RAwitSkOAOM4bTZjLgWg6oyoWtoHESJiImEWZgI0VS8Z3BiRsMbQ7iyEqhoH3LTkNKc0z1oKgBPVp2SAhMxUr62Z1aNLNgC8dvWplz/3Sy995jPDMKSUmZiAb986eved98ft1HfDwcFB13WllJRSKTUMq5X4jUaj0Wg07smHrfcet3r1w66vqKFWQQhUx0QncCCofxTRwcvp04sWfXUxdcrW3RAMCZFqg9lUPVsBcACv6U1E5OaORgjMxBwXi6Hrus1mXcNtiYgYEQCLITg4OrkjOJMjqGsuUAqkXMy2AI49SsfMARHAAR1wV/K6A9bnAPUhQCoZEEQEEKrDj5nUAp6ZAbGUGo/rEgJyKEZmbm4SQowdOOacmSXGOPQDAZScWTiEUIrXm5Mq6Q8cuhCExW0sOeWUSi6gikyIuwFmQkLCmllbZ4VLKeZGSC+8+OKXv/KVn/z4r9/4mx9H2R+GYb1Zj+NWtbhb7EK9jIhIxETYtPiNRqPRaDTuxRMbfSUMwoBABoaKAKAGXkt+RTEgQKRdEdWiry7G3c3NTMENa4QUIwIVrN15JkUiEmIV0Wxu6m5MiMix6xbLxXp9Mo6jmSHtTPYRjc6ULIg1KYuZANUcrMCcS5jnyF0f+0AI1ZnfHQ2shuICKLiCq1lRzapZCxF3seuHXoIQEyE4QK7BVarE0keJ/UKdLGlSM4AQYojRzFJKIXaLrlvtrSSImgUKIlJKcjfE2sDnEEIfuyiBwEtOaZ5zSjklAWdEdwRAIkZmVTMzESHmmv87punpp57++m9+/T/+h+++8+ab85zUtKZc5ZxPTk663Ilw1/Vmu3/fDzc53mg0Go1G40ngiY2+evkZeu2nm505+im11Zqdq9v7lz4tAHDjILToq4txU1c1LW5OCCgARIiGYAhWRfhmiugspAVM7UxeEkJYrlaL4+N5HsGtyst3fX+vdjxAREISJcbQpwBqGQCQ0JBqou2pzN2MCNzNQR0M3dB3VT56AZ9SEpb9w4P9K4eLrgM3K3nOqZSMCETSLxax6yV241zmrEgkIiEGYnRwc2eWfuiHxRC6gIQOVm9i3LJqMCuMkQJ3XexCQICc5mncTuM2BIml64l3on0EBAaEakJERCxcSkkpX7ly9ctf/vLf++3f/tnrf/OjH/31+++/z8yLxTKlWVW1aN/3hLjerEspMYam02k0Go3GLxivvPIKALz66qsP3PnAlxpPZvTV//zP/vq//v2XP/f8AxQ+APC//cs3/tGv7Lfoq4uhU4NKcDdwNFQ1B9NStBTVoqpaCoIRIYAXK2ZWR0WJaDkMy+VivT5GhOqt+YEK36zq/NGBiUPoul4BDRC60PWxD11HLLVuRgJHdHA1N3fD+kwBjNAQDb24E3js+2FYEGJOk6qWnAiAmYch9ouhHxaANKai7hLDsFhIEAcHhBBDN3Sxixw5xCCB1co0j+O0dS1EKF0nMSJiCBKCEKJmTfOcpnEKwc1D7DgIAGhxdAcEZnJwVXVzNUekEMLTTz/9jW984+T41rf/D/vxT34yTdMwLLquMzMAZBKoch93M3P/eafIG41Go9F4fKj1+mV2PvClxhPLf/aNG//jH/3g1ialjBemPBFRx3Cw6v+Lf/gc5Jst+upimBkQHNxJ3R3QrPpG5pxzKppVsxVlBPSqhDcAQARXZcJh6PZWq/V6WXZzru4OYLaz1KF6wC4QN8ZYK+ZY0gAAIABJREFUQ6u62A+xH7pOgtTcK6QqdwEDVwTDOgiMwKjg6s6Bu34QkVJ0zrmkGdHBiQi4Gt/3nQQp6sXMEFbDsLe/JzEYAAXqh36xXIROEIGEOcg4zevtZn18bFrMjDgEEhk6Jg4ijLy7CimXnFhYc2YiZ8opq6XYxdB1RS2l7ABIHGM0sxjjV7761b3VsFoM/9f//e0f/OCvUsp93/XDgADuoFpi7EII7u7etPiNRqPR+AWh1fePnCcz+irC/F/+w2tQZxZrCioiIBPVVFY4P814+xbI3Vb8VQN0r7GAx3n9eQ3W+TGL82MZl4y+YmYiFCJ3BXezUmdn66sIjgBEH7ToiUiYTF3d0SEILxaLvb3VOI6EuycBqI4GAO6k5m7k5oYATIKBhaXv+r7rYwhcbTJrji6AIzqi4+kGgSMW9+Ie+rhYLR3g5OQkz7ObLRZ9JxKD9F3X9T0xq1tWUzMi6hfDsFoiBwdg4W7oumG3BsCRUFXHeVyv11YKAXQShhBYmBBZmBkBd4lfCLspX3dHQC2achZhQnT3krMBxI5EZE6zlXlvtfjlX/ll1UKM4zj94Ac/ODqaYhcJaZ4Tou/t74UYc8rn/1ttNBqNRuOTzquvvnp34X7hzge+9K1vfets+5vf/Ob9d55t32vPhceeX3b39vn15w+5+wTO77/7c38eLlfv3Rl99fjUqw+x/iGuUou+uphxuyFECYGJCNAQ0D1DjaNCBgIWjFZKNlVE6EJkh5yyaQZCQl6uFlfKoQilaUZwAiQgdiQEBbRqdmT1kQIxo0gQCcQMSA7o4LCzwHevhT7UOQCoQ7fZNbkGjhJDUZ1KtlxC9e+MoYthsVwMiwWSZFVFoCAdSeyH0HdIwRyRhURCDBICEKqpaqkG9ynnMs9dkDRPOafBjRhDEBYyqzFcUK9/jQlgrFO3WIeUAQCJyN0dtEqacl4fH6/2Fl/61V9lhOPjE3d//fXX6/SzuxGhCIuIaYu+ajQajcYvCPcp4j/U+vPcv3C/sI6/F/c/9qymv+MNL3z/u+8K7nWr8Eho0VcPpEVfXczbb/2s7/q9vb2h7yiICFdJvHsx5TOTeQA3VSYKfZ+ITK1WtkAwDAOip5zG7RiQowRxZwQCAEIjB1NwQEQmBEJENDNVJUQCAqgSIAA8q+xdzZ1w96fexeY8TZNSIuJh6BdDPww9mBVzDmGxXAGQz7OCdgM4MAkVLX3sO+lYpKhO0yQhiEgxHafJzJioPpsA3Dl2OuzGZ5kZABFw90zIQNUQCyASUQyEiKpKxH0/OLiqTeNkrkxcyjxPUzcsP/eFL/7+P/kn169f/973vnfz5vvTNB8dHd26dfPW7Vs55xoE8NBfXKPRaDQajwkfdmT2MRmxvbCs/zlr9Edb399Bi766ELmXBuhePObrH1X01ds/+1k/DPM0rlbLro/MaKolpypCr4bupyIdZyIRMXcKIhrMFBAlhCWvFovt+mSLBkiMAUiQAZHQ0VWLakEz3PntuHst8gGRGImgms67uiqYEyCig5ualuyqWEwtlTTHYVguhsP9vS5GBJin2QEldP2wMIdsbqCO7CQsgoBBQoixZnEJc9d1IlK0pJxjkGGx6PrezZADEAMxSqAQRQKzmBYEOjUCrflegIQUYuDgCGYmElkiAEzjWHJmpmHo3chNyzzGfvj6b/32S59+6bXXXnvnnXeOj4/fe++911577c/+7E9v377d9333oC+90Wg0Go1PCucb86+88soDK/gHrq/ql4+0aL4/9xcLne05r+p55Gd7mXrvvO73catXP+z6h6BFX13MPI7jdnNydGuxWHR9RPSccylJVUOQ/b1V30cvZmYOqGaWUzEl4dj1qiXnklWF8ODgUNWP3r+1nqZl6ELsHJCEIgFosXmaxzHlTESEkUgIwUyTKyEKMzioaSkFCDmIMCdNaZy2m/V4svEM3YD7i+Hq4ZXlatVFSXOaU2Hmg4OD1d4ekqRpzlkBqkGQxdivVvshhJQSlHLt2rXnn38+9v12O+Yp8bCKi9Wew8F6Y+bZbM5FHYAFQmQOVXPv5oQEAKaqqg6AisJSrUWByB1MtSqMIgszE5ABmakWZVHk4ennXtjbP9huNuM4Hh0d/dqvvfnlL3/l1q1b7kati99oNBqNxj34GIv7+5zA3aJ8uO9gwM/DExt99eGu0mNu9f9xRV8x07wd1+tpu13HGFXzPE9zmtV0f2/VdWG5WripIwBByapazAwROQRALOpqxkT7+/vMYR7nW9sRIZMIs3RCLMwFIKFqyTkxcwjChMxkpupmvuvZZ825ZGKKTMhoWso06TSLez/w1YP9p69cuXrlKgeepmncbMxx7+rVq1evLhZLVc9qu1rbAYlCiDF2iASWuxivX732/KeeTzlvTrYE1C+WcbFEpL2Dw+12nNM855xVHYAkiERCMjNzRyL3XaCaIxq4moIZMxORu5ViZoaOfewAwc3cEIEAPE8JMBFz1w/DYgnuz9zIL730ma997Te32824HYu2cdtGo9FofOI534C/jAjnw65/DDkv8nnk+vszntjoqw9Fi766GBYSoaLETESg5u6mqinPKUnO2cyqgB7c1cwc1Azcich3hjwSQggxLpAPr12Z53l7vM7rPAw9xlUAylrmnMvuL+JQDTXBEZGJHKptphuYuVlRc4MZcsluuuy7g9VqsRxWy+VquWSmMqfteq2lLPcODg4O+2HpiMU1xKDm05xYYr9YIMJ2sxkWyytXrly//tSNp55mopIyIsZ+EZYrYEGk2PfDaqlrV4d5TiUXZupi13XdZjv6zr3eARGwJnYhAlDVGjkRGgIyIADW+V0AwDpgrFXkDwCEAIAIxNIH6RdLhKullFLs5x4xaTQajUbjCeEOl5sLDW3gHtY39zr2fKV+tzT/Xh93nxN7tLX+kxl99WHBwyvXLnxhsz65Y89ytXefN/p41//j3/3dO16tTvnn6fsBAMZx+0d/9E/v80GV/+6/+a+mecopxyginDWP23Gz2UzTdrHon3vuuevXryPBNG7ncZtzBoCck5ZS78nQQUREAgub6nazefett9/86etpHJerxcH+gYicnJzcunU7zRMASKBhGJaLZb8YhNjMiqmDm1lKqZRSnfXrD0Tsum65Wu6t9uqzm1LKyXp9cnzS9d2zz73wzDPPDItlLiVpCaHLWY9PNkiyWK3UAUmeevrGZz/z2Rc//dKVq9eI+b333ttO6ZkXXnjq059297I+HrcnR7duHR2fzOO8t1x+6lOfGobhnTd/9lff//477767t7//wosvLJZLEhlWK47BmYiYpWMRqoajyOjoBmDuboAO4IC+uyGqmAMCESEiIdXhYiIEABkOHvgdNRqNRqPReAL5gz/4w2HYlfj3qvfO+Od//Mfnf/1k1bdn/PC1Pw/SfeB+/2Bf/Hda9NXF1OBV05pEi0xMp9fUzEyLmgoxIiKRiNR2PnhtvmPdcDd3FJHVai8fzuuj28dWEGuklpdSUppyToTAGMAUwQNTDKGUbKkULaWomSI4M9V4LCRk5r7vF8vlsFiISE5pnOb1djSAfrHc2z9YLFYiomaoWC9jCNEBVTWrxS4shuHatWs3nr5BIu+9//4777yr7teeug6agYmDLFcrMFfzkkpOaZ6mvuu6LvZ9Xz1zVLWUwgBujr4r4OG0jAfY/YRT83xwY2YSAmBTc7fdc4CqIEJAqteSAODsH2ij0Wg0Go3GHTyZ0VcfFrrbir8Wsnv7B/G0XK5jAXX7cV5fNVgIiIC1/K3761hG3b5k9FXXdSEEJoZdyhWFHTGEUDUp1TcTEYW5viYidIqbl1Jyzu7edd3e3t7e3irG6Kqqykx9H5fLYW+1XC0Xfd+J7GZtzcoHN2VugtSFOPT9arnc31sd7O/v7+8vl8sgYqo5l3FOR8frcZz7fnF4eHWxXCKzgRNzCEGLqVnNwJqmSYv2fVwuFn3fs/A0je+999677717fHx7fXyUT04wZWLibliuVnurvS4EMys5u1mQEELY3eScoWZq4I7uCDWeq5rm4y6wq3p/Vsd8NTdDBCJiZt7duNTvTlVLzjml9PO4nTYajUaj0fjF5nL13p3RV49PvfoQ6x/iKrXoq4uJMeac53lWPZ3RDqHrOnePUYgZAYkJCWvTWUR8ZyAJiIgO6qqm7m5iRNT3/Wq1d3z79snx8ZzG5WrYP9jrhwDmWlSLAgIzV6v7IKGPERGYqCpgQggSRFhIBGmXOZXmKRU72Y4n642wXLly9dq166HriikRSezIfJrXxawfFuqu09R1YbEYQgiqeb05OT4+ufneeydHR8NiODm6vb558wCJugjsJGHo+77rNqWYGTiISIhxF2m1E9p4KRmYAiMTnzXjT69i3XAEcEA1LSUjfvCICQAI0YiwWoae4zLfUaPRaDQajSeTFn31QFr01cWwBAlBgjgYEDKzA4jUkKhQO9AhBLOSCNCRiAgJkQidmKvqxNJu/lRNWWR/f//2cnl0dHuaJzNbLZervSUj5jmnlMyMEHPJ7haDBJHQBTNjJkIhIgREQmRGQjNz05Lz8cnmaL1JueztH1y9fn3v4MCRihZBjBLIwR3qAywWjjH2fd+FYFY263Xo+pOj481mrSW7xWm7XR8fD8MQwBUdHAgpBGFmd0dwEYkxigggVKmNq+acnYiEKEQiYmJEQsQzEQ441Lse2I3dgpqf5eMSESAhAkIVOtUlrcRvNBqNRqNxKVr01YW06KuLIWKREGJ0cCJkYTttLdc+dK2YwS3J5NVIx8HNEUhYRMTEHEBVzX2a5y6E/YODq1evvvvuO/M8b7fbYei7LgZmdCRCBBCWUrJqFmaR0CEgISCCoxuoFnd3U3DUUnJO0zSt1yfTOA+r/WtPXd8/PAyxS1kBiEiYxQwkSC4550wSVqtVCFFVp3Ecx3EYp5RSyQnciLCUMk1TyQlG34yjAQYRc6/1urlXPRIzq2l1xEf3XAowiYYIUBVKVXzvdlbiI7gTorA4+5kbj7qju4MT06muBwC8CfEbjUaj0WjcnxZ99UBa9NU9YZIYOndAAmEqpZjtylMzA3Bm7rqu9Au1qs8BcEBEEem6rnaic85adJomRjw8OHjqqafefPONadyu18chChKoiKkieJAQY+ijlCLuVq0zicnczby4gTtCjbq1aRq383iyHcdxJIrXrj/11NM3apYtIoqEELvq6Nn3fSmacuk5DIvB3cdx7PsB3AOTMNaQXVNVLaaFCNI8v/vuu7no3t5emmc9JXAILERUVDWXEgoRYynIXLvvtU53ADjrx5+2492BiYmx5veaGZ4KcmrI7nmJjoNLvOS31Gg0Go1G48miRV9d6io95lb/H1f01dUbz7zzxhshxJrYxIw10alSipZUSs5EFPvetKgWRERCJhaREAIAqGn99FJKKQUQl6vllSsHJ8e35zSvN+sQuLAgemBWRNMqaDE3AzBzdlMzK2p26k+jxeY5bdeb4/XJZp4d8ODg4MaNZ65eucYcSqkq/BhCdDdzi7GLvU3rjbuLyDRNKRdVjTEuFn2aJ3DLOZdcrBREF5E5jzdv3dpstylnAnD3nPtSigevtkK+sxRSIN7V5Vht78+8PXHn7+m1JY9w6ohf/7fr2rtXVQ/ArvFv7u6G2NJtG41Go9FoXEyLvroMLfrqYn7p13/jnbfeJGdWBgBm3DnAMAGAFZ22IxF0XVdHYAGcWWKMhMQiyAQALEKmrMzC5rYdtwR+ePXK0dHRzZs3a93PACwIQEWzjcVdwQ13Np1qXpveTsRE7IA5p3G7Gdebzck6qQ9XDq89/fS1608tlis3L2gkgSUCcc6mZswSYh8k1TFZLcVNRbiLIYSABOBqJWtJpSQ3EyIEGMft7du3mTgEiRJSTqVkrJolrsO+Vu07a9FfL9qp1z2Y4Qc3JQ6E6O4pZTWtQwvEiDvh/k6mb2BECG7gJF1/me+o0Wg0Go3GE0iLvroMlxKmP4H86m/+vb/88z99542fOjgCIJKIdLFzN0RQtZOT9Xa7GRb9/v5+CGJmzLwr8Zl3LWlwFu6oZ2ErZbNdL/ruxo0bVYufc5rnCTz0FF3ATEsp4I4ICG5AzOQAVqOi0Ay1qK0365OT9TwlBFwtl0898+yzzz43LJfqgEQhdhwCEqlVtby52//P3r2HyXGddeI/59S17zM9mtFd1s13y4odyWEd524TA4khBDuYEBaCV2wWyMLuQ3ZJeGDDj4dAnt0Q2ACLCIEE27lu4oUosRPHCXHsxJZsR5YtybYuM9LoMiON5tKXqq7b+f1RUrvUXVVdVd09UzPz/Tx67J7qt06drumefvv0qfMKglAo5AkhlmU5nCuKoqoqE5hlmaZpUkolSZREgRHiOLZj25RS9yHouu44EiXEti3HcTglTGCiKAqCIIqiqqhKJsOZQAV3gUzCObfda2md5rL4lHLP+D4hxF2B6OJFBpRw4nCHuLP2Cbm47D+m6QAAAAB0AaWvAt313vc/9Lm/P3nsFUY5paIoiLKsEMIdbhPb0TXNtA3DzEiSREiGEMfNjC9OZeHcsR1CiMAEWZKJoja0ek3XGGODA6VqtXJSFnW91tB1wh1ZksilIlGCKDDGLKPhOKbAJIEJhFJCHc5t07L1hlGt1uq1mu0QUZKKpeKKoeFScZAJomXbsqKIguAe3bZtzh23wJYkyZlMhnPeaDTc5TtlWXIz+EajQSlVFFmWZSYwx7ZNyyKESKIkCqI7b745g+Zi+n1pQSFVURVVNR1uc8ftv3tVrnsNLecXK1gxQhyHc8IFQZCYSN1Rf3qpIJbjuB+43eF8xkRRiXqxBAAAACxDKH0VBUpfBZJV9Z5dv33n3e9dsWoN55zRi/WaGGOcUMu2DcMwDMM0TTdPvbjYO6P00pIynHM375clWRRF90dZlhVFuTiz37Zsx+GXSmi5NaEufUhwKOeXVpCn7jW+pjvwbpqO44iiqKpqJpORJZkTYjkOp5S53bu0as3FK4M5f3XtS0rd+lycc9O0bNt2t4iiwNjFo7jLg7oley/NrneH3t0snFHqrtYvuE1d7Dq9bG174i6Oc6nz7qJD7jcA7lSdSwv1XLy8gVAqyqqoIr8HAACAMCh9FQVKX3Vw/Wtfd/1rXxdrlyXgdRuv890+OLDqJ668IW5rQbPBBEI6LHkFAAAA0AalrzpC6SsAAAAAWKxQ+soXa3474IqyFH+a43tV+goAAAAA0iluvpe2fDVufAIofQUAAAAAiwZKX0U6Sylf6n+hSl8BAAAAQAqh9FUUKH0FAAAAAIsGSl9FwbrZGQAAAAAA0mY5lr6q1Wq5XC7+uQIAAACAhVSr1VD6KoplV/rKtuwjR44kOFMAAAAAsLDcLA6lrzpadqWvKKUPPvj57du3xz5VAAAAALCgHnzwQUEQUPqqo2VX+koUxQMHDtx//wO//MvvjdUaAAAAACyg+++//8CBF5TLF5FE6StfYtAcoCApj49SCoFz/uCDDx448Pwv//L7Nm/ehHn5AAAAAKlVq9WOHx/953/+3IEDL7jTWqLke945+mnLV+PGJ7DsSl9lsllSr1NKDx489JE/+IgsK5bZjDc88RefOpIk65rmPktESVJVFfGIRzziEY94xCMe8fMZryiqaRju+D1KX0VBSwPlXC7nnQPk3uFdit89qrsUP+c8hfFv/8mfJM05WISQy0shEEIYY24pBE64qqiXzdlCPOIRj3jEIx7xiEf8Uox/9DvfSU++mjj+hed/JIkKJYQw5l6nS5nAKCVUYIwS8uo9bjsz05PLsfSV75wtxCMe8YhHPOIRj3jEL7F4lL4CAAAAAIClYDmWvjIvm+OFeMQjHvGIRzziEY/4pRmP0leEpHKp/56XvvKWQkA84hGPeMQjHvGIR/zSjk9bvorSV0nim7/OiKUQEI94xCMe8YhHPOIRv7Tj05avovRVV/FxSyEgHvGIRzziEY94xCN+acenLV/tU+kr1vx2wBVlKf40xzfnYAVpfpuDeMQjHvGIRzziEY/45RCftnw1bnwCwtCKYduy3K8D3DlAzasWdK3eaOimYTi2LVw6U7l8PoXxW7ZsIZfmYDn2xa9mDKNhmqZlWY7jsEtXKqiq6ti2+/UN4hGPeMQjHvGIRzzil3D8K6+8kp58NXH8f/nd3xKYSAkhtIlRSon7X/LqPRfb1GsofYV4xCMe8YhHPOIRj/ilGY/SV63SttR/z0tfWZZlWRbnF7c3ywi3H0JvaxzxiEd83HjGmCAI7jen7a/HFu2vX8dxLMuybVvXWg9NCGk02vtz6aWNeMQjHvGIX/zxgiBwh7spvlfHfG/Zlr4Ku9x2qeKcNxqN66677u67371hw4Z8Pr/QPQJY4qrV6ujo6Be+8IUXXnhRluXmMENEpmmsWLHiXe9610//9E/1qYcAAJBm3/jGN7/whS/WarXuJ6kvE7Q0UPZdit8yjZal+CVJJsFL9y9s/J133kkuL4VgW1ZLKQRREAkhnPBqpXL33Xffe+8vdn32ACCez3/+81/84pdy+Xzz9ehbysT7+jVN486f+qnf+s3fXKg+AwBASvz+73/4wIHnFUWNku+57y979uxJT76aOP70qSNxJ+osu9JXWr1+3XXXIb8HWBD33nvvjdu3S5dWQuhYysRxnOGRlcjvAQCAEPKxj/1pNpuzbRulrzpadqWvTNO85567Y58nAOiRX3zPPR/94/9PVVUSoZRJo9G4+xd+YQF6CQAAqXTvvb/4D//wD83hapS+CrLsSl85jrN58+ZY7QBAD23YsIE7DuEdwtzXr6ZpmH8PAABN73rXu3bv/nvvsvgofeVrOZa+wvW1AAvI+wKMW8oEAACAoPRVBCxoDhAhRNfqtWqlVq3oWp1fkuZ47xwsQohhNHRd03XNMBqccPef6gkAgAXRfD0GzaEkl16/7aunAQDAMieIYsd8z/v+krZ8NUF8grMkaprmOwfIuxS/e1mAuxR/OuMHB8vk8jlY3lII7mV8bikE03z1smUAWBCmYWYzlBBiGIbvHMqWUiYAAABN2UzWNM3wfK/5/rJq9Zr05KuJ4xOcpeVY+qq9cQCYT3FLXwEAADQZhpERLo7io/RVkNYiYQAAAAAAsKiJQUvxy7LcshS/eyOd8bqukctL54ii2FIK4WJ8x4U8AKDPvK9H39JXLa9fAACAJsNoqBnVvR2S77nvL7VqJT35auL4BGdp2ZW+Mg0zwWkCgB5yF8UnEUpfAQAAtOCco/RVR8uu9BXm+AIsOMs03QK3HUtf9Wm1YAAAWNTi5ntpy1dR+qqr+LilEABg/kQrfaXrWDQTAADCoPSVr+VY+io8AADmDUpfAQBAAih91ZFYKJYqc7PuTH93DlBz2EzX6u2XBaQz/uKDkaRMJtOcbW8YjfbL+KKXvrr11luD7nryySdjteDGt/zYV97Otxwu5K55E34qgs78QvUWes6tS0IIyWSzWr3uXinl+/qNWPpqx44d4QH79u3rrstJuL1akEMDACxhbumr8HzP+/6Snnw1cXyCs4TSV7BouKk/Ev0lYDmUvur4qQMAAJJB6asoUPpq6bv11lubaXHIVxMA8walrwAAIDGUvooCE9M7a/+e3buCaUvSHHeMOWj39qksUbZ0I0pPWsbRw+f8dHlmyOVnvjkm2vzE0vGEROx5UAtpmNEEEfk+VcI3xtrS3mB4gHe7d7pO+9A+pvEAAEA/MM65rtVr1UqtWtG1Or8k6LKAdMbruqbrmmE03Dm+nPCgy/gSlL4y2jTvah8UjzVM3uXuPRSlJy1bYv3ou6Uj7znvJhNK0LeOu0A3vK9Hw2h0fP0uiPZ0vGVLx4Ao92I+DwBAXBHzPff9JVX5auL4BGcJpa86u/Vy3u3N294ENGI6GL579Iw2PNK9120zqOXmdld4a94GWzrQ3Ni80dJmN4my95NVAi09j/Vgoefmv/RV3BeUd0Tf+0xobg8P8B6u/YmEpxYAQDdQ+ioKlL7qgX379rnDzMkG5Hx3b2a07ryUlo8W3i3huW/7ve1b3GzD3R6Shbv9DOl8e0CXeXmveDvWzYOFXlnA0lfuE7VlIk3iF283fUCWDwCQGEpfdYTSVz3g5oKJM8Lou/cpEemY73rDfDe6WX57QErmt3g71s2DhV5KQemrKC+o7gN8D4f1NAEAegWlr3yh9FVn+y4Xd/fEwi/zDYpJxju1JlkLiygn7v7BQq/MZ+mrKL/ufj8lWtrHRHwAgGRQ+qojlL7qbKGSV+9cnZa7Is7Scbljh8056CFj7d3MTvEuzek9dMuWbtpPtmNQO5iKs4B6XvoqlliXyXZM+uN+KmiZ6+9O2onVAgDAMofSV1Gg9FUPtE+X78fuiWf8t09TiRIZkbfz7Vl++6eUWKtP+p6ToNQ87vlHfr+A0lD6yk2so7+gfNfiTBwwz7P/AQCWEpS+igKlr5Lzvkm3rDATd2J90O7emPYp+z0fh46eJft2vtmf5r0tDfakw72a8Z+S6wSWp4UqfRWeWLcsg+NGBq183zGgqX3aPZJ7AIBuoPRVFKybnZc538Xao2exUXbv1aB7c8Ay5N72H0OS4PbOe3ve5ZkJ0nItRFC3Ozbi+yMyfmjh+xyOHtBx95CNAAAAXaKlgXJz6U3vHCDLvKzGk6wokiQTQjjnKYy/8847yeVzsGzLcidguURJEgWREFLXal/+0peinJrmhQ7hiWnL9RCXdfLyFnwbDNk9qBtROua7V0gL3m4YhuENCDlcy14h95LQMxO+Y8RDtHc16CixHmzEpwHE8vPv/oVCvkAI4YQ3ly72ff3quv7Nb35jAbsKAABp89M//TPFUsm9HZTvNd9f9uzZk558NXH86VNHJFGhhBDG3AX1KRMYpYQKjFFCXr3HbWdmelJsX4rfnQMUdFlAmuO9c7CCLuOLXvoq+mB8xLtCFp2M1X6UjoXv1bGwo9erAAAgAElEQVTNiN8kJP6SoVffToSf4aB2Yj1YZPb9EFL6qv31CwAA4OWWvuqU77WWvkpPvpogPsFZQukrAJhvC1j6CgAAlgCUvuoIpa8AYCGkoPQVAAAsASh95QulrwBgwcxn6SsAAFgyUPqqI1YolpqtuHOAmvfpWr1WrdSqFV2r80vSHO/OwWrGG0ZD1zVd1wyj4Zba4YQnKH0FAL3VfD1mstnmX2Hf128/Sl8BAMCi5pa+av7om+9531/Slq8miE9wllD6CgDmWxpKXwEAwCKF0ldRoPQVAMy3hSp9BQAASwBKX0WB0lcAAAAAAEuKGLQUv7dSEvFMA0pnvK5r5PLSOaIotpRCuBjfcSEPAOgz7+vRt/RVy+sXAACgyTAaauZifZWQfM99f6lVK+nJVxPHJzhLrH0pfrdmVtBlAWmOd+dgUUIpoUGX8UUvfQUAfRJS+qr99QsAAODllr7qlO+1lr5KT76aID7BWULpKwCYbyh9BQAA3UDpq45Q+goAFgJKXwEAQC+g9JUvlL4CgAWD0lcAAJAASl91JBaKpcrcrDvT350D1Bw207V6+2UB6Yy/+GAkKZPJNGfbG0aj/TK+6KWvqtXq5ORkrVaLei4BlqVcLrdq1apsNht9F7cuCSEkk81q9bp7pZTv6xelrwAAoIVb+io83/O+v6QnX00cn+AsofSVv0ajcf78+XXr1kkYVgQIZZrm6dOn16xZE33IAaWvAAAgMZS+igKlr/yNjo5u2rRJlmU3+QCAIJTSNWvWjI+Pb968OeIusUpfTUxMdN9JAABYMlD6KgpMTPdnGIYsy4IgIMUHCEcplWW5T1PaOOcrV67sR8sAALBoocZRZyh9FYgxxhhzv0YBgCCMMc7j/bVF6SsAAEjMMIzmpZUofRUEpa8AYL6h9BUAACQWLd9D6at0L/WP0lcAS0/00leKgiWtAACgFUpfdYTSVwCwEFD6CgAAegGlr3yh9BUALBiUvgIAgARQ+qojlL6Kbffu3S1bdu3aFRLs3tu8AQDRS19hFB8AAFpEyfdQ+gqlr5JAsg7QDZS+AgCAxFD6KgqUvgKA+Rar9BUAAICXYTQyQta9jdJXQVDXqWe8E3jaJ/OE7LJ79+6W+N2XhERG2QsAAAAAliGUvkrCm0Z3OWmnfbK+d9a+72336BH3AkghlL4CAIDEUPoqCrF9KX53DlDQZQFpjvfOwQq6jK8npa96mEC3NxXUuHc7MnhY1EJKX7W/fgEAALyi5Xutpa/Sk68miE9wllD6Ko2STbbBFB1YLPpU+ur0/u+/+J0HTr70dN2xDIdmBgcuzFZzg0NrN1w5W9N+/Oyhqm5mMrkLF84XslSRqM0FSgVJVm1CBKbkCvlqTcvn85ZllAYKDU0vFHKzczOnT01MTdXOT8+8466fWrV+lawwVVUoITIVc2pubqaSzWaz+cy/PPLYPe/9rR0739TDEwUAAL5Q+qojlL5KnZYpN9F3xNA+LCa9Ln116Kuf/PG3Hqhq9ezgIKO0ZpqTE+eGVq+9/sabD71ybO+zB0oDwxkqTk5Orlw5bOqzdd1gjOQL+Vwub1iOaTuWzYeGhhqNhiQpRsPK5nMN01BktTQ4cOFCXWKCKIoCY4QQzjkhhDJqmqaiKJZlmabpWJVP/M/f/u9/8Ikbt90e3tUdO3b4bt+3b1/EBxuR74GiHMXd0Y303k7ch54/NACAJpS+8iUGzQEKkvL4pVT6KvGoPObiw2IRNIcyrtMHHn/uWw8QJmQKRZvQqmYIinLLT7xxcMXII9/9/oXZyvDwytNnJnXDWrFi2HEcyqTVa1ZxTqamZx3SWLV6rePwiXOTut4YKJfL5bLDbcaYbZtatUY4E0QqikyWRFlgnDqE24wIlFLLslRZqdU0Xde3b98+cn7kR0//y4rhK9asurJHZ6j3duzYMZ8Jd5RjPfroo83bt99+8QOS7x/ABH/ZWtoJbyFxJRP81QWIridXD0bJ97zvL2nLV+PGJ4DSVz2za9eunkyVabYTq0FvMN5pIOV6Xvrq8Pe/rBQK9YY+NVMpDA6WysNyNn/9DTft+daj1ZperegzlYYgS0OFEmOkXq9ls9mJqdl8tjCycu3cXOWpp/ZNTE7qum5xZ2RkZP369Vu2bBocHCyVSuN1PZMvSIKoyKIqiZIg2sRknFBGGaPU4ZxzSqlt24ODgxa1ZuuzT+3713e947+E9LaZ9QaNcDdH3713NYO9Y/Mdm/JtpOOxwoXs0n5X+Ci+m9w303rvlh6uH+DdvU+5OP7qAkTUk0wJpa8inaWUL/WfwtJXIX/KQ66d9d0r6Ara9r06RoZ3DCBVel76qnruKM0qnJPyqtzpiQs7r33Nv7vtzX/x139zfOxUcbCsG3Zd19ZfsYkQMjU1lcvlRCmjm3XboabFNd3QG2a9rk9P67JMnj81fu7cOcPQ3/SWN1MmCKKUUaksSoogSCKTRWZyKjBCKRcIpQIzG4YkiJw6Va1uWRbnfPTEi92cHG8W3j7iHjTJpx/HirtL3NYeffRRb3Lvuv32272D+r7ahzPcxN272hiJkM1HHBbxDYt7LAAI0fKC6gilr6JA6SsAmG89L31lCEzXjeG1a06Mn73ltjeuXrfxzz/xV3XDFuXckWMns7ncytXrp6enOecDg0XuUELo6lVrRVGeOHN25sLsujVri/nCc889b9tkoERGhlYcfOGF6667bt2G9UNDQyfHTiiSpIuiQJnAKOECFSjjjFFKCbVtW5YlJgq1mZqmaUpWMXnyZbu8o+Du7fZc2TtA7t4bPlLe8qkgaHy92VrH7vnu0j59P7rmyL2b9Ddv+AaHLyscfYAw4lSBoJWLk83nAVjmfF+nCV5QKH0VxaKZmA4AEGRW01aMrBw7Pbntpp1UzPzzg1+ZrTZma/r07OxAeUgQhMlzU5IsDA2VZFnS9QaldG6mUhoolIr5qYmz42NHFUnesmGVpmkD5QHDts6Mm4dfeOH6a6/RBUEVRUmSBMoYIZRSURCpSKlDCSGO46iybHPOmMAYNc2GIiiW3e1an26i3DInx3tXN0KG3qO3EB4Qcf69m8R7b8TtiZebGbjZQ/O/7l39W20M+T1A9/A66hOUvgKA+dbz0ldqoTBVqbzmltedPj31gycfFeSsTcWxE6eyheLE5IVMVhkaGszlVcOoO7aVzxdkKSsKiqrKJycnpibPrF45cuedd15zzVWV2erBwy8+8PkHBwukPjdbLhUPjJ/IqKpAGaWMcEYJI9QRBIlzmxDCHZrNZOaqdcdxFEXhnFuW5fB0rczbZULfVy2j9UEj911qn2DTfjsE1iMG6IkefuuF0ldRoPQVAMy3npe+cqTMls1XPH/wpQMHXlLU4pnJC0ePnyiWhhgT5Yw0MFA0bcN2nPKKoXqtKkmiqsqqpCiyeP7s6XxG/vCH/utVV26dnZ1+YeoFbW7mD/7b7/3T5z5XKGZrszMyo4WB0hkl0zCsbKHImCiIVNMbiihRSgnhumGRS1+tyrJs2QZh3Z4f7/SbfkvwtUDHXRbLQpkRsw0MMQL0SvMDc5fpPkpfRYHSVwAw33pe+mp4eO2/fuMR03AGh0cOv3Ts1Jmp4sCgw3mhkBdlOZvNSlJBEB1BkGRZHigP6jWjWMwrsrhu7Upqryjm5HNnxr//b9/95je/+Y53/qwq0qu3bD585Ghldnp4aMXE5IXB8oqxU6cbhl2gEmFUFB1RUUTKrMsv36eUdvk9oXcKfnNLeHDHfDpkGf7m7t6NHbvnu4vvXcmETMSPomWWThQR49vDMBcfILreXp6O0lcdofQVACyEnpa++sETT4tyjjPnwKGXjx45USgOFIrFesMQFVFRZc6oklUMs2FzTpmgKplcJlerz4pi4TU3bdu/d+8n/tefX7ll6zVXXfmh//K76zasHz89Wcjl6tVqvaIRLuZy+YOHxjiVRSVHRLlu1kVRpEycma2qokSoQBjlr17Gzzs/tlDe8ft+DIR72wxagjNi90Jai9jzlvVz2tfQbJdggWDvTBvvMmVR2vENa1+9BwAWEEpf+aK5XL5lDpAkySE7mEYjhfE/8zM/4/4oSpIohH1uqVTmvvrV/xsS4Dpw4MD27dsFQXA/SwFAEM65bdv79+/ftm1bxF3uuec9mUyWEGJZZsscypbXr6bVH3roax0b/N333WbZ9ktHjlyYmlm9dp0kq3W9URwo5fPFQqHAuT0wMGBbZqGQswx9aGhIlRXbMgRCSnl19OWXG7XqT+zcec3WLRNnz508OU4l9fTZ89/+7neLK0auvvaGdRu3nD47/dyBF+644y1brt5sOvVKZU4SRIFSYtoiEwxTpwKZrc9OTp9xJO5Q53f/0z/FOINd6OuHgX4LGa3vciAfg+sAS9udd/5UoVgMz/ea7y979uwhqclXE8dPnD0uiQolhDBGXUxglBIqMEYJefUeN35mehKlr/zJsmzbdrLrGwCWG8Mwcrlc9Piel77SNPvgwYMNy1yzZp0gioQ4K4aHJEVWM5KaU2zTFESmZvK5QsGxMg5htYZRKhUEYouqcv32GzOCMFIuv3jw8KFDhwlnTM6sXLdhtmb829M/nrignfq/exyqZoulc9NzuXNTgkyKpUGJkqlz5zOizCnhnFNCObc558ThlHX77WpcizG/J55VMr0bowzkh0N+D7DkofRVpLOU8qX+F6r01bp168bGxjZs2KAkOq0Ay0ej0RgfH1+5cmX0XXpe+urZZ/eLorhu3QYmCJPnzg6vXrV69cqaVpVUQVYYlVRRZLlczjTNXCYrSKIgSQ3HFInDZEkUhLNnT81cuHB+8hxhbNXq9UzOTpyfOXbi/OatQ/WGefzE9PDqkVNHj338E5+kon3TTTf+3Lvecc3WLcVi0ahpnBPuUM4559xxHM5twudp2a60LY+TQHuhq+4X1UF+D7DkofRVFCh95S+bzZbL5dHR0Vot0tV+AMtWLpcbGRnJZrPRd+l56ausmhNEcfrCTHGgeN111zFZ0rRasZRnoiiKLJPJCYKkquqJEydy6/MD5SEmiYZtErsxV9fyK1ZcsXlLRpBUJTs3VxWkTKE49O1/+2FNJ5sGVhw+NlYaGuCC5FCRMpJRM3uf/fEPfvjj17/uuvt+9d9nZaWZ3BPOCefU4fO2aOYiHbxv0aeFMgFgCUPpqyhQ+sofpbRQKBQKhYXuCMDisLBXrQiKWhwoUMozuYyczVCBUEpzhdL5iUmNaWSAMWaaunn48GFVyZTKg7pWl1Rl5fBqQ6sySZqt1bgiDKxcrRaNxx9/8qmnv/TUM+ObrhqZrsxZji2rtFqrFQYGdb2m1XVJzHJWf/KJg6dGP/axP/0Tizg2pYwQ7lDqcGJThgt4AABgoaH0VSBcaAvQJz0vfWUptGJpw0MDxYGCQS1ZlEulsiLnZKpSh1XO1bWGrll1w7JMS6/OTecKA4wL9Wo9ny9qjYZaHFQyuXNnJ/7mf//d/v3H3/KWW974poEXXn5ZMy1BJHVtNpcbahi6Y3KZZZnJJEElGXv02MxHP/rnf/bxj+p2Qzcasqro9UYhmzOMSNcPAABAMih9FQVrX4rfvU63UCzJl95u3csC3NtpjnfnYFFCKaGZbFYUL35H4V6W4d5G6SuABRdS+qr99RtFJpsfWbm6NDjEmSBQVszkcpIiWLyYG6SOaJukOlezDH7DtdebpnnixAnHtDKSLIuKadhMUsRMaU53Pv/lrz/z/HHOyIVZnQhZ0xJLAyNUzJYGhqpanRAiSQqhitZw5uYapiUMlgdfPHTyn+9/UM1kalq9rjckWTVtKgi4gAcAoI+i5Xutpa/Sk68miE9wllD6CgDmW89LXyliThKyzJEUma0sFsvFkiKpkig/9cr+lavXrr9i46FDh44dO7KyPKIZ2uCKQceyBcpkWbYJFaQMZerEuQuPfu9pKVOknB0dnZZVRWvIpC7Uakw3LVXJOY6jW6ZlW0wWCFOqtqE6NFcQ9u7d97bb31AsDNTqFcPhpq0zhi8AAQD6C6WvOkLpKwBYCD0tfXXFmo0OMQWRlPOZApVmx044DTM/NPTa11xvS3LDrJ+ZGL8wda42V1GLWV3Xs5JkOwalPKNmLS4QKh0dPUWlbLm8cvLsOcOW6rNmqbRyTqsNlVfpZsMy5mzCHUJ021DUgphVGnNGwzLzqnxybOb+f7r/V3/tvZzzuXpdzChMZN2fHgAAiAilr3yx5rcDro5Lb6Y8vjkHK0isb/8BoK9aXo8dX79B5mYuWKZZKGYKWUU7N3H20IszR18xJk8deXn/K8eeP3ryUGFQfe1rrlUlMjwyUKlOafoc5brt6LbdsB1Tziknz57OFot101TU/GB5SFHVer1uaLplmLXZGa1StXRdVWUqs5qpa8RyRCKpsm2azCZHXnzl5JFjIpM4ZTrnVafz0IvvepcLsghmPw7a8za9Dc7zWermcH3q6oIvltrsQIKe7LikY4BX0L0hfUsh3/OW5g6nXNx8L235atz4BFD6CgDmW89LX+196vmt12xZs26NzNjcuRmxaq0dHh4qDmaH87WscmFuLkfy06NnXnz+xbf/ws/liwNzlQtDRoE2ZM02lexgNqcIEp2rzpSypWIpU69f0GtzWr2yZfOmifMTtDF3/dVXHjsxZpo65ybnlkMEy9ENnYi2NZQn12/d+NKBA0Mjg5lM5pxeNek8rYsPKbc0VjVtl/hx7dixo7mv97Zv4+0BHbe4Pwa1vODS2atFCqWvIp2llC/1v1ClrwCgf3pe+qquSefPabUaHRHzpC6KNTEzoNIanaa12bwxp1lb1m8yJkyjPjF1XqeKbeq16ZnzRYmphbKs0Jo+c+VVG3RjeiAvccfQq1MiMW9/w0033HDNs8/tKxWuumLN1ge+Mn6mPiepikkcSkyRORlRzOpkdSm7rjQwevTY0bXDxTUjxLFEqQdVsb1je25mEJLftAf7hoXfbt/dt9lmFhV0uCgPqiUP69j/5n9DOuztWMhp8U0Kw7vne7igh+Z7rJa+hZzDKOe8/WyE9zPo9AadQ29Ax/4HnZnU5tkRT1GUl1vc11r7eQt/Afp2OyRmWUHpqyhQ+ipQtVqdnJxE6SuAcLlcbtWqVQtb+kqSMyfGzx4fHV977ZUylSybct3Sq3VxoJjNF6SCsGXrVVOHTwmiXKlr5VKpPsfPXbgg5kuDI5lMJjN1bvKqKzcVsoLTmHUoHS6JAic/87Ydllk7Ktd/4jU3qcKgSmyVEKaI9WrNdoxBVblm/bqrykOri3muV+dUdfL4CaWQJdy0u76mPyQN7TK4YwstWV14TKzDBeX0Hfvvm3BH+dAS67QEdS+82ejHivIQujznsdqM+0sM/73EnW3Sqw8A/X6qR2whbp8j/qKDupTaj0/zCaWvosDEdH+NRuP8+fPr1q2Tkk4OBlgmTNM8ffr0mjVrup84mFi2oNSnpiWZzlYuEEtTM6yuzY5kViiqSHOiUhhggiVnBdvRJZWuGBliZq2uzUlifuaCZlgXTNOmtnPL9u28Xh9Q5blzZ9/0+h05WqeyufPatesGlVMnJlcWs3W7UdVrWYc4Dtmwvvyrd7979thxe2762NHxQUUeHTs+tG6kMFw+PTvVj8fYPvId8W3eO3zY8t9mQNyexIoP6lI3u8fanqD9WIOmUY7bnh/H7VL/4hP0v/3eiJNwgr5/iNjPKCPo7Tl0UGtBTbU34tug75bw11p4TxIHAPhC6St/o6OjmzZtkmXZnUIAAEEopWvWrBkfH9+8eXPEXXpe+ur85GlRpaZVr9aE1QO5jEDMyrTlmJahM14w6rW52ZlSIXPd9VeVSrmx0dFyJi8y7phig1uU6LIo5tXc+pGRH37nu+eJNTZqbRg6WM7cMDSYv/KKK7I59ZRdMerV2RnCRVIeZISQ8yfOPPy1r24eKg9lMuVicboyPXuucer42NpspqjE+EKjJ7pJl+e/2aVqwU9XlMk/C6t9xlFc0We2BO0eMrOoyxb6LT2/xzRA6asoxPal+N05QEGXBaQ53jsHK+gyvoilrwzDkGVZEASk+ADhKKWyLMea0hZS+qr99RvFpk1rZ+amzpwczenlq9ZdMTxcvnBKUAu5rJphTKnq1tSZibOnz5w+PT5l1U6eOXvVFdfk8wV5S27F8PDAwEBWUQfyudPXbb9m5fpz42NPs+9tXLdF4PK5s7MrRgb1Os/l8+vXr63Yo1MaobZDKdFq5MSxYyslSbYs03ZmKlXbJjMXpldUtQbr1+W2QeOCfUo1MHYYXcg8n/nkO+o8P7/HjoPW7aPs3Uw4aZkg1HJhAAn9JqE9wPfX1/HlNp8TZlLyBEuPaPlea+mr9OSrCeITnCWUvgrEGGOMuUcBgCCMMc7jJbU9L31VLma5VSllVUlkLx155cdnJmTOrxvMy4NFZtI8VUQmctOqzVWKK4duuv76UnZgYGBgaCCXFaijVWxuOhLPyeIb3vrml194oSjLWzZvPHr8yCtHX167dvXGrVeu3rz5trcKV0xOjE+crxumJEmiba8cKHKtbtpGg1KdU7VIa/XG3EzNxB+NZQZzo+NKlt+H75JsVL5js2mQ/h4uCJS+6gilrwBgIfS09NWJo4dr9eqK/NaBTLY+PatxuzBYNiw+PXqWTc5aVFAUpTI1bdZ1yeZrVwxMTpwu5A2rUSZqyeGMiFmjrhOzsn//3onxM0ou/8rYqcee2Hf85Lncy+NXn6mOrDo9W601DEu3eDZbyOfzpGHUDUMURL2habY1a9t1Lk6db+SmqrlSsfvTE6RjbhQ0aTjuTOUozSaWkmHIoG50072I+/YjaUt21WzIxl52LnJnetWO7/M8ylXXCY4VdNwuv6lI1sPlCaWvfIlBc4CCpDwepa8AFpGgOZRxveeeW2dnZ0bKpYFcZq7cEO2SysTJidFcscy5NlOpaY4tCXOrVjnEOTU+OinKgiQwgZ7PZgRFUnIZiRvThMy+/PKYYwuFwtDB46MvnzxXMcnYeOPo1I/LgyqllDFRYmI+W8plsow4lqkLxK7W5mYqs9U6kTNUs8hMRbdot9fox7rcM+61of3oQ9wGg26HHCjuZZpBzUbpRtz54gn29Z3SHf2c+56NWG12DI74QLw9Cc9ofXsSKwNu71Lcp2XcR+07S6cnc/FjPZ+7eXIuYVHyPe/7S9ry1bjxCdBVq9fGWoo/k8mkMP6OO+4g0UohWJb14AP3dzwvBw4c2L59uyAImKgDEI5zbtv2/v37t23bFnGXu++5J5PJEkJkWQ4vfaVp2sMPf7Njg+PP/GdZFjOyZDf0uQsXZCaUCwOWbjkNIjBptl5tcFvIilzmNrE1w7QdWVHzjsMNw9BquixlzZr97DMHpiZrhGRrDfb8oeMvn5y05VzdoZVq1TIsVSTEJtQm1CIiI7mMIkrMsDQ1p5i2ZXEnky9aDikVhzglz/74aNLTuVykfO5BX7uX8sfejaX30JbeI1oa3vHOu8rlcni+13x/2bNnT3ry1cTxJ8cOS6JCCSGMURcTGKWECoxRQl69x919ZnoSpa8AYL71vPSV1hita/bJ6QuqJA8MDJgWn5ydVphMHJoRFTljySJ1FKI7usjscj5Xr9clmRmGIRDOLFORpYqmUV4n1LwwN3346OTxszOzDWeuOpstDXE5k1VMbtuGbsmKLMiCaTYqNuem5lCydfOWoeEhTdOmpmcqtToTe1D3aklKeaqU8u4BgBdKX0WB0lex7d69u33jrl27umnQ3b15A2Bp63npK4GKgqzUmF4sDWu6lVNyNqENh0iKaEiS7RiWYzq27XBRVVTdMIlACNVUmRDKCwWJO5wr4rbrb3joX39wZOzCyYk5MTsk2oZEHEokYlk2FyhnoqhahBqUcVlgxCKCIBJ7cKgsClQgdl4RqrO67dgxrz1eLvo0oahXUt699Otmwft0WnqPaClB6asoMDE9id4m4kjrAbqkChnHcQTOrIZJLW4xUxAEzjgRSK2h2Y4pyyJjzLFJQ7dN26KS4HCD2g7lXCAyY2JGlfJ5efXaNU8+N7r16uuOjF+o1CpMzOj1hqpkHF0nhDiEOpRZlBDCHMIZF/SGrTUaxCa22eC2yRyTMgGT+4KkPFuat+6l/Dwks/Qe1NJ7RLDcoPQVAMy3npe+YqbACBUsnpWo4eiq6DjcoIxwmxt6jTFBypY5ESRRtDkTqNjgJreJY9vEtG3mMEEURKao8m233Sbl11N11Uv/+CXCmSQpVqNRnZvJKDIhzP3jwQhxiEMIoZRyTrhtm9yxLMu2bcdxiOPgAh4AgL5C6asoWPtS/O4k/kKx1CxH714W4N5Oc7w7B4sSSgnNZLPNxXPcy/jc2xFLXyXjzuHZvXt3czKP97Z3i3ej78wfgCUspPRV++s3CqfSoHVLdsQ8zZSkXIZIss0EwylISjlbWFEoZ5hYn5lzDNvRDFs3GReJI3DOOTFtu2GYVcOquxfnvv4Nbxo/fX7yzPlCtqjXtawqq6rIOXfX/ndvUEKow6nDVYkwRvkljuNcTPQBAKBvouV7raWv0pOvJohPcJZQ+iqJ9qS8OdnGO7G+ud13tj1m3sOy1fPSV+MvHa9Wq4VCYfLImU2bNo2Nja1YsWK2UjGtRq6QHSyXa/r0yVMntly9VVFVKonUYkSwGSecckIsk3OLM4srlWr1wtkT3/vu45TIipLRzk3JCi0W8pXZWvPrPzeZZ8R2HEuVBMqJbduOY7l3Ec4dfFUIANBnKH3VEUpfJRGSmnvvag9DTg9wUU9LX104NTE2NnbF+s0HXzyW5YN7H3/hpptunpiYmKtUysMDazfQmlk5Mz6x5YrNalZkklwxucM5JQ5jhDObOowzzkSh3mh8+zv7qrVGLj8wO1MZGBjgXJ+duSAKGU6YwwVKOOGcEIc4nHAuCiLnnNum4zicc4cwgRBM1AEAmE8ofeWLNb8dcEVZij/N8ekvfUZGJjsAACAASURBVNU+UQdg2Wp5PSYufTWQLQ4XhwWTDuVK5qyTpwPmNJMaxTWlTTk2pPB8jhVkrqiiSizTMk3COTe5fYnl2A7hXBBePjL6wx/tM21WrxmNhlnI5VRJpo4tikwQBEEQGGNMaCbxXFEkSRYYY4xQxtjF7Zx1eVqCNJd8iVX7xg32/te3Td/4BH2DFOpHHd8u7fBo6U9Ir37j+99vuUED3kyDtrffm6yFiHrSCPiKm++lLV+NG5+AWCiWYi3Fn874iw8mQumr5vUZC6Jlos4C9gRgAXHC3QvfM9lseOmriKP4MpVWD49MnJ7acsWm6XOTK4eGZqYmBEGozdX06RqnNTkvcNtkxLFNzhljomQTzm1u2bZDbYcLhkNszpicdZjoWEyQ5Q2rRs5OjDtOtTw4qJuEcok4jsAJdyglnFJCOclnVVVWqNlwRNOxbEKIQzjt26qZPV/iw10MHkvCwzxrecp1+Qyku3fzy78hR2K95EXJ97zvL+nJVxPHJzlLKV/qf6mWvkJ+D8tZz0tfWTZXVfWqq7domjYyPDwyMnJu8uy5qUnDctZu2Dx2+oRhcDVDT54c23r1lSahnHPTMhnjnDE1U9IMOjtjyTnlG488lskONOaYpIiVSkVVVc7tRkOzuUoZaTQaRGCccMuyFJFwTq6//jpdrzm2SQhhjNm2rciKEy3D91akb25prs7eUrLeGxDUDonwGaBjQt+ee7W33H5E7+BrxB62PNiOD6S9280tIe2H7N7+AL0Ntu8bpQNBJ9b3KOE9D396kE6/kY7dCLmXeH4jvucz5FS0/BjS5wR+4/vf/7s3vtF7o6OQ7N+90by3uT0o3hvpjfH+2BLs/ug9kPezR0uDvmEck3sDoPRVFCh9lUTI5bbhdu3a1bwMF1k+LFs9L3117OTxE6Mzb37jttHjxzdv3riptP7bj+5TskqlNjenn9OthqDKXKQO5aZtGbajm5aUkTTdLhaL46cnBoc3rFyz6h//+duTU/WaJmgWdTgllFPKRVGSJGmuZnHOGWOcUu5YksgcWx8pD+Qy2QY3GlbDJpw4NiGEUhrlj0zH5Kkl9w3JHXs4Ghqlk75HDPnkENLDkKwx+gPp5gwEZduxhOe+IUdJcGai/0bi9rN/TyTf48ZtvH1+jnvDTfTd/Ng3Y/bVEk/a0vSOt321B/t2rLcHXbZQ+ioKlL6KLcG1tr63Q24AQCz/7s0/sfXceZFJA6tHRtasP3l2amTtZkmSlHq1UpspD680icllrhRyVBEkQazXNUpFRiWHy7aVdezS6fH6Y997QTNEk1OHUYcT7ljcsSl1bNt2F8oUBMEmnNuOIot6w7liw7pcPkPsmqUzQgjnnHHCHRp3mo433Qm63Y1kSVXQLnHbCYmP1VT7+HdvJxe1VLdN1oGI36JE6Uz07RHPQ7IngPcbjGTTujoGexsMeq62DN5HH8UPT7K9YUG7RzlK9zv2vAMABKWvAGD+9bz0lVpWb776ta8cPr5t3fpiZuD//PWnRaacP6+tXl20iHHz699cXJG3mG4LjYpRmatVs8VSXauJkjo9Y5QGNx45Ov3/vvGjmSrhQtZhks0JoYQxSh1GHGaZDnEzeMYs23Ach1BKCFm7dq0sSoYguhfaulVtOed2hK8gejh7Ie7wc3uuliB768fFuIv0gt0e/iq7sUjPXq8+qjVT+QUc9vZ+dRDUhygXCURpB1D6KgqxfSl+dw5Q0GUBaY73zsEKuoyvr6WvACCKkNJX7a/fKOiqa0bP7ncyrE65rduzOps5rw0OFA++PEdEcm7aclTbEjQhYzsiz5WzhqFpdSubVQ1DlFj+W9/+7uNPjHFFrWu07hi2YwmCkFHljJSlpmWaJrO55TiiKNqGTQixbTuXkYeHBrmpc+IwRgSB2jZzq1/dfsc7ovS5VwPS859Wxp3fEjE++oUEC3V9cFAH+vfdQkQ9mXE0/6KfrvCJOuHmM/tP/HVB3HYgWr7XWvoqPflqgvgEZwmlrwBgvvW89FVxy7smzvxIyedFQXYaJFPOHTk+WzXmJIkUB6igipmBnO6Ytliv1GrEtGRBYJJgcZLLrzjw4qkf/fCIJGdmNEEnxLC5wQ2JM5ULlEqUMtt2GBO4dTG5F0RqWebaNcO5XK4yVWOciIIgMEaI7da4/eV/v5TfkuNmsViup9+Wwxn+uze+McEsHVjaUPqqo7D1m+v1eqVSqVQq9Xq9WaF9EcU3Gg1N0zRNazQahJOL/wAgDTq9Ht3Xb8RFM9XyLSPX/uLY2dEZ/ZwtV25+/dbf+m9vef8H3/KL99329nfdopaNucbE+bnTmqPZIlNyeYc6jBHCKaPK/v1HK1XCWNG0ZM5lIohUIA6xDctsGIZhmqblUErdGfmO4yiixG1r1aqVsiwR6jDG3PXyOee2bf/Wf/79W153W8cO92moNWKzvuPQCTLFfkzXSdZy960FxXTcN1ZX+z3EHtJ+skP7TuiK1YduvreJpR/j9B3n1URZXz9u41jxM4G4+V7a8tW48RGJQXOAgqQ8Pv2lrwCgKWgOZQIrr/yN1w3eMnP8C8b04Su2jmSVvKE3stlsw9SrWt1wbIMYCpP1hmFzQxEsw7BUkV+YrpwYO5XN5U6cmlIGRuqW4YiUMUaIw7nDiUOpIEmSQwT3Dy7n3P0bMjg4KAiCQJkjUJEJlNLrb9z5Rx//x9fd+qYove3VBO6Wyzf7t7qO7xFbju5dBShKfFBYeyMtYe0fTtp3jHLcoJiQfcM7EHQ5bMSWfR9yRwnOsO+Fwt10puMZ82123r5/8M3+WxbNDNmxedt3Y9Dt9gO1rPMTcokt5uJHESXf876/pC1fjRufAF21em2spfgzmUwK4++44w4SrRSCZVkPPnB/x/Ny4MCB7du3C4KAWvQA4dzR6/3792/bti3iLnffc08mkyWEyLIcXvpK07SHH/5mn3q+tC3V+Rv9e1wRW+6yA0v19+IrPQ8Wk9qXmHe8865yuRye7zXfX/bs2ZOefDVx/Mmxw5KoUEIIY9TFBEYpoQJjlJBX73F3n5meROkrAJhvPS99BZDA/CSg6UlzAZYMlL6KAqWv/MmybNt2slWKAJYbwzByuVz0+J6XvoJ2Sy+t9J0I1I24s1OSdaBXE3IgmSgTcmDRQemrKDAx3d+6devGxsY2bNigdJosBbDMNRqN8fHxlStXLnRHYInr06UF89CBZZvWp+GBI7mHZQulr/xls9lyuTw6OlqrRVqzD2DZyuVyIyMj2Ww2+i49L30FAADLB0pfRYHSV/4opYVCoVAoJDinAMtQrAvTe176CgAAlg+UvooCpa8CYS0dgD7peekrAABYVlD6qqOwufhxp/mnLd73Mj4ASIVOM+bc12/E0leLy+zs7NjYmGl2/kZRkqQrrriiVCrNQ68AABapuPle2vLVLi+rDcLkS5NfXVGW4k9zPEpfASwiLa/HbkpfLSKjo6OGYfAIDMMYHR1d6P4CAKRO3Hwvbflq3PgExKA5QCRgKf50xl98MBFKXzWvzwCAhcIJdy98D5pDSS69fpfkKP7Fv2+yfM011xBCXnrppUajsXbt2jVr1njD9u7d2wz22t1W335X6Johu3fvDg+IJXpr7ZGxetLl7okP4f2xt4cDgF6Jku9531/Sk68mjk9yllK+1D9KXwEsPcu89BXnXFGUa665xl2T9+qrrz58+PCxY8cMw9i4caM3LKiFfue+KeF9XO0fbPrEeyaX6okFWOxQ+ioK5i6tX6lUKpVKvV5vfkEcvhR/2uI1TdM0rdFoEE7cf12WvgKA/mkpTdLx9bvEOI7TzO8JIW66L4riyZMnH3vssccee6wZ5orV+O5Lmj82N3pj2m+37BjeWsddOvYwpCcJHmZQ38J36WjXrl3hXe14QnzPPwB0yTAi5Xvu+0uq8tXE8QnOEiamAwDMK8dxnnjiCcdxbr/9dkLIo48+yhhTVVUQBO/ixwk+57QMe+/atctNUr2pasQdw1vruEvQ4Xx3D+LtfEu23X7ooG6E9LYnOh4i1kMGAOgVlL4KVK1WJycnUfoKIFwul1u1ahVKX0XnOI73Oiq3SkB7Qh+S4ieYMt6eLnvz9Z4L+lDRcrhkPQmKbN8+Dyl18xDRewUAXULpqyhQ+spfo9E4f/78unXrpOWxxAdAYqZpnj59es2aNdEv/1/mpa9aJtl7f9y5c2fz5Nx2222NRuPpp59ubyFkQDrxhBDfHTuO/Sc7VvcSHHoeeovZOADzA6WvokDpK3+jo6ObNm2SZdltAQCCUErXrFkzPj6+efPmiLss89JXLY/6DW94AyFkdHR0bGzs6aef3rlzZyaTIYRomrZ3796Qi26JZxTcuyVZr3x3DG9tocanW6bBRNyr371N1isASAalrzpC6St/hmHIsiwIAlJ8gHCUUlmWY09pW8alr3wHGjZu3Mg5P378+FNPPfW6172OEPLUU085jpO4zHb7AL/380DI3Bjf7eETaaJPswnvVbvweztm0gkeS7LIWL0CgN5C6StfYtAcoCApj+9h6SvGGGMs8fsrwDLBGAsfaQ4RNIdyaZMkyf2r9fWvf927XZZlURRt2/7ud79LCFEUhVLaca5ge+Le3N6M6Ziq+u4Y3lrHXcIP1M2YureRoBn/LUcJeiztvA22fD0S/aEhywfotyj5nvf9JW35atz4BOiq1WtjLcWfyWRSGH/HHXeQaKUQLMt68IH7O56XAwcObN++XRAEpPgA4dw1v/bv379t27aIu9x9zz2ZTJYQIstyeOkrTdMefvibfer5Qjl//vyhQ4ei/O1219NcsWLFPPRqAWGpGQCI5R3vvKtcLofne833lz179qQnX00cf3LssCQqlBDCGHUxgVFKqMAYJeTVe9zdZ6YnUfoKAObbMi99tWLFCnf+PRDk9wAQH0pfRSG6S+u33xG+FH/a4jVNa4lH6SuA1GopTRISAEse8nsAiMswGhnh4krN4aWvCCGVSsUbsLjy2/b46HAtKQAAAADAkoLSV7G1X0eVtlEofPENKbfMS18BAEA3UPoqCpS+SqK91gxSaoDolnnpKwAA6AZKX0WB0lcAMN+WeekrAADoEkpfdYTSVz0WtIx0x40tlRHbb7c34t7VEoDvE2BxWMalrwAAoIdQ+soXSl/1UlBqHnFj3JZ9G0TJFVhElmfpKwAA6BJKX3UkBs0BIgFL8acz/uKDiVD6qnl9Rjda0mhvAcXwHX0DWurJt/83VoMorAjpxwl3L3wPmkNJLr1+l+oo/vxftY9LhgBgyYiS73nfX9KTryaOT3KWUr7UfzpLX4W8U/q+c0evDA+wHCzz0lcuvPABAJJB6asoUPqql1qm0DS3+86xiTVRB2ApQekrX+1z8Jr/JZ0u7wmPxF8YAFhKUPoqCpS+6gtvfu87bcZ3o3dmTpRZOgCwlDRz9PZc3/u9X3NLy6y8kEhM3gMAWG5Q+qqXvKNo3mG27ifqdIzHuzgsIih9RYIv6Wnhe71NxEjvXfj7AABLBkpfRYHSV7FFvP7VGxZylW3IxpaAju/0GPKHxQKlr0joZ/UoS2z1p1MAAIsASl9FgdJXADDfUPoqSJSltIKu+QEAWD5Q+qojlL4CgIWA0lfRhKT7yO8BAAhKXwVA6SsAWDDLufRV+1x836vt29fJ8b3mxxem4APAUoXSVx3RVavXxlqKP5PJpDD+jjvuINFKIViW9eAD93c8LwcOHNi+fbsgCO7XJQAQhHNu2/b+/fu3bdsWcZe777knk8kSQmRZDi99pWnaww9/s089Tz8sqwUA0O4d77yrXC6H53vN95c9e/akJ19NHH9y7LAkKpQQwhh1MYFRSqjAGCXk1Xvc3WemJ1H6CgDmG0pfAQBAYih9FQVKXwHAfEPpq4gwhA8A0A6lr6JA6SsAAAAAgCUFpa/8ybJs23ayWgMAy41hGLlcLno8Sl8BAEBiKH0VBWtfit+dxF8oluTmJQuKUigU3dtpjnfnYFFCKaGZbLa5eI57GZ97O2Lpq3Xr1o2NjTUaDQ4AoRqNxvj4+MqVK6O8slwhpa/aX78AAABe0fK91tJX6clXE8QnOEsofeUvm82Wy+XR0dFabXlV3gGIK5fLjYyMZLPZ6Lug9BUAAHQDpa86Qukrf5TSQqFQKBQStwCwrMReXhalrwAAoBdQ+soXSl8Fwor4AP22nEtfAQBAYih91RELmgNECNG1eq1aqVUrulZvzrtNc7x3DhYhxDAauq7pumYYDU64+0/1BADAgmi+HoPmUJJXX78YxQcAgMtEyfe87y9py1cTxCc5Sylf6h+lrwCWHpS+AgCAxFD6KgqUvgKA+YbSVwAAkBhKX0WB0lcAAAAAAEsKSl8BwHxD6SsAAEgMpa+iENuX4nfnABWKpcrcrHtU97IA97q3NMd752BlslmtXnd/6+5lGW7Rq4ilrwCgf0JKX7W/ficmJhaqnwAAkELR8r3W0lfpyVcTxCc4Syh9FcxuCD/+H+zCM7R+MuouAMsMz653yq+1X/M/iBDjev9Ypa9i1c0FAIDlAKWvOkLpqwC2Jn/vDr5SIttKXLkheTsAS1vDFCZ+KHznzcbbHiNCnBVpUfoKAAB6AaWvfKH0VUDYoT8mWZusWkkIITYW9wAIIAp87RCtnxYP/bF1w8di743SVwAAEB9KX3UkBs0BIoToWr39soB0xl98MJ45WIQQw2i0X8YXsfQVO/U9fsMw6fpbEoDlgK8ps9H9MeIJdy98D5pDSS69fjGKDwAALaLke973l/Tkq4njk5yllC/1v2Clr/QZQocxfg8QiSSQmVeih6P0FQAAJIbSV1Gg9FUw5PcA/YHSVwAAkBhKX0URaWL6MuVglg4AAAAALD4ofRUMo/gA/YHSVwAAkBhKX0WB0lfBkOID9Ees0lcAAABeKH0VBUpfBUOKD9AfsUpfLUD/AAAg3VD6qiOUvgqGFTP7YOd/uGxFo71/L3u3N3+EpQ+lrwAAoBdQ+soXSl8Fwyh+r+38jxYhZO+//MbFH+/6u53/wdj7fzy/EZzzZQalrwAAIAGUvuoIpa+CId3sk5N/7/5/70O7CCHk1KdbbsOSh9JXAACQGEpfRTpLKV/qf8FKXxEsmtkPlBCy8zedvf+bE0LIyb9r3rHz53YTQi5uJ2Tnb1P3x+aNoI0tfOMj7gvzBqWvXDt27Gje3rdv3wL2xLVjx46edMP7uEiEh+bGp+EMAMCigNJXUaD0VTCM4vfa3q/+xs6f/zRpJtyf9P5OBUIunvOdvyMQQvZ+9T43uLndjdn529S9a+dv08tbaG2n/XanfWGeoPQVacuDe5VeJ9bSnx620/GhpSq5f/TRR5u3b7/99pZ7d+/e7d7YtWtXnzrQPET4UXbv3u3e642P27FmIwDzyfvES/YkROmrKFD6KhBHit9zx/9271f+485f+Af3p52/Izz9v5prmArk1XMuEEK4J9i7fe9Xfp0f/1tCJOL/O2prJ8a+kFzkj85AiCcPdrNb98eWVLglxrtx3759LTe8Ye0x7bv7RgYFdOxD+wNsbyHkcQX1M/y47YeOu72Fm9x70/qWLd3nJR21NBtyFO92pOmwiLR8KIX+YZxzXavXqpVataJrdX6JLF+2tol3Kf4Uxuu6puuaYTTcOb6c8JbLahOWvsK/Xv/jx/5m75ffv/fL73fP8S3/Vbp4l/ecX7rNj/1N+3Z+7G9a473//NqJui/+dfMvDu/r0TAaHV+/S1Uz43Rv+Oa4JDRLDgnzjYklYh/C7du3L/rjinvcbm63ePTRR2+//faWYXvvjy3Z9q5du7yZyu5LvFua270xIQHhfHfvGN8S1tKfKO0AzIPoLwSXYRhR8j33/SVV+Wri+Ogn59VTkfKl/hey9BXm4vcHP/opQsjeL/2nnff8EyGXn+dubnt1sy/0H0pftQsaw/Yd4PeO/Xtvt7fpu3tIZNDI+o4dO9obCWnT9zKDjh2Oddz23D18e1BrLZoj982k373RHuk7ou97281dmrd9A3xH4qNHtgg/invD/ZSCbwBgPrlPufZPnrGe3gSlr6JB6atgFiZy9Ngtf5AnhDz9J1VCCH/5U4TkCbn8PF9+240Pj/E/UsC+t/z3rHv0sH2h/1D6Korm0H6yYfgud3eF7BuUKLcf0TerDs+zExw3JKDjGWgm8d4b4btE0XEuTfvGluzHN6C9nfYrBMLzJKT1kCrJnpAofdURSl8FWwYX/M2zvZ//lZ33fu7V5JuQvZ//Ff7Kp16NcBxvmHujud0b43P78kP47tvc2HpcmH8ofXW5Bb/ctoeCZuakXMtove/I/TyIOBc/aBfvvr3sFkDX+vetEUpf+ULpq2Cobttr/PBf7n3ggy1b3Bt7H3gfIYS//FfeMH74LwkZJOTi78Ib473te4hXb3hiLm8ZFt4yL33VTOuDLrftZgy+4+5RWk7wqSPiCpjhYd182mlvuU+fnfqRr/SqzZaJOt03CNAT3ktBunyqo/RVRyh9FSzmFYQQBT/0yY7bb/mToaf/4PIw22mJCWrHe5dPjO2E7AjdYdFDUfrKO0veuzHo3mRJascVZoJ2ca+RdWeut3Q77qFbdm9vM0pMlMk5vi13+SiIZ2i/ZeZ6T3LxBI3E3cU3v8cUfFgQPXz5oPRVpLOU8qX+F7L0FVL8BbL3c+/d+SsPeH/sWV6O32kfxUjxUfqKtM1Zb7+itMv83ndRy5ZmWzrQngqH9LDjcX13jPK4uj9u0BHDW3OvrG3+2L6GpneifNDqOrESl+aO3jn0vnPx2yOjt+ztW3sjSPdhMULpqyjowOCQ7x21aqVlSy5fCGloYePvfPvbW+7V9dZiWKqaIYRoWv1LX/piyIFc8v+71uFdfT8C3aDX/27zNn/xL3rVYE+aAl+MysbPHooYfNddP+t+LA/SfP1qmvbww9/stnPLTMSpMuAVtGxO+F3dQG4NkNjP/dy7MpmLpa+C8r2mhx95xPvj4spvm44deV4SFUoIYYy6mMAoJVRgjLrFadx73PiZ6cllsfh0QlhUceHwA/8z5Q1CK2GhOzDvOOeEkObfU1jUfBfHbB/IBwBYLETOeXPpTe8coKDLAtIZ736G887BCrqML17pKwCIKE6K7309NpcuDnn9dqPZOCHErTPiDn/4Bh88eNBxnBtuuCFKy7Va7bnnnrv55ptzuVxPugoLq2WiDulzco8hfIDEDMNoXloZku+57y+1aiU9+Wri+ARnCaWvgk5MgehVwiN/HgBYzigj2bXRw+en9BXn/ODBg08//fQ73/lOQsgjjzzygx/8oFqt3njjje95z3s2bNjQEv/ss89+/etfv++++yK2n81mZ2dnP/vZz77//e9vPqI0wBSdxDBgD7AooPRVFCh95c8ZeT2tP8SNpbmaB0BvUVlyBrZFj5+H0leGYXzlK1956qmn7r777oMHDz700EPlcrlUKj3xxBMPPPDAY4899ulPf3rt2lc/lpw5c+Yzn/nM+9///jVr1kQ8BGPs7W9/+1/8xV987Wtfu/fee5P1EwAAEkDpq45Q+sqfffOfSpM/IPYkt0xMygcIxAQqyzS7wrr5T+Pt2M/SV7qu//Vf//WxY8c+8pGPHDly5OMf//jv//7vv/71ryeE/Pqv//p999338MMPf/nLX/6d3/mdi33h/LOf/ezGjRtvvvnmWAeSJOnd7373H/3RH91yyy1btmxJ0FUAAOgSSl/5Qukrfw5TrZ9+Unj2D9mFZ0j9ZJRdAJaj7Hpefq118x87RExw2Wk/Sl85jrN79+4nn3zyU5/6lGEYH/nIR37pl37Jze8JIVdeeeUHP/jBJ5988vHHH//ABz6gKAoh5MiRI0888cQnPvGJBIfbsmXLli1bvvjFL374wx/uvvMAABAFSl91hNJX/iilNhf5jj/DchkA4TjnjuPEeqX0tfTV448//pnPfOav/uqvVq9e/aEPfUhRlHvuuccbcNNNN61du/bs2bOGYbgp/re//e2VK1du2rQp7rFcb3nLWz72sY/dd999IyMjyVoAAIDoUPoq0llK+VL/C1j6ilLqrr+R4LQCLCtxPwn3r/RVrVb75Cc/eeONN956660zMzODg4N/9md/NjR0WfWPfD4/MDAgiqLbbdM0f/CDH9x2223er/g450eOHDly5MhVV121ZcuWqampw4cPz8zMDA8Pv+Y1r5EvvYW4rr322nq9/sILL7z1rW9N0GcAAIgFpa+iECmlvnOAgi4LSGe8prUWPgi6jI8SjMoDLDDv69F3DmXi0rbPPPPME0888Zd/+ZeiKBaLxd/7vd9rn5tn27ZpmqtXr3Yz9ampqRMnTmzdutUbMzo6+p3vfCeTyfzt3/7tBz/4wRMnTmzcuLFUKn3sYx/7+Z//+fe9733e4FKpVC6XY6X4LfVfXe5KODt27Ei8JE6sZptbQu4KaT+8k1Ha7NhayC7N7d2crrQJOe09eYxBNdFCqhH7xngD4m5fKN5zuJSeM/2T8rNkGI2McLH0VUi+576/VCqX1ZZaXPlte3x0KH0FAEvH448/Tgi55pprCCGMMff7gRZTU1MXLly46aab3BT/7Nmz9Xp99erV3pi9e/e6AR/+8Ie/+tWv/uEf/uGqVasIIffff//Xvva197znPd6BfFmWV69effTo0ej97F+2EdJaxGO5YR1z9JDWwrP5iK2F79K87dtVaBd+lmJ9YAv6cNhxe0qkqjMA/YPSVwAw3/pU+spxnIMHD2YymVKpFBL23HPPiaL4tre9zf1xbm7ONM1isdgMsCzLsqyrrrrqW9/6luM49957r5vfm6Z5/vx5VVVbqpAwxorF4vj4uOM4vh8qEmgfriZdj4x2kw237xi9teZnhriH8+7ScqyOxw0atfWmob6t+Z75lpZD9iJtn9/i/irDOxDlOdAe427xHcVfwPy7JyfNGx/0m215+C3Ph2R9CPm+pZvO+56fWF+b+j03SAAAIABJREFU9ORpmf5PQSh9FQVKXwHAfOtT6SvO+czMjGEYIasQaJr20EMPvf3tb7/xxhsv9sE0Oefe+TyCINx11125XO6HP/zh1q1bt2/f7m6fmJg4dOjQr/3ar7X/tZVl2TR79rclKCVN28hoxFklcfsZ96El+OgSZfjZt824v5qexHfsdseY8FO0IJNq5uekhT/8bvoQZVZV3M4nbqfnT8tYH8gXBEpfRYHSVwAw3/pU+opSWigUpqenT5w44c7VaffII4+cOXPmox/9qOz5xoBS6v04QSnN5/Nzc3PPPPPMa1/72uYA/759+yqVyhve8AafR2RZSqIVD3x1k2a1vze3DH6HZ8MLMgEmej4RfZSx2f/2/0bZPeIhOkb63hU3vt8WxUfHiPG96nz0337cHRPEx/3E233Mvphfuy0IlL7qaDmWvqrVarlcLlZTANArtVqNkL6UvmKMXX/99V/84hf37Nnz1re+tf1C20OHDn32s5/90Ic+dMMNNzQ3FotFSZLm5uZagk+cOHHy5MkPfOAD7o+2be/Zs+fKK6+84YYbjh07pihKszgu53xubm54eLhXs3SCRHnTXfD8LKKWqQLN2+GDzR3HPmPx/TiUeK5C3JQoWQrV88RrsTxhSKKPgr01n0+PKBN+oAmlr3wtu9JXsiwfPXq0+R09AMyz48ePU3oxFe556auf/P/Zu/cgSa6zUPDfOSff9erq7lHPS6MZWbbMcFl28dgYsOQLyEhC4DVcLBa84R0wdxwOB48I2AWby3p5XAV/4A3ug/DS7PUd2AXbGIyRrbBNiKtrR7C+ssdgyzayLUujmemR5tHTXdX1yMyTmefsHzmdk1NZmZWV9ejs7u8XExPZWV9mnsrq7Prq1Mnz/ciP/NEf/dGf//mfv/GNb3zLW94S5dxCiC996Usf/OAH3/72t7/5zW+Ob7KysmIYxtWrV7/ru74rvv4rX/mKlDL6W/Hyyy9//vOfP336tGVZTz311P333x9Fcs6vXr36xje+ccLGjzSVbCyjez4+ZDlaM7sUcOTAiZHxk8g5IHvCvU0rPtm8fSjnc5/pgJPCHzILvHBDj7WffwEGYOmrkfZd6atqtfrXf/0xTPER2ikf+chfMoXNqPTVa17zml/5lV/5nd/5nXe9611f+tKX3vSmNzUajfX19S9/+cubm5u/8Au/8D3f8z0Ds/gvLy8fOXLk29/+9gMPPBBf//TTTx87duzYsWPhj67rqqp68uTJL3/5y5qmxetkbW1tbWxsDHxC2KWSg78zgmfxAWDgiDP6jDHd3U54J8DOKlVjJrfHng5Kg6Wv8qDh1PoHDx0+eOhwo7Hgui4hhBASHQ+2bwsI15czvtlcbDYXK1blZikEcuv1hu3bMggQAkRIef78i3/zNx8vcLIQQhP60Ic+9NWvflUKEV6PYWmS7Ot3LIqi/PIv//IHPvCBkydP/sVf/MUv/dIvvfe97/3MZz5z8uTJ97znPa95zWuSVbo0TXv961//j//4j/GBj0EQHDx48G1ve1s0EP/YsWPvfve7n3nmmW9961sPP/xwfBTQN7/5TV3XT548WaDBhU3SPTl0oO3Q3OhcbLqP6SbfQ78rOHc7mKzPcmDwffZ3F8nlsZ5C2sqROxw3vnBwzh2WIT/O+TXIVGLGMs+GFY6ZyrMu/3CgW6Wv0vO96P2lVPlq4fgCZ2k/lr6SID/84Y8888xX3/rWn7rrrmM4Lh+hWev1eufPv/jhD3/oa1/7uqZpsyt9BQCmab797W//yZ/8yWvXrnmet7i42Gw21cyvdB988MEnn3zy4sWLUd88Y+zXfu3X4mPrVVX9uZ/7uX6/r+v6QHXbp5566vWvf/3KykrhNucxkGRnDFhPbjhyb1NsQIG95bxBcHZHT1vO2ey0PUwrfuijeVqYFpMRHzfwASm5z3HX52znyJOW8bwyzm30YTVPG/LsPH9Mgd/esfYzlYNmn7oyfPaLw9JXeZCF5tLQB3rdzsCaSrWWsaOdjX/owQcHHg1nyo8ztr/7CIVTX0sptuMHxwNE8/oNhfEYj/FjxVNKGWNR5/fA9ZiIv3n92rb96U9/KiNyKoIg+O3f/u0DBw784i/+4rjbXrhw4dd//dff9773fcd3fMcs2rYbzTkhKGH+ESptw3Lakfbv6pO2qxu/u7zlLT9hmjdT/JH53qc/85n4j7srv4288O1nVEUnAEBp2M1PKKOEAGGUEoBbj4Txrc1r+7H01e2ldm7uX1XVgXiFKcPiNYzHeIyfPD5cmG7pq8IYYz//8z//+7//+88+++xYmbrv+3/5l3/5wAMPYH6PEEJzg6Wv8qDJqfjDzwa1eiP6Mjq8LSBcLnN8fAyWaVlRf2F4W0a4nCy1g/EYj/Fljp+P48ePv+1tb/voRz96/fr1nJtIKf/u7/6OEPIzP/MzM23brlNgFFBh2G86O3hiUWmN+/5Stny1QHyBs7TfS19hPMZjfJnjxyp9NaE3vOENuq5fvnz5wIEDeeK73S6l9B3veAfez5M0t+ywzGlomdtWWrv6pO3qxu86476/lC1fxdJXE8WPWwoB4zEe48sWP+6kmZMghLz2ta+VUkopkxPvJFWr1QcffDBPJEIIodnB0ldD0YGpIfJMxV/m+DylEDAe4zF+l8bPGiGEUpozaw+/Y511kxBCCCWN+/5Stnx13PgCaNoYIABw7H6v2+l1O47dl9vKHB8fgwUAnLuOYzuOzbkrQYb/0sZsYTzGY3wp4+fXi48QQmhXGPf9pWz5aoH4AmeJNBYWK5VKfAxQ+IDd78WHATHGDNMCACllCeMf/JEfgWgMFgAAcPe20jmUUk3TAUCCNHTjtjFbGI/xGF/W+PlMmjln7Xb7woULnueNjFRV9a677mo0GnNoFUII7RaPPvo/MeXmJDMj31+e/Pu/L0++Wjj+a8/8t7EnzdwtU/1PsfRVnlI7GI/xGF+e+D3mxRdfzJPfAwDn/MUXX/zu7/7uWTcJIYR2ESx9lcdcp6VDCCEUToGsadqrX/1qAPjmN7/puu6RI0cOHz4cD/viF78YBcetrq4OrDlz5kzG4VZXV7MDxpJ/b8nIsVoy4eaFDxH/cbqHQwihecLSVxiP8Rhf9vg9Rkqp6/qrX/1qXdcB4N577/3GN77xwgsvcM6PHz8eD0vbw6xz35KIP6/kB5sZiZ/JvXpiEdrtsPRVHkpyKv5wDFCt3uhstW/2Nul6rVYP73src7wQwuM8HINlWpbd74evenhbhsc9iJVC8H0/HAsV3s2gqKrneVE8UxTb7gMAj5VOAACK8RiP8YXigyCQUiqKMvR6hPTrd+8RQkT5PQCE6f4//dM/Xbp06YUXXgCAH/qhH4Kio5WiVDjMTcMfw//j6XJyeWDD7L2N3CQjM44HDG1JgacZbT7QtoznksfADoeetORBh7ZqrOMihLKNle9B+fLVAvEFztJ+LH0lpeScv+51r/vZn/2Zo0ePxm/KRgjNgm3bL7/88kc/+tfPPPMVVdW4x0tY+mpuhBD/8A//IIR44IEHAODJJ5+klBqGwRiLd9UUSPGTaWiUgGb3gmfkr0P3NnKTtMMN3TxNvPHxp5D2wWBoMyb8LDHSyEOM9ZQRQjnlyffi8WXLV7H01UTxaaUQOOfvfOc73/zmHwcAnNYaoTmwLOvuu+/+9V//Xz/xiU/+5/981jCMkZvMv/TV3Agh4hMeh2cjmdBnpPgFhown0+V4vj51aR8qBg5XrCVpkcn1c0ipo0PkbxVCaLqw9NVQStoYoDQlj89TOud1r3vdm9/845jcIzRP4RX34z/+Y1/5yjPPPPNMOF1x2hjKvW1gkH38x9e+9rXR5583vOENrut+4QtfSO4ho0O68Jj1oRuO7PsvdqzJFTj0HFq7gycEof0mT+mr+PtL2fLVceMLUNLGAAGAY/eTtwWUM/7mk4mNwQIAzt3kbXyqpj366Fsxv0doRxBC/tW/+okv/eOXwimN08ZQwvb1u1d78eM/3nfffQDw4osvXrhw4Qtf+MJrX/vacPSgbdtf/OIXM266hdsHi0drirVq6IbZe9up/ulit+HOurU7cnMwQvtTnnwv/v5Snny1cHyBs0Rt224sNA8eOnzw0OFGY8F13XBC/eh4sH1bQLi+nPHN5mKzuVixKp7nAQEgt15v2L4tgwAhQFzXOXbsWIEzhRCaijvvvJO7bng9cs4rlWr29bv3iG3xlcePHz927Jjv+08//bRt27ZtP/30077vFz4PQ+fWjNLQjLExM+3Oz25VUvajI49b4LkMRBb4YID5PUKzZpnWyHwven8pVb5aOL7AWdqPpa+q1Wpy/wih+ajVavu89JWqqmHHzCc/+cn4ek3TFEUJguCpp54CAF3XCSHqqC+jk4l7tD6KGZmqDt0we28jN8k+0CR96vGdpI34HzhK2nNJiu9w4OuR/E8Ns3yEZgpLX+VBFppLQx/odTsDayrVWsaOdjb+oQcfHHg0nCk/zjDC7777H//432QcCCE0aw899HCzuZgREF2/tm1/+tOfmkuj5md9ff3ZZ5/NM8gynE9zeXl5Dq3aQTjVDEJoLG95y0+Y5s0UPy3fi3z6M5+J/7i78tvIC99+RlV0AgCUht38hDJKCBBGKQG49UgY39q8th9LXyVPHEJonvZ56avl5eVw/D0CzO8RQuPD0ld50ORU/OFng1q9EU3rFt4WEC6XOT4+Bsu0rHDKDti+LSNcjm7OQAjtlGjSmGTpq+T1i/Y2zO8RQuPKl+8Nlr4qT75aIL7AWdqPpa/GPkkIoYSzZ89eunTpV3/1Vy3LGndb3/PCIeb7s/QVQgihCWHpq5H2Y+krhNCEzp49+/nPfx4A3v/+9xfL8keOmNvDpa8QQghNEZa+Gmrflb7K+e3/qVOnhq4/d+5cns2LOXXq1Ez3j9DUra2t/d7v/d673vWuO++8s8Dm+7P0FUIIoQlh6auRaNoYIABw7H6v2+l1O47dl9vKHB8fgwUAnLuOYzuOzbkrQYb/DPO2+6zLI+1DBUIldPr06e/7vu8Ll2/cuPH+97//0qVL+TePrse0MZRw6/rFXnyEEEK3yZPvxd9fypavFogvcpbCqfWTY4Dsfm/gtgDDtACgnPHhBHzxMVjcHSyFoGk6AHhero9EUW96mHln/JgdCcM6/pMPRWviO4kn/di7j8rm9OnTABAO17FtOxyxk7Mv3+OeZRIACEuTJMdQxq9fhBBCKO5W6av0fC96fzl46HB58tXC8QXO0n4sfZXceTFhCj50dE08Ox8IyHgobQ/ZkQjtlMJZ/j4vfYUQQmgSWPoqD5yWbjznzp07depUMuFO9r7He+ij+LSHwt1Corce03pUcqdPn7506dLa2hoA2Lb9gQ984LHHHtvpRu0Cyeqns547EqefRwihfQVLX00kSs2TMsbW5x92nzHaB6EyOHv2bJjfA4Bpmu9617vybLXPS1+FMOFGCKFisPRVHlj6qqSGfkuAUKlEU2cCgGma+cfiY+mroeJd++Fy9P9Ar//qtmT80MiZNhshhOYMS1/lgaWvxhaN1YnWjDvGJmeXfPJmXITKo3B+D1j6KsWZM2fC4TTxQTXRcnIhbXnowtyfDUIIzRCWvhoJS19NX/IzAGzn6xkPhaJPC5jWozKbJL+/ad+XvhpIu9PG7STX54+MP4RZPkJor8LSV0Nh6avi4ll78qG0KS/THkqux0kzUfkdPXq0YHVbANjfpa+GZuQDXfhpMF9HCO1zWPpqJKVWb3S22uFewjFAUbeZY/eTtwWUM/7mk1FV0zSj0facu8nb+MYtfTU0t84zJqfAQB2cTgftFuF0mZcuXSqW34d1SQDAtCy73w//Cg+9fvdwL/5QyYE6aTHR8ryahhBCZZEn34u/v5QnXy0cX+QslXyq/50qfYUQyhZm+cVg6av8MtJ9zO8RQvsTlr7KA0tfIYTmDUtfwbCx+FE2n1yG2MCe+JrsLB+H4COE9iQsfZXHvpuWDiGEdlzaQPyRywNrkgsjt0UIIbQfYOkrhNC8YekrhBBChWHpqzyw9BVCaN6w9FVO2AePEEJJWPoqDyx9hRCaNyx9hRBCaBJY+mokLH2FENoJ+770FUIIoanA0ldD0ejbgVCeqfjLHD/P0lcIoQkNXI/7qvQVQgihwsbN98qWr44bXwBNGwMEAI7d73U7vW7HsftyW5nj42OwAIBz13Fsx7E5d8NSOxLkuKWvEEJTF12PaWMo4db1i734CCGEbpMn34u/v5QtXy0QX+QslXyqfyx9hdDeg6WvEEIIFYalr/LYj6Wvrl69mtw/QmhusPQVQgihwrD0VR77cWB6s9nc6SYghBBCCCE0K1j6CiE0b1j6CiGEUGFY+ioPLH2FEJo3LH2FEEKoMCx9lQeWvkIIzRuWvkIIITQJLH01Epa+QgjtBCx9hRBCaBqw9NVQStoYoDQlj8fSVwjtImljKONwCiyEEEID8uR78feXsuWr48YXoNTqjc5WO9xLOAYo6jZz7H7ytoByxt98MqpqmmY02p5zN3kbH5a+QmjHhXVJAMC0LLvfD/8KD71+HcdZWVnZybYihBAqmTz5Xvz9pTz5auH4Imep5FP9Y+krhPYeLH2FEEKoMCx9lcd+LH2V3DlCaJ6w9BVCCKHCsPRVHnSSjRFC+9ba2tpzzz2Hs9cjhBBCJYSlrxBCY1tbW9vc3ASA8+fPnzhxYty72LH0FUIIocKw9FUeWPoqlX72bPLfyE0GFgqYZFuE5sxxnOeffz45Ui4blr5CCCFUGJa+ygNLX2WRZ84MrJlwAqOcB53DURCaxNGjRwEg7MjnnId9+Wbu6aqw9BVCCKFJYOmrkbD0VZaMVDve1+6ePp2xk2SkfvZstElymayuxsOizeNHia+M7wGhuYln+UEQjJvlY+krhBBCU4Glr4bC0ldF6GfPxjv4o6R8ksiRm8dT//jKsVqO0BRNmuXnK32FEEIIDcDSVyPRtDFAAODY/V630+t2HLsvt5U5Pj4GCwA4dx3HdhybczcstSNBjlX6KmMgPo/J3kkyUp45E+4tTNbjywPbhoN2kkeJViY3QWiejh49Gg2sD4Lg4sWLebaKrse0MZRw6/rFXnyEEEK3yZPvxd9fypavFogvcpZKPtX/zpa+GkigpzVEPr6ftOWcR8RR+2hnra2tRVk4Y+zYsWN5tsLSVwghhArD0ld5YOmrLJhAI5QhmjoTABhj+UfpYOkrhBBChWHpqzxwWjqEUBGF8/vZ+cQnH/93//4PP/fZpwCAABACAQdKwbSIaZpSyvBDO1NVoGSpubhUq/ndnuj3iecxKRcXFxcXFy9fvdLr213XVTRj5eBhzTBcn/d6HUmE67pHjhxpLh24du3apcsvuR6v1+vtTufa+gbn8MNv+sHf+I333X//G3f2JCCEEEKApa92ijxzhqyuhkPt48vj7gcn0Uc7YsL8fhalr37hnf/6z/70g0IIkEAIUAqEgKoCpUAplVIKIYIgkBKAUsusbGxs3LmyUqnVvU7n2uXLzaWl5uIiECIJOB7nvl9pGIZl+n7Q7/e7/Z5t9w4cOHBh7VIgiQBpmuaVa1epohBCdF31PO+pp5767Gef+s3f/J33vve3Rrb21KlT4cK5c+fyrJ+F8FjJA0VtiMyhMQghlB+WvspDSU7FH44BqtUbna12eNTwtoBwxG2Z4+NjsEzLsvv98FUPb8sIi17lL32VIUzK4z+mZedpkWn/j3v0gf0jNGeGYRSobptR+ip5/ebxiU8+/md/+kEppZS3puMkhBBFAiEEmBQk8KUIgBBCBLF7jgy89marcfDg5fX1Q0ePNBt1TdPOnz/vBj7VVZUQwzRN0xRCaqbuBdzh3KzULq691G71FhabAKBpWru9ZVmWquiSeCIAxti/fey377vv/vvuy9uXf+rUqSiBTubWJRFv5E558skno+UHHnhg/g1YXV09k5jeYOhKhBAArG4nJ/FrJLmy2EWUL98bLH1Vnny1QPy4pwiw9FWGjMR9YCqb+FQ54XI8lR8aObD/ocsDDRi6T7xbAO2IcLpM27YL5Pcwg9JX//GP/sPAGilBSqkoKiGSECKlBAC6TQTC0HSP+47jEKYs37FCKXR7XReEVjFBU71u3xPBVq/rcV9RmVmpBQQ6nY4k9Op63/ZcSqmqG+12hzAaSMIY+D4IKQkhjz32u5/61NSG68Tz/oEPA+fOnRvoiZ/ilwMD+4yy/KFHHHgouTK7/dkNC5P7eFqfXIMQKpV44h4tD11ZGJa+GolmPNbv9zudTqfT6fdvTeKzi+Jd17Vt27Zt13Uh7NsbZ5BOdvY8dNLMaHlgZdrEl9nLafH62bM55+tEaHaOHj36yle+snihiVHXY3j95pw087/8/ZMgBSXA6M0hOhJASKjVapZVVXSDKCpjTFEUQogQggopXK9uVTY2Ng4fPnzp5ZcuvnT5xbU1V4qO47Rsu8cd2+N9p7fVaW+2WoEUmmFutNrc8ysV4npBp+e12h0J0LNdzwtUTVdUKqWUkjz1uf+a8xwk89q01HzcH/MsF25ktozD5Wxw3JNPPvnAAw8MZPPxH8NOwdXV1ah3ML4cXxNfGW2Vf5PkowNrkstDjzK0GWkHQmiXGpq+Z+T0E14F4+Z7ZctXx43PCUtf7T75hwkhVHJTLH1FtsX+OJJareb7vud5nudJKaSUvu/7nufbcGSlIUXQ3tgE33Nd1wu4J4Xj8UAKylRCSSBFIGWlWq1Wq5vdrYpVdRv8ynqrXrd6rb5lqpx7iq5y7hEqdf3mHG2SjDdtF2x3kA/NcePpdXZAWsd5stN9DqNuov3nbH+eDx5Rz32U9IcLcHsfIWynESM7DpMBOfsaBw6XrUAzENpvil0FWPpqJCVtDBAAOHY/eVtAOeNvPpnYGCwA4NxN3sY3VumrcsoY/IPQrhDWJYH0MZSwff3m7MVnFAiRIImUN/dMgVBCCTApAukHEAhGKVEUEXgygIoOC42627cpIVeuXFk5dJDbXqVSC/pdbtuKqlBKue/1Hbthqaqqcs/3pG1UqoyRft8BCYqiEUUVQgD4lCqUKgK8QIKyPShoitIy4LRMPc8dtLOT/+gjP2lESXx8IRkWzwmS+UFaxpA/Ms2ZM2dGZvnRPvM3A6G9ZOiHZBh12Y6UJ9+Lv7+UJ18tHD/uKQIsfbVLYVqPdrWpl76ilMD2+HsJ4Yw6lFJq27bPHc45yEBXVJUSoApnwXK90b6xbuqGQknVqrRaG74U1NDMSmW91bHdjmnqumoAgO/7rU5nY6O1udVuNpu6YbRa9sKC2XNsQghjLPw//H4gTO7HSvFHjkdPDlvfXSZvf5TfhwoMwS8wAGAWI2dwNA5CkPierRgsfZUHlr5CCM3b1EtfSV8CAFWJkKAQSinl3DdNpddpa4raqFitjRsu544jahVqKLDYqJqqJoTodrdc7vhSCJA3rq8fPn7s5MlXnb9wyeecSF5dqV588RLnHg+EIHSztRUEgaJA13YIIa4bGCb1AxH2EoXjg8LZOcc9IWnpb9q8lnn2Ft9qkpE5Gan5yKy9WPuna2BUTM6tpt65XqwZCO1qsxt+hqWv8tj1A9MRQkhRqOsKQYTvAyWiWjUajcZCvbqxfoM7fek5lICpKsLhVIhmvXp4eZGGf/19TqTgIuAyIEHQ3+oQQg6trGiaRoFVDIsx5ro9V4KQwBgFAElBU0O+HwSEQNgTE3Xhhz9OUZ7+77CbfOiU9sn1eXLu7E3G6pKfxfcPA137eYxMrOczLSbm92ifyLiPBc0Hlr5CCM3b1Etf1Wq1IGgTAkJCIEAIYWiKqqq6qvLAD1wHJGg6qRhQNbQD9VrN0qkIdKqQwFCJsD2/69qeEBtXNzY2NqoLTVVVGbAudDjnng9UhcCHIBAAIAlEhbQ87gNAEHhSBiAECAARMJo1U1lSmIUPTbsHhvFk3yybNuZnYJBMgT71tL2NHH4zVvvThHfWRj+OO2NmNGI+beh8PGBgDaQM2U/uZ+S4/JHNQGgvGZhOKryOsq+ssWDpqzyIYZjx7wgYY+EYIMMwht4WEN0TUKr4Rx55JIynlIZjsFRNHXobX7vd+vjH/6bAmUIITcvPvu1/VhUVYvdIhZLXr23bn/70p0bu8NWvPHblyhVCiOd5fUdalrpQr2qKSgKfgLA7bcHlYl2zNGaZenOh3jBMlSmUUs/zbdvd6tubna22bQeMXd3wzDrxfAlAKBBd1bjnewAu96UESkkAMpx8k3OPMUopVRRFSOk4bhAAY8AY7fcmnc8YhTJ66wt05COE9oaHHnq4Uqlk53vR+8sTTzwBpclXC8dfvXJeVXQCAJTenD+OMkoIEEYpAbj1SBjf2ryGpa8QQvM29dJXmqaFfxxUVdUDrimKDIQvHJUSCAKVgFlVGhXDMhSNMZOSfq9d0TVDtwxKicJ8hQa6zoAQq9LrXrUMy+au54Pj+BR8x/EFA98HRQFVVQ1GFEWhlHoKAwCmqVJK13UVBiCBALDxOvFRlvjkmBEsfYUQwtJXI2WNxR93mH/Z4ofexocQKoVRI+bC6zfnpJmUUsaY7/tCCEKIlAHnXFeZJNTpdlUGR1aWDY1KzwPBKWiCO1wKKgQjTHqgA5GapmnGlusaCliarqqqw4Xnbbmu73qgMqAUVFU1DIMxoigKY0zTtHa7TSnlgc+5RwgoClBK9UKzm6E0AwN1AJN7hNDtxs33ypavTnhbbZr9WPpqc3MzOwYhNB/TKn0lhNA0TUoZBAEh0vM8X3o6M6rVit/fquhac6EeuDaAL30qfV9hUgYut31KFCoZEaBRRihVHFIzzYphBYwotuf7ft92VCk0TSW+zxihFML5MWH7zlpCiPB54IGqAmNAiGQEb/iZMszpEUIDsPTVSPux9FWz2ZzklCGEJjT10leB54fd6lJKojDh+SQIdE2tVnTglbqmaJR0Xcd1F67UAAAgAElEQVTSNUXRPW6rqi79QAQCiKQMGCVSSioDKt2qplR1FiiK7/uMET8QUoIEGgBRJPF9XwpBCKEiIIQsNeqMMSoCz3WIBBFAEEiQ3uxOHUIIISx9lesslXyqfyx9hdDeM/XSV3csLztrju25qm72O1uMEt8BENztbhHXPn7sFbzbUyUhgii6YRhWEHgedYMgEAA+QBD43OO+7y02TKKqQhGu9LgOrqm4PtvqBYEkjivsvrtYN46s3FGtmCqlqqLUK9ZGuwXc47bjeMBUphoajDmjDkIIobFg6as8sPQVQmjepl766qW1SwollmX0HBtAMMZ8AMvUq4bOueradq+9JaUMgIBiqKauUkop9X3f9/0gCAIpGKOaolEIaHjHLCFCZy5Xun1CARzuKqq6fMdCo1JxXVujUF9oEhAXL5w3reqB5WWmaTdabdv1fCGKzW6GEEIoJyx9lQeWvkII7Xr9XsusVCkBz+1VDLVimpt2W2NKo9FgVatqmTdubFy91vdlp7rQOn70UENlGhGMMIBABIJJqim6qjFd16SUnhQkkAGQuqK6ms512e0EQnqqqtYXaoJrC7VKxaqsX71SrTWay0tM0QJKN7pdz3VBBAInzEQIIbTTsPQVQmjepl76qlLVCRGGYfqBxTnnTl+joDLF1HTgxONBtdZQrVrP5RudzgsXL9+9WKvpqqIbFJiiaCCpZqiaooIUQvoB9z3PF0ANRV2u1xW96tL2+paz0dpQqNSoDHx3/dqVy5dfvuuuO+VW2xfyyo1rvX4fqGQKlfg3BiGEZglLX+VBo+1hewxQOEdErd7Qtt9uw9sCwuUyx4djsAgQAsS0LEW5+R1FeFtGuBzdnIEQ2imGYYQLUX4P6ddvHrqqbGy2et2WqakQ+N22pwA43a6mqIzSXq/neL7jBwFhPmGOENfWN7Y6be55koAgis+oHZCu64FmqGbVqDaMSlXXdV1XLUOvWPpis7FQN7nrXL9+9er69RdfvHDh8suEkc12e33jxvrGjU6vKwhomkYpdf2807edul3OTYYu598q/0Njyf8UZmFnj15C8zkbhY8y8Gsc/jjdNhe4oNDU5Tm9xV6CfPnerfeXsuWrBeILnCUsfYUQmrepl756z3ve85G/+ujn/9sXVdU/vHJw8VX1E4eP8E5HCQJQFV9RpN99+UrLCUAoUDXYRgcM3VGFT4Ti8MD2win1faOzZVmGoamCgKSEUEqkUALQGTN0NXAdRkFTGPcDSqHWqFcqFaowwX3GGKU3u5FydrecOnXq3Llz2Wuy5Q/OiBzriGnGbfl07ezRy2k+J6TwUaIN468dvohoLFj6aiQsfYUQ2glTLX113xv/5cLigfvf+I0Tdx1/7fe8pqJrFUX9p//v8x/4w/8zcB3q+4eXl5mmcwk3Ot3WZs8kIFQQhupJuek67X7f4b4QorsVVCywdNA1pVKrNhoNqikao8zhwB0qJSPEczmloGmqbduqbgju9WzbdV0hJAWhKgpj2sgGD81Kz507F60PF6L+rWhl9H9acHKr5N7yHzHaPBk/8Gh0dLi9W25oG4Z+tsk+dPbTGffoI89YzkOnnaXsnaQ994z2Q8qrMPByJNcX23+ynUMD4kfPaF72L2Ty9zmtMflfkeTvZPYTSdt/ns/hE57hjCeVPGjGsfL81o18idOe1EyvzanA0ldD7cfSV9kBCKG5mVbpK8tceOh//KmHpAAg4DrPfulLQa/7ja991VBY4DGFEp0pjLsaYwuWyYQj7MCsVcyKJX3htbu253PfB5BH7mqCDAK373Cf9LuaqRjUEIIK7no9ziSAFLYDy4vakTvvlARarS3uceH7KlN0XSGEcF/wKXUuDGQ8586dG5phDwQPvKHGg4cmDdlHTK5MHjqZnKUdKKO7feShM3ZV7OjZZ2zcQ4/b/pHPPXv/Q89hmgL7z/m7kfZozg3Tfp8n/2XIc6UMNDXnizVU4TNc4KBj/SqObECeA03lAin2ZLNh6auRaNoYIABw7H6v2+l1O47dl9vKHB8fgwUAnLuOYzuOzbkbltqRII1YAEKosLW1teeee26sm2Ij0fWYNoYSbl2/uXrxmwfvBNcHooIbXF27cvni5eee/Ua3tUU8v6qyRcvUBL9zuXmwUW1qrGmoy01yaOUO09CIBNu2KaWuKx0HLl3YDLh7aOWO48cOHzl0cKFaUUBaukK527SYKqGq0eOHa4amKpS2N1u9TtdzOQOmK5oiiQwEk8JUp9OPMNb7X1oqP1Tam+vIDSd8S87YfNw9F2jJwCbZZ2ySps76uex4fHZAxnkuINp8ir88+TdMdkgXu3AmjM+zbeE/F3liprLz6Xbb58n34u8vZctXC8QXOUsln+ofS18hVEJra2ubm5sAcP78+RMnToz75djUS1/dWLu61d0KgsCxe90bNzY2NoTrgvCZFML3FEorqqaBANepKkyzKrpWXdAtR1LFExZVDZ0aCwpjRAHpe/aViy81G9ZCvWoYVVf6TAILPL8XHFjQdcNcXrnDdrjHPde2AYACkdv/q0AFgCR4w8/UjNtjXbajF9jDrJ9yxlcx0XKBgPmY6cmZ1s6LneEp2vEGZJjWScbSV3lg6atU+tmzyZXu6dPZm4QB0QJCe5vjOM8///yxY8fMcb4fm3rpq2/+8zfb3TbnnEjhOz3btpnv+74PIITvCSqZYgRCAvdUXxi6vli3aopObb8iyQHDCgjtCycIvGrFILoihb+80DBN3dSMbiAc32/ouqgEB1dWeo6tUiY1vbOx6TiOohlAKCUEAAgFEEBJ2UvbTv79+DztbC5SeGxMZPJvG6ZuZCfryL7qnfoVmsorkiHjs03GyJ+c+4E5nsAdb0CaKb6CWPoqDxyYnkWeOTOwZsJxUQjtDUePHgWAsCOfcx725Y+V5U/XVnuz3+vZrkOIkL4DAIKIAAJFU6XgwvNs2/Z84bucKZrB1GaloVElIFBTdG1BBcZsi/s+1xhI6TUXGocOH2CMXbt+HTRNY+AtNTfb3U77RvPAHZqmXt+8en3jhmFV/UAAvdmLTyghBKQMKGB1211vd30Q2g/wFdnt8BWcPyqlHDoGKBoAFIpPxV/C+OQYrIGRA8VKX/GE6CH97NnoX/ZOkpHxTYYuD915uDywnzwNQGgWjh492mw2w+UgCM6fP5/8Mi1N/HocOoZy3JE/OqGmypgMAp/3+z1f+oEQAZFUUxVDCyh0HbfruEBVq9Ko1xapBEUyS1FYELAgUIU8srTwna84fuLwylLVPLTcOHJg6cjKsuCuoSlVy+TcOfnqe06cuKvZbKxvXG9ttQVIpiqSgCAgCAQUJAFJgNJcGf7AGN9Q8na0sU5CHhO+y85umESePe/UoJ0Ct7dOZT9pm8xi/yO3zb/z6b5MY52Bqew8+dBYXfhp+ync5pwbjvyt2NkxbwMmbwznPE++F76/lCpfLRxf4Cwpyan4wzFAtXqjs9UOk9rwtoDwvrcyx8fHYJmWZff74b2A4W0ZYdGrqZS+0s+ejXfwk9XVtGE5+SPzbBI9xDmPh+XZLUJTF+/LD7P8nH35GaWvktdvHhvXXiaMisBVFcopUEoc2233Opz4gR+4nPf7thDEqphU0xTTDAQ3DKNS03qua2+0tjothQX1qq6r5F+cfNXRO494QbDe2lB0RbesK9fXPd9dqVf73Lv00uW1l68TXVd1vc9dSYkACQAMACQwIgWIcHjlSMksP3mf4tCxs/EJLsZyKlFgKOddd/FmjHxvHojJP7Yh+WQL7KrY0Ue2Z6xnPYv2p7VnWq/OhGPxx21G/kaOPAMZhl4pOc/eVH5zMto/VnDak51kn1FAsU8v+U9X9CpM95ckX743WPqqPPlqgfgCZ4mo6uAUzpVqLVywLCt+W0C4stvZKmH8I488EsUb2zWBdV2/7TY+AADY3Nh4/PG/TT0fMcne8XiqHU+pk0Pw0wblhz9qmhYm5WGaHl8Oc/e0nYcByTZMPrMSQoU999xz0bw3mqbde++9Izd59NGfNi0LAJxEx//A9dvv9z784Q+N3OGf/O+/YVUrghKjZnb7Hcrk+ktr3/r6V4Jex95s9zbbvutJyRTNbDRXlhZqSxZr1iuabl6+enWz3bpx40a1WmkuVDWdvv51r1s5fEe313vm2a9vbHUkY//8recta8ENwAfyreef9xXDA9rlPtMN7geSAAAQQpiUlEgGEgBefGnSSY5L+6X2LBpW2idbWiU/YyVvHorbpS/WQw89bJpmdr4Xvb888cQT4UIZ8tXC8VevnFcVnQAApWFZXEIZJQQIo5QA3HokjG9tXsPSV1kGxuJPK42O72foctrYm3hw+NkgXMYufLRT1tbWovyeMXbs2LG8W0619JVhGKqqOr4XeL7ncsqkbdvdbt+gzPY9xwukpL4fBE43kKrCSMDJemtDUrKx2SYK40QGVNi+Y1Zr1zevb3baBw4ddAUIzey6fqBVAtX80R/70e/53tf+m/f97j9+7eugqIZVDQgRvr/9RGQAAkACEAp7akadXZoBoHnCXxK0s7D01VBY+irLTnWN5/lowTnHgTpoZ0VTZwIAY6zAHbfTKn21dPDo1fWr9fpCr7+lUTXw3GtrV4Trq5VKZ8t2Ha9iWHXTCIKg3+1e7HUNS+e+60mhW6Zu6pIS6nkGM7t9+7nnXqjXFq63baFUjx47duSVr1y+46hhVO79ju/UGvWPPP6G/+uPV//kP/3fl6+8vLi8tFBvtNttVVMYIxAIphDhe9wrUiugtKY1gAHtYfhLsnvt3hcLS1+NpKSNAQIAx+6Ho38YY/r2tyHljL/5ZGJjsACA85tTpVJK1e27GXZF6aucLyoOzkE7aJL8PrxHCtLHUML29ZuzF7/ruECZlFJjGvc9z/UCz+91uqaqVSo1Ikir3a/q/vHjx9XD2ubmpi+BCoM7/bZtE26rCmGK6UlQAiGlr3vS6drq4rJi1t7wQw95krZbXa3W7La2qovNX/zV/+013/v9f/KfVj/72c+2WzeWl5c77RYDZphav98Xvhd+3zqhUr3v7tQ0jihNCc9YCZuE9rA8+V78/aU8+Wrh+CJnqeRT/e/V0lfhMJtwbH18ORmZNsU+Tr2PdtCE/fdTL33l+76u60IISoEQwjmnlNq27bou59wwDEaoZztbnfby4vLBw4e6PZtoSp277f6Ww20pPCGBc764uOg5bt9z77jjDofQjVbbMCzwpabxF7797QMHDgCl3Xbr+9/4hu+//wc+9ld/9b7/47fa7baqqpw7mq74vq8yphb9LgIhhFAeWPoqDyx9VUR8HHz4Y1qHelpk2v/5dx4Py2gAQjNlGEaB6rZTL32laRpTiGv3w7pTQRCE05C5rtvtdpebi4sLzc31G5ubmz73F5eWdNNyA99x+3av03P6AEJnFUXVbYerquZyn2p6t+M0GmR9o1WpL0gp777nlZ12a+va9Vqj7vZ6TFF+8q1vffHCC4899tjKyh2bm16/50gpdd0UYk8N1EEIobLB0ld5YOmrVBl5c3wcPNyenYfL8VR+aOTA/uPLI3eeDMP8Hs1ZOF2mbdsF8vtZYAqhlPq+rzIgREoZKIpCFWbbNmOMECmEb1lWxbI8l1+5+nK9sdDnrs1dQoimaY5jcz8IANxALq0se15wae0KZ8bRetN1vaam9fv9qy9d6vWdpaUlout6wIAQkPL0//Lzn/jEJy5ceLFWq/V6HcZYEARyjNobCCGE0EwoUspo6s34GKC02wLKGe84Ntw+BivtNr78pa+y8+a0W2CTj2Z8TkiLyd55zhYiNFNhll9M/HqMpi7OuH5HCoIgCDwJghAmpQykkFIahtFrb6maxjQVAHRdVxjzmGJWrEAITVfNmmVWq47nrq+vUykCAWrFsj1f1Y316y8fesWr/UCu39i449ARy7KWlpauX/vWxsbGqaVFEKLvOoZpLh448Naf+ul/81vvPXToYKVSc13b83xVxeq2CCE0Q5zz6NbKjHwvfH/pdTvlyVcLxxc4SzQ5FX8422at3ogKboW3BYTLZY4Px2ARIASIaVlR52J4W0a4PJXSVwihSWSUvkpev3kQIoPAVxQFiPB9PwgCxtjS0pIvBKVUUZRwJE9ra7PdadVqlaXlZrPZME3T59zp2b7va5phVWqBhJeuXnv52g2im4tLy0zTOfcVRSOSKrq+1WlduHBeBgFomqqqlBDPcR5++OG77rqr3++rqsoYo4wJOYXRgDuiJPUvJ6nHeerUqfjmkzyjmdZVLSzegOgJ7nirMhR+Fcr5pMrZqn0oX743WPqqPPlqgfgCZ0lJGwPkOM7Q2wJKHh+9nB73ht7GN+4YX4TQ1PmeF96TmjaGMrp+db2XZ4eapkrhqYT5QRBwT0qpqury8vIL335eVVUppetxCoRz3troUIUsHlhWNU1jlHue7/sgCaWUEKZXLMGUra5dW1jqc2+lVtM0w3VdSil4ftW0TMPotLfqCw1V06QQjLET99zzhh+4/6N/9RHTtKQkmmZ0u4P1TXaL3T4pSnx29r06U/vQJ1jaZ7pXXwVUBuPme2XLV8eNLwBLXyGEdsJUS18REJRSCATnnBBimma33aKUHjhwYPP69YMrB9obm7qmGBVD6XZMU7csY6vbMY2K57u+76mM1ReavpCt9tYdhw7qleDGVm9hYcE0rYWFBYWyrdbGoaOH6vV669l/vnHjhmboVNFUVZUguW2/5z3vuXz58tNPP60bqpRQqdTytDmtmHy0PJDMRXXgkxvGA8bdYXJ9xoZpzZ78eSV3GO+fTh4rucNkf3Z82zwnduSzSzYpz2Tw+U/I0ODkqx/9OLCywOHiAfl/hdI+Sg0k9PlPV/arOfAE4wfKeAXTnikkTlHyc0h8/xm7KnyNoKnD0ldDYekrhNCOmVbpq16vZ5q6VbVc3qOMcM6llIqi3HPPPc+6zo3NDdPQPO5JGRw5crDeqHU6W0uLi5vtdsW0uOtf37rR7XZVXQNGm4vLV29s3P3KewyzQik1NH2r1b5w4cJic0GhjAhp9/p2r29WqFQUymin4xy+884/+IM/ePe73/3ss8/afZvmGDM5NDFKy2MgkXPkzLTy7DAZlrHhyG7yKTYjmdhlNy+Z6WakniPDho7HyDjEVE5I/hco7eSMe/6nte1QOU9Xnlczw1RekXH3nPPpjHW60Liw9NVING0MEAA4dr/X7fS6Hcfuy21ljo+PwQIAzl3HsR3H5twNS+1IkLui9BVCe1t0PaaNoYRb12+uXvzz558/f/78+fPnL1y4IIRQVVXTNEVRDMM4dOgQANTr9cXFRS/wPRG4nmdVjFZ7w3EcANFut+v1eqPRlJIsH1hRNDWQolKpUAbNhYbKiKEptWqFc2f5wFKlYkkIPM/zfd9xnCAITNNcv3r97lfe+7GPffxTn/rUO97xjoce/NGxzkaeJGAg9825k4w9T555jNxDFDBuM/LveXJpu5pFZpbnhAxtQLHGjLvVuLk73N6JXjidnfBUT7J5uO2520vzDn0iO/LUUIY8+V78/aVs+WqB+CJnqeRT/e/V0lcI7WdTL31148YNP+AMSKeztVD9FwBCURQgKg3k8Vccd53++saN5YWGbfc9111caqgqu3jxWmNh0e72qpXKiXvucbjPdO3uu+/esnuWZQElRw4dvufEcRL4jYMrh9cPdttbjUZTSkmEZIwolBFCFFVTVEkI6bRajLG7777n937vMc8r1xDBoR3SxbY6lz6uZkbNmOcOZyHjjM2z/ZMca4rtzNjVtI6y42d1kmsE5Yelr/LA0lcIoXmbeumr/+F7v/frX/6S8HxVVQkhQRCEfflCeLquHzly5KtfXQ+CoNlsCiEIo33HXlxuViuNXtc5/opXudxrtVon/7vvpgqTAJppUAp33XWnx53N9c077rrrrrvu/Pa3v00IUVXV933XdS1LaqoKgWy1WgsHljWz4jnO1lZLtyzPJuUpbzty8Emakd3bY/XaFm7G3HY4O8UGBc2oDXPeNueupng2Cne3R99IjPVtRvZ6HKgzO1j6Kg86ycYIIVQG3//DD1erVU1TLctSVbVWq1mWRSm1LKvb7R44cODQoRUe+EePHr37FccJkdVq9fDhw/V6/fDhwwDwwgsvLC4u33HHHa7rmqZJKQ2CgFB49p+/dvniBfvKy0CIqqqmptdrNdd1O50O55xSyjlfWF7udzq9rS3VMBYWFntbW6ZV3enzcVNJMoypN6Mkz6uw3d7+6cKzgdCMUCnl0DFA0QCgUHwq/hLGJ8dgDdxWW6D0FUJoRuLX49AxlOPeFn/8lSdf/y9/JPzSs9frmaZZq9V0XV9eXg5z/aWlpVarJSmxLKvZbFbqNaIwAJBSPvfcc4yxkydPmqZp1aqGYTQaDUVRXNvxHDfwuQi8f/riF16+crnTaVNKXdcNgoAQEtbRlZ7HGKOUdtttpqpWZYHQ8Ro/rV7t2R0l2nasnQwN3i3DdeY2biQtYPIGzGLP8SEoUWo+bud3RjPytC1/+6d4UeTfVcm/U9ozOOd58r3w/aVU+Wrh+AJnSUlOxR+OAarVG52tdngzb3hbQHjfW5nj42OwTMuy+/3wZurwtoyw6JXHvc3NzQJnCiE0LRmlr5LXb04/+GM/9arv/O+f+Mv/59K3vq5pikqZaZq2bS8sLPC+fejQoee+9a1+v9/dajWbDdf2VFXltn/92kan0/m+7/+BZrMZEGCMXt/cWF6+Y6vT8Rx3eXlp89qm7/tXrlxpNBcIIaape740DINS6tg2YWo4FY+qqqZZAVAIy/XV6NABuwO3/Y2VM43c4cDO8+8tY4ezbgbcPoNQ2lFG7jDnic2526hJeXY71gmZfBj3TH+vCrcqe1cZp33oqc54aQq/ItH65Jq0XRW+RtBU5Mv3BktflSdfLRBf4CwRVdUGVlWqNyd1tiwrfltAuLLbGazqUob4Rx55JIo3tmsC67p+2218AACwubHx+ON/m3o+EEKz9+ijP21aFgA4ibtoBq7ffr/34Q9/aN7t221wqANCk8PraBd56KGHTdPMzvei95cnnngiXChDvlo4/uqV86qiEwCgNCyLSyijhABhlBKAW4+E8a3Na1j6CiG0E6Za+gohhNC+haWvhqJpY4DSlDweS18htIukjaFECKG5OXXqFHbh7zrj5ntly1fHjS9ASRsDBACO3Q9H/zDG9O1vQ8oZf/PJxMZgAQDnN6dKpZSq22cKS18htOPCe6QgfQwlbF+/2IufB6YmCE0Cr6BdJ0++F39/KU++Wji+yFkq+VT/WPoKob1n6qWvEEII7R9Y+ioPLH2FEJq3qZe+QgghtH9g6as8sPQVQgghhBBCe4oipYym3oyPAdI0LRwAdPPH2FT8JYx3HBtuH4OlKEp8Um0sfYVQecSvx2jq4ozrFyGEEIpwzqNbKzPyvfD9pdftlCdfLRxf4CzR5FT84WybtXojupk3vC0gXC5zfDgGiwAhQEzLim6mDm/LCJejmzMQQjslo/RV8vrd2975uc8N/MuzFVldnXXDSnjokjQAIbTj8uV7g6WvypOvFogvcJaUtDFAjuMMvS2g5PHRy+lxb+htfDjGF6GpWFtbs237xIkTBXJx3/NUVYX0MZTR9avrvam0toTCbP6P778/uT65EiGEUNy4+V7Z8tVx4wvA0lcIobGtra1tbm4CwPnz54tl+fu89FVGHv/H998/8GjUby3PnIl+DP+XZ86Q1dXw/4GA+Cbhyigsvn5g/2HYwPqB+OSGaTvM04A8DUt77skmIYT2ISx9NZSSNgYoTcnjp1j6Sj97NrnSPX065+bj0s+eDXceLSBUfo7jPP/888eOHTMLVZxIG0O5r0SDc6LkPp7lD+Tc8syZgUR8aMzIh6LltJw+Yz/ZAeM2IE/DMp47Qmh/ypPvxd9fypavjhtfAJa+ypJ8I5nwdGcfa3Y7R2i6jh49CgBhRz7nPOzLz5/l7/PSV/FO+oHl7A3TUtv4+oz0d2RmHO9Nn4U87UcIoZGw9FWus1Tyqf53tvRVRs4d7+NP632Pd8wPBEePhg+5p0+T1dXox2hl2rbx9djlj3ZEPMsPgmCsLB9LX4UGBuSEnfcDMWmDWLJNJVPf8Rtbd7wBCKFywtJXeWDpqyL0s2cHvkHOyLMzgqOHos8S8a+hOedp28bXZx8dodkpnOVj6auh0gbopw3CSZM29mZcO965vuMNQAiVE5a+ymNfTEtX2MBw/CiTHjqoJszOB9L3MCzt24DkfpLxadvGPxXgCB+0U44ePWrbdvhtYxAEFy9evPfee3e6UbveJJPq4FB1hBBCgKWvsg28U0YNCBcGPgAk8+yRmXee1HzoXb/x7+6xCx/toLW1tWg0IWPs2LFjebbC0ldJaQPxJ0nZx+3Cz4ifyieHCZ8LfnRBCIWw9FUeSnIq/nAMUNptAWWOj4/BSruNb6zSV9lj8ZNfhUcd+fEu/AkN/ZjBOceBOmjHRVNnAgBjLP9Y/IzSV8nrd+8ZmDknvjI5WX72hJLJrHcgfmSWnxY/sG32geIBGRuOdV9Bxn5w0kyE9rl8+d5g6avy5KsF4gucJSx9VURaBp9ngM24Rg7UQWhHFM7vAUtfxQzcbhstx8fqDE2vhy5nPDoQlmcSnqHrC2+Yp7V59o+ZPUIIsPRVDlj6qqAowx4YSBPdLzuLFBznzkclMUl+f9P+Ln0V9d8PrW47dP2M4AAYhNBuh6WvhsLSV0VkfJ2dvF82+XXzyOw/mjQzbduBBmCPPtophmEUrG4LAPu79FWYxCeH4M8tuQ+NHJCDEEIlhKWvRiIHDx0Zayp+0zRLGP+mN70J8pVC8H3/L/78/81zarJPrra9Q8754MuW2DAKhlj2n7ZVfM9p2ybDEJqztbU127aL5fdvffRR07QAQNO07NJXtm1/+tOfmm7LEUII7Wo/9uNvXlxczM73oveXJ5/Enp8AAByCSURBVJ54ojz5auH4Sxe+oSo6AQBKSYgySggQRikBuPVIuHlr8xqWvkqVnTpnDLvPObVO2lYj95aneQjNWjgpfjFY+gohhFBhWPoqDyx9hRCaNyx9hRBCqDAsfZUHnWRjhBBCCCGEUNlg6SuE0Lxh6SuEEEKFYemrPGhyKv5wEH+t3ohu6AxvCwiXyxwfjsEiQAgQ07KiuwDD2/jC5bFKXyGEZiGj9FXy+kUIIYTi8uV7g6WvypOvFogvcJaw9BVCaN6w9NVqoujsmRnPVrm6ujrrQyCE0Nxg6auRsPQVQmgn7O/SVzD7nB4hhPYJLH01FI1Puw75puIvc/x8Sl8hhKZi4HrcV6WvkuJd++Fy9P9Ar//qtmT80MiZNhshhOZv3HyvbPnquPEFKLV6Y6yp+MsZf/PJ5Ch9Fd2fgRDaKRJkeOO7aVnZpa/2cC9+0pkzZ8LhNPFBNdFyciFteejC3J8NQgjNSp58L/7+Up58tXB8kbNU8qn+d7D0FUJoRrD0FSTS7rRxO8n1+SPjD2GWjxDaM7D0VR77sfTV5uZmcv8IobnB0leQkpEPdOGnwXwdIbSfYemrPPbjwPRms7nTTUAIoSGSA3XSYqLleTUNIYTQboKlrxBC84alr/LLSPcxv0cI7U9Y+ioPJTkVfzgGKO22gDLHx8dgpd3Gh6WvENpxGaWvktfvXpUcix9l88lliA3sia/JzvJxCD5CaE/Kl+8Nlr4qT75aIL7AWSKqOjgpT6VaCxcsy4rfFhCu7Ha2Shj/yCOPRPHG9gcjXddvu40PAAA2NzYef/xvU88HQmj2Hn30p03LAgAncRfNwPXb7/c+/OEPzbt9pYH1qhBCKOmhhx42TTM734veX5544olwoQz5auH4q1fOq4pOAIDSsCwuoYwSAoRRSgBuPRLGtzavYekrhNBO2PelrxBCCE0Flr4aCktfIYR2DJa+yoZd+AghNBSWvhqJ1uqNaC/hGKDoMcfu97qdXrfj2H25rczx4RisKJ5z13Fsx7E5d8NSOxIklr5CaMdF16NpWdFf4ZTrF3vxEUII3SZPvhd/fylbvlogvshZKvlU/1j6CqG9B0tfIYQQKgxLX+WxH0tfJXeOEJonLH2FEEKoMCx9lQedZGOE0L61trb23HPP7e15LRFCCKFdCktfIYTGtra2trm5CQDnz58/ceLEuHexY+krhBBChWHpqzxocir+cLbNtNsCyhwfjsEiQAiQtNv48pe+0s+eHWt9nkcR2mMcx3n++eeTI+WyZZS+Sl6/CCGEUFy+fG+w9FV58tUC8QXOkpI2BshxnKG3BZQ8Pno5Pe4NvY1v8jG+8syZ+OcthPaho0ePAkDYkc85D/vyzdzTVfmep6oqpI+hjK5fXe9Ns90IIYT2hHHzvbLlq+PGF4Clr8ZGVlfd06fD5ajPPlwT/hj+H18T/YjQnhHP8oMgGDfLx9JXCCGEpgJLXw2lpI0BSlPy+HmWvtLPnpXbhWnCvF+eOUNWV8OVnPNkwLQOjVAZTJrlp4+hRAghhDLkyffi7y9ly1fHjS8AS19NhG+L0vpo5dAAhPaYo0ePRgPrgyC4ePFinq2w9BVCCKHCsPRVrrNU8qn+y1z6KuyzD5eH9tCPDEBot1tbW4uycMbYsWPH8myFpa8QQggVhqWv8sDSV8XF++aHjsMZGYDQrhZNnQkAjLH8o3TGKn119erViVuKEEJo78DSV3ngtHQTGTlMCufeQXtV4fx+XCsrK7PYLUIIIbSHYemr4vSzZ7M75kcGILRLTZjfY+krhBBChWHpqzyU5FT84RigWr3R2WqHRw1vCwhH3JY5Pj4Gy7Qsu98PX/Xwtoyw6FX+0lcwrI5VPGWPD7WPT5YfTZqZFoDQnmEYRoHqthmlr5LXL0IIIRSXL98bLH1Vnny1QHyBs4Slr1INnQMnHF4fzZwTxUTpe3zN0ACE9oBwukzbtgvk94ClrxBCCE0GS1+NhKWvUqUl5fH1yZiBNZjZo70qzPKLw9JXCCGEpgFLXw1Fo0k3Q3mm4i9z/DxLXyGEJjRwPWLpK4QQQnmMm++VLV8dN74ALH2FEJo3LH2FEEKoMCx9lesslXyq/zKXvkIIFYOlrxBCCBWGpa/ywNJXCKF5G6v0FUIIIRSHpa/yoJNsjBBCCCGEECobLH2FEJo3LH2FEEKoMCx9lQdNTsVPCCGEpN0WUOb4cAwWAUKApN3GN1bpK4TQLGSUvkpevwghhFBcvnxvsPRVefLVAvEFzhKWvkIIzduMSl994pOP/7t//4ef++xTAEAACIGAA6VgWsQ0TSll2FPCVBUoWWouLtVqfrcn+n3ieUzKxcXFxcXFy1ev9Pp213UVzVg5eFgzDNfnvV5HEuG67pEjR5pLB65du3bp8kuux+v1ervTuba+wTn88Jt+8Dd+43333//GqZ0mhBBCKbD01UhY+gohtBOmXfrqF975r//sTz8ohAAJhAClQAioKlAKlFIppRAiCAIpASi1zMrGxsadKyuVWt3rdK5dvtxcWmouLgIhkoDjce77lYZhWKbvB/1+v9vv2XbvwIEDF9YuBZIIkKZpXrl2lSoKIUTXVc/znnrqqc9+9qnf/M3fee97f2tka0+dOhUunDt3Ls/6WQiPlTxQ1IbIHBqDEEKFYemroZS0MUBpSh6fpxTC5uZmdgxCaD7SxlCO6xOffPzP/vSDUkopb314IIQQRQIhBJgUJPClCIAQQgSxe44MvPZmq3Hw4OX19UNHjzQbdU3Tzp8/7wY+1VWVEMM0TdMUQmqm7gXc4dys1C6uvdRu9RYWmwCgaVq7vWVZlqrokngiAMbYv33st++77/777svbl3/q1KkogU7m1iURb+ROefLJJ6PlBx54YP4NWF1dPXPmTJ6VCO09yV/11dXVcGHoJRA9mhYwuTz5Xvz9pWz56rjxBSi1eqOz1Q73Eo4BirrNHLufvC2gnPE3n4yqmqYZjbbn3E3exmeYZrPZnOSUIYQmFNYlAQDTsux+P/wrPPT6zdmL/x//6D8MHkKClFJRVEIkIURKCQB0mwiEoeke9x3HIUxZvmOFUuj2ui4IrWKCpnrdvieCrV7X476iMrNSCwh0Oh1J6NX1vu25lFJVN9rtDmE0kIQx8H0QUhJCHnvsdz/1qakN14nn/QMfBs6dOzfQEz/FLwcG9hll+UOPOPBQcmV2+7MbFib38bQ+uQYhNDvxfD1aEyXuQ7P/+JpZfBLOk+/F31/Kk68Wji9wlmg4tf7BQ4cPHjrcaCy4rhsO/4+OB7ffFlDO+GZzsdlcrFiVm6UQyK3XG26/LQNLXyG04zzuhddjWJok+/rN47/8/ZMgBSXA6M0hOhJASKjVapZVVXSDKCpjTFEUQogQggopXK9uVTY2Ng4fPnzp5ZcuvnT5xbU1V4qO47Rsu8cd2+N9p7fVaW+2WoEUmmFutNrc8ysV4npBp+e12h0J0LNdzwtUTVdUKqWUkjz1uf+as9nJvDYtNR/3xzzLhRuZLeNwORsc9+STTz7wwAMD2Xz8xzD5WF1djbKQ+HJ8TXxltFX+TZKPDqxJLg89ytBmpB0IoR033QR9WlfBrdJX6fle9P5Sqny1cHyBs42lrxBC8zaL0ldkm7w5XgcASK1W833f8zzP86QUUkrf933P8204stKQImhvbILvua7rBdyTwvF4IAVlKqEkkCKQslKtVqvVze5Wxaq6DX5lvVWvW71W3zJVzj1FVzn3CJW6frOYoiRj/5EJO8iH5rjx9Do7IK3jPNnpPodRN9H+c7Y/zwePqOc+SvrDBYilIGGKEC0PLKQtZyxAZg9lnoykQDMQKpXJfy2zf/Oh0FWApa/ywGnpEEK7HqNAiARJpLw5BIgCoYQSYFIE0g8gEIxSoigi8GQAFR0WGnW3b1NCrly5snLoILe9SqUW9LvcthVVoZRy3+s7dsNSVVXlnu9J26hUGSP9vgMSFEUjiiqEAPApVShVBHiBBGV7UNAUpWXAaZl6njtoZyf/0Ud+0oiS+PhCMiyeEyTzg7SMIX9kmjNnzozM8qN95m8GQrvI0Etg4NIY+UuOV8GMYOkrhNC8Tb30FaUEtsffSwhn1KGUUtu2fe5wzkEGuqKqlABVOAuW6432jXVTNxRKqlal1drwpaCGZlYq662O7XZMU9dVAwB83291Ohsbrc2tdrPZ1A2j1bIXFsyeYxNCGGPh/+H3A2FyP1aKP3I8enLY+u4yefuj/D5UYAh+gWEwsxg5g6Nx0J4RJfFpH3TTxuJP6yrA0ld5KMmp+A3TgvTbAsocH47B0jQd0m/jw9JXCO24jNJXyes3D+lLAKAqERIUQimlnPumqfQ6bU1RGxWrtXHD5dxxRK1CDQUWG1VT1YQQ3e6Wyx1fCgHyxvX1w8ePnTz5qvMXLvmcE8mrK9WLL17i3OOBEIRutraCIFAU6NoOIcR1A8OkfiDCdobjg8LZOcc9IWnpb9q8lnn2Ft9qkpE5Gan5yKy9WPunq1h6MfVuxVlkOQjtoIxrJGO8zbSurHz53mDpq/LkqwXiC5wlLH2FEJq3qZe+UhTqukIQ4ftAiahWjUajsVCvbqzf4E5feg4lYKqKcDgVolmvHl5epOEwTZ8TKbgIuAxIEPS3OoSQQysrmqZRYBXDYoy5bs+VICQwRgFAUtDUkO8HASEQ/i2KuvDDH6coT/932E0+dEr75Po8OXf2JmN1yc/i+4eBrv08RibW85kWE/N7tAdMfl1k3/GSB5a+GglLXyGEdsJUS1/VarUgaBMCQkIgQAhhaIqqqrqq8sAPXAckaDqpGFA1tAP1Ws3SqQh0qpDAUImwPb/r2p4QG1c3NjY2qgtNVVUZsC50OOeeD1SFwIcgEAAgCUSFtDzuA0AQeFIGIAQIABEwSsc6E2EWPjTtHhjGk32zbNqYn4FBMgX61NP2NnL4zVjtTxPeWRv9OO6MmXlGFMTv0x2IHDpkP7mfkePyRzYDoV1krGtk5JWVvAbHhaWvhiKVSnVgDJCqahkbeNwtYfwjjzwS/qioqsKyPrd0Olsf+9hfZwQghGbt0Ud/2jQtAPB9b2AM5cD1a9v9j3/8b0bu8NWvPHblyhVCiOd5fUdalrpQr2qKSgKfgLA7bcHlYl2zNGaZenOh3jBMlSmUUs/zbdvd6tubna22bQeMXd3wzDrxfAlAKBBd1bjnewAu96UESkkAMpx8k3OPMUopVRRFSOk4bhAAY8AY7fcm7X1BoYze+gId+QihsinWhf/QQw/X6vXsfC96f3niiSegNPlq4firV86rik4AgNKb88dRRgkBwiglALceCeNbm9f2Y+mrjBOKEMppbW3Ntu0TJ04oytgTc0299JWmaeG3nKqq6gHXFEUG4v9v73x+JDmqPP7iZ2ZlVnd1N+35PWMbS/i0F9Aed71H37jwB3CyhAQXZMZYcAMkxlgWEkhIc5rravk7YKWVtYdd7cLBa3ncg2fGM91dXT8yIzLiPQ7FFEn96qwf091sv8+hVB0dP15EZla+jHwR34ClkQJiNAJabd3J0yzVVqmWFMNBN09smmSplEKroGVMEgVCZPmg/yRLs8K7KkBZBgmhLAMqCAG0BmNMqoTWWkpZaQUAyhoics5pBUAgANRyk/jMIuqbY45h6SuGueSw9FWjURptrT8dA1QMBzOXBVzM/Lu7e/C3MVjeTUohjJZlsPQVw6zPwcHB0dERAHz66acrePmVr7KWAICRNMl0DGX9+m2ClFIpFUJARCEEUfTeJ0aRkGW/bxTcvLqfWklVBeglWPSlJ5SISiiqIAFB1lqbnjiXashsYowpPVbViXPBVWAUSAnGmDRNlRJaa6WUtbbb7UopfQzeV0KA1iClTFb6LWbmMRGoA+zcM8z/I1YLzvmr9NV8f298f7l2/cbF8VdXzr/CKLH01VySBw+mE923v92w+DokDx7MbGheOsOcF2VZfvLJJ3fu3Gkt835s49JXiGitJaIYoxBUVVWgKlFpu52H4Ume2N2d7egKgEBBUghaEUXniyCFlqQEgpVKSKlLsdVq5WkWldBFFUIYFqUhtNaIEJQSUsJof0x4sbJWCIHBxwqMAaVACFKCd+bdMOzTMwxTh6WvmsDSV4ugqYdLcf/+OTrZ9M479cAshjkvbt26BQCjiXzv/Wgufykvf7PEKoym1YlIaIVVEDEm1rTzBHy+bbWVou/KLLFaJ5UvjEkoRIwIgqQCJQURSYqSXNvqdqKi1iEEpUSISAQEMoLQJEIIhCiEkBiFEF/pbCulJMbKlYIAI8RIQLwzL8MwDHPOsPTVIhb70/Vp/rrfP06fmVhPH83KT+Qf/Tn6nHicGD9g1AtO19DcvPprgaW6wzB1Lz/GuJSXv3Hpqyv7++VBWVTOJK1h70RJEUoA9K5/Ilzx2p03fH9gSAgUOknTNIuxqqSLMSJAAIgx+MqHUO11WsIY1Oio8gm4lnZBnQxiJFE6LIZubzu9efVKO28ZKY3W23l22D0GX/miLCtQRpnUwpI76jAMwzBLwdJXTWDpqxVJHjyoz/HXne9x+sxE+NtXAdP56Z13xP37o8QFzxjjguL+fXjxwuHUFieaW607DDNiZS9/49JXfzr4XEuRZemgLABQKRUAslbSThPvjSuKQfeEiCII0KlpJUZKKWUIIYQQY4yESkmrrYQoRytmhcBEOa/7QyEBSu+0MftXdjp57lxhJWzv7ArAh5992srar+zvK2ufH3cLVwXE1X6LGYZhmIZcTumrrL0tpWk+Six9tTrz/O9xej2uZl7m6dib0Z+nBuTUC05XsiCkp16q7uUv1R2GGXHr1q2iKEa/RzHGhw8fvvnmm6eW2rj01XBw3MrbUkDlBnlq8lbrqOhapTudjmpn7az1/Pnhk6fDQL32zvFrt653jLIClVAAESMqklYnxqoksURUEYpIEcS2Ns4mPqF+LyJVxpjtnS30dmcrz7P82ZPH7a3O7v5XlLZRysN+v3IOMCJvmMkwDPOSuYTSV1KaL47i0y54F73HgBARkDCiICJEiYQB6R9eN29ct91BYOmrRUyvuK27uTPX49apO8TzMq/sNNcLTlcySlls4USpmZnrjwE8hc9Mc3BwMN72Syl1586dpiU3Kn2VtxMhME1bIWbee18OrQSjdMsm4EXlY3urY7KtgfOHvd7/PXz01b2trcToJJWgtLZA0qbGagOESCH6UFUBQaba7G9v66TtZPfZSXl4fKglWUkxuGdPHz969MWrr96mk25Aevz86WA4BElKS+LVtgzDMGfI5ZG+etqF3Vy6RPoKIwmKhCjCC0c/RvAVfvK5e+O6PR4EPS8GaB4XPP84BmseS+3uV49RmY6cmViMu9hZXyrzRpgXkzOPmRZ67zlQh5nHeOtMAFBKrbDidl4M5bIkRj/+8qi95Vo28cWw36NcQ9nv25s3YwiDfq+sgkOKQgWhCMPTZ4e0nbalUsai0CgBo/Cxam/lRoK0kbwTISoAoVSlcI86AUQxLL788olWAkIEAKPEUbc79C4g9QZ9FGCtJZBDd/pjybQo7Aqis2fAyM4Fts1Tq11KxXaUeVxkpmLu+F8rD9SCapeyc/08L5WZBtQT1xzDibKb6u/EOdDcgIn0cxn/8WVyZq1v5LpbuZVN5V+TJv5e/f5y0fzVZfOP8C66RGLEGEWMEFAQUYgAKCJAiAAEQgkAOOxHlr5axERMy4SDu5SbfsYhLiP/fiMWcnAOM5N1/PuNS1+9//77//rbf/v9v/+HMeHG1Wt7X9t+/cZN3+vpGMHooDWF/hePj8sIqKGdqsMepElpMAjUpY9FNdpSP6S9kyxLU2tQAEkhpBSEOkKiVJqY6EolwWrlQ5QStjrbeZ5LrdAHpZSUYTwaTWx+Sa7SBjkvkzbijJ5ZtfNaYV4SMx8zxt/Pxb/ng372XFrpKx9wNH8fIoUIAECRXCUi/mVHeCFg9Cq5X1QsfdWI0WT2gmnsmTvWn+/29qcGFC0I4xlbyDvxMzNZc/5+49JX//TWv+zsvfLPb/3h9Vdf+8evfyNPbK7Nf/7u97/55UfRlTKEG/v7yiae4Hmvf3w0aAlAA5iaiujIld3hsPQBEfsnMc8gSyCxOt9qdzodabVVUpUefCmJlBCV81KCtaYoCpOk6KtBUTjnEEkCGq2VWqRJfirj6UyoTV2P/zs9VTnz+7hI3fmY6QlNN1fPvNiM6ZrnzSzOK7gazXu3Qp0wZ3Dq2RYMyMThWM3OJsbMrHPB+E8c4nMZw1NPpHpVq50qi8e/uTENx6c+tvU8KxvfpNEmpeYVnBiBxWfOvPonjk69znW6vxSXVvrKBxECIEBEQaNeCxjF4hOQAEEv9nQrHLH0VVMmvPyJtarjKfN6+sxEaLZudeammc2ZMGOp76d2h2HGpGm6grrtxqWvstbO29/81tuEAAJc+b8ffxwH/T/893+lWsVKaSkSpZV3VqmdrKWwxCK2tvJWnlHAqtsvquBDAKCbr+4CxeiGpQ9i2LctncoUUaJ31cArAiAsStjfszdv3yYBx8cnvvIYglE6SbQQwgf0a68CWhBWsWysyLwAhlMjNyaiDhoWPzWQY/0pz2V7t2yd85pY8H1miyvbuawxM53aOtMBJBdkDBe0sqDpmWfmdMfXOYjNx2fxZVLPfGoHVzso845+wyMOtWeVeZaf2rtxj9a/uptzaaWvCCkiANFPfn7vx++9BwAnQ4GEAPDrX3/w3e/eHecMkVj6ai4z97oZJ9aD1KE2ZV5Pn5kIMHePmrpjPZFzOsPMSmaaN8/siQW7zbvDMKPtMouiWMG/fxnsXrsNroQkgdI9OXj86OGj3tMv+scnogpto6RuVdHf3t8tEY+HpU6NSPH61SvS2qJXFkUhpXSOiODzz45uXEuuX72iBGgtjVUhBJ1o6d1upnr92LLyyl4eELWUzw4PB/0hCVCgpFZEFBAVYcs0GpCJu3791njqbXJ8N53+nM55qiVr5ln/pj6qoWE9Z+ZDbLC5pSpZZ6hnOrtr2jPBvPrXPEOWOgeWZamLa0HZjRjw8hpd4eg3OaNWsIR5eVSRQoSf3rsHAD+9d+/d79+1hgYV/OZXH8ALLx9JAECILH01n5ke7eJ9bBoWnJd46g6bMzMs9X1B4A3H4jNLMfLyV2Pj0lfPD56c9E9ijGUx6D9/fnh4iM4BBkWIodJS5sZaQHBlWyub5Ylt7yRZSVJXmEmTJjLd0UoJDRSq4vHDP+12sp3tdpq2HQVFoGIVBvGVnSRJW/tXrxSlr3zligIAJAh68WlAIgCJRq8gFs92r8O89+9Nbv+LWa2G9du9OK00Z82jcC7dWeHxYKJIkxrW79rix9r1aRjBcjaNXrQT+4JwaaWviIiQfvSDuz/7xQcA8OFHH7z7/bsj/x4AvvO9u5FAvXB0WfrqcrFCyBDDbJyNS1/98X/+2O13vfeCMJSDoihUCCEEAMRQoSSl04gEvjIB0yTZ2862dCKLkJN4Jc2ikEMsY6zaeSoSTRj2dzqtVtKyaT9iGUInSTCP165eHZSFkYps0js8KstS2xSElEIAgJAACFJcCGnbme/WNxshs4IxL5ULON248lFYeajX5GzOkAt4pKZpGJ3SkCaBOvMa/bsYrrPnckpfAUBEEUkAwA/ffe/nH94DgA8/+qt/DwAEFBBgmRlthmEYhmEYhmEYhmEYhmEYhmEYhmEYhmEYhmEYhmEYhmEYhmEYhmEYhmEYhmEYhmEYhmEYhmEYhmEYhmEYhjk7/gzEdR63f3FwfwAAAABJRU5ErkJggg== diff --git a/test/fixtures/objects/screenshotThumbnail.txt b/test/fixtures/objects/screenshotThumbnail.txt deleted file mode 100644 index ba4bd35..0000000 --- a/test/fixtures/objects/screenshotThumbnail.txt +++ /dev/null @@ -1 +0,0 @@ -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 diff --git a/test/fixtures/objects/testInfo.json b/test/fixtures/objects/testInfo.json deleted file mode 100644 index 8a47c95..0000000 --- a/test/fixtures/objects/testInfo.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "url": "http://twitter.com", - "domElement": "", - "login": "", - "password": "", - "runs": 3, - "fvonly": 1, - "connections": 0, - "private": 0, - "web10": 0, - "ignoreSSL": 0, - "script": "logData\t0\r\nnavigate\thttp://twitter.com\r\nlogData\t1\r\nsetValue\tname=session[username_or_email]\tfoo_baz\r\nsetValue\tname=session[password]\t5p1k397T\r\nsubmitForm\taction=https://twitter.com/sessions\r\n", - "block": null, - "authType": 0, - "notify": "", - "video": null, - "label": "", - "industry": "", - "industry_page": "", - "median_video": 0, - "ip": "::1", - "uid": null, - "user": null, - "priority": 5, - "bwIn": 1500, - "bwOut": 384, - "latency": 50, - "testLatency": 50, - "plr": "0", - "callback": "http://localhost/foo", - "agent": null, - "aft": 0, - "aftEarlyCutoff": "45", - "aftMinChanges": 0, - "tcpdump": 0, - "timeline": 0, - "netlog": 0, - "blockads": 0, - "sensitive": 0, - "type": "", - "noopt": "", - "noimages": "", - "noheaders": "", - "view": "", - "discard": 0, - "queue_limit": 0, - "pngss": 0, - "iq": 0, - "bodies": 0, - "time": 0, - "clear_rv": 0, - "keepua": 0, - "benchmark": null, - "max_retries": 0, - "location": "Local_Firefox_Chrome", - "browser": "Chrome", - "batch": 0, - "owner": "90d8b49d2c27233bb4661a8762a1e530a7927fd2", - "vd": null, - "vh": null, - "key": null, - "locationText": "Local VM - Chrome - DSL", - "workdir": "./work/jobs/Local_Firefox_Chrome", - "remoteUrl": null, - "remoteLocation": null, - "connectivity": "DSL", - "path": "./results/12/08/16/V2/2", - "job": "120816_V2_2.p5", - "work_dir": "./work/jobs/Local_Firefox_Chrome", - "job_file": "./work/jobs/Local_Firefox_Chrome/120816_V2_2.p5", - "tester": "IE7", - "started": 1345141634, - "last_updated": 1345141732, - "retries": 0, - "completed": 1345141732, - "medianRun": 3 -} \ No newline at end of file diff --git a/test/fixtures/objects/testResults.json b/test/fixtures/objects/testResults.json deleted file mode 100644 index 52de783..0000000 --- a/test/fixtures/objects/testResults.json +++ /dev/null @@ -1,3855 +0,0 @@ -{ - "data": { - "id": "141106_8N_ZRC", - "url": "https://google.com", - "summary": "http://www.webpagetest.org/results.php?test=141106_8N_ZRC", - "testUrl": "https://google.com", - "location": "Dulles:Chrome", - "from": "Dulles, VA - Chrome - Cable", - "connectivity": "Cable", - "bwDown": 5000, - "bwUp": 1000, - "latency": 28, - "plr": "0", - "completed": 1415299577, - "tester": "IE9302-192.168.103.92", - "testerDNS": "192.168.103.1,192.168.0.1", - "runs": { - "1": { - "firstView": { - "URL": "https://google.com", - "loadTime": 1529, - "TTFB": 503, - "bytesOut": 9808, - "bytesOutDoc": 7942, - "bytesIn": 501267, - "bytesInDoc": 398930, - "connections": 5, - "requests": [ - { - "method": "GET", - "host": "google.com", - "url": "/", - "responseCode": "301", - "load_ms": "66", - "ttfb_ms": "64", - "load_start": "183", - "bytesOut": "323", - "bytesIn": "595", - "objectSize": "0", - "expires": "Sat, 06 Dec 2014 18:46:01 GMT", - "cacheControl": "public, max-age=2592000", - "contentType": "text/html", - "type": "3", - "socket": "192", - "score_cache": "100", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": 36, - "ssl_ms": 96, - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "2592000", - "dns_start": "0", - "dns_end": "50", - "connect_start": "50", - "connect_end": "86", - "ssl_start": "86", - "ssl_end": "182", - "server_count": "11", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://google.com/", - "score_progressive_jpeg": -1, - "load_end": 249, - "ttfb_start": "183", - "ttfb_end": 247, - "download_start": 247, - "download_end": 249, - "download_ms": 2, - "all_start": "50", - "all_end": 249, - "all_ms": 198, - "headers": { - "request": [ - "GET / HTTP/1.1", - "Host: google.com", - "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 301 Moved Permanently", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=2592000", - "content-length: 220", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:46:01 GMT", - "expires: Sat, 06 Dec 2014 18:46:01 GMT", - "location: https://www.google.com/", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 0, - "number": 1 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/", - "responseCode": "200", - "load_ms": "203", - "ttfb_ms": "151", - "load_start": "352", - "bytesOut": "243", - "bytesIn": "63244", - "objectSize": "0", - "expires": "-1", - "cacheControl": "private, max-age=0", - "contentType": "text/html", - "contentEncoding": "gzip", - "type": "3", - "socket": "208", - "score_cache": "-1", - "score_cdn": "-1", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 0, - "connect_ms": 33, - "ssl_ms": 63, - "gzip_total": "780", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "-1", - "cdn_provider": "Google", - "dns_start": "256", - "dns_end": "256", - "connect_start": "256", - "connect_end": "289", - "ssl_start": "289", - "ssl_end": "352", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/", - "score_progressive_jpeg": -1, - "load_end": 555, - "ttfb_start": "352", - "ttfb_end": 503, - "download_start": 503, - "download_end": 555, - "download_ms": 52, - "all_start": "256", - "all_end": 555, - "all_ms": 299, - "headers": { - "request": [ - "GET / HTTP/1.1", - "Host: www.google.com", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=0", - "content-encoding: gzip", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:46:01 GMT", - "expires: -1", - "p3p: CP=\"This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info.\"", - "server: gws", - "set-cookie: PREF=ID=d47034f5653867b9:FF=0:TM=1415299561:LM=1415299561:S=_Lnze49gy_eLNTCT; expires=Sat, 05-Nov-2016 18:46:01 GMT; path=/; domain=.google.com", - "NID=67=CypCtBv6uDyjo-YeQv5XdLwuaJ_DTDUM-7trjlCcT8WURKXHoVuV_UXxT1QME9wNaKE6LqvWqhUZFoO9_V4K9mbPvC_r79XHktUlFu7m8ovfiM1vXxsot7jWrWsNqeXO; expires=Fri, 08-May-2015 18:46:01 GMT; path=/; domain=.google.com; HttpOnly", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 1, - "number": 2 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "responseCode": "200", - "load_ms": "288", - "ttfb_ms": "43", - "load_start": "679", - "bytesOut": "443", - "bytesIn": "139553", - "objectSize": "0", - "expires": "Fri, 06 Nov 2015 11:15:49 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "208", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "429", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/", - "initiator_line": "94", - "initiator_column": "17237", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "score_progressive_jpeg": -1, - "load_end": 967, - "ttfb_start": "679", - "ttfb_end": 722, - "download_start": 722, - "download_end": 967, - "download_ms": 245, - "all_start": "679", - "all_end": 967, - "all_ms": "288", - "headers": { - "request": [ - "GET /xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP/1.1", - "Host: www.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 27012", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 130931", - "content-type: text/javascript; charset=UTF-8", - "date: Thu, 06 Nov 2014 11:15:49 GMT", - "expires: Fri, 06 Nov 2015 11:15:49 GMT", - "last-modified: Tue, 04 Nov 2014 19:30:26 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 2, - "number": 3 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/images/srpr/logo11w.png", - "responseCode": "200", - "load_ms": "477", - "ttfb_ms": "476", - "load_start": "679", - "bytesOut": "330", - "bytesIn": "14113", - "objectSize": "0", - "expires": "Thu, 06 Nov 2014 18:46:02 GMT", - "cacheControl": "private, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "208", - "score_cache": "0", - "score_cdn": "100", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/", - "initiator_line": "28", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/images/srpr/logo11w.png", - "score_progressive_jpeg": -1, - "load_end": 1156, - "ttfb_start": "679", - "ttfb_end": 1155, - "download_start": 1155, - "download_end": 1156, - "download_ms": 1, - "all_start": "679", - "all_end": 1156, - "all_ms": "477", - "headers": { - "request": [ - "GET /images/srpr/logo11w.png HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=31536000", - "content-length: 14022", - "content-type: image/png", - "date: Thu, 06 Nov 2014 18:46:02 GMT", - "expires: Thu, 06 Nov 2014 18:46:02 GMT", - "last-modified: Wed, 09 Oct 2013 01:35:39 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 3, - "number": 4 - }, - { - "method": "GET", - "host": "ssl.gstatic.com", - "url": "/gb/images/i1_71651352.png", - "responseCode": "200", - "load_ms": "80", - "ttfb_ms": "41", - "load_start": "807", - "bytesOut": "333", - "bytesIn": "14286", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 13:04:25 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "293", - "score_cache": "100", - "score_cdn": "0", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 27, - "connect_ms": 37, - "ssl_ms": 63, - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "dns_start": "679", - "dns_end": "706", - "connect_start": "706", - "connect_end": "743", - "ssl_start": "743", - "ssl_end": "806", - "initiator": "https://www.google.com/", - "initiator_line": "76", - "initiator_column": "35", - "server_count": "4", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://ssl.gstatic.com/gb/images/i1_71651352.png", - "score_progressive_jpeg": -1, - "load_end": 887, - "ttfb_start": "807", - "ttfb_end": 848, - "download_start": 848, - "download_end": 887, - "download_ms": 39, - "all_start": "679", - "all_end": 887, - "all_ms": 207, - "headers": { - "request": [ - "GET /gb/images/i1_71651352.png HTTP/1.1", - "Host: ssl.gstatic.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 106897", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-length: 14055", - "content-type: image/png", - "date: Wed, 05 Nov 2014 13:04:25 GMT", - "expires: Thu, 05 Nov 2015 13:04:25 GMT", - "last-modified: Thu, 16 Oct 2014 18:20:30 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 4, - "number": 5 - }, - { - "method": "GET", - "host": "www.gstatic.com", - "url": "/og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w", - "responseCode": "200", - "load_ms": "167", - "ttfb_ms": "164", - "load_start": "992", - "bytesOut": "392", - "bytesIn": "184144", - "objectSize": "0", - "expires": "Wed, 04 Nov 2015 21:10:54 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "325", - "score_cache": "100", - "score_cdn": "0", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 50, - "connect_ms": 40, - "ssl_ms": 50, - "gzip_total": "429", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "dns_start": "851", - "dns_end": "901", - "connect_start": "901", - "connect_end": "941", - "ssl_start": "941", - "ssl_end": "991", - "initiator": "https://www.google.com/", - "initiator_line": "57", - "initiator_column": "143", - "server_count": "4", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.gstatic.com/og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w", - "score_progressive_jpeg": -1, - "load_end": 1159, - "ttfb_start": "992", - "ttfb_end": 1156, - "download_start": 1156, - "download_end": 1159, - "download_ms": 3, - "all_start": "851", - "all_end": 1159, - "all_ms": 307, - "headers": { - "request": [ - "GET /og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w HTTP/1.1", - "Host: www.gstatic.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 164108", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 55207", - "content-type: text/javascript; charset=UTF-8", - "date: Tue, 04 Nov 2014 21:10:54 GMT", - "expires: Wed, 04 Nov 2015 21:10:54 GMT", - "last-modified: Mon, 03 Nov 2014 17:56:31 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 5, - "number": 6 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/extern_chrome/854094c746d4c9a.js?bav=on.2,or.r_qf.", - "responseCode": "200", - "load_ms": "100", - "ttfb_ms": "88", - "load_start": "1154", - "bytesOut": "340", - "bytesIn": "13943", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 00:00:00 GMT", - "cacheControl": "private", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "208", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "422", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31382038", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "initiator_line": "1187", - "initiator_column": "181", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/extern_chrome/854094c746d4c9a.js?bav=on.2,or.r_qf.", - "score_progressive_jpeg": -1, - "load_end": 1254, - "ttfb_start": "1154", - "ttfb_end": 1242, - "download_start": 1242, - "download_end": 1254, - "download_ms": 12, - "all_start": "1154", - "all_end": 1254, - "all_ms": "100", - "headers": { - "request": [ - "GET /extern_chrome/854094c746d4c9a.js?bav=on.2,or.r_qf. HTTP/1.1", - "Host: www.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private", - "content-disposition: attachment; filename=\"f.txt\"", - "content-encoding: gzip", - "content-length: 13825", - "content-type: text/javascript; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:46:02 GMT", - "expires: Thu, 05 Nov 2015 00:00:00 GMT", - "last-modified: Thu, 07 Nov 2013 00:00:00 GMT", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 6, - "number": 7 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm/am=lKj_TwWDwIxAARMQrA4/rt=j/d=0/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "responseCode": "200", - "load_ms": "121", - "ttfb_ms": "41", - "load_start": "1223", - "bytesOut": "682", - "bytesIn": "48768", - "objectSize": "0", - "expires": "Fri, 06 Nov 2015 04:39:44 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "208", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "428", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "initiator_line": "101", - "initiator_column": "112", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm/am=lKj_TwWDwIxAARMQrA4/rt=j/d=0/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "score_progressive_jpeg": -1, - "load_end": 1344, - "ttfb_start": "1223", - "ttfb_end": 1264, - "download_start": 1264, - "download_end": 1344, - "download_ms": 80, - "all_start": "1223", - "all_end": 1344, - "all_ms": "121", - "headers": { - "request": [ - "GET /xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm/am=lKj_TwWDwIxAARMQrA4/rt=j/d=0/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP/1.1", - "Host: www.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 50778", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 48157", - "content-type: text/javascript; charset=UTF-8", - "date: Thu, 06 Nov 2014 04:39:44 GMT", - "expires: Fri, 06 Nov 2015 04:39:44 GMT", - "last-modified: Tue, 04 Nov 2014 19:30:26 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 7, - "number": 8 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/textinputassistant/tia.png", - "responseCode": "200", - "load_ms": "167", - "ttfb_ms": "164", - "load_start": "1224", - "bytesOut": "333", - "bytesIn": "479", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 04:43:41 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "208", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/", - "initiator_line": "1", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/textinputassistant/tia.png", - "score_progressive_jpeg": -1, - "load_end": 1391, - "ttfb_start": "1224", - "ttfb_end": 1388, - "download_start": 1388, - "download_end": 1391, - "download_ms": 3, - "all_start": "1224", - "all_end": 1391, - "all_ms": "167", - "headers": { - "request": [ - "GET /textinputassistant/tia.png HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 136941", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-length: 387", - "content-type: image/png", - "date: Wed, 05 Nov 2014 04:43:41 GMT", - "expires: Thu, 05 Nov 2015 04:43:41 GMT", - "last-modified: Mon, 02 Apr 2012 02:13:37 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 8, - "number": 9 - }, - { - "method": "GET", - "host": "apis.google.com", - "url": "/_/scs/abc-static/_/js/k=gapi.gapi.en.3_mJ9Wvc9FU.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg/cb=gapi.loaded_0", - "responseCode": "200", - "load_ms": "123", - "ttfb_ms": "48", - "load_start": "1338", - "bytesOut": "456", - "bytesIn": "49179", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 15:23:35 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "400", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 26, - "connect_ms": 37, - "ssl_ms": 54, - "gzip_total": "428", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "1221", - "dns_end": "1247", - "connect_start": "1247", - "connect_end": "1284", - "ssl_start": "1284", - "ssl_end": "1338", - "initiator": "https://www.gstatic.com/og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w", - "initiator_line": "138", - "initiator_column": "381", - "server_count": "11", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://apis.google.com/_/scs/abc-static/_/js/k=gapi.gapi.en.3_mJ9Wvc9FU.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg/cb=gapi.loaded_0", - "score_progressive_jpeg": -1, - "load_end": 1461, - "ttfb_start": "1338", - "ttfb_end": 1386, - "download_start": 1386, - "download_end": 1461, - "download_ms": 75, - "all_start": "1221", - "all_end": 1461, - "all_ms": 240, - "headers": { - "request": [ - "GET /_/scs/abc-static/_/js/k=gapi.gapi.en.3_mJ9Wvc9FU.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg/cb=gapi.loaded_0 HTTP/1.1", - "Host: apis.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 98547", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 48911", - "content-type: text/javascript; charset=UTF-8", - "date: Wed, 05 Nov 2014 15:23:35 GMT", - "expires: Thu, 05 Nov 2015 15:23:35 GMT", - "last-modified: Thu, 16 Oct 2014 07:30:29 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 9, - "number": 10 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/images/nav_logo195.png", - "responseCode": "200", - "load_ms": "68", - "ttfb_ms": "53", - "load_start": "1539", - "bytesOut": "329", - "bytesIn": "16296", - "objectSize": "0", - "expires": "Thu, 06 Nov 2014 18:46:02 GMT", - "cacheControl": "private, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "208", - "score_cache": "0", - "score_cdn": "100", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/images/nav_logo195.png", - "score_progressive_jpeg": -1, - "load_end": 1607, - "ttfb_start": "1539", - "ttfb_end": 1592, - "download_start": 1592, - "download_end": 1607, - "download_ms": 15, - "all_start": "1539", - "all_end": 1607, - "all_ms": "68", - "headers": { - "request": [ - "GET /images/nav_logo195.png HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=31536000", - "content-length: 16214", - "content-type: image/png", - "date: Thu, 06 Nov 2014 18:46:02 GMT", - "expires: Thu, 06 Nov 2014 18:46:02 GMT", - "last-modified: Wed, 21 May 2014 00:02:44 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 10, - "number": 11 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=6cFbVJTsJ63CsATV04D4Dw&e=18167,4003510,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020562,4020666,4020921,4021073,4021416,4022073,4022318,4022495,4022688,4022919,4023367,4023567,4023709,4023971,4024702,4024731,4024797,4024905,8500272,8500325,8500393,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.61.28.sb.36.p.10.spch.5.ifl.2.foot.1&action=&srt=588&p=s&npn=1&rt=xjsls.27,prt.28,xjses.447,xjsee.551,xjs.568,ol.935,iml.583,wsrt.588,cst.95,dnst.0,rqst.203,rspt.52", - "responseCode": "204", - "load_ms": "72", - "ttfb_ms": "69", - "load_start": "1540", - "bytesOut": "857", - "bytesIn": "251", - "objectSize": "0", - "contentType": "text/html", - "type": "3", - "socket": "208", - "score_cache": "0", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=6cFbVJTsJ63CsATV04D4Dw&e=18167,4003510,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020562,4020666,4020921,4021073,4021416,4022073,4022318,4022495,4022688,4022919,4023367,4023567,4023709,4023971,4024702,4024731,4024797,4024905,8500272,8500325,8500393,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.61.28.sb.36.p.10.spch.5.ifl.2.foot.1&action=&srt=588&p=s&npn=1&rt=xjsls.27,prt.28,xjses.447,xjsee.551,xjs.568,ol.935,iml.583,wsrt.588,cst.95,dnst.0,rqst.203,rspt.52", - "score_progressive_jpeg": -1, - "load_end": 1612, - "ttfb_start": "1540", - "ttfb_end": 1609, - "download_start": 1609, - "download_end": 1612, - "download_ms": 3, - "all_start": "1540", - "all_end": 1612, - "all_ms": "72", - "headers": { - "request": [ - "GET /gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=6cFbVJTsJ63CsATV04D4Dw&e=18167,4003510,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020562,4020666,4020921,4021073,4021416,4022073,4022318,4022495,4022688,4022919,4023367,4023567,4023709,4023971,4024702,4024731,4024797,4024905,8500272,8500325,8500393,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.61.28.sb.36.p.10.spch.5.ifl.2.foot.1&action=&srt=588&p=s&npn=1&rt=xjsls.27,prt.28,xjses.447,xjsee.551,xjs.568,ol.935,iml.583,wsrt.588,cst.95,dnst.0,rqst.203,rspt.52 HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 204 No Content", - "alternate-protocol: 443:quic,p=0.01", - "content-length: 0", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:46:02 GMT", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 11, - "number": 12 - } - ], - "requestsDoc": 10, - "responses_200": 10, - "responses_404": 0, - "responses_other": 1, - "result": 0, - "render": 690, - "fullyLoaded": 1612, - "cached": 0, - "docTime": 1529, - "domTime": 0, - "score_cache": 72, - "score_cdn": 77, - "score_gzip": 100, - "score_cookies": -1, - "score_keep-alive": 100, - "score_minify": -1, - "score_combine": 100, - "score_compress": -1, - "score_etags": -1, - "gzip_total": 2916, - "gzip_savings": 0, - "minify_total": 0, - "minify_savings": 0, - "image_total": 0, - "image_savings": 0, - "optimization_checked": 1, - "aft": 0, - "domElements": 287, - "pageSpeedVersion": "1.9", - "title": "Google", - "titleTime": 689, - "loadEventStart": 1521, - "loadEventEnd": 1526, - "domContentLoadedEventStart": 616, - "domContentLoadedEventEnd": 650, - "lastVisualChange": 0, - "browser_name": "Google Chrome", - "browser_version": "38.0.2125.111", - "server_count": 5, - "server_rtt": 0, - "base_page_cdn": "Google", - "adult_site": 0, - "fixed_viewport": 0, - "score_progressive_jpeg": -1, - "firstPaint": 679, - "docCPUms": 873.606, - "fullyLoadedCPUms": 1092.007, - "docCPUpct": 57, - "fullyLoadedCPUpct": 25, - "isResponsive": -1, - "date": 1415299553, - "CSI": [ - "v", - "s", - "imc", - "imn", - "imp", - "ei", - "e", - "atyp", - "adh", - "xjs", - "action", - "srt", - "p", - "npn", - "rt", - "xjsls", - "prt", - "xjses", - "xjsee", - "ol", - "iml", - "wsrt", - "cst", - "dnst", - "rqst", - "rspt" - ], - "CSI.v": 3, - "CSI.s": "webhp", - "CSI.imc": 1, - "CSI.imn": 1, - "CSI.imp": 1, - "CSI.ei": "6cFbVJTsJ63CsATV04D4Dw", - "CSI.e": "18167,4003510,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020562,4020666,4020921,4021073,4021416,4022073,4022318,4022495,4022688,4022919,4023367,4023567,4023709,4023971,4024702,4024731,4024797,4024905,8500272,8500325,8500393,8500700,10200083,10200716,10200743", - "CSI.atyp": "csi", - "CSI.adh": "", - "CSI.xjs": 568, - "CSI.action": "", - "CSI.srt": 588, - "CSI.p": "s", - "CSI.npn": 1, - "CSI.rt": "xjsls.27,prt.28,xjses.447,xjsee.551,xjs.568,ol.935,iml.583,wsrt.588,cst.95,dnst.0,rqst.203,rspt.52", - "CSI.xjsls": 27, - "CSI.prt": 28, - "CSI.xjses": 447, - "CSI.xjsee": 551, - "CSI.ol": 935, - "CSI.iml": 583, - "CSI.wsrt": 588, - "CSI.cst": 95, - "CSI.dnst": 0, - "CSI.rqst": 203, - "CSI.rspt": 52, - "SpeedIndex": 0, - "visualComplete": 0, - "run": 1, - "effectiveBps": 451999, - "effectiveBpsDoc": 388820, - "tester": "IE9302-192.168.103.92", - "pages": { - "details": "http://www.webpagetest.org/details.php?test=141106_8N_ZRC&run=1&cached=0", - "checklist": "http://www.webpagetest.org/performance_optimization.php?test=141106_8N_ZRC&run=1&cached=0", - "breakdown": "http://www.webpagetest.org/breakdown.php?test=141106_8N_ZRC&run=1&cached=0", - "domains": "http://www.webpagetest.org/domains.php?test=141106_8N_ZRC&run=1&cached=0", - "screenShot": "http://www.webpagetest.org/screen_shot.php?test=141106_8N_ZRC&run=1&cached=0" - }, - "thumbnails": { - "waterfall": "http://www.webpagetest.org/result/141106_8N_ZRC/1_waterfall_thumb.png", - "checklist": "http://www.webpagetest.org/result/141106_8N_ZRC/1_optimization_thumb.png", - "screenShot": "http://www.webpagetest.org/result/141106_8N_ZRC/1_screen_thumb.png" - }, - "images": { - "waterfall": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_waterfall.png", - "connectionView": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_connection.png", - "checklist": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_optimization.png", - "screenShot": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_screen.jpg" - }, - "rawData": { - "headers": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_report.txt", - "pageData": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_IEWPG.txt", - "requestsData": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_IEWTR.txt", - "utilization": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_progress.csv" - }, - "videoFrames": [ - { - "time": 0, - "image": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/video_1/frame_0000.jpg", - "VisuallyComplete": 100 - } - ], - "domains": { - "moc.elgoog": { - "bytes": 595, - "requests": 1, - "connections": 1 - }, - "moc.elgoog.www": { - "bytes": 296647, - "requests": 8, - "connections": 1 - }, - "moc.citatsg.lss": { - "bytes": 14286, - "requests": 1, - "connections": 1 - }, - "moc.citatsg.www": { - "bytes": 184144, - "requests": 1, - "connections": 1 - }, - "moc.elgoog.sipa": { - "bytes": 49179, - "requests": 1, - "connections": 1 - } - }, - "breakdown": { - "html": { - "color": [ - 130, - 181, - 252 - ], - "bytes": 64090, - "requests": 3 - }, - "js": { - "color": [ - 254, - 197, - 132 - ], - "bytes": 435587, - "requests": 5 - }, - "css": { - "color": [ - 178, - 234, - 148 - ], - "bytes": 0, - "requests": 0 - }, - "image": { - "color": [ - 196, - 154, - 232 - ], - "bytes": 45174, - "requests": 4 - }, - "flash": { - "color": [ - 45, - 183, - 193 - ], - "bytes": 0, - "requests": 0 - }, - "font": { - "color": [ - 255, - 82, - 62 - ], - "bytes": 0, - "requests": 0 - }, - "other": { - "color": [ - 196, - 196, - 196 - ], - "bytes": 0, - "requests": 0 - } - } - }, - "repeatView": { - "URL": "https://google.com", - "loadTime": 905, - "TTFB": 362, - "bytesOut": 10427, - "bytesOutDoc": 9618, - "bytesIn": 86869, - "bytesInDoc": 86708, - "connections": 2, - "requests": [ - { - "method": "GET", - "host": "google.com", - "url": "/", - "responseCode": "301", - "load_ms": "64", - "ttfb_ms": "63", - "load_start": "129", - "bytesOut": "323", - "bytesIn": "595", - "objectSize": "0", - "expires": "Sat, 06 Dec 2014 18:46:12 GMT", - "cacheControl": "public, max-age=2592000", - "contentType": "text/html", - "type": "3", - "socket": "135", - "score_cache": "100", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": 97, - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "2592000", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "31", - "ssl_start": "31", - "ssl_end": "128", - "server_count": "11", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://google.com/", - "score_progressive_jpeg": -1, - "load_end": 193, - "ttfb_start": "129", - "ttfb_end": 192, - "download_start": 192, - "download_end": 193, - "download_ms": 1, - "all_start": "31", - "all_end": 193, - "all_ms": 161, - "headers": { - "request": [ - "GET / HTTP/1.1", - "Host: google.com", - "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A3DA6AEA-1B20-4879-B6F3-31BD12123EF3" - ], - "response": [ - "HTTP/1.1 301 Moved Permanently", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=2592000", - "content-length: 220", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:46:12 GMT", - "expires: Sat, 06 Dec 2014 18:46:12 GMT", - "location: https://www.google.com/", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 0, - "number": 1 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/", - "responseCode": "200", - "load_ms": "205", - "ttfb_ms": "154", - "load_start": "208", - "bytesOut": "243", - "bytesIn": "91126", - "objectSize": "0", - "expires": "-1", - "cacheControl": "private, max-age=0", - "contentType": "text/html", - "contentEncoding": "gzip", - "type": "3", - "socket": "145", - "score_cache": "-1", - "score_cdn": "-1", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 0, - "connect_ms": 0, - "ssl_ms": 0, - "gzip_total": "456", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "-1", - "cdn_provider": "Google", - "dns_start": "199", - "dns_end": "199", - "connect_start": "199", - "connect_end": "199", - "ssl_start": "199", - "ssl_end": "199", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/", - "score_progressive_jpeg": -1, - "load_end": 413, - "ttfb_start": "208", - "ttfb_end": 362, - "download_start": 362, - "download_end": 413, - "download_ms": 51, - "all_start": "208", - "all_end": 413, - "all_ms": "205", - "headers": { - "request": [ - "GET / HTTP/1.1", - "Host: www.google.com", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A3DA6AEA-1B20-4879-B6F3-31BD12123EF3" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=0", - "content-encoding: gzip", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:46:12 GMT", - "expires: -1", - "server: gws", - "set-cookie: PREF=ID=d47034f5653867b9:U=bdb7999b3c37ff3c:FF=0:TM=1415299561:LM=1415299572:S=y1TEqCJe7cEmheqN; expires=Sat, 05-Nov-2016 18:46:12 GMT; path=/; domain=.google.com", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 1, - "number": 2 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=9MFbVJSWMajasATZ0ICQCg&e=18168,3700318,3700349,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021083,4021089,4021415,4022074,4022318,4022489,4022495,4023367,4023567,4023709,4023971,4024102,4024692,8500272,8500394,10200083,10200526,10200716&atyp=csi&adh=&xjs=init.61.28.sb.40.p.9.spch.4.fpe.1.async.1&action=&srt=453&p=s&npn=1&rt=xjsls.22,prt.23,xjses.151,xjsee.270,xjs.292,ol.485,iml.106,wsrt.453,cst.0,dnst.0,rqst.205,rspt.51", - "responseCode": "204", - "load_ms": "60", - "ttfb_ms": "58", - "load_start": "931", - "bytesOut": "848", - "bytesIn": "251", - "objectSize": "0", - "contentType": "text/html", - "type": "3", - "socket": "145", - "score_cache": "0", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=9MFbVJSWMajasATZ0ICQCg&e=18168,3700318,3700349,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021083,4021089,4021415,4022074,4022318,4022489,4022495,4023367,4023567,4023709,4023971,4024102,4024692,8500272,8500394,10200083,10200526,10200716&atyp=csi&adh=&xjs=init.61.28.sb.40.p.9.spch.4.fpe.1.async.1&action=&srt=453&p=s&npn=1&rt=xjsls.22,prt.23,xjses.151,xjsee.270,xjs.292,ol.485,iml.106,wsrt.453,cst.0,dnst.0,rqst.205,rspt.51", - "score_progressive_jpeg": -1, - "load_end": 991, - "ttfb_start": "931", - "ttfb_end": 989, - "download_start": 989, - "download_end": 991, - "download_ms": 2, - "all_start": "931", - "all_end": 991, - "all_ms": "60", - "headers": { - "request": [ - "GET /gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=9MFbVJSWMajasATZ0ICQCg&e=18168,3700318,3700349,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021083,4021089,4021415,4022074,4022318,4022489,4022495,4023367,4023567,4023709,4023971,4024102,4024692,8500272,8500394,10200083,10200526,10200716&atyp=csi&adh=&xjs=init.61.28.sb.40.p.9.spch.4.fpe.1.async.1&action=&srt=453&p=s&npn=1&rt=xjsls.22,prt.23,xjses.151,xjsee.270,xjs.292,ol.485,iml.106,wsrt.453,cst.0,dnst.0,rqst.205,rspt.51 HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A3DA6AEA-1B20-4879-B6F3-31BD12123EF3" - ], - "response": [ - "HTTP/1.1 204 No Content", - "alternate-protocol: 443:quic,p=0.01", - "content-length: 0", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:46:13 GMT", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 2, - "number": 3 - } - ], - "requestsDoc": 2, - "responses_200": 1, - "responses_404": 0, - "responses_other": 1, - "result": 0, - "render": 570, - "fullyLoaded": 991, - "cached": 1, - "docTime": 905, - "domTime": 0, - "score_cache": 50, - "score_cdn": -1, - "score_gzip": 100, - "score_cookies": -1, - "score_keep-alive": 100, - "score_minify": -1, - "score_combine": 100, - "score_compress": -1, - "score_etags": -1, - "gzip_total": 456, - "gzip_savings": 0, - "minify_total": 0, - "minify_savings": 0, - "image_total": 0, - "image_savings": 0, - "optimization_checked": 1, - "aft": 0, - "domElements": 287, - "pageSpeedVersion": "1.9", - "title": "Google", - "titleTime": 669, - "loadEventStart": 923, - "loadEventEnd": 946, - "domContentLoadedEventStart": 476, - "domContentLoadedEventEnd": 511, - "lastVisualChange": 0, - "browser_name": "Google Chrome", - "browser_version": "38.0.2125.111", - "server_count": 5, - "server_rtt": 0, - "base_page_cdn": "Google", - "adult_site": 0, - "fixed_viewport": 0, - "score_progressive_jpeg": -1, - "firstPaint": 542, - "docCPUms": 748.805, - "fullyLoadedCPUms": 858.005, - "docCPUpct": 79, - "fullyLoadedCPUpct": 28, - "isResponsive": -1, - "date": 1415299564, - "CSI": [ - "v", - "s", - "imc", - "imn", - "imp", - "ei", - "e", - "atyp", - "adh", - "xjs", - "action", - "srt", - "p", - "npn", - "rt", - "xjsls", - "prt", - "xjses", - "xjsee", - "ol", - "iml", - "wsrt", - "cst", - "dnst", - "rqst", - "rspt" - ], - "CSI.v": 3, - "CSI.s": "webhp", - "CSI.imc": 1, - "CSI.imn": 1, - "CSI.imp": 1, - "CSI.ei": "9MFbVJSWMajasATZ0ICQCg", - "CSI.e": "18168,3700318,3700349,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021083,4021089,4021415,4022074,4022318,4022489,4022495,4023367,4023567,4023709,4023971,4024102,4024692,8500272,8500394,10200083,10200526,10200716", - "CSI.atyp": "csi", - "CSI.adh": "", - "CSI.xjs": 292, - "CSI.action": "", - "CSI.srt": 453, - "CSI.p": "s", - "CSI.npn": 1, - "CSI.rt": "xjsls.22,prt.23,xjses.151,xjsee.270,xjs.292,ol.485,iml.106,wsrt.453,cst.0,dnst.0,rqst.205,rspt.51", - "CSI.xjsls": 22, - "CSI.prt": 23, - "CSI.xjses": 151, - "CSI.xjsee": 270, - "CSI.ol": 485, - "CSI.iml": 106, - "CSI.wsrt": 453, - "CSI.cst": 0, - "CSI.dnst": 0, - "CSI.rqst": 205, - "CSI.rspt": 51, - "SpeedIndex": 0, - "visualComplete": 0, - "run": 1, - "effectiveBps": 138106, - "effectiveBpsDoc": 159683, - "tester": "IE9302-192.168.103.92", - "pages": { - "details": "http://www.webpagetest.org/details.php?test=141106_8N_ZRC&run=1&cached=1", - "checklist": "http://www.webpagetest.org/performance_optimization.php?test=141106_8N_ZRC&run=1&cached=1", - "breakdown": "http://www.webpagetest.org/breakdown.php?test=141106_8N_ZRC&run=1&cached=1", - "domains": "http://www.webpagetest.org/domains.php?test=141106_8N_ZRC&run=1&cached=1", - "screenShot": "http://www.webpagetest.org/screen_shot.php?test=141106_8N_ZRC&run=1&cached=1" - }, - "thumbnails": { - "waterfall": "http://www.webpagetest.org/result/141106_8N_ZRC/1_Cached_waterfall_thumb.png", - "checklist": "http://www.webpagetest.org/result/141106_8N_ZRC/1_Cached_optimization_thumb.png", - "screenShot": "http://www.webpagetest.org/result/141106_8N_ZRC/1_Cached_screen_thumb.png" - }, - "images": { - "waterfall": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_Cached_waterfall.png", - "connectionView": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_Cached_connection.png", - "checklist": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_Cached_optimization.png", - "screenShot": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_Cached_screen.jpg" - }, - "rawData": { - "headers": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_Cached_report.txt", - "pageData": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_Cached_IEWPG.txt", - "requestsData": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_Cached_IEWTR.txt", - "utilization": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_Cached_progress.csv" - }, - "videoFrames": [ - { - "time": 0, - "image": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/video_1_cached/frame_0000.jpg", - "VisuallyComplete": 100 - } - ], - "domains": { - "moc.elgoog": { - "bytes": 595, - "requests": 1, - "connections": 1 - }, - "moc.elgoog.www": { - "bytes": 91377, - "requests": 2, - "connections": 1 - } - }, - "breakdown": { - "html": { - "color": [ - 130, - 181, - 252 - ], - "bytes": 91972, - "requests": 3 - }, - "js": { - "color": [ - 254, - 197, - 132 - ], - "bytes": 0, - "requests": 0 - }, - "css": { - "color": [ - 178, - 234, - 148 - ], - "bytes": 0, - "requests": 0 - }, - "image": { - "color": [ - 196, - 154, - 232 - ], - "bytes": 0, - "requests": 0 - }, - "flash": { - "color": [ - 45, - 183, - 193 - ], - "bytes": 0, - "requests": 0 - }, - "font": { - "color": [ - 255, - 82, - 62 - ], - "bytes": 0, - "requests": 0 - }, - "other": { - "color": [ - 196, - 196, - 196 - ], - "bytes": 0, - "requests": 0 - } - } - } - } - }, - "fvonly": false, - "successfulFVRuns": 1, - "successfulRVRuns": 1, - "average": { - "firstView": { - "loadTime": 1529, - "TTFB": 503, - "bytesOut": 9808, - "bytesOutDoc": 7942, - "bytesIn": 501267, - "bytesInDoc": 398930, - "connections": 5, - "requests": 12, - "requestsDoc": 10, - "responses_200": 10, - "responses_404": 0, - "responses_other": 1, - "result": 0, - "render": 690, - "fullyLoaded": 1612, - "cached": 0, - "docTime": 1529, - "domTime": 0, - "score_cache": 72, - "score_cdn": 77, - "score_gzip": 100, - "score_cookies": -1, - "score_keep-alive": 100, - "score_minify": -1, - "score_combine": 100, - "score_compress": -1, - "score_etags": -1, - "gzip_total": 2916, - "gzip_savings": 0, - "minify_total": 0, - "minify_savings": 0, - "image_total": 0, - "image_savings": 0, - "optimization_checked": 1, - "aft": 0, - "domElements": 287, - "pageSpeedVersion": 1.9, - "titleTime": 689, - "loadEventStart": 1521, - "loadEventEnd": 1526, - "domContentLoadedEventStart": 616, - "domContentLoadedEventEnd": 650, - "lastVisualChange": 0, - "server_count": 5, - "server_rtt": 0, - "adult_site": 0, - "fixed_viewport": 0, - "score_progressive_jpeg": -1, - "firstPaint": 679, - "docCPUms": 873.606, - "fullyLoadedCPUms": 1092.007, - "docCPUpct": 57, - "fullyLoadedCPUpct": 25, - "isResponsive": -1, - "date": 1415299553, - "CSI.v": 3, - "CSI.imc": 1, - "CSI.imn": 1, - "CSI.imp": 1, - "CSI.xjs": 568, - "CSI.srt": 588, - "CSI.npn": 1, - "CSI.xjsls": 27, - "CSI.prt": 28, - "CSI.xjses": 447, - "CSI.xjsee": 551, - "CSI.ol": 935, - "CSI.iml": 583, - "CSI.wsrt": 588, - "CSI.cst": 95, - "CSI.dnst": 0, - "CSI.rqst": 203, - "CSI.rspt": 52, - "SpeedIndex": 0, - "visualComplete": 0, - "run": 1, - "effectiveBps": 451999, - "effectiveBpsDoc": 388820, - "avgRun": 1 - }, - "repeatView": { - "loadTime": 905, - "TTFB": 362, - "bytesOut": 10427, - "bytesOutDoc": 9618, - "bytesIn": 86869, - "bytesInDoc": 86708, - "connections": 2, - "requests": 3, - "requestsDoc": 2, - "responses_200": 1, - "responses_404": 0, - "responses_other": 1, - "result": 0, - "render": 570, - "fullyLoaded": 991, - "cached": 1, - "docTime": 905, - "domTime": 0, - "score_cache": 50, - "score_cdn": -1, - "score_gzip": 100, - "score_cookies": -1, - "score_keep-alive": 100, - "score_minify": -1, - "score_combine": 100, - "score_compress": -1, - "score_etags": -1, - "gzip_total": 456, - "gzip_savings": 0, - "minify_total": 0, - "minify_savings": 0, - "image_total": 0, - "image_savings": 0, - "optimization_checked": 1, - "aft": 0, - "domElements": 287, - "pageSpeedVersion": 1.9, - "titleTime": 669, - "loadEventStart": 923, - "loadEventEnd": 946, - "domContentLoadedEventStart": 476, - "domContentLoadedEventEnd": 511, - "lastVisualChange": 0, - "server_count": 5, - "server_rtt": 0, - "adult_site": 0, - "fixed_viewport": 0, - "score_progressive_jpeg": -1, - "firstPaint": 542, - "docCPUms": 748.805, - "fullyLoadedCPUms": 858.005, - "docCPUpct": 79, - "fullyLoadedCPUpct": 28, - "isResponsive": -1, - "date": 1415299564, - "CSI.v": 3, - "CSI.imc": 1, - "CSI.imn": 1, - "CSI.imp": 1, - "CSI.xjs": 292, - "CSI.srt": 453, - "CSI.npn": 1, - "CSI.xjsls": 22, - "CSI.prt": 23, - "CSI.xjses": 151, - "CSI.xjsee": 270, - "CSI.ol": 485, - "CSI.iml": 106, - "CSI.wsrt": 453, - "CSI.cst": 0, - "CSI.dnst": 0, - "CSI.rqst": 205, - "CSI.rspt": 51, - "SpeedIndex": 0, - "visualComplete": 0, - "run": 1, - "effectiveBps": 138106, - "effectiveBpsDoc": 159683, - "avgRun": 1 - } - }, - "standardDeviation": { - "firstView": { - "loadTime": 0, - "TTFB": 0, - "bytesOut": 0, - "bytesOutDoc": 0, - "bytesIn": 0, - "bytesInDoc": 0, - "connections": 0, - "requests": 0, - "requestsDoc": 0, - "responses_200": 0, - "responses_404": 0, - "responses_other": 0, - "result": 0, - "render": 0, - "fullyLoaded": 0, - "cached": 0, - "docTime": 0, - "domTime": 0, - "score_cache": 0, - "score_cdn": 0, - "score_gzip": 0, - "score_cookies": 0, - "score_keep-alive": 0, - "score_minify": 0, - "score_combine": 0, - "score_compress": 0, - "score_etags": 0, - "gzip_total": 0, - "gzip_savings": 0, - "minify_total": 0, - "minify_savings": 0, - "image_total": 0, - "image_savings": 0, - "optimization_checked": 0, - "aft": 0, - "domElements": 0, - "pageSpeedVersion": 0, - "titleTime": 0, - "loadEventStart": 0, - "loadEventEnd": 0, - "domContentLoadedEventStart": 0, - "domContentLoadedEventEnd": 0, - "lastVisualChange": 0, - "server_count": 0, - "server_rtt": 0, - "adult_site": 0, - "fixed_viewport": 0, - "score_progressive_jpeg": 0, - "firstPaint": 0, - "docCPUms": 0, - "fullyLoadedCPUms": 0, - "docCPUpct": 0, - "fullyLoadedCPUpct": 0, - "isResponsive": 0, - "date": 0, - "CSI.v": 0, - "CSI.imc": 0, - "CSI.imn": 0, - "CSI.imp": 0, - "CSI.xjs": 0, - "CSI.srt": 0, - "CSI.npn": 0, - "CSI.xjsls": 0, - "CSI.prt": 0, - "CSI.xjses": 0, - "CSI.xjsee": 0, - "CSI.ol": 0, - "CSI.iml": 0, - "CSI.wsrt": 0, - "CSI.cst": 0, - "CSI.dnst": 0, - "CSI.rqst": 0, - "CSI.rspt": 0, - "SpeedIndex": 0, - "visualComplete": 0, - "run": 0, - "effectiveBps": 0, - "effectiveBpsDoc": 0, - "avgRun": null - }, - "repeatView": { - "loadTime": 0, - "TTFB": 0, - "bytesOut": 0, - "bytesOutDoc": 0, - "bytesIn": 0, - "bytesInDoc": 0, - "connections": 0, - "requests": 0, - "requestsDoc": 0, - "responses_200": 0, - "responses_404": 0, - "responses_other": 0, - "result": 0, - "render": 0, - "fullyLoaded": 0, - "cached": 0, - "docTime": 0, - "domTime": 0, - "score_cache": 0, - "score_cdn": 0, - "score_gzip": 0, - "score_cookies": 0, - "score_keep-alive": 0, - "score_minify": 0, - "score_combine": 0, - "score_compress": 0, - "score_etags": 0, - "gzip_total": 0, - "gzip_savings": 0, - "minify_total": 0, - "minify_savings": 0, - "image_total": 0, - "image_savings": 0, - "optimization_checked": 0, - "aft": 0, - "domElements": 0, - "pageSpeedVersion": 0, - "titleTime": 0, - "loadEventStart": 0, - "loadEventEnd": 0, - "domContentLoadedEventStart": 0, - "domContentLoadedEventEnd": 0, - "lastVisualChange": 0, - "server_count": 0, - "server_rtt": 0, - "adult_site": 0, - "fixed_viewport": 0, - "score_progressive_jpeg": 0, - "firstPaint": 0, - "docCPUms": 0, - "fullyLoadedCPUms": 0, - "docCPUpct": 0, - "fullyLoadedCPUpct": 0, - "isResponsive": 0, - "date": 0, - "CSI.v": 0, - "CSI.imc": 0, - "CSI.imn": 0, - "CSI.imp": 0, - "CSI.xjs": 0, - "CSI.srt": 0, - "CSI.npn": 0, - "CSI.xjsls": 0, - "CSI.prt": 0, - "CSI.xjses": 0, - "CSI.xjsee": 0, - "CSI.ol": 0, - "CSI.iml": 0, - "CSI.wsrt": 0, - "CSI.cst": 0, - "CSI.dnst": 0, - "CSI.rqst": 0, - "CSI.rspt": 0, - "SpeedIndex": 0, - "visualComplete": 0, - "run": 0, - "effectiveBps": 0, - "effectiveBpsDoc": 0, - "avgRun": null - } - }, - "median": { - "firstView": { - "URL": "https://google.com", - "loadTime": 1529, - "TTFB": 503, - "bytesOut": 9808, - "bytesOutDoc": 7942, - "bytesIn": 501267, - "bytesInDoc": 398930, - "connections": 5, - "requests": [ - { - "method": "GET", - "host": "google.com", - "url": "/", - "responseCode": "301", - "load_ms": "66", - "ttfb_ms": "64", - "load_start": "183", - "bytesOut": "323", - "bytesIn": "595", - "objectSize": "0", - "expires": "Sat, 06 Dec 2014 18:46:01 GMT", - "cacheControl": "public, max-age=2592000", - "contentType": "text/html", - "type": "3", - "socket": "192", - "score_cache": "100", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": 36, - "ssl_ms": 96, - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "2592000", - "dns_start": "0", - "dns_end": "50", - "connect_start": "50", - "connect_end": "86", - "ssl_start": "86", - "ssl_end": "182", - "server_count": "11", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://google.com/", - "score_progressive_jpeg": -1, - "load_end": 249, - "ttfb_start": "183", - "ttfb_end": 247, - "download_start": 247, - "download_end": 249, - "download_ms": 2, - "all_start": "50", - "all_end": 249, - "all_ms": 198, - "headers": { - "request": [ - "GET / HTTP/1.1", - "Host: google.com", - "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 301 Moved Permanently", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=2592000", - "content-length: 220", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:46:01 GMT", - "expires: Sat, 06 Dec 2014 18:46:01 GMT", - "location: https://www.google.com/", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 0, - "number": 1 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/", - "responseCode": "200", - "load_ms": "203", - "ttfb_ms": "151", - "load_start": "352", - "bytesOut": "243", - "bytesIn": "63244", - "objectSize": "0", - "expires": "-1", - "cacheControl": "private, max-age=0", - "contentType": "text/html", - "contentEncoding": "gzip", - "type": "3", - "socket": "208", - "score_cache": "-1", - "score_cdn": "-1", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 0, - "connect_ms": 33, - "ssl_ms": 63, - "gzip_total": "780", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "-1", - "cdn_provider": "Google", - "dns_start": "256", - "dns_end": "256", - "connect_start": "256", - "connect_end": "289", - "ssl_start": "289", - "ssl_end": "352", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/", - "score_progressive_jpeg": -1, - "load_end": 555, - "ttfb_start": "352", - "ttfb_end": 503, - "download_start": 503, - "download_end": 555, - "download_ms": 52, - "all_start": "256", - "all_end": 555, - "all_ms": 299, - "headers": { - "request": [ - "GET / HTTP/1.1", - "Host: www.google.com", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=0", - "content-encoding: gzip", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:46:01 GMT", - "expires: -1", - "p3p: CP=\"This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info.\"", - "server: gws", - "set-cookie: PREF=ID=d47034f5653867b9:FF=0:TM=1415299561:LM=1415299561:S=_Lnze49gy_eLNTCT; expires=Sat, 05-Nov-2016 18:46:01 GMT; path=/; domain=.google.com", - "NID=67=CypCtBv6uDyjo-YeQv5XdLwuaJ_DTDUM-7trjlCcT8WURKXHoVuV_UXxT1QME9wNaKE6LqvWqhUZFoO9_V4K9mbPvC_r79XHktUlFu7m8ovfiM1vXxsot7jWrWsNqeXO; expires=Fri, 08-May-2015 18:46:01 GMT; path=/; domain=.google.com; HttpOnly", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 1, - "number": 2 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "responseCode": "200", - "load_ms": "288", - "ttfb_ms": "43", - "load_start": "679", - "bytesOut": "443", - "bytesIn": "139553", - "objectSize": "0", - "expires": "Fri, 06 Nov 2015 11:15:49 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "208", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "429", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/", - "initiator_line": "94", - "initiator_column": "17237", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "score_progressive_jpeg": -1, - "load_end": 967, - "ttfb_start": "679", - "ttfb_end": 722, - "download_start": 722, - "download_end": 967, - "download_ms": 245, - "all_start": "679", - "all_end": 967, - "all_ms": "288", - "headers": { - "request": [ - "GET /xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP/1.1", - "Host: www.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 27012", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 130931", - "content-type: text/javascript; charset=UTF-8", - "date: Thu, 06 Nov 2014 11:15:49 GMT", - "expires: Fri, 06 Nov 2015 11:15:49 GMT", - "last-modified: Tue, 04 Nov 2014 19:30:26 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 2, - "number": 3 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/images/srpr/logo11w.png", - "responseCode": "200", - "load_ms": "477", - "ttfb_ms": "476", - "load_start": "679", - "bytesOut": "330", - "bytesIn": "14113", - "objectSize": "0", - "expires": "Thu, 06 Nov 2014 18:46:02 GMT", - "cacheControl": "private, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "208", - "score_cache": "0", - "score_cdn": "100", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/", - "initiator_line": "28", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/images/srpr/logo11w.png", - "score_progressive_jpeg": -1, - "load_end": 1156, - "ttfb_start": "679", - "ttfb_end": 1155, - "download_start": 1155, - "download_end": 1156, - "download_ms": 1, - "all_start": "679", - "all_end": 1156, - "all_ms": "477", - "headers": { - "request": [ - "GET /images/srpr/logo11w.png HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=31536000", - "content-length: 14022", - "content-type: image/png", - "date: Thu, 06 Nov 2014 18:46:02 GMT", - "expires: Thu, 06 Nov 2014 18:46:02 GMT", - "last-modified: Wed, 09 Oct 2013 01:35:39 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 3, - "number": 4 - }, - { - "method": "GET", - "host": "ssl.gstatic.com", - "url": "/gb/images/i1_71651352.png", - "responseCode": "200", - "load_ms": "80", - "ttfb_ms": "41", - "load_start": "807", - "bytesOut": "333", - "bytesIn": "14286", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 13:04:25 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "293", - "score_cache": "100", - "score_cdn": "0", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 27, - "connect_ms": 37, - "ssl_ms": 63, - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "dns_start": "679", - "dns_end": "706", - "connect_start": "706", - "connect_end": "743", - "ssl_start": "743", - "ssl_end": "806", - "initiator": "https://www.google.com/", - "initiator_line": "76", - "initiator_column": "35", - "server_count": "4", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://ssl.gstatic.com/gb/images/i1_71651352.png", - "score_progressive_jpeg": -1, - "load_end": 887, - "ttfb_start": "807", - "ttfb_end": 848, - "download_start": 848, - "download_end": 887, - "download_ms": 39, - "all_start": "679", - "all_end": 887, - "all_ms": 207, - "headers": { - "request": [ - "GET /gb/images/i1_71651352.png HTTP/1.1", - "Host: ssl.gstatic.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 106897", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-length: 14055", - "content-type: image/png", - "date: Wed, 05 Nov 2014 13:04:25 GMT", - "expires: Thu, 05 Nov 2015 13:04:25 GMT", - "last-modified: Thu, 16 Oct 2014 18:20:30 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 4, - "number": 5 - }, - { - "method": "GET", - "host": "www.gstatic.com", - "url": "/og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w", - "responseCode": "200", - "load_ms": "167", - "ttfb_ms": "164", - "load_start": "992", - "bytesOut": "392", - "bytesIn": "184144", - "objectSize": "0", - "expires": "Wed, 04 Nov 2015 21:10:54 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "325", - "score_cache": "100", - "score_cdn": "0", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 50, - "connect_ms": 40, - "ssl_ms": 50, - "gzip_total": "429", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "dns_start": "851", - "dns_end": "901", - "connect_start": "901", - "connect_end": "941", - "ssl_start": "941", - "ssl_end": "991", - "initiator": "https://www.google.com/", - "initiator_line": "57", - "initiator_column": "143", - "server_count": "4", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.gstatic.com/og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w", - "score_progressive_jpeg": -1, - "load_end": 1159, - "ttfb_start": "992", - "ttfb_end": 1156, - "download_start": 1156, - "download_end": 1159, - "download_ms": 3, - "all_start": "851", - "all_end": 1159, - "all_ms": 307, - "headers": { - "request": [ - "GET /og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w HTTP/1.1", - "Host: www.gstatic.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 164108", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 55207", - "content-type: text/javascript; charset=UTF-8", - "date: Tue, 04 Nov 2014 21:10:54 GMT", - "expires: Wed, 04 Nov 2015 21:10:54 GMT", - "last-modified: Mon, 03 Nov 2014 17:56:31 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 5, - "number": 6 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/extern_chrome/854094c746d4c9a.js?bav=on.2,or.r_qf.", - "responseCode": "200", - "load_ms": "100", - "ttfb_ms": "88", - "load_start": "1154", - "bytesOut": "340", - "bytesIn": "13943", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 00:00:00 GMT", - "cacheControl": "private", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "208", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "422", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31382038", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "initiator_line": "1187", - "initiator_column": "181", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/extern_chrome/854094c746d4c9a.js?bav=on.2,or.r_qf.", - "score_progressive_jpeg": -1, - "load_end": 1254, - "ttfb_start": "1154", - "ttfb_end": 1242, - "download_start": 1242, - "download_end": 1254, - "download_ms": 12, - "all_start": "1154", - "all_end": 1254, - "all_ms": "100", - "headers": { - "request": [ - "GET /extern_chrome/854094c746d4c9a.js?bav=on.2,or.r_qf. HTTP/1.1", - "Host: www.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private", - "content-disposition: attachment; filename=\"f.txt\"", - "content-encoding: gzip", - "content-length: 13825", - "content-type: text/javascript; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:46:02 GMT", - "expires: Thu, 05 Nov 2015 00:00:00 GMT", - "last-modified: Thu, 07 Nov 2013 00:00:00 GMT", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 6, - "number": 7 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm/am=lKj_TwWDwIxAARMQrA4/rt=j/d=0/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "responseCode": "200", - "load_ms": "121", - "ttfb_ms": "41", - "load_start": "1223", - "bytesOut": "682", - "bytesIn": "48768", - "objectSize": "0", - "expires": "Fri, 06 Nov 2015 04:39:44 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "208", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "428", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "initiator_line": "101", - "initiator_column": "112", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm/am=lKj_TwWDwIxAARMQrA4/rt=j/d=0/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "score_progressive_jpeg": -1, - "load_end": 1344, - "ttfb_start": "1223", - "ttfb_end": 1264, - "download_start": 1264, - "download_end": 1344, - "download_ms": 80, - "all_start": "1223", - "all_end": 1344, - "all_ms": "121", - "headers": { - "request": [ - "GET /xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm/am=lKj_TwWDwIxAARMQrA4/rt=j/d=0/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP/1.1", - "Host: www.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 50778", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 48157", - "content-type: text/javascript; charset=UTF-8", - "date: Thu, 06 Nov 2014 04:39:44 GMT", - "expires: Fri, 06 Nov 2015 04:39:44 GMT", - "last-modified: Tue, 04 Nov 2014 19:30:26 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 7, - "number": 8 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/textinputassistant/tia.png", - "responseCode": "200", - "load_ms": "167", - "ttfb_ms": "164", - "load_start": "1224", - "bytesOut": "333", - "bytesIn": "479", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 04:43:41 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "208", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/", - "initiator_line": "1", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/textinputassistant/tia.png", - "score_progressive_jpeg": -1, - "load_end": 1391, - "ttfb_start": "1224", - "ttfb_end": 1388, - "download_start": 1388, - "download_end": 1391, - "download_ms": 3, - "all_start": "1224", - "all_end": 1391, - "all_ms": "167", - "headers": { - "request": [ - "GET /textinputassistant/tia.png HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 136941", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-length: 387", - "content-type: image/png", - "date: Wed, 05 Nov 2014 04:43:41 GMT", - "expires: Thu, 05 Nov 2015 04:43:41 GMT", - "last-modified: Mon, 02 Apr 2012 02:13:37 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 8, - "number": 9 - }, - { - "method": "GET", - "host": "apis.google.com", - "url": "/_/scs/abc-static/_/js/k=gapi.gapi.en.3_mJ9Wvc9FU.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg/cb=gapi.loaded_0", - "responseCode": "200", - "load_ms": "123", - "ttfb_ms": "48", - "load_start": "1338", - "bytesOut": "456", - "bytesIn": "49179", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 15:23:35 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "400", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 26, - "connect_ms": 37, - "ssl_ms": 54, - "gzip_total": "428", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "1221", - "dns_end": "1247", - "connect_start": "1247", - "connect_end": "1284", - "ssl_start": "1284", - "ssl_end": "1338", - "initiator": "https://www.gstatic.com/og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w", - "initiator_line": "138", - "initiator_column": "381", - "server_count": "11", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://apis.google.com/_/scs/abc-static/_/js/k=gapi.gapi.en.3_mJ9Wvc9FU.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg/cb=gapi.loaded_0", - "score_progressive_jpeg": -1, - "load_end": 1461, - "ttfb_start": "1338", - "ttfb_end": 1386, - "download_start": 1386, - "download_end": 1461, - "download_ms": 75, - "all_start": "1221", - "all_end": 1461, - "all_ms": 240, - "headers": { - "request": [ - "GET /_/scs/abc-static/_/js/k=gapi.gapi.en.3_mJ9Wvc9FU.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg/cb=gapi.loaded_0 HTTP/1.1", - "Host: apis.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 98547", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 48911", - "content-type: text/javascript; charset=UTF-8", - "date: Wed, 05 Nov 2014 15:23:35 GMT", - "expires: Thu, 05 Nov 2015 15:23:35 GMT", - "last-modified: Thu, 16 Oct 2014 07:30:29 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 9, - "number": 10 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/images/nav_logo195.png", - "responseCode": "200", - "load_ms": "68", - "ttfb_ms": "53", - "load_start": "1539", - "bytesOut": "329", - "bytesIn": "16296", - "objectSize": "0", - "expires": "Thu, 06 Nov 2014 18:46:02 GMT", - "cacheControl": "private, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "208", - "score_cache": "0", - "score_cdn": "100", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/images/nav_logo195.png", - "score_progressive_jpeg": -1, - "load_end": 1607, - "ttfb_start": "1539", - "ttfb_end": 1592, - "download_start": 1592, - "download_end": 1607, - "download_ms": 15, - "all_start": "1539", - "all_end": 1607, - "all_ms": "68", - "headers": { - "request": [ - "GET /images/nav_logo195.png HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=31536000", - "content-length: 16214", - "content-type: image/png", - "date: Thu, 06 Nov 2014 18:46:02 GMT", - "expires: Thu, 06 Nov 2014 18:46:02 GMT", - "last-modified: Wed, 21 May 2014 00:02:44 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 10, - "number": 11 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=6cFbVJTsJ63CsATV04D4Dw&e=18167,4003510,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020562,4020666,4020921,4021073,4021416,4022073,4022318,4022495,4022688,4022919,4023367,4023567,4023709,4023971,4024702,4024731,4024797,4024905,8500272,8500325,8500393,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.61.28.sb.36.p.10.spch.5.ifl.2.foot.1&action=&srt=588&p=s&npn=1&rt=xjsls.27,prt.28,xjses.447,xjsee.551,xjs.568,ol.935,iml.583,wsrt.588,cst.95,dnst.0,rqst.203,rspt.52", - "responseCode": "204", - "load_ms": "72", - "ttfb_ms": "69", - "load_start": "1540", - "bytesOut": "857", - "bytesIn": "251", - "objectSize": "0", - "contentType": "text/html", - "type": "3", - "socket": "208", - "score_cache": "0", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=6cFbVJTsJ63CsATV04D4Dw&e=18167,4003510,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020562,4020666,4020921,4021073,4021416,4022073,4022318,4022495,4022688,4022919,4023367,4023567,4023709,4023971,4024702,4024731,4024797,4024905,8500272,8500325,8500393,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.61.28.sb.36.p.10.spch.5.ifl.2.foot.1&action=&srt=588&p=s&npn=1&rt=xjsls.27,prt.28,xjses.447,xjsee.551,xjs.568,ol.935,iml.583,wsrt.588,cst.95,dnst.0,rqst.203,rspt.52", - "score_progressive_jpeg": -1, - "load_end": 1612, - "ttfb_start": "1540", - "ttfb_end": 1609, - "download_start": 1609, - "download_end": 1612, - "download_ms": 3, - "all_start": "1540", - "all_end": 1612, - "all_ms": "72", - "headers": { - "request": [ - "GET /gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=6cFbVJTsJ63CsATV04D4Dw&e=18167,4003510,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020562,4020666,4020921,4021073,4021416,4022073,4022318,4022495,4022688,4022919,4023367,4023567,4023709,4023971,4024702,4024731,4024797,4024905,8500272,8500325,8500393,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.61.28.sb.36.p.10.spch.5.ifl.2.foot.1&action=&srt=588&p=s&npn=1&rt=xjsls.27,prt.28,xjses.447,xjsee.551,xjs.568,ol.935,iml.583,wsrt.588,cst.95,dnst.0,rqst.203,rspt.52 HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 204 No Content", - "alternate-protocol: 443:quic,p=0.01", - "content-length: 0", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:46:02 GMT", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 11, - "number": 12 - } - ], - "requestsDoc": 10, - "responses_200": 10, - "responses_404": 0, - "responses_other": 1, - "result": 0, - "render": 690, - "fullyLoaded": 1612, - "cached": 0, - "docTime": 1529, - "domTime": 0, - "score_cache": 72, - "score_cdn": 77, - "score_gzip": 100, - "score_cookies": -1, - "score_keep-alive": 100, - "score_minify": -1, - "score_combine": 100, - "score_compress": -1, - "score_etags": -1, - "gzip_total": 2916, - "gzip_savings": 0, - "minify_total": 0, - "minify_savings": 0, - "image_total": 0, - "image_savings": 0, - "optimization_checked": 1, - "aft": 0, - "domElements": 287, - "pageSpeedVersion": "1.9", - "title": "Google", - "titleTime": 689, - "loadEventStart": 1521, - "loadEventEnd": 1526, - "domContentLoadedEventStart": 616, - "domContentLoadedEventEnd": 650, - "lastVisualChange": 0, - "browser_name": "Google Chrome", - "browser_version": "38.0.2125.111", - "server_count": 5, - "server_rtt": 0, - "base_page_cdn": "Google", - "adult_site": 0, - "fixed_viewport": 0, - "score_progressive_jpeg": -1, - "firstPaint": 679, - "docCPUms": 873.606, - "fullyLoadedCPUms": 1092.007, - "docCPUpct": 57, - "fullyLoadedCPUpct": 25, - "isResponsive": -1, - "date": 1415299553, - "CSI": [ - "v", - "s", - "imc", - "imn", - "imp", - "ei", - "e", - "atyp", - "adh", - "xjs", - "action", - "srt", - "p", - "npn", - "rt", - "xjsls", - "prt", - "xjses", - "xjsee", - "ol", - "iml", - "wsrt", - "cst", - "dnst", - "rqst", - "rspt" - ], - "CSI.v": 3, - "CSI.s": "webhp", - "CSI.imc": 1, - "CSI.imn": 1, - "CSI.imp": 1, - "CSI.ei": "6cFbVJTsJ63CsATV04D4Dw", - "CSI.e": "18167,4003510,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020562,4020666,4020921,4021073,4021416,4022073,4022318,4022495,4022688,4022919,4023367,4023567,4023709,4023971,4024702,4024731,4024797,4024905,8500272,8500325,8500393,8500700,10200083,10200716,10200743", - "CSI.atyp": "csi", - "CSI.adh": "", - "CSI.xjs": 568, - "CSI.action": "", - "CSI.srt": 588, - "CSI.p": "s", - "CSI.npn": 1, - "CSI.rt": "xjsls.27,prt.28,xjses.447,xjsee.551,xjs.568,ol.935,iml.583,wsrt.588,cst.95,dnst.0,rqst.203,rspt.52", - "CSI.xjsls": 27, - "CSI.prt": 28, - "CSI.xjses": 447, - "CSI.xjsee": 551, - "CSI.ol": 935, - "CSI.iml": 583, - "CSI.wsrt": 588, - "CSI.cst": 95, - "CSI.dnst": 0, - "CSI.rqst": 203, - "CSI.rspt": 52, - "SpeedIndex": 0, - "visualComplete": 0, - "run": 1, - "effectiveBps": 451999, - "effectiveBpsDoc": 388820, - "tester": "IE9302-192.168.103.92", - "pages": { - "details": "http://www.webpagetest.org/details.php?test=141106_8N_ZRC&run=1&cached=0", - "checklist": "http://www.webpagetest.org/performance_optimization.php?test=141106_8N_ZRC&run=1&cached=0", - "breakdown": "http://www.webpagetest.org/breakdown.php?test=141106_8N_ZRC&run=1&cached=0", - "domains": "http://www.webpagetest.org/domains.php?test=141106_8N_ZRC&run=1&cached=0", - "screenShot": "http://www.webpagetest.org/screen_shot.php?test=141106_8N_ZRC&run=1&cached=0" - }, - "thumbnails": { - "waterfall": "http://www.webpagetest.org/result/141106_8N_ZRC/1_waterfall_thumb.png", - "checklist": "http://www.webpagetest.org/result/141106_8N_ZRC/1_optimization_thumb.png", - "screenShot": "http://www.webpagetest.org/result/141106_8N_ZRC/1_screen_thumb.png" - }, - "images": { - "waterfall": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_waterfall.png", - "connectionView": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_connection.png", - "checklist": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_optimization.png", - "screenShot": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_screen.jpg" - }, - "rawData": { - "headers": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_report.txt", - "pageData": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_IEWPG.txt", - "requestsData": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_IEWTR.txt", - "utilization": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_progress.csv" - }, - "videoFrames": [ - { - "time": 0, - "image": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/video_1/frame_0000.jpg", - "VisuallyComplete": 100 - } - ], - "domains": { - "moc.elgoog": { - "bytes": 595, - "requests": 1, - "connections": 1 - }, - "moc.elgoog.www": { - "bytes": 296647, - "requests": 8, - "connections": 1 - }, - "moc.citatsg.lss": { - "bytes": 14286, - "requests": 1, - "connections": 1 - }, - "moc.citatsg.www": { - "bytes": 184144, - "requests": 1, - "connections": 1 - }, - "moc.elgoog.sipa": { - "bytes": 49179, - "requests": 1, - "connections": 1 - } - }, - "breakdown": { - "html": { - "color": [ - 130, - 181, - 252 - ], - "bytes": 64090, - "requests": 3 - }, - "js": { - "color": [ - 254, - 197, - 132 - ], - "bytes": 435587, - "requests": 5 - }, - "css": { - "color": [ - 178, - 234, - 148 - ], - "bytes": 0, - "requests": 0 - }, - "image": { - "color": [ - 196, - 154, - 232 - ], - "bytes": 45174, - "requests": 4 - }, - "flash": { - "color": [ - 45, - 183, - 193 - ], - "bytes": 0, - "requests": 0 - }, - "font": { - "color": [ - 255, - 82, - 62 - ], - "bytes": 0, - "requests": 0 - }, - "other": { - "color": [ - 196, - 196, - 196 - ], - "bytes": 0, - "requests": 0 - } - } - }, - "repeatView": { - "URL": "https://google.com", - "loadTime": 905, - "TTFB": 362, - "bytesOut": 10427, - "bytesOutDoc": 9618, - "bytesIn": 86869, - "bytesInDoc": 86708, - "connections": 2, - "requests": [ - { - "method": "GET", - "host": "google.com", - "url": "/", - "responseCode": "301", - "load_ms": "64", - "ttfb_ms": "63", - "load_start": "129", - "bytesOut": "323", - "bytesIn": "595", - "objectSize": "0", - "expires": "Sat, 06 Dec 2014 18:46:12 GMT", - "cacheControl": "public, max-age=2592000", - "contentType": "text/html", - "type": "3", - "socket": "135", - "score_cache": "100", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": 97, - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "2592000", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "31", - "ssl_start": "31", - "ssl_end": "128", - "server_count": "11", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://google.com/", - "score_progressive_jpeg": -1, - "load_end": 193, - "ttfb_start": "129", - "ttfb_end": 192, - "download_start": 192, - "download_end": 193, - "download_ms": 1, - "all_start": "31", - "all_end": 193, - "all_ms": 161, - "headers": { - "request": [ - "GET / HTTP/1.1", - "Host: google.com", - "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A3DA6AEA-1B20-4879-B6F3-31BD12123EF3" - ], - "response": [ - "HTTP/1.1 301 Moved Permanently", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=2592000", - "content-length: 220", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:46:12 GMT", - "expires: Sat, 06 Dec 2014 18:46:12 GMT", - "location: https://www.google.com/", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 0, - "number": 1 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/", - "responseCode": "200", - "load_ms": "205", - "ttfb_ms": "154", - "load_start": "208", - "bytesOut": "243", - "bytesIn": "91126", - "objectSize": "0", - "expires": "-1", - "cacheControl": "private, max-age=0", - "contentType": "text/html", - "contentEncoding": "gzip", - "type": "3", - "socket": "145", - "score_cache": "-1", - "score_cdn": "-1", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 0, - "connect_ms": 0, - "ssl_ms": 0, - "gzip_total": "456", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "-1", - "cdn_provider": "Google", - "dns_start": "199", - "dns_end": "199", - "connect_start": "199", - "connect_end": "199", - "ssl_start": "199", - "ssl_end": "199", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/", - "score_progressive_jpeg": -1, - "load_end": 413, - "ttfb_start": "208", - "ttfb_end": 362, - "download_start": 362, - "download_end": 413, - "download_ms": 51, - "all_start": "208", - "all_end": 413, - "all_ms": "205", - "headers": { - "request": [ - "GET / HTTP/1.1", - "Host: www.google.com", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A3DA6AEA-1B20-4879-B6F3-31BD12123EF3" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=0", - "content-encoding: gzip", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:46:12 GMT", - "expires: -1", - "server: gws", - "set-cookie: PREF=ID=d47034f5653867b9:U=bdb7999b3c37ff3c:FF=0:TM=1415299561:LM=1415299572:S=y1TEqCJe7cEmheqN; expires=Sat, 05-Nov-2016 18:46:12 GMT; path=/; domain=.google.com", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 1, - "number": 2 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=9MFbVJSWMajasATZ0ICQCg&e=18168,3700318,3700349,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021083,4021089,4021415,4022074,4022318,4022489,4022495,4023367,4023567,4023709,4023971,4024102,4024692,8500272,8500394,10200083,10200526,10200716&atyp=csi&adh=&xjs=init.61.28.sb.40.p.9.spch.4.fpe.1.async.1&action=&srt=453&p=s&npn=1&rt=xjsls.22,prt.23,xjses.151,xjsee.270,xjs.292,ol.485,iml.106,wsrt.453,cst.0,dnst.0,rqst.205,rspt.51", - "responseCode": "204", - "load_ms": "60", - "ttfb_ms": "58", - "load_start": "931", - "bytesOut": "848", - "bytesIn": "251", - "objectSize": "0", - "contentType": "text/html", - "type": "3", - "socket": "145", - "score_cache": "0", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=9MFbVJSWMajasATZ0ICQCg&e=18168,3700318,3700349,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021083,4021089,4021415,4022074,4022318,4022489,4022495,4023367,4023567,4023709,4023971,4024102,4024692,8500272,8500394,10200083,10200526,10200716&atyp=csi&adh=&xjs=init.61.28.sb.40.p.9.spch.4.fpe.1.async.1&action=&srt=453&p=s&npn=1&rt=xjsls.22,prt.23,xjses.151,xjsee.270,xjs.292,ol.485,iml.106,wsrt.453,cst.0,dnst.0,rqst.205,rspt.51", - "score_progressive_jpeg": -1, - "load_end": 991, - "ttfb_start": "931", - "ttfb_end": 989, - "download_start": 989, - "download_end": 991, - "download_ms": 2, - "all_start": "931", - "all_end": 991, - "all_ms": "60", - "headers": { - "request": [ - "GET /gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=9MFbVJSWMajasATZ0ICQCg&e=18168,3700318,3700349,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021083,4021089,4021415,4022074,4022318,4022489,4022495,4023367,4023567,4023709,4023971,4024102,4024692,8500272,8500394,10200083,10200526,10200716&atyp=csi&adh=&xjs=init.61.28.sb.40.p.9.spch.4.fpe.1.async.1&action=&srt=453&p=s&npn=1&rt=xjsls.22,prt.23,xjses.151,xjsee.270,xjs.292,ol.485,iml.106,wsrt.453,cst.0,dnst.0,rqst.205,rspt.51 HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A3DA6AEA-1B20-4879-B6F3-31BD12123EF3" - ], - "response": [ - "HTTP/1.1 204 No Content", - "alternate-protocol: 443:quic,p=0.01", - "content-length: 0", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:46:13 GMT", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 2, - "number": 3 - } - ], - "requestsDoc": 2, - "responses_200": 1, - "responses_404": 0, - "responses_other": 1, - "result": 0, - "render": 570, - "fullyLoaded": 991, - "cached": 1, - "docTime": 905, - "domTime": 0, - "score_cache": 50, - "score_cdn": -1, - "score_gzip": 100, - "score_cookies": -1, - "score_keep-alive": 100, - "score_minify": -1, - "score_combine": 100, - "score_compress": -1, - "score_etags": -1, - "gzip_total": 456, - "gzip_savings": 0, - "minify_total": 0, - "minify_savings": 0, - "image_total": 0, - "image_savings": 0, - "optimization_checked": 1, - "aft": 0, - "domElements": 287, - "pageSpeedVersion": "1.9", - "title": "Google", - "titleTime": 669, - "loadEventStart": 923, - "loadEventEnd": 946, - "domContentLoadedEventStart": 476, - "domContentLoadedEventEnd": 511, - "lastVisualChange": 0, - "browser_name": "Google Chrome", - "browser_version": "38.0.2125.111", - "server_count": 5, - "server_rtt": 0, - "base_page_cdn": "Google", - "adult_site": 0, - "fixed_viewport": 0, - "score_progressive_jpeg": -1, - "firstPaint": 542, - "docCPUms": 748.805, - "fullyLoadedCPUms": 858.005, - "docCPUpct": 79, - "fullyLoadedCPUpct": 28, - "isResponsive": -1, - "date": 1415299564, - "CSI": [ - "v", - "s", - "imc", - "imn", - "imp", - "ei", - "e", - "atyp", - "adh", - "xjs", - "action", - "srt", - "p", - "npn", - "rt", - "xjsls", - "prt", - "xjses", - "xjsee", - "ol", - "iml", - "wsrt", - "cst", - "dnst", - "rqst", - "rspt" - ], - "CSI.v": 3, - "CSI.s": "webhp", - "CSI.imc": 1, - "CSI.imn": 1, - "CSI.imp": 1, - "CSI.ei": "9MFbVJSWMajasATZ0ICQCg", - "CSI.e": "18168,3700318,3700349,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021083,4021089,4021415,4022074,4022318,4022489,4022495,4023367,4023567,4023709,4023971,4024102,4024692,8500272,8500394,10200083,10200526,10200716", - "CSI.atyp": "csi", - "CSI.adh": "", - "CSI.xjs": 292, - "CSI.action": "", - "CSI.srt": 453, - "CSI.p": "s", - "CSI.npn": 1, - "CSI.rt": "xjsls.22,prt.23,xjses.151,xjsee.270,xjs.292,ol.485,iml.106,wsrt.453,cst.0,dnst.0,rqst.205,rspt.51", - "CSI.xjsls": 22, - "CSI.prt": 23, - "CSI.xjses": 151, - "CSI.xjsee": 270, - "CSI.ol": 485, - "CSI.iml": 106, - "CSI.wsrt": 453, - "CSI.cst": 0, - "CSI.dnst": 0, - "CSI.rqst": 205, - "CSI.rspt": 51, - "SpeedIndex": 0, - "visualComplete": 0, - "run": 1, - "effectiveBps": 138106, - "effectiveBpsDoc": 159683, - "tester": "IE9302-192.168.103.92", - "pages": { - "details": "http://www.webpagetest.org/details.php?test=141106_8N_ZRC&run=1&cached=1", - "checklist": "http://www.webpagetest.org/performance_optimization.php?test=141106_8N_ZRC&run=1&cached=1", - "breakdown": "http://www.webpagetest.org/breakdown.php?test=141106_8N_ZRC&run=1&cached=1", - "domains": "http://www.webpagetest.org/domains.php?test=141106_8N_ZRC&run=1&cached=1", - "screenShot": "http://www.webpagetest.org/screen_shot.php?test=141106_8N_ZRC&run=1&cached=1" - }, - "thumbnails": { - "waterfall": "http://www.webpagetest.org/result/141106_8N_ZRC/1_Cached_waterfall_thumb.png", - "checklist": "http://www.webpagetest.org/result/141106_8N_ZRC/1_Cached_optimization_thumb.png", - "screenShot": "http://www.webpagetest.org/result/141106_8N_ZRC/1_Cached_screen_thumb.png" - }, - "images": { - "waterfall": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_Cached_waterfall.png", - "connectionView": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_Cached_connection.png", - "checklist": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_Cached_optimization.png", - "screenShot": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_Cached_screen.jpg" - }, - "rawData": { - "headers": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_Cached_report.txt", - "pageData": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_Cached_IEWPG.txt", - "requestsData": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_Cached_IEWTR.txt", - "utilization": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_Cached_progress.csv" - }, - "videoFrames": [ - { - "time": 0, - "image": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/video_1_cached/frame_0000.jpg", - "VisuallyComplete": 100 - } - ], - "domains": { - "moc.elgoog": { - "bytes": 595, - "requests": 1, - "connections": 1 - }, - "moc.elgoog.www": { - "bytes": 91377, - "requests": 2, - "connections": 1 - } - }, - "breakdown": { - "html": { - "color": [ - 130, - 181, - 252 - ], - "bytes": 91972, - "requests": 3 - }, - "js": { - "color": [ - 254, - 197, - 132 - ], - "bytes": 0, - "requests": 0 - }, - "css": { - "color": [ - 178, - 234, - 148 - ], - "bytes": 0, - "requests": 0 - }, - "image": { - "color": [ - 196, - 154, - 232 - ], - "bytes": 0, - "requests": 0 - }, - "flash": { - "color": [ - 45, - 183, - 193 - ], - "bytes": 0, - "requests": 0 - }, - "font": { - "color": [ - 255, - 82, - 62 - ], - "bytes": 0, - "requests": 0 - }, - "other": { - "color": [ - 196, - 196, - 196 - ], - "bytes": 0, - "requests": 0 - } - } - } - } - }, - "statusCode": 200, - "statusText": "Test Complete" -} \ No newline at end of file diff --git a/test/fixtures/objects/testResultsExtraData.json b/test/fixtures/objects/testResultsExtraData.json deleted file mode 100644 index 52de783..0000000 --- a/test/fixtures/objects/testResultsExtraData.json +++ /dev/null @@ -1,3855 +0,0 @@ -{ - "data": { - "id": "141106_8N_ZRC", - "url": "https://google.com", - "summary": "http://www.webpagetest.org/results.php?test=141106_8N_ZRC", - "testUrl": "https://google.com", - "location": "Dulles:Chrome", - "from": "Dulles, VA - Chrome - Cable", - "connectivity": "Cable", - "bwDown": 5000, - "bwUp": 1000, - "latency": 28, - "plr": "0", - "completed": 1415299577, - "tester": "IE9302-192.168.103.92", - "testerDNS": "192.168.103.1,192.168.0.1", - "runs": { - "1": { - "firstView": { - "URL": "https://google.com", - "loadTime": 1529, - "TTFB": 503, - "bytesOut": 9808, - "bytesOutDoc": 7942, - "bytesIn": 501267, - "bytesInDoc": 398930, - "connections": 5, - "requests": [ - { - "method": "GET", - "host": "google.com", - "url": "/", - "responseCode": "301", - "load_ms": "66", - "ttfb_ms": "64", - "load_start": "183", - "bytesOut": "323", - "bytesIn": "595", - "objectSize": "0", - "expires": "Sat, 06 Dec 2014 18:46:01 GMT", - "cacheControl": "public, max-age=2592000", - "contentType": "text/html", - "type": "3", - "socket": "192", - "score_cache": "100", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": 36, - "ssl_ms": 96, - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "2592000", - "dns_start": "0", - "dns_end": "50", - "connect_start": "50", - "connect_end": "86", - "ssl_start": "86", - "ssl_end": "182", - "server_count": "11", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://google.com/", - "score_progressive_jpeg": -1, - "load_end": 249, - "ttfb_start": "183", - "ttfb_end": 247, - "download_start": 247, - "download_end": 249, - "download_ms": 2, - "all_start": "50", - "all_end": 249, - "all_ms": 198, - "headers": { - "request": [ - "GET / HTTP/1.1", - "Host: google.com", - "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 301 Moved Permanently", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=2592000", - "content-length: 220", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:46:01 GMT", - "expires: Sat, 06 Dec 2014 18:46:01 GMT", - "location: https://www.google.com/", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 0, - "number": 1 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/", - "responseCode": "200", - "load_ms": "203", - "ttfb_ms": "151", - "load_start": "352", - "bytesOut": "243", - "bytesIn": "63244", - "objectSize": "0", - "expires": "-1", - "cacheControl": "private, max-age=0", - "contentType": "text/html", - "contentEncoding": "gzip", - "type": "3", - "socket": "208", - "score_cache": "-1", - "score_cdn": "-1", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 0, - "connect_ms": 33, - "ssl_ms": 63, - "gzip_total": "780", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "-1", - "cdn_provider": "Google", - "dns_start": "256", - "dns_end": "256", - "connect_start": "256", - "connect_end": "289", - "ssl_start": "289", - "ssl_end": "352", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/", - "score_progressive_jpeg": -1, - "load_end": 555, - "ttfb_start": "352", - "ttfb_end": 503, - "download_start": 503, - "download_end": 555, - "download_ms": 52, - "all_start": "256", - "all_end": 555, - "all_ms": 299, - "headers": { - "request": [ - "GET / HTTP/1.1", - "Host: www.google.com", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=0", - "content-encoding: gzip", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:46:01 GMT", - "expires: -1", - "p3p: CP=\"This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info.\"", - "server: gws", - "set-cookie: PREF=ID=d47034f5653867b9:FF=0:TM=1415299561:LM=1415299561:S=_Lnze49gy_eLNTCT; expires=Sat, 05-Nov-2016 18:46:01 GMT; path=/; domain=.google.com", - "NID=67=CypCtBv6uDyjo-YeQv5XdLwuaJ_DTDUM-7trjlCcT8WURKXHoVuV_UXxT1QME9wNaKE6LqvWqhUZFoO9_V4K9mbPvC_r79XHktUlFu7m8ovfiM1vXxsot7jWrWsNqeXO; expires=Fri, 08-May-2015 18:46:01 GMT; path=/; domain=.google.com; HttpOnly", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 1, - "number": 2 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "responseCode": "200", - "load_ms": "288", - "ttfb_ms": "43", - "load_start": "679", - "bytesOut": "443", - "bytesIn": "139553", - "objectSize": "0", - "expires": "Fri, 06 Nov 2015 11:15:49 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "208", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "429", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/", - "initiator_line": "94", - "initiator_column": "17237", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "score_progressive_jpeg": -1, - "load_end": 967, - "ttfb_start": "679", - "ttfb_end": 722, - "download_start": 722, - "download_end": 967, - "download_ms": 245, - "all_start": "679", - "all_end": 967, - "all_ms": "288", - "headers": { - "request": [ - "GET /xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP/1.1", - "Host: www.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 27012", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 130931", - "content-type: text/javascript; charset=UTF-8", - "date: Thu, 06 Nov 2014 11:15:49 GMT", - "expires: Fri, 06 Nov 2015 11:15:49 GMT", - "last-modified: Tue, 04 Nov 2014 19:30:26 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 2, - "number": 3 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/images/srpr/logo11w.png", - "responseCode": "200", - "load_ms": "477", - "ttfb_ms": "476", - "load_start": "679", - "bytesOut": "330", - "bytesIn": "14113", - "objectSize": "0", - "expires": "Thu, 06 Nov 2014 18:46:02 GMT", - "cacheControl": "private, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "208", - "score_cache": "0", - "score_cdn": "100", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/", - "initiator_line": "28", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/images/srpr/logo11w.png", - "score_progressive_jpeg": -1, - "load_end": 1156, - "ttfb_start": "679", - "ttfb_end": 1155, - "download_start": 1155, - "download_end": 1156, - "download_ms": 1, - "all_start": "679", - "all_end": 1156, - "all_ms": "477", - "headers": { - "request": [ - "GET /images/srpr/logo11w.png HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=31536000", - "content-length: 14022", - "content-type: image/png", - "date: Thu, 06 Nov 2014 18:46:02 GMT", - "expires: Thu, 06 Nov 2014 18:46:02 GMT", - "last-modified: Wed, 09 Oct 2013 01:35:39 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 3, - "number": 4 - }, - { - "method": "GET", - "host": "ssl.gstatic.com", - "url": "/gb/images/i1_71651352.png", - "responseCode": "200", - "load_ms": "80", - "ttfb_ms": "41", - "load_start": "807", - "bytesOut": "333", - "bytesIn": "14286", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 13:04:25 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "293", - "score_cache": "100", - "score_cdn": "0", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 27, - "connect_ms": 37, - "ssl_ms": 63, - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "dns_start": "679", - "dns_end": "706", - "connect_start": "706", - "connect_end": "743", - "ssl_start": "743", - "ssl_end": "806", - "initiator": "https://www.google.com/", - "initiator_line": "76", - "initiator_column": "35", - "server_count": "4", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://ssl.gstatic.com/gb/images/i1_71651352.png", - "score_progressive_jpeg": -1, - "load_end": 887, - "ttfb_start": "807", - "ttfb_end": 848, - "download_start": 848, - "download_end": 887, - "download_ms": 39, - "all_start": "679", - "all_end": 887, - "all_ms": 207, - "headers": { - "request": [ - "GET /gb/images/i1_71651352.png HTTP/1.1", - "Host: ssl.gstatic.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 106897", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-length: 14055", - "content-type: image/png", - "date: Wed, 05 Nov 2014 13:04:25 GMT", - "expires: Thu, 05 Nov 2015 13:04:25 GMT", - "last-modified: Thu, 16 Oct 2014 18:20:30 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 4, - "number": 5 - }, - { - "method": "GET", - "host": "www.gstatic.com", - "url": "/og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w", - "responseCode": "200", - "load_ms": "167", - "ttfb_ms": "164", - "load_start": "992", - "bytesOut": "392", - "bytesIn": "184144", - "objectSize": "0", - "expires": "Wed, 04 Nov 2015 21:10:54 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "325", - "score_cache": "100", - "score_cdn": "0", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 50, - "connect_ms": 40, - "ssl_ms": 50, - "gzip_total": "429", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "dns_start": "851", - "dns_end": "901", - "connect_start": "901", - "connect_end": "941", - "ssl_start": "941", - "ssl_end": "991", - "initiator": "https://www.google.com/", - "initiator_line": "57", - "initiator_column": "143", - "server_count": "4", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.gstatic.com/og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w", - "score_progressive_jpeg": -1, - "load_end": 1159, - "ttfb_start": "992", - "ttfb_end": 1156, - "download_start": 1156, - "download_end": 1159, - "download_ms": 3, - "all_start": "851", - "all_end": 1159, - "all_ms": 307, - "headers": { - "request": [ - "GET /og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w HTTP/1.1", - "Host: www.gstatic.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 164108", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 55207", - "content-type: text/javascript; charset=UTF-8", - "date: Tue, 04 Nov 2014 21:10:54 GMT", - "expires: Wed, 04 Nov 2015 21:10:54 GMT", - "last-modified: Mon, 03 Nov 2014 17:56:31 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 5, - "number": 6 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/extern_chrome/854094c746d4c9a.js?bav=on.2,or.r_qf.", - "responseCode": "200", - "load_ms": "100", - "ttfb_ms": "88", - "load_start": "1154", - "bytesOut": "340", - "bytesIn": "13943", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 00:00:00 GMT", - "cacheControl": "private", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "208", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "422", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31382038", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "initiator_line": "1187", - "initiator_column": "181", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/extern_chrome/854094c746d4c9a.js?bav=on.2,or.r_qf.", - "score_progressive_jpeg": -1, - "load_end": 1254, - "ttfb_start": "1154", - "ttfb_end": 1242, - "download_start": 1242, - "download_end": 1254, - "download_ms": 12, - "all_start": "1154", - "all_end": 1254, - "all_ms": "100", - "headers": { - "request": [ - "GET /extern_chrome/854094c746d4c9a.js?bav=on.2,or.r_qf. HTTP/1.1", - "Host: www.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private", - "content-disposition: attachment; filename=\"f.txt\"", - "content-encoding: gzip", - "content-length: 13825", - "content-type: text/javascript; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:46:02 GMT", - "expires: Thu, 05 Nov 2015 00:00:00 GMT", - "last-modified: Thu, 07 Nov 2013 00:00:00 GMT", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 6, - "number": 7 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm/am=lKj_TwWDwIxAARMQrA4/rt=j/d=0/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "responseCode": "200", - "load_ms": "121", - "ttfb_ms": "41", - "load_start": "1223", - "bytesOut": "682", - "bytesIn": "48768", - "objectSize": "0", - "expires": "Fri, 06 Nov 2015 04:39:44 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "208", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "428", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "initiator_line": "101", - "initiator_column": "112", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm/am=lKj_TwWDwIxAARMQrA4/rt=j/d=0/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "score_progressive_jpeg": -1, - "load_end": 1344, - "ttfb_start": "1223", - "ttfb_end": 1264, - "download_start": 1264, - "download_end": 1344, - "download_ms": 80, - "all_start": "1223", - "all_end": 1344, - "all_ms": "121", - "headers": { - "request": [ - "GET /xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm/am=lKj_TwWDwIxAARMQrA4/rt=j/d=0/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP/1.1", - "Host: www.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 50778", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 48157", - "content-type: text/javascript; charset=UTF-8", - "date: Thu, 06 Nov 2014 04:39:44 GMT", - "expires: Fri, 06 Nov 2015 04:39:44 GMT", - "last-modified: Tue, 04 Nov 2014 19:30:26 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 7, - "number": 8 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/textinputassistant/tia.png", - "responseCode": "200", - "load_ms": "167", - "ttfb_ms": "164", - "load_start": "1224", - "bytesOut": "333", - "bytesIn": "479", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 04:43:41 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "208", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/", - "initiator_line": "1", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/textinputassistant/tia.png", - "score_progressive_jpeg": -1, - "load_end": 1391, - "ttfb_start": "1224", - "ttfb_end": 1388, - "download_start": 1388, - "download_end": 1391, - "download_ms": 3, - "all_start": "1224", - "all_end": 1391, - "all_ms": "167", - "headers": { - "request": [ - "GET /textinputassistant/tia.png HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 136941", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-length: 387", - "content-type: image/png", - "date: Wed, 05 Nov 2014 04:43:41 GMT", - "expires: Thu, 05 Nov 2015 04:43:41 GMT", - "last-modified: Mon, 02 Apr 2012 02:13:37 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 8, - "number": 9 - }, - { - "method": "GET", - "host": "apis.google.com", - "url": "/_/scs/abc-static/_/js/k=gapi.gapi.en.3_mJ9Wvc9FU.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg/cb=gapi.loaded_0", - "responseCode": "200", - "load_ms": "123", - "ttfb_ms": "48", - "load_start": "1338", - "bytesOut": "456", - "bytesIn": "49179", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 15:23:35 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "400", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 26, - "connect_ms": 37, - "ssl_ms": 54, - "gzip_total": "428", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "1221", - "dns_end": "1247", - "connect_start": "1247", - "connect_end": "1284", - "ssl_start": "1284", - "ssl_end": "1338", - "initiator": "https://www.gstatic.com/og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w", - "initiator_line": "138", - "initiator_column": "381", - "server_count": "11", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://apis.google.com/_/scs/abc-static/_/js/k=gapi.gapi.en.3_mJ9Wvc9FU.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg/cb=gapi.loaded_0", - "score_progressive_jpeg": -1, - "load_end": 1461, - "ttfb_start": "1338", - "ttfb_end": 1386, - "download_start": 1386, - "download_end": 1461, - "download_ms": 75, - "all_start": "1221", - "all_end": 1461, - "all_ms": 240, - "headers": { - "request": [ - "GET /_/scs/abc-static/_/js/k=gapi.gapi.en.3_mJ9Wvc9FU.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg/cb=gapi.loaded_0 HTTP/1.1", - "Host: apis.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 98547", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 48911", - "content-type: text/javascript; charset=UTF-8", - "date: Wed, 05 Nov 2014 15:23:35 GMT", - "expires: Thu, 05 Nov 2015 15:23:35 GMT", - "last-modified: Thu, 16 Oct 2014 07:30:29 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 9, - "number": 10 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/images/nav_logo195.png", - "responseCode": "200", - "load_ms": "68", - "ttfb_ms": "53", - "load_start": "1539", - "bytesOut": "329", - "bytesIn": "16296", - "objectSize": "0", - "expires": "Thu, 06 Nov 2014 18:46:02 GMT", - "cacheControl": "private, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "208", - "score_cache": "0", - "score_cdn": "100", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/images/nav_logo195.png", - "score_progressive_jpeg": -1, - "load_end": 1607, - "ttfb_start": "1539", - "ttfb_end": 1592, - "download_start": 1592, - "download_end": 1607, - "download_ms": 15, - "all_start": "1539", - "all_end": 1607, - "all_ms": "68", - "headers": { - "request": [ - "GET /images/nav_logo195.png HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=31536000", - "content-length: 16214", - "content-type: image/png", - "date: Thu, 06 Nov 2014 18:46:02 GMT", - "expires: Thu, 06 Nov 2014 18:46:02 GMT", - "last-modified: Wed, 21 May 2014 00:02:44 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 10, - "number": 11 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=6cFbVJTsJ63CsATV04D4Dw&e=18167,4003510,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020562,4020666,4020921,4021073,4021416,4022073,4022318,4022495,4022688,4022919,4023367,4023567,4023709,4023971,4024702,4024731,4024797,4024905,8500272,8500325,8500393,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.61.28.sb.36.p.10.spch.5.ifl.2.foot.1&action=&srt=588&p=s&npn=1&rt=xjsls.27,prt.28,xjses.447,xjsee.551,xjs.568,ol.935,iml.583,wsrt.588,cst.95,dnst.0,rqst.203,rspt.52", - "responseCode": "204", - "load_ms": "72", - "ttfb_ms": "69", - "load_start": "1540", - "bytesOut": "857", - "bytesIn": "251", - "objectSize": "0", - "contentType": "text/html", - "type": "3", - "socket": "208", - "score_cache": "0", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=6cFbVJTsJ63CsATV04D4Dw&e=18167,4003510,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020562,4020666,4020921,4021073,4021416,4022073,4022318,4022495,4022688,4022919,4023367,4023567,4023709,4023971,4024702,4024731,4024797,4024905,8500272,8500325,8500393,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.61.28.sb.36.p.10.spch.5.ifl.2.foot.1&action=&srt=588&p=s&npn=1&rt=xjsls.27,prt.28,xjses.447,xjsee.551,xjs.568,ol.935,iml.583,wsrt.588,cst.95,dnst.0,rqst.203,rspt.52", - "score_progressive_jpeg": -1, - "load_end": 1612, - "ttfb_start": "1540", - "ttfb_end": 1609, - "download_start": 1609, - "download_end": 1612, - "download_ms": 3, - "all_start": "1540", - "all_end": 1612, - "all_ms": "72", - "headers": { - "request": [ - "GET /gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=6cFbVJTsJ63CsATV04D4Dw&e=18167,4003510,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020562,4020666,4020921,4021073,4021416,4022073,4022318,4022495,4022688,4022919,4023367,4023567,4023709,4023971,4024702,4024731,4024797,4024905,8500272,8500325,8500393,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.61.28.sb.36.p.10.spch.5.ifl.2.foot.1&action=&srt=588&p=s&npn=1&rt=xjsls.27,prt.28,xjses.447,xjsee.551,xjs.568,ol.935,iml.583,wsrt.588,cst.95,dnst.0,rqst.203,rspt.52 HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 204 No Content", - "alternate-protocol: 443:quic,p=0.01", - "content-length: 0", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:46:02 GMT", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 11, - "number": 12 - } - ], - "requestsDoc": 10, - "responses_200": 10, - "responses_404": 0, - "responses_other": 1, - "result": 0, - "render": 690, - "fullyLoaded": 1612, - "cached": 0, - "docTime": 1529, - "domTime": 0, - "score_cache": 72, - "score_cdn": 77, - "score_gzip": 100, - "score_cookies": -1, - "score_keep-alive": 100, - "score_minify": -1, - "score_combine": 100, - "score_compress": -1, - "score_etags": -1, - "gzip_total": 2916, - "gzip_savings": 0, - "minify_total": 0, - "minify_savings": 0, - "image_total": 0, - "image_savings": 0, - "optimization_checked": 1, - "aft": 0, - "domElements": 287, - "pageSpeedVersion": "1.9", - "title": "Google", - "titleTime": 689, - "loadEventStart": 1521, - "loadEventEnd": 1526, - "domContentLoadedEventStart": 616, - "domContentLoadedEventEnd": 650, - "lastVisualChange": 0, - "browser_name": "Google Chrome", - "browser_version": "38.0.2125.111", - "server_count": 5, - "server_rtt": 0, - "base_page_cdn": "Google", - "adult_site": 0, - "fixed_viewport": 0, - "score_progressive_jpeg": -1, - "firstPaint": 679, - "docCPUms": 873.606, - "fullyLoadedCPUms": 1092.007, - "docCPUpct": 57, - "fullyLoadedCPUpct": 25, - "isResponsive": -1, - "date": 1415299553, - "CSI": [ - "v", - "s", - "imc", - "imn", - "imp", - "ei", - "e", - "atyp", - "adh", - "xjs", - "action", - "srt", - "p", - "npn", - "rt", - "xjsls", - "prt", - "xjses", - "xjsee", - "ol", - "iml", - "wsrt", - "cst", - "dnst", - "rqst", - "rspt" - ], - "CSI.v": 3, - "CSI.s": "webhp", - "CSI.imc": 1, - "CSI.imn": 1, - "CSI.imp": 1, - "CSI.ei": "6cFbVJTsJ63CsATV04D4Dw", - "CSI.e": "18167,4003510,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020562,4020666,4020921,4021073,4021416,4022073,4022318,4022495,4022688,4022919,4023367,4023567,4023709,4023971,4024702,4024731,4024797,4024905,8500272,8500325,8500393,8500700,10200083,10200716,10200743", - "CSI.atyp": "csi", - "CSI.adh": "", - "CSI.xjs": 568, - "CSI.action": "", - "CSI.srt": 588, - "CSI.p": "s", - "CSI.npn": 1, - "CSI.rt": "xjsls.27,prt.28,xjses.447,xjsee.551,xjs.568,ol.935,iml.583,wsrt.588,cst.95,dnst.0,rqst.203,rspt.52", - "CSI.xjsls": 27, - "CSI.prt": 28, - "CSI.xjses": 447, - "CSI.xjsee": 551, - "CSI.ol": 935, - "CSI.iml": 583, - "CSI.wsrt": 588, - "CSI.cst": 95, - "CSI.dnst": 0, - "CSI.rqst": 203, - "CSI.rspt": 52, - "SpeedIndex": 0, - "visualComplete": 0, - "run": 1, - "effectiveBps": 451999, - "effectiveBpsDoc": 388820, - "tester": "IE9302-192.168.103.92", - "pages": { - "details": "http://www.webpagetest.org/details.php?test=141106_8N_ZRC&run=1&cached=0", - "checklist": "http://www.webpagetest.org/performance_optimization.php?test=141106_8N_ZRC&run=1&cached=0", - "breakdown": "http://www.webpagetest.org/breakdown.php?test=141106_8N_ZRC&run=1&cached=0", - "domains": "http://www.webpagetest.org/domains.php?test=141106_8N_ZRC&run=1&cached=0", - "screenShot": "http://www.webpagetest.org/screen_shot.php?test=141106_8N_ZRC&run=1&cached=0" - }, - "thumbnails": { - "waterfall": "http://www.webpagetest.org/result/141106_8N_ZRC/1_waterfall_thumb.png", - "checklist": "http://www.webpagetest.org/result/141106_8N_ZRC/1_optimization_thumb.png", - "screenShot": "http://www.webpagetest.org/result/141106_8N_ZRC/1_screen_thumb.png" - }, - "images": { - "waterfall": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_waterfall.png", - "connectionView": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_connection.png", - "checklist": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_optimization.png", - "screenShot": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_screen.jpg" - }, - "rawData": { - "headers": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_report.txt", - "pageData": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_IEWPG.txt", - "requestsData": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_IEWTR.txt", - "utilization": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_progress.csv" - }, - "videoFrames": [ - { - "time": 0, - "image": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/video_1/frame_0000.jpg", - "VisuallyComplete": 100 - } - ], - "domains": { - "moc.elgoog": { - "bytes": 595, - "requests": 1, - "connections": 1 - }, - "moc.elgoog.www": { - "bytes": 296647, - "requests": 8, - "connections": 1 - }, - "moc.citatsg.lss": { - "bytes": 14286, - "requests": 1, - "connections": 1 - }, - "moc.citatsg.www": { - "bytes": 184144, - "requests": 1, - "connections": 1 - }, - "moc.elgoog.sipa": { - "bytes": 49179, - "requests": 1, - "connections": 1 - } - }, - "breakdown": { - "html": { - "color": [ - 130, - 181, - 252 - ], - "bytes": 64090, - "requests": 3 - }, - "js": { - "color": [ - 254, - 197, - 132 - ], - "bytes": 435587, - "requests": 5 - }, - "css": { - "color": [ - 178, - 234, - 148 - ], - "bytes": 0, - "requests": 0 - }, - "image": { - "color": [ - 196, - 154, - 232 - ], - "bytes": 45174, - "requests": 4 - }, - "flash": { - "color": [ - 45, - 183, - 193 - ], - "bytes": 0, - "requests": 0 - }, - "font": { - "color": [ - 255, - 82, - 62 - ], - "bytes": 0, - "requests": 0 - }, - "other": { - "color": [ - 196, - 196, - 196 - ], - "bytes": 0, - "requests": 0 - } - } - }, - "repeatView": { - "URL": "https://google.com", - "loadTime": 905, - "TTFB": 362, - "bytesOut": 10427, - "bytesOutDoc": 9618, - "bytesIn": 86869, - "bytesInDoc": 86708, - "connections": 2, - "requests": [ - { - "method": "GET", - "host": "google.com", - "url": "/", - "responseCode": "301", - "load_ms": "64", - "ttfb_ms": "63", - "load_start": "129", - "bytesOut": "323", - "bytesIn": "595", - "objectSize": "0", - "expires": "Sat, 06 Dec 2014 18:46:12 GMT", - "cacheControl": "public, max-age=2592000", - "contentType": "text/html", - "type": "3", - "socket": "135", - "score_cache": "100", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": 97, - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "2592000", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "31", - "ssl_start": "31", - "ssl_end": "128", - "server_count": "11", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://google.com/", - "score_progressive_jpeg": -1, - "load_end": 193, - "ttfb_start": "129", - "ttfb_end": 192, - "download_start": 192, - "download_end": 193, - "download_ms": 1, - "all_start": "31", - "all_end": 193, - "all_ms": 161, - "headers": { - "request": [ - "GET / HTTP/1.1", - "Host: google.com", - "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A3DA6AEA-1B20-4879-B6F3-31BD12123EF3" - ], - "response": [ - "HTTP/1.1 301 Moved Permanently", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=2592000", - "content-length: 220", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:46:12 GMT", - "expires: Sat, 06 Dec 2014 18:46:12 GMT", - "location: https://www.google.com/", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 0, - "number": 1 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/", - "responseCode": "200", - "load_ms": "205", - "ttfb_ms": "154", - "load_start": "208", - "bytesOut": "243", - "bytesIn": "91126", - "objectSize": "0", - "expires": "-1", - "cacheControl": "private, max-age=0", - "contentType": "text/html", - "contentEncoding": "gzip", - "type": "3", - "socket": "145", - "score_cache": "-1", - "score_cdn": "-1", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 0, - "connect_ms": 0, - "ssl_ms": 0, - "gzip_total": "456", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "-1", - "cdn_provider": "Google", - "dns_start": "199", - "dns_end": "199", - "connect_start": "199", - "connect_end": "199", - "ssl_start": "199", - "ssl_end": "199", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/", - "score_progressive_jpeg": -1, - "load_end": 413, - "ttfb_start": "208", - "ttfb_end": 362, - "download_start": 362, - "download_end": 413, - "download_ms": 51, - "all_start": "208", - "all_end": 413, - "all_ms": "205", - "headers": { - "request": [ - "GET / HTTP/1.1", - "Host: www.google.com", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A3DA6AEA-1B20-4879-B6F3-31BD12123EF3" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=0", - "content-encoding: gzip", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:46:12 GMT", - "expires: -1", - "server: gws", - "set-cookie: PREF=ID=d47034f5653867b9:U=bdb7999b3c37ff3c:FF=0:TM=1415299561:LM=1415299572:S=y1TEqCJe7cEmheqN; expires=Sat, 05-Nov-2016 18:46:12 GMT; path=/; domain=.google.com", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 1, - "number": 2 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=9MFbVJSWMajasATZ0ICQCg&e=18168,3700318,3700349,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021083,4021089,4021415,4022074,4022318,4022489,4022495,4023367,4023567,4023709,4023971,4024102,4024692,8500272,8500394,10200083,10200526,10200716&atyp=csi&adh=&xjs=init.61.28.sb.40.p.9.spch.4.fpe.1.async.1&action=&srt=453&p=s&npn=1&rt=xjsls.22,prt.23,xjses.151,xjsee.270,xjs.292,ol.485,iml.106,wsrt.453,cst.0,dnst.0,rqst.205,rspt.51", - "responseCode": "204", - "load_ms": "60", - "ttfb_ms": "58", - "load_start": "931", - "bytesOut": "848", - "bytesIn": "251", - "objectSize": "0", - "contentType": "text/html", - "type": "3", - "socket": "145", - "score_cache": "0", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=9MFbVJSWMajasATZ0ICQCg&e=18168,3700318,3700349,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021083,4021089,4021415,4022074,4022318,4022489,4022495,4023367,4023567,4023709,4023971,4024102,4024692,8500272,8500394,10200083,10200526,10200716&atyp=csi&adh=&xjs=init.61.28.sb.40.p.9.spch.4.fpe.1.async.1&action=&srt=453&p=s&npn=1&rt=xjsls.22,prt.23,xjses.151,xjsee.270,xjs.292,ol.485,iml.106,wsrt.453,cst.0,dnst.0,rqst.205,rspt.51", - "score_progressive_jpeg": -1, - "load_end": 991, - "ttfb_start": "931", - "ttfb_end": 989, - "download_start": 989, - "download_end": 991, - "download_ms": 2, - "all_start": "931", - "all_end": 991, - "all_ms": "60", - "headers": { - "request": [ - "GET /gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=9MFbVJSWMajasATZ0ICQCg&e=18168,3700318,3700349,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021083,4021089,4021415,4022074,4022318,4022489,4022495,4023367,4023567,4023709,4023971,4024102,4024692,8500272,8500394,10200083,10200526,10200716&atyp=csi&adh=&xjs=init.61.28.sb.40.p.9.spch.4.fpe.1.async.1&action=&srt=453&p=s&npn=1&rt=xjsls.22,prt.23,xjses.151,xjsee.270,xjs.292,ol.485,iml.106,wsrt.453,cst.0,dnst.0,rqst.205,rspt.51 HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A3DA6AEA-1B20-4879-B6F3-31BD12123EF3" - ], - "response": [ - "HTTP/1.1 204 No Content", - "alternate-protocol: 443:quic,p=0.01", - "content-length: 0", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:46:13 GMT", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 2, - "number": 3 - } - ], - "requestsDoc": 2, - "responses_200": 1, - "responses_404": 0, - "responses_other": 1, - "result": 0, - "render": 570, - "fullyLoaded": 991, - "cached": 1, - "docTime": 905, - "domTime": 0, - "score_cache": 50, - "score_cdn": -1, - "score_gzip": 100, - "score_cookies": -1, - "score_keep-alive": 100, - "score_minify": -1, - "score_combine": 100, - "score_compress": -1, - "score_etags": -1, - "gzip_total": 456, - "gzip_savings": 0, - "minify_total": 0, - "minify_savings": 0, - "image_total": 0, - "image_savings": 0, - "optimization_checked": 1, - "aft": 0, - "domElements": 287, - "pageSpeedVersion": "1.9", - "title": "Google", - "titleTime": 669, - "loadEventStart": 923, - "loadEventEnd": 946, - "domContentLoadedEventStart": 476, - "domContentLoadedEventEnd": 511, - "lastVisualChange": 0, - "browser_name": "Google Chrome", - "browser_version": "38.0.2125.111", - "server_count": 5, - "server_rtt": 0, - "base_page_cdn": "Google", - "adult_site": 0, - "fixed_viewport": 0, - "score_progressive_jpeg": -1, - "firstPaint": 542, - "docCPUms": 748.805, - "fullyLoadedCPUms": 858.005, - "docCPUpct": 79, - "fullyLoadedCPUpct": 28, - "isResponsive": -1, - "date": 1415299564, - "CSI": [ - "v", - "s", - "imc", - "imn", - "imp", - "ei", - "e", - "atyp", - "adh", - "xjs", - "action", - "srt", - "p", - "npn", - "rt", - "xjsls", - "prt", - "xjses", - "xjsee", - "ol", - "iml", - "wsrt", - "cst", - "dnst", - "rqst", - "rspt" - ], - "CSI.v": 3, - "CSI.s": "webhp", - "CSI.imc": 1, - "CSI.imn": 1, - "CSI.imp": 1, - "CSI.ei": "9MFbVJSWMajasATZ0ICQCg", - "CSI.e": "18168,3700318,3700349,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021083,4021089,4021415,4022074,4022318,4022489,4022495,4023367,4023567,4023709,4023971,4024102,4024692,8500272,8500394,10200083,10200526,10200716", - "CSI.atyp": "csi", - "CSI.adh": "", - "CSI.xjs": 292, - "CSI.action": "", - "CSI.srt": 453, - "CSI.p": "s", - "CSI.npn": 1, - "CSI.rt": "xjsls.22,prt.23,xjses.151,xjsee.270,xjs.292,ol.485,iml.106,wsrt.453,cst.0,dnst.0,rqst.205,rspt.51", - "CSI.xjsls": 22, - "CSI.prt": 23, - "CSI.xjses": 151, - "CSI.xjsee": 270, - "CSI.ol": 485, - "CSI.iml": 106, - "CSI.wsrt": 453, - "CSI.cst": 0, - "CSI.dnst": 0, - "CSI.rqst": 205, - "CSI.rspt": 51, - "SpeedIndex": 0, - "visualComplete": 0, - "run": 1, - "effectiveBps": 138106, - "effectiveBpsDoc": 159683, - "tester": "IE9302-192.168.103.92", - "pages": { - "details": "http://www.webpagetest.org/details.php?test=141106_8N_ZRC&run=1&cached=1", - "checklist": "http://www.webpagetest.org/performance_optimization.php?test=141106_8N_ZRC&run=1&cached=1", - "breakdown": "http://www.webpagetest.org/breakdown.php?test=141106_8N_ZRC&run=1&cached=1", - "domains": "http://www.webpagetest.org/domains.php?test=141106_8N_ZRC&run=1&cached=1", - "screenShot": "http://www.webpagetest.org/screen_shot.php?test=141106_8N_ZRC&run=1&cached=1" - }, - "thumbnails": { - "waterfall": "http://www.webpagetest.org/result/141106_8N_ZRC/1_Cached_waterfall_thumb.png", - "checklist": "http://www.webpagetest.org/result/141106_8N_ZRC/1_Cached_optimization_thumb.png", - "screenShot": "http://www.webpagetest.org/result/141106_8N_ZRC/1_Cached_screen_thumb.png" - }, - "images": { - "waterfall": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_Cached_waterfall.png", - "connectionView": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_Cached_connection.png", - "checklist": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_Cached_optimization.png", - "screenShot": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_Cached_screen.jpg" - }, - "rawData": { - "headers": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_Cached_report.txt", - "pageData": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_Cached_IEWPG.txt", - "requestsData": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_Cached_IEWTR.txt", - "utilization": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_Cached_progress.csv" - }, - "videoFrames": [ - { - "time": 0, - "image": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/video_1_cached/frame_0000.jpg", - "VisuallyComplete": 100 - } - ], - "domains": { - "moc.elgoog": { - "bytes": 595, - "requests": 1, - "connections": 1 - }, - "moc.elgoog.www": { - "bytes": 91377, - "requests": 2, - "connections": 1 - } - }, - "breakdown": { - "html": { - "color": [ - 130, - 181, - 252 - ], - "bytes": 91972, - "requests": 3 - }, - "js": { - "color": [ - 254, - 197, - 132 - ], - "bytes": 0, - "requests": 0 - }, - "css": { - "color": [ - 178, - 234, - 148 - ], - "bytes": 0, - "requests": 0 - }, - "image": { - "color": [ - 196, - 154, - 232 - ], - "bytes": 0, - "requests": 0 - }, - "flash": { - "color": [ - 45, - 183, - 193 - ], - "bytes": 0, - "requests": 0 - }, - "font": { - "color": [ - 255, - 82, - 62 - ], - "bytes": 0, - "requests": 0 - }, - "other": { - "color": [ - 196, - 196, - 196 - ], - "bytes": 0, - "requests": 0 - } - } - } - } - }, - "fvonly": false, - "successfulFVRuns": 1, - "successfulRVRuns": 1, - "average": { - "firstView": { - "loadTime": 1529, - "TTFB": 503, - "bytesOut": 9808, - "bytesOutDoc": 7942, - "bytesIn": 501267, - "bytesInDoc": 398930, - "connections": 5, - "requests": 12, - "requestsDoc": 10, - "responses_200": 10, - "responses_404": 0, - "responses_other": 1, - "result": 0, - "render": 690, - "fullyLoaded": 1612, - "cached": 0, - "docTime": 1529, - "domTime": 0, - "score_cache": 72, - "score_cdn": 77, - "score_gzip": 100, - "score_cookies": -1, - "score_keep-alive": 100, - "score_minify": -1, - "score_combine": 100, - "score_compress": -1, - "score_etags": -1, - "gzip_total": 2916, - "gzip_savings": 0, - "minify_total": 0, - "minify_savings": 0, - "image_total": 0, - "image_savings": 0, - "optimization_checked": 1, - "aft": 0, - "domElements": 287, - "pageSpeedVersion": 1.9, - "titleTime": 689, - "loadEventStart": 1521, - "loadEventEnd": 1526, - "domContentLoadedEventStart": 616, - "domContentLoadedEventEnd": 650, - "lastVisualChange": 0, - "server_count": 5, - "server_rtt": 0, - "adult_site": 0, - "fixed_viewport": 0, - "score_progressive_jpeg": -1, - "firstPaint": 679, - "docCPUms": 873.606, - "fullyLoadedCPUms": 1092.007, - "docCPUpct": 57, - "fullyLoadedCPUpct": 25, - "isResponsive": -1, - "date": 1415299553, - "CSI.v": 3, - "CSI.imc": 1, - "CSI.imn": 1, - "CSI.imp": 1, - "CSI.xjs": 568, - "CSI.srt": 588, - "CSI.npn": 1, - "CSI.xjsls": 27, - "CSI.prt": 28, - "CSI.xjses": 447, - "CSI.xjsee": 551, - "CSI.ol": 935, - "CSI.iml": 583, - "CSI.wsrt": 588, - "CSI.cst": 95, - "CSI.dnst": 0, - "CSI.rqst": 203, - "CSI.rspt": 52, - "SpeedIndex": 0, - "visualComplete": 0, - "run": 1, - "effectiveBps": 451999, - "effectiveBpsDoc": 388820, - "avgRun": 1 - }, - "repeatView": { - "loadTime": 905, - "TTFB": 362, - "bytesOut": 10427, - "bytesOutDoc": 9618, - "bytesIn": 86869, - "bytesInDoc": 86708, - "connections": 2, - "requests": 3, - "requestsDoc": 2, - "responses_200": 1, - "responses_404": 0, - "responses_other": 1, - "result": 0, - "render": 570, - "fullyLoaded": 991, - "cached": 1, - "docTime": 905, - "domTime": 0, - "score_cache": 50, - "score_cdn": -1, - "score_gzip": 100, - "score_cookies": -1, - "score_keep-alive": 100, - "score_minify": -1, - "score_combine": 100, - "score_compress": -1, - "score_etags": -1, - "gzip_total": 456, - "gzip_savings": 0, - "minify_total": 0, - "minify_savings": 0, - "image_total": 0, - "image_savings": 0, - "optimization_checked": 1, - "aft": 0, - "domElements": 287, - "pageSpeedVersion": 1.9, - "titleTime": 669, - "loadEventStart": 923, - "loadEventEnd": 946, - "domContentLoadedEventStart": 476, - "domContentLoadedEventEnd": 511, - "lastVisualChange": 0, - "server_count": 5, - "server_rtt": 0, - "adult_site": 0, - "fixed_viewport": 0, - "score_progressive_jpeg": -1, - "firstPaint": 542, - "docCPUms": 748.805, - "fullyLoadedCPUms": 858.005, - "docCPUpct": 79, - "fullyLoadedCPUpct": 28, - "isResponsive": -1, - "date": 1415299564, - "CSI.v": 3, - "CSI.imc": 1, - "CSI.imn": 1, - "CSI.imp": 1, - "CSI.xjs": 292, - "CSI.srt": 453, - "CSI.npn": 1, - "CSI.xjsls": 22, - "CSI.prt": 23, - "CSI.xjses": 151, - "CSI.xjsee": 270, - "CSI.ol": 485, - "CSI.iml": 106, - "CSI.wsrt": 453, - "CSI.cst": 0, - "CSI.dnst": 0, - "CSI.rqst": 205, - "CSI.rspt": 51, - "SpeedIndex": 0, - "visualComplete": 0, - "run": 1, - "effectiveBps": 138106, - "effectiveBpsDoc": 159683, - "avgRun": 1 - } - }, - "standardDeviation": { - "firstView": { - "loadTime": 0, - "TTFB": 0, - "bytesOut": 0, - "bytesOutDoc": 0, - "bytesIn": 0, - "bytesInDoc": 0, - "connections": 0, - "requests": 0, - "requestsDoc": 0, - "responses_200": 0, - "responses_404": 0, - "responses_other": 0, - "result": 0, - "render": 0, - "fullyLoaded": 0, - "cached": 0, - "docTime": 0, - "domTime": 0, - "score_cache": 0, - "score_cdn": 0, - "score_gzip": 0, - "score_cookies": 0, - "score_keep-alive": 0, - "score_minify": 0, - "score_combine": 0, - "score_compress": 0, - "score_etags": 0, - "gzip_total": 0, - "gzip_savings": 0, - "minify_total": 0, - "minify_savings": 0, - "image_total": 0, - "image_savings": 0, - "optimization_checked": 0, - "aft": 0, - "domElements": 0, - "pageSpeedVersion": 0, - "titleTime": 0, - "loadEventStart": 0, - "loadEventEnd": 0, - "domContentLoadedEventStart": 0, - "domContentLoadedEventEnd": 0, - "lastVisualChange": 0, - "server_count": 0, - "server_rtt": 0, - "adult_site": 0, - "fixed_viewport": 0, - "score_progressive_jpeg": 0, - "firstPaint": 0, - "docCPUms": 0, - "fullyLoadedCPUms": 0, - "docCPUpct": 0, - "fullyLoadedCPUpct": 0, - "isResponsive": 0, - "date": 0, - "CSI.v": 0, - "CSI.imc": 0, - "CSI.imn": 0, - "CSI.imp": 0, - "CSI.xjs": 0, - "CSI.srt": 0, - "CSI.npn": 0, - "CSI.xjsls": 0, - "CSI.prt": 0, - "CSI.xjses": 0, - "CSI.xjsee": 0, - "CSI.ol": 0, - "CSI.iml": 0, - "CSI.wsrt": 0, - "CSI.cst": 0, - "CSI.dnst": 0, - "CSI.rqst": 0, - "CSI.rspt": 0, - "SpeedIndex": 0, - "visualComplete": 0, - "run": 0, - "effectiveBps": 0, - "effectiveBpsDoc": 0, - "avgRun": null - }, - "repeatView": { - "loadTime": 0, - "TTFB": 0, - "bytesOut": 0, - "bytesOutDoc": 0, - "bytesIn": 0, - "bytesInDoc": 0, - "connections": 0, - "requests": 0, - "requestsDoc": 0, - "responses_200": 0, - "responses_404": 0, - "responses_other": 0, - "result": 0, - "render": 0, - "fullyLoaded": 0, - "cached": 0, - "docTime": 0, - "domTime": 0, - "score_cache": 0, - "score_cdn": 0, - "score_gzip": 0, - "score_cookies": 0, - "score_keep-alive": 0, - "score_minify": 0, - "score_combine": 0, - "score_compress": 0, - "score_etags": 0, - "gzip_total": 0, - "gzip_savings": 0, - "minify_total": 0, - "minify_savings": 0, - "image_total": 0, - "image_savings": 0, - "optimization_checked": 0, - "aft": 0, - "domElements": 0, - "pageSpeedVersion": 0, - "titleTime": 0, - "loadEventStart": 0, - "loadEventEnd": 0, - "domContentLoadedEventStart": 0, - "domContentLoadedEventEnd": 0, - "lastVisualChange": 0, - "server_count": 0, - "server_rtt": 0, - "adult_site": 0, - "fixed_viewport": 0, - "score_progressive_jpeg": 0, - "firstPaint": 0, - "docCPUms": 0, - "fullyLoadedCPUms": 0, - "docCPUpct": 0, - "fullyLoadedCPUpct": 0, - "isResponsive": 0, - "date": 0, - "CSI.v": 0, - "CSI.imc": 0, - "CSI.imn": 0, - "CSI.imp": 0, - "CSI.xjs": 0, - "CSI.srt": 0, - "CSI.npn": 0, - "CSI.xjsls": 0, - "CSI.prt": 0, - "CSI.xjses": 0, - "CSI.xjsee": 0, - "CSI.ol": 0, - "CSI.iml": 0, - "CSI.wsrt": 0, - "CSI.cst": 0, - "CSI.dnst": 0, - "CSI.rqst": 0, - "CSI.rspt": 0, - "SpeedIndex": 0, - "visualComplete": 0, - "run": 0, - "effectiveBps": 0, - "effectiveBpsDoc": 0, - "avgRun": null - } - }, - "median": { - "firstView": { - "URL": "https://google.com", - "loadTime": 1529, - "TTFB": 503, - "bytesOut": 9808, - "bytesOutDoc": 7942, - "bytesIn": 501267, - "bytesInDoc": 398930, - "connections": 5, - "requests": [ - { - "method": "GET", - "host": "google.com", - "url": "/", - "responseCode": "301", - "load_ms": "66", - "ttfb_ms": "64", - "load_start": "183", - "bytesOut": "323", - "bytesIn": "595", - "objectSize": "0", - "expires": "Sat, 06 Dec 2014 18:46:01 GMT", - "cacheControl": "public, max-age=2592000", - "contentType": "text/html", - "type": "3", - "socket": "192", - "score_cache": "100", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": 36, - "ssl_ms": 96, - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "2592000", - "dns_start": "0", - "dns_end": "50", - "connect_start": "50", - "connect_end": "86", - "ssl_start": "86", - "ssl_end": "182", - "server_count": "11", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://google.com/", - "score_progressive_jpeg": -1, - "load_end": 249, - "ttfb_start": "183", - "ttfb_end": 247, - "download_start": 247, - "download_end": 249, - "download_ms": 2, - "all_start": "50", - "all_end": 249, - "all_ms": 198, - "headers": { - "request": [ - "GET / HTTP/1.1", - "Host: google.com", - "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 301 Moved Permanently", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=2592000", - "content-length: 220", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:46:01 GMT", - "expires: Sat, 06 Dec 2014 18:46:01 GMT", - "location: https://www.google.com/", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 0, - "number": 1 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/", - "responseCode": "200", - "load_ms": "203", - "ttfb_ms": "151", - "load_start": "352", - "bytesOut": "243", - "bytesIn": "63244", - "objectSize": "0", - "expires": "-1", - "cacheControl": "private, max-age=0", - "contentType": "text/html", - "contentEncoding": "gzip", - "type": "3", - "socket": "208", - "score_cache": "-1", - "score_cdn": "-1", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 0, - "connect_ms": 33, - "ssl_ms": 63, - "gzip_total": "780", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "-1", - "cdn_provider": "Google", - "dns_start": "256", - "dns_end": "256", - "connect_start": "256", - "connect_end": "289", - "ssl_start": "289", - "ssl_end": "352", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/", - "score_progressive_jpeg": -1, - "load_end": 555, - "ttfb_start": "352", - "ttfb_end": 503, - "download_start": 503, - "download_end": 555, - "download_ms": 52, - "all_start": "256", - "all_end": 555, - "all_ms": 299, - "headers": { - "request": [ - "GET / HTTP/1.1", - "Host: www.google.com", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=0", - "content-encoding: gzip", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:46:01 GMT", - "expires: -1", - "p3p: CP=\"This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info.\"", - "server: gws", - "set-cookie: PREF=ID=d47034f5653867b9:FF=0:TM=1415299561:LM=1415299561:S=_Lnze49gy_eLNTCT; expires=Sat, 05-Nov-2016 18:46:01 GMT; path=/; domain=.google.com", - "NID=67=CypCtBv6uDyjo-YeQv5XdLwuaJ_DTDUM-7trjlCcT8WURKXHoVuV_UXxT1QME9wNaKE6LqvWqhUZFoO9_V4K9mbPvC_r79XHktUlFu7m8ovfiM1vXxsot7jWrWsNqeXO; expires=Fri, 08-May-2015 18:46:01 GMT; path=/; domain=.google.com; HttpOnly", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 1, - "number": 2 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "responseCode": "200", - "load_ms": "288", - "ttfb_ms": "43", - "load_start": "679", - "bytesOut": "443", - "bytesIn": "139553", - "objectSize": "0", - "expires": "Fri, 06 Nov 2015 11:15:49 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "208", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "429", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/", - "initiator_line": "94", - "initiator_column": "17237", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "score_progressive_jpeg": -1, - "load_end": 967, - "ttfb_start": "679", - "ttfb_end": 722, - "download_start": 722, - "download_end": 967, - "download_ms": 245, - "all_start": "679", - "all_end": 967, - "all_ms": "288", - "headers": { - "request": [ - "GET /xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP/1.1", - "Host: www.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 27012", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 130931", - "content-type: text/javascript; charset=UTF-8", - "date: Thu, 06 Nov 2014 11:15:49 GMT", - "expires: Fri, 06 Nov 2015 11:15:49 GMT", - "last-modified: Tue, 04 Nov 2014 19:30:26 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 2, - "number": 3 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/images/srpr/logo11w.png", - "responseCode": "200", - "load_ms": "477", - "ttfb_ms": "476", - "load_start": "679", - "bytesOut": "330", - "bytesIn": "14113", - "objectSize": "0", - "expires": "Thu, 06 Nov 2014 18:46:02 GMT", - "cacheControl": "private, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "208", - "score_cache": "0", - "score_cdn": "100", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/", - "initiator_line": "28", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/images/srpr/logo11w.png", - "score_progressive_jpeg": -1, - "load_end": 1156, - "ttfb_start": "679", - "ttfb_end": 1155, - "download_start": 1155, - "download_end": 1156, - "download_ms": 1, - "all_start": "679", - "all_end": 1156, - "all_ms": "477", - "headers": { - "request": [ - "GET /images/srpr/logo11w.png HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=31536000", - "content-length: 14022", - "content-type: image/png", - "date: Thu, 06 Nov 2014 18:46:02 GMT", - "expires: Thu, 06 Nov 2014 18:46:02 GMT", - "last-modified: Wed, 09 Oct 2013 01:35:39 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 3, - "number": 4 - }, - { - "method": "GET", - "host": "ssl.gstatic.com", - "url": "/gb/images/i1_71651352.png", - "responseCode": "200", - "load_ms": "80", - "ttfb_ms": "41", - "load_start": "807", - "bytesOut": "333", - "bytesIn": "14286", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 13:04:25 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "293", - "score_cache": "100", - "score_cdn": "0", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 27, - "connect_ms": 37, - "ssl_ms": 63, - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "dns_start": "679", - "dns_end": "706", - "connect_start": "706", - "connect_end": "743", - "ssl_start": "743", - "ssl_end": "806", - "initiator": "https://www.google.com/", - "initiator_line": "76", - "initiator_column": "35", - "server_count": "4", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://ssl.gstatic.com/gb/images/i1_71651352.png", - "score_progressive_jpeg": -1, - "load_end": 887, - "ttfb_start": "807", - "ttfb_end": 848, - "download_start": 848, - "download_end": 887, - "download_ms": 39, - "all_start": "679", - "all_end": 887, - "all_ms": 207, - "headers": { - "request": [ - "GET /gb/images/i1_71651352.png HTTP/1.1", - "Host: ssl.gstatic.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 106897", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-length: 14055", - "content-type: image/png", - "date: Wed, 05 Nov 2014 13:04:25 GMT", - "expires: Thu, 05 Nov 2015 13:04:25 GMT", - "last-modified: Thu, 16 Oct 2014 18:20:30 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 4, - "number": 5 - }, - { - "method": "GET", - "host": "www.gstatic.com", - "url": "/og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w", - "responseCode": "200", - "load_ms": "167", - "ttfb_ms": "164", - "load_start": "992", - "bytesOut": "392", - "bytesIn": "184144", - "objectSize": "0", - "expires": "Wed, 04 Nov 2015 21:10:54 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "325", - "score_cache": "100", - "score_cdn": "0", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 50, - "connect_ms": 40, - "ssl_ms": 50, - "gzip_total": "429", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "dns_start": "851", - "dns_end": "901", - "connect_start": "901", - "connect_end": "941", - "ssl_start": "941", - "ssl_end": "991", - "initiator": "https://www.google.com/", - "initiator_line": "57", - "initiator_column": "143", - "server_count": "4", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.gstatic.com/og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w", - "score_progressive_jpeg": -1, - "load_end": 1159, - "ttfb_start": "992", - "ttfb_end": 1156, - "download_start": 1156, - "download_end": 1159, - "download_ms": 3, - "all_start": "851", - "all_end": 1159, - "all_ms": 307, - "headers": { - "request": [ - "GET /og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w HTTP/1.1", - "Host: www.gstatic.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 164108", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 55207", - "content-type: text/javascript; charset=UTF-8", - "date: Tue, 04 Nov 2014 21:10:54 GMT", - "expires: Wed, 04 Nov 2015 21:10:54 GMT", - "last-modified: Mon, 03 Nov 2014 17:56:31 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 5, - "number": 6 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/extern_chrome/854094c746d4c9a.js?bav=on.2,or.r_qf.", - "responseCode": "200", - "load_ms": "100", - "ttfb_ms": "88", - "load_start": "1154", - "bytesOut": "340", - "bytesIn": "13943", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 00:00:00 GMT", - "cacheControl": "private", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "208", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "422", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31382038", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "initiator_line": "1187", - "initiator_column": "181", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/extern_chrome/854094c746d4c9a.js?bav=on.2,or.r_qf.", - "score_progressive_jpeg": -1, - "load_end": 1254, - "ttfb_start": "1154", - "ttfb_end": 1242, - "download_start": 1242, - "download_end": 1254, - "download_ms": 12, - "all_start": "1154", - "all_end": 1254, - "all_ms": "100", - "headers": { - "request": [ - "GET /extern_chrome/854094c746d4c9a.js?bav=on.2,or.r_qf. HTTP/1.1", - "Host: www.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private", - "content-disposition: attachment; filename=\"f.txt\"", - "content-encoding: gzip", - "content-length: 13825", - "content-type: text/javascript; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:46:02 GMT", - "expires: Thu, 05 Nov 2015 00:00:00 GMT", - "last-modified: Thu, 07 Nov 2013 00:00:00 GMT", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 6, - "number": 7 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm/am=lKj_TwWDwIxAARMQrA4/rt=j/d=0/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "responseCode": "200", - "load_ms": "121", - "ttfb_ms": "41", - "load_start": "1223", - "bytesOut": "682", - "bytesIn": "48768", - "objectSize": "0", - "expires": "Fri, 06 Nov 2015 04:39:44 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "208", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "428", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "initiator_line": "101", - "initiator_column": "112", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm/am=lKj_TwWDwIxAARMQrA4/rt=j/d=0/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "score_progressive_jpeg": -1, - "load_end": 1344, - "ttfb_start": "1223", - "ttfb_end": 1264, - "download_start": 1264, - "download_end": 1344, - "download_ms": 80, - "all_start": "1223", - "all_end": 1344, - "all_ms": "121", - "headers": { - "request": [ - "GET /xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm/am=lKj_TwWDwIxAARMQrA4/rt=j/d=0/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP/1.1", - "Host: www.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 50778", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 48157", - "content-type: text/javascript; charset=UTF-8", - "date: Thu, 06 Nov 2014 04:39:44 GMT", - "expires: Fri, 06 Nov 2015 04:39:44 GMT", - "last-modified: Tue, 04 Nov 2014 19:30:26 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 7, - "number": 8 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/textinputassistant/tia.png", - "responseCode": "200", - "load_ms": "167", - "ttfb_ms": "164", - "load_start": "1224", - "bytesOut": "333", - "bytesIn": "479", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 04:43:41 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "208", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/", - "initiator_line": "1", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/textinputassistant/tia.png", - "score_progressive_jpeg": -1, - "load_end": 1391, - "ttfb_start": "1224", - "ttfb_end": 1388, - "download_start": 1388, - "download_end": 1391, - "download_ms": 3, - "all_start": "1224", - "all_end": 1391, - "all_ms": "167", - "headers": { - "request": [ - "GET /textinputassistant/tia.png HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 136941", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-length: 387", - "content-type: image/png", - "date: Wed, 05 Nov 2014 04:43:41 GMT", - "expires: Thu, 05 Nov 2015 04:43:41 GMT", - "last-modified: Mon, 02 Apr 2012 02:13:37 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 8, - "number": 9 - }, - { - "method": "GET", - "host": "apis.google.com", - "url": "/_/scs/abc-static/_/js/k=gapi.gapi.en.3_mJ9Wvc9FU.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg/cb=gapi.loaded_0", - "responseCode": "200", - "load_ms": "123", - "ttfb_ms": "48", - "load_start": "1338", - "bytesOut": "456", - "bytesIn": "49179", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 15:23:35 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "400", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 26, - "connect_ms": 37, - "ssl_ms": 54, - "gzip_total": "428", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "1221", - "dns_end": "1247", - "connect_start": "1247", - "connect_end": "1284", - "ssl_start": "1284", - "ssl_end": "1338", - "initiator": "https://www.gstatic.com/og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w", - "initiator_line": "138", - "initiator_column": "381", - "server_count": "11", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://apis.google.com/_/scs/abc-static/_/js/k=gapi.gapi.en.3_mJ9Wvc9FU.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg/cb=gapi.loaded_0", - "score_progressive_jpeg": -1, - "load_end": 1461, - "ttfb_start": "1338", - "ttfb_end": 1386, - "download_start": 1386, - "download_end": 1461, - "download_ms": 75, - "all_start": "1221", - "all_end": 1461, - "all_ms": 240, - "headers": { - "request": [ - "GET /_/scs/abc-static/_/js/k=gapi.gapi.en.3_mJ9Wvc9FU.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg/cb=gapi.loaded_0 HTTP/1.1", - "Host: apis.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 98547", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 48911", - "content-type: text/javascript; charset=UTF-8", - "date: Wed, 05 Nov 2014 15:23:35 GMT", - "expires: Thu, 05 Nov 2015 15:23:35 GMT", - "last-modified: Thu, 16 Oct 2014 07:30:29 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 9, - "number": 10 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/images/nav_logo195.png", - "responseCode": "200", - "load_ms": "68", - "ttfb_ms": "53", - "load_start": "1539", - "bytesOut": "329", - "bytesIn": "16296", - "objectSize": "0", - "expires": "Thu, 06 Nov 2014 18:46:02 GMT", - "cacheControl": "private, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "208", - "score_cache": "0", - "score_cdn": "100", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/images/nav_logo195.png", - "score_progressive_jpeg": -1, - "load_end": 1607, - "ttfb_start": "1539", - "ttfb_end": 1592, - "download_start": 1592, - "download_end": 1607, - "download_ms": 15, - "all_start": "1539", - "all_end": 1607, - "all_ms": "68", - "headers": { - "request": [ - "GET /images/nav_logo195.png HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=31536000", - "content-length: 16214", - "content-type: image/png", - "date: Thu, 06 Nov 2014 18:46:02 GMT", - "expires: Thu, 06 Nov 2014 18:46:02 GMT", - "last-modified: Wed, 21 May 2014 00:02:44 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 10, - "number": 11 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=6cFbVJTsJ63CsATV04D4Dw&e=18167,4003510,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020562,4020666,4020921,4021073,4021416,4022073,4022318,4022495,4022688,4022919,4023367,4023567,4023709,4023971,4024702,4024731,4024797,4024905,8500272,8500325,8500393,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.61.28.sb.36.p.10.spch.5.ifl.2.foot.1&action=&srt=588&p=s&npn=1&rt=xjsls.27,prt.28,xjses.447,xjsee.551,xjs.568,ol.935,iml.583,wsrt.588,cst.95,dnst.0,rqst.203,rspt.52", - "responseCode": "204", - "load_ms": "72", - "ttfb_ms": "69", - "load_start": "1540", - "bytesOut": "857", - "bytesIn": "251", - "objectSize": "0", - "contentType": "text/html", - "type": "3", - "socket": "208", - "score_cache": "0", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=6cFbVJTsJ63CsATV04D4Dw&e=18167,4003510,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020562,4020666,4020921,4021073,4021416,4022073,4022318,4022495,4022688,4022919,4023367,4023567,4023709,4023971,4024702,4024731,4024797,4024905,8500272,8500325,8500393,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.61.28.sb.36.p.10.spch.5.ifl.2.foot.1&action=&srt=588&p=s&npn=1&rt=xjsls.27,prt.28,xjses.447,xjsee.551,xjs.568,ol.935,iml.583,wsrt.588,cst.95,dnst.0,rqst.203,rspt.52", - "score_progressive_jpeg": -1, - "load_end": 1612, - "ttfb_start": "1540", - "ttfb_end": 1609, - "download_start": 1609, - "download_end": 1612, - "download_ms": 3, - "all_start": "1540", - "all_end": 1612, - "all_ms": "72", - "headers": { - "request": [ - "GET /gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=6cFbVJTsJ63CsATV04D4Dw&e=18167,4003510,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020562,4020666,4020921,4021073,4021416,4022073,4022318,4022495,4022688,4022919,4023367,4023567,4023709,4023971,4024702,4024731,4024797,4024905,8500272,8500325,8500393,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.61.28.sb.36.p.10.spch.5.ifl.2.foot.1&action=&srt=588&p=s&npn=1&rt=xjsls.27,prt.28,xjses.447,xjsee.551,xjs.568,ol.935,iml.583,wsrt.588,cst.95,dnst.0,rqst.203,rspt.52 HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9" - ], - "response": [ - "HTTP/1.1 204 No Content", - "alternate-protocol: 443:quic,p=0.01", - "content-length: 0", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:46:02 GMT", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 11, - "number": 12 - } - ], - "requestsDoc": 10, - "responses_200": 10, - "responses_404": 0, - "responses_other": 1, - "result": 0, - "render": 690, - "fullyLoaded": 1612, - "cached": 0, - "docTime": 1529, - "domTime": 0, - "score_cache": 72, - "score_cdn": 77, - "score_gzip": 100, - "score_cookies": -1, - "score_keep-alive": 100, - "score_minify": -1, - "score_combine": 100, - "score_compress": -1, - "score_etags": -1, - "gzip_total": 2916, - "gzip_savings": 0, - "minify_total": 0, - "minify_savings": 0, - "image_total": 0, - "image_savings": 0, - "optimization_checked": 1, - "aft": 0, - "domElements": 287, - "pageSpeedVersion": "1.9", - "title": "Google", - "titleTime": 689, - "loadEventStart": 1521, - "loadEventEnd": 1526, - "domContentLoadedEventStart": 616, - "domContentLoadedEventEnd": 650, - "lastVisualChange": 0, - "browser_name": "Google Chrome", - "browser_version": "38.0.2125.111", - "server_count": 5, - "server_rtt": 0, - "base_page_cdn": "Google", - "adult_site": 0, - "fixed_viewport": 0, - "score_progressive_jpeg": -1, - "firstPaint": 679, - "docCPUms": 873.606, - "fullyLoadedCPUms": 1092.007, - "docCPUpct": 57, - "fullyLoadedCPUpct": 25, - "isResponsive": -1, - "date": 1415299553, - "CSI": [ - "v", - "s", - "imc", - "imn", - "imp", - "ei", - "e", - "atyp", - "adh", - "xjs", - "action", - "srt", - "p", - "npn", - "rt", - "xjsls", - "prt", - "xjses", - "xjsee", - "ol", - "iml", - "wsrt", - "cst", - "dnst", - "rqst", - "rspt" - ], - "CSI.v": 3, - "CSI.s": "webhp", - "CSI.imc": 1, - "CSI.imn": 1, - "CSI.imp": 1, - "CSI.ei": "6cFbVJTsJ63CsATV04D4Dw", - "CSI.e": "18167,4003510,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020562,4020666,4020921,4021073,4021416,4022073,4022318,4022495,4022688,4022919,4023367,4023567,4023709,4023971,4024702,4024731,4024797,4024905,8500272,8500325,8500393,8500700,10200083,10200716,10200743", - "CSI.atyp": "csi", - "CSI.adh": "", - "CSI.xjs": 568, - "CSI.action": "", - "CSI.srt": 588, - "CSI.p": "s", - "CSI.npn": 1, - "CSI.rt": "xjsls.27,prt.28,xjses.447,xjsee.551,xjs.568,ol.935,iml.583,wsrt.588,cst.95,dnst.0,rqst.203,rspt.52", - "CSI.xjsls": 27, - "CSI.prt": 28, - "CSI.xjses": 447, - "CSI.xjsee": 551, - "CSI.ol": 935, - "CSI.iml": 583, - "CSI.wsrt": 588, - "CSI.cst": 95, - "CSI.dnst": 0, - "CSI.rqst": 203, - "CSI.rspt": 52, - "SpeedIndex": 0, - "visualComplete": 0, - "run": 1, - "effectiveBps": 451999, - "effectiveBpsDoc": 388820, - "tester": "IE9302-192.168.103.92", - "pages": { - "details": "http://www.webpagetest.org/details.php?test=141106_8N_ZRC&run=1&cached=0", - "checklist": "http://www.webpagetest.org/performance_optimization.php?test=141106_8N_ZRC&run=1&cached=0", - "breakdown": "http://www.webpagetest.org/breakdown.php?test=141106_8N_ZRC&run=1&cached=0", - "domains": "http://www.webpagetest.org/domains.php?test=141106_8N_ZRC&run=1&cached=0", - "screenShot": "http://www.webpagetest.org/screen_shot.php?test=141106_8N_ZRC&run=1&cached=0" - }, - "thumbnails": { - "waterfall": "http://www.webpagetest.org/result/141106_8N_ZRC/1_waterfall_thumb.png", - "checklist": "http://www.webpagetest.org/result/141106_8N_ZRC/1_optimization_thumb.png", - "screenShot": "http://www.webpagetest.org/result/141106_8N_ZRC/1_screen_thumb.png" - }, - "images": { - "waterfall": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_waterfall.png", - "connectionView": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_connection.png", - "checklist": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_optimization.png", - "screenShot": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_screen.jpg" - }, - "rawData": { - "headers": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_report.txt", - "pageData": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_IEWPG.txt", - "requestsData": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_IEWTR.txt", - "utilization": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_progress.csv" - }, - "videoFrames": [ - { - "time": 0, - "image": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/video_1/frame_0000.jpg", - "VisuallyComplete": 100 - } - ], - "domains": { - "moc.elgoog": { - "bytes": 595, - "requests": 1, - "connections": 1 - }, - "moc.elgoog.www": { - "bytes": 296647, - "requests": 8, - "connections": 1 - }, - "moc.citatsg.lss": { - "bytes": 14286, - "requests": 1, - "connections": 1 - }, - "moc.citatsg.www": { - "bytes": 184144, - "requests": 1, - "connections": 1 - }, - "moc.elgoog.sipa": { - "bytes": 49179, - "requests": 1, - "connections": 1 - } - }, - "breakdown": { - "html": { - "color": [ - 130, - 181, - 252 - ], - "bytes": 64090, - "requests": 3 - }, - "js": { - "color": [ - 254, - 197, - 132 - ], - "bytes": 435587, - "requests": 5 - }, - "css": { - "color": [ - 178, - 234, - 148 - ], - "bytes": 0, - "requests": 0 - }, - "image": { - "color": [ - 196, - 154, - 232 - ], - "bytes": 45174, - "requests": 4 - }, - "flash": { - "color": [ - 45, - 183, - 193 - ], - "bytes": 0, - "requests": 0 - }, - "font": { - "color": [ - 255, - 82, - 62 - ], - "bytes": 0, - "requests": 0 - }, - "other": { - "color": [ - 196, - 196, - 196 - ], - "bytes": 0, - "requests": 0 - } - } - }, - "repeatView": { - "URL": "https://google.com", - "loadTime": 905, - "TTFB": 362, - "bytesOut": 10427, - "bytesOutDoc": 9618, - "bytesIn": 86869, - "bytesInDoc": 86708, - "connections": 2, - "requests": [ - { - "method": "GET", - "host": "google.com", - "url": "/", - "responseCode": "301", - "load_ms": "64", - "ttfb_ms": "63", - "load_start": "129", - "bytesOut": "323", - "bytesIn": "595", - "objectSize": "0", - "expires": "Sat, 06 Dec 2014 18:46:12 GMT", - "cacheControl": "public, max-age=2592000", - "contentType": "text/html", - "type": "3", - "socket": "135", - "score_cache": "100", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": 97, - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "2592000", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "31", - "ssl_start": "31", - "ssl_end": "128", - "server_count": "11", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://google.com/", - "score_progressive_jpeg": -1, - "load_end": 193, - "ttfb_start": "129", - "ttfb_end": 192, - "download_start": 192, - "download_end": 193, - "download_ms": 1, - "all_start": "31", - "all_end": 193, - "all_ms": 161, - "headers": { - "request": [ - "GET / HTTP/1.1", - "Host: google.com", - "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A3DA6AEA-1B20-4879-B6F3-31BD12123EF3" - ], - "response": [ - "HTTP/1.1 301 Moved Permanently", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=2592000", - "content-length: 220", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:46:12 GMT", - "expires: Sat, 06 Dec 2014 18:46:12 GMT", - "location: https://www.google.com/", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 0, - "number": 1 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/", - "responseCode": "200", - "load_ms": "205", - "ttfb_ms": "154", - "load_start": "208", - "bytesOut": "243", - "bytesIn": "91126", - "objectSize": "0", - "expires": "-1", - "cacheControl": "private, max-age=0", - "contentType": "text/html", - "contentEncoding": "gzip", - "type": "3", - "socket": "145", - "score_cache": "-1", - "score_cdn": "-1", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 0, - "connect_ms": 0, - "ssl_ms": 0, - "gzip_total": "456", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "-1", - "cdn_provider": "Google", - "dns_start": "199", - "dns_end": "199", - "connect_start": "199", - "connect_end": "199", - "ssl_start": "199", - "ssl_end": "199", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/", - "score_progressive_jpeg": -1, - "load_end": 413, - "ttfb_start": "208", - "ttfb_end": 362, - "download_start": 362, - "download_end": 413, - "download_ms": 51, - "all_start": "208", - "all_end": 413, - "all_ms": "205", - "headers": { - "request": [ - "GET / HTTP/1.1", - "Host: www.google.com", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A3DA6AEA-1B20-4879-B6F3-31BD12123EF3" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=0", - "content-encoding: gzip", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:46:12 GMT", - "expires: -1", - "server: gws", - "set-cookie: PREF=ID=d47034f5653867b9:U=bdb7999b3c37ff3c:FF=0:TM=1415299561:LM=1415299572:S=y1TEqCJe7cEmheqN; expires=Sat, 05-Nov-2016 18:46:12 GMT; path=/; domain=.google.com", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 1, - "number": 2 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=9MFbVJSWMajasATZ0ICQCg&e=18168,3700318,3700349,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021083,4021089,4021415,4022074,4022318,4022489,4022495,4023367,4023567,4023709,4023971,4024102,4024692,8500272,8500394,10200083,10200526,10200716&atyp=csi&adh=&xjs=init.61.28.sb.40.p.9.spch.4.fpe.1.async.1&action=&srt=453&p=s&npn=1&rt=xjsls.22,prt.23,xjses.151,xjsee.270,xjs.292,ol.485,iml.106,wsrt.453,cst.0,dnst.0,rqst.205,rspt.51", - "responseCode": "204", - "load_ms": "60", - "ttfb_ms": "58", - "load_start": "931", - "bytesOut": "848", - "bytesIn": "251", - "objectSize": "0", - "contentType": "text/html", - "type": "3", - "socket": "145", - "score_cache": "0", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=9MFbVJSWMajasATZ0ICQCg&e=18168,3700318,3700349,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021083,4021089,4021415,4022074,4022318,4022489,4022495,4023367,4023567,4023709,4023971,4024102,4024692,8500272,8500394,10200083,10200526,10200716&atyp=csi&adh=&xjs=init.61.28.sb.40.p.9.spch.4.fpe.1.async.1&action=&srt=453&p=s&npn=1&rt=xjsls.22,prt.23,xjses.151,xjsee.270,xjs.292,ol.485,iml.106,wsrt.453,cst.0,dnst.0,rqst.205,rspt.51", - "score_progressive_jpeg": -1, - "load_end": 991, - "ttfb_start": "931", - "ttfb_end": 989, - "download_start": 989, - "download_end": 991, - "download_ms": 2, - "all_start": "931", - "all_end": 991, - "all_ms": "60", - "headers": { - "request": [ - "GET /gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=9MFbVJSWMajasATZ0ICQCg&e=18168,3700318,3700349,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021083,4021089,4021415,4022074,4022318,4022489,4022495,4023367,4023567,4023709,4023971,4024102,4024692,8500272,8500394,10200083,10200526,10200716&atyp=csi&adh=&xjs=init.61.28.sb.40.p.9.spch.4.fpe.1.async.1&action=&srt=453&p=s&npn=1&rt=xjsls.22,prt.23,xjses.151,xjsee.270,xjs.292,ol.485,iml.106,wsrt.453,cst.0,dnst.0,rqst.205,rspt.51 HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A3DA6AEA-1B20-4879-B6F3-31BD12123EF3" - ], - "response": [ - "HTTP/1.1 204 No Content", - "alternate-protocol: 443:quic,p=0.01", - "content-length: 0", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:46:13 GMT", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 2, - "number": 3 - } - ], - "requestsDoc": 2, - "responses_200": 1, - "responses_404": 0, - "responses_other": 1, - "result": 0, - "render": 570, - "fullyLoaded": 991, - "cached": 1, - "docTime": 905, - "domTime": 0, - "score_cache": 50, - "score_cdn": -1, - "score_gzip": 100, - "score_cookies": -1, - "score_keep-alive": 100, - "score_minify": -1, - "score_combine": 100, - "score_compress": -1, - "score_etags": -1, - "gzip_total": 456, - "gzip_savings": 0, - "minify_total": 0, - "minify_savings": 0, - "image_total": 0, - "image_savings": 0, - "optimization_checked": 1, - "aft": 0, - "domElements": 287, - "pageSpeedVersion": "1.9", - "title": "Google", - "titleTime": 669, - "loadEventStart": 923, - "loadEventEnd": 946, - "domContentLoadedEventStart": 476, - "domContentLoadedEventEnd": 511, - "lastVisualChange": 0, - "browser_name": "Google Chrome", - "browser_version": "38.0.2125.111", - "server_count": 5, - "server_rtt": 0, - "base_page_cdn": "Google", - "adult_site": 0, - "fixed_viewport": 0, - "score_progressive_jpeg": -1, - "firstPaint": 542, - "docCPUms": 748.805, - "fullyLoadedCPUms": 858.005, - "docCPUpct": 79, - "fullyLoadedCPUpct": 28, - "isResponsive": -1, - "date": 1415299564, - "CSI": [ - "v", - "s", - "imc", - "imn", - "imp", - "ei", - "e", - "atyp", - "adh", - "xjs", - "action", - "srt", - "p", - "npn", - "rt", - "xjsls", - "prt", - "xjses", - "xjsee", - "ol", - "iml", - "wsrt", - "cst", - "dnst", - "rqst", - "rspt" - ], - "CSI.v": 3, - "CSI.s": "webhp", - "CSI.imc": 1, - "CSI.imn": 1, - "CSI.imp": 1, - "CSI.ei": "9MFbVJSWMajasATZ0ICQCg", - "CSI.e": "18168,3700318,3700349,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021083,4021089,4021415,4022074,4022318,4022489,4022495,4023367,4023567,4023709,4023971,4024102,4024692,8500272,8500394,10200083,10200526,10200716", - "CSI.atyp": "csi", - "CSI.adh": "", - "CSI.xjs": 292, - "CSI.action": "", - "CSI.srt": 453, - "CSI.p": "s", - "CSI.npn": 1, - "CSI.rt": "xjsls.22,prt.23,xjses.151,xjsee.270,xjs.292,ol.485,iml.106,wsrt.453,cst.0,dnst.0,rqst.205,rspt.51", - "CSI.xjsls": 22, - "CSI.prt": 23, - "CSI.xjses": 151, - "CSI.xjsee": 270, - "CSI.ol": 485, - "CSI.iml": 106, - "CSI.wsrt": 453, - "CSI.cst": 0, - "CSI.dnst": 0, - "CSI.rqst": 205, - "CSI.rspt": 51, - "SpeedIndex": 0, - "visualComplete": 0, - "run": 1, - "effectiveBps": 138106, - "effectiveBpsDoc": 159683, - "tester": "IE9302-192.168.103.92", - "pages": { - "details": "http://www.webpagetest.org/details.php?test=141106_8N_ZRC&run=1&cached=1", - "checklist": "http://www.webpagetest.org/performance_optimization.php?test=141106_8N_ZRC&run=1&cached=1", - "breakdown": "http://www.webpagetest.org/breakdown.php?test=141106_8N_ZRC&run=1&cached=1", - "domains": "http://www.webpagetest.org/domains.php?test=141106_8N_ZRC&run=1&cached=1", - "screenShot": "http://www.webpagetest.org/screen_shot.php?test=141106_8N_ZRC&run=1&cached=1" - }, - "thumbnails": { - "waterfall": "http://www.webpagetest.org/result/141106_8N_ZRC/1_Cached_waterfall_thumb.png", - "checklist": "http://www.webpagetest.org/result/141106_8N_ZRC/1_Cached_optimization_thumb.png", - "screenShot": "http://www.webpagetest.org/result/141106_8N_ZRC/1_Cached_screen_thumb.png" - }, - "images": { - "waterfall": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_Cached_waterfall.png", - "connectionView": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_Cached_connection.png", - "checklist": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_Cached_optimization.png", - "screenShot": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_Cached_screen.jpg" - }, - "rawData": { - "headers": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_Cached_report.txt", - "pageData": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_Cached_IEWPG.txt", - "requestsData": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_Cached_IEWTR.txt", - "utilization": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/1_Cached_progress.csv" - }, - "videoFrames": [ - { - "time": 0, - "image": "http://www.webpagetest.org/results/14/11/06/8N/ZRC/video_1_cached/frame_0000.jpg", - "VisuallyComplete": 100 - } - ], - "domains": { - "moc.elgoog": { - "bytes": 595, - "requests": 1, - "connections": 1 - }, - "moc.elgoog.www": { - "bytes": 91377, - "requests": 2, - "connections": 1 - } - }, - "breakdown": { - "html": { - "color": [ - 130, - 181, - 252 - ], - "bytes": 91972, - "requests": 3 - }, - "js": { - "color": [ - 254, - 197, - 132 - ], - "bytes": 0, - "requests": 0 - }, - "css": { - "color": [ - 178, - 234, - 148 - ], - "bytes": 0, - "requests": 0 - }, - "image": { - "color": [ - 196, - 154, - 232 - ], - "bytes": 0, - "requests": 0 - }, - "flash": { - "color": [ - 45, - 183, - 193 - ], - "bytes": 0, - "requests": 0 - }, - "font": { - "color": [ - 255, - 82, - 62 - ], - "bytes": 0, - "requests": 0 - }, - "other": { - "color": [ - 196, - 196, - 196 - ], - "bytes": 0, - "requests": 0 - } - } - } - } - }, - "statusCode": 200, - "statusText": "Test Complete" -} \ No newline at end of file diff --git a/test/fixtures/objects/testResultsMultiRunsDefaultMedianMetric.json b/test/fixtures/objects/testResultsMultiRunsDefaultMedianMetric.json deleted file mode 100644 index 02ec687..0000000 --- a/test/fixtures/objects/testResultsMultiRunsDefaultMedianMetric.json +++ /dev/null @@ -1,7353 +0,0 @@ -{ - "data": { - "id": "141106_TM_ZFM", - "url": "http://www.google.com", - "summary": "http://www.webpagetest.org/results.php?test=141106_TM_ZFM", - "testUrl": "http://www.google.com", - "location": "Dulles:Chrome", - "from": "Dulles, VA - Chrome - Cable", - "connectivity": "Cable", - "bwDown": 5000, - "bwUp": 1000, - "latency": 28, - "plr": "0", - "completed": 1415298930, - "tester": "IE9104-192.168.101.94", - "testerDNS": "192.168.101.1,192.168.0.1", - "runs": { - "1": { - "firstView": { - "URL": "http://www.google.com", - "loadTime": 2194, - "TTFB": 749, - "bytesOut": 7722, - "bytesOutDoc": 6845, - "bytesIn": 406739, - "bytesInDoc": 388800, - "connections": 5, - "requests": [ - { - "ip_addr": "74.125.225.81", - "method": "GET", - "host": "www.google.com", - "url": "/", - "responseCode": "302", - "load_ms": "117", - "ttfb_ms": "117", - "load_start": "49", - "bytesOut": "342", - "bytesIn": "1044", - "objectSize": "231", - "cacheControl": "private", - "contentType": "text/html", - "type": "3", - "socket": "25", - "score_cache": "0", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "0", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "49", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "server_rtt": "49", - "client_port": "64165", - "jpeg_scan_count": "0", - "full_url": "http://www.google.com/", - "score_progressive_jpeg": -1, - "load_end": 166, - "ttfb_start": "49", - "ttfb_end": 166, - "download_start": 166, - "download_end": 166, - "download_ms": 0, - "all_start": "49", - "all_end": 166, - "all_ms": "117", - "headers": { - "request": [ - "GET / HTTP/1.1", - "Host: www.google.com", - "Connection: keep-alive", - "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36 PTST/191", - "Accept-Encoding: gzip,deflate,sdch", - "Accept-Language: en-US,en;q=0.8" - ], - "response": [ - "HTTP/1.1 302 Found", - "Location: https://www.google.com/?gws_rd=ssl", - "Cache-Control: private", - "Content-Type: text/html; charset=UTF-8", - "Set-Cookie: PREF=ID=b728500ce0ca065c:FF=0:TM=1415298912:LM=1415298912:S=zh8V8B9SxIDho86-; expires=Sat, 05-Nov-2016 18:35:12 GMT; path=/; domain=.google.com", - "Set-Cookie: NID=67=hig1z6hORww_j-ZirykxFzF_QOsE5U-cSRBt-4Z9KlUACPm1wi_4daX4WSVBI-NvWrtsBV-sBmZ9nQFBVzooWg545tAJDZybR5D6RRNI3-AsppdAXhKMas9gxZI96dhQ; expires=Fri, 08-May-2015 18:35:12 GMT; path=/; domain=.google.com; HttpOnly", - "P3P: CP=\"This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info.\"", - "Date: Thu, 06 Nov 2014 18:35:12 GMT", - "Server: gws", - "Content-Length: 231", - "X-XSS-Protection: 1; mode=block", - "X-Frame-Options: SAMEORIGIN", - "Alternate-Protocol: 80:quic,p=0.01" - ] - }, - "index": 0, - "number": 1 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/?gws_rd=ssl", - "responseCode": "200", - "load_ms": "460", - "ttfb_ms": "383", - "load_start": "366", - "bytesOut": "254", - "bytesIn": "57605", - "objectSize": "0", - "expires": "-1", - "cacheControl": "private, max-age=0", - "contentType": "text/html", - "contentEncoding": "gzip", - "type": "3", - "socket": "261", - "score_cache": "-1", - "score_cdn": "-1", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 0, - "connect_ms": 36, - "ssl_ms": 127, - "gzip_total": "799", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "-1", - "cdn_provider": "Google", - "dns_start": "202", - "dns_end": "202", - "connect_start": "202", - "connect_end": "238", - "ssl_start": "238", - "ssl_end": "365", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/?gws_rd=ssl", - "score_progressive_jpeg": -1, - "load_end": 826, - "ttfb_start": "366", - "ttfb_end": 749, - "download_start": 749, - "download_end": 826, - "download_ms": 77, - "all_start": "202", - "all_end": 826, - "all_ms": 623, - "headers": { - "request": [ - "GET /?gws_rd=ssl HTTP/1.1", - "Host: www.google.com", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=0", - "content-encoding: gzip", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:35:12 GMT", - "expires: -1", - "p3p: CP=\"This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info.\"", - "server: gws", - "set-cookie: PREF=ID=b728500ce0ca065c:U=ffc0fb4c40c98be0:FF=0:TM=1415298912:LM=1415298912:S=OZ50oqzyGSXCcI0w; expires=Sat, 05-Nov-2016 18:35:12 GMT; path=/; domain=.google.com", - "NID=67=mGg_6DOdS_TuKOXz3CFTdCqjkNEP5o91Wbh0WdZ_JxJcHjw-kkoHDdpMAR57vwg4sPriwQXK1O5K-_Zy3S4KOUtOCmqwvgLA0eh_VuulzoWlmaWFu6DQaafCJsJAk7ka; expires=Fri, 08-May-2015 18:35:12 GMT; path=/; domain=.google.com; HttpOnly", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 1, - "number": 2 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/images/srpr/logo11w.png", - "responseCode": "200", - "load_ms": "117", - "ttfb_ms": "70", - "load_start": "998", - "bytesOut": "330", - "bytesIn": "16919", - "objectSize": "0", - "expires": "Thu, 06 Nov 2014 18:35:13 GMT", - "cacheControl": "private, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "261", - "score_cache": "0", - "score_cdn": "100", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/?gws_rd=ssl", - "initiator_line": "28", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/images/srpr/logo11w.png", - "score_progressive_jpeg": -1, - "load_end": 1115, - "ttfb_start": "998", - "ttfb_end": 1068, - "download_start": 1068, - "download_end": 1115, - "download_ms": 47, - "all_start": "998", - "all_end": 1115, - "all_ms": "117", - "headers": { - "request": [ - "GET /images/srpr/logo11w.png HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=31536000", - "content-length: 14022", - "content-type: image/png", - "date: Thu, 06 Nov 2014 18:35:13 GMT", - "expires: Thu, 06 Nov 2014 18:35:13 GMT", - "last-modified: Wed, 09 Oct 2013 01:35:39 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 2, - "number": 3 - }, - { - "method": "GET", - "host": "ssl.gstatic.com", - "url": "/gb/images/i1_71651352.png", - "responseCode": "200", - "load_ms": "81", - "ttfb_ms": "45", - "load_start": "1097", - "bytesOut": "333", - "bytesIn": "14285", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 15:23:35 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "336", - "score_cache": "100", - "score_cdn": "0", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 0, - "connect_ms": 37, - "ssl_ms": 66, - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "dns_start": "993", - "dns_end": "993", - "connect_start": "993", - "connect_end": "1030", - "ssl_start": "1030", - "ssl_end": "1096", - "initiator": "https://www.google.com/?gws_rd=ssl", - "initiator_line": "76", - "initiator_column": "35", - "server_count": "4", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://ssl.gstatic.com/gb/images/i1_71651352.png", - "score_progressive_jpeg": -1, - "load_end": 1178, - "ttfb_start": "1097", - "ttfb_end": 1142, - "download_start": 1142, - "download_end": 1178, - "download_ms": 36, - "all_start": "993", - "all_end": 1178, - "all_ms": 184, - "headers": { - "request": [ - "GET /gb/images/i1_71651352.png HTTP/1.1", - "Host: ssl.gstatic.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 97898", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-length: 14055", - "content-type: image/png", - "date: Wed, 05 Nov 2014 15:23:35 GMT", - "expires: Thu, 05 Nov 2015 15:23:35 GMT", - "last-modified: Thu, 16 Oct 2014 18:20:30 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 3, - "number": 4 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "responseCode": "200", - "load_ms": "346", - "ttfb_ms": "99", - "load_start": "1123", - "bytesOut": "443", - "bytesIn": "180939", - "objectSize": "0", - "expires": "Fri, 06 Nov 2015 11:13:26 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "261", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "429", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/?gws_rd=ssl", - "initiator_line": "94", - "initiator_column": "17237", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "score_progressive_jpeg": -1, - "load_end": 1469, - "ttfb_start": "1123", - "ttfb_end": 1222, - "download_start": 1222, - "download_end": 1469, - "download_ms": 247, - "all_start": "1123", - "all_end": 1469, - "all_ms": "346", - "headers": { - "request": [ - "GET /xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP/1.1", - "Host: www.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 26507", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 130931", - "content-type: text/javascript; charset=UTF-8", - "date: Thu, 06 Nov 2014 11:13:26 GMT", - "expires: Fri, 06 Nov 2015 11:13:26 GMT", - "last-modified: Tue, 04 Nov 2014 19:30:26 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 4, - "number": 5 - }, - { - "method": "GET", - "host": "www.gstatic.com", - "url": "/og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w", - "responseCode": "200", - "load_ms": "317", - "ttfb_ms": "316", - "load_start": "1310", - "bytesOut": "392", - "bytesIn": "184146", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 13:04:24 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "392", - "score_cache": "100", - "score_cdn": "0", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 57, - "connect_ms": 39, - "ssl_ms": 64, - "gzip_total": "429", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "dns_start": "1149", - "dns_end": "1206", - "connect_start": "1206", - "connect_end": "1245", - "ssl_start": "1245", - "ssl_end": "1309", - "initiator": "https://www.google.com/?gws_rd=ssl", - "initiator_line": "57", - "initiator_column": "143", - "server_count": "4", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.gstatic.com/og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w", - "score_progressive_jpeg": -1, - "load_end": 1627, - "ttfb_start": "1310", - "ttfb_end": 1626, - "download_start": 1626, - "download_end": 1627, - "download_ms": 1, - "all_start": "1149", - "all_end": 1627, - "all_ms": 477, - "headers": { - "request": [ - "GET /og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w HTTP/1.1", - "Host: www.gstatic.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 106249", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 55207", - "content-type: text/javascript; charset=UTF-8", - "date: Wed, 05 Nov 2014 13:04:24 GMT", - "expires: Thu, 05 Nov 2015 13:04:24 GMT", - "last-modified: Tue, 04 Nov 2014 01:19:09 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 5, - "number": 6 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm/am=lKj_TwWDwIxAARMQrA4/rt=j/d=0/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "responseCode": "200", - "load_ms": "130", - "ttfb_ms": "57", - "load_start": "1618", - "bytesOut": "682", - "bytesIn": "58844", - "objectSize": "0", - "expires": "Fri, 06 Nov 2015 12:08:37 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "261", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "428", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "initiator_line": "101", - "initiator_column": "112", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm/am=lKj_TwWDwIxAARMQrA4/rt=j/d=0/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "score_progressive_jpeg": -1, - "load_end": 1748, - "ttfb_start": "1618", - "ttfb_end": 1675, - "download_start": 1675, - "download_end": 1748, - "download_ms": 73, - "all_start": "1618", - "all_end": 1748, - "all_ms": "130", - "headers": { - "request": [ - "GET /xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm/am=lKj_TwWDwIxAARMQrA4/rt=j/d=0/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP/1.1", - "Host: www.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 23196", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 48157", - "content-type: text/javascript; charset=UTF-8", - "date: Thu, 06 Nov 2014 12:08:37 GMT", - "expires: Fri, 06 Nov 2015 12:08:37 GMT", - "last-modified: Tue, 04 Nov 2014 19:30:26 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 6, - "number": 7 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/textinputassistant/tia.png", - "responseCode": "200", - "load_ms": "231", - "ttfb_ms": "224", - "load_start": "1620", - "bytesOut": "333", - "bytesIn": "485", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 06:57:32 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "261", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/?gws_rd=ssl", - "initiator_line": "1", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/textinputassistant/tia.png", - "score_progressive_jpeg": -1, - "load_end": 1851, - "ttfb_start": "1620", - "ttfb_end": 1844, - "download_start": 1844, - "download_end": 1851, - "download_ms": 7, - "all_start": "1620", - "all_end": 1851, - "all_ms": "231", - "headers": { - "request": [ - "GET /textinputassistant/tia.png HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 128261", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-length: 387", - "content-type: image/png", - "date: Wed, 05 Nov 2014 06:57:32 GMT", - "expires: Thu, 05 Nov 2015 06:57:32 GMT", - "last-modified: Mon, 02 Apr 2012 02:13:37 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 7, - "number": 8 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/extern_chrome/854094c746d4c9a.js?bav=on.2,or.r_qf.", - "responseCode": "200", - "load_ms": "230", - "ttfb_ms": "227", - "load_start": "1622", - "bytesOut": "340", - "bytesIn": "36586", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 00:00:00 GMT", - "cacheControl": "private", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "261", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "422", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31382687", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "initiator_line": "1187", - "initiator_column": "181", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/extern_chrome/854094c746d4c9a.js?bav=on.2,or.r_qf.", - "score_progressive_jpeg": -1, - "load_end": 1852, - "ttfb_start": "1622", - "ttfb_end": 1849, - "download_start": 1849, - "download_end": 1852, - "download_ms": 3, - "all_start": "1622", - "all_end": 1852, - "all_ms": "230", - "headers": { - "request": [ - "GET /extern_chrome/854094c746d4c9a.js?bav=on.2,or.r_qf. HTTP/1.1", - "Host: www.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private", - "content-disposition: attachment; filename=\"f.txt\"", - "content-encoding: gzip", - "content-length: 13825", - "content-type: text/javascript; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:35:13 GMT", - "expires: Thu, 05 Nov 2015 00:00:00 GMT", - "last-modified: Thu, 07 Nov 2013 00:00:00 GMT", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 8, - "number": 9 - }, - { - "method": "GET", - "host": "apis.google.com", - "url": "/_/scs/abc-static/_/js/k=gapi.gapi.en.3_mJ9Wvc9FU.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg/cb=gapi.loaded_0", - "responseCode": "200", - "load_ms": "113", - "ttfb_ms": "49", - "load_start": "1981", - "bytesOut": "456", - "bytesIn": "49179", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 15:23:35 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "476", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 32, - "connect_ms": 36, - "ssl_ms": 62, - "gzip_total": "428", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "1851", - "dns_end": "1883", - "connect_start": "1883", - "connect_end": "1919", - "ssl_start": "1919", - "ssl_end": "1981", - "initiator": "https://www.gstatic.com/og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w", - "initiator_line": "138", - "initiator_column": "381", - "server_count": "11", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://apis.google.com/_/scs/abc-static/_/js/k=gapi.gapi.en.3_mJ9Wvc9FU.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg/cb=gapi.loaded_0", - "score_progressive_jpeg": -1, - "load_end": 2094, - "ttfb_start": "1981", - "ttfb_end": 2030, - "download_start": 2030, - "download_end": 2094, - "download_ms": 64, - "all_start": "1851", - "all_end": 2094, - "all_ms": 243, - "headers": { - "request": [ - "GET /_/scs/abc-static/_/js/k=gapi.gapi.en.3_mJ9Wvc9FU.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg/cb=gapi.loaded_0 HTTP/1.1", - "Host: apis.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 97899", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 48911", - "content-type: text/javascript; charset=UTF-8", - "date: Wed, 05 Nov 2014 15:23:35 GMT", - "expires: Thu, 05 Nov 2015 15:23:35 GMT", - "last-modified: Thu, 16 Oct 2014 07:30:29 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 9, - "number": 10 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/images/nav_logo195.png", - "responseCode": "200", - "load_ms": "86", - "ttfb_ms": "70", - "load_start": "2214", - "bytesOut": "329", - "bytesIn": "16300", - "objectSize": "0", - "expires": "Thu, 06 Nov 2014 18:35:14 GMT", - "cacheControl": "private, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "261", - "score_cache": "0", - "score_cdn": "100", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/images/nav_logo195.png", - "score_progressive_jpeg": -1, - "load_end": 2300, - "ttfb_start": "2214", - "ttfb_end": 2284, - "download_start": 2284, - "download_end": 2300, - "download_ms": 16, - "all_start": "2214", - "all_end": 2300, - "all_ms": "86", - "headers": { - "request": [ - "GET /images/nav_logo195.png HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=31536000", - "content-length: 16214", - "content-type: image/png", - "date: Thu, 06 Nov 2014 18:35:14 GMT", - "expires: Thu, 06 Nov 2014 18:35:14 GMT", - "last-modified: Wed, 21 May 2014 00:02:44 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 10, - "number": 11 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=YL9bVP6qJ5DuoAS6x4KwCg&e=3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.83.28.sb.49.p.12.m.8.spch.6.imap.2&action=&srt=3895&p=s&npn=1&rt=xjsls.34,prt.35,xjses.575,xjsee.725,xjs.764,ol.1332,iml.258,wsrt.857,cst.163,dnst.0,rqst.460,rspt.77", - "responseCode": "204", - "load_ms": "119", - "ttfb_ms": "118", - "load_start": "2217", - "bytesOut": "844", - "bytesIn": "251", - "objectSize": "0", - "contentType": "text/html", - "type": "3", - "socket": "261", - "score_cache": "0", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=YL9bVP6qJ5DuoAS6x4KwCg&e=3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.83.28.sb.49.p.12.m.8.spch.6.imap.2&action=&srt=3895&p=s&npn=1&rt=xjsls.34,prt.35,xjses.575,xjsee.725,xjs.764,ol.1332,iml.258,wsrt.857,cst.163,dnst.0,rqst.460,rspt.77", - "score_progressive_jpeg": -1, - "load_end": 2336, - "ttfb_start": "2217", - "ttfb_end": 2335, - "download_start": 2335, - "download_end": 2336, - "download_ms": 1, - "all_start": "2217", - "all_end": 2336, - "all_ms": "119", - "headers": { - "request": [ - "GET /gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=YL9bVP6qJ5DuoAS6x4KwCg&e=3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.83.28.sb.49.p.12.m.8.spch.6.imap.2&action=&srt=3895&p=s&npn=1&rt=xjsls.34,prt.35,xjses.575,xjsee.725,xjs.764,ol.1332,iml.258,wsrt.857,cst.163,dnst.0,rqst.460,rspt.77 HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F" - ], - "response": [ - "HTTP/1.1 204 No Content", - "alternate-protocol: 443:quic,p=0.01", - "content-length: 0", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:35:14 GMT", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 11, - "number": 12 - } - ], - "requestsDoc": 10, - "responses_200": 10, - "responses_404": 0, - "responses_other": 1, - "result": 0, - "render": 1097, - "fullyLoaded": 2336, - "cached": 0, - "docTime": 2194, - "domTime": 0, - "score_cache": 63, - "score_cdn": 77, - "score_gzip": 100, - "score_cookies": -1, - "score_keep-alive": 100, - "score_minify": -1, - "score_combine": 100, - "score_compress": -1, - "score_etags": -1, - "gzip_total": 2935, - "gzip_savings": 0, - "minify_total": 0, - "minify_savings": 0, - "image_total": 0, - "image_savings": 0, - "optimization_checked": 1, - "aft": 0, - "domElements": 288, - "pageSpeedVersion": "1.9", - "title": "Google", - "titleTime": 1096, - "loadEventStart": 2185, - "loadEventEnd": 2193, - "domContentLoadedEventStart": 892, - "domContentLoadedEventEnd": 945, - "lastVisualChange": 0, - "browser_name": "Google Chrome", - "browser_version": "38.0.2125.111", - "server_count": 5, - "server_rtt": 0, - "base_page_cdn": "Google", - "adult_site": 0, - "fixed_viewport": 0, - "score_progressive_jpeg": -1, - "firstPaint": 0, - "docCPUms": 1528.81, - "fullyLoadedCPUms": 2074.813, - "docCPUpct": 69, - "fullyLoadedCPUpct": 47, - "isResponsive": -1, - "date": 1415298675, - "CSI": [ - "v", - "s", - "imc", - "imn", - "imp", - "ei", - "e", - "atyp", - "adh", - "xjs", - "action", - "srt", - "p", - "npn", - "rt", - "xjsls", - "prt", - "xjses", - "xjsee", - "ol", - "iml", - "wsrt", - "cst", - "dnst", - "rqst", - "rspt" - ], - "CSI.v": 3, - "CSI.s": "webhp", - "CSI.imc": 1, - "CSI.imn": 1, - "CSI.imp": 1, - "CSI.ei": "YL9bVP6qJ5DuoAS6x4KwCg", - "CSI.e": "3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743", - "CSI.atyp": "csi", - "CSI.adh": "", - "CSI.xjs": 764, - "CSI.action": "", - "CSI.srt": 3895, - "CSI.p": "s", - "CSI.npn": 1, - "CSI.rt": "xjsls.34,prt.35,xjses.575,xjsee.725,xjs.764,ol.1332,iml.258,wsrt.857,cst.163,dnst.0,rqst.460,rspt.77", - "CSI.xjsls": 34, - "CSI.prt": 35, - "CSI.xjses": 575, - "CSI.xjsee": 725, - "CSI.ol": 1332, - "CSI.iml": 258, - "CSI.wsrt": 857, - "CSI.cst": 163, - "CSI.dnst": 0, - "CSI.rqst": 460, - "CSI.rspt": 77, - "SpeedIndex": 0, - "visualComplete": 0, - "run": 1, - "effectiveBps": 256294, - "effectiveBpsDoc": 269065, - "tester": "IE9104-192.168.101.94", - "pages": { - "details": "http://www.webpagetest.org/details.php?test=141106_TM_ZFM&run=1&cached=0", - "checklist": "http://www.webpagetest.org/performance_optimization.php?test=141106_TM_ZFM&run=1&cached=0", - "breakdown": "http://www.webpagetest.org/breakdown.php?test=141106_TM_ZFM&run=1&cached=0", - "domains": "http://www.webpagetest.org/domains.php?test=141106_TM_ZFM&run=1&cached=0", - "screenShot": "http://www.webpagetest.org/screen_shot.php?test=141106_TM_ZFM&run=1&cached=0" - }, - "thumbnails": { - "waterfall": "http://www.webpagetest.org/result/141106_TM_ZFM/1_waterfall_thumb.png", - "checklist": "http://www.webpagetest.org/result/141106_TM_ZFM/1_optimization_thumb.png", - "screenShot": "http://www.webpagetest.org/result/141106_TM_ZFM/1_screen_thumb.png" - }, - "images": { - "waterfall": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_waterfall.png", - "connectionView": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_connection.png", - "checklist": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_optimization.png", - "screenShot": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_screen.jpg" - }, - "rawData": { - "headers": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_report.txt", - "pageData": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_IEWPG.txt", - "requestsData": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_IEWTR.txt", - "utilization": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_progress.csv" - }, - "videoFrames": [ - { - "time": 0, - "image": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/video_1/frame_0000.jpg", - "VisuallyComplete": 100 - } - ], - "domains": { - "moc.elgoog.www": { - "bytes": 368973, - "requests": 9, - "connections": 2 - }, - "moc.citatsg.lss": { - "bytes": 14285, - "requests": 1, - "connections": 1 - }, - "moc.citatsg.www": { - "bytes": 184146, - "requests": 1, - "connections": 1 - }, - "moc.elgoog.sipa": { - "bytes": 49179, - "requests": 1, - "connections": 1 - } - }, - "breakdown": { - "html": { - "color": [ - 130, - 181, - 252 - ], - "bytes": 58900, - "requests": 3 - }, - "js": { - "color": [ - 254, - 197, - 132 - ], - "bytes": 509694, - "requests": 5 - }, - "css": { - "color": [ - 178, - 234, - 148 - ], - "bytes": 0, - "requests": 0 - }, - "image": { - "color": [ - 196, - 154, - 232 - ], - "bytes": 47989, - "requests": 4 - }, - "flash": { - "color": [ - 45, - 183, - 193 - ], - "bytes": 0, - "requests": 0 - }, - "font": { - "color": [ - 255, - 82, - 62 - ], - "bytes": 0, - "requests": 0 - }, - "other": { - "color": [ - 196, - 196, - 196 - ], - "bytes": 0, - "requests": 0 - } - } - }, - "repeatView": { - "URL": "http://www.google.com", - "loadTime": 1352, - "TTFB": 505, - "bytesOut": 9302, - "bytesOutDoc": 8740, - "bytesIn": 85557, - "bytesInDoc": 85430, - "connections": 2, - "requests": [ - { - "ip_addr": "74.125.225.81", - "method": "GET", - "host": "www.google.com", - "url": "/", - "responseCode": "302", - "load_ms": "156", - "ttfb_ms": "156", - "load_start": "62", - "bytesOut": "584", - "bytesIn": "532", - "objectSize": "231", - "cacheControl": "private", - "contentType": "text/html", - "type": "3", - "socket": "15", - "score_cache": "0", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "0", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "61", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "server_rtt": "60", - "client_port": "64227", - "jpeg_scan_count": "0", - "full_url": "http://www.google.com/", - "score_progressive_jpeg": -1, - "load_end": 218, - "ttfb_start": "62", - "ttfb_end": 218, - "download_start": 218, - "download_end": 218, - "download_ms": 0, - "all_start": "62", - "all_end": 218, - "all_ms": "156", - "headers": { - "request": [ - "GET / HTTP/1.1", - "Host: www.google.com", - "Connection: keep-alive", - "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36 PTST/191", - "Accept-Encoding: gzip,deflate,sdch", - "Accept-Language: en-US,en;q=0.8", - "Cookie: PREF=ID=b728500ce0ca065c:U=ffc0fb4c40c98be0:FF=0:TM=1415298912:LM=1415298912:S=OZ50oqzyGSXCcI0w; NID=67=mGg_6DOdS_TuKOXz3CFTdCqjkNEP5o91Wbh0WdZ_JxJcHjw-kkoHDdpMAR57vwg4sPriwQXK1O5K-_Zy3S4KOUtOCmqwvgLA0eh_VuulzoWlmaWFu6DQaafCJsJAk7ka" - ], - "response": [ - "HTTP/1.1 302 Found", - "Location: https://www.google.com/?gws_rd=ssl", - "Cache-Control: private", - "Content-Type: text/html; charset=UTF-8", - "Date: Thu, 06 Nov 2014 18:35:24 GMT", - "Server: gws", - "Content-Length: 231", - "X-XSS-Protection: 1; mode=block", - "X-Frame-Options: SAMEORIGIN", - "Alternate-Protocol: 80:quic,p=0.01" - ] - }, - "index": 0, - "number": 1 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/?gws_rd=ssl", - "responseCode": "200", - "load_ms": "265", - "ttfb_ms": "190", - "load_start": "315", - "bytesOut": "254", - "bytesIn": "63195", - "objectSize": "0", - "expires": "-1", - "cacheControl": "private, max-age=0", - "contentType": "text/html", - "contentEncoding": "gzip", - "type": "3", - "socket": "149", - "score_cache": "-1", - "score_cdn": "-1", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 0, - "connect_ms": 0, - "ssl_ms": 55, - "gzip_total": "280", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "-1", - "cdn_provider": "Google", - "dns_start": "259", - "dns_end": "259", - "connect_start": "259", - "connect_end": "259", - "ssl_start": "259", - "ssl_end": "314", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/?gws_rd=ssl", - "score_progressive_jpeg": -1, - "load_end": 580, - "ttfb_start": "315", - "ttfb_end": 505, - "download_start": 505, - "download_end": 580, - "download_ms": 75, - "all_start": "259", - "all_end": 580, - "all_ms": 320, - "headers": { - "request": [ - "GET /?gws_rd=ssl HTTP/1.1", - "Host: www.google.com", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 67027B33-8010-4675-92E8-A02F9E86437E" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=0", - "content-encoding: gzip", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:35:24 GMT", - "expires: -1", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 1, - "number": 2 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=bL9bVJrPJcP8oQSom4LwBg&e=3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.73.28.sb.45.p.12.spch.6.imap.2.m.2&action=&srt=3646&p=s&npn=1&rt=xjsls.39,prt.40,xjses.237,xjsee.420,xjs.470,ol.764,iml.172,wsrt.605,cst.55,dnst.0,rqst.265,rspt.74", - "responseCode": "204", - "load_ms": "108", - "ttfb_ms": "105", - "load_start": "1383", - "bytesOut": "842", - "bytesIn": "251", - "objectSize": "0", - "contentType": "text/html", - "type": "3", - "socket": "149", - "score_cache": "0", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=bL9bVJrPJcP8oQSom4LwBg&e=3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.73.28.sb.45.p.12.spch.6.imap.2.m.2&action=&srt=3646&p=s&npn=1&rt=xjsls.39,prt.40,xjses.237,xjsee.420,xjs.470,ol.764,iml.172,wsrt.605,cst.55,dnst.0,rqst.265,rspt.74", - "score_progressive_jpeg": -1, - "load_end": 1491, - "ttfb_start": "1383", - "ttfb_end": 1488, - "download_start": 1488, - "download_end": 1491, - "download_ms": 3, - "all_start": "1383", - "all_end": 1491, - "all_ms": "108", - "headers": { - "request": [ - "GET /gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=bL9bVJrPJcP8oQSom4LwBg&e=3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.73.28.sb.45.p.12.spch.6.imap.2.m.2&action=&srt=3646&p=s&npn=1&rt=xjsls.39,prt.40,xjses.237,xjsee.420,xjs.470,ol.764,iml.172,wsrt.605,cst.55,dnst.0,rqst.265,rspt.74 HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 67027B33-8010-4675-92E8-A02F9E86437E" - ], - "response": [ - "HTTP/1.1 204 No Content", - "alternate-protocol: 443:quic,p=0.01", - "content-length: 0", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:35:25 GMT", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 2, - "number": 3 - } - ], - "requestsDoc": 2, - "responses_200": 1, - "responses_404": 0, - "responses_other": 1, - "result": 0, - "render": 792, - "fullyLoaded": 1491, - "cached": 1, - "docTime": 1352, - "domTime": 0, - "score_cache": 0, - "score_cdn": -1, - "score_gzip": 100, - "score_cookies": -1, - "score_keep-alive": 100, - "score_minify": -1, - "score_combine": 100, - "score_compress": -1, - "score_etags": -1, - "gzip_total": 280, - "gzip_savings": 0, - "minify_total": 0, - "minify_savings": 0, - "image_total": 0, - "image_savings": 0, - "optimization_checked": 1, - "aft": 0, - "domElements": 288, - "pageSpeedVersion": "1.9", - "title": "Google", - "titleTime": 691, - "loadEventStart": 1347, - "loadEventEnd": 1378, - "domContentLoadedEventStart": 646, - "domContentLoadedEventEnd": 700, - "lastVisualChange": 0, - "browser_name": "Google Chrome", - "browser_version": "38.0.2125.111", - "server_count": 5, - "server_rtt": 0, - "base_page_cdn": "Google", - "adult_site": 0, - "fixed_viewport": 0, - "score_progressive_jpeg": -1, - "firstPaint": 0, - "docCPUms": 1185.608, - "fullyLoadedCPUms": 1638.011, - "docCPUpct": 87, - "fullyLoadedCPUpct": 45, - "isResponsive": -1, - "date": 1415298687, - "CSI": [ - "v", - "s", - "imc", - "imn", - "imp", - "ei", - "e", - "atyp", - "adh", - "xjs", - "action", - "srt", - "p", - "npn", - "rt", - "xjsls", - "prt", - "xjses", - "xjsee", - "ol", - "iml", - "wsrt", - "cst", - "dnst", - "rqst", - "rspt" - ], - "CSI.v": 3, - "CSI.s": "webhp", - "CSI.imc": 1, - "CSI.imn": 1, - "CSI.imp": 1, - "CSI.ei": "bL9bVJrPJcP8oQSom4LwBg", - "CSI.e": "3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743", - "CSI.atyp": "csi", - "CSI.adh": "", - "CSI.xjs": 470, - "CSI.action": "", - "CSI.srt": 3646, - "CSI.p": "s", - "CSI.npn": 1, - "CSI.rt": "xjsls.39,prt.40,xjses.237,xjsee.420,xjs.470,ol.764,iml.172,wsrt.605,cst.55,dnst.0,rqst.265,rspt.74", - "CSI.xjsls": 39, - "CSI.prt": 40, - "CSI.xjses": 237, - "CSI.xjsee": 420, - "CSI.ol": 764, - "CSI.iml": 172, - "CSI.wsrt": 605, - "CSI.cst": 55, - "CSI.dnst": 0, - "CSI.rqst": 265, - "CSI.rspt": 74, - "SpeedIndex": 0, - "visualComplete": 0, - "run": 1, - "effectiveBps": 86771, - "effectiveBpsDoc": 100861, - "tester": "IE9104-192.168.101.94", - "pages": { - "details": "http://www.webpagetest.org/details.php?test=141106_TM_ZFM&run=1&cached=1", - "checklist": "http://www.webpagetest.org/performance_optimization.php?test=141106_TM_ZFM&run=1&cached=1", - "breakdown": "http://www.webpagetest.org/breakdown.php?test=141106_TM_ZFM&run=1&cached=1", - "domains": "http://www.webpagetest.org/domains.php?test=141106_TM_ZFM&run=1&cached=1", - "screenShot": "http://www.webpagetest.org/screen_shot.php?test=141106_TM_ZFM&run=1&cached=1" - }, - "thumbnails": { - "waterfall": "http://www.webpagetest.org/result/141106_TM_ZFM/1_Cached_waterfall_thumb.png", - "checklist": "http://www.webpagetest.org/result/141106_TM_ZFM/1_Cached_optimization_thumb.png", - "screenShot": "http://www.webpagetest.org/result/141106_TM_ZFM/1_Cached_screen_thumb.png" - }, - "images": { - "waterfall": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_Cached_waterfall.png", - "connectionView": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_Cached_connection.png", - "checklist": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_Cached_optimization.png", - "screenShot": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_Cached_screen.jpg" - }, - "rawData": { - "headers": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_Cached_report.txt", - "pageData": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_Cached_IEWPG.txt", - "requestsData": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_Cached_IEWTR.txt", - "utilization": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_Cached_progress.csv" - }, - "videoFrames": [ - { - "time": 0, - "image": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/video_1_cached/frame_0000.jpg", - "VisuallyComplete": 100 - } - ], - "domains": { - "moc.elgoog.www": { - "bytes": 63978, - "requests": 3, - "connections": 2 - } - }, - "breakdown": { - "html": { - "color": [ - 130, - 181, - 252 - ], - "bytes": 63978, - "requests": 3 - }, - "js": { - "color": [ - 254, - 197, - 132 - ], - "bytes": 0, - "requests": 0 - }, - "css": { - "color": [ - 178, - 234, - 148 - ], - "bytes": 0, - "requests": 0 - }, - "image": { - "color": [ - 196, - 154, - 232 - ], - "bytes": 0, - "requests": 0 - }, - "flash": { - "color": [ - 45, - 183, - 193 - ], - "bytes": 0, - "requests": 0 - }, - "font": { - "color": [ - 255, - 82, - 62 - ], - "bytes": 0, - "requests": 0 - }, - "other": { - "color": [ - 196, - 196, - 196 - ], - "bytes": 0, - "requests": 0 - } - } - } - }, - "2": { - "firstView": { - "URL": "http://www.google.com", - "loadTime": 2406, - "TTFB": 513, - "bytesOut": 7009, - "bytesOutDoc": 6145, - "bytesIn": 402324, - "bytesInDoc": 384415, - "connections": 4, - "requests": [ - { - "ip_addr": "74.125.225.80", - "method": "GET", - "host": "www.google.com", - "url": "/", - "responseCode": "302", - "load_ms": "110", - "ttfb_ms": "110", - "load_start": "49", - "bytesOut": "342", - "bytesIn": "1044", - "objectSize": "231", - "cacheControl": "private", - "contentType": "text/html", - "type": "3", - "socket": "25", - "score_cache": "0", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "0", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "49", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "server_rtt": "49", - "client_port": "51813", - "jpeg_scan_count": "0", - "full_url": "http://www.google.com/", - "score_progressive_jpeg": -1, - "load_end": 159, - "ttfb_start": "49", - "ttfb_end": 159, - "download_start": 159, - "download_end": 159, - "download_ms": 0, - "all_start": "49", - "all_end": 159, - "all_ms": "110", - "headers": { - "request": [ - "GET / HTTP/1.1", - "Host: www.google.com", - "Connection: keep-alive", - "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36 PTST/191", - "Accept-Encoding: gzip,deflate,sdch", - "Accept-Language: en-US,en;q=0.8" - ], - "response": [ - "HTTP/1.1 302 Found", - "Location: https://www.google.com/?gws_rd=ssl", - "Cache-Control: private", - "Content-Type: text/html; charset=UTF-8", - "Set-Cookie: PREF=ID=475c491cad4e86aa:FF=0:TM=1415298912:LM=1415298912:S=IZkg6dGDCBeFDHPq; expires=Sat, 05-Nov-2016 18:35:12 GMT; path=/; domain=.google.com", - "Set-Cookie: NID=67=gngiSsHmIvn3lnlMq8_ilS4bsTML-5ZdRj_phVjTIBUS1_uruYjC56tX9cfsIEtsm5aP1A6Oa5AqErk6SQsRFoEoR7SyAbecF76SRDBOarjoyJSNeOruCIShiVA4PUz9; expires=Fri, 08-May-2015 18:35:12 GMT; path=/; domain=.google.com; HttpOnly", - "P3P: CP=\"This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info.\"", - "Date: Thu, 06 Nov 2014 18:35:12 GMT", - "Server: gws", - "Content-Length: 231", - "X-XSS-Protection: 1; mode=block", - "X-Frame-Options: SAMEORIGIN", - "Alternate-Protocol: 80:quic,p=0.01" - ] - }, - "index": 0, - "number": 1 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/?gws_rd=ssl", - "responseCode": "200", - "load_ms": "305", - "ttfb_ms": "181", - "load_start": "332", - "bytesOut": "254", - "bytesIn": "52324", - "objectSize": "0", - "expires": "-1", - "cacheControl": "private, max-age=0", - "contentType": "text/html", - "contentEncoding": "gzip", - "type": "3", - "socket": "255", - "score_cache": "-1", - "score_cdn": "-1", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 0, - "connect_ms": 43, - "ssl_ms": 99, - "gzip_total": "799", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "-1", - "cdn_provider": "Google", - "dns_start": "190", - "dns_end": "190", - "connect_start": "190", - "connect_end": "233", - "ssl_start": "233", - "ssl_end": "332", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/?gws_rd=ssl", - "score_progressive_jpeg": -1, - "load_end": 637, - "ttfb_start": "332", - "ttfb_end": 513, - "download_start": 513, - "download_end": 637, - "download_ms": 124, - "all_start": "190", - "all_end": 637, - "all_ms": 447, - "headers": { - "request": [ - "GET /?gws_rd=ssl HTTP/1.1", - "Host: www.google.com", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=0", - "content-encoding: gzip", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:35:12 GMT", - "expires: -1", - "p3p: CP=\"This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info.\"", - "server: gws", - "set-cookie: PREF=ID=475c491cad4e86aa:U=d2f3b954c35bcd9b:FF=0:TM=1415298912:LM=1415298912:S=lV95Ue2bqUmiPbk5; expires=Sat, 05-Nov-2016 18:35:12 GMT; path=/; domain=.google.com", - "NID=67=FxZ3TVYsJlTtvVnmerGAmxHaZlZTz5A31FZWPSd1rO1IWsQQNoRhmBSazKHgNuIyFbSiyrYFhW6OHLe3wfVvB_ZYIKQjZ5yH_Zis-NxQXljm2qIsyFUvNKKpsqhKOv-p; expires=Fri, 08-May-2015 18:35:12 GMT; path=/; domain=.google.com; HttpOnly", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 1, - "number": 2 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/images/srpr/logo11w.png", - "responseCode": "200", - "load_ms": "675", - "ttfb_ms": "674", - "load_start": "943", - "bytesOut": "330", - "bytesIn": "14111", - "objectSize": "0", - "expires": "Thu, 06 Nov 2014 18:35:13 GMT", - "cacheControl": "private, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "255", - "score_cache": "0", - "score_cdn": "100", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/?gws_rd=ssl", - "initiator_line": "28", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/images/srpr/logo11w.png", - "score_progressive_jpeg": -1, - "load_end": 1618, - "ttfb_start": "943", - "ttfb_end": 1617, - "download_start": 1617, - "download_end": 1618, - "download_ms": 1, - "all_start": "943", - "all_end": 1618, - "all_ms": "675", - "headers": { - "request": [ - "GET /images/srpr/logo11w.png HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=31536000", - "content-length: 14022", - "content-type: image/png", - "date: Thu, 06 Nov 2014 18:35:13 GMT", - "expires: Thu, 06 Nov 2014 18:35:13 GMT", - "last-modified: Wed, 09 Oct 2013 01:35:39 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 2, - "number": 3 - }, - { - "method": "GET", - "host": "ssl.gstatic.com", - "url": "/gb/images/i1_71651352.png", - "responseCode": "200", - "load_ms": "92", - "ttfb_ms": "47", - "load_start": "1029", - "bytesOut": "333", - "bytesIn": "14285", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 15:23:35 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "335", - "score_cache": "100", - "score_cdn": "0", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 1, - "connect_ms": 40, - "ssl_ms": 77, - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "dns_start": "910", - "dns_end": "911", - "connect_start": "911", - "connect_end": "951", - "ssl_start": "951", - "ssl_end": "1028", - "initiator": "https://www.google.com/?gws_rd=ssl", - "initiator_line": "76", - "initiator_column": "35", - "server_count": "4", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://ssl.gstatic.com/gb/images/i1_71651352.png", - "score_progressive_jpeg": -1, - "load_end": 1121, - "ttfb_start": "1029", - "ttfb_end": 1076, - "download_start": 1076, - "download_end": 1121, - "download_ms": 45, - "all_start": "910", - "all_end": 1121, - "all_ms": 210, - "headers": { - "request": [ - "GET /gb/images/i1_71651352.png HTTP/1.1", - "Host: ssl.gstatic.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 97898", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-length: 14055", - "content-type: image/png", - "date: Wed, 05 Nov 2014 15:23:35 GMT", - "expires: Thu, 05 Nov 2015 15:23:35 GMT", - "last-modified: Thu, 16 Oct 2014 18:20:30 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 3, - "number": 4 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "responseCode": "200", - "load_ms": "418", - "ttfb_ms": "53", - "load_start": "1095", - "bytesOut": "443", - "bytesIn": "205963", - "objectSize": "0", - "expires": "Fri, 06 Nov 2015 11:13:26 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "255", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "429", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/?gws_rd=ssl", - "initiator_line": "94", - "initiator_column": "17237", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "score_progressive_jpeg": -1, - "load_end": 1513, - "ttfb_start": "1095", - "ttfb_end": 1148, - "download_start": 1148, - "download_end": 1513, - "download_ms": 365, - "all_start": "1095", - "all_end": 1513, - "all_ms": "418", - "headers": { - "request": [ - "GET /xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP/1.1", - "Host: www.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 26507", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 130931", - "content-type: text/javascript; charset=UTF-8", - "date: Thu, 06 Nov 2014 11:13:26 GMT", - "expires: Fri, 06 Nov 2015 11:13:26 GMT", - "last-modified: Tue, 04 Nov 2014 19:30:26 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 4, - "number": 5 - }, - { - "method": "GET", - "host": "www.gstatic.com", - "url": "/og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w", - "responseCode": "200", - "load_ms": "496", - "ttfb_ms": "48", - "load_start": "1121", - "bytesOut": "392", - "bytesIn": "59283", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 15:23:34 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "335", - "score_cache": "100", - "score_cdn": "0", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "428", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/?gws_rd=ssl", - "initiator_line": "57", - "initiator_column": "143", - "server_count": "4", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.gstatic.com/og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w", - "score_progressive_jpeg": -1, - "load_end": 1617, - "ttfb_start": "1121", - "ttfb_end": 1169, - "download_start": 1169, - "download_end": 1617, - "download_ms": 448, - "all_start": "1121", - "all_end": 1617, - "all_ms": "496", - "headers": { - "request": [ - "GET /og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w HTTP/1.1", - "Host: www.gstatic.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 97899", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 55207", - "content-type: text/javascript; charset=UTF-8", - "date: Wed, 05 Nov 2014 15:23:34 GMT", - "expires: Thu, 05 Nov 2015 15:23:34 GMT", - "last-modified: Tue, 04 Nov 2014 01:19:09 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 5, - "number": 6 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm/am=lKj_TwWDwIxAARMQrA4/rt=j/d=0/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "responseCode": "200", - "load_ms": "196", - "ttfb_ms": "57", - "load_start": "1841", - "bytesOut": "682", - "bytesIn": "48334", - "objectSize": "0", - "expires": "Fri, 06 Nov 2015 12:08:37 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "255", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "428", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "initiator_line": "101", - "initiator_column": "112", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm/am=lKj_TwWDwIxAARMQrA4/rt=j/d=0/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "score_progressive_jpeg": -1, - "load_end": 2037, - "ttfb_start": "1841", - "ttfb_end": 1898, - "download_start": 1898, - "download_end": 2037, - "download_ms": 139, - "all_start": "1841", - "all_end": 2037, - "all_ms": "196", - "headers": { - "request": [ - "GET /xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm/am=lKj_TwWDwIxAARMQrA4/rt=j/d=0/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP/1.1", - "Host: www.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 23197", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 48157", - "content-type: text/javascript; charset=UTF-8", - "date: Thu, 06 Nov 2014 12:08:37 GMT", - "expires: Fri, 06 Nov 2015 12:08:37 GMT", - "last-modified: Tue, 04 Nov 2014 19:30:26 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 6, - "number": 7 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/textinputassistant/tia.png", - "responseCode": "200", - "load_ms": "399", - "ttfb_ms": "317", - "load_start": "1846", - "bytesOut": "333", - "bytesIn": "484", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 06:57:32 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "255", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/?gws_rd=ssl", - "initiator_line": "1", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/textinputassistant/tia.png", - "score_progressive_jpeg": -1, - "load_end": 2245, - "ttfb_start": "1846", - "ttfb_end": 2163, - "download_start": 2163, - "download_end": 2245, - "download_ms": 82, - "all_start": "1846", - "all_end": 2245, - "all_ms": "399", - "headers": { - "request": [ - "GET /textinputassistant/tia.png HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 128262", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-length: 387", - "content-type: image/png", - "date: Wed, 05 Nov 2014 06:57:32 GMT", - "expires: Thu, 05 Nov 2015 06:57:32 GMT", - "last-modified: Mon, 02 Apr 2012 02:13:37 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 7, - "number": 8 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/extern_chrome/854094c746d4c9a.js?bav=on.2,or.r_qf.", - "responseCode": "200", - "load_ms": "365", - "ttfb_ms": "361", - "load_start": "1881", - "bytesOut": "340", - "bytesIn": "36579", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 00:00:00 GMT", - "cacheControl": "private", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "255", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "422", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31382686", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "initiator_line": "1187", - "initiator_column": "181", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/extern_chrome/854094c746d4c9a.js?bav=on.2,or.r_qf.", - "score_progressive_jpeg": -1, - "load_end": 2246, - "ttfb_start": "1881", - "ttfb_end": 2242, - "download_start": 2242, - "download_end": 2246, - "download_ms": 4, - "all_start": "1881", - "all_end": 2246, - "all_ms": "365", - "headers": { - "request": [ - "GET /extern_chrome/854094c746d4c9a.js?bav=on.2,or.r_qf. HTTP/1.1", - "Host: www.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private", - "content-disposition: attachment; filename=\"f.txt\"", - "content-encoding: gzip", - "content-length: 13825", - "content-type: text/javascript; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:35:14 GMT", - "expires: Thu, 05 Nov 2015 00:00:00 GMT", - "last-modified: Thu, 07 Nov 2013 00:00:00 GMT", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 8, - "number": 9 - }, - { - "method": "GET", - "host": "apis.google.com", - "url": "/_/scs/abc-static/_/js/k=gapi.gapi.en.3_mJ9Wvc9FU.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg/cb=gapi.loaded_0", - "responseCode": "200", - "load_ms": "184", - "ttfb_ms": "123", - "load_start": "2067", - "bytesOut": "456", - "bytesIn": "156500", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 15:23:35 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "440", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 51, - "connect_ms": 40, - "ssl_ms": 61, - "gzip_total": "428", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "1914", - "dns_end": "1965", - "connect_start": "1965", - "connect_end": "2005", - "ssl_start": "2005", - "ssl_end": "2066", - "initiator": "https://www.gstatic.com/og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w", - "initiator_line": "138", - "initiator_column": "381", - "server_count": "11", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://apis.google.com/_/scs/abc-static/_/js/k=gapi.gapi.en.3_mJ9Wvc9FU.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg/cb=gapi.loaded_0", - "score_progressive_jpeg": -1, - "load_end": 2251, - "ttfb_start": "2067", - "ttfb_end": 2190, - "download_start": 2190, - "download_end": 2251, - "download_ms": 61, - "all_start": "1914", - "all_end": 2251, - "all_ms": 336, - "headers": { - "request": [ - "GET /_/scs/abc-static/_/js/k=gapi.gapi.en.3_mJ9Wvc9FU.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg/cb=gapi.loaded_0 HTTP/1.1", - "Host: apis.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 97899", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 48911", - "content-type: text/javascript; charset=UTF-8", - "date: Wed, 05 Nov 2014 15:23:35 GMT", - "expires: Thu, 05 Nov 2015 15:23:35 GMT", - "last-modified: Thu, 16 Oct 2014 07:30:29 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 9, - "number": 10 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/images/nav_logo195.png", - "responseCode": "200", - "load_ms": "85", - "ttfb_ms": "70", - "load_start": "2493", - "bytesOut": "329", - "bytesIn": "16288", - "objectSize": "0", - "expires": "Thu, 06 Nov 2014 18:35:14 GMT", - "cacheControl": "private, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "255", - "score_cache": "0", - "score_cdn": "100", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/images/nav_logo195.png", - "score_progressive_jpeg": -1, - "load_end": 2578, - "ttfb_start": "2493", - "ttfb_end": 2563, - "download_start": 2563, - "download_end": 2578, - "download_ms": 15, - "all_start": "2493", - "all_end": 2578, - "all_ms": "85", - "headers": { - "request": [ - "GET /images/nav_logo195.png HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=31536000", - "content-length: 16214", - "content-type: image/png", - "date: Thu, 06 Nov 2014 18:35:14 GMT", - "expires: Thu, 06 Nov 2014 18:35:14 GMT", - "last-modified: Wed, 21 May 2014 00:02:44 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 10, - "number": 11 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=YL9bVNOzJpCzoQTWgoDQDA&e=3700259,4011550,4011551,4011557,4011558,4011559,4013605,4014789,4016469,4016824,4017981,4019181,4020347,4020562,4020921,4021073,4022074,4022318,4022495,4022686,4023367,4023567,4023678,4023709,4023972,4024007,4025080,8500272,8500393,10200044,10200083,10200716&atyp=csi&adh=&xjs=init.140.28.sb.94.p.20.spch.10.m.4.ifl.2&action=&srt=5225&p=s&npn=1&rt=xjsls.53,prt.54,xjses.768,xjsee.1033,xjs.1065,ol.1719,iml.1315,wsrt.678,cst.141,dnst.0,rqst.305,rspt.124", - "responseCode": "204", - "load_ms": "114", - "ttfb_ms": "112", - "load_start": "2500", - "bytesOut": "825", - "bytesIn": "251", - "objectSize": "0", - "contentType": "text/html", - "type": "3", - "socket": "255", - "score_cache": "0", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=YL9bVNOzJpCzoQTWgoDQDA&e=3700259,4011550,4011551,4011557,4011558,4011559,4013605,4014789,4016469,4016824,4017981,4019181,4020347,4020562,4020921,4021073,4022074,4022318,4022495,4022686,4023367,4023567,4023678,4023709,4023972,4024007,4025080,8500272,8500393,10200044,10200083,10200716&atyp=csi&adh=&xjs=init.140.28.sb.94.p.20.spch.10.m.4.ifl.2&action=&srt=5225&p=s&npn=1&rt=xjsls.53,prt.54,xjses.768,xjsee.1033,xjs.1065,ol.1719,iml.1315,wsrt.678,cst.141,dnst.0,rqst.305,rspt.124", - "score_progressive_jpeg": -1, - "load_end": 2614, - "ttfb_start": "2500", - "ttfb_end": 2612, - "download_start": 2612, - "download_end": 2614, - "download_ms": 2, - "all_start": "2500", - "all_end": 2614, - "all_ms": "114", - "headers": { - "request": [ - "GET /gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=YL9bVNOzJpCzoQTWgoDQDA&e=3700259,4011550,4011551,4011557,4011558,4011559,4013605,4014789,4016469,4016824,4017981,4019181,4020347,4020562,4020921,4021073,4022074,4022318,4022495,4022686,4023367,4023567,4023678,4023709,4023972,4024007,4025080,8500272,8500393,10200044,10200083,10200716&atyp=csi&adh=&xjs=init.140.28.sb.94.p.20.spch.10.m.4.ifl.2&action=&srt=5225&p=s&npn=1&rt=xjsls.53,prt.54,xjses.768,xjsee.1033,xjs.1065,ol.1719,iml.1315,wsrt.678,cst.141,dnst.0,rqst.305,rspt.124 HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0" - ], - "response": [ - "HTTP/1.1 204 No Content", - "alternate-protocol: 443:quic,p=0.01", - "content-length: 0", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:35:14 GMT", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 11, - "number": 12 - } - ], - "requestsDoc": 10, - "responses_200": 10, - "responses_404": 0, - "responses_other": 1, - "result": 0, - "render": 982, - "fullyLoaded": 2614, - "cached": 0, - "docTime": 2406, - "domTime": 0, - "score_cache": 63, - "score_cdn": 77, - "score_gzip": 100, - "score_cookies": -1, - "score_keep-alive": 100, - "score_minify": -1, - "score_combine": 100, - "score_compress": -1, - "score_etags": -1, - "gzip_total": 2934, - "gzip_savings": 0, - "minify_total": 0, - "minify_savings": 0, - "image_total": 0, - "image_savings": 0, - "optimization_checked": 1, - "aft": 0, - "domElements": 288, - "pageSpeedVersion": "1.9", - "title": "Google", - "titleTime": 883, - "loadEventStart": 2392, - "loadEventEnd": 2402, - "domContentLoadedEventStart": 733, - "domContentLoadedEventEnd": 803, - "lastVisualChange": 0, - "browser_name": "Google Chrome", - "browser_version": "38.0.2125.111", - "server_count": 5, - "server_rtt": 0, - "base_page_cdn": "Google", - "adult_site": 0, - "fixed_viewport": 0, - "score_progressive_jpeg": -1, - "firstPaint": 0, - "docCPUms": 1965.613, - "fullyLoadedCPUms": 2542.816, - "docCPUpct": 81, - "fullyLoadedCPUpct": 54, - "isResponsive": -1, - "date": 1415298900, - "CSI": [ - "v", - "s", - "imc", - "imn", - "imp", - "ei", - "e", - "atyp", - "adh", - "xjs", - "action", - "srt", - "p", - "npn", - "rt", - "xjsls", - "prt", - "xjses", - "xjsee", - "ol", - "iml", - "wsrt", - "cst", - "dnst", - "rqst", - "rspt" - ], - "CSI.v": 3, - "CSI.s": "webhp", - "CSI.imc": 1, - "CSI.imn": 1, - "CSI.imp": 1, - "CSI.ei": "YL9bVNOzJpCzoQTWgoDQDA", - "CSI.e": "3700259,4011550,4011551,4011557,4011558,4011559,4013605,4014789,4016469,4016824,4017981,4019181,4020347,4020562,4020921,4021073,4022074,4022318,4022495,4022686,4023367,4023567,4023678,4023709,4023972,4024007,4025080,8500272,8500393,10200044,10200083,10200716", - "CSI.atyp": "csi", - "CSI.adh": "", - "CSI.xjs": 1065, - "CSI.action": "", - "CSI.srt": 5225, - "CSI.p": "s", - "CSI.npn": 1, - "CSI.rt": "xjsls.53,prt.54,xjses.768,xjsee.1033,xjs.1065,ol.1719,iml.1315,wsrt.678,cst.141,dnst.0,rqst.305,rspt.124", - "CSI.xjsls": 53, - "CSI.prt": 54, - "CSI.xjses": 768, - "CSI.xjsee": 1033, - "CSI.ol": 1719, - "CSI.iml": 1315, - "CSI.wsrt": 678, - "CSI.cst": 141, - "CSI.dnst": 0, - "CSI.rqst": 305, - "CSI.rspt": 124, - "SpeedIndex": 0, - "visualComplete": 0, - "run": 2, - "effectiveBps": 191491, - "effectiveBpsDoc": 203071, - "tester": "IE9204-192.168.102.94", - "pages": { - "details": "http://www.webpagetest.org/details.php?test=141106_TM_ZFM&run=2&cached=0", - "checklist": "http://www.webpagetest.org/performance_optimization.php?test=141106_TM_ZFM&run=2&cached=0", - "breakdown": "http://www.webpagetest.org/breakdown.php?test=141106_TM_ZFM&run=2&cached=0", - "domains": "http://www.webpagetest.org/domains.php?test=141106_TM_ZFM&run=2&cached=0", - "screenShot": "http://www.webpagetest.org/screen_shot.php?test=141106_TM_ZFM&run=2&cached=0" - }, - "thumbnails": { - "waterfall": "http://www.webpagetest.org/result/141106_TM_ZFM/2_waterfall_thumb.png", - "checklist": "http://www.webpagetest.org/result/141106_TM_ZFM/2_optimization_thumb.png", - "screenShot": "http://www.webpagetest.org/result/141106_TM_ZFM/2_screen_thumb.png" - }, - "images": { - "waterfall": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/2_waterfall.png", - "connectionView": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/2_connection.png", - "checklist": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/2_optimization.png", - "screenShot": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/2_screen.jpg" - }, - "rawData": { - "headers": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/2_report.txt", - "pageData": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/2_IEWPG.txt", - "requestsData": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/2_IEWTR.txt", - "utilization": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/2_progress.csv" - }, - "videoFrames": [ - { - "time": 0, - "image": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/video_2/frame_0000.jpg", - "VisuallyComplete": 100 - } - ], - "domains": { - "moc.elgoog.www": { - "bytes": 375378, - "requests": 9, - "connections": 2 - }, - "moc.citatsg.lss": { - "bytes": 14285, - "requests": 1, - "connections": 1 - }, - "moc.citatsg.www": { - "bytes": 59283, - "requests": 1, - "connections": 1 - }, - "moc.elgoog.sipa": { - "bytes": 156500, - "requests": 1, - "connections": 1 - } - }, - "breakdown": { - "html": { - "color": [ - 130, - 181, - 252 - ], - "bytes": 53619, - "requests": 3 - }, - "js": { - "color": [ - 254, - 197, - 132 - ], - "bytes": 506659, - "requests": 5 - }, - "css": { - "color": [ - 178, - 234, - 148 - ], - "bytes": 0, - "requests": 0 - }, - "image": { - "color": [ - 196, - 154, - 232 - ], - "bytes": 45168, - "requests": 4 - }, - "flash": { - "color": [ - 45, - 183, - 193 - ], - "bytes": 0, - "requests": 0 - }, - "font": { - "color": [ - 255, - 82, - 62 - ], - "bytes": 0, - "requests": 0 - }, - "other": { - "color": [ - 196, - 196, - 196 - ], - "bytes": 0, - "requests": 0 - } - } - }, - "repeatView": { - "URL": "http://www.google.com", - "loadTime": 1372, - "TTFB": 458, - "bytesOut": 9283, - "bytesOutDoc": 8735, - "bytesIn": 85486, - "bytesInDoc": 85359, - "connections": 2, - "requests": [ - { - "ip_addr": "74.125.225.80", - "method": "GET", - "host": "www.google.com", - "url": "/", - "responseCode": "302", - "load_ms": "122", - "ttfb_ms": "122", - "load_start": "50", - "bytesOut": "584", - "bytesIn": "532", - "objectSize": "231", - "cacheControl": "private", - "contentType": "text/html", - "type": "3", - "socket": "15", - "score_cache": "0", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "0", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "49", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "server_rtt": "49", - "client_port": "51852", - "jpeg_scan_count": "0", - "full_url": "http://www.google.com/", - "score_progressive_jpeg": -1, - "load_end": 172, - "ttfb_start": "50", - "ttfb_end": 172, - "download_start": 172, - "download_end": 172, - "download_ms": 0, - "all_start": "50", - "all_end": 172, - "all_ms": "122", - "headers": { - "request": [ - "GET / HTTP/1.1", - "Host: www.google.com", - "Connection: keep-alive", - "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36 PTST/191", - "Accept-Encoding: gzip,deflate,sdch", - "Accept-Language: en-US,en;q=0.8", - "Cookie: PREF=ID=475c491cad4e86aa:U=d2f3b954c35bcd9b:FF=0:TM=1415298912:LM=1415298912:S=lV95Ue2bqUmiPbk5; NID=67=FxZ3TVYsJlTtvVnmerGAmxHaZlZTz5A31FZWPSd1rO1IWsQQNoRhmBSazKHgNuIyFbSiyrYFhW6OHLe3wfVvB_ZYIKQjZ5yH_Zis-NxQXljm2qIsyFUvNKKpsqhKOv-p" - ], - "response": [ - "HTTP/1.1 302 Found", - "Location: https://www.google.com/?gws_rd=ssl", - "Cache-Control: private", - "Content-Type: text/html; charset=UTF-8", - "Date: Thu, 06 Nov 2014 18:35:24 GMT", - "Server: gws", - "Content-Length: 231", - "X-XSS-Protection: 1; mode=block", - "X-Frame-Options: SAMEORIGIN", - "Alternate-Protocol: 80:quic,p=0.01" - ] - }, - "index": 0, - "number": 1 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/?gws_rd=ssl", - "responseCode": "200", - "load_ms": "290", - "ttfb_ms": "197", - "load_start": "261", - "bytesOut": "254", - "bytesIn": "61974", - "objectSize": "0", - "expires": "-1", - "cacheControl": "private, max-age=0", - "contentType": "text/html", - "contentEncoding": "gzip", - "type": "3", - "socket": "161", - "score_cache": "-1", - "score_cdn": "-1", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 0, - "connect_ms": 0, - "ssl_ms": 57, - "gzip_total": "280", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "-1", - "cdn_provider": "Google", - "dns_start": "203", - "dns_end": "203", - "connect_start": "203", - "connect_end": "203", - "ssl_start": "203", - "ssl_end": "260", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/?gws_rd=ssl", - "score_progressive_jpeg": -1, - "load_end": 551, - "ttfb_start": "261", - "ttfb_end": 458, - "download_start": 458, - "download_end": 551, - "download_ms": 93, - "all_start": "203", - "all_end": 551, - "all_ms": 347, - "headers": { - "request": [ - "GET /?gws_rd=ssl HTTP/1.1", - "Host: www.google.com", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A87ED523-8779-4935-A86C-D91B13E86886" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=0", - "content-encoding: gzip", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:35:25 GMT", - "expires: -1", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 1, - "number": 2 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=bb9bVMmPC4z9oQSY8YG4DQ&e=3700259,4011550,4011551,4011557,4011558,4011559,4013605,4014789,4016469,4016824,4017981,4019181,4020347,4020562,4020921,4021073,4022074,4022318,4022495,4022686,4023367,4023567,4023678,4023709,4023972,4024007,4025080,8500272,8500393,10200044,10200083,10200716&atyp=csi&adh=&xjs=init.86.28.sb.52.p.12.spch.7.jsa.5.ifl.2&action=&srt=5139&p=s&npn=1&rt=xjsls.44,prt.46,xjses.264,xjsee.470,xjs.503,ol.775,iml.166,wsrt.584,cst.57,dnst.0,rqst.290,rspt.93", - "responseCode": "204", - "load_ms": "121", - "ttfb_ms": "107", - "load_start": "1388", - "bytesOut": "819", - "bytesIn": "251", - "objectSize": "0", - "contentType": "text/html", - "type": "3", - "socket": "161", - "score_cache": "0", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=bb9bVMmPC4z9oQSY8YG4DQ&e=3700259,4011550,4011551,4011557,4011558,4011559,4013605,4014789,4016469,4016824,4017981,4019181,4020347,4020562,4020921,4021073,4022074,4022318,4022495,4022686,4023367,4023567,4023678,4023709,4023972,4024007,4025080,8500272,8500393,10200044,10200083,10200716&atyp=csi&adh=&xjs=init.86.28.sb.52.p.12.spch.7.jsa.5.ifl.2&action=&srt=5139&p=s&npn=1&rt=xjsls.44,prt.46,xjses.264,xjsee.470,xjs.503,ol.775,iml.166,wsrt.584,cst.57,dnst.0,rqst.290,rspt.93", - "score_progressive_jpeg": -1, - "load_end": 1509, - "ttfb_start": "1388", - "ttfb_end": 1495, - "download_start": 1495, - "download_end": 1509, - "download_ms": 14, - "all_start": "1388", - "all_end": 1509, - "all_ms": "121", - "headers": { - "request": [ - "GET /gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=bb9bVMmPC4z9oQSY8YG4DQ&e=3700259,4011550,4011551,4011557,4011558,4011559,4013605,4014789,4016469,4016824,4017981,4019181,4020347,4020562,4020921,4021073,4022074,4022318,4022495,4022686,4023367,4023567,4023678,4023709,4023972,4024007,4025080,8500272,8500393,10200044,10200083,10200716&atyp=csi&adh=&xjs=init.86.28.sb.52.p.12.spch.7.jsa.5.ifl.2&action=&srt=5139&p=s&npn=1&rt=xjsls.44,prt.46,xjses.264,xjsee.470,xjs.503,ol.775,iml.166,wsrt.584,cst.57,dnst.0,rqst.290,rspt.93 HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A87ED523-8779-4935-A86C-D91B13E86886" - ], - "response": [ - "HTTP/1.1 204 No Content", - "alternate-protocol: 443:quic,p=0.01", - "content-length: 0", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:35:26 GMT", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 2, - "number": 3 - } - ], - "requestsDoc": 2, - "responses_200": 1, - "responses_404": 0, - "responses_other": 1, - "result": 0, - "render": 895, - "fullyLoaded": 1509, - "cached": 1, - "docTime": 1372, - "domTime": 0, - "score_cache": 0, - "score_cdn": -1, - "score_gzip": 100, - "score_cookies": -1, - "score_keep-alive": 100, - "score_minify": -1, - "score_combine": 100, - "score_compress": -1, - "score_etags": -1, - "gzip_total": 280, - "gzip_savings": 0, - "minify_total": 0, - "minify_savings": 0, - "image_total": 0, - "image_savings": 0, - "optimization_checked": 1, - "aft": 0, - "domElements": 288, - "pageSpeedVersion": "1.9", - "title": "Google", - "titleTime": 692, - "loadEventStart": 1354, - "loadEventEnd": 1363, - "domContentLoadedEventStart": 630, - "domContentLoadedEventEnd": 677, - "lastVisualChange": 0, - "browser_name": "Google Chrome", - "browser_version": "38.0.2125.111", - "server_count": 5, - "server_rtt": 0, - "base_page_cdn": "Google", - "adult_site": 0, - "fixed_viewport": 0, - "score_progressive_jpeg": -1, - "firstPaint": 0, - "docCPUms": 1248.008, - "fullyLoadedCPUms": 1716.011, - "docCPUpct": 90, - "fullyLoadedCPUpct": 47, - "isResponsive": -1, - "date": 1415298913, - "CSI": [ - "v", - "s", - "imc", - "imn", - "imp", - "ei", - "e", - "atyp", - "adh", - "xjs", - "action", - "srt", - "p", - "npn", - "rt", - "xjsls", - "prt", - "xjses", - "xjsee", - "ol", - "iml", - "wsrt", - "cst", - "dnst", - "rqst", - "rspt" - ], - "CSI.v": 3, - "CSI.s": "webhp", - "CSI.imc": 1, - "CSI.imn": 1, - "CSI.imp": 1, - "CSI.ei": "bb9bVMmPC4z9oQSY8YG4DQ", - "CSI.e": "3700259,4011550,4011551,4011557,4011558,4011559,4013605,4014789,4016469,4016824,4017981,4019181,4020347,4020562,4020921,4021073,4022074,4022318,4022495,4022686,4023367,4023567,4023678,4023709,4023972,4024007,4025080,8500272,8500393,10200044,10200083,10200716", - "CSI.atyp": "csi", - "CSI.adh": "", - "CSI.xjs": 503, - "CSI.action": "", - "CSI.srt": 5139, - "CSI.p": "s", - "CSI.npn": 1, - "CSI.rt": "xjsls.44,prt.46,xjses.264,xjsee.470,xjs.503,ol.775,iml.166,wsrt.584,cst.57,dnst.0,rqst.290,rspt.93", - "CSI.xjsls": 44, - "CSI.prt": 46, - "CSI.xjses": 264, - "CSI.xjsee": 470, - "CSI.ol": 775, - "CSI.iml": 166, - "CSI.wsrt": 584, - "CSI.cst": 57, - "CSI.dnst": 0, - "CSI.rqst": 290, - "CSI.rspt": 93, - "SpeedIndex": 0, - "visualComplete": 0, - "run": 2, - "effectiveBps": 81337, - "effectiveBpsDoc": 93390, - "tester": "IE9204-192.168.102.94", - "pages": { - "details": "http://www.webpagetest.org/details.php?test=141106_TM_ZFM&run=2&cached=1", - "checklist": "http://www.webpagetest.org/performance_optimization.php?test=141106_TM_ZFM&run=2&cached=1", - "breakdown": "http://www.webpagetest.org/breakdown.php?test=141106_TM_ZFM&run=2&cached=1", - "domains": "http://www.webpagetest.org/domains.php?test=141106_TM_ZFM&run=2&cached=1", - "screenShot": "http://www.webpagetest.org/screen_shot.php?test=141106_TM_ZFM&run=2&cached=1" - }, - "thumbnails": { - "waterfall": "http://www.webpagetest.org/result/141106_TM_ZFM/2_Cached_waterfall_thumb.png", - "checklist": "http://www.webpagetest.org/result/141106_TM_ZFM/2_Cached_optimization_thumb.png", - "screenShot": "http://www.webpagetest.org/result/141106_TM_ZFM/2_Cached_screen_thumb.png" - }, - "images": { - "waterfall": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/2_Cached_waterfall.png", - "connectionView": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/2_Cached_connection.png", - "checklist": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/2_Cached_optimization.png", - "screenShot": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/2_Cached_screen.jpg" - }, - "rawData": { - "headers": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/2_Cached_report.txt", - "pageData": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/2_Cached_IEWPG.txt", - "requestsData": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/2_Cached_IEWTR.txt", - "utilization": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/2_Cached_progress.csv" - }, - "videoFrames": [ - { - "time": 0, - "image": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/video_2_cached/frame_0000.jpg", - "VisuallyComplete": 100 - } - ], - "domains": { - "moc.elgoog.www": { - "bytes": 62757, - "requests": 3, - "connections": 2 - } - }, - "breakdown": { - "html": { - "color": [ - 130, - 181, - 252 - ], - "bytes": 62757, - "requests": 3 - }, - "js": { - "color": [ - 254, - 197, - 132 - ], - "bytes": 0, - "requests": 0 - }, - "css": { - "color": [ - 178, - 234, - 148 - ], - "bytes": 0, - "requests": 0 - }, - "image": { - "color": [ - 196, - 154, - 232 - ], - "bytes": 0, - "requests": 0 - }, - "flash": { - "color": [ - 45, - 183, - 193 - ], - "bytes": 0, - "requests": 0 - }, - "font": { - "color": [ - 255, - 82, - 62 - ], - "bytes": 0, - "requests": 0 - }, - "other": { - "color": [ - 196, - 196, - 196 - ], - "bytes": 0, - "requests": 0 - } - } - } - }, - "3": { - "firstView": { - "URL": "http://www.google.com", - "loadTime": 1859, - "TTFB": 527, - "bytesOut": 7732, - "bytesOutDoc": 6849, - "bytesIn": 406795, - "bytesInDoc": 388881, - "connections": 5, - "requests": [ - { - "ip_addr": "74.125.225.80", - "method": "GET", - "host": "www.google.com", - "url": "/", - "responseCode": "302", - "load_ms": "118", - "ttfb_ms": "118", - "load_start": "51", - "bytesOut": "342", - "bytesIn": "1044", - "objectSize": "231", - "cacheControl": "private", - "contentType": "text/html", - "type": "3", - "socket": "21", - "score_cache": "0", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "0", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "50", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "server_rtt": "50", - "client_port": "57503", - "jpeg_scan_count": "0", - "full_url": "http://www.google.com/", - "score_progressive_jpeg": -1, - "load_end": 169, - "ttfb_start": "51", - "ttfb_end": 169, - "download_start": 169, - "download_end": 169, - "download_ms": 0, - "all_start": "51", - "all_end": 169, - "all_ms": "118", - "headers": { - "request": [ - "GET / HTTP/1.1", - "Host: www.google.com", - "Connection: keep-alive", - "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36 PTST/191", - "Accept-Encoding: gzip,deflate,sdch", - "Accept-Language: en-US,en;q=0.8" - ], - "response": [ - "HTTP/1.1 302 Found", - "Location: https://www.google.com/?gws_rd=ssl", - "Cache-Control: private", - "Content-Type: text/html; charset=UTF-8", - "Set-Cookie: PREF=ID=c8ae0fd9a35b560a:FF=0:TM=1415298911:LM=1415298911:S=wGBHegrYkFIl74OM; expires=Sat, 05-Nov-2016 18:35:11 GMT; path=/; domain=.google.com", - "Set-Cookie: NID=67=A8rzWOkZhV5ph-wUG0ek5x-MFtIRDWOSW0DZYZy6dEV1D64v0M7VJTy8w_P4IB5OQNncxH3kkpmAskYeeLkP2oojzK796UCb3uS2cjlc3xQnx-PoH7WcYIwKFzjF_j6Z; expires=Fri, 08-May-2015 18:35:11 GMT; path=/; domain=.google.com; HttpOnly", - "P3P: CP=\"This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info.\"", - "Date: Thu, 06 Nov 2014 18:35:11 GMT", - "Server: gws", - "Content-Length: 231", - "X-XSS-Protection: 1; mode=block", - "X-Frame-Options: SAMEORIGIN", - "Alternate-Protocol: 80:quic,p=0.01" - ] - }, - "index": 0, - "number": 1 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/?gws_rd=ssl", - "responseCode": "200", - "load_ms": "272", - "ttfb_ms": "181", - "load_start": "346", - "bytesOut": "254", - "bytesIn": "59402", - "objectSize": "0", - "expires": "-1", - "cacheControl": "private, max-age=0", - "contentType": "text/html", - "contentEncoding": "gzip", - "type": "3", - "socket": "233", - "score_cache": "-1", - "score_cdn": "-1", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 0, - "connect_ms": 48, - "ssl_ms": 99, - "gzip_total": "799", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "-1", - "cdn_provider": "Google", - "dns_start": "199", - "dns_end": "199", - "connect_start": "199", - "connect_end": "247", - "ssl_start": "247", - "ssl_end": "346", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/?gws_rd=ssl", - "score_progressive_jpeg": -1, - "load_end": 618, - "ttfb_start": "346", - "ttfb_end": 527, - "download_start": 527, - "download_end": 618, - "download_ms": 91, - "all_start": "199", - "all_end": 618, - "all_ms": 419, - "headers": { - "request": [ - "GET /?gws_rd=ssl HTTP/1.1", - "Host: www.google.com", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=0", - "content-encoding: gzip", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:35:11 GMT", - "expires: -1", - "p3p: CP=\"This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info.\"", - "server: gws", - "set-cookie: PREF=ID=c8ae0fd9a35b560a:U=13a3a6adb0b5baae:FF=0:TM=1415298911:LM=1415298911:S=6_qwKnH9qWTEeuXk; expires=Sat, 05-Nov-2016 18:35:11 GMT; path=/; domain=.google.com", - "NID=67=Ue_d0qHMhmOdhZ9A50DYfvJhQQK0WV2c_RfwRbKG_3tCN8L0CV7FpvqilrK7El69DX146S0_ZqFG02sKFXcT-lgtI9XtRP1fWtZhQ15VPcdvLLjuUjMt1_Dt9d1C9gfk; expires=Fri, 08-May-2015 18:35:11 GMT; path=/; domain=.google.com; HttpOnly", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 1, - "number": 2 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/images/srpr/logo11w.png", - "responseCode": "200", - "load_ms": "572", - "ttfb_ms": "571", - "load_start": "815", - "bytesOut": "330", - "bytesIn": "14111", - "objectSize": "0", - "expires": "Thu, 06 Nov 2014 18:35:12 GMT", - "cacheControl": "private, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "233", - "score_cache": "0", - "score_cdn": "100", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/?gws_rd=ssl", - "initiator_line": "28", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/images/srpr/logo11w.png", - "score_progressive_jpeg": -1, - "load_end": 1387, - "ttfb_start": "815", - "ttfb_end": 1386, - "download_start": 1386, - "download_end": 1387, - "download_ms": 1, - "all_start": "815", - "all_end": 1387, - "all_ms": "572", - "headers": { - "request": [ - "GET /images/srpr/logo11w.png HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=31536000", - "content-length: 14022", - "content-type: image/png", - "date: Thu, 06 Nov 2014 18:35:12 GMT", - "expires: Thu, 06 Nov 2014 18:35:12 GMT", - "last-modified: Wed, 09 Oct 2013 01:35:39 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 2, - "number": 3 - }, - { - "method": "GET", - "host": "ssl.gstatic.com", - "url": "/gb/images/i1_71651352.png", - "responseCode": "200", - "load_ms": "77", - "ttfb_ms": "42", - "load_start": "881", - "bytesOut": "333", - "bytesIn": "14285", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 15:23:35 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "315", - "score_cache": "100", - "score_cdn": "0", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 0, - "connect_ms": 39, - "ssl_ms": 89, - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "dns_start": "752", - "dns_end": "752", - "connect_start": "752", - "connect_end": "791", - "ssl_start": "791", - "ssl_end": "880", - "initiator": "https://www.google.com/?gws_rd=ssl", - "initiator_line": "76", - "initiator_column": "35", - "server_count": "4", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://ssl.gstatic.com/gb/images/i1_71651352.png", - "score_progressive_jpeg": -1, - "load_end": 958, - "ttfb_start": "881", - "ttfb_end": 923, - "download_start": 923, - "download_end": 958, - "download_ms": 35, - "all_start": "752", - "all_end": 958, - "all_ms": 205, - "headers": { - "request": [ - "GET /gb/images/i1_71651352.png HTTP/1.1", - "Host: ssl.gstatic.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 97897", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-length: 14055", - "content-type: image/png", - "date: Wed, 05 Nov 2014 15:23:35 GMT", - "expires: Thu, 05 Nov 2015 15:23:35 GMT", - "last-modified: Thu, 16 Oct 2014 18:20:30 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 3, - "number": 4 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "responseCode": "200", - "load_ms": "333", - "ttfb_ms": "54", - "load_start": "884", - "bytesOut": "443", - "bytesIn": "233315", - "objectSize": "0", - "expires": "Fri, 06 Nov 2015 11:13:26 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "233", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "429", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/?gws_rd=ssl", - "initiator_line": "94", - "initiator_column": "17237", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "score_progressive_jpeg": -1, - "load_end": 1217, - "ttfb_start": "884", - "ttfb_end": 938, - "download_start": 938, - "download_end": 1217, - "download_ms": 279, - "all_start": "884", - "all_end": 1217, - "all_ms": "333", - "headers": { - "request": [ - "GET /xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP/1.1", - "Host: www.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 26506", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 130931", - "content-type: text/javascript; charset=UTF-8", - "date: Thu, 06 Nov 2014 11:13:26 GMT", - "expires: Fri, 06 Nov 2015 11:13:26 GMT", - "last-modified: Tue, 04 Nov 2014 19:30:26 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 4, - "number": 5 - }, - { - "method": "GET", - "host": "www.gstatic.com", - "url": "/og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w", - "responseCode": "200", - "load_ms": "247", - "ttfb_ms": "245", - "load_start": "1073", - "bytesOut": "392", - "bytesIn": "184146", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 13:04:24 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "339", - "score_cache": "100", - "score_cdn": "0", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 32, - "connect_ms": 40, - "ssl_ms": 82, - "gzip_total": "429", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "dns_start": "918", - "dns_end": "950", - "connect_start": "950", - "connect_end": "990", - "ssl_start": "990", - "ssl_end": "1072", - "initiator": "https://www.google.com/?gws_rd=ssl", - "initiator_line": "57", - "initiator_column": "143", - "server_count": "4", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.gstatic.com/og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w", - "score_progressive_jpeg": -1, - "load_end": 1320, - "ttfb_start": "1073", - "ttfb_end": 1318, - "download_start": 1318, - "download_end": 1320, - "download_ms": 2, - "all_start": "918", - "all_end": 1320, - "all_ms": 401, - "headers": { - "request": [ - "GET /og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w HTTP/1.1", - "Host: www.gstatic.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 106248", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 55207", - "content-type: text/javascript; charset=UTF-8", - "date: Wed, 05 Nov 2014 13:04:24 GMT", - "expires: Thu, 05 Nov 2015 13:04:24 GMT", - "last-modified: Tue, 04 Nov 2014 01:19:09 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 5, - "number": 6 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/extern_chrome/854094c746d4c9a.js?bav=on.2,or.r_qf.", - "responseCode": "200", - "load_ms": "170", - "ttfb_ms": "168", - "load_start": "1316", - "bytesOut": "340", - "bytesIn": "36559", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 00:00:00 GMT", - "cacheControl": "private", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "233", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "422", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31382688", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "initiator_line": "1187", - "initiator_column": "181", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/extern_chrome/854094c746d4c9a.js?bav=on.2,or.r_qf.", - "score_progressive_jpeg": -1, - "load_end": 1486, - "ttfb_start": "1316", - "ttfb_end": 1484, - "download_start": 1484, - "download_end": 1486, - "download_ms": 2, - "all_start": "1316", - "all_end": 1486, - "all_ms": "170", - "headers": { - "request": [ - "GET /extern_chrome/854094c746d4c9a.js?bav=on.2,or.r_qf. HTTP/1.1", - "Host: www.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private", - "content-disposition: attachment; filename=\"f.txt\"", - "content-encoding: gzip", - "content-length: 13825", - "content-type: text/javascript; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:35:12 GMT", - "expires: Thu, 05 Nov 2015 00:00:00 GMT", - "last-modified: Thu, 07 Nov 2013 00:00:00 GMT", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 6, - "number": 7 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm/am=lKj_TwWDwIxAARMQrA4/rt=j/d=0/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "responseCode": "200", - "load_ms": "121", - "ttfb_ms": "51", - "load_start": "1483", - "bytesOut": "682", - "bytesIn": "52270", - "objectSize": "0", - "expires": "Fri, 06 Nov 2015 12:08:37 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "233", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "428", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "initiator_line": "101", - "initiator_column": "112", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm/am=lKj_TwWDwIxAARMQrA4/rt=j/d=0/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "score_progressive_jpeg": -1, - "load_end": 1604, - "ttfb_start": "1483", - "ttfb_end": 1534, - "download_start": 1534, - "download_end": 1604, - "download_ms": 70, - "all_start": "1483", - "all_end": 1604, - "all_ms": "121", - "headers": { - "request": [ - "GET /xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm/am=lKj_TwWDwIxAARMQrA4/rt=j/d=0/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP/1.1", - "Host: www.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 23195", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 48157", - "content-type: text/javascript; charset=UTF-8", - "date: Thu, 06 Nov 2014 12:08:37 GMT", - "expires: Fri, 06 Nov 2015 12:08:37 GMT", - "last-modified: Tue, 04 Nov 2014 19:30:26 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 7, - "number": 8 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/textinputassistant/tia.png", - "responseCode": "200", - "load_ms": "200", - "ttfb_ms": "199", - "load_start": "1484", - "bytesOut": "333", - "bytesIn": "481", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 06:57:32 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "233", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/?gws_rd=ssl", - "initiator_line": "1", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/textinputassistant/tia.png", - "score_progressive_jpeg": -1, - "load_end": 1684, - "ttfb_start": "1484", - "ttfb_end": 1683, - "download_start": 1683, - "download_end": 1684, - "download_ms": 1, - "all_start": "1484", - "all_end": 1684, - "all_ms": "200", - "headers": { - "request": [ - "GET /textinputassistant/tia.png HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 128260", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-length: 387", - "content-type: image/png", - "date: Wed, 05 Nov 2014 06:57:32 GMT", - "expires: Thu, 05 Nov 2015 06:57:32 GMT", - "last-modified: Mon, 02 Apr 2012 02:13:37 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 8, - "number": 9 - }, - { - "method": "GET", - "host": "apis.google.com", - "url": "/_/scs/abc-static/_/js/k=gapi.gapi.en.3_mJ9Wvc9FU.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg/cb=gapi.loaded_0", - "responseCode": "200", - "load_ms": "114", - "ttfb_ms": "46", - "load_start": "1665", - "bytesOut": "456", - "bytesIn": "49927", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 15:23:35 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "434", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 34, - "connect_ms": 40, - "ssl_ms": 74, - "gzip_total": "428", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "1517", - "dns_end": "1551", - "connect_start": "1551", - "connect_end": "1591", - "ssl_start": "1591", - "ssl_end": "1665", - "initiator": "https://www.gstatic.com/og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w", - "initiator_line": "138", - "initiator_column": "381", - "server_count": "11", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://apis.google.com/_/scs/abc-static/_/js/k=gapi.gapi.en.3_mJ9Wvc9FU.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg/cb=gapi.loaded_0", - "score_progressive_jpeg": -1, - "load_end": 1779, - "ttfb_start": "1665", - "ttfb_end": 1711, - "download_start": 1711, - "download_end": 1779, - "download_ms": 68, - "all_start": "1517", - "all_end": 1779, - "all_ms": 262, - "headers": { - "request": [ - "GET /_/scs/abc-static/_/js/k=gapi.gapi.en.3_mJ9Wvc9FU.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg/cb=gapi.loaded_0 HTTP/1.1", - "Host: apis.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 97898", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 48911", - "content-type: text/javascript; charset=UTF-8", - "date: Wed, 05 Nov 2014 15:23:35 GMT", - "expires: Thu, 05 Nov 2015 15:23:35 GMT", - "last-modified: Thu, 16 Oct 2014 07:30:29 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 9, - "number": 10 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/images/nav_logo195.png", - "responseCode": "200", - "load_ms": "84", - "ttfb_ms": "68", - "load_start": "1874", - "bytesOut": "329", - "bytesIn": "16300", - "objectSize": "0", - "expires": "Thu, 06 Nov 2014 18:35:13 GMT", - "cacheControl": "private, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "233", - "score_cache": "0", - "score_cdn": "100", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/images/nav_logo195.png", - "score_progressive_jpeg": -1, - "load_end": 1958, - "ttfb_start": "1874", - "ttfb_end": 1942, - "download_start": 1942, - "download_end": 1958, - "download_ms": 16, - "all_start": "1874", - "all_end": 1958, - "all_ms": "84", - "headers": { - "request": [ - "GET /images/nav_logo195.png HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=31536000", - "content-length: 16214", - "content-type: image/png", - "date: Thu, 06 Nov 2014 18:35:13 GMT", - "expires: Thu, 06 Nov 2014 18:35:13 GMT", - "last-modified: Wed, 21 May 2014 00:02:44 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 10, - "number": 11 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=X79bVJ_KLYi2oQSrr4DwDA&e=3700261,4011550,4011551,4011557,4011558,4011559,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021341,4021532,4021597,4022074,4022318,4022495,4022688,4023367,4023566,4023709,4023972,4023979,4024625,4024691,4024905,4024932,8500272,8500394,8500699,8500755,10200083,10200716,10200744,10200766&atyp=csi&adh=&xjs=init.119.28.sb.65.m.28.p.12.spch.6.foot.1&action=&srt=642&p=s&npn=1&rt=xjsls.26,prt.27,xjses.520,xjsee.706,xjs.760,ol.1207,iml.761,wsrt.642,cst.146,dnst.0,rqst.272,rspt.91", - "responseCode": "204", - "load_ms": "111", - "ttfb_ms": "110", - "load_start": "1876", - "bytesOut": "878", - "bytesIn": "251", - "objectSize": "0", - "contentType": "text/html", - "type": "3", - "socket": "233", - "score_cache": "0", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=X79bVJ_KLYi2oQSrr4DwDA&e=3700261,4011550,4011551,4011557,4011558,4011559,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021341,4021532,4021597,4022074,4022318,4022495,4022688,4023367,4023566,4023709,4023972,4023979,4024625,4024691,4024905,4024932,8500272,8500394,8500699,8500755,10200083,10200716,10200744,10200766&atyp=csi&adh=&xjs=init.119.28.sb.65.m.28.p.12.spch.6.foot.1&action=&srt=642&p=s&npn=1&rt=xjsls.26,prt.27,xjses.520,xjsee.706,xjs.760,ol.1207,iml.761,wsrt.642,cst.146,dnst.0,rqst.272,rspt.91", - "score_progressive_jpeg": -1, - "load_end": 1987, - "ttfb_start": "1876", - "ttfb_end": 1986, - "download_start": 1986, - "download_end": 1987, - "download_ms": 1, - "all_start": "1876", - "all_end": 1987, - "all_ms": "111", - "headers": { - "request": [ - "GET /gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=X79bVJ_KLYi2oQSrr4DwDA&e=3700261,4011550,4011551,4011557,4011558,4011559,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021341,4021532,4021597,4022074,4022318,4022495,4022688,4023367,4023566,4023709,4023972,4023979,4024625,4024691,4024905,4024932,8500272,8500394,8500699,8500755,10200083,10200716,10200744,10200766&atyp=csi&adh=&xjs=init.119.28.sb.65.m.28.p.12.spch.6.foot.1&action=&srt=642&p=s&npn=1&rt=xjsls.26,prt.27,xjses.520,xjsee.706,xjs.760,ol.1207,iml.761,wsrt.642,cst.146,dnst.0,rqst.272,rspt.91 HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF" - ], - "response": [ - "HTTP/1.1 204 No Content", - "alternate-protocol: 443:quic,p=0.01", - "content-length: 0", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:35:13 GMT", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 11, - "number": 12 - } - ], - "requestsDoc": 10, - "responses_200": 10, - "responses_404": 0, - "responses_other": 1, - "result": 0, - "render": 793, - "fullyLoaded": 1987, - "cached": 0, - "docTime": 1859, - "domTime": 0, - "score_cache": 63, - "score_cdn": 77, - "score_gzip": 100, - "score_cookies": -1, - "score_keep-alive": 100, - "score_minify": -1, - "score_combine": 100, - "score_compress": -1, - "score_etags": -1, - "gzip_total": 2935, - "gzip_savings": 0, - "minify_total": 0, - "minify_savings": 0, - "image_total": 0, - "image_savings": 0, - "optimization_checked": 1, - "aft": 0, - "domElements": 288, - "pageSpeedVersion": "1.9", - "title": "Google", - "titleTime": 891, - "loadEventStart": 1845, - "loadEventEnd": 1851, - "domContentLoadedEventStart": 669, - "domContentLoadedEventEnd": 714, - "lastVisualChange": 0, - "browser_name": "Google Chrome", - "browser_version": "38.0.2125.111", - "server_count": 5, - "server_rtt": 0, - "base_page_cdn": "Google", - "adult_site": 0, - "fixed_viewport": 0, - "score_progressive_jpeg": -1, - "firstPaint": 747, - "docCPUms": 1201.208, - "fullyLoadedCPUms": 1372.809, - "docCPUpct": 64, - "fullyLoadedCPUpct": 34, - "isResponsive": -1, - "date": 1415298674, - "CSI": [ - "v", - "s", - "imc", - "imn", - "imp", - "ei", - "e", - "atyp", - "adh", - "xjs", - "action", - "srt", - "p", - "npn", - "rt", - "xjsls", - "prt", - "xjses", - "xjsee", - "ol", - "iml", - "wsrt", - "cst", - "dnst", - "rqst", - "rspt" - ], - "CSI.v": 3, - "CSI.s": "webhp", - "CSI.imc": 1, - "CSI.imn": 1, - "CSI.imp": 1, - "CSI.ei": "X79bVJ_KLYi2oQSrr4DwDA", - "CSI.e": "3700261,4011550,4011551,4011557,4011558,4011559,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021341,4021532,4021597,4022074,4022318,4022495,4022688,4023367,4023566,4023709,4023972,4023979,4024625,4024691,4024905,4024932,8500272,8500394,8500699,8500755,10200083,10200716,10200744,10200766", - "CSI.atyp": "csi", - "CSI.adh": "", - "CSI.xjs": 760, - "CSI.action": "", - "CSI.srt": 642, - "CSI.p": "s", - "CSI.npn": 1, - "CSI.rt": "xjsls.26,prt.27,xjses.520,xjsee.706,xjs.760,ol.1207,iml.761,wsrt.642,cst.146,dnst.0,rqst.272,rspt.91", - "CSI.xjsls": 26, - "CSI.prt": 27, - "CSI.xjses": 520, - "CSI.xjsee": 706, - "CSI.ol": 1207, - "CSI.iml": 761, - "CSI.wsrt": 642, - "CSI.cst": 146, - "CSI.dnst": 0, - "CSI.rqst": 272, - "CSI.rspt": 91, - "SpeedIndex": 0, - "visualComplete": 0, - "run": 3, - "effectiveBps": 278626, - "effectiveBpsDoc": 291952, - "tester": "IE9103-192.168.101.93", - "pages": { - "details": "http://www.webpagetest.org/details.php?test=141106_TM_ZFM&run=3&cached=0", - "checklist": "http://www.webpagetest.org/performance_optimization.php?test=141106_TM_ZFM&run=3&cached=0", - "breakdown": "http://www.webpagetest.org/breakdown.php?test=141106_TM_ZFM&run=3&cached=0", - "domains": "http://www.webpagetest.org/domains.php?test=141106_TM_ZFM&run=3&cached=0", - "screenShot": "http://www.webpagetest.org/screen_shot.php?test=141106_TM_ZFM&run=3&cached=0" - }, - "thumbnails": { - "waterfall": "http://www.webpagetest.org/result/141106_TM_ZFM/3_waterfall_thumb.png", - "checklist": "http://www.webpagetest.org/result/141106_TM_ZFM/3_optimization_thumb.png", - "screenShot": "http://www.webpagetest.org/result/141106_TM_ZFM/3_screen_thumb.png" - }, - "images": { - "waterfall": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/3_waterfall.png", - "connectionView": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/3_connection.png", - "checklist": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/3_optimization.png", - "screenShot": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/3_screen.jpg" - }, - "rawData": { - "headers": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/3_report.txt", - "pageData": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/3_IEWPG.txt", - "requestsData": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/3_IEWTR.txt", - "utilization": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/3_progress.csv" - }, - "videoFrames": [ - { - "time": 0, - "image": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/video_3/frame_0000.jpg", - "VisuallyComplete": 100 - } - ], - "domains": { - "moc.elgoog.www": { - "bytes": 413733, - "requests": 9, - "connections": 2 - }, - "moc.citatsg.lss": { - "bytes": 14285, - "requests": 1, - "connections": 1 - }, - "moc.citatsg.www": { - "bytes": 184146, - "requests": 1, - "connections": 1 - }, - "moc.elgoog.sipa": { - "bytes": 49927, - "requests": 1, - "connections": 1 - } - }, - "breakdown": { - "html": { - "color": [ - 130, - 181, - 252 - ], - "bytes": 60697, - "requests": 3 - }, - "js": { - "color": [ - 254, - 197, - 132 - ], - "bytes": 556217, - "requests": 5 - }, - "css": { - "color": [ - 178, - 234, - 148 - ], - "bytes": 0, - "requests": 0 - }, - "image": { - "color": [ - 196, - 154, - 232 - ], - "bytes": 45177, - "requests": 4 - }, - "flash": { - "color": [ - 45, - 183, - 193 - ], - "bytes": 0, - "requests": 0 - }, - "font": { - "color": [ - 255, - 82, - 62 - ], - "bytes": 0, - "requests": 0 - }, - "other": { - "color": [ - 196, - 196, - 196 - ], - "bytes": 0, - "requests": 0 - } - } - }, - "repeatView": { - "URL": "http://www.google.com", - "loadTime": 1103, - "TTFB": 418, - "bytesOut": 9310, - "bytesOutDoc": 8740, - "bytesIn": 85510, - "bytesInDoc": 85383, - "connections": 2, - "requests": [ - { - "ip_addr": "74.125.225.80", - "method": "GET", - "host": "www.google.com", - "url": "/", - "responseCode": "302", - "load_ms": "126", - "ttfb_ms": "126", - "load_start": "49", - "bytesOut": "584", - "bytesIn": "532", - "objectSize": "231", - "cacheControl": "private", - "contentType": "text/html", - "type": "3", - "socket": "15", - "score_cache": "0", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "0", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "49", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "server_rtt": "49", - "client_port": "57544", - "jpeg_scan_count": "0", - "full_url": "http://www.google.com/", - "score_progressive_jpeg": -1, - "load_end": 175, - "ttfb_start": "49", - "ttfb_end": 175, - "download_start": 175, - "download_end": 175, - "download_ms": 0, - "all_start": "49", - "all_end": 175, - "all_ms": "126", - "headers": { - "request": [ - "GET / HTTP/1.1", - "Host: www.google.com", - "Connection: keep-alive", - "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36 PTST/191", - "Accept-Encoding: gzip,deflate,sdch", - "Accept-Language: en-US,en;q=0.8", - "Cookie: PREF=ID=c8ae0fd9a35b560a:U=13a3a6adb0b5baae:FF=0:TM=1415298911:LM=1415298911:S=6_qwKnH9qWTEeuXk; NID=67=Ue_d0qHMhmOdhZ9A50DYfvJhQQK0WV2c_RfwRbKG_3tCN8L0CV7FpvqilrK7El69DX146S0_ZqFG02sKFXcT-lgtI9XtRP1fWtZhQ15VPcdvLLjuUjMt1_Dt9d1C9gfk" - ], - "response": [ - "HTTP/1.1 302 Found", - "Location: https://www.google.com/?gws_rd=ssl", - "Cache-Control: private", - "Content-Type: text/html; charset=UTF-8", - "Date: Thu, 06 Nov 2014 18:35:23 GMT", - "Server: gws", - "Content-Length: 231", - "X-XSS-Protection: 1; mode=block", - "X-Frame-Options: SAMEORIGIN", - "Alternate-Protocol: 80:quic,p=0.01" - ] - }, - "index": 0, - "number": 1 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/?gws_rd=ssl", - "responseCode": "200", - "load_ms": "267", - "ttfb_ms": "205", - "load_start": "213", - "bytesOut": "254", - "bytesIn": "52844", - "objectSize": "0", - "expires": "-1", - "cacheControl": "private, max-age=0", - "contentType": "text/html", - "contentEncoding": "gzip", - "type": "3", - "socket": "155", - "score_cache": "-1", - "score_cdn": "-1", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 0, - "connect_ms": 0, - "ssl_ms": 0, - "gzip_total": "280", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "-1", - "cdn_provider": "Google", - "dns_start": "199", - "dns_end": "199", - "connect_start": "199", - "connect_end": "199", - "ssl_start": "199", - "ssl_end": "199", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/?gws_rd=ssl", - "score_progressive_jpeg": -1, - "load_end": 480, - "ttfb_start": "213", - "ttfb_end": 418, - "download_start": 418, - "download_end": 480, - "download_ms": 62, - "all_start": "213", - "all_end": 480, - "all_ms": "267", - "headers": { - "request": [ - "GET /?gws_rd=ssl HTTP/1.1", - "Host: www.google.com", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 05225A0A-144B-44A2-A94B-364C8B987AB1" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=0", - "content-encoding: gzip", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:35:23 GMT", - "expires: -1", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 1, - "number": 2 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=a79bVPW5FZPnoAS_rYIY&e=3700261,4011550,4011551,4011557,4011558,4011559,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021341,4021532,4021597,4022074,4022318,4022495,4022688,4023367,4023566,4023709,4023972,4023979,4024625,4024691,4024905,4024932,8500272,8500394,8500699,8500755,10200083,10200716,10200744,10200766&atyp=csi&adh=&xjs=init.71.28.sb.42.p.12.spch.6.imap.2.m.2&action=&srt=503&p=s&npn=1&rt=xjsls.25,prt.26,xjses.186,xjsee.330,xjs.378,ol.594,iml.127,wsrt.503,cst.0,dnst.0,rqst.268,rspt.62", - "responseCode": "204", - "load_ms": "110", - "ttfb_ms": "109", - "load_start": "1130", - "bytesOut": "871", - "bytesIn": "251", - "objectSize": "0", - "contentType": "text/html", - "type": "3", - "socket": "155", - "score_cache": "0", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=a79bVPW5FZPnoAS_rYIY&e=3700261,4011550,4011551,4011557,4011558,4011559,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021341,4021532,4021597,4022074,4022318,4022495,4022688,4023367,4023566,4023709,4023972,4023979,4024625,4024691,4024905,4024932,8500272,8500394,8500699,8500755,10200083,10200716,10200744,10200766&atyp=csi&adh=&xjs=init.71.28.sb.42.p.12.spch.6.imap.2.m.2&action=&srt=503&p=s&npn=1&rt=xjsls.25,prt.26,xjses.186,xjsee.330,xjs.378,ol.594,iml.127,wsrt.503,cst.0,dnst.0,rqst.268,rspt.62", - "score_progressive_jpeg": -1, - "load_end": 1240, - "ttfb_start": "1130", - "ttfb_end": 1239, - "download_start": 1239, - "download_end": 1240, - "download_ms": 1, - "all_start": "1130", - "all_end": 1240, - "all_ms": "110", - "headers": { - "request": [ - "GET /gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=a79bVPW5FZPnoAS_rYIY&e=3700261,4011550,4011551,4011557,4011558,4011559,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021341,4021532,4021597,4022074,4022318,4022495,4022688,4023367,4023566,4023709,4023972,4023979,4024625,4024691,4024905,4024932,8500272,8500394,8500699,8500755,10200083,10200716,10200744,10200766&atyp=csi&adh=&xjs=init.71.28.sb.42.p.12.spch.6.imap.2.m.2&action=&srt=503&p=s&npn=1&rt=xjsls.25,prt.26,xjses.186,xjsee.330,xjs.378,ol.594,iml.127,wsrt.503,cst.0,dnst.0,rqst.268,rspt.62 HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 05225A0A-144B-44A2-A94B-364C8B987AB1" - ], - "response": [ - "HTTP/1.1 204 No Content", - "alternate-protocol: 443:quic,p=0.01", - "content-length: 0", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:35:24 GMT", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 2, - "number": 3 - } - ], - "requestsDoc": 2, - "responses_200": 1, - "responses_404": 0, - "responses_other": 1, - "result": 0, - "render": 693, - "fullyLoaded": 1240, - "cached": 1, - "docTime": 1103, - "domTime": 0, - "score_cache": 0, - "score_cdn": -1, - "score_gzip": 100, - "score_cookies": -1, - "score_keep-alive": 100, - "score_minify": -1, - "score_combine": 100, - "score_compress": -1, - "score_etags": -1, - "gzip_total": 280, - "gzip_savings": 0, - "minify_total": 0, - "minify_savings": 0, - "image_total": 0, - "image_savings": 0, - "optimization_checked": 1, - "aft": 0, - "domElements": 288, - "pageSpeedVersion": "1.9", - "title": "Google", - "titleTime": 691, - "loadEventStart": 1090, - "loadEventEnd": 1100, - "domContentLoadedEventStart": 529, - "domContentLoadedEventEnd": 572, - "lastVisualChange": 0, - "browser_name": "Google Chrome", - "browser_version": "38.0.2125.111", - "server_count": 5, - "server_rtt": 0, - "base_page_cdn": "Google", - "adult_site": 0, - "fixed_viewport": 0, - "score_progressive_jpeg": -1, - "firstPaint": 609, - "docCPUms": 982.806, - "fullyLoadedCPUms": 1092.007, - "docCPUpct": 87, - "fullyLoadedCPUpct": 33, - "isResponsive": -1, - "date": 1415298686, - "CSI": [ - "v", - "s", - "imc", - "imn", - "imp", - "ei", - "e", - "atyp", - "adh", - "xjs", - "action", - "srt", - "p", - "npn", - "rt", - "xjsls", - "prt", - "xjses", - "xjsee", - "ol", - "iml", - "wsrt", - "cst", - "dnst", - "rqst", - "rspt" - ], - "CSI.v": 3, - "CSI.s": "webhp", - "CSI.imc": 1, - "CSI.imn": 1, - "CSI.imp": 1, - "CSI.ei": "a79bVPW5FZPnoAS_rYIY", - "CSI.e": "3700261,4011550,4011551,4011557,4011558,4011559,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021341,4021532,4021597,4022074,4022318,4022495,4022688,4023367,4023566,4023709,4023972,4023979,4024625,4024691,4024905,4024932,8500272,8500394,8500699,8500755,10200083,10200716,10200744,10200766", - "CSI.atyp": "csi", - "CSI.adh": "", - "CSI.xjs": 378, - "CSI.action": "", - "CSI.srt": 503, - "CSI.p": "s", - "CSI.npn": 1, - "CSI.rt": "xjsls.25,prt.26,xjses.186,xjsee.330,xjs.378,ol.594,iml.127,wsrt.503,cst.0,dnst.0,rqst.268,rspt.62", - "CSI.xjsls": 25, - "CSI.prt": 26, - "CSI.xjses": 186, - "CSI.xjsee": 330, - "CSI.ol": 594, - "CSI.iml": 127, - "CSI.wsrt": 503, - "CSI.cst": 0, - "CSI.dnst": 0, - "CSI.rqst": 268, - "CSI.rspt": 62, - "SpeedIndex": 0, - "visualComplete": 0, - "run": 3, - "effectiveBps": 104026, - "effectiveBpsDoc": 124646, - "tester": "IE9103-192.168.101.93", - "pages": { - "details": "http://www.webpagetest.org/details.php?test=141106_TM_ZFM&run=3&cached=1", - "checklist": "http://www.webpagetest.org/performance_optimization.php?test=141106_TM_ZFM&run=3&cached=1", - "breakdown": "http://www.webpagetest.org/breakdown.php?test=141106_TM_ZFM&run=3&cached=1", - "domains": "http://www.webpagetest.org/domains.php?test=141106_TM_ZFM&run=3&cached=1", - "screenShot": "http://www.webpagetest.org/screen_shot.php?test=141106_TM_ZFM&run=3&cached=1" - }, - "thumbnails": { - "waterfall": "http://www.webpagetest.org/result/141106_TM_ZFM/3_Cached_waterfall_thumb.png", - "checklist": "http://www.webpagetest.org/result/141106_TM_ZFM/3_Cached_optimization_thumb.png", - "screenShot": "http://www.webpagetest.org/result/141106_TM_ZFM/3_Cached_screen_thumb.png" - }, - "images": { - "waterfall": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/3_Cached_waterfall.png", - "connectionView": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/3_Cached_connection.png", - "checklist": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/3_Cached_optimization.png", - "screenShot": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/3_Cached_screen.jpg" - }, - "rawData": { - "headers": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/3_Cached_report.txt", - "pageData": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/3_Cached_IEWPG.txt", - "requestsData": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/3_Cached_IEWTR.txt", - "utilization": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/3_Cached_progress.csv" - }, - "videoFrames": [ - { - "time": 0, - "image": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/video_3_cached/frame_0000.jpg", - "VisuallyComplete": 100 - } - ], - "domains": { - "moc.elgoog.www": { - "bytes": 53627, - "requests": 3, - "connections": 2 - } - }, - "breakdown": { - "html": { - "color": [ - 130, - 181, - 252 - ], - "bytes": 53627, - "requests": 3 - }, - "js": { - "color": [ - 254, - 197, - 132 - ], - "bytes": 0, - "requests": 0 - }, - "css": { - "color": [ - 178, - 234, - 148 - ], - "bytes": 0, - "requests": 0 - }, - "image": { - "color": [ - 196, - 154, - 232 - ], - "bytes": 0, - "requests": 0 - }, - "flash": { - "color": [ - 45, - 183, - 193 - ], - "bytes": 0, - "requests": 0 - }, - "font": { - "color": [ - 255, - 82, - 62 - ], - "bytes": 0, - "requests": 0 - }, - "other": { - "color": [ - 196, - 196, - 196 - ], - "bytes": 0, - "requests": 0 - } - } - } - } - }, - "fvonly": false, - "successfulFVRuns": 3, - "successfulRVRuns": 3, - "average": { - "firstView": { - "loadTime": 2153, - "TTFB": 596.33333333333, - "bytesOut": 7487.6666666667, - "bytesOutDoc": 6613, - "bytesIn": 405286, - "bytesInDoc": 387365.33333333, - "connections": 4.6666666666667, - "requests": 12, - "requestsDoc": 10, - "responses_200": 10, - "responses_404": 0, - "responses_other": 1, - "result": 0, - "render": 957.33333333333, - "fullyLoaded": 2312.3333333333, - "cached": 0, - "docTime": 2153, - "domTime": 0, - "score_cache": 63, - "score_cdn": 77, - "score_gzip": 100, - "score_cookies": -1, - "score_keep-alive": 100, - "score_minify": -1, - "score_combine": 100, - "score_compress": -1, - "score_etags": -1, - "gzip_total": 2934.6666666667, - "gzip_savings": 0, - "minify_total": 0, - "minify_savings": 0, - "image_total": 0, - "image_savings": 0, - "optimization_checked": 1, - "aft": 0, - "domElements": 288, - "pageSpeedVersion": 1.9, - "titleTime": 956.66666666667, - "loadEventStart": 2140.6666666667, - "loadEventEnd": 2148.6666666667, - "domContentLoadedEventStart": 764.66666666667, - "domContentLoadedEventEnd": 820.66666666667, - "lastVisualChange": 0, - "server_count": 5, - "server_rtt": 0, - "adult_site": 0, - "fixed_viewport": 0, - "score_progressive_jpeg": -1, - "firstPaint": 249, - "docCPUms": 1565.2103333333, - "fullyLoadedCPUms": 1996.8126666667, - "docCPUpct": 71.333333333333, - "fullyLoadedCPUpct": 45, - "isResponsive": -1, - "date": 1415298749.6667, - "CSI.v": 3, - "CSI.imc": 1, - "CSI.imn": 1, - "CSI.imp": 1, - "CSI.xjs": 863, - "CSI.srt": 3254, - "CSI.npn": 1, - "CSI.xjsls": 37.666666666667, - "CSI.prt": 38.666666666667, - "CSI.xjses": 621, - "CSI.xjsee": 821.33333333333, - "CSI.ol": 1419.3333333333, - "CSI.iml": 778, - "CSI.wsrt": 725.66666666667, - "CSI.cst": 150, - "CSI.dnst": 0, - "CSI.rqst": 345.66666666667, - "CSI.rspt": 97.333333333333, - "SpeedIndex": 0, - "visualComplete": 0, - "run": 2, - "effectiveBps": 242137, - "effectiveBpsDoc": 254696, - "avgRun": 1 - }, - "repeatView": { - "loadTime": 1275.6666666667, - "TTFB": 460.33333333333, - "bytesOut": 9298.3333333333, - "bytesOutDoc": 8738.3333333333, - "bytesIn": 85517.666666667, - "bytesInDoc": 85390.666666667, - "connections": 2, - "requests": 3, - "requestsDoc": 2, - "responses_200": 1, - "responses_404": 0, - "responses_other": 1, - "result": 0, - "render": 793.33333333333, - "fullyLoaded": 1413.3333333333, - "cached": 1, - "docTime": 1275.6666666667, - "domTime": 0, - "score_cache": 0, - "score_cdn": -1, - "score_gzip": 100, - "score_cookies": -1, - "score_keep-alive": 100, - "score_minify": -1, - "score_combine": 100, - "score_compress": -1, - "score_etags": -1, - "gzip_total": 280, - "gzip_savings": 0, - "minify_total": 0, - "minify_savings": 0, - "image_total": 0, - "image_savings": 0, - "optimization_checked": 1, - "aft": 0, - "domElements": 288, - "pageSpeedVersion": 1.9, - "titleTime": 691.33333333333, - "loadEventStart": 1263.6666666667, - "loadEventEnd": 1280.3333333333, - "domContentLoadedEventStart": 601.66666666667, - "domContentLoadedEventEnd": 649.66666666667, - "lastVisualChange": 0, - "server_count": 5, - "server_rtt": 0, - "adult_site": 0, - "fixed_viewport": 0, - "score_progressive_jpeg": -1, - "firstPaint": 203, - "docCPUms": 1138.8073333333, - "fullyLoadedCPUms": 1482.0096666667, - "docCPUpct": 88, - "fullyLoadedCPUpct": 41.666666666667, - "isResponsive": -1, - "date": 1415298762, - "CSI.v": 3, - "CSI.imc": 1, - "CSI.imn": 1, - "CSI.imp": 1, - "CSI.xjs": 450.33333333333, - "CSI.srt": 3096, - "CSI.npn": 1, - "CSI.xjsls": 36, - "CSI.prt": 37.333333333333, - "CSI.xjses": 229, - "CSI.xjsee": 406.66666666667, - "CSI.ol": 711, - "CSI.iml": 155, - "CSI.wsrt": 564, - "CSI.cst": 37.333333333333, - "CSI.dnst": 0, - "CSI.rqst": 274.33333333333, - "CSI.rspt": 76.333333333333, - "SpeedIndex": 0, - "visualComplete": 0, - "run": 2, - "effectiveBps": 90711.333333333, - "effectiveBpsDoc": 106299, - "avgRun": 1 - } - }, - "standardDeviation": { - "firstView": { - "loadTime": 225, - "TTFB": 108, - "bytesOut": 338, - "bytesOutDoc": 330, - "bytesIn": 2094, - "bytesInDoc": 2086, - "connections": 0, - "requests": 0, - "requestsDoc": 0, - "responses_200": 0, - "responses_404": 0, - "responses_other": 0, - "result": 0, - "render": 125, - "fullyLoaded": 256, - "cached": 0, - "docTime": 225, - "domTime": 0, - "score_cache": 0, - "score_cdn": 0, - "score_gzip": 0, - "score_cookies": 0, - "score_keep-alive": 0, - "score_minify": 0, - "score_combine": 0, - "score_compress": 0, - "score_etags": 0, - "gzip_total": 0, - "gzip_savings": 0, - "minify_total": 0, - "minify_savings": 0, - "image_total": 0, - "image_savings": 0, - "optimization_checked": 0, - "aft": 0, - "domElements": 0, - "pageSpeedVersion": 0, - "titleTime": 98, - "loadEventStart": 225, - "loadEventEnd": 227, - "domContentLoadedEventStart": 93, - "domContentLoadedEventEnd": 95, - "lastVisualChange": 0, - "server_count": 0, - "server_rtt": 0, - "adult_site": 0, - "fixed_viewport": 0, - "score_progressive_jpeg": 0, - "firstPaint": 352, - "docCPUms": 313, - "fullyLoadedCPUms": 480, - "docCPUpct": 7, - "fullyLoadedCPUpct": 8, - "isResponsive": 0, - "date": 106, - "CSI.v": 0, - "CSI.imc": 0, - "CSI.imn": 0, - "CSI.imp": 0, - "CSI.xjs": 142, - "CSI.srt": 1925, - "CSI.npn": 0, - "CSI.xjsls": 11, - "CSI.prt": 11, - "CSI.xjses": 106, - "CSI.xjsee": 149, - "CSI.ol": 217, - "CSI.iml": 431, - "CSI.wsrt": 94, - "CSI.cst": 9, - "CSI.dnst": 0, - "CSI.rqst": 81, - "CSI.rspt": 19, - "SpeedIndex": 0, - "visualComplete": 0, - "run": 0, - "effectiveBps": 36954, - "effectiveBpsDoc": 37681, - "avgRun": null - }, - "repeatView": { - "loadTime": 122, - "TTFB": 35, - "bytesOut": 11, - "bytesOutDoc": 2, - "bytesIn": 29, - "bytesInDoc": 29, - "connections": 0, - "requests": 0, - "requestsDoc": 0, - "responses_200": 0, - "responses_404": 0, - "responses_other": 0, - "result": 0, - "render": 82, - "fullyLoaded": 122, - "cached": 0, - "docTime": 122, - "domTime": 0, - "score_cache": 0, - "score_cdn": 0, - "score_gzip": 0, - "score_cookies": 0, - "score_keep-alive": 0, - "score_minify": 0, - "score_combine": 0, - "score_compress": 0, - "score_etags": 0, - "gzip_total": 0, - "gzip_savings": 0, - "minify_total": 0, - "minify_savings": 0, - "image_total": 0, - "image_savings": 0, - "optimization_checked": 0, - "aft": 0, - "domElements": 0, - "pageSpeedVersion": 0, - "titleTime": 0, - "loadEventStart": 122, - "loadEventEnd": 127, - "domContentLoadedEventStart": 51, - "domContentLoadedEventEnd": 55, - "lastVisualChange": 0, - "server_count": 0, - "server_rtt": 0, - "adult_site": 0, - "fixed_viewport": 0, - "score_progressive_jpeg": 0, - "firstPaint": 287, - "docCPUms": 113, - "fullyLoadedCPUms": 277, - "docCPUpct": 1, - "fullyLoadedCPUpct": 6, - "isResponsive": 0, - "date": 106, - "CSI.v": 0, - "CSI.imc": 0, - "CSI.imn": 0, - "CSI.imp": 0, - "CSI.xjs": 52, - "CSI.srt": 1932, - "CSI.npn": 0, - "CSI.xjsls": 8, - "CSI.prt": 8, - "CSI.xjses": 32, - "CSI.xjsee": 57, - "CSI.ol": 82, - "CSI.iml": 19, - "CSI.wsrt": 43, - "CSI.cst": 26, - "CSI.dnst": 0, - "CSI.rqst": 11, - "CSI.rspt": 12, - "SpeedIndex": 0, - "visualComplete": 0, - "run": 0, - "effectiveBps": 9672, - "effectiveBpsDoc": 13326, - "avgRun": null - } - }, - "median": { - "firstView": { - "URL": "http://www.google.com", - "loadTime": 2194, - "TTFB": 749, - "bytesOut": 7722, - "bytesOutDoc": 6845, - "bytesIn": 406739, - "bytesInDoc": 388800, - "connections": 5, - "requests": [ - { - "ip_addr": "74.125.225.81", - "method": "GET", - "host": "www.google.com", - "url": "/", - "responseCode": "302", - "load_ms": "117", - "ttfb_ms": "117", - "load_start": "49", - "bytesOut": "342", - "bytesIn": "1044", - "objectSize": "231", - "cacheControl": "private", - "contentType": "text/html", - "type": "3", - "socket": "25", - "score_cache": "0", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "0", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "49", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "server_rtt": "49", - "client_port": "64165", - "jpeg_scan_count": "0", - "full_url": "http://www.google.com/", - "score_progressive_jpeg": -1, - "load_end": 166, - "ttfb_start": "49", - "ttfb_end": 166, - "download_start": 166, - "download_end": 166, - "download_ms": 0, - "all_start": "49", - "all_end": 166, - "all_ms": "117", - "headers": { - "request": [ - "GET / HTTP/1.1", - "Host: www.google.com", - "Connection: keep-alive", - "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36 PTST/191", - "Accept-Encoding: gzip,deflate,sdch", - "Accept-Language: en-US,en;q=0.8" - ], - "response": [ - "HTTP/1.1 302 Found", - "Location: https://www.google.com/?gws_rd=ssl", - "Cache-Control: private", - "Content-Type: text/html; charset=UTF-8", - "Set-Cookie: PREF=ID=b728500ce0ca065c:FF=0:TM=1415298912:LM=1415298912:S=zh8V8B9SxIDho86-; expires=Sat, 05-Nov-2016 18:35:12 GMT; path=/; domain=.google.com", - "Set-Cookie: NID=67=hig1z6hORww_j-ZirykxFzF_QOsE5U-cSRBt-4Z9KlUACPm1wi_4daX4WSVBI-NvWrtsBV-sBmZ9nQFBVzooWg545tAJDZybR5D6RRNI3-AsppdAXhKMas9gxZI96dhQ; expires=Fri, 08-May-2015 18:35:12 GMT; path=/; domain=.google.com; HttpOnly", - "P3P: CP=\"This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info.\"", - "Date: Thu, 06 Nov 2014 18:35:12 GMT", - "Server: gws", - "Content-Length: 231", - "X-XSS-Protection: 1; mode=block", - "X-Frame-Options: SAMEORIGIN", - "Alternate-Protocol: 80:quic,p=0.01" - ] - }, - "index": 0, - "number": 1 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/?gws_rd=ssl", - "responseCode": "200", - "load_ms": "460", - "ttfb_ms": "383", - "load_start": "366", - "bytesOut": "254", - "bytesIn": "57605", - "objectSize": "0", - "expires": "-1", - "cacheControl": "private, max-age=0", - "contentType": "text/html", - "contentEncoding": "gzip", - "type": "3", - "socket": "261", - "score_cache": "-1", - "score_cdn": "-1", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 0, - "connect_ms": 36, - "ssl_ms": 127, - "gzip_total": "799", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "-1", - "cdn_provider": "Google", - "dns_start": "202", - "dns_end": "202", - "connect_start": "202", - "connect_end": "238", - "ssl_start": "238", - "ssl_end": "365", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/?gws_rd=ssl", - "score_progressive_jpeg": -1, - "load_end": 826, - "ttfb_start": "366", - "ttfb_end": 749, - "download_start": 749, - "download_end": 826, - "download_ms": 77, - "all_start": "202", - "all_end": 826, - "all_ms": 623, - "headers": { - "request": [ - "GET /?gws_rd=ssl HTTP/1.1", - "Host: www.google.com", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=0", - "content-encoding: gzip", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:35:12 GMT", - "expires: -1", - "p3p: CP=\"This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info.\"", - "server: gws", - "set-cookie: PREF=ID=b728500ce0ca065c:U=ffc0fb4c40c98be0:FF=0:TM=1415298912:LM=1415298912:S=OZ50oqzyGSXCcI0w; expires=Sat, 05-Nov-2016 18:35:12 GMT; path=/; domain=.google.com", - "NID=67=mGg_6DOdS_TuKOXz3CFTdCqjkNEP5o91Wbh0WdZ_JxJcHjw-kkoHDdpMAR57vwg4sPriwQXK1O5K-_Zy3S4KOUtOCmqwvgLA0eh_VuulzoWlmaWFu6DQaafCJsJAk7ka; expires=Fri, 08-May-2015 18:35:12 GMT; path=/; domain=.google.com; HttpOnly", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 1, - "number": 2 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/images/srpr/logo11w.png", - "responseCode": "200", - "load_ms": "117", - "ttfb_ms": "70", - "load_start": "998", - "bytesOut": "330", - "bytesIn": "16919", - "objectSize": "0", - "expires": "Thu, 06 Nov 2014 18:35:13 GMT", - "cacheControl": "private, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "261", - "score_cache": "0", - "score_cdn": "100", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/?gws_rd=ssl", - "initiator_line": "28", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/images/srpr/logo11w.png", - "score_progressive_jpeg": -1, - "load_end": 1115, - "ttfb_start": "998", - "ttfb_end": 1068, - "download_start": 1068, - "download_end": 1115, - "download_ms": 47, - "all_start": "998", - "all_end": 1115, - "all_ms": "117", - "headers": { - "request": [ - "GET /images/srpr/logo11w.png HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=31536000", - "content-length: 14022", - "content-type: image/png", - "date: Thu, 06 Nov 2014 18:35:13 GMT", - "expires: Thu, 06 Nov 2014 18:35:13 GMT", - "last-modified: Wed, 09 Oct 2013 01:35:39 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 2, - "number": 3 - }, - { - "method": "GET", - "host": "ssl.gstatic.com", - "url": "/gb/images/i1_71651352.png", - "responseCode": "200", - "load_ms": "81", - "ttfb_ms": "45", - "load_start": "1097", - "bytesOut": "333", - "bytesIn": "14285", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 15:23:35 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "336", - "score_cache": "100", - "score_cdn": "0", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 0, - "connect_ms": 37, - "ssl_ms": 66, - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "dns_start": "993", - "dns_end": "993", - "connect_start": "993", - "connect_end": "1030", - "ssl_start": "1030", - "ssl_end": "1096", - "initiator": "https://www.google.com/?gws_rd=ssl", - "initiator_line": "76", - "initiator_column": "35", - "server_count": "4", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://ssl.gstatic.com/gb/images/i1_71651352.png", - "score_progressive_jpeg": -1, - "load_end": 1178, - "ttfb_start": "1097", - "ttfb_end": 1142, - "download_start": 1142, - "download_end": 1178, - "download_ms": 36, - "all_start": "993", - "all_end": 1178, - "all_ms": 184, - "headers": { - "request": [ - "GET /gb/images/i1_71651352.png HTTP/1.1", - "Host: ssl.gstatic.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 97898", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-length: 14055", - "content-type: image/png", - "date: Wed, 05 Nov 2014 15:23:35 GMT", - "expires: Thu, 05 Nov 2015 15:23:35 GMT", - "last-modified: Thu, 16 Oct 2014 18:20:30 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 3, - "number": 4 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "responseCode": "200", - "load_ms": "346", - "ttfb_ms": "99", - "load_start": "1123", - "bytesOut": "443", - "bytesIn": "180939", - "objectSize": "0", - "expires": "Fri, 06 Nov 2015 11:13:26 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "261", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "429", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/?gws_rd=ssl", - "initiator_line": "94", - "initiator_column": "17237", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "score_progressive_jpeg": -1, - "load_end": 1469, - "ttfb_start": "1123", - "ttfb_end": 1222, - "download_start": 1222, - "download_end": 1469, - "download_ms": 247, - "all_start": "1123", - "all_end": 1469, - "all_ms": "346", - "headers": { - "request": [ - "GET /xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP/1.1", - "Host: www.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 26507", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 130931", - "content-type: text/javascript; charset=UTF-8", - "date: Thu, 06 Nov 2014 11:13:26 GMT", - "expires: Fri, 06 Nov 2015 11:13:26 GMT", - "last-modified: Tue, 04 Nov 2014 19:30:26 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 4, - "number": 5 - }, - { - "method": "GET", - "host": "www.gstatic.com", - "url": "/og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w", - "responseCode": "200", - "load_ms": "317", - "ttfb_ms": "316", - "load_start": "1310", - "bytesOut": "392", - "bytesIn": "184146", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 13:04:24 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "392", - "score_cache": "100", - "score_cdn": "0", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 57, - "connect_ms": 39, - "ssl_ms": 64, - "gzip_total": "429", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "dns_start": "1149", - "dns_end": "1206", - "connect_start": "1206", - "connect_end": "1245", - "ssl_start": "1245", - "ssl_end": "1309", - "initiator": "https://www.google.com/?gws_rd=ssl", - "initiator_line": "57", - "initiator_column": "143", - "server_count": "4", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.gstatic.com/og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w", - "score_progressive_jpeg": -1, - "load_end": 1627, - "ttfb_start": "1310", - "ttfb_end": 1626, - "download_start": 1626, - "download_end": 1627, - "download_ms": 1, - "all_start": "1149", - "all_end": 1627, - "all_ms": 477, - "headers": { - "request": [ - "GET /og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w HTTP/1.1", - "Host: www.gstatic.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 106249", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 55207", - "content-type: text/javascript; charset=UTF-8", - "date: Wed, 05 Nov 2014 13:04:24 GMT", - "expires: Thu, 05 Nov 2015 13:04:24 GMT", - "last-modified: Tue, 04 Nov 2014 01:19:09 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 5, - "number": 6 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm/am=lKj_TwWDwIxAARMQrA4/rt=j/d=0/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "responseCode": "200", - "load_ms": "130", - "ttfb_ms": "57", - "load_start": "1618", - "bytesOut": "682", - "bytesIn": "58844", - "objectSize": "0", - "expires": "Fri, 06 Nov 2015 12:08:37 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "261", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "428", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "initiator_line": "101", - "initiator_column": "112", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm/am=lKj_TwWDwIxAARMQrA4/rt=j/d=0/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "score_progressive_jpeg": -1, - "load_end": 1748, - "ttfb_start": "1618", - "ttfb_end": 1675, - "download_start": 1675, - "download_end": 1748, - "download_ms": 73, - "all_start": "1618", - "all_end": 1748, - "all_ms": "130", - "headers": { - "request": [ - "GET /xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm/am=lKj_TwWDwIxAARMQrA4/rt=j/d=0/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP/1.1", - "Host: www.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 23196", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 48157", - "content-type: text/javascript; charset=UTF-8", - "date: Thu, 06 Nov 2014 12:08:37 GMT", - "expires: Fri, 06 Nov 2015 12:08:37 GMT", - "last-modified: Tue, 04 Nov 2014 19:30:26 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 6, - "number": 7 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/textinputassistant/tia.png", - "responseCode": "200", - "load_ms": "231", - "ttfb_ms": "224", - "load_start": "1620", - "bytesOut": "333", - "bytesIn": "485", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 06:57:32 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "261", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/?gws_rd=ssl", - "initiator_line": "1", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/textinputassistant/tia.png", - "score_progressive_jpeg": -1, - "load_end": 1851, - "ttfb_start": "1620", - "ttfb_end": 1844, - "download_start": 1844, - "download_end": 1851, - "download_ms": 7, - "all_start": "1620", - "all_end": 1851, - "all_ms": "231", - "headers": { - "request": [ - "GET /textinputassistant/tia.png HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 128261", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-length: 387", - "content-type: image/png", - "date: Wed, 05 Nov 2014 06:57:32 GMT", - "expires: Thu, 05 Nov 2015 06:57:32 GMT", - "last-modified: Mon, 02 Apr 2012 02:13:37 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 7, - "number": 8 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/extern_chrome/854094c746d4c9a.js?bav=on.2,or.r_qf.", - "responseCode": "200", - "load_ms": "230", - "ttfb_ms": "227", - "load_start": "1622", - "bytesOut": "340", - "bytesIn": "36586", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 00:00:00 GMT", - "cacheControl": "private", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "261", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "422", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31382687", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "initiator_line": "1187", - "initiator_column": "181", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/extern_chrome/854094c746d4c9a.js?bav=on.2,or.r_qf.", - "score_progressive_jpeg": -1, - "load_end": 1852, - "ttfb_start": "1622", - "ttfb_end": 1849, - "download_start": 1849, - "download_end": 1852, - "download_ms": 3, - "all_start": "1622", - "all_end": 1852, - "all_ms": "230", - "headers": { - "request": [ - "GET /extern_chrome/854094c746d4c9a.js?bav=on.2,or.r_qf. HTTP/1.1", - "Host: www.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private", - "content-disposition: attachment; filename=\"f.txt\"", - "content-encoding: gzip", - "content-length: 13825", - "content-type: text/javascript; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:35:13 GMT", - "expires: Thu, 05 Nov 2015 00:00:00 GMT", - "last-modified: Thu, 07 Nov 2013 00:00:00 GMT", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 8, - "number": 9 - }, - { - "method": "GET", - "host": "apis.google.com", - "url": "/_/scs/abc-static/_/js/k=gapi.gapi.en.3_mJ9Wvc9FU.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg/cb=gapi.loaded_0", - "responseCode": "200", - "load_ms": "113", - "ttfb_ms": "49", - "load_start": "1981", - "bytesOut": "456", - "bytesIn": "49179", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 15:23:35 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "476", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 32, - "connect_ms": 36, - "ssl_ms": 62, - "gzip_total": "428", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "1851", - "dns_end": "1883", - "connect_start": "1883", - "connect_end": "1919", - "ssl_start": "1919", - "ssl_end": "1981", - "initiator": "https://www.gstatic.com/og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w", - "initiator_line": "138", - "initiator_column": "381", - "server_count": "11", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://apis.google.com/_/scs/abc-static/_/js/k=gapi.gapi.en.3_mJ9Wvc9FU.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg/cb=gapi.loaded_0", - "score_progressive_jpeg": -1, - "load_end": 2094, - "ttfb_start": "1981", - "ttfb_end": 2030, - "download_start": 2030, - "download_end": 2094, - "download_ms": 64, - "all_start": "1851", - "all_end": 2094, - "all_ms": 243, - "headers": { - "request": [ - "GET /_/scs/abc-static/_/js/k=gapi.gapi.en.3_mJ9Wvc9FU.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg/cb=gapi.loaded_0 HTTP/1.1", - "Host: apis.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 97899", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 48911", - "content-type: text/javascript; charset=UTF-8", - "date: Wed, 05 Nov 2014 15:23:35 GMT", - "expires: Thu, 05 Nov 2015 15:23:35 GMT", - "last-modified: Thu, 16 Oct 2014 07:30:29 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 9, - "number": 10 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/images/nav_logo195.png", - "responseCode": "200", - "load_ms": "86", - "ttfb_ms": "70", - "load_start": "2214", - "bytesOut": "329", - "bytesIn": "16300", - "objectSize": "0", - "expires": "Thu, 06 Nov 2014 18:35:14 GMT", - "cacheControl": "private, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "261", - "score_cache": "0", - "score_cdn": "100", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/images/nav_logo195.png", - "score_progressive_jpeg": -1, - "load_end": 2300, - "ttfb_start": "2214", - "ttfb_end": 2284, - "download_start": 2284, - "download_end": 2300, - "download_ms": 16, - "all_start": "2214", - "all_end": 2300, - "all_ms": "86", - "headers": { - "request": [ - "GET /images/nav_logo195.png HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=31536000", - "content-length: 16214", - "content-type: image/png", - "date: Thu, 06 Nov 2014 18:35:14 GMT", - "expires: Thu, 06 Nov 2014 18:35:14 GMT", - "last-modified: Wed, 21 May 2014 00:02:44 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 10, - "number": 11 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=YL9bVP6qJ5DuoAS6x4KwCg&e=3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.83.28.sb.49.p.12.m.8.spch.6.imap.2&action=&srt=3895&p=s&npn=1&rt=xjsls.34,prt.35,xjses.575,xjsee.725,xjs.764,ol.1332,iml.258,wsrt.857,cst.163,dnst.0,rqst.460,rspt.77", - "responseCode": "204", - "load_ms": "119", - "ttfb_ms": "118", - "load_start": "2217", - "bytesOut": "844", - "bytesIn": "251", - "objectSize": "0", - "contentType": "text/html", - "type": "3", - "socket": "261", - "score_cache": "0", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=YL9bVP6qJ5DuoAS6x4KwCg&e=3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.83.28.sb.49.p.12.m.8.spch.6.imap.2&action=&srt=3895&p=s&npn=1&rt=xjsls.34,prt.35,xjses.575,xjsee.725,xjs.764,ol.1332,iml.258,wsrt.857,cst.163,dnst.0,rqst.460,rspt.77", - "score_progressive_jpeg": -1, - "load_end": 2336, - "ttfb_start": "2217", - "ttfb_end": 2335, - "download_start": 2335, - "download_end": 2336, - "download_ms": 1, - "all_start": "2217", - "all_end": 2336, - "all_ms": "119", - "headers": { - "request": [ - "GET /gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=YL9bVP6qJ5DuoAS6x4KwCg&e=3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.83.28.sb.49.p.12.m.8.spch.6.imap.2&action=&srt=3895&p=s&npn=1&rt=xjsls.34,prt.35,xjses.575,xjsee.725,xjs.764,ol.1332,iml.258,wsrt.857,cst.163,dnst.0,rqst.460,rspt.77 HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F" - ], - "response": [ - "HTTP/1.1 204 No Content", - "alternate-protocol: 443:quic,p=0.01", - "content-length: 0", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:35:14 GMT", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 11, - "number": 12 - } - ], - "requestsDoc": 10, - "responses_200": 10, - "responses_404": 0, - "responses_other": 1, - "result": 0, - "render": 1097, - "fullyLoaded": 2336, - "cached": 0, - "docTime": 2194, - "domTime": 0, - "score_cache": 63, - "score_cdn": 77, - "score_gzip": 100, - "score_cookies": -1, - "score_keep-alive": 100, - "score_minify": -1, - "score_combine": 100, - "score_compress": -1, - "score_etags": -1, - "gzip_total": 2935, - "gzip_savings": 0, - "minify_total": 0, - "minify_savings": 0, - "image_total": 0, - "image_savings": 0, - "optimization_checked": 1, - "aft": 0, - "domElements": 288, - "pageSpeedVersion": "1.9", - "title": "Google", - "titleTime": 1096, - "loadEventStart": 2185, - "loadEventEnd": 2193, - "domContentLoadedEventStart": 892, - "domContentLoadedEventEnd": 945, - "lastVisualChange": 0, - "browser_name": "Google Chrome", - "browser_version": "38.0.2125.111", - "server_count": 5, - "server_rtt": 0, - "base_page_cdn": "Google", - "adult_site": 0, - "fixed_viewport": 0, - "score_progressive_jpeg": -1, - "firstPaint": 0, - "docCPUms": 1528.81, - "fullyLoadedCPUms": 2074.813, - "docCPUpct": 69, - "fullyLoadedCPUpct": 47, - "isResponsive": -1, - "date": 1415298675, - "CSI": [ - "v", - "s", - "imc", - "imn", - "imp", - "ei", - "e", - "atyp", - "adh", - "xjs", - "action", - "srt", - "p", - "npn", - "rt", - "xjsls", - "prt", - "xjses", - "xjsee", - "ol", - "iml", - "wsrt", - "cst", - "dnst", - "rqst", - "rspt" - ], - "CSI.v": 3, - "CSI.s": "webhp", - "CSI.imc": 1, - "CSI.imn": 1, - "CSI.imp": 1, - "CSI.ei": "YL9bVP6qJ5DuoAS6x4KwCg", - "CSI.e": "3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743", - "CSI.atyp": "csi", - "CSI.adh": "", - "CSI.xjs": 764, - "CSI.action": "", - "CSI.srt": 3895, - "CSI.p": "s", - "CSI.npn": 1, - "CSI.rt": "xjsls.34,prt.35,xjses.575,xjsee.725,xjs.764,ol.1332,iml.258,wsrt.857,cst.163,dnst.0,rqst.460,rspt.77", - "CSI.xjsls": 34, - "CSI.prt": 35, - "CSI.xjses": 575, - "CSI.xjsee": 725, - "CSI.ol": 1332, - "CSI.iml": 258, - "CSI.wsrt": 857, - "CSI.cst": 163, - "CSI.dnst": 0, - "CSI.rqst": 460, - "CSI.rspt": 77, - "SpeedIndex": 0, - "visualComplete": 0, - "run": 1, - "effectiveBps": 256294, - "effectiveBpsDoc": 269065, - "tester": "IE9104-192.168.101.94", - "pages": { - "details": "http://www.webpagetest.org/details.php?test=141106_TM_ZFM&run=1&cached=0", - "checklist": "http://www.webpagetest.org/performance_optimization.php?test=141106_TM_ZFM&run=1&cached=0", - "breakdown": "http://www.webpagetest.org/breakdown.php?test=141106_TM_ZFM&run=1&cached=0", - "domains": "http://www.webpagetest.org/domains.php?test=141106_TM_ZFM&run=1&cached=0", - "screenShot": "http://www.webpagetest.org/screen_shot.php?test=141106_TM_ZFM&run=1&cached=0" - }, - "thumbnails": { - "waterfall": "http://www.webpagetest.org/result/141106_TM_ZFM/1_waterfall_thumb.png", - "checklist": "http://www.webpagetest.org/result/141106_TM_ZFM/1_optimization_thumb.png", - "screenShot": "http://www.webpagetest.org/result/141106_TM_ZFM/1_screen_thumb.png" - }, - "images": { - "waterfall": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_waterfall.png", - "connectionView": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_connection.png", - "checklist": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_optimization.png", - "screenShot": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_screen.jpg" - }, - "rawData": { - "headers": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_report.txt", - "pageData": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_IEWPG.txt", - "requestsData": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_IEWTR.txt", - "utilization": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_progress.csv" - }, - "videoFrames": [ - { - "time": 0, - "image": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/video_1/frame_0000.jpg", - "VisuallyComplete": 100 - } - ], - "domains": { - "moc.elgoog.www": { - "bytes": 368973, - "requests": 9, - "connections": 2 - }, - "moc.citatsg.lss": { - "bytes": 14285, - "requests": 1, - "connections": 1 - }, - "moc.citatsg.www": { - "bytes": 184146, - "requests": 1, - "connections": 1 - }, - "moc.elgoog.sipa": { - "bytes": 49179, - "requests": 1, - "connections": 1 - } - }, - "breakdown": { - "html": { - "color": [ - 130, - 181, - 252 - ], - "bytes": 58900, - "requests": 3 - }, - "js": { - "color": [ - 254, - 197, - 132 - ], - "bytes": 509694, - "requests": 5 - }, - "css": { - "color": [ - 178, - 234, - 148 - ], - "bytes": 0, - "requests": 0 - }, - "image": { - "color": [ - 196, - 154, - 232 - ], - "bytes": 47989, - "requests": 4 - }, - "flash": { - "color": [ - 45, - 183, - 193 - ], - "bytes": 0, - "requests": 0 - }, - "font": { - "color": [ - 255, - 82, - 62 - ], - "bytes": 0, - "requests": 0 - }, - "other": { - "color": [ - 196, - 196, - 196 - ], - "bytes": 0, - "requests": 0 - } - } - }, - "repeatView": { - "URL": "http://www.google.com", - "loadTime": 1352, - "TTFB": 505, - "bytesOut": 9302, - "bytesOutDoc": 8740, - "bytesIn": 85557, - "bytesInDoc": 85430, - "connections": 2, - "requests": [ - { - "ip_addr": "74.125.225.81", - "method": "GET", - "host": "www.google.com", - "url": "/", - "responseCode": "302", - "load_ms": "156", - "ttfb_ms": "156", - "load_start": "62", - "bytesOut": "584", - "bytesIn": "532", - "objectSize": "231", - "cacheControl": "private", - "contentType": "text/html", - "type": "3", - "socket": "15", - "score_cache": "0", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "0", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "61", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "server_rtt": "60", - "client_port": "64227", - "jpeg_scan_count": "0", - "full_url": "http://www.google.com/", - "score_progressive_jpeg": -1, - "load_end": 218, - "ttfb_start": "62", - "ttfb_end": 218, - "download_start": 218, - "download_end": 218, - "download_ms": 0, - "all_start": "62", - "all_end": 218, - "all_ms": "156", - "headers": { - "request": [ - "GET / HTTP/1.1", - "Host: www.google.com", - "Connection: keep-alive", - "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36 PTST/191", - "Accept-Encoding: gzip,deflate,sdch", - "Accept-Language: en-US,en;q=0.8", - "Cookie: PREF=ID=b728500ce0ca065c:U=ffc0fb4c40c98be0:FF=0:TM=1415298912:LM=1415298912:S=OZ50oqzyGSXCcI0w; NID=67=mGg_6DOdS_TuKOXz3CFTdCqjkNEP5o91Wbh0WdZ_JxJcHjw-kkoHDdpMAR57vwg4sPriwQXK1O5K-_Zy3S4KOUtOCmqwvgLA0eh_VuulzoWlmaWFu6DQaafCJsJAk7ka" - ], - "response": [ - "HTTP/1.1 302 Found", - "Location: https://www.google.com/?gws_rd=ssl", - "Cache-Control: private", - "Content-Type: text/html; charset=UTF-8", - "Date: Thu, 06 Nov 2014 18:35:24 GMT", - "Server: gws", - "Content-Length: 231", - "X-XSS-Protection: 1; mode=block", - "X-Frame-Options: SAMEORIGIN", - "Alternate-Protocol: 80:quic,p=0.01" - ] - }, - "index": 0, - "number": 1 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/?gws_rd=ssl", - "responseCode": "200", - "load_ms": "265", - "ttfb_ms": "190", - "load_start": "315", - "bytesOut": "254", - "bytesIn": "63195", - "objectSize": "0", - "expires": "-1", - "cacheControl": "private, max-age=0", - "contentType": "text/html", - "contentEncoding": "gzip", - "type": "3", - "socket": "149", - "score_cache": "-1", - "score_cdn": "-1", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 0, - "connect_ms": 0, - "ssl_ms": 55, - "gzip_total": "280", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "-1", - "cdn_provider": "Google", - "dns_start": "259", - "dns_end": "259", - "connect_start": "259", - "connect_end": "259", - "ssl_start": "259", - "ssl_end": "314", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/?gws_rd=ssl", - "score_progressive_jpeg": -1, - "load_end": 580, - "ttfb_start": "315", - "ttfb_end": 505, - "download_start": 505, - "download_end": 580, - "download_ms": 75, - "all_start": "259", - "all_end": 580, - "all_ms": 320, - "headers": { - "request": [ - "GET /?gws_rd=ssl HTTP/1.1", - "Host: www.google.com", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 67027B33-8010-4675-92E8-A02F9E86437E" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=0", - "content-encoding: gzip", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:35:24 GMT", - "expires: -1", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 1, - "number": 2 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=bL9bVJrPJcP8oQSom4LwBg&e=3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.73.28.sb.45.p.12.spch.6.imap.2.m.2&action=&srt=3646&p=s&npn=1&rt=xjsls.39,prt.40,xjses.237,xjsee.420,xjs.470,ol.764,iml.172,wsrt.605,cst.55,dnst.0,rqst.265,rspt.74", - "responseCode": "204", - "load_ms": "108", - "ttfb_ms": "105", - "load_start": "1383", - "bytesOut": "842", - "bytesIn": "251", - "objectSize": "0", - "contentType": "text/html", - "type": "3", - "socket": "149", - "score_cache": "0", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=bL9bVJrPJcP8oQSom4LwBg&e=3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.73.28.sb.45.p.12.spch.6.imap.2.m.2&action=&srt=3646&p=s&npn=1&rt=xjsls.39,prt.40,xjses.237,xjsee.420,xjs.470,ol.764,iml.172,wsrt.605,cst.55,dnst.0,rqst.265,rspt.74", - "score_progressive_jpeg": -1, - "load_end": 1491, - "ttfb_start": "1383", - "ttfb_end": 1488, - "download_start": 1488, - "download_end": 1491, - "download_ms": 3, - "all_start": "1383", - "all_end": 1491, - "all_ms": "108", - "headers": { - "request": [ - "GET /gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=bL9bVJrPJcP8oQSom4LwBg&e=3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.73.28.sb.45.p.12.spch.6.imap.2.m.2&action=&srt=3646&p=s&npn=1&rt=xjsls.39,prt.40,xjses.237,xjsee.420,xjs.470,ol.764,iml.172,wsrt.605,cst.55,dnst.0,rqst.265,rspt.74 HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 67027B33-8010-4675-92E8-A02F9E86437E" - ], - "response": [ - "HTTP/1.1 204 No Content", - "alternate-protocol: 443:quic,p=0.01", - "content-length: 0", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:35:25 GMT", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 2, - "number": 3 - } - ], - "requestsDoc": 2, - "responses_200": 1, - "responses_404": 0, - "responses_other": 1, - "result": 0, - "render": 792, - "fullyLoaded": 1491, - "cached": 1, - "docTime": 1352, - "domTime": 0, - "score_cache": 0, - "score_cdn": -1, - "score_gzip": 100, - "score_cookies": -1, - "score_keep-alive": 100, - "score_minify": -1, - "score_combine": 100, - "score_compress": -1, - "score_etags": -1, - "gzip_total": 280, - "gzip_savings": 0, - "minify_total": 0, - "minify_savings": 0, - "image_total": 0, - "image_savings": 0, - "optimization_checked": 1, - "aft": 0, - "domElements": 288, - "pageSpeedVersion": "1.9", - "title": "Google", - "titleTime": 691, - "loadEventStart": 1347, - "loadEventEnd": 1378, - "domContentLoadedEventStart": 646, - "domContentLoadedEventEnd": 700, - "lastVisualChange": 0, - "browser_name": "Google Chrome", - "browser_version": "38.0.2125.111", - "server_count": 5, - "server_rtt": 0, - "base_page_cdn": "Google", - "adult_site": 0, - "fixed_viewport": 0, - "score_progressive_jpeg": -1, - "firstPaint": 0, - "docCPUms": 1185.608, - "fullyLoadedCPUms": 1638.011, - "docCPUpct": 87, - "fullyLoadedCPUpct": 45, - "isResponsive": -1, - "date": 1415298687, - "CSI": [ - "v", - "s", - "imc", - "imn", - "imp", - "ei", - "e", - "atyp", - "adh", - "xjs", - "action", - "srt", - "p", - "npn", - "rt", - "xjsls", - "prt", - "xjses", - "xjsee", - "ol", - "iml", - "wsrt", - "cst", - "dnst", - "rqst", - "rspt" - ], - "CSI.v": 3, - "CSI.s": "webhp", - "CSI.imc": 1, - "CSI.imn": 1, - "CSI.imp": 1, - "CSI.ei": "bL9bVJrPJcP8oQSom4LwBg", - "CSI.e": "3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743", - "CSI.atyp": "csi", - "CSI.adh": "", - "CSI.xjs": 470, - "CSI.action": "", - "CSI.srt": 3646, - "CSI.p": "s", - "CSI.npn": 1, - "CSI.rt": "xjsls.39,prt.40,xjses.237,xjsee.420,xjs.470,ol.764,iml.172,wsrt.605,cst.55,dnst.0,rqst.265,rspt.74", - "CSI.xjsls": 39, - "CSI.prt": 40, - "CSI.xjses": 237, - "CSI.xjsee": 420, - "CSI.ol": 764, - "CSI.iml": 172, - "CSI.wsrt": 605, - "CSI.cst": 55, - "CSI.dnst": 0, - "CSI.rqst": 265, - "CSI.rspt": 74, - "SpeedIndex": 0, - "visualComplete": 0, - "run": 1, - "effectiveBps": 86771, - "effectiveBpsDoc": 100861, - "tester": "IE9104-192.168.101.94", - "pages": { - "details": "http://www.webpagetest.org/details.php?test=141106_TM_ZFM&run=1&cached=1", - "checklist": "http://www.webpagetest.org/performance_optimization.php?test=141106_TM_ZFM&run=1&cached=1", - "breakdown": "http://www.webpagetest.org/breakdown.php?test=141106_TM_ZFM&run=1&cached=1", - "domains": "http://www.webpagetest.org/domains.php?test=141106_TM_ZFM&run=1&cached=1", - "screenShot": "http://www.webpagetest.org/screen_shot.php?test=141106_TM_ZFM&run=1&cached=1" - }, - "thumbnails": { - "waterfall": "http://www.webpagetest.org/result/141106_TM_ZFM/1_Cached_waterfall_thumb.png", - "checklist": "http://www.webpagetest.org/result/141106_TM_ZFM/1_Cached_optimization_thumb.png", - "screenShot": "http://www.webpagetest.org/result/141106_TM_ZFM/1_Cached_screen_thumb.png" - }, - "images": { - "waterfall": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_Cached_waterfall.png", - "connectionView": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_Cached_connection.png", - "checklist": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_Cached_optimization.png", - "screenShot": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_Cached_screen.jpg" - }, - "rawData": { - "headers": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_Cached_report.txt", - "pageData": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_Cached_IEWPG.txt", - "requestsData": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_Cached_IEWTR.txt", - "utilization": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_Cached_progress.csv" - }, - "videoFrames": [ - { - "time": 0, - "image": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/video_1_cached/frame_0000.jpg", - "VisuallyComplete": 100 - } - ], - "domains": { - "moc.elgoog.www": { - "bytes": 63978, - "requests": 3, - "connections": 2 - } - }, - "breakdown": { - "html": { - "color": [ - 130, - 181, - 252 - ], - "bytes": 63978, - "requests": 3 - }, - "js": { - "color": [ - 254, - 197, - 132 - ], - "bytes": 0, - "requests": 0 - }, - "css": { - "color": [ - 178, - 234, - 148 - ], - "bytes": 0, - "requests": 0 - }, - "image": { - "color": [ - 196, - 154, - 232 - ], - "bytes": 0, - "requests": 0 - }, - "flash": { - "color": [ - 45, - 183, - 193 - ], - "bytes": 0, - "requests": 0 - }, - "font": { - "color": [ - 255, - 82, - 62 - ], - "bytes": 0, - "requests": 0 - }, - "other": { - "color": [ - 196, - 196, - 196 - ], - "bytes": 0, - "requests": 0 - } - } - } - } - }, - "statusCode": 200, - "statusText": "Test Complete" -} \ No newline at end of file diff --git a/test/fixtures/objects/testResultsMultiRunsTTFBMedianMetric.json b/test/fixtures/objects/testResultsMultiRunsTTFBMedianMetric.json deleted file mode 100644 index a2dec53..0000000 --- a/test/fixtures/objects/testResultsMultiRunsTTFBMedianMetric.json +++ /dev/null @@ -1,7353 +0,0 @@ -{ - "data": { - "id": "141106_TM_ZFM", - "url": "http://www.google.com", - "summary": "http://www.webpagetest.org/results.php?test=141106_TM_ZFM", - "testUrl": "http://www.google.com", - "location": "Dulles:Chrome", - "from": "Dulles, VA - Chrome - Cable", - "connectivity": "Cable", - "bwDown": 5000, - "bwUp": 1000, - "latency": 28, - "plr": "0", - "completed": 1415298930, - "tester": "IE9104-192.168.101.94", - "testerDNS": "192.168.101.1,192.168.0.1", - "runs": { - "1": { - "firstView": { - "URL": "http://www.google.com", - "loadTime": 2194, - "TTFB": 749, - "bytesOut": 7722, - "bytesOutDoc": 6845, - "bytesIn": 406739, - "bytesInDoc": 388800, - "connections": 5, - "requests": [ - { - "ip_addr": "74.125.225.81", - "method": "GET", - "host": "www.google.com", - "url": "/", - "responseCode": "302", - "load_ms": "117", - "ttfb_ms": "117", - "load_start": "49", - "bytesOut": "342", - "bytesIn": "1044", - "objectSize": "231", - "cacheControl": "private", - "contentType": "text/html", - "type": "3", - "socket": "25", - "score_cache": "0", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "0", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "49", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "server_rtt": "49", - "client_port": "64165", - "jpeg_scan_count": "0", - "full_url": "http://www.google.com/", - "score_progressive_jpeg": -1, - "load_end": 166, - "ttfb_start": "49", - "ttfb_end": 166, - "download_start": 166, - "download_end": 166, - "download_ms": 0, - "all_start": "49", - "all_end": 166, - "all_ms": "117", - "headers": { - "request": [ - "GET / HTTP/1.1", - "Host: www.google.com", - "Connection: keep-alive", - "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36 PTST/191", - "Accept-Encoding: gzip,deflate,sdch", - "Accept-Language: en-US,en;q=0.8" - ], - "response": [ - "HTTP/1.1 302 Found", - "Location: https://www.google.com/?gws_rd=ssl", - "Cache-Control: private", - "Content-Type: text/html; charset=UTF-8", - "Set-Cookie: PREF=ID=b728500ce0ca065c:FF=0:TM=1415298912:LM=1415298912:S=zh8V8B9SxIDho86-; expires=Sat, 05-Nov-2016 18:35:12 GMT; path=/; domain=.google.com", - "Set-Cookie: NID=67=hig1z6hORww_j-ZirykxFzF_QOsE5U-cSRBt-4Z9KlUACPm1wi_4daX4WSVBI-NvWrtsBV-sBmZ9nQFBVzooWg545tAJDZybR5D6RRNI3-AsppdAXhKMas9gxZI96dhQ; expires=Fri, 08-May-2015 18:35:12 GMT; path=/; domain=.google.com; HttpOnly", - "P3P: CP=\"This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info.\"", - "Date: Thu, 06 Nov 2014 18:35:12 GMT", - "Server: gws", - "Content-Length: 231", - "X-XSS-Protection: 1; mode=block", - "X-Frame-Options: SAMEORIGIN", - "Alternate-Protocol: 80:quic,p=0.01" - ] - }, - "index": 0, - "number": 1 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/?gws_rd=ssl", - "responseCode": "200", - "load_ms": "460", - "ttfb_ms": "383", - "load_start": "366", - "bytesOut": "254", - "bytesIn": "57605", - "objectSize": "0", - "expires": "-1", - "cacheControl": "private, max-age=0", - "contentType": "text/html", - "contentEncoding": "gzip", - "type": "3", - "socket": "261", - "score_cache": "-1", - "score_cdn": "-1", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 0, - "connect_ms": 36, - "ssl_ms": 127, - "gzip_total": "799", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "-1", - "cdn_provider": "Google", - "dns_start": "202", - "dns_end": "202", - "connect_start": "202", - "connect_end": "238", - "ssl_start": "238", - "ssl_end": "365", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/?gws_rd=ssl", - "score_progressive_jpeg": -1, - "load_end": 826, - "ttfb_start": "366", - "ttfb_end": 749, - "download_start": 749, - "download_end": 826, - "download_ms": 77, - "all_start": "202", - "all_end": 826, - "all_ms": 623, - "headers": { - "request": [ - "GET /?gws_rd=ssl HTTP/1.1", - "Host: www.google.com", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=0", - "content-encoding: gzip", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:35:12 GMT", - "expires: -1", - "p3p: CP=\"This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info.\"", - "server: gws", - "set-cookie: PREF=ID=b728500ce0ca065c:U=ffc0fb4c40c98be0:FF=0:TM=1415298912:LM=1415298912:S=OZ50oqzyGSXCcI0w; expires=Sat, 05-Nov-2016 18:35:12 GMT; path=/; domain=.google.com", - "NID=67=mGg_6DOdS_TuKOXz3CFTdCqjkNEP5o91Wbh0WdZ_JxJcHjw-kkoHDdpMAR57vwg4sPriwQXK1O5K-_Zy3S4KOUtOCmqwvgLA0eh_VuulzoWlmaWFu6DQaafCJsJAk7ka; expires=Fri, 08-May-2015 18:35:12 GMT; path=/; domain=.google.com; HttpOnly", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 1, - "number": 2 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/images/srpr/logo11w.png", - "responseCode": "200", - "load_ms": "117", - "ttfb_ms": "70", - "load_start": "998", - "bytesOut": "330", - "bytesIn": "16919", - "objectSize": "0", - "expires": "Thu, 06 Nov 2014 18:35:13 GMT", - "cacheControl": "private, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "261", - "score_cache": "0", - "score_cdn": "100", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/?gws_rd=ssl", - "initiator_line": "28", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/images/srpr/logo11w.png", - "score_progressive_jpeg": -1, - "load_end": 1115, - "ttfb_start": "998", - "ttfb_end": 1068, - "download_start": 1068, - "download_end": 1115, - "download_ms": 47, - "all_start": "998", - "all_end": 1115, - "all_ms": "117", - "headers": { - "request": [ - "GET /images/srpr/logo11w.png HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=31536000", - "content-length: 14022", - "content-type: image/png", - "date: Thu, 06 Nov 2014 18:35:13 GMT", - "expires: Thu, 06 Nov 2014 18:35:13 GMT", - "last-modified: Wed, 09 Oct 2013 01:35:39 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 2, - "number": 3 - }, - { - "method": "GET", - "host": "ssl.gstatic.com", - "url": "/gb/images/i1_71651352.png", - "responseCode": "200", - "load_ms": "81", - "ttfb_ms": "45", - "load_start": "1097", - "bytesOut": "333", - "bytesIn": "14285", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 15:23:35 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "336", - "score_cache": "100", - "score_cdn": "0", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 0, - "connect_ms": 37, - "ssl_ms": 66, - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "dns_start": "993", - "dns_end": "993", - "connect_start": "993", - "connect_end": "1030", - "ssl_start": "1030", - "ssl_end": "1096", - "initiator": "https://www.google.com/?gws_rd=ssl", - "initiator_line": "76", - "initiator_column": "35", - "server_count": "4", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://ssl.gstatic.com/gb/images/i1_71651352.png", - "score_progressive_jpeg": -1, - "load_end": 1178, - "ttfb_start": "1097", - "ttfb_end": 1142, - "download_start": 1142, - "download_end": 1178, - "download_ms": 36, - "all_start": "993", - "all_end": 1178, - "all_ms": 184, - "headers": { - "request": [ - "GET /gb/images/i1_71651352.png HTTP/1.1", - "Host: ssl.gstatic.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 97898", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-length: 14055", - "content-type: image/png", - "date: Wed, 05 Nov 2014 15:23:35 GMT", - "expires: Thu, 05 Nov 2015 15:23:35 GMT", - "last-modified: Thu, 16 Oct 2014 18:20:30 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 3, - "number": 4 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "responseCode": "200", - "load_ms": "346", - "ttfb_ms": "99", - "load_start": "1123", - "bytesOut": "443", - "bytesIn": "180939", - "objectSize": "0", - "expires": "Fri, 06 Nov 2015 11:13:26 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "261", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "429", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/?gws_rd=ssl", - "initiator_line": "94", - "initiator_column": "17237", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "score_progressive_jpeg": -1, - "load_end": 1469, - "ttfb_start": "1123", - "ttfb_end": 1222, - "download_start": 1222, - "download_end": 1469, - "download_ms": 247, - "all_start": "1123", - "all_end": 1469, - "all_ms": "346", - "headers": { - "request": [ - "GET /xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP/1.1", - "Host: www.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 26507", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 130931", - "content-type: text/javascript; charset=UTF-8", - "date: Thu, 06 Nov 2014 11:13:26 GMT", - "expires: Fri, 06 Nov 2015 11:13:26 GMT", - "last-modified: Tue, 04 Nov 2014 19:30:26 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 4, - "number": 5 - }, - { - "method": "GET", - "host": "www.gstatic.com", - "url": "/og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w", - "responseCode": "200", - "load_ms": "317", - "ttfb_ms": "316", - "load_start": "1310", - "bytesOut": "392", - "bytesIn": "184146", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 13:04:24 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "392", - "score_cache": "100", - "score_cdn": "0", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 57, - "connect_ms": 39, - "ssl_ms": 64, - "gzip_total": "429", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "dns_start": "1149", - "dns_end": "1206", - "connect_start": "1206", - "connect_end": "1245", - "ssl_start": "1245", - "ssl_end": "1309", - "initiator": "https://www.google.com/?gws_rd=ssl", - "initiator_line": "57", - "initiator_column": "143", - "server_count": "4", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.gstatic.com/og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w", - "score_progressive_jpeg": -1, - "load_end": 1627, - "ttfb_start": "1310", - "ttfb_end": 1626, - "download_start": 1626, - "download_end": 1627, - "download_ms": 1, - "all_start": "1149", - "all_end": 1627, - "all_ms": 477, - "headers": { - "request": [ - "GET /og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w HTTP/1.1", - "Host: www.gstatic.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 106249", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 55207", - "content-type: text/javascript; charset=UTF-8", - "date: Wed, 05 Nov 2014 13:04:24 GMT", - "expires: Thu, 05 Nov 2015 13:04:24 GMT", - "last-modified: Tue, 04 Nov 2014 01:19:09 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 5, - "number": 6 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm/am=lKj_TwWDwIxAARMQrA4/rt=j/d=0/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "responseCode": "200", - "load_ms": "130", - "ttfb_ms": "57", - "load_start": "1618", - "bytesOut": "682", - "bytesIn": "58844", - "objectSize": "0", - "expires": "Fri, 06 Nov 2015 12:08:37 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "261", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "428", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "initiator_line": "101", - "initiator_column": "112", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm/am=lKj_TwWDwIxAARMQrA4/rt=j/d=0/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "score_progressive_jpeg": -1, - "load_end": 1748, - "ttfb_start": "1618", - "ttfb_end": 1675, - "download_start": 1675, - "download_end": 1748, - "download_ms": 73, - "all_start": "1618", - "all_end": 1748, - "all_ms": "130", - "headers": { - "request": [ - "GET /xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm/am=lKj_TwWDwIxAARMQrA4/rt=j/d=0/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP/1.1", - "Host: www.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 23196", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 48157", - "content-type: text/javascript; charset=UTF-8", - "date: Thu, 06 Nov 2014 12:08:37 GMT", - "expires: Fri, 06 Nov 2015 12:08:37 GMT", - "last-modified: Tue, 04 Nov 2014 19:30:26 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 6, - "number": 7 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/textinputassistant/tia.png", - "responseCode": "200", - "load_ms": "231", - "ttfb_ms": "224", - "load_start": "1620", - "bytesOut": "333", - "bytesIn": "485", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 06:57:32 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "261", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/?gws_rd=ssl", - "initiator_line": "1", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/textinputassistant/tia.png", - "score_progressive_jpeg": -1, - "load_end": 1851, - "ttfb_start": "1620", - "ttfb_end": 1844, - "download_start": 1844, - "download_end": 1851, - "download_ms": 7, - "all_start": "1620", - "all_end": 1851, - "all_ms": "231", - "headers": { - "request": [ - "GET /textinputassistant/tia.png HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 128261", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-length: 387", - "content-type: image/png", - "date: Wed, 05 Nov 2014 06:57:32 GMT", - "expires: Thu, 05 Nov 2015 06:57:32 GMT", - "last-modified: Mon, 02 Apr 2012 02:13:37 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 7, - "number": 8 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/extern_chrome/854094c746d4c9a.js?bav=on.2,or.r_qf.", - "responseCode": "200", - "load_ms": "230", - "ttfb_ms": "227", - "load_start": "1622", - "bytesOut": "340", - "bytesIn": "36586", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 00:00:00 GMT", - "cacheControl": "private", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "261", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "422", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31382687", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "initiator_line": "1187", - "initiator_column": "181", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/extern_chrome/854094c746d4c9a.js?bav=on.2,or.r_qf.", - "score_progressive_jpeg": -1, - "load_end": 1852, - "ttfb_start": "1622", - "ttfb_end": 1849, - "download_start": 1849, - "download_end": 1852, - "download_ms": 3, - "all_start": "1622", - "all_end": 1852, - "all_ms": "230", - "headers": { - "request": [ - "GET /extern_chrome/854094c746d4c9a.js?bav=on.2,or.r_qf. HTTP/1.1", - "Host: www.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private", - "content-disposition: attachment; filename=\"f.txt\"", - "content-encoding: gzip", - "content-length: 13825", - "content-type: text/javascript; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:35:13 GMT", - "expires: Thu, 05 Nov 2015 00:00:00 GMT", - "last-modified: Thu, 07 Nov 2013 00:00:00 GMT", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 8, - "number": 9 - }, - { - "method": "GET", - "host": "apis.google.com", - "url": "/_/scs/abc-static/_/js/k=gapi.gapi.en.3_mJ9Wvc9FU.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg/cb=gapi.loaded_0", - "responseCode": "200", - "load_ms": "113", - "ttfb_ms": "49", - "load_start": "1981", - "bytesOut": "456", - "bytesIn": "49179", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 15:23:35 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "476", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 32, - "connect_ms": 36, - "ssl_ms": 62, - "gzip_total": "428", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "1851", - "dns_end": "1883", - "connect_start": "1883", - "connect_end": "1919", - "ssl_start": "1919", - "ssl_end": "1981", - "initiator": "https://www.gstatic.com/og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w", - "initiator_line": "138", - "initiator_column": "381", - "server_count": "11", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://apis.google.com/_/scs/abc-static/_/js/k=gapi.gapi.en.3_mJ9Wvc9FU.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg/cb=gapi.loaded_0", - "score_progressive_jpeg": -1, - "load_end": 2094, - "ttfb_start": "1981", - "ttfb_end": 2030, - "download_start": 2030, - "download_end": 2094, - "download_ms": 64, - "all_start": "1851", - "all_end": 2094, - "all_ms": 243, - "headers": { - "request": [ - "GET /_/scs/abc-static/_/js/k=gapi.gapi.en.3_mJ9Wvc9FU.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg/cb=gapi.loaded_0 HTTP/1.1", - "Host: apis.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 97899", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 48911", - "content-type: text/javascript; charset=UTF-8", - "date: Wed, 05 Nov 2014 15:23:35 GMT", - "expires: Thu, 05 Nov 2015 15:23:35 GMT", - "last-modified: Thu, 16 Oct 2014 07:30:29 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 9, - "number": 10 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/images/nav_logo195.png", - "responseCode": "200", - "load_ms": "86", - "ttfb_ms": "70", - "load_start": "2214", - "bytesOut": "329", - "bytesIn": "16300", - "objectSize": "0", - "expires": "Thu, 06 Nov 2014 18:35:14 GMT", - "cacheControl": "private, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "261", - "score_cache": "0", - "score_cdn": "100", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/images/nav_logo195.png", - "score_progressive_jpeg": -1, - "load_end": 2300, - "ttfb_start": "2214", - "ttfb_end": 2284, - "download_start": 2284, - "download_end": 2300, - "download_ms": 16, - "all_start": "2214", - "all_end": 2300, - "all_ms": "86", - "headers": { - "request": [ - "GET /images/nav_logo195.png HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=31536000", - "content-length: 16214", - "content-type: image/png", - "date: Thu, 06 Nov 2014 18:35:14 GMT", - "expires: Thu, 06 Nov 2014 18:35:14 GMT", - "last-modified: Wed, 21 May 2014 00:02:44 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 10, - "number": 11 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=YL9bVP6qJ5DuoAS6x4KwCg&e=3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.83.28.sb.49.p.12.m.8.spch.6.imap.2&action=&srt=3895&p=s&npn=1&rt=xjsls.34,prt.35,xjses.575,xjsee.725,xjs.764,ol.1332,iml.258,wsrt.857,cst.163,dnst.0,rqst.460,rspt.77", - "responseCode": "204", - "load_ms": "119", - "ttfb_ms": "118", - "load_start": "2217", - "bytesOut": "844", - "bytesIn": "251", - "objectSize": "0", - "contentType": "text/html", - "type": "3", - "socket": "261", - "score_cache": "0", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=YL9bVP6qJ5DuoAS6x4KwCg&e=3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.83.28.sb.49.p.12.m.8.spch.6.imap.2&action=&srt=3895&p=s&npn=1&rt=xjsls.34,prt.35,xjses.575,xjsee.725,xjs.764,ol.1332,iml.258,wsrt.857,cst.163,dnst.0,rqst.460,rspt.77", - "score_progressive_jpeg": -1, - "load_end": 2336, - "ttfb_start": "2217", - "ttfb_end": 2335, - "download_start": 2335, - "download_end": 2336, - "download_ms": 1, - "all_start": "2217", - "all_end": 2336, - "all_ms": "119", - "headers": { - "request": [ - "GET /gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=YL9bVP6qJ5DuoAS6x4KwCg&e=3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.83.28.sb.49.p.12.m.8.spch.6.imap.2&action=&srt=3895&p=s&npn=1&rt=xjsls.34,prt.35,xjses.575,xjsee.725,xjs.764,ol.1332,iml.258,wsrt.857,cst.163,dnst.0,rqst.460,rspt.77 HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F" - ], - "response": [ - "HTTP/1.1 204 No Content", - "alternate-protocol: 443:quic,p=0.01", - "content-length: 0", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:35:14 GMT", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 11, - "number": 12 - } - ], - "requestsDoc": 10, - "responses_200": 10, - "responses_404": 0, - "responses_other": 1, - "result": 0, - "render": 1097, - "fullyLoaded": 2336, - "cached": 0, - "docTime": 2194, - "domTime": 0, - "score_cache": 63, - "score_cdn": 77, - "score_gzip": 100, - "score_cookies": -1, - "score_keep-alive": 100, - "score_minify": -1, - "score_combine": 100, - "score_compress": -1, - "score_etags": -1, - "gzip_total": 2935, - "gzip_savings": 0, - "minify_total": 0, - "minify_savings": 0, - "image_total": 0, - "image_savings": 0, - "optimization_checked": 1, - "aft": 0, - "domElements": 288, - "pageSpeedVersion": "1.9", - "title": "Google", - "titleTime": 1096, - "loadEventStart": 2185, - "loadEventEnd": 2193, - "domContentLoadedEventStart": 892, - "domContentLoadedEventEnd": 945, - "lastVisualChange": 0, - "browser_name": "Google Chrome", - "browser_version": "38.0.2125.111", - "server_count": 5, - "server_rtt": 0, - "base_page_cdn": "Google", - "adult_site": 0, - "fixed_viewport": 0, - "score_progressive_jpeg": -1, - "firstPaint": 0, - "docCPUms": 1528.81, - "fullyLoadedCPUms": 2074.813, - "docCPUpct": 69, - "fullyLoadedCPUpct": 47, - "isResponsive": -1, - "date": 1415298675, - "CSI": [ - "v", - "s", - "imc", - "imn", - "imp", - "ei", - "e", - "atyp", - "adh", - "xjs", - "action", - "srt", - "p", - "npn", - "rt", - "xjsls", - "prt", - "xjses", - "xjsee", - "ol", - "iml", - "wsrt", - "cst", - "dnst", - "rqst", - "rspt" - ], - "CSI.v": 3, - "CSI.s": "webhp", - "CSI.imc": 1, - "CSI.imn": 1, - "CSI.imp": 1, - "CSI.ei": "YL9bVP6qJ5DuoAS6x4KwCg", - "CSI.e": "3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743", - "CSI.atyp": "csi", - "CSI.adh": "", - "CSI.xjs": 764, - "CSI.action": "", - "CSI.srt": 3895, - "CSI.p": "s", - "CSI.npn": 1, - "CSI.rt": "xjsls.34,prt.35,xjses.575,xjsee.725,xjs.764,ol.1332,iml.258,wsrt.857,cst.163,dnst.0,rqst.460,rspt.77", - "CSI.xjsls": 34, - "CSI.prt": 35, - "CSI.xjses": 575, - "CSI.xjsee": 725, - "CSI.ol": 1332, - "CSI.iml": 258, - "CSI.wsrt": 857, - "CSI.cst": 163, - "CSI.dnst": 0, - "CSI.rqst": 460, - "CSI.rspt": 77, - "SpeedIndex": 0, - "visualComplete": 0, - "run": 1, - "effectiveBps": 256294, - "effectiveBpsDoc": 269065, - "tester": "IE9104-192.168.101.94", - "pages": { - "details": "http://www.webpagetest.org/details.php?test=141106_TM_ZFM&run=1&cached=0", - "checklist": "http://www.webpagetest.org/performance_optimization.php?test=141106_TM_ZFM&run=1&cached=0", - "breakdown": "http://www.webpagetest.org/breakdown.php?test=141106_TM_ZFM&run=1&cached=0", - "domains": "http://www.webpagetest.org/domains.php?test=141106_TM_ZFM&run=1&cached=0", - "screenShot": "http://www.webpagetest.org/screen_shot.php?test=141106_TM_ZFM&run=1&cached=0" - }, - "thumbnails": { - "waterfall": "http://www.webpagetest.org/result/141106_TM_ZFM/1_waterfall_thumb.png", - "checklist": "http://www.webpagetest.org/result/141106_TM_ZFM/1_optimization_thumb.png", - "screenShot": "http://www.webpagetest.org/result/141106_TM_ZFM/1_screen_thumb.png" - }, - "images": { - "waterfall": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_waterfall.png", - "connectionView": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_connection.png", - "checklist": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_optimization.png", - "screenShot": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_screen.jpg" - }, - "rawData": { - "headers": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_report.txt", - "pageData": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_IEWPG.txt", - "requestsData": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_IEWTR.txt", - "utilization": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_progress.csv" - }, - "videoFrames": [ - { - "time": 0, - "image": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/video_1/frame_0000.jpg", - "VisuallyComplete": 100 - } - ], - "domains": { - "moc.elgoog.www": { - "bytes": 368973, - "requests": 9, - "connections": 2 - }, - "moc.citatsg.lss": { - "bytes": 14285, - "requests": 1, - "connections": 1 - }, - "moc.citatsg.www": { - "bytes": 184146, - "requests": 1, - "connections": 1 - }, - "moc.elgoog.sipa": { - "bytes": 49179, - "requests": 1, - "connections": 1 - } - }, - "breakdown": { - "html": { - "color": [ - 130, - 181, - 252 - ], - "bytes": 58900, - "requests": 3 - }, - "js": { - "color": [ - 254, - 197, - 132 - ], - "bytes": 509694, - "requests": 5 - }, - "css": { - "color": [ - 178, - 234, - 148 - ], - "bytes": 0, - "requests": 0 - }, - "image": { - "color": [ - 196, - 154, - 232 - ], - "bytes": 47989, - "requests": 4 - }, - "flash": { - "color": [ - 45, - 183, - 193 - ], - "bytes": 0, - "requests": 0 - }, - "font": { - "color": [ - 255, - 82, - 62 - ], - "bytes": 0, - "requests": 0 - }, - "other": { - "color": [ - 196, - 196, - 196 - ], - "bytes": 0, - "requests": 0 - } - } - }, - "repeatView": { - "URL": "http://www.google.com", - "loadTime": 1352, - "TTFB": 505, - "bytesOut": 9302, - "bytesOutDoc": 8740, - "bytesIn": 85557, - "bytesInDoc": 85430, - "connections": 2, - "requests": [ - { - "ip_addr": "74.125.225.81", - "method": "GET", - "host": "www.google.com", - "url": "/", - "responseCode": "302", - "load_ms": "156", - "ttfb_ms": "156", - "load_start": "62", - "bytesOut": "584", - "bytesIn": "532", - "objectSize": "231", - "cacheControl": "private", - "contentType": "text/html", - "type": "3", - "socket": "15", - "score_cache": "0", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "0", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "61", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "server_rtt": "60", - "client_port": "64227", - "jpeg_scan_count": "0", - "full_url": "http://www.google.com/", - "score_progressive_jpeg": -1, - "load_end": 218, - "ttfb_start": "62", - "ttfb_end": 218, - "download_start": 218, - "download_end": 218, - "download_ms": 0, - "all_start": "62", - "all_end": 218, - "all_ms": "156", - "headers": { - "request": [ - "GET / HTTP/1.1", - "Host: www.google.com", - "Connection: keep-alive", - "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36 PTST/191", - "Accept-Encoding: gzip,deflate,sdch", - "Accept-Language: en-US,en;q=0.8", - "Cookie: PREF=ID=b728500ce0ca065c:U=ffc0fb4c40c98be0:FF=0:TM=1415298912:LM=1415298912:S=OZ50oqzyGSXCcI0w; NID=67=mGg_6DOdS_TuKOXz3CFTdCqjkNEP5o91Wbh0WdZ_JxJcHjw-kkoHDdpMAR57vwg4sPriwQXK1O5K-_Zy3S4KOUtOCmqwvgLA0eh_VuulzoWlmaWFu6DQaafCJsJAk7ka" - ], - "response": [ - "HTTP/1.1 302 Found", - "Location: https://www.google.com/?gws_rd=ssl", - "Cache-Control: private", - "Content-Type: text/html; charset=UTF-8", - "Date: Thu, 06 Nov 2014 18:35:24 GMT", - "Server: gws", - "Content-Length: 231", - "X-XSS-Protection: 1; mode=block", - "X-Frame-Options: SAMEORIGIN", - "Alternate-Protocol: 80:quic,p=0.01" - ] - }, - "index": 0, - "number": 1 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/?gws_rd=ssl", - "responseCode": "200", - "load_ms": "265", - "ttfb_ms": "190", - "load_start": "315", - "bytesOut": "254", - "bytesIn": "63195", - "objectSize": "0", - "expires": "-1", - "cacheControl": "private, max-age=0", - "contentType": "text/html", - "contentEncoding": "gzip", - "type": "3", - "socket": "149", - "score_cache": "-1", - "score_cdn": "-1", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 0, - "connect_ms": 0, - "ssl_ms": 55, - "gzip_total": "280", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "-1", - "cdn_provider": "Google", - "dns_start": "259", - "dns_end": "259", - "connect_start": "259", - "connect_end": "259", - "ssl_start": "259", - "ssl_end": "314", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/?gws_rd=ssl", - "score_progressive_jpeg": -1, - "load_end": 580, - "ttfb_start": "315", - "ttfb_end": 505, - "download_start": 505, - "download_end": 580, - "download_ms": 75, - "all_start": "259", - "all_end": 580, - "all_ms": 320, - "headers": { - "request": [ - "GET /?gws_rd=ssl HTTP/1.1", - "Host: www.google.com", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 67027B33-8010-4675-92E8-A02F9E86437E" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=0", - "content-encoding: gzip", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:35:24 GMT", - "expires: -1", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 1, - "number": 2 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=bL9bVJrPJcP8oQSom4LwBg&e=3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.73.28.sb.45.p.12.spch.6.imap.2.m.2&action=&srt=3646&p=s&npn=1&rt=xjsls.39,prt.40,xjses.237,xjsee.420,xjs.470,ol.764,iml.172,wsrt.605,cst.55,dnst.0,rqst.265,rspt.74", - "responseCode": "204", - "load_ms": "108", - "ttfb_ms": "105", - "load_start": "1383", - "bytesOut": "842", - "bytesIn": "251", - "objectSize": "0", - "contentType": "text/html", - "type": "3", - "socket": "149", - "score_cache": "0", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=bL9bVJrPJcP8oQSom4LwBg&e=3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.73.28.sb.45.p.12.spch.6.imap.2.m.2&action=&srt=3646&p=s&npn=1&rt=xjsls.39,prt.40,xjses.237,xjsee.420,xjs.470,ol.764,iml.172,wsrt.605,cst.55,dnst.0,rqst.265,rspt.74", - "score_progressive_jpeg": -1, - "load_end": 1491, - "ttfb_start": "1383", - "ttfb_end": 1488, - "download_start": 1488, - "download_end": 1491, - "download_ms": 3, - "all_start": "1383", - "all_end": 1491, - "all_ms": "108", - "headers": { - "request": [ - "GET /gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=bL9bVJrPJcP8oQSom4LwBg&e=3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.73.28.sb.45.p.12.spch.6.imap.2.m.2&action=&srt=3646&p=s&npn=1&rt=xjsls.39,prt.40,xjses.237,xjsee.420,xjs.470,ol.764,iml.172,wsrt.605,cst.55,dnst.0,rqst.265,rspt.74 HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 67027B33-8010-4675-92E8-A02F9E86437E" - ], - "response": [ - "HTTP/1.1 204 No Content", - "alternate-protocol: 443:quic,p=0.01", - "content-length: 0", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:35:25 GMT", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 2, - "number": 3 - } - ], - "requestsDoc": 2, - "responses_200": 1, - "responses_404": 0, - "responses_other": 1, - "result": 0, - "render": 792, - "fullyLoaded": 1491, - "cached": 1, - "docTime": 1352, - "domTime": 0, - "score_cache": 0, - "score_cdn": -1, - "score_gzip": 100, - "score_cookies": -1, - "score_keep-alive": 100, - "score_minify": -1, - "score_combine": 100, - "score_compress": -1, - "score_etags": -1, - "gzip_total": 280, - "gzip_savings": 0, - "minify_total": 0, - "minify_savings": 0, - "image_total": 0, - "image_savings": 0, - "optimization_checked": 1, - "aft": 0, - "domElements": 288, - "pageSpeedVersion": "1.9", - "title": "Google", - "titleTime": 691, - "loadEventStart": 1347, - "loadEventEnd": 1378, - "domContentLoadedEventStart": 646, - "domContentLoadedEventEnd": 700, - "lastVisualChange": 0, - "browser_name": "Google Chrome", - "browser_version": "38.0.2125.111", - "server_count": 5, - "server_rtt": 0, - "base_page_cdn": "Google", - "adult_site": 0, - "fixed_viewport": 0, - "score_progressive_jpeg": -1, - "firstPaint": 0, - "docCPUms": 1185.608, - "fullyLoadedCPUms": 1638.011, - "docCPUpct": 87, - "fullyLoadedCPUpct": 45, - "isResponsive": -1, - "date": 1415298687, - "CSI": [ - "v", - "s", - "imc", - "imn", - "imp", - "ei", - "e", - "atyp", - "adh", - "xjs", - "action", - "srt", - "p", - "npn", - "rt", - "xjsls", - "prt", - "xjses", - "xjsee", - "ol", - "iml", - "wsrt", - "cst", - "dnst", - "rqst", - "rspt" - ], - "CSI.v": 3, - "CSI.s": "webhp", - "CSI.imc": 1, - "CSI.imn": 1, - "CSI.imp": 1, - "CSI.ei": "bL9bVJrPJcP8oQSom4LwBg", - "CSI.e": "3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743", - "CSI.atyp": "csi", - "CSI.adh": "", - "CSI.xjs": 470, - "CSI.action": "", - "CSI.srt": 3646, - "CSI.p": "s", - "CSI.npn": 1, - "CSI.rt": "xjsls.39,prt.40,xjses.237,xjsee.420,xjs.470,ol.764,iml.172,wsrt.605,cst.55,dnst.0,rqst.265,rspt.74", - "CSI.xjsls": 39, - "CSI.prt": 40, - "CSI.xjses": 237, - "CSI.xjsee": 420, - "CSI.ol": 764, - "CSI.iml": 172, - "CSI.wsrt": 605, - "CSI.cst": 55, - "CSI.dnst": 0, - "CSI.rqst": 265, - "CSI.rspt": 74, - "SpeedIndex": 0, - "visualComplete": 0, - "run": 1, - "effectiveBps": 86771, - "effectiveBpsDoc": 100861, - "tester": "IE9104-192.168.101.94", - "pages": { - "details": "http://www.webpagetest.org/details.php?test=141106_TM_ZFM&run=1&cached=1", - "checklist": "http://www.webpagetest.org/performance_optimization.php?test=141106_TM_ZFM&run=1&cached=1", - "breakdown": "http://www.webpagetest.org/breakdown.php?test=141106_TM_ZFM&run=1&cached=1", - "domains": "http://www.webpagetest.org/domains.php?test=141106_TM_ZFM&run=1&cached=1", - "screenShot": "http://www.webpagetest.org/screen_shot.php?test=141106_TM_ZFM&run=1&cached=1" - }, - "thumbnails": { - "waterfall": "http://www.webpagetest.org/result/141106_TM_ZFM/1_Cached_waterfall_thumb.png", - "checklist": "http://www.webpagetest.org/result/141106_TM_ZFM/1_Cached_optimization_thumb.png", - "screenShot": "http://www.webpagetest.org/result/141106_TM_ZFM/1_Cached_screen_thumb.png" - }, - "images": { - "waterfall": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_Cached_waterfall.png", - "connectionView": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_Cached_connection.png", - "checklist": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_Cached_optimization.png", - "screenShot": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_Cached_screen.jpg" - }, - "rawData": { - "headers": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_Cached_report.txt", - "pageData": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_Cached_IEWPG.txt", - "requestsData": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_Cached_IEWTR.txt", - "utilization": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/1_Cached_progress.csv" - }, - "videoFrames": [ - { - "time": 0, - "image": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/video_1_cached/frame_0000.jpg", - "VisuallyComplete": 100 - } - ], - "domains": { - "moc.elgoog.www": { - "bytes": 63978, - "requests": 3, - "connections": 2 - } - }, - "breakdown": { - "html": { - "color": [ - 130, - 181, - 252 - ], - "bytes": 63978, - "requests": 3 - }, - "js": { - "color": [ - 254, - 197, - 132 - ], - "bytes": 0, - "requests": 0 - }, - "css": { - "color": [ - 178, - 234, - 148 - ], - "bytes": 0, - "requests": 0 - }, - "image": { - "color": [ - 196, - 154, - 232 - ], - "bytes": 0, - "requests": 0 - }, - "flash": { - "color": [ - 45, - 183, - 193 - ], - "bytes": 0, - "requests": 0 - }, - "font": { - "color": [ - 255, - 82, - 62 - ], - "bytes": 0, - "requests": 0 - }, - "other": { - "color": [ - 196, - 196, - 196 - ], - "bytes": 0, - "requests": 0 - } - } - } - }, - "2": { - "firstView": { - "URL": "http://www.google.com", - "loadTime": 2406, - "TTFB": 513, - "bytesOut": 7009, - "bytesOutDoc": 6145, - "bytesIn": 402324, - "bytesInDoc": 384415, - "connections": 4, - "requests": [ - { - "ip_addr": "74.125.225.80", - "method": "GET", - "host": "www.google.com", - "url": "/", - "responseCode": "302", - "load_ms": "110", - "ttfb_ms": "110", - "load_start": "49", - "bytesOut": "342", - "bytesIn": "1044", - "objectSize": "231", - "cacheControl": "private", - "contentType": "text/html", - "type": "3", - "socket": "25", - "score_cache": "0", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "0", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "49", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "server_rtt": "49", - "client_port": "51813", - "jpeg_scan_count": "0", - "full_url": "http://www.google.com/", - "score_progressive_jpeg": -1, - "load_end": 159, - "ttfb_start": "49", - "ttfb_end": 159, - "download_start": 159, - "download_end": 159, - "download_ms": 0, - "all_start": "49", - "all_end": 159, - "all_ms": "110", - "headers": { - "request": [ - "GET / HTTP/1.1", - "Host: www.google.com", - "Connection: keep-alive", - "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36 PTST/191", - "Accept-Encoding: gzip,deflate,sdch", - "Accept-Language: en-US,en;q=0.8" - ], - "response": [ - "HTTP/1.1 302 Found", - "Location: https://www.google.com/?gws_rd=ssl", - "Cache-Control: private", - "Content-Type: text/html; charset=UTF-8", - "Set-Cookie: PREF=ID=475c491cad4e86aa:FF=0:TM=1415298912:LM=1415298912:S=IZkg6dGDCBeFDHPq; expires=Sat, 05-Nov-2016 18:35:12 GMT; path=/; domain=.google.com", - "Set-Cookie: NID=67=gngiSsHmIvn3lnlMq8_ilS4bsTML-5ZdRj_phVjTIBUS1_uruYjC56tX9cfsIEtsm5aP1A6Oa5AqErk6SQsRFoEoR7SyAbecF76SRDBOarjoyJSNeOruCIShiVA4PUz9; expires=Fri, 08-May-2015 18:35:12 GMT; path=/; domain=.google.com; HttpOnly", - "P3P: CP=\"This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info.\"", - "Date: Thu, 06 Nov 2014 18:35:12 GMT", - "Server: gws", - "Content-Length: 231", - "X-XSS-Protection: 1; mode=block", - "X-Frame-Options: SAMEORIGIN", - "Alternate-Protocol: 80:quic,p=0.01" - ] - }, - "index": 0, - "number": 1 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/?gws_rd=ssl", - "responseCode": "200", - "load_ms": "305", - "ttfb_ms": "181", - "load_start": "332", - "bytesOut": "254", - "bytesIn": "52324", - "objectSize": "0", - "expires": "-1", - "cacheControl": "private, max-age=0", - "contentType": "text/html", - "contentEncoding": "gzip", - "type": "3", - "socket": "255", - "score_cache": "-1", - "score_cdn": "-1", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 0, - "connect_ms": 43, - "ssl_ms": 99, - "gzip_total": "799", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "-1", - "cdn_provider": "Google", - "dns_start": "190", - "dns_end": "190", - "connect_start": "190", - "connect_end": "233", - "ssl_start": "233", - "ssl_end": "332", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/?gws_rd=ssl", - "score_progressive_jpeg": -1, - "load_end": 637, - "ttfb_start": "332", - "ttfb_end": 513, - "download_start": 513, - "download_end": 637, - "download_ms": 124, - "all_start": "190", - "all_end": 637, - "all_ms": 447, - "headers": { - "request": [ - "GET /?gws_rd=ssl HTTP/1.1", - "Host: www.google.com", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=0", - "content-encoding: gzip", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:35:12 GMT", - "expires: -1", - "p3p: CP=\"This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info.\"", - "server: gws", - "set-cookie: PREF=ID=475c491cad4e86aa:U=d2f3b954c35bcd9b:FF=0:TM=1415298912:LM=1415298912:S=lV95Ue2bqUmiPbk5; expires=Sat, 05-Nov-2016 18:35:12 GMT; path=/; domain=.google.com", - "NID=67=FxZ3TVYsJlTtvVnmerGAmxHaZlZTz5A31FZWPSd1rO1IWsQQNoRhmBSazKHgNuIyFbSiyrYFhW6OHLe3wfVvB_ZYIKQjZ5yH_Zis-NxQXljm2qIsyFUvNKKpsqhKOv-p; expires=Fri, 08-May-2015 18:35:12 GMT; path=/; domain=.google.com; HttpOnly", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 1, - "number": 2 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/images/srpr/logo11w.png", - "responseCode": "200", - "load_ms": "675", - "ttfb_ms": "674", - "load_start": "943", - "bytesOut": "330", - "bytesIn": "14111", - "objectSize": "0", - "expires": "Thu, 06 Nov 2014 18:35:13 GMT", - "cacheControl": "private, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "255", - "score_cache": "0", - "score_cdn": "100", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/?gws_rd=ssl", - "initiator_line": "28", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/images/srpr/logo11w.png", - "score_progressive_jpeg": -1, - "load_end": 1618, - "ttfb_start": "943", - "ttfb_end": 1617, - "download_start": 1617, - "download_end": 1618, - "download_ms": 1, - "all_start": "943", - "all_end": 1618, - "all_ms": "675", - "headers": { - "request": [ - "GET /images/srpr/logo11w.png HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=31536000", - "content-length: 14022", - "content-type: image/png", - "date: Thu, 06 Nov 2014 18:35:13 GMT", - "expires: Thu, 06 Nov 2014 18:35:13 GMT", - "last-modified: Wed, 09 Oct 2013 01:35:39 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 2, - "number": 3 - }, - { - "method": "GET", - "host": "ssl.gstatic.com", - "url": "/gb/images/i1_71651352.png", - "responseCode": "200", - "load_ms": "92", - "ttfb_ms": "47", - "load_start": "1029", - "bytesOut": "333", - "bytesIn": "14285", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 15:23:35 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "335", - "score_cache": "100", - "score_cdn": "0", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 1, - "connect_ms": 40, - "ssl_ms": 77, - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "dns_start": "910", - "dns_end": "911", - "connect_start": "911", - "connect_end": "951", - "ssl_start": "951", - "ssl_end": "1028", - "initiator": "https://www.google.com/?gws_rd=ssl", - "initiator_line": "76", - "initiator_column": "35", - "server_count": "4", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://ssl.gstatic.com/gb/images/i1_71651352.png", - "score_progressive_jpeg": -1, - "load_end": 1121, - "ttfb_start": "1029", - "ttfb_end": 1076, - "download_start": 1076, - "download_end": 1121, - "download_ms": 45, - "all_start": "910", - "all_end": 1121, - "all_ms": 210, - "headers": { - "request": [ - "GET /gb/images/i1_71651352.png HTTP/1.1", - "Host: ssl.gstatic.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 97898", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-length: 14055", - "content-type: image/png", - "date: Wed, 05 Nov 2014 15:23:35 GMT", - "expires: Thu, 05 Nov 2015 15:23:35 GMT", - "last-modified: Thu, 16 Oct 2014 18:20:30 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 3, - "number": 4 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "responseCode": "200", - "load_ms": "418", - "ttfb_ms": "53", - "load_start": "1095", - "bytesOut": "443", - "bytesIn": "205963", - "objectSize": "0", - "expires": "Fri, 06 Nov 2015 11:13:26 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "255", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "429", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/?gws_rd=ssl", - "initiator_line": "94", - "initiator_column": "17237", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "score_progressive_jpeg": -1, - "load_end": 1513, - "ttfb_start": "1095", - "ttfb_end": 1148, - "download_start": 1148, - "download_end": 1513, - "download_ms": 365, - "all_start": "1095", - "all_end": 1513, - "all_ms": "418", - "headers": { - "request": [ - "GET /xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP/1.1", - "Host: www.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 26507", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 130931", - "content-type: text/javascript; charset=UTF-8", - "date: Thu, 06 Nov 2014 11:13:26 GMT", - "expires: Fri, 06 Nov 2015 11:13:26 GMT", - "last-modified: Tue, 04 Nov 2014 19:30:26 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 4, - "number": 5 - }, - { - "method": "GET", - "host": "www.gstatic.com", - "url": "/og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w", - "responseCode": "200", - "load_ms": "496", - "ttfb_ms": "48", - "load_start": "1121", - "bytesOut": "392", - "bytesIn": "59283", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 15:23:34 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "335", - "score_cache": "100", - "score_cdn": "0", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "428", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/?gws_rd=ssl", - "initiator_line": "57", - "initiator_column": "143", - "server_count": "4", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.gstatic.com/og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w", - "score_progressive_jpeg": -1, - "load_end": 1617, - "ttfb_start": "1121", - "ttfb_end": 1169, - "download_start": 1169, - "download_end": 1617, - "download_ms": 448, - "all_start": "1121", - "all_end": 1617, - "all_ms": "496", - "headers": { - "request": [ - "GET /og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w HTTP/1.1", - "Host: www.gstatic.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 97899", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 55207", - "content-type: text/javascript; charset=UTF-8", - "date: Wed, 05 Nov 2014 15:23:34 GMT", - "expires: Thu, 05 Nov 2015 15:23:34 GMT", - "last-modified: Tue, 04 Nov 2014 01:19:09 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 5, - "number": 6 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm/am=lKj_TwWDwIxAARMQrA4/rt=j/d=0/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "responseCode": "200", - "load_ms": "196", - "ttfb_ms": "57", - "load_start": "1841", - "bytesOut": "682", - "bytesIn": "48334", - "objectSize": "0", - "expires": "Fri, 06 Nov 2015 12:08:37 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "255", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "428", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "initiator_line": "101", - "initiator_column": "112", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm/am=lKj_TwWDwIxAARMQrA4/rt=j/d=0/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "score_progressive_jpeg": -1, - "load_end": 2037, - "ttfb_start": "1841", - "ttfb_end": 1898, - "download_start": 1898, - "download_end": 2037, - "download_ms": 139, - "all_start": "1841", - "all_end": 2037, - "all_ms": "196", - "headers": { - "request": [ - "GET /xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm/am=lKj_TwWDwIxAARMQrA4/rt=j/d=0/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP/1.1", - "Host: www.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 23197", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 48157", - "content-type: text/javascript; charset=UTF-8", - "date: Thu, 06 Nov 2014 12:08:37 GMT", - "expires: Fri, 06 Nov 2015 12:08:37 GMT", - "last-modified: Tue, 04 Nov 2014 19:30:26 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 6, - "number": 7 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/textinputassistant/tia.png", - "responseCode": "200", - "load_ms": "399", - "ttfb_ms": "317", - "load_start": "1846", - "bytesOut": "333", - "bytesIn": "484", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 06:57:32 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "255", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/?gws_rd=ssl", - "initiator_line": "1", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/textinputassistant/tia.png", - "score_progressive_jpeg": -1, - "load_end": 2245, - "ttfb_start": "1846", - "ttfb_end": 2163, - "download_start": 2163, - "download_end": 2245, - "download_ms": 82, - "all_start": "1846", - "all_end": 2245, - "all_ms": "399", - "headers": { - "request": [ - "GET /textinputassistant/tia.png HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 128262", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-length: 387", - "content-type: image/png", - "date: Wed, 05 Nov 2014 06:57:32 GMT", - "expires: Thu, 05 Nov 2015 06:57:32 GMT", - "last-modified: Mon, 02 Apr 2012 02:13:37 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 7, - "number": 8 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/extern_chrome/854094c746d4c9a.js?bav=on.2,or.r_qf.", - "responseCode": "200", - "load_ms": "365", - "ttfb_ms": "361", - "load_start": "1881", - "bytesOut": "340", - "bytesIn": "36579", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 00:00:00 GMT", - "cacheControl": "private", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "255", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "422", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31382686", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "initiator_line": "1187", - "initiator_column": "181", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/extern_chrome/854094c746d4c9a.js?bav=on.2,or.r_qf.", - "score_progressive_jpeg": -1, - "load_end": 2246, - "ttfb_start": "1881", - "ttfb_end": 2242, - "download_start": 2242, - "download_end": 2246, - "download_ms": 4, - "all_start": "1881", - "all_end": 2246, - "all_ms": "365", - "headers": { - "request": [ - "GET /extern_chrome/854094c746d4c9a.js?bav=on.2,or.r_qf. HTTP/1.1", - "Host: www.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private", - "content-disposition: attachment; filename=\"f.txt\"", - "content-encoding: gzip", - "content-length: 13825", - "content-type: text/javascript; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:35:14 GMT", - "expires: Thu, 05 Nov 2015 00:00:00 GMT", - "last-modified: Thu, 07 Nov 2013 00:00:00 GMT", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 8, - "number": 9 - }, - { - "method": "GET", - "host": "apis.google.com", - "url": "/_/scs/abc-static/_/js/k=gapi.gapi.en.3_mJ9Wvc9FU.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg/cb=gapi.loaded_0", - "responseCode": "200", - "load_ms": "184", - "ttfb_ms": "123", - "load_start": "2067", - "bytesOut": "456", - "bytesIn": "156500", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 15:23:35 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "440", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 51, - "connect_ms": 40, - "ssl_ms": 61, - "gzip_total": "428", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "1914", - "dns_end": "1965", - "connect_start": "1965", - "connect_end": "2005", - "ssl_start": "2005", - "ssl_end": "2066", - "initiator": "https://www.gstatic.com/og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w", - "initiator_line": "138", - "initiator_column": "381", - "server_count": "11", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://apis.google.com/_/scs/abc-static/_/js/k=gapi.gapi.en.3_mJ9Wvc9FU.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg/cb=gapi.loaded_0", - "score_progressive_jpeg": -1, - "load_end": 2251, - "ttfb_start": "2067", - "ttfb_end": 2190, - "download_start": 2190, - "download_end": 2251, - "download_ms": 61, - "all_start": "1914", - "all_end": 2251, - "all_ms": 336, - "headers": { - "request": [ - "GET /_/scs/abc-static/_/js/k=gapi.gapi.en.3_mJ9Wvc9FU.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg/cb=gapi.loaded_0 HTTP/1.1", - "Host: apis.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 97899", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 48911", - "content-type: text/javascript; charset=UTF-8", - "date: Wed, 05 Nov 2014 15:23:35 GMT", - "expires: Thu, 05 Nov 2015 15:23:35 GMT", - "last-modified: Thu, 16 Oct 2014 07:30:29 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 9, - "number": 10 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/images/nav_logo195.png", - "responseCode": "200", - "load_ms": "85", - "ttfb_ms": "70", - "load_start": "2493", - "bytesOut": "329", - "bytesIn": "16288", - "objectSize": "0", - "expires": "Thu, 06 Nov 2014 18:35:14 GMT", - "cacheControl": "private, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "255", - "score_cache": "0", - "score_cdn": "100", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/images/nav_logo195.png", - "score_progressive_jpeg": -1, - "load_end": 2578, - "ttfb_start": "2493", - "ttfb_end": 2563, - "download_start": 2563, - "download_end": 2578, - "download_ms": 15, - "all_start": "2493", - "all_end": 2578, - "all_ms": "85", - "headers": { - "request": [ - "GET /images/nav_logo195.png HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=31536000", - "content-length: 16214", - "content-type: image/png", - "date: Thu, 06 Nov 2014 18:35:14 GMT", - "expires: Thu, 06 Nov 2014 18:35:14 GMT", - "last-modified: Wed, 21 May 2014 00:02:44 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 10, - "number": 11 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=YL9bVNOzJpCzoQTWgoDQDA&e=3700259,4011550,4011551,4011557,4011558,4011559,4013605,4014789,4016469,4016824,4017981,4019181,4020347,4020562,4020921,4021073,4022074,4022318,4022495,4022686,4023367,4023567,4023678,4023709,4023972,4024007,4025080,8500272,8500393,10200044,10200083,10200716&atyp=csi&adh=&xjs=init.140.28.sb.94.p.20.spch.10.m.4.ifl.2&action=&srt=5225&p=s&npn=1&rt=xjsls.53,prt.54,xjses.768,xjsee.1033,xjs.1065,ol.1719,iml.1315,wsrt.678,cst.141,dnst.0,rqst.305,rspt.124", - "responseCode": "204", - "load_ms": "114", - "ttfb_ms": "112", - "load_start": "2500", - "bytesOut": "825", - "bytesIn": "251", - "objectSize": "0", - "contentType": "text/html", - "type": "3", - "socket": "255", - "score_cache": "0", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=YL9bVNOzJpCzoQTWgoDQDA&e=3700259,4011550,4011551,4011557,4011558,4011559,4013605,4014789,4016469,4016824,4017981,4019181,4020347,4020562,4020921,4021073,4022074,4022318,4022495,4022686,4023367,4023567,4023678,4023709,4023972,4024007,4025080,8500272,8500393,10200044,10200083,10200716&atyp=csi&adh=&xjs=init.140.28.sb.94.p.20.spch.10.m.4.ifl.2&action=&srt=5225&p=s&npn=1&rt=xjsls.53,prt.54,xjses.768,xjsee.1033,xjs.1065,ol.1719,iml.1315,wsrt.678,cst.141,dnst.0,rqst.305,rspt.124", - "score_progressive_jpeg": -1, - "load_end": 2614, - "ttfb_start": "2500", - "ttfb_end": 2612, - "download_start": 2612, - "download_end": 2614, - "download_ms": 2, - "all_start": "2500", - "all_end": 2614, - "all_ms": "114", - "headers": { - "request": [ - "GET /gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=YL9bVNOzJpCzoQTWgoDQDA&e=3700259,4011550,4011551,4011557,4011558,4011559,4013605,4014789,4016469,4016824,4017981,4019181,4020347,4020562,4020921,4021073,4022074,4022318,4022495,4022686,4023367,4023567,4023678,4023709,4023972,4024007,4025080,8500272,8500393,10200044,10200083,10200716&atyp=csi&adh=&xjs=init.140.28.sb.94.p.20.spch.10.m.4.ifl.2&action=&srt=5225&p=s&npn=1&rt=xjsls.53,prt.54,xjses.768,xjsee.1033,xjs.1065,ol.1719,iml.1315,wsrt.678,cst.141,dnst.0,rqst.305,rspt.124 HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0" - ], - "response": [ - "HTTP/1.1 204 No Content", - "alternate-protocol: 443:quic,p=0.01", - "content-length: 0", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:35:14 GMT", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 11, - "number": 12 - } - ], - "requestsDoc": 10, - "responses_200": 10, - "responses_404": 0, - "responses_other": 1, - "result": 0, - "render": 982, - "fullyLoaded": 2614, - "cached": 0, - "docTime": 2406, - "domTime": 0, - "score_cache": 63, - "score_cdn": 77, - "score_gzip": 100, - "score_cookies": -1, - "score_keep-alive": 100, - "score_minify": -1, - "score_combine": 100, - "score_compress": -1, - "score_etags": -1, - "gzip_total": 2934, - "gzip_savings": 0, - "minify_total": 0, - "minify_savings": 0, - "image_total": 0, - "image_savings": 0, - "optimization_checked": 1, - "aft": 0, - "domElements": 288, - "pageSpeedVersion": "1.9", - "title": "Google", - "titleTime": 883, - "loadEventStart": 2392, - "loadEventEnd": 2402, - "domContentLoadedEventStart": 733, - "domContentLoadedEventEnd": 803, - "lastVisualChange": 0, - "browser_name": "Google Chrome", - "browser_version": "38.0.2125.111", - "server_count": 5, - "server_rtt": 0, - "base_page_cdn": "Google", - "adult_site": 0, - "fixed_viewport": 0, - "score_progressive_jpeg": -1, - "firstPaint": 0, - "docCPUms": 1965.613, - "fullyLoadedCPUms": 2542.816, - "docCPUpct": 81, - "fullyLoadedCPUpct": 54, - "isResponsive": -1, - "date": 1415298900, - "CSI": [ - "v", - "s", - "imc", - "imn", - "imp", - "ei", - "e", - "atyp", - "adh", - "xjs", - "action", - "srt", - "p", - "npn", - "rt", - "xjsls", - "prt", - "xjses", - "xjsee", - "ol", - "iml", - "wsrt", - "cst", - "dnst", - "rqst", - "rspt" - ], - "CSI.v": 3, - "CSI.s": "webhp", - "CSI.imc": 1, - "CSI.imn": 1, - "CSI.imp": 1, - "CSI.ei": "YL9bVNOzJpCzoQTWgoDQDA", - "CSI.e": "3700259,4011550,4011551,4011557,4011558,4011559,4013605,4014789,4016469,4016824,4017981,4019181,4020347,4020562,4020921,4021073,4022074,4022318,4022495,4022686,4023367,4023567,4023678,4023709,4023972,4024007,4025080,8500272,8500393,10200044,10200083,10200716", - "CSI.atyp": "csi", - "CSI.adh": "", - "CSI.xjs": 1065, - "CSI.action": "", - "CSI.srt": 5225, - "CSI.p": "s", - "CSI.npn": 1, - "CSI.rt": "xjsls.53,prt.54,xjses.768,xjsee.1033,xjs.1065,ol.1719,iml.1315,wsrt.678,cst.141,dnst.0,rqst.305,rspt.124", - "CSI.xjsls": 53, - "CSI.prt": 54, - "CSI.xjses": 768, - "CSI.xjsee": 1033, - "CSI.ol": 1719, - "CSI.iml": 1315, - "CSI.wsrt": 678, - "CSI.cst": 141, - "CSI.dnst": 0, - "CSI.rqst": 305, - "CSI.rspt": 124, - "SpeedIndex": 0, - "visualComplete": 0, - "run": 2, - "effectiveBps": 191491, - "effectiveBpsDoc": 203071, - "tester": "IE9204-192.168.102.94", - "pages": { - "details": "http://www.webpagetest.org/details.php?test=141106_TM_ZFM&run=2&cached=0", - "checklist": "http://www.webpagetest.org/performance_optimization.php?test=141106_TM_ZFM&run=2&cached=0", - "breakdown": "http://www.webpagetest.org/breakdown.php?test=141106_TM_ZFM&run=2&cached=0", - "domains": "http://www.webpagetest.org/domains.php?test=141106_TM_ZFM&run=2&cached=0", - "screenShot": "http://www.webpagetest.org/screen_shot.php?test=141106_TM_ZFM&run=2&cached=0" - }, - "thumbnails": { - "waterfall": "http://www.webpagetest.org/result/141106_TM_ZFM/2_waterfall_thumb.png", - "checklist": "http://www.webpagetest.org/result/141106_TM_ZFM/2_optimization_thumb.png", - "screenShot": "http://www.webpagetest.org/result/141106_TM_ZFM/2_screen_thumb.png" - }, - "images": { - "waterfall": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/2_waterfall.png", - "connectionView": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/2_connection.png", - "checklist": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/2_optimization.png", - "screenShot": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/2_screen.jpg" - }, - "rawData": { - "headers": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/2_report.txt", - "pageData": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/2_IEWPG.txt", - "requestsData": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/2_IEWTR.txt", - "utilization": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/2_progress.csv" - }, - "videoFrames": [ - { - "time": 0, - "image": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/video_2/frame_0000.jpg", - "VisuallyComplete": 100 - } - ], - "domains": { - "moc.elgoog.www": { - "bytes": 375378, - "requests": 9, - "connections": 2 - }, - "moc.citatsg.lss": { - "bytes": 14285, - "requests": 1, - "connections": 1 - }, - "moc.citatsg.www": { - "bytes": 59283, - "requests": 1, - "connections": 1 - }, - "moc.elgoog.sipa": { - "bytes": 156500, - "requests": 1, - "connections": 1 - } - }, - "breakdown": { - "html": { - "color": [ - 130, - 181, - 252 - ], - "bytes": 53619, - "requests": 3 - }, - "js": { - "color": [ - 254, - 197, - 132 - ], - "bytes": 506659, - "requests": 5 - }, - "css": { - "color": [ - 178, - 234, - 148 - ], - "bytes": 0, - "requests": 0 - }, - "image": { - "color": [ - 196, - 154, - 232 - ], - "bytes": 45168, - "requests": 4 - }, - "flash": { - "color": [ - 45, - 183, - 193 - ], - "bytes": 0, - "requests": 0 - }, - "font": { - "color": [ - 255, - 82, - 62 - ], - "bytes": 0, - "requests": 0 - }, - "other": { - "color": [ - 196, - 196, - 196 - ], - "bytes": 0, - "requests": 0 - } - } - }, - "repeatView": { - "URL": "http://www.google.com", - "loadTime": 1372, - "TTFB": 458, - "bytesOut": 9283, - "bytesOutDoc": 8735, - "bytesIn": 85486, - "bytesInDoc": 85359, - "connections": 2, - "requests": [ - { - "ip_addr": "74.125.225.80", - "method": "GET", - "host": "www.google.com", - "url": "/", - "responseCode": "302", - "load_ms": "122", - "ttfb_ms": "122", - "load_start": "50", - "bytesOut": "584", - "bytesIn": "532", - "objectSize": "231", - "cacheControl": "private", - "contentType": "text/html", - "type": "3", - "socket": "15", - "score_cache": "0", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "0", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "49", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "server_rtt": "49", - "client_port": "51852", - "jpeg_scan_count": "0", - "full_url": "http://www.google.com/", - "score_progressive_jpeg": -1, - "load_end": 172, - "ttfb_start": "50", - "ttfb_end": 172, - "download_start": 172, - "download_end": 172, - "download_ms": 0, - "all_start": "50", - "all_end": 172, - "all_ms": "122", - "headers": { - "request": [ - "GET / HTTP/1.1", - "Host: www.google.com", - "Connection: keep-alive", - "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36 PTST/191", - "Accept-Encoding: gzip,deflate,sdch", - "Accept-Language: en-US,en;q=0.8", - "Cookie: PREF=ID=475c491cad4e86aa:U=d2f3b954c35bcd9b:FF=0:TM=1415298912:LM=1415298912:S=lV95Ue2bqUmiPbk5; NID=67=FxZ3TVYsJlTtvVnmerGAmxHaZlZTz5A31FZWPSd1rO1IWsQQNoRhmBSazKHgNuIyFbSiyrYFhW6OHLe3wfVvB_ZYIKQjZ5yH_Zis-NxQXljm2qIsyFUvNKKpsqhKOv-p" - ], - "response": [ - "HTTP/1.1 302 Found", - "Location: https://www.google.com/?gws_rd=ssl", - "Cache-Control: private", - "Content-Type: text/html; charset=UTF-8", - "Date: Thu, 06 Nov 2014 18:35:24 GMT", - "Server: gws", - "Content-Length: 231", - "X-XSS-Protection: 1; mode=block", - "X-Frame-Options: SAMEORIGIN", - "Alternate-Protocol: 80:quic,p=0.01" - ] - }, - "index": 0, - "number": 1 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/?gws_rd=ssl", - "responseCode": "200", - "load_ms": "290", - "ttfb_ms": "197", - "load_start": "261", - "bytesOut": "254", - "bytesIn": "61974", - "objectSize": "0", - "expires": "-1", - "cacheControl": "private, max-age=0", - "contentType": "text/html", - "contentEncoding": "gzip", - "type": "3", - "socket": "161", - "score_cache": "-1", - "score_cdn": "-1", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 0, - "connect_ms": 0, - "ssl_ms": 57, - "gzip_total": "280", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "-1", - "cdn_provider": "Google", - "dns_start": "203", - "dns_end": "203", - "connect_start": "203", - "connect_end": "203", - "ssl_start": "203", - "ssl_end": "260", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/?gws_rd=ssl", - "score_progressive_jpeg": -1, - "load_end": 551, - "ttfb_start": "261", - "ttfb_end": 458, - "download_start": 458, - "download_end": 551, - "download_ms": 93, - "all_start": "203", - "all_end": 551, - "all_ms": 347, - "headers": { - "request": [ - "GET /?gws_rd=ssl HTTP/1.1", - "Host: www.google.com", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A87ED523-8779-4935-A86C-D91B13E86886" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=0", - "content-encoding: gzip", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:35:25 GMT", - "expires: -1", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 1, - "number": 2 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=bb9bVMmPC4z9oQSY8YG4DQ&e=3700259,4011550,4011551,4011557,4011558,4011559,4013605,4014789,4016469,4016824,4017981,4019181,4020347,4020562,4020921,4021073,4022074,4022318,4022495,4022686,4023367,4023567,4023678,4023709,4023972,4024007,4025080,8500272,8500393,10200044,10200083,10200716&atyp=csi&adh=&xjs=init.86.28.sb.52.p.12.spch.7.jsa.5.ifl.2&action=&srt=5139&p=s&npn=1&rt=xjsls.44,prt.46,xjses.264,xjsee.470,xjs.503,ol.775,iml.166,wsrt.584,cst.57,dnst.0,rqst.290,rspt.93", - "responseCode": "204", - "load_ms": "121", - "ttfb_ms": "107", - "load_start": "1388", - "bytesOut": "819", - "bytesIn": "251", - "objectSize": "0", - "contentType": "text/html", - "type": "3", - "socket": "161", - "score_cache": "0", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=bb9bVMmPC4z9oQSY8YG4DQ&e=3700259,4011550,4011551,4011557,4011558,4011559,4013605,4014789,4016469,4016824,4017981,4019181,4020347,4020562,4020921,4021073,4022074,4022318,4022495,4022686,4023367,4023567,4023678,4023709,4023972,4024007,4025080,8500272,8500393,10200044,10200083,10200716&atyp=csi&adh=&xjs=init.86.28.sb.52.p.12.spch.7.jsa.5.ifl.2&action=&srt=5139&p=s&npn=1&rt=xjsls.44,prt.46,xjses.264,xjsee.470,xjs.503,ol.775,iml.166,wsrt.584,cst.57,dnst.0,rqst.290,rspt.93", - "score_progressive_jpeg": -1, - "load_end": 1509, - "ttfb_start": "1388", - "ttfb_end": 1495, - "download_start": 1495, - "download_end": 1509, - "download_ms": 14, - "all_start": "1388", - "all_end": 1509, - "all_ms": "121", - "headers": { - "request": [ - "GET /gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=bb9bVMmPC4z9oQSY8YG4DQ&e=3700259,4011550,4011551,4011557,4011558,4011559,4013605,4014789,4016469,4016824,4017981,4019181,4020347,4020562,4020921,4021073,4022074,4022318,4022495,4022686,4023367,4023567,4023678,4023709,4023972,4024007,4025080,8500272,8500393,10200044,10200083,10200716&atyp=csi&adh=&xjs=init.86.28.sb.52.p.12.spch.7.jsa.5.ifl.2&action=&srt=5139&p=s&npn=1&rt=xjsls.44,prt.46,xjses.264,xjsee.470,xjs.503,ol.775,iml.166,wsrt.584,cst.57,dnst.0,rqst.290,rspt.93 HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A87ED523-8779-4935-A86C-D91B13E86886" - ], - "response": [ - "HTTP/1.1 204 No Content", - "alternate-protocol: 443:quic,p=0.01", - "content-length: 0", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:35:26 GMT", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 2, - "number": 3 - } - ], - "requestsDoc": 2, - "responses_200": 1, - "responses_404": 0, - "responses_other": 1, - "result": 0, - "render": 895, - "fullyLoaded": 1509, - "cached": 1, - "docTime": 1372, - "domTime": 0, - "score_cache": 0, - "score_cdn": -1, - "score_gzip": 100, - "score_cookies": -1, - "score_keep-alive": 100, - "score_minify": -1, - "score_combine": 100, - "score_compress": -1, - "score_etags": -1, - "gzip_total": 280, - "gzip_savings": 0, - "minify_total": 0, - "minify_savings": 0, - "image_total": 0, - "image_savings": 0, - "optimization_checked": 1, - "aft": 0, - "domElements": 288, - "pageSpeedVersion": "1.9", - "title": "Google", - "titleTime": 692, - "loadEventStart": 1354, - "loadEventEnd": 1363, - "domContentLoadedEventStart": 630, - "domContentLoadedEventEnd": 677, - "lastVisualChange": 0, - "browser_name": "Google Chrome", - "browser_version": "38.0.2125.111", - "server_count": 5, - "server_rtt": 0, - "base_page_cdn": "Google", - "adult_site": 0, - "fixed_viewport": 0, - "score_progressive_jpeg": -1, - "firstPaint": 0, - "docCPUms": 1248.008, - "fullyLoadedCPUms": 1716.011, - "docCPUpct": 90, - "fullyLoadedCPUpct": 47, - "isResponsive": -1, - "date": 1415298913, - "CSI": [ - "v", - "s", - "imc", - "imn", - "imp", - "ei", - "e", - "atyp", - "adh", - "xjs", - "action", - "srt", - "p", - "npn", - "rt", - "xjsls", - "prt", - "xjses", - "xjsee", - "ol", - "iml", - "wsrt", - "cst", - "dnst", - "rqst", - "rspt" - ], - "CSI.v": 3, - "CSI.s": "webhp", - "CSI.imc": 1, - "CSI.imn": 1, - "CSI.imp": 1, - "CSI.ei": "bb9bVMmPC4z9oQSY8YG4DQ", - "CSI.e": "3700259,4011550,4011551,4011557,4011558,4011559,4013605,4014789,4016469,4016824,4017981,4019181,4020347,4020562,4020921,4021073,4022074,4022318,4022495,4022686,4023367,4023567,4023678,4023709,4023972,4024007,4025080,8500272,8500393,10200044,10200083,10200716", - "CSI.atyp": "csi", - "CSI.adh": "", - "CSI.xjs": 503, - "CSI.action": "", - "CSI.srt": 5139, - "CSI.p": "s", - "CSI.npn": 1, - "CSI.rt": "xjsls.44,prt.46,xjses.264,xjsee.470,xjs.503,ol.775,iml.166,wsrt.584,cst.57,dnst.0,rqst.290,rspt.93", - "CSI.xjsls": 44, - "CSI.prt": 46, - "CSI.xjses": 264, - "CSI.xjsee": 470, - "CSI.ol": 775, - "CSI.iml": 166, - "CSI.wsrt": 584, - "CSI.cst": 57, - "CSI.dnst": 0, - "CSI.rqst": 290, - "CSI.rspt": 93, - "SpeedIndex": 0, - "visualComplete": 0, - "run": 2, - "effectiveBps": 81337, - "effectiveBpsDoc": 93390, - "tester": "IE9204-192.168.102.94", - "pages": { - "details": "http://www.webpagetest.org/details.php?test=141106_TM_ZFM&run=2&cached=1", - "checklist": "http://www.webpagetest.org/performance_optimization.php?test=141106_TM_ZFM&run=2&cached=1", - "breakdown": "http://www.webpagetest.org/breakdown.php?test=141106_TM_ZFM&run=2&cached=1", - "domains": "http://www.webpagetest.org/domains.php?test=141106_TM_ZFM&run=2&cached=1", - "screenShot": "http://www.webpagetest.org/screen_shot.php?test=141106_TM_ZFM&run=2&cached=1" - }, - "thumbnails": { - "waterfall": "http://www.webpagetest.org/result/141106_TM_ZFM/2_Cached_waterfall_thumb.png", - "checklist": "http://www.webpagetest.org/result/141106_TM_ZFM/2_Cached_optimization_thumb.png", - "screenShot": "http://www.webpagetest.org/result/141106_TM_ZFM/2_Cached_screen_thumb.png" - }, - "images": { - "waterfall": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/2_Cached_waterfall.png", - "connectionView": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/2_Cached_connection.png", - "checklist": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/2_Cached_optimization.png", - "screenShot": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/2_Cached_screen.jpg" - }, - "rawData": { - "headers": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/2_Cached_report.txt", - "pageData": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/2_Cached_IEWPG.txt", - "requestsData": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/2_Cached_IEWTR.txt", - "utilization": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/2_Cached_progress.csv" - }, - "videoFrames": [ - { - "time": 0, - "image": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/video_2_cached/frame_0000.jpg", - "VisuallyComplete": 100 - } - ], - "domains": { - "moc.elgoog.www": { - "bytes": 62757, - "requests": 3, - "connections": 2 - } - }, - "breakdown": { - "html": { - "color": [ - 130, - 181, - 252 - ], - "bytes": 62757, - "requests": 3 - }, - "js": { - "color": [ - 254, - 197, - 132 - ], - "bytes": 0, - "requests": 0 - }, - "css": { - "color": [ - 178, - 234, - 148 - ], - "bytes": 0, - "requests": 0 - }, - "image": { - "color": [ - 196, - 154, - 232 - ], - "bytes": 0, - "requests": 0 - }, - "flash": { - "color": [ - 45, - 183, - 193 - ], - "bytes": 0, - "requests": 0 - }, - "font": { - "color": [ - 255, - 82, - 62 - ], - "bytes": 0, - "requests": 0 - }, - "other": { - "color": [ - 196, - 196, - 196 - ], - "bytes": 0, - "requests": 0 - } - } - } - }, - "3": { - "firstView": { - "URL": "http://www.google.com", - "loadTime": 1859, - "TTFB": 527, - "bytesOut": 7732, - "bytesOutDoc": 6849, - "bytesIn": 406795, - "bytesInDoc": 388881, - "connections": 5, - "requests": [ - { - "ip_addr": "74.125.225.80", - "method": "GET", - "host": "www.google.com", - "url": "/", - "responseCode": "302", - "load_ms": "118", - "ttfb_ms": "118", - "load_start": "51", - "bytesOut": "342", - "bytesIn": "1044", - "objectSize": "231", - "cacheControl": "private", - "contentType": "text/html", - "type": "3", - "socket": "21", - "score_cache": "0", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "0", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "50", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "server_rtt": "50", - "client_port": "57503", - "jpeg_scan_count": "0", - "full_url": "http://www.google.com/", - "score_progressive_jpeg": -1, - "load_end": 169, - "ttfb_start": "51", - "ttfb_end": 169, - "download_start": 169, - "download_end": 169, - "download_ms": 0, - "all_start": "51", - "all_end": 169, - "all_ms": "118", - "headers": { - "request": [ - "GET / HTTP/1.1", - "Host: www.google.com", - "Connection: keep-alive", - "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36 PTST/191", - "Accept-Encoding: gzip,deflate,sdch", - "Accept-Language: en-US,en;q=0.8" - ], - "response": [ - "HTTP/1.1 302 Found", - "Location: https://www.google.com/?gws_rd=ssl", - "Cache-Control: private", - "Content-Type: text/html; charset=UTF-8", - "Set-Cookie: PREF=ID=c8ae0fd9a35b560a:FF=0:TM=1415298911:LM=1415298911:S=wGBHegrYkFIl74OM; expires=Sat, 05-Nov-2016 18:35:11 GMT; path=/; domain=.google.com", - "Set-Cookie: NID=67=A8rzWOkZhV5ph-wUG0ek5x-MFtIRDWOSW0DZYZy6dEV1D64v0M7VJTy8w_P4IB5OQNncxH3kkpmAskYeeLkP2oojzK796UCb3uS2cjlc3xQnx-PoH7WcYIwKFzjF_j6Z; expires=Fri, 08-May-2015 18:35:11 GMT; path=/; domain=.google.com; HttpOnly", - "P3P: CP=\"This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info.\"", - "Date: Thu, 06 Nov 2014 18:35:11 GMT", - "Server: gws", - "Content-Length: 231", - "X-XSS-Protection: 1; mode=block", - "X-Frame-Options: SAMEORIGIN", - "Alternate-Protocol: 80:quic,p=0.01" - ] - }, - "index": 0, - "number": 1 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/?gws_rd=ssl", - "responseCode": "200", - "load_ms": "272", - "ttfb_ms": "181", - "load_start": "346", - "bytesOut": "254", - "bytesIn": "59402", - "objectSize": "0", - "expires": "-1", - "cacheControl": "private, max-age=0", - "contentType": "text/html", - "contentEncoding": "gzip", - "type": "3", - "socket": "233", - "score_cache": "-1", - "score_cdn": "-1", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 0, - "connect_ms": 48, - "ssl_ms": 99, - "gzip_total": "799", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "-1", - "cdn_provider": "Google", - "dns_start": "199", - "dns_end": "199", - "connect_start": "199", - "connect_end": "247", - "ssl_start": "247", - "ssl_end": "346", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/?gws_rd=ssl", - "score_progressive_jpeg": -1, - "load_end": 618, - "ttfb_start": "346", - "ttfb_end": 527, - "download_start": 527, - "download_end": 618, - "download_ms": 91, - "all_start": "199", - "all_end": 618, - "all_ms": 419, - "headers": { - "request": [ - "GET /?gws_rd=ssl HTTP/1.1", - "Host: www.google.com", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=0", - "content-encoding: gzip", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:35:11 GMT", - "expires: -1", - "p3p: CP=\"This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info.\"", - "server: gws", - "set-cookie: PREF=ID=c8ae0fd9a35b560a:U=13a3a6adb0b5baae:FF=0:TM=1415298911:LM=1415298911:S=6_qwKnH9qWTEeuXk; expires=Sat, 05-Nov-2016 18:35:11 GMT; path=/; domain=.google.com", - "NID=67=Ue_d0qHMhmOdhZ9A50DYfvJhQQK0WV2c_RfwRbKG_3tCN8L0CV7FpvqilrK7El69DX146S0_ZqFG02sKFXcT-lgtI9XtRP1fWtZhQ15VPcdvLLjuUjMt1_Dt9d1C9gfk; expires=Fri, 08-May-2015 18:35:11 GMT; path=/; domain=.google.com; HttpOnly", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 1, - "number": 2 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/images/srpr/logo11w.png", - "responseCode": "200", - "load_ms": "572", - "ttfb_ms": "571", - "load_start": "815", - "bytesOut": "330", - "bytesIn": "14111", - "objectSize": "0", - "expires": "Thu, 06 Nov 2014 18:35:12 GMT", - "cacheControl": "private, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "233", - "score_cache": "0", - "score_cdn": "100", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/?gws_rd=ssl", - "initiator_line": "28", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/images/srpr/logo11w.png", - "score_progressive_jpeg": -1, - "load_end": 1387, - "ttfb_start": "815", - "ttfb_end": 1386, - "download_start": 1386, - "download_end": 1387, - "download_ms": 1, - "all_start": "815", - "all_end": 1387, - "all_ms": "572", - "headers": { - "request": [ - "GET /images/srpr/logo11w.png HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=31536000", - "content-length: 14022", - "content-type: image/png", - "date: Thu, 06 Nov 2014 18:35:12 GMT", - "expires: Thu, 06 Nov 2014 18:35:12 GMT", - "last-modified: Wed, 09 Oct 2013 01:35:39 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 2, - "number": 3 - }, - { - "method": "GET", - "host": "ssl.gstatic.com", - "url": "/gb/images/i1_71651352.png", - "responseCode": "200", - "load_ms": "77", - "ttfb_ms": "42", - "load_start": "881", - "bytesOut": "333", - "bytesIn": "14285", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 15:23:35 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "315", - "score_cache": "100", - "score_cdn": "0", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 0, - "connect_ms": 39, - "ssl_ms": 89, - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "dns_start": "752", - "dns_end": "752", - "connect_start": "752", - "connect_end": "791", - "ssl_start": "791", - "ssl_end": "880", - "initiator": "https://www.google.com/?gws_rd=ssl", - "initiator_line": "76", - "initiator_column": "35", - "server_count": "4", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://ssl.gstatic.com/gb/images/i1_71651352.png", - "score_progressive_jpeg": -1, - "load_end": 958, - "ttfb_start": "881", - "ttfb_end": 923, - "download_start": 923, - "download_end": 958, - "download_ms": 35, - "all_start": "752", - "all_end": 958, - "all_ms": 205, - "headers": { - "request": [ - "GET /gb/images/i1_71651352.png HTTP/1.1", - "Host: ssl.gstatic.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 97897", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-length: 14055", - "content-type: image/png", - "date: Wed, 05 Nov 2014 15:23:35 GMT", - "expires: Thu, 05 Nov 2015 15:23:35 GMT", - "last-modified: Thu, 16 Oct 2014 18:20:30 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 3, - "number": 4 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "responseCode": "200", - "load_ms": "333", - "ttfb_ms": "54", - "load_start": "884", - "bytesOut": "443", - "bytesIn": "233315", - "objectSize": "0", - "expires": "Fri, 06 Nov 2015 11:13:26 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "233", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "429", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/?gws_rd=ssl", - "initiator_line": "94", - "initiator_column": "17237", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "score_progressive_jpeg": -1, - "load_end": 1217, - "ttfb_start": "884", - "ttfb_end": 938, - "download_start": 938, - "download_end": 1217, - "download_ms": 279, - "all_start": "884", - "all_end": 1217, - "all_ms": "333", - "headers": { - "request": [ - "GET /xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP/1.1", - "Host: www.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 26506", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 130931", - "content-type: text/javascript; charset=UTF-8", - "date: Thu, 06 Nov 2014 11:13:26 GMT", - "expires: Fri, 06 Nov 2015 11:13:26 GMT", - "last-modified: Tue, 04 Nov 2014 19:30:26 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 4, - "number": 5 - }, - { - "method": "GET", - "host": "www.gstatic.com", - "url": "/og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w", - "responseCode": "200", - "load_ms": "247", - "ttfb_ms": "245", - "load_start": "1073", - "bytesOut": "392", - "bytesIn": "184146", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 13:04:24 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "339", - "score_cache": "100", - "score_cdn": "0", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 32, - "connect_ms": 40, - "ssl_ms": 82, - "gzip_total": "429", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "dns_start": "918", - "dns_end": "950", - "connect_start": "950", - "connect_end": "990", - "ssl_start": "990", - "ssl_end": "1072", - "initiator": "https://www.google.com/?gws_rd=ssl", - "initiator_line": "57", - "initiator_column": "143", - "server_count": "4", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.gstatic.com/og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w", - "score_progressive_jpeg": -1, - "load_end": 1320, - "ttfb_start": "1073", - "ttfb_end": 1318, - "download_start": 1318, - "download_end": 1320, - "download_ms": 2, - "all_start": "918", - "all_end": 1320, - "all_ms": 401, - "headers": { - "request": [ - "GET /og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w HTTP/1.1", - "Host: www.gstatic.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 106248", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 55207", - "content-type: text/javascript; charset=UTF-8", - "date: Wed, 05 Nov 2014 13:04:24 GMT", - "expires: Thu, 05 Nov 2015 13:04:24 GMT", - "last-modified: Tue, 04 Nov 2014 01:19:09 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 5, - "number": 6 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/extern_chrome/854094c746d4c9a.js?bav=on.2,or.r_qf.", - "responseCode": "200", - "load_ms": "170", - "ttfb_ms": "168", - "load_start": "1316", - "bytesOut": "340", - "bytesIn": "36559", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 00:00:00 GMT", - "cacheControl": "private", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "233", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "422", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31382688", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "initiator_line": "1187", - "initiator_column": "181", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/extern_chrome/854094c746d4c9a.js?bav=on.2,or.r_qf.", - "score_progressive_jpeg": -1, - "load_end": 1486, - "ttfb_start": "1316", - "ttfb_end": 1484, - "download_start": 1484, - "download_end": 1486, - "download_ms": 2, - "all_start": "1316", - "all_end": 1486, - "all_ms": "170", - "headers": { - "request": [ - "GET /extern_chrome/854094c746d4c9a.js?bav=on.2,or.r_qf. HTTP/1.1", - "Host: www.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private", - "content-disposition: attachment; filename=\"f.txt\"", - "content-encoding: gzip", - "content-length: 13825", - "content-type: text/javascript; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:35:12 GMT", - "expires: Thu, 05 Nov 2015 00:00:00 GMT", - "last-modified: Thu, 07 Nov 2013 00:00:00 GMT", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 6, - "number": 7 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm/am=lKj_TwWDwIxAARMQrA4/rt=j/d=0/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "responseCode": "200", - "load_ms": "121", - "ttfb_ms": "51", - "load_start": "1483", - "bytesOut": "682", - "bytesIn": "52270", - "objectSize": "0", - "expires": "Fri, 06 Nov 2015 12:08:37 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "233", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "428", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "initiator_line": "101", - "initiator_column": "112", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm/am=lKj_TwWDwIxAARMQrA4/rt=j/d=0/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "score_progressive_jpeg": -1, - "load_end": 1604, - "ttfb_start": "1483", - "ttfb_end": 1534, - "download_start": 1534, - "download_end": 1604, - "download_ms": 70, - "all_start": "1483", - "all_end": 1604, - "all_ms": "121", - "headers": { - "request": [ - "GET /xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm/am=lKj_TwWDwIxAARMQrA4/rt=j/d=0/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP/1.1", - "Host: www.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 23195", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 48157", - "content-type: text/javascript; charset=UTF-8", - "date: Thu, 06 Nov 2014 12:08:37 GMT", - "expires: Fri, 06 Nov 2015 12:08:37 GMT", - "last-modified: Tue, 04 Nov 2014 19:30:26 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 7, - "number": 8 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/textinputassistant/tia.png", - "responseCode": "200", - "load_ms": "200", - "ttfb_ms": "199", - "load_start": "1484", - "bytesOut": "333", - "bytesIn": "481", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 06:57:32 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "233", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/?gws_rd=ssl", - "initiator_line": "1", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/textinputassistant/tia.png", - "score_progressive_jpeg": -1, - "load_end": 1684, - "ttfb_start": "1484", - "ttfb_end": 1683, - "download_start": 1683, - "download_end": 1684, - "download_ms": 1, - "all_start": "1484", - "all_end": 1684, - "all_ms": "200", - "headers": { - "request": [ - "GET /textinputassistant/tia.png HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 128260", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-length: 387", - "content-type: image/png", - "date: Wed, 05 Nov 2014 06:57:32 GMT", - "expires: Thu, 05 Nov 2015 06:57:32 GMT", - "last-modified: Mon, 02 Apr 2012 02:13:37 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 8, - "number": 9 - }, - { - "method": "GET", - "host": "apis.google.com", - "url": "/_/scs/abc-static/_/js/k=gapi.gapi.en.3_mJ9Wvc9FU.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg/cb=gapi.loaded_0", - "responseCode": "200", - "load_ms": "114", - "ttfb_ms": "46", - "load_start": "1665", - "bytesOut": "456", - "bytesIn": "49927", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 15:23:35 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "434", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 34, - "connect_ms": 40, - "ssl_ms": 74, - "gzip_total": "428", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "1517", - "dns_end": "1551", - "connect_start": "1551", - "connect_end": "1591", - "ssl_start": "1591", - "ssl_end": "1665", - "initiator": "https://www.gstatic.com/og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w", - "initiator_line": "138", - "initiator_column": "381", - "server_count": "11", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://apis.google.com/_/scs/abc-static/_/js/k=gapi.gapi.en.3_mJ9Wvc9FU.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg/cb=gapi.loaded_0", - "score_progressive_jpeg": -1, - "load_end": 1779, - "ttfb_start": "1665", - "ttfb_end": 1711, - "download_start": 1711, - "download_end": 1779, - "download_ms": 68, - "all_start": "1517", - "all_end": 1779, - "all_ms": 262, - "headers": { - "request": [ - "GET /_/scs/abc-static/_/js/k=gapi.gapi.en.3_mJ9Wvc9FU.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg/cb=gapi.loaded_0 HTTP/1.1", - "Host: apis.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 97898", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 48911", - "content-type: text/javascript; charset=UTF-8", - "date: Wed, 05 Nov 2014 15:23:35 GMT", - "expires: Thu, 05 Nov 2015 15:23:35 GMT", - "last-modified: Thu, 16 Oct 2014 07:30:29 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 9, - "number": 10 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/images/nav_logo195.png", - "responseCode": "200", - "load_ms": "84", - "ttfb_ms": "68", - "load_start": "1874", - "bytesOut": "329", - "bytesIn": "16300", - "objectSize": "0", - "expires": "Thu, 06 Nov 2014 18:35:13 GMT", - "cacheControl": "private, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "233", - "score_cache": "0", - "score_cdn": "100", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/images/nav_logo195.png", - "score_progressive_jpeg": -1, - "load_end": 1958, - "ttfb_start": "1874", - "ttfb_end": 1942, - "download_start": 1942, - "download_end": 1958, - "download_ms": 16, - "all_start": "1874", - "all_end": 1958, - "all_ms": "84", - "headers": { - "request": [ - "GET /images/nav_logo195.png HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=31536000", - "content-length: 16214", - "content-type: image/png", - "date: Thu, 06 Nov 2014 18:35:13 GMT", - "expires: Thu, 06 Nov 2014 18:35:13 GMT", - "last-modified: Wed, 21 May 2014 00:02:44 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 10, - "number": 11 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=X79bVJ_KLYi2oQSrr4DwDA&e=3700261,4011550,4011551,4011557,4011558,4011559,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021341,4021532,4021597,4022074,4022318,4022495,4022688,4023367,4023566,4023709,4023972,4023979,4024625,4024691,4024905,4024932,8500272,8500394,8500699,8500755,10200083,10200716,10200744,10200766&atyp=csi&adh=&xjs=init.119.28.sb.65.m.28.p.12.spch.6.foot.1&action=&srt=642&p=s&npn=1&rt=xjsls.26,prt.27,xjses.520,xjsee.706,xjs.760,ol.1207,iml.761,wsrt.642,cst.146,dnst.0,rqst.272,rspt.91", - "responseCode": "204", - "load_ms": "111", - "ttfb_ms": "110", - "load_start": "1876", - "bytesOut": "878", - "bytesIn": "251", - "objectSize": "0", - "contentType": "text/html", - "type": "3", - "socket": "233", - "score_cache": "0", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=X79bVJ_KLYi2oQSrr4DwDA&e=3700261,4011550,4011551,4011557,4011558,4011559,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021341,4021532,4021597,4022074,4022318,4022495,4022688,4023367,4023566,4023709,4023972,4023979,4024625,4024691,4024905,4024932,8500272,8500394,8500699,8500755,10200083,10200716,10200744,10200766&atyp=csi&adh=&xjs=init.119.28.sb.65.m.28.p.12.spch.6.foot.1&action=&srt=642&p=s&npn=1&rt=xjsls.26,prt.27,xjses.520,xjsee.706,xjs.760,ol.1207,iml.761,wsrt.642,cst.146,dnst.0,rqst.272,rspt.91", - "score_progressive_jpeg": -1, - "load_end": 1987, - "ttfb_start": "1876", - "ttfb_end": 1986, - "download_start": 1986, - "download_end": 1987, - "download_ms": 1, - "all_start": "1876", - "all_end": 1987, - "all_ms": "111", - "headers": { - "request": [ - "GET /gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=X79bVJ_KLYi2oQSrr4DwDA&e=3700261,4011550,4011551,4011557,4011558,4011559,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021341,4021532,4021597,4022074,4022318,4022495,4022688,4023367,4023566,4023709,4023972,4023979,4024625,4024691,4024905,4024932,8500272,8500394,8500699,8500755,10200083,10200716,10200744,10200766&atyp=csi&adh=&xjs=init.119.28.sb.65.m.28.p.12.spch.6.foot.1&action=&srt=642&p=s&npn=1&rt=xjsls.26,prt.27,xjses.520,xjsee.706,xjs.760,ol.1207,iml.761,wsrt.642,cst.146,dnst.0,rqst.272,rspt.91 HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF" - ], - "response": [ - "HTTP/1.1 204 No Content", - "alternate-protocol: 443:quic,p=0.01", - "content-length: 0", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:35:13 GMT", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 11, - "number": 12 - } - ], - "requestsDoc": 10, - "responses_200": 10, - "responses_404": 0, - "responses_other": 1, - "result": 0, - "render": 793, - "fullyLoaded": 1987, - "cached": 0, - "docTime": 1859, - "domTime": 0, - "score_cache": 63, - "score_cdn": 77, - "score_gzip": 100, - "score_cookies": -1, - "score_keep-alive": 100, - "score_minify": -1, - "score_combine": 100, - "score_compress": -1, - "score_etags": -1, - "gzip_total": 2935, - "gzip_savings": 0, - "minify_total": 0, - "minify_savings": 0, - "image_total": 0, - "image_savings": 0, - "optimization_checked": 1, - "aft": 0, - "domElements": 288, - "pageSpeedVersion": "1.9", - "title": "Google", - "titleTime": 891, - "loadEventStart": 1845, - "loadEventEnd": 1851, - "domContentLoadedEventStart": 669, - "domContentLoadedEventEnd": 714, - "lastVisualChange": 0, - "browser_name": "Google Chrome", - "browser_version": "38.0.2125.111", - "server_count": 5, - "server_rtt": 0, - "base_page_cdn": "Google", - "adult_site": 0, - "fixed_viewport": 0, - "score_progressive_jpeg": -1, - "firstPaint": 747, - "docCPUms": 1201.208, - "fullyLoadedCPUms": 1372.809, - "docCPUpct": 64, - "fullyLoadedCPUpct": 34, - "isResponsive": -1, - "date": 1415298674, - "CSI": [ - "v", - "s", - "imc", - "imn", - "imp", - "ei", - "e", - "atyp", - "adh", - "xjs", - "action", - "srt", - "p", - "npn", - "rt", - "xjsls", - "prt", - "xjses", - "xjsee", - "ol", - "iml", - "wsrt", - "cst", - "dnst", - "rqst", - "rspt" - ], - "CSI.v": 3, - "CSI.s": "webhp", - "CSI.imc": 1, - "CSI.imn": 1, - "CSI.imp": 1, - "CSI.ei": "X79bVJ_KLYi2oQSrr4DwDA", - "CSI.e": "3700261,4011550,4011551,4011557,4011558,4011559,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021341,4021532,4021597,4022074,4022318,4022495,4022688,4023367,4023566,4023709,4023972,4023979,4024625,4024691,4024905,4024932,8500272,8500394,8500699,8500755,10200083,10200716,10200744,10200766", - "CSI.atyp": "csi", - "CSI.adh": "", - "CSI.xjs": 760, - "CSI.action": "", - "CSI.srt": 642, - "CSI.p": "s", - "CSI.npn": 1, - "CSI.rt": "xjsls.26,prt.27,xjses.520,xjsee.706,xjs.760,ol.1207,iml.761,wsrt.642,cst.146,dnst.0,rqst.272,rspt.91", - "CSI.xjsls": 26, - "CSI.prt": 27, - "CSI.xjses": 520, - "CSI.xjsee": 706, - "CSI.ol": 1207, - "CSI.iml": 761, - "CSI.wsrt": 642, - "CSI.cst": 146, - "CSI.dnst": 0, - "CSI.rqst": 272, - "CSI.rspt": 91, - "SpeedIndex": 0, - "visualComplete": 0, - "run": 3, - "effectiveBps": 278626, - "effectiveBpsDoc": 291952, - "tester": "IE9103-192.168.101.93", - "pages": { - "details": "http://www.webpagetest.org/details.php?test=141106_TM_ZFM&run=3&cached=0", - "checklist": "http://www.webpagetest.org/performance_optimization.php?test=141106_TM_ZFM&run=3&cached=0", - "breakdown": "http://www.webpagetest.org/breakdown.php?test=141106_TM_ZFM&run=3&cached=0", - "domains": "http://www.webpagetest.org/domains.php?test=141106_TM_ZFM&run=3&cached=0", - "screenShot": "http://www.webpagetest.org/screen_shot.php?test=141106_TM_ZFM&run=3&cached=0" - }, - "thumbnails": { - "waterfall": "http://www.webpagetest.org/result/141106_TM_ZFM/3_waterfall_thumb.png", - "checklist": "http://www.webpagetest.org/result/141106_TM_ZFM/3_optimization_thumb.png", - "screenShot": "http://www.webpagetest.org/result/141106_TM_ZFM/3_screen_thumb.png" - }, - "images": { - "waterfall": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/3_waterfall.png", - "connectionView": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/3_connection.png", - "checklist": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/3_optimization.png", - "screenShot": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/3_screen.jpg" - }, - "rawData": { - "headers": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/3_report.txt", - "pageData": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/3_IEWPG.txt", - "requestsData": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/3_IEWTR.txt", - "utilization": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/3_progress.csv" - }, - "videoFrames": [ - { - "time": 0, - "image": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/video_3/frame_0000.jpg", - "VisuallyComplete": 100 - } - ], - "domains": { - "moc.elgoog.www": { - "bytes": 413733, - "requests": 9, - "connections": 2 - }, - "moc.citatsg.lss": { - "bytes": 14285, - "requests": 1, - "connections": 1 - }, - "moc.citatsg.www": { - "bytes": 184146, - "requests": 1, - "connections": 1 - }, - "moc.elgoog.sipa": { - "bytes": 49927, - "requests": 1, - "connections": 1 - } - }, - "breakdown": { - "html": { - "color": [ - 130, - 181, - 252 - ], - "bytes": 60697, - "requests": 3 - }, - "js": { - "color": [ - 254, - 197, - 132 - ], - "bytes": 556217, - "requests": 5 - }, - "css": { - "color": [ - 178, - 234, - 148 - ], - "bytes": 0, - "requests": 0 - }, - "image": { - "color": [ - 196, - 154, - 232 - ], - "bytes": 45177, - "requests": 4 - }, - "flash": { - "color": [ - 45, - 183, - 193 - ], - "bytes": 0, - "requests": 0 - }, - "font": { - "color": [ - 255, - 82, - 62 - ], - "bytes": 0, - "requests": 0 - }, - "other": { - "color": [ - 196, - 196, - 196 - ], - "bytes": 0, - "requests": 0 - } - } - }, - "repeatView": { - "URL": "http://www.google.com", - "loadTime": 1103, - "TTFB": 418, - "bytesOut": 9310, - "bytesOutDoc": 8740, - "bytesIn": 85510, - "bytesInDoc": 85383, - "connections": 2, - "requests": [ - { - "ip_addr": "74.125.225.80", - "method": "GET", - "host": "www.google.com", - "url": "/", - "responseCode": "302", - "load_ms": "126", - "ttfb_ms": "126", - "load_start": "49", - "bytesOut": "584", - "bytesIn": "532", - "objectSize": "231", - "cacheControl": "private", - "contentType": "text/html", - "type": "3", - "socket": "15", - "score_cache": "0", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "0", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "49", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "server_rtt": "49", - "client_port": "57544", - "jpeg_scan_count": "0", - "full_url": "http://www.google.com/", - "score_progressive_jpeg": -1, - "load_end": 175, - "ttfb_start": "49", - "ttfb_end": 175, - "download_start": 175, - "download_end": 175, - "download_ms": 0, - "all_start": "49", - "all_end": 175, - "all_ms": "126", - "headers": { - "request": [ - "GET / HTTP/1.1", - "Host: www.google.com", - "Connection: keep-alive", - "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36 PTST/191", - "Accept-Encoding: gzip,deflate,sdch", - "Accept-Language: en-US,en;q=0.8", - "Cookie: PREF=ID=c8ae0fd9a35b560a:U=13a3a6adb0b5baae:FF=0:TM=1415298911:LM=1415298911:S=6_qwKnH9qWTEeuXk; NID=67=Ue_d0qHMhmOdhZ9A50DYfvJhQQK0WV2c_RfwRbKG_3tCN8L0CV7FpvqilrK7El69DX146S0_ZqFG02sKFXcT-lgtI9XtRP1fWtZhQ15VPcdvLLjuUjMt1_Dt9d1C9gfk" - ], - "response": [ - "HTTP/1.1 302 Found", - "Location: https://www.google.com/?gws_rd=ssl", - "Cache-Control: private", - "Content-Type: text/html; charset=UTF-8", - "Date: Thu, 06 Nov 2014 18:35:23 GMT", - "Server: gws", - "Content-Length: 231", - "X-XSS-Protection: 1; mode=block", - "X-Frame-Options: SAMEORIGIN", - "Alternate-Protocol: 80:quic,p=0.01" - ] - }, - "index": 0, - "number": 1 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/?gws_rd=ssl", - "responseCode": "200", - "load_ms": "267", - "ttfb_ms": "205", - "load_start": "213", - "bytesOut": "254", - "bytesIn": "52844", - "objectSize": "0", - "expires": "-1", - "cacheControl": "private, max-age=0", - "contentType": "text/html", - "contentEncoding": "gzip", - "type": "3", - "socket": "155", - "score_cache": "-1", - "score_cdn": "-1", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 0, - "connect_ms": 0, - "ssl_ms": 0, - "gzip_total": "280", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "-1", - "cdn_provider": "Google", - "dns_start": "199", - "dns_end": "199", - "connect_start": "199", - "connect_end": "199", - "ssl_start": "199", - "ssl_end": "199", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/?gws_rd=ssl", - "score_progressive_jpeg": -1, - "load_end": 480, - "ttfb_start": "213", - "ttfb_end": 418, - "download_start": 418, - "download_end": 480, - "download_ms": 62, - "all_start": "213", - "all_end": 480, - "all_ms": "267", - "headers": { - "request": [ - "GET /?gws_rd=ssl HTTP/1.1", - "Host: www.google.com", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 05225A0A-144B-44A2-A94B-364C8B987AB1" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=0", - "content-encoding: gzip", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:35:23 GMT", - "expires: -1", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 1, - "number": 2 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=a79bVPW5FZPnoAS_rYIY&e=3700261,4011550,4011551,4011557,4011558,4011559,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021341,4021532,4021597,4022074,4022318,4022495,4022688,4023367,4023566,4023709,4023972,4023979,4024625,4024691,4024905,4024932,8500272,8500394,8500699,8500755,10200083,10200716,10200744,10200766&atyp=csi&adh=&xjs=init.71.28.sb.42.p.12.spch.6.imap.2.m.2&action=&srt=503&p=s&npn=1&rt=xjsls.25,prt.26,xjses.186,xjsee.330,xjs.378,ol.594,iml.127,wsrt.503,cst.0,dnst.0,rqst.268,rspt.62", - "responseCode": "204", - "load_ms": "110", - "ttfb_ms": "109", - "load_start": "1130", - "bytesOut": "871", - "bytesIn": "251", - "objectSize": "0", - "contentType": "text/html", - "type": "3", - "socket": "155", - "score_cache": "0", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=a79bVPW5FZPnoAS_rYIY&e=3700261,4011550,4011551,4011557,4011558,4011559,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021341,4021532,4021597,4022074,4022318,4022495,4022688,4023367,4023566,4023709,4023972,4023979,4024625,4024691,4024905,4024932,8500272,8500394,8500699,8500755,10200083,10200716,10200744,10200766&atyp=csi&adh=&xjs=init.71.28.sb.42.p.12.spch.6.imap.2.m.2&action=&srt=503&p=s&npn=1&rt=xjsls.25,prt.26,xjses.186,xjsee.330,xjs.378,ol.594,iml.127,wsrt.503,cst.0,dnst.0,rqst.268,rspt.62", - "score_progressive_jpeg": -1, - "load_end": 1240, - "ttfb_start": "1130", - "ttfb_end": 1239, - "download_start": 1239, - "download_end": 1240, - "download_ms": 1, - "all_start": "1130", - "all_end": 1240, - "all_ms": "110", - "headers": { - "request": [ - "GET /gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=a79bVPW5FZPnoAS_rYIY&e=3700261,4011550,4011551,4011557,4011558,4011559,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021341,4021532,4021597,4022074,4022318,4022495,4022688,4023367,4023566,4023709,4023972,4023979,4024625,4024691,4024905,4024932,8500272,8500394,8500699,8500755,10200083,10200716,10200744,10200766&atyp=csi&adh=&xjs=init.71.28.sb.42.p.12.spch.6.imap.2.m.2&action=&srt=503&p=s&npn=1&rt=xjsls.25,prt.26,xjses.186,xjsee.330,xjs.378,ol.594,iml.127,wsrt.503,cst.0,dnst.0,rqst.268,rspt.62 HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 05225A0A-144B-44A2-A94B-364C8B987AB1" - ], - "response": [ - "HTTP/1.1 204 No Content", - "alternate-protocol: 443:quic,p=0.01", - "content-length: 0", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:35:24 GMT", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 2, - "number": 3 - } - ], - "requestsDoc": 2, - "responses_200": 1, - "responses_404": 0, - "responses_other": 1, - "result": 0, - "render": 693, - "fullyLoaded": 1240, - "cached": 1, - "docTime": 1103, - "domTime": 0, - "score_cache": 0, - "score_cdn": -1, - "score_gzip": 100, - "score_cookies": -1, - "score_keep-alive": 100, - "score_minify": -1, - "score_combine": 100, - "score_compress": -1, - "score_etags": -1, - "gzip_total": 280, - "gzip_savings": 0, - "minify_total": 0, - "minify_savings": 0, - "image_total": 0, - "image_savings": 0, - "optimization_checked": 1, - "aft": 0, - "domElements": 288, - "pageSpeedVersion": "1.9", - "title": "Google", - "titleTime": 691, - "loadEventStart": 1090, - "loadEventEnd": 1100, - "domContentLoadedEventStart": 529, - "domContentLoadedEventEnd": 572, - "lastVisualChange": 0, - "browser_name": "Google Chrome", - "browser_version": "38.0.2125.111", - "server_count": 5, - "server_rtt": 0, - "base_page_cdn": "Google", - "adult_site": 0, - "fixed_viewport": 0, - "score_progressive_jpeg": -1, - "firstPaint": 609, - "docCPUms": 982.806, - "fullyLoadedCPUms": 1092.007, - "docCPUpct": 87, - "fullyLoadedCPUpct": 33, - "isResponsive": -1, - "date": 1415298686, - "CSI": [ - "v", - "s", - "imc", - "imn", - "imp", - "ei", - "e", - "atyp", - "adh", - "xjs", - "action", - "srt", - "p", - "npn", - "rt", - "xjsls", - "prt", - "xjses", - "xjsee", - "ol", - "iml", - "wsrt", - "cst", - "dnst", - "rqst", - "rspt" - ], - "CSI.v": 3, - "CSI.s": "webhp", - "CSI.imc": 1, - "CSI.imn": 1, - "CSI.imp": 1, - "CSI.ei": "a79bVPW5FZPnoAS_rYIY", - "CSI.e": "3700261,4011550,4011551,4011557,4011558,4011559,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021341,4021532,4021597,4022074,4022318,4022495,4022688,4023367,4023566,4023709,4023972,4023979,4024625,4024691,4024905,4024932,8500272,8500394,8500699,8500755,10200083,10200716,10200744,10200766", - "CSI.atyp": "csi", - "CSI.adh": "", - "CSI.xjs": 378, - "CSI.action": "", - "CSI.srt": 503, - "CSI.p": "s", - "CSI.npn": 1, - "CSI.rt": "xjsls.25,prt.26,xjses.186,xjsee.330,xjs.378,ol.594,iml.127,wsrt.503,cst.0,dnst.0,rqst.268,rspt.62", - "CSI.xjsls": 25, - "CSI.prt": 26, - "CSI.xjses": 186, - "CSI.xjsee": 330, - "CSI.ol": 594, - "CSI.iml": 127, - "CSI.wsrt": 503, - "CSI.cst": 0, - "CSI.dnst": 0, - "CSI.rqst": 268, - "CSI.rspt": 62, - "SpeedIndex": 0, - "visualComplete": 0, - "run": 3, - "effectiveBps": 104026, - "effectiveBpsDoc": 124646, - "tester": "IE9103-192.168.101.93", - "pages": { - "details": "http://www.webpagetest.org/details.php?test=141106_TM_ZFM&run=3&cached=1", - "checklist": "http://www.webpagetest.org/performance_optimization.php?test=141106_TM_ZFM&run=3&cached=1", - "breakdown": "http://www.webpagetest.org/breakdown.php?test=141106_TM_ZFM&run=3&cached=1", - "domains": "http://www.webpagetest.org/domains.php?test=141106_TM_ZFM&run=3&cached=1", - "screenShot": "http://www.webpagetest.org/screen_shot.php?test=141106_TM_ZFM&run=3&cached=1" - }, - "thumbnails": { - "waterfall": "http://www.webpagetest.org/result/141106_TM_ZFM/3_Cached_waterfall_thumb.png", - "checklist": "http://www.webpagetest.org/result/141106_TM_ZFM/3_Cached_optimization_thumb.png", - "screenShot": "http://www.webpagetest.org/result/141106_TM_ZFM/3_Cached_screen_thumb.png" - }, - "images": { - "waterfall": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/3_Cached_waterfall.png", - "connectionView": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/3_Cached_connection.png", - "checklist": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/3_Cached_optimization.png", - "screenShot": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/3_Cached_screen.jpg" - }, - "rawData": { - "headers": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/3_Cached_report.txt", - "pageData": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/3_Cached_IEWPG.txt", - "requestsData": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/3_Cached_IEWTR.txt", - "utilization": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/3_Cached_progress.csv" - }, - "videoFrames": [ - { - "time": 0, - "image": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/video_3_cached/frame_0000.jpg", - "VisuallyComplete": 100 - } - ], - "domains": { - "moc.elgoog.www": { - "bytes": 53627, - "requests": 3, - "connections": 2 - } - }, - "breakdown": { - "html": { - "color": [ - 130, - 181, - 252 - ], - "bytes": 53627, - "requests": 3 - }, - "js": { - "color": [ - 254, - 197, - 132 - ], - "bytes": 0, - "requests": 0 - }, - "css": { - "color": [ - 178, - 234, - 148 - ], - "bytes": 0, - "requests": 0 - }, - "image": { - "color": [ - 196, - 154, - 232 - ], - "bytes": 0, - "requests": 0 - }, - "flash": { - "color": [ - 45, - 183, - 193 - ], - "bytes": 0, - "requests": 0 - }, - "font": { - "color": [ - 255, - 82, - 62 - ], - "bytes": 0, - "requests": 0 - }, - "other": { - "color": [ - 196, - 196, - 196 - ], - "bytes": 0, - "requests": 0 - } - } - } - } - }, - "fvonly": false, - "successfulFVRuns": 3, - "successfulRVRuns": 3, - "average": { - "firstView": { - "loadTime": 2153, - "TTFB": 596.33333333333, - "bytesOut": 7487.6666666667, - "bytesOutDoc": 6613, - "bytesIn": 405286, - "bytesInDoc": 387365.33333333, - "connections": 4.6666666666667, - "requests": 12, - "requestsDoc": 10, - "responses_200": 10, - "responses_404": 0, - "responses_other": 1, - "result": 0, - "render": 957.33333333333, - "fullyLoaded": 2312.3333333333, - "cached": 0, - "docTime": 2153, - "domTime": 0, - "score_cache": 63, - "score_cdn": 77, - "score_gzip": 100, - "score_cookies": -1, - "score_keep-alive": 100, - "score_minify": -1, - "score_combine": 100, - "score_compress": -1, - "score_etags": -1, - "gzip_total": 2934.6666666667, - "gzip_savings": 0, - "minify_total": 0, - "minify_savings": 0, - "image_total": 0, - "image_savings": 0, - "optimization_checked": 1, - "aft": 0, - "domElements": 288, - "pageSpeedVersion": 1.9, - "titleTime": 956.66666666667, - "loadEventStart": 2140.6666666667, - "loadEventEnd": 2148.6666666667, - "domContentLoadedEventStart": 764.66666666667, - "domContentLoadedEventEnd": 820.66666666667, - "lastVisualChange": 0, - "server_count": 5, - "server_rtt": 0, - "adult_site": 0, - "fixed_viewport": 0, - "score_progressive_jpeg": -1, - "firstPaint": 249, - "docCPUms": 1565.2103333333, - "fullyLoadedCPUms": 1996.8126666667, - "docCPUpct": 71.333333333333, - "fullyLoadedCPUpct": 45, - "isResponsive": -1, - "date": 1415298749.6667, - "CSI.v": 3, - "CSI.imc": 1, - "CSI.imn": 1, - "CSI.imp": 1, - "CSI.xjs": 863, - "CSI.srt": 3254, - "CSI.npn": 1, - "CSI.xjsls": 37.666666666667, - "CSI.prt": 38.666666666667, - "CSI.xjses": 621, - "CSI.xjsee": 821.33333333333, - "CSI.ol": 1419.3333333333, - "CSI.iml": 778, - "CSI.wsrt": 725.66666666667, - "CSI.cst": 150, - "CSI.dnst": 0, - "CSI.rqst": 345.66666666667, - "CSI.rspt": 97.333333333333, - "SpeedIndex": 0, - "visualComplete": 0, - "run": 2, - "effectiveBps": 242137, - "effectiveBpsDoc": 254696, - "avgRun": 1 - }, - "repeatView": { - "loadTime": 1275.6666666667, - "TTFB": 460.33333333333, - "bytesOut": 9298.3333333333, - "bytesOutDoc": 8738.3333333333, - "bytesIn": 85517.666666667, - "bytesInDoc": 85390.666666667, - "connections": 2, - "requests": 3, - "requestsDoc": 2, - "responses_200": 1, - "responses_404": 0, - "responses_other": 1, - "result": 0, - "render": 793.33333333333, - "fullyLoaded": 1413.3333333333, - "cached": 1, - "docTime": 1275.6666666667, - "domTime": 0, - "score_cache": 0, - "score_cdn": -1, - "score_gzip": 100, - "score_cookies": -1, - "score_keep-alive": 100, - "score_minify": -1, - "score_combine": 100, - "score_compress": -1, - "score_etags": -1, - "gzip_total": 280, - "gzip_savings": 0, - "minify_total": 0, - "minify_savings": 0, - "image_total": 0, - "image_savings": 0, - "optimization_checked": 1, - "aft": 0, - "domElements": 288, - "pageSpeedVersion": 1.9, - "titleTime": 691.33333333333, - "loadEventStart": 1263.6666666667, - "loadEventEnd": 1280.3333333333, - "domContentLoadedEventStart": 601.66666666667, - "domContentLoadedEventEnd": 649.66666666667, - "lastVisualChange": 0, - "server_count": 5, - "server_rtt": 0, - "adult_site": 0, - "fixed_viewport": 0, - "score_progressive_jpeg": -1, - "firstPaint": 203, - "docCPUms": 1138.8073333333, - "fullyLoadedCPUms": 1482.0096666667, - "docCPUpct": 88, - "fullyLoadedCPUpct": 41.666666666667, - "isResponsive": -1, - "date": 1415298762, - "CSI.v": 3, - "CSI.imc": 1, - "CSI.imn": 1, - "CSI.imp": 1, - "CSI.xjs": 450.33333333333, - "CSI.srt": 3096, - "CSI.npn": 1, - "CSI.xjsls": 36, - "CSI.prt": 37.333333333333, - "CSI.xjses": 229, - "CSI.xjsee": 406.66666666667, - "CSI.ol": 711, - "CSI.iml": 155, - "CSI.wsrt": 564, - "CSI.cst": 37.333333333333, - "CSI.dnst": 0, - "CSI.rqst": 274.33333333333, - "CSI.rspt": 76.333333333333, - "SpeedIndex": 0, - "visualComplete": 0, - "run": 2, - "effectiveBps": 90711.333333333, - "effectiveBpsDoc": 106299, - "avgRun": 1 - } - }, - "standardDeviation": { - "firstView": { - "loadTime": 225, - "TTFB": 108, - "bytesOut": 338, - "bytesOutDoc": 330, - "bytesIn": 2094, - "bytesInDoc": 2086, - "connections": 0, - "requests": 0, - "requestsDoc": 0, - "responses_200": 0, - "responses_404": 0, - "responses_other": 0, - "result": 0, - "render": 125, - "fullyLoaded": 256, - "cached": 0, - "docTime": 225, - "domTime": 0, - "score_cache": 0, - "score_cdn": 0, - "score_gzip": 0, - "score_cookies": 0, - "score_keep-alive": 0, - "score_minify": 0, - "score_combine": 0, - "score_compress": 0, - "score_etags": 0, - "gzip_total": 0, - "gzip_savings": 0, - "minify_total": 0, - "minify_savings": 0, - "image_total": 0, - "image_savings": 0, - "optimization_checked": 0, - "aft": 0, - "domElements": 0, - "pageSpeedVersion": 0, - "titleTime": 98, - "loadEventStart": 225, - "loadEventEnd": 227, - "domContentLoadedEventStart": 93, - "domContentLoadedEventEnd": 95, - "lastVisualChange": 0, - "server_count": 0, - "server_rtt": 0, - "adult_site": 0, - "fixed_viewport": 0, - "score_progressive_jpeg": 0, - "firstPaint": 352, - "docCPUms": 313, - "fullyLoadedCPUms": 480, - "docCPUpct": 7, - "fullyLoadedCPUpct": 8, - "isResponsive": 0, - "date": 106, - "CSI.v": 0, - "CSI.imc": 0, - "CSI.imn": 0, - "CSI.imp": 0, - "CSI.xjs": 142, - "CSI.srt": 1925, - "CSI.npn": 0, - "CSI.xjsls": 11, - "CSI.prt": 11, - "CSI.xjses": 106, - "CSI.xjsee": 149, - "CSI.ol": 217, - "CSI.iml": 431, - "CSI.wsrt": 94, - "CSI.cst": 9, - "CSI.dnst": 0, - "CSI.rqst": 81, - "CSI.rspt": 19, - "SpeedIndex": 0, - "visualComplete": 0, - "run": 0, - "effectiveBps": 36954, - "effectiveBpsDoc": 37681, - "avgRun": null - }, - "repeatView": { - "loadTime": 122, - "TTFB": 35, - "bytesOut": 11, - "bytesOutDoc": 2, - "bytesIn": 29, - "bytesInDoc": 29, - "connections": 0, - "requests": 0, - "requestsDoc": 0, - "responses_200": 0, - "responses_404": 0, - "responses_other": 0, - "result": 0, - "render": 82, - "fullyLoaded": 122, - "cached": 0, - "docTime": 122, - "domTime": 0, - "score_cache": 0, - "score_cdn": 0, - "score_gzip": 0, - "score_cookies": 0, - "score_keep-alive": 0, - "score_minify": 0, - "score_combine": 0, - "score_compress": 0, - "score_etags": 0, - "gzip_total": 0, - "gzip_savings": 0, - "minify_total": 0, - "minify_savings": 0, - "image_total": 0, - "image_savings": 0, - "optimization_checked": 0, - "aft": 0, - "domElements": 0, - "pageSpeedVersion": 0, - "titleTime": 0, - "loadEventStart": 122, - "loadEventEnd": 127, - "domContentLoadedEventStart": 51, - "domContentLoadedEventEnd": 55, - "lastVisualChange": 0, - "server_count": 0, - "server_rtt": 0, - "adult_site": 0, - "fixed_viewport": 0, - "score_progressive_jpeg": 0, - "firstPaint": 287, - "docCPUms": 113, - "fullyLoadedCPUms": 277, - "docCPUpct": 1, - "fullyLoadedCPUpct": 6, - "isResponsive": 0, - "date": 106, - "CSI.v": 0, - "CSI.imc": 0, - "CSI.imn": 0, - "CSI.imp": 0, - "CSI.xjs": 52, - "CSI.srt": 1932, - "CSI.npn": 0, - "CSI.xjsls": 8, - "CSI.prt": 8, - "CSI.xjses": 32, - "CSI.xjsee": 57, - "CSI.ol": 82, - "CSI.iml": 19, - "CSI.wsrt": 43, - "CSI.cst": 26, - "CSI.dnst": 0, - "CSI.rqst": 11, - "CSI.rspt": 12, - "SpeedIndex": 0, - "visualComplete": 0, - "run": 0, - "effectiveBps": 9672, - "effectiveBpsDoc": 13326, - "avgRun": null - } - }, - "median": { - "firstView": { - "URL": "http://www.google.com", - "loadTime": 1859, - "TTFB": 527, - "bytesOut": 7732, - "bytesOutDoc": 6849, - "bytesIn": 406795, - "bytesInDoc": 388881, - "connections": 5, - "requests": [ - { - "ip_addr": "74.125.225.80", - "method": "GET", - "host": "www.google.com", - "url": "/", - "responseCode": "302", - "load_ms": "118", - "ttfb_ms": "118", - "load_start": "51", - "bytesOut": "342", - "bytesIn": "1044", - "objectSize": "231", - "cacheControl": "private", - "contentType": "text/html", - "type": "3", - "socket": "21", - "score_cache": "0", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "0", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "50", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "server_rtt": "50", - "client_port": "57503", - "jpeg_scan_count": "0", - "full_url": "http://www.google.com/", - "score_progressive_jpeg": -1, - "load_end": 169, - "ttfb_start": "51", - "ttfb_end": 169, - "download_start": 169, - "download_end": 169, - "download_ms": 0, - "all_start": "51", - "all_end": 169, - "all_ms": "118", - "headers": { - "request": [ - "GET / HTTP/1.1", - "Host: www.google.com", - "Connection: keep-alive", - "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36 PTST/191", - "Accept-Encoding: gzip,deflate,sdch", - "Accept-Language: en-US,en;q=0.8" - ], - "response": [ - "HTTP/1.1 302 Found", - "Location: https://www.google.com/?gws_rd=ssl", - "Cache-Control: private", - "Content-Type: text/html; charset=UTF-8", - "Set-Cookie: PREF=ID=c8ae0fd9a35b560a:FF=0:TM=1415298911:LM=1415298911:S=wGBHegrYkFIl74OM; expires=Sat, 05-Nov-2016 18:35:11 GMT; path=/; domain=.google.com", - "Set-Cookie: NID=67=A8rzWOkZhV5ph-wUG0ek5x-MFtIRDWOSW0DZYZy6dEV1D64v0M7VJTy8w_P4IB5OQNncxH3kkpmAskYeeLkP2oojzK796UCb3uS2cjlc3xQnx-PoH7WcYIwKFzjF_j6Z; expires=Fri, 08-May-2015 18:35:11 GMT; path=/; domain=.google.com; HttpOnly", - "P3P: CP=\"This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info.\"", - "Date: Thu, 06 Nov 2014 18:35:11 GMT", - "Server: gws", - "Content-Length: 231", - "X-XSS-Protection: 1; mode=block", - "X-Frame-Options: SAMEORIGIN", - "Alternate-Protocol: 80:quic,p=0.01" - ] - }, - "index": 0, - "number": 1 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/?gws_rd=ssl", - "responseCode": "200", - "load_ms": "272", - "ttfb_ms": "181", - "load_start": "346", - "bytesOut": "254", - "bytesIn": "59402", - "objectSize": "0", - "expires": "-1", - "cacheControl": "private, max-age=0", - "contentType": "text/html", - "contentEncoding": "gzip", - "type": "3", - "socket": "233", - "score_cache": "-1", - "score_cdn": "-1", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 0, - "connect_ms": 48, - "ssl_ms": 99, - "gzip_total": "799", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "-1", - "cdn_provider": "Google", - "dns_start": "199", - "dns_end": "199", - "connect_start": "199", - "connect_end": "247", - "ssl_start": "247", - "ssl_end": "346", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/?gws_rd=ssl", - "score_progressive_jpeg": -1, - "load_end": 618, - "ttfb_start": "346", - "ttfb_end": 527, - "download_start": 527, - "download_end": 618, - "download_ms": 91, - "all_start": "199", - "all_end": 618, - "all_ms": 419, - "headers": { - "request": [ - "GET /?gws_rd=ssl HTTP/1.1", - "Host: www.google.com", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=0", - "content-encoding: gzip", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:35:11 GMT", - "expires: -1", - "p3p: CP=\"This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info.\"", - "server: gws", - "set-cookie: PREF=ID=c8ae0fd9a35b560a:U=13a3a6adb0b5baae:FF=0:TM=1415298911:LM=1415298911:S=6_qwKnH9qWTEeuXk; expires=Sat, 05-Nov-2016 18:35:11 GMT; path=/; domain=.google.com", - "NID=67=Ue_d0qHMhmOdhZ9A50DYfvJhQQK0WV2c_RfwRbKG_3tCN8L0CV7FpvqilrK7El69DX146S0_ZqFG02sKFXcT-lgtI9XtRP1fWtZhQ15VPcdvLLjuUjMt1_Dt9d1C9gfk; expires=Fri, 08-May-2015 18:35:11 GMT; path=/; domain=.google.com; HttpOnly", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 1, - "number": 2 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/images/srpr/logo11w.png", - "responseCode": "200", - "load_ms": "572", - "ttfb_ms": "571", - "load_start": "815", - "bytesOut": "330", - "bytesIn": "14111", - "objectSize": "0", - "expires": "Thu, 06 Nov 2014 18:35:12 GMT", - "cacheControl": "private, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "233", - "score_cache": "0", - "score_cdn": "100", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/?gws_rd=ssl", - "initiator_line": "28", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/images/srpr/logo11w.png", - "score_progressive_jpeg": -1, - "load_end": 1387, - "ttfb_start": "815", - "ttfb_end": 1386, - "download_start": 1386, - "download_end": 1387, - "download_ms": 1, - "all_start": "815", - "all_end": 1387, - "all_ms": "572", - "headers": { - "request": [ - "GET /images/srpr/logo11w.png HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=31536000", - "content-length: 14022", - "content-type: image/png", - "date: Thu, 06 Nov 2014 18:35:12 GMT", - "expires: Thu, 06 Nov 2014 18:35:12 GMT", - "last-modified: Wed, 09 Oct 2013 01:35:39 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 2, - "number": 3 - }, - { - "method": "GET", - "host": "ssl.gstatic.com", - "url": "/gb/images/i1_71651352.png", - "responseCode": "200", - "load_ms": "77", - "ttfb_ms": "42", - "load_start": "881", - "bytesOut": "333", - "bytesIn": "14285", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 15:23:35 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "315", - "score_cache": "100", - "score_cdn": "0", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 0, - "connect_ms": 39, - "ssl_ms": 89, - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "dns_start": "752", - "dns_end": "752", - "connect_start": "752", - "connect_end": "791", - "ssl_start": "791", - "ssl_end": "880", - "initiator": "https://www.google.com/?gws_rd=ssl", - "initiator_line": "76", - "initiator_column": "35", - "server_count": "4", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://ssl.gstatic.com/gb/images/i1_71651352.png", - "score_progressive_jpeg": -1, - "load_end": 958, - "ttfb_start": "881", - "ttfb_end": 923, - "download_start": 923, - "download_end": 958, - "download_ms": 35, - "all_start": "752", - "all_end": 958, - "all_ms": 205, - "headers": { - "request": [ - "GET /gb/images/i1_71651352.png HTTP/1.1", - "Host: ssl.gstatic.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 97897", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-length: 14055", - "content-type: image/png", - "date: Wed, 05 Nov 2014 15:23:35 GMT", - "expires: Thu, 05 Nov 2015 15:23:35 GMT", - "last-modified: Thu, 16 Oct 2014 18:20:30 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 3, - "number": 4 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "responseCode": "200", - "load_ms": "333", - "ttfb_ms": "54", - "load_start": "884", - "bytesOut": "443", - "bytesIn": "233315", - "objectSize": "0", - "expires": "Fri, 06 Nov 2015 11:13:26 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "233", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "429", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/?gws_rd=ssl", - "initiator_line": "94", - "initiator_column": "17237", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "score_progressive_jpeg": -1, - "load_end": 1217, - "ttfb_start": "884", - "ttfb_end": 938, - "download_start": 938, - "download_end": 1217, - "download_ms": 279, - "all_start": "884", - "all_end": 1217, - "all_ms": "333", - "headers": { - "request": [ - "GET /xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP/1.1", - "Host: www.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 26506", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 130931", - "content-type: text/javascript; charset=UTF-8", - "date: Thu, 06 Nov 2014 11:13:26 GMT", - "expires: Fri, 06 Nov 2015 11:13:26 GMT", - "last-modified: Tue, 04 Nov 2014 19:30:26 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 4, - "number": 5 - }, - { - "method": "GET", - "host": "www.gstatic.com", - "url": "/og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w", - "responseCode": "200", - "load_ms": "247", - "ttfb_ms": "245", - "load_start": "1073", - "bytesOut": "392", - "bytesIn": "184146", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 13:04:24 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "339", - "score_cache": "100", - "score_cdn": "0", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 32, - "connect_ms": 40, - "ssl_ms": 82, - "gzip_total": "429", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "dns_start": "918", - "dns_end": "950", - "connect_start": "950", - "connect_end": "990", - "ssl_start": "990", - "ssl_end": "1072", - "initiator": "https://www.google.com/?gws_rd=ssl", - "initiator_line": "57", - "initiator_column": "143", - "server_count": "4", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.gstatic.com/og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w", - "score_progressive_jpeg": -1, - "load_end": 1320, - "ttfb_start": "1073", - "ttfb_end": 1318, - "download_start": 1318, - "download_end": 1320, - "download_ms": 2, - "all_start": "918", - "all_end": 1320, - "all_ms": 401, - "headers": { - "request": [ - "GET /og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w HTTP/1.1", - "Host: www.gstatic.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 106248", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 55207", - "content-type: text/javascript; charset=UTF-8", - "date: Wed, 05 Nov 2014 13:04:24 GMT", - "expires: Thu, 05 Nov 2015 13:04:24 GMT", - "last-modified: Tue, 04 Nov 2014 01:19:09 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 5, - "number": 6 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/extern_chrome/854094c746d4c9a.js?bav=on.2,or.r_qf.", - "responseCode": "200", - "load_ms": "170", - "ttfb_ms": "168", - "load_start": "1316", - "bytesOut": "340", - "bytesIn": "36559", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 00:00:00 GMT", - "cacheControl": "private", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "233", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "422", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31382688", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "initiator_line": "1187", - "initiator_column": "181", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/extern_chrome/854094c746d4c9a.js?bav=on.2,or.r_qf.", - "score_progressive_jpeg": -1, - "load_end": 1486, - "ttfb_start": "1316", - "ttfb_end": 1484, - "download_start": 1484, - "download_end": 1486, - "download_ms": 2, - "all_start": "1316", - "all_end": 1486, - "all_ms": "170", - "headers": { - "request": [ - "GET /extern_chrome/854094c746d4c9a.js?bav=on.2,or.r_qf. HTTP/1.1", - "Host: www.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private", - "content-disposition: attachment; filename=\"f.txt\"", - "content-encoding: gzip", - "content-length: 13825", - "content-type: text/javascript; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:35:12 GMT", - "expires: Thu, 05 Nov 2015 00:00:00 GMT", - "last-modified: Thu, 07 Nov 2013 00:00:00 GMT", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 6, - "number": 7 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm/am=lKj_TwWDwIxAARMQrA4/rt=j/d=0/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "responseCode": "200", - "load_ms": "121", - "ttfb_ms": "51", - "load_start": "1483", - "bytesOut": "682", - "bytesIn": "52270", - "objectSize": "0", - "expires": "Fri, 06 Nov 2015 12:08:37 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "233", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "428", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi/am=lKj_TwWDwIxAARMQrA4/rt=j/d=1/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "initiator_line": "101", - "initiator_column": "112", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm/am=lKj_TwWDwIxAARMQrA4/rt=j/d=0/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA", - "score_progressive_jpeg": -1, - "load_end": 1604, - "ttfb_start": "1483", - "ttfb_end": 1534, - "download_start": 1534, - "download_end": 1604, - "download_ms": 70, - "all_start": "1483", - "all_end": 1604, - "all_ms": "121", - "headers": { - "request": [ - "GET /xjs/_/js/k=xjs.s.en_US.qPzuXFzcESQ.O/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm/am=lKj_TwWDwIxAARMQrA4/rt=j/d=0/t=zcms/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP/1.1", - "Host: www.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 23195", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 48157", - "content-type: text/javascript; charset=UTF-8", - "date: Thu, 06 Nov 2014 12:08:37 GMT", - "expires: Fri, 06 Nov 2015 12:08:37 GMT", - "last-modified: Tue, 04 Nov 2014 19:30:26 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 7, - "number": 8 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/textinputassistant/tia.png", - "responseCode": "200", - "load_ms": "200", - "ttfb_ms": "199", - "load_start": "1484", - "bytesOut": "333", - "bytesIn": "481", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 06:57:32 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "233", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "initiator": "https://www.google.com/?gws_rd=ssl", - "initiator_line": "1", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/textinputassistant/tia.png", - "score_progressive_jpeg": -1, - "load_end": 1684, - "ttfb_start": "1484", - "ttfb_end": 1683, - "download_start": 1683, - "download_end": 1684, - "download_ms": 1, - "all_start": "1484", - "all_end": 1684, - "all_ms": "200", - "headers": { - "request": [ - "GET /textinputassistant/tia.png HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 128260", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-length: 387", - "content-type: image/png", - "date: Wed, 05 Nov 2014 06:57:32 GMT", - "expires: Thu, 05 Nov 2015 06:57:32 GMT", - "last-modified: Mon, 02 Apr 2012 02:13:37 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 8, - "number": 9 - }, - { - "method": "GET", - "host": "apis.google.com", - "url": "/_/scs/abc-static/_/js/k=gapi.gapi.en.3_mJ9Wvc9FU.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg/cb=gapi.loaded_0", - "responseCode": "200", - "load_ms": "114", - "ttfb_ms": "46", - "load_start": "1665", - "bytesOut": "456", - "bytesIn": "49927", - "objectSize": "0", - "expires": "Thu, 05 Nov 2015 15:23:35 GMT", - "cacheControl": "public, max-age=31536000", - "contentType": "text/javascript", - "contentEncoding": "gzip", - "type": "3", - "socket": "434", - "score_cache": "100", - "score_cdn": "100", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 34, - "connect_ms": 40, - "ssl_ms": 74, - "gzip_total": "428", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "31536000", - "cdn_provider": "Google", - "dns_start": "1517", - "dns_end": "1551", - "connect_start": "1551", - "connect_end": "1591", - "ssl_start": "1591", - "ssl_end": "1665", - "initiator": "https://www.gstatic.com/og/_/js/k=og.og2.en_US.5iiIdIiN4rc.O/rt=j/m=sy0,sy2,sy4,sy9,def/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w", - "initiator_line": "138", - "initiator_column": "381", - "server_count": "11", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://apis.google.com/_/scs/abc-static/_/js/k=gapi.gapi.en.3_mJ9Wvc9FU.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg/cb=gapi.loaded_0", - "score_progressive_jpeg": -1, - "load_end": 1779, - "ttfb_start": "1665", - "ttfb_end": 1711, - "download_start": 1711, - "download_end": 1779, - "download_ms": 68, - "all_start": "1517", - "all_end": 1779, - "all_ms": 262, - "headers": { - "request": [ - "GET /_/scs/abc-static/_/js/k=gapi.gapi.en.3_mJ9Wvc9FU.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg/cb=gapi.loaded_0 HTTP/1.1", - "Host: apis.google.com", - "Accept: */*", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF" - ], - "response": [ - "HTTP/1.1 200 OK", - "age: 97898", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: public, max-age=31536000", - "content-encoding: gzip", - "content-length: 48911", - "content-type: text/javascript; charset=UTF-8", - "date: Wed, 05 Nov 2014 15:23:35 GMT", - "expires: Thu, 05 Nov 2015 15:23:35 GMT", - "last-modified: Thu, 16 Oct 2014 07:30:29 GMT", - "server: sffe", - "vary: Accept-Encoding", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 9, - "number": 10 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/images/nav_logo195.png", - "responseCode": "200", - "load_ms": "84", - "ttfb_ms": "68", - "load_start": "1874", - "bytesOut": "329", - "bytesIn": "16300", - "objectSize": "0", - "expires": "Thu, 06 Nov 2014 18:35:13 GMT", - "cacheControl": "private, max-age=31536000", - "contentType": "image/png", - "type": "3", - "socket": "233", - "score_cache": "0", - "score_cdn": "100", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/images/nav_logo195.png", - "score_progressive_jpeg": -1, - "load_end": 1958, - "ttfb_start": "1874", - "ttfb_end": 1942, - "download_start": 1942, - "download_end": 1958, - "download_ms": 16, - "all_start": "1874", - "all_end": 1958, - "all_ms": "84", - "headers": { - "request": [ - "GET /images/nav_logo195.png HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=31536000", - "content-length: 16214", - "content-type: image/png", - "date: Thu, 06 Nov 2014 18:35:13 GMT", - "expires: Thu, 06 Nov 2014 18:35:13 GMT", - "last-modified: Wed, 21 May 2014 00:02:44 GMT", - "server: sffe", - "x-content-type-options: nosniff", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 10, - "number": 11 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=X79bVJ_KLYi2oQSrr4DwDA&e=3700261,4011550,4011551,4011557,4011558,4011559,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021341,4021532,4021597,4022074,4022318,4022495,4022688,4023367,4023566,4023709,4023972,4023979,4024625,4024691,4024905,4024932,8500272,8500394,8500699,8500755,10200083,10200716,10200744,10200766&atyp=csi&adh=&xjs=init.119.28.sb.65.m.28.p.12.spch.6.foot.1&action=&srt=642&p=s&npn=1&rt=xjsls.26,prt.27,xjses.520,xjsee.706,xjs.760,ol.1207,iml.761,wsrt.642,cst.146,dnst.0,rqst.272,rspt.91", - "responseCode": "204", - "load_ms": "111", - "ttfb_ms": "110", - "load_start": "1876", - "bytesOut": "878", - "bytesIn": "251", - "objectSize": "0", - "contentType": "text/html", - "type": "3", - "socket": "233", - "score_cache": "0", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=X79bVJ_KLYi2oQSrr4DwDA&e=3700261,4011550,4011551,4011557,4011558,4011559,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021341,4021532,4021597,4022074,4022318,4022495,4022688,4023367,4023566,4023709,4023972,4023979,4024625,4024691,4024905,4024932,8500272,8500394,8500699,8500755,10200083,10200716,10200744,10200766&atyp=csi&adh=&xjs=init.119.28.sb.65.m.28.p.12.spch.6.foot.1&action=&srt=642&p=s&npn=1&rt=xjsls.26,prt.27,xjses.520,xjsee.706,xjs.760,ol.1207,iml.761,wsrt.642,cst.146,dnst.0,rqst.272,rspt.91", - "score_progressive_jpeg": -1, - "load_end": 1987, - "ttfb_start": "1876", - "ttfb_end": 1986, - "download_start": 1986, - "download_end": 1987, - "download_ms": 1, - "all_start": "1876", - "all_end": 1987, - "all_ms": "111", - "headers": { - "request": [ - "GET /gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=X79bVJ_KLYi2oQSrr4DwDA&e=3700261,4011550,4011551,4011557,4011558,4011559,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021341,4021532,4021597,4022074,4022318,4022495,4022688,4023367,4023566,4023709,4023972,4023979,4024625,4024691,4024905,4024932,8500272,8500394,8500699,8500755,10200083,10200716,10200744,10200766&atyp=csi&adh=&xjs=init.119.28.sb.65.m.28.p.12.spch.6.foot.1&action=&srt=642&p=s&npn=1&rt=xjsls.26,prt.27,xjses.520,xjsee.706,xjs.760,ol.1207,iml.761,wsrt.642,cst.146,dnst.0,rqst.272,rspt.91 HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF" - ], - "response": [ - "HTTP/1.1 204 No Content", - "alternate-protocol: 443:quic,p=0.01", - "content-length: 0", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:35:13 GMT", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 11, - "number": 12 - } - ], - "requestsDoc": 10, - "responses_200": 10, - "responses_404": 0, - "responses_other": 1, - "result": 0, - "render": 793, - "fullyLoaded": 1987, - "cached": 0, - "docTime": 1859, - "domTime": 0, - "score_cache": 63, - "score_cdn": 77, - "score_gzip": 100, - "score_cookies": -1, - "score_keep-alive": 100, - "score_minify": -1, - "score_combine": 100, - "score_compress": -1, - "score_etags": -1, - "gzip_total": 2935, - "gzip_savings": 0, - "minify_total": 0, - "minify_savings": 0, - "image_total": 0, - "image_savings": 0, - "optimization_checked": 1, - "aft": 0, - "domElements": 288, - "pageSpeedVersion": "1.9", - "title": "Google", - "titleTime": 891, - "loadEventStart": 1845, - "loadEventEnd": 1851, - "domContentLoadedEventStart": 669, - "domContentLoadedEventEnd": 714, - "lastVisualChange": 0, - "browser_name": "Google Chrome", - "browser_version": "38.0.2125.111", - "server_count": 5, - "server_rtt": 0, - "base_page_cdn": "Google", - "adult_site": 0, - "fixed_viewport": 0, - "score_progressive_jpeg": -1, - "firstPaint": 747, - "docCPUms": 1201.208, - "fullyLoadedCPUms": 1372.809, - "docCPUpct": 64, - "fullyLoadedCPUpct": 34, - "isResponsive": -1, - "date": 1415298674, - "CSI": [ - "v", - "s", - "imc", - "imn", - "imp", - "ei", - "e", - "atyp", - "adh", - "xjs", - "action", - "srt", - "p", - "npn", - "rt", - "xjsls", - "prt", - "xjses", - "xjsee", - "ol", - "iml", - "wsrt", - "cst", - "dnst", - "rqst", - "rspt" - ], - "CSI.v": 3, - "CSI.s": "webhp", - "CSI.imc": 1, - "CSI.imn": 1, - "CSI.imp": 1, - "CSI.ei": "X79bVJ_KLYi2oQSrr4DwDA", - "CSI.e": "3700261,4011550,4011551,4011557,4011558,4011559,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021341,4021532,4021597,4022074,4022318,4022495,4022688,4023367,4023566,4023709,4023972,4023979,4024625,4024691,4024905,4024932,8500272,8500394,8500699,8500755,10200083,10200716,10200744,10200766", - "CSI.atyp": "csi", - "CSI.adh": "", - "CSI.xjs": 760, - "CSI.action": "", - "CSI.srt": 642, - "CSI.p": "s", - "CSI.npn": 1, - "CSI.rt": "xjsls.26,prt.27,xjses.520,xjsee.706,xjs.760,ol.1207,iml.761,wsrt.642,cst.146,dnst.0,rqst.272,rspt.91", - "CSI.xjsls": 26, - "CSI.prt": 27, - "CSI.xjses": 520, - "CSI.xjsee": 706, - "CSI.ol": 1207, - "CSI.iml": 761, - "CSI.wsrt": 642, - "CSI.cst": 146, - "CSI.dnst": 0, - "CSI.rqst": 272, - "CSI.rspt": 91, - "SpeedIndex": 0, - "visualComplete": 0, - "run": 3, - "effectiveBps": 278626, - "effectiveBpsDoc": 291952, - "tester": "IE9103-192.168.101.93", - "pages": { - "details": "http://www.webpagetest.org/details.php?test=141106_TM_ZFM&run=3&cached=0", - "checklist": "http://www.webpagetest.org/performance_optimization.php?test=141106_TM_ZFM&run=3&cached=0", - "breakdown": "http://www.webpagetest.org/breakdown.php?test=141106_TM_ZFM&run=3&cached=0", - "domains": "http://www.webpagetest.org/domains.php?test=141106_TM_ZFM&run=3&cached=0", - "screenShot": "http://www.webpagetest.org/screen_shot.php?test=141106_TM_ZFM&run=3&cached=0" - }, - "thumbnails": { - "waterfall": "http://www.webpagetest.org/result/141106_TM_ZFM/3_waterfall_thumb.png", - "checklist": "http://www.webpagetest.org/result/141106_TM_ZFM/3_optimization_thumb.png", - "screenShot": "http://www.webpagetest.org/result/141106_TM_ZFM/3_screen_thumb.png" - }, - "images": { - "waterfall": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/3_waterfall.png", - "connectionView": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/3_connection.png", - "checklist": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/3_optimization.png", - "screenShot": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/3_screen.jpg" - }, - "rawData": { - "headers": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/3_report.txt", - "pageData": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/3_IEWPG.txt", - "requestsData": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/3_IEWTR.txt", - "utilization": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/3_progress.csv" - }, - "videoFrames": [ - { - "time": 0, - "image": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/video_3/frame_0000.jpg", - "VisuallyComplete": 100 - } - ], - "domains": { - "moc.elgoog.www": { - "bytes": 413733, - "requests": 9, - "connections": 2 - }, - "moc.citatsg.lss": { - "bytes": 14285, - "requests": 1, - "connections": 1 - }, - "moc.citatsg.www": { - "bytes": 184146, - "requests": 1, - "connections": 1 - }, - "moc.elgoog.sipa": { - "bytes": 49927, - "requests": 1, - "connections": 1 - } - }, - "breakdown": { - "html": { - "color": [ - 130, - 181, - 252 - ], - "bytes": 60697, - "requests": 3 - }, - "js": { - "color": [ - 254, - 197, - 132 - ], - "bytes": 556217, - "requests": 5 - }, - "css": { - "color": [ - 178, - 234, - 148 - ], - "bytes": 0, - "requests": 0 - }, - "image": { - "color": [ - 196, - 154, - 232 - ], - "bytes": 45177, - "requests": 4 - }, - "flash": { - "color": [ - 45, - 183, - 193 - ], - "bytes": 0, - "requests": 0 - }, - "font": { - "color": [ - 255, - 82, - 62 - ], - "bytes": 0, - "requests": 0 - }, - "other": { - "color": [ - 196, - 196, - 196 - ], - "bytes": 0, - "requests": 0 - } - } - }, - "repeatView": { - "URL": "http://www.google.com", - "loadTime": 1372, - "TTFB": 458, - "bytesOut": 9283, - "bytesOutDoc": 8735, - "bytesIn": 85486, - "bytesInDoc": 85359, - "connections": 2, - "requests": [ - { - "ip_addr": "74.125.225.80", - "method": "GET", - "host": "www.google.com", - "url": "/", - "responseCode": "302", - "load_ms": "122", - "ttfb_ms": "122", - "load_start": "50", - "bytesOut": "584", - "bytesIn": "532", - "objectSize": "231", - "cacheControl": "private", - "contentType": "text/html", - "type": "3", - "socket": "15", - "score_cache": "0", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "0", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "49", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "server_rtt": "49", - "client_port": "51852", - "jpeg_scan_count": "0", - "full_url": "http://www.google.com/", - "score_progressive_jpeg": -1, - "load_end": 172, - "ttfb_start": "50", - "ttfb_end": 172, - "download_start": 172, - "download_end": 172, - "download_ms": 0, - "all_start": "50", - "all_end": 172, - "all_ms": "122", - "headers": { - "request": [ - "GET / HTTP/1.1", - "Host: www.google.com", - "Connection: keep-alive", - "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36 PTST/191", - "Accept-Encoding: gzip,deflate,sdch", - "Accept-Language: en-US,en;q=0.8", - "Cookie: PREF=ID=475c491cad4e86aa:U=d2f3b954c35bcd9b:FF=0:TM=1415298912:LM=1415298912:S=lV95Ue2bqUmiPbk5; NID=67=FxZ3TVYsJlTtvVnmerGAmxHaZlZTz5A31FZWPSd1rO1IWsQQNoRhmBSazKHgNuIyFbSiyrYFhW6OHLe3wfVvB_ZYIKQjZ5yH_Zis-NxQXljm2qIsyFUvNKKpsqhKOv-p" - ], - "response": [ - "HTTP/1.1 302 Found", - "Location: https://www.google.com/?gws_rd=ssl", - "Cache-Control: private", - "Content-Type: text/html; charset=UTF-8", - "Date: Thu, 06 Nov 2014 18:35:24 GMT", - "Server: gws", - "Content-Length: 231", - "X-XSS-Protection: 1; mode=block", - "X-Frame-Options: SAMEORIGIN", - "Alternate-Protocol: 80:quic,p=0.01" - ] - }, - "index": 0, - "number": 1 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/?gws_rd=ssl", - "responseCode": "200", - "load_ms": "290", - "ttfb_ms": "197", - "load_start": "261", - "bytesOut": "254", - "bytesIn": "61974", - "objectSize": "0", - "expires": "-1", - "cacheControl": "private, max-age=0", - "contentType": "text/html", - "contentEncoding": "gzip", - "type": "3", - "socket": "161", - "score_cache": "-1", - "score_cdn": "-1", - "score_gzip": "100", - "score_cookies": "-1", - "score_keep-alive": "100", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": 0, - "connect_ms": 0, - "ssl_ms": 57, - "gzip_total": "280", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "-1", - "cdn_provider": "Google", - "dns_start": "203", - "dns_end": "203", - "connect_start": "203", - "connect_end": "203", - "ssl_start": "203", - "ssl_end": "260", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/?gws_rd=ssl", - "score_progressive_jpeg": -1, - "load_end": 551, - "ttfb_start": "261", - "ttfb_end": 458, - "download_start": 458, - "download_end": 551, - "download_ms": 93, - "all_start": "203", - "all_end": 551, - "all_ms": 347, - "headers": { - "request": [ - "GET /?gws_rd=ssl HTTP/1.1", - "Host: www.google.com", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A87ED523-8779-4935-A86C-D91B13E86886" - ], - "response": [ - "HTTP/1.1 200 OK", - "alternate-protocol: 443:quic,p=0.01", - "cache-control: private, max-age=0", - "content-encoding: gzip", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:35:25 GMT", - "expires: -1", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 1, - "number": 2 - }, - { - "method": "GET", - "host": "www.google.com", - "url": "/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=bb9bVMmPC4z9oQSY8YG4DQ&e=3700259,4011550,4011551,4011557,4011558,4011559,4013605,4014789,4016469,4016824,4017981,4019181,4020347,4020562,4020921,4021073,4022074,4022318,4022495,4022686,4023367,4023567,4023678,4023709,4023972,4024007,4025080,8500272,8500393,10200044,10200083,10200716&atyp=csi&adh=&xjs=init.86.28.sb.52.p.12.spch.7.jsa.5.ifl.2&action=&srt=5139&p=s&npn=1&rt=xjsls.44,prt.46,xjses.264,xjsee.470,xjs.503,ol.775,iml.166,wsrt.584,cst.57,dnst.0,rqst.290,rspt.93", - "responseCode": "204", - "load_ms": "121", - "ttfb_ms": "107", - "load_start": "1388", - "bytesOut": "819", - "bytesIn": "251", - "objectSize": "0", - "contentType": "text/html", - "type": "3", - "socket": "161", - "score_cache": "0", - "score_cdn": "-1", - "score_gzip": "-1", - "score_cookies": "-1", - "score_keep-alive": "-1", - "score_minify": "-1", - "score_combine": "-1", - "score_compress": "-1", - "score_etags": "-1", - "is_secure": "1", - "dns_ms": "-1", - "connect_ms": "-1", - "ssl_ms": "-1", - "gzip_total": "0", - "gzip_save": "0", - "minify_total": "0", - "minify_save": "0", - "image_total": "0", - "image_save": "0", - "cache_time": "0", - "cdn_provider": "Google", - "dns_start": "0", - "dns_end": "0", - "connect_start": "0", - "connect_end": "0", - "ssl_start": "0", - "ssl_end": "0", - "server_count": "5", - "client_port": "0", - "jpeg_scan_count": "0", - "full_url": "https://www.google.com/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=bb9bVMmPC4z9oQSY8YG4DQ&e=3700259,4011550,4011551,4011557,4011558,4011559,4013605,4014789,4016469,4016824,4017981,4019181,4020347,4020562,4020921,4021073,4022074,4022318,4022495,4022686,4023367,4023567,4023678,4023709,4023972,4024007,4025080,8500272,8500393,10200044,10200083,10200716&atyp=csi&adh=&xjs=init.86.28.sb.52.p.12.spch.7.jsa.5.ifl.2&action=&srt=5139&p=s&npn=1&rt=xjsls.44,prt.46,xjses.264,xjsee.470,xjs.503,ol.775,iml.166,wsrt.584,cst.57,dnst.0,rqst.290,rspt.93", - "score_progressive_jpeg": -1, - "load_end": 1509, - "ttfb_start": "1388", - "ttfb_end": 1495, - "download_start": 1495, - "download_end": 1509, - "download_ms": 14, - "all_start": "1388", - "all_end": 1509, - "all_ms": "121", - "headers": { - "request": [ - "GET /gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=bb9bVMmPC4z9oQSY8YG4DQ&e=3700259,4011550,4011551,4011557,4011558,4011559,4013605,4014789,4016469,4016824,4017981,4019181,4020347,4020562,4020921,4021073,4022074,4022318,4022495,4022686,4023367,4023567,4023678,4023709,4023972,4024007,4025080,8500272,8500393,10200044,10200083,10200716&atyp=csi&adh=&xjs=init.86.28.sb.52.p.12.spch.7.jsa.5.ifl.2&action=&srt=5139&p=s&npn=1&rt=xjsls.44,prt.46,xjses.264,xjsee.470,xjs.503,ol.775,iml.166,wsrt.584,cst.57,dnst.0,rqst.290,rspt.93 HTTP/1.1", - "Host: www.google.com", - "Accept: image/webp,*/*;q=0.8", - "Referer: https://www.google.com/", - "User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36", - "X-DevTools-Emulate-Network-Conditions-Client-Id: A87ED523-8779-4935-A86C-D91B13E86886" - ], - "response": [ - "HTTP/1.1 204 No Content", - "alternate-protocol: 443:quic,p=0.01", - "content-length: 0", - "content-type: text/html; charset=UTF-8", - "date: Thu, 06 Nov 2014 18:35:26 GMT", - "server: gws", - "x-frame-options: SAMEORIGIN", - "x-xss-protection: 1; mode=block" - ] - }, - "index": 2, - "number": 3 - } - ], - "requestsDoc": 2, - "responses_200": 1, - "responses_404": 0, - "responses_other": 1, - "result": 0, - "render": 895, - "fullyLoaded": 1509, - "cached": 1, - "docTime": 1372, - "domTime": 0, - "score_cache": 0, - "score_cdn": -1, - "score_gzip": 100, - "score_cookies": -1, - "score_keep-alive": 100, - "score_minify": -1, - "score_combine": 100, - "score_compress": -1, - "score_etags": -1, - "gzip_total": 280, - "gzip_savings": 0, - "minify_total": 0, - "minify_savings": 0, - "image_total": 0, - "image_savings": 0, - "optimization_checked": 1, - "aft": 0, - "domElements": 288, - "pageSpeedVersion": "1.9", - "title": "Google", - "titleTime": 692, - "loadEventStart": 1354, - "loadEventEnd": 1363, - "domContentLoadedEventStart": 630, - "domContentLoadedEventEnd": 677, - "lastVisualChange": 0, - "browser_name": "Google Chrome", - "browser_version": "38.0.2125.111", - "server_count": 5, - "server_rtt": 0, - "base_page_cdn": "Google", - "adult_site": 0, - "fixed_viewport": 0, - "score_progressive_jpeg": -1, - "firstPaint": 0, - "docCPUms": 1248.008, - "fullyLoadedCPUms": 1716.011, - "docCPUpct": 90, - "fullyLoadedCPUpct": 47, - "isResponsive": -1, - "date": 1415298913, - "CSI": [ - "v", - "s", - "imc", - "imn", - "imp", - "ei", - "e", - "atyp", - "adh", - "xjs", - "action", - "srt", - "p", - "npn", - "rt", - "xjsls", - "prt", - "xjses", - "xjsee", - "ol", - "iml", - "wsrt", - "cst", - "dnst", - "rqst", - "rspt" - ], - "CSI.v": 3, - "CSI.s": "webhp", - "CSI.imc": 1, - "CSI.imn": 1, - "CSI.imp": 1, - "CSI.ei": "bb9bVMmPC4z9oQSY8YG4DQ", - "CSI.e": "3700259,4011550,4011551,4011557,4011558,4011559,4013605,4014789,4016469,4016824,4017981,4019181,4020347,4020562,4020921,4021073,4022074,4022318,4022495,4022686,4023367,4023567,4023678,4023709,4023972,4024007,4025080,8500272,8500393,10200044,10200083,10200716", - "CSI.atyp": "csi", - "CSI.adh": "", - "CSI.xjs": 503, - "CSI.action": "", - "CSI.srt": 5139, - "CSI.p": "s", - "CSI.npn": 1, - "CSI.rt": "xjsls.44,prt.46,xjses.264,xjsee.470,xjs.503,ol.775,iml.166,wsrt.584,cst.57,dnst.0,rqst.290,rspt.93", - "CSI.xjsls": 44, - "CSI.prt": 46, - "CSI.xjses": 264, - "CSI.xjsee": 470, - "CSI.ol": 775, - "CSI.iml": 166, - "CSI.wsrt": 584, - "CSI.cst": 57, - "CSI.dnst": 0, - "CSI.rqst": 290, - "CSI.rspt": 93, - "SpeedIndex": 0, - "visualComplete": 0, - "run": 2, - "effectiveBps": 81337, - "effectiveBpsDoc": 93390, - "tester": "IE9204-192.168.102.94", - "pages": { - "details": "http://www.webpagetest.org/details.php?test=141106_TM_ZFM&run=2&cached=1", - "checklist": "http://www.webpagetest.org/performance_optimization.php?test=141106_TM_ZFM&run=2&cached=1", - "breakdown": "http://www.webpagetest.org/breakdown.php?test=141106_TM_ZFM&run=2&cached=1", - "domains": "http://www.webpagetest.org/domains.php?test=141106_TM_ZFM&run=2&cached=1", - "screenShot": "http://www.webpagetest.org/screen_shot.php?test=141106_TM_ZFM&run=2&cached=1" - }, - "thumbnails": { - "waterfall": "http://www.webpagetest.org/result/141106_TM_ZFM/2_Cached_waterfall_thumb.png", - "checklist": "http://www.webpagetest.org/result/141106_TM_ZFM/2_Cached_optimization_thumb.png", - "screenShot": "http://www.webpagetest.org/result/141106_TM_ZFM/2_Cached_screen_thumb.png" - }, - "images": { - "waterfall": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/2_Cached_waterfall.png", - "connectionView": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/2_Cached_connection.png", - "checklist": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/2_Cached_optimization.png", - "screenShot": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/2_Cached_screen.jpg" - }, - "rawData": { - "headers": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/2_Cached_report.txt", - "pageData": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/2_Cached_IEWPG.txt", - "requestsData": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/2_Cached_IEWTR.txt", - "utilization": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/2_Cached_progress.csv" - }, - "videoFrames": [ - { - "time": 0, - "image": "http://www.webpagetest.org/results/14/11/06/TM/ZFM/video_2_cached/frame_0000.jpg", - "VisuallyComplete": 100 - } - ], - "domains": { - "moc.elgoog.www": { - "bytes": 62757, - "requests": 3, - "connections": 2 - } - }, - "breakdown": { - "html": { - "color": [ - 130, - 181, - 252 - ], - "bytes": 62757, - "requests": 3 - }, - "js": { - "color": [ - 254, - 197, - 132 - ], - "bytes": 0, - "requests": 0 - }, - "css": { - "color": [ - 178, - 234, - 148 - ], - "bytes": 0, - "requests": 0 - }, - "image": { - "color": [ - 196, - 154, - 232 - ], - "bytes": 0, - "requests": 0 - }, - "flash": { - "color": [ - 45, - 183, - 193 - ], - "bytes": 0, - "requests": 0 - }, - "font": { - "color": [ - 255, - 82, - 62 - ], - "bytes": 0, - "requests": 0 - }, - "other": { - "color": [ - 196, - 196, - 196 - ], - "bytes": 0, - "requests": 0 - } - } - } - } - }, - "statusCode": 200, - "statusText": "Test Complete" -} \ No newline at end of file diff --git a/test/fixtures/objects/testResultsNotFound.json b/test/fixtures/objects/testResultsNotFound.json deleted file mode 100644 index 4ed5772..0000000 --- a/test/fixtures/objects/testResultsNotFound.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "data": { - "statusCode": 400, - "statusText": "Test not found", - "id": "120816_V2_3" - }, - "statusCode": 400, - "statusText": "Test not found" -} \ No newline at end of file diff --git a/test/fixtures/objects/testStatus.json b/test/fixtures/objects/testStatus.json deleted file mode 100644 index 8b84b10..0000000 --- a/test/fixtures/objects/testStatus.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "statusCode": 200, - "statusText": "Test Complete", - "data": { - "statusCode": 200, - "statusText": "Test Complete", - "testId": "120816_V2_2", - "runs": 3, - "fvonly": 1, - "location": "Local_Firefox_Chrome", - "startTime": "08/16/12 18:27:14", - "elapsed": 3712454, - "completeTime": "08/16/12 18:28:52" - } -} diff --git a/test/fixtures/objects/testStatusNotFound.json b/test/fixtures/objects/testStatusNotFound.json deleted file mode 100644 index 955d3fd..0000000 --- a/test/fixtures/objects/testStatusNotFound.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "statusCode": 400, - "statusText": "Test not found", - "data": { - "statusCode": 400, - "statusText": "Test not found" - } -} diff --git a/test/fixtures/objects/testers.json b/test/fixtures/objects/testers.json deleted file mode 100644 index 691384f..0000000 --- a/test/fixtures/objects/testers.json +++ /dev/null @@ -1,2753 +0,0 @@ -{ - "response": { - "statusCode": 200, - "statusText": "Ok", - "data": { - "location": [ - { - "id": "EC2_East_wptdriver", - "elapsed": 0, - "testers": { - "tester": [ - { - "index": 1, - "pc": "IP-0A02B528", - "ec2": "i-10eb9560", - "ip": "54.234.37.222", - "version": 91, - "freedisk": 14.77, - "elapsed": 0, - "last": 17, - "busy": 0 - }, - { - "index": 2, - "pc": "IP-0A02B528", - "ec2": "i-24eb9554", - "ip": "107.20.92.24", - "version": 91, - "freedisk": 14.772, - "elapsed": 0, - "last": 17, - "busy": 0 - }, - { - "index": 3, - "pc": "IP-0A02B528", - "ec2": "i-28eb9558", - "ip": "107.22.69.51", - "version": 91, - "freedisk": 14.769, - "elapsed": 0, - "last": 17, - "busy": 0 - }, - { - "index": 4, - "pc": "IP-0A02B528", - "ec2": "i-50eb9520", - "ip": "23.20.166.132", - "version": 91, - "freedisk": 14.767, - "elapsed": 0, - "last": 17, - "busy": 0 - }, - { - "index": 5, - "pc": "IP-0A02B528", - "ec2": "i-5aeb952a", - "ip": "54.234.138.21", - "version": 91, - "freedisk": 14.768, - "elapsed": 0, - "last": 17, - "busy": 0 - }, - { - "index": 6, - "pc": "IP-0A02B528", - "ec2": "i-62eb9512", - "ip": "23.20.96.217", - "version": 91, - "freedisk": 14.767, - "elapsed": 0, - "last": 17, - "busy": 0 - }, - { - "index": 7, - "pc": "IP-0A02B528", - "ec2": "i-6ceb951c", - "ip": "54.234.191.119", - "version": 91, - "freedisk": 14.809, - "elapsed": 0, - "last": 17, - "busy": 0 - }, - { - "index": 8, - "pc": "IP-0A02B528", - "ec2": "i-72eb9502", - "ip": "23.21.25.95", - "version": 91, - "freedisk": 14.769, - "elapsed": 0, - "last": 17, - "busy": 0 - } - ] - } - }, - { - "id": "EC2_East", - "elapsed": 0, - "testers": { - "tester": [ - { - "index": 1, - "pc": "IP-0A02B528", - "ec2": "i-10eb9560", - "ip": "54.234.37.222", - "version": 346, - "freedisk": 14.77, - "ie": "9.0.8112.16421", - "elapsed": 0, - "last": 25, - "busy": 0 - }, - { - "index": 2, - "pc": "IP-0A02B528", - "ec2": "i-24eb9554", - "ip": "107.20.92.24", - "version": 346, - "freedisk": 14.772, - "ie": "9.0.8112.16421", - "elapsed": 0, - "last": 25, - "busy": 0 - }, - { - "index": 3, - "pc": "IP-0A02B528", - "ec2": "i-28eb9558", - "ip": "107.22.69.51", - "version": 346, - "freedisk": 14.769, - "ie": "9.0.8112.16421", - "elapsed": 0, - "last": 25, - "busy": 0 - }, - { - "index": 4, - "pc": "IP-0A02B528", - "ec2": "i-50eb9520", - "ip": "23.20.166.132", - "version": 346, - "freedisk": 14.767, - "ie": "9.0.8112.16421", - "elapsed": 0, - "last": 25, - "busy": 0 - }, - { - "index": 5, - "pc": "IP-0A02B528", - "ec2": "i-5aeb952a", - "ip": "54.234.138.21", - "version": 346, - "freedisk": 14.768, - "ie": "9.0.8112.16421", - "elapsed": 0, - "last": 25, - "busy": 0 - }, - { - "index": 6, - "pc": "IP-0A02B528", - "ec2": "i-62eb9512", - "ip": "23.20.96.217", - "version": 346, - "freedisk": 14.767, - "ie": "9.0.8112.16421", - "elapsed": 0, - "last": 25, - "busy": 0 - }, - { - "index": 7, - "pc": "IP-0A02B528", - "ec2": "i-6ceb951c", - "ip": "54.234.191.119", - "version": 346, - "freedisk": 14.809, - "ie": "9.0.8112.16421", - "elapsed": 0, - "last": 25, - "busy": 0 - }, - { - "index": 8, - "pc": "IP-0A02B528", - "ec2": "i-72eb9502", - "ip": "23.21.25.95", - "version": 346, - "freedisk": 14.769, - "ie": "9.0.8112.16421", - "elapsed": 0, - "last": 25, - "busy": 0 - } - ] - } - }, - { - "id": "EC2_East_Chromium", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "IP-0A02B528", - "ip": "107.21.80.91", - "version": 91, - "freedisk": 9.572, - "elapsed": 0, - "last": 5929, - "busy": 0 - } - } - }, - { - "id": "EC2_West_wptdriver", - "elapsed": 0, - "testers": { - "tester": [ - { - "index": 1, - "pc": "IP-0AA132A2", - "ec2": "i-56e2f90f", - "ip": "50.18.3.32", - "version": 91, - "freedisk": 14.91, - "elapsed": 0, - "last": 7, - "busy": 0 - }, - { - "index": 2, - "pc": "IP-0AA8C22B", - "ec2": "i-f62d32af", - "ip": "204.236.139.22", - "version": 91, - "freedisk": 14.987, - "elapsed": 0, - "last": 10, - "busy": 0 - } - ] - } - }, - { - "id": "EC2_West", - "elapsed": 0, - "testers": { - "tester": [ - { - "index": 1, - "pc": "IP-0AA132A2", - "ec2": "i-56e2f90f", - "ip": "50.18.3.32", - "version": 346, - "freedisk": 14.91, - "ie": "9.0.8112.16421", - "elapsed": 0, - "busy": 0 - }, - { - "index": 2, - "pc": "IP-0AA8C22B", - "ec2": "i-f62d32af", - "ip": "204.236.139.22", - "version": 346, - "freedisk": 14.987, - "ie": "9.0.8112.16421", - "elapsed": 0, - "busy": 0 - } - ] - } - }, - { - "id": "EC2_SA_wptdriver", - "elapsed": 0, - "testers": { - "tester": [ - { - "index": 1, - "pc": "IP-0AFC1792", - "ec2": "i-a89224b6", - "ip": "54.232.22.164", - "version": 91, - "freedisk": 14.871, - "elapsed": 0, - "last": 62, - "busy": 0 - }, - { - "index": 2, - "pc": "IP-0AF80E53", - "ec2": "i-b09224ae", - "ip": "54.232.7.34", - "version": 91, - "freedisk": 14.876, - "elapsed": 0, - "last": 62, - "busy": 0 - } - ] - } - }, - { - "id": "EC2_SA", - "elapsed": 0, - "testers": { - "tester": [ - { - "index": 1, - "pc": "IP-0AFC1792", - "ec2": "i-a89224b6", - "ip": "54.232.22.164", - "version": 346, - "freedisk": 14.871, - "ie": "9.0.8112.16421", - "elapsed": 0, - "busy": 0 - }, - { - "index": 2, - "pc": "IP-0AF80E53", - "ec2": "i-b09224ae", - "ip": "54.232.7.34", - "version": 346, - "freedisk": 14.876, - "ie": "9.0.8112.16421", - "elapsed": 0, - "busy": 0 - } - ] - } - }, - { - "id": "EC2_EU_wptdriver", - "elapsed": 0, - "testers": { - "tester": [ - { - "index": 1, - "pc": "IP-0A21ADC2", - "ec2": "i-e20fd2a8", - "ip": "54.247.18.210", - "version": 91, - "freedisk": 14.907, - "elapsed": 0, - "last": 42, - "busy": 0 - }, - { - "index": 2, - "pc": "IP-0AE41B43", - "ec2": "i-ee0fd2a4", - "ip": "54.246.45.113", - "version": 91, - "freedisk": 14.909, - "elapsed": 0, - "last": 42, - "busy": 0 - } - ] - } - }, - { - "id": "EC2_EU", - "elapsed": 0, - "testers": { - "tester": [ - { - "index": 1, - "pc": "IP-0A21ADC2", - "ec2": "i-e20fd2a8", - "ip": "54.247.18.210", - "version": 346, - "freedisk": 14.907, - "ie": "9.0.8112.16421", - "elapsed": 0, - "last": 450, - "busy": 0 - }, - { - "index": 2, - "pc": "IP-0AE41B43", - "ec2": "i-ee0fd2a4", - "ip": "54.246.45.113", - "version": 346, - "freedisk": 14.909, - "ie": "9.0.8112.16421", - "elapsed": 0, - "last": 450, - "busy": 0 - } - ] - } - }, - { - "id": "EC2_Asia_West_wptdriver", - "elapsed": 0, - "testers": { - "tester": [ - { - "index": 1, - "pc": "IP-0A86066E", - "ec2": "i-8145f0d6", - "ip": "122.248.229.4", - "version": 91, - "freedisk": 14.903, - "elapsed": 0, - "last": 212, - "busy": 0 - }, - { - "index": 2, - "pc": "IP-0A8F161A", - "ec2": "i-8345f0d4", - "ip": "175.41.160.41", - "version": 91, - "freedisk": 14.905, - "elapsed": 0, - "last": 212, - "busy": 0 - } - ] - } - }, - { - "id": "EC2_Asia_West", - "elapsed": 0, - "testers": { - "tester": [ - { - "index": 1, - "pc": "IP-0A86066E", - "ec2": "i-8145f0d6", - "ip": "122.248.229.4", - "version": 346, - "freedisk": 14.903, - "ie": "9.0.8112.16421", - "elapsed": 0, - "busy": 0 - }, - { - "index": 2, - "pc": "IP-0A8F161A", - "ec2": "i-8345f0d4", - "ip": "175.41.160.41", - "version": 346, - "freedisk": 14.905, - "ie": "9.0.8112.16421", - "elapsed": 0, - "busy": 0 - } - ] - } - }, - { - "id": "EC2_Asia_East_wptdriver", - "elapsed": 0, - "testers": { - "tester": [ - { - "index": 1, - "pc": "IP-0AA062E5", - "ec2": "i-4ff5ac4c", - "ip": "175.41.226.159", - "version": 91, - "freedisk": 14.904, - "elapsed": 0, - "last": 67, - "busy": 0 - }, - { - "index": 2, - "pc": "IP-0AA08A89", - "ec2": "i-91f1b992", - "ip": "175.41.221.1", - "version": 91, - "freedisk": 14.897, - "elapsed": 0, - "last": 67, - "busy": 0 - } - ] - } - }, - { - "id": "EC2_Asia_East", - "elapsed": 0, - "testers": { - "tester": [ - { - "index": 1, - "pc": "IP-0AA062E5", - "ec2": "i-4ff5ac4c", - "ip": "175.41.226.159", - "version": 346, - "freedisk": 14.904, - "ie": "9.0.8112.16421", - "elapsed": 0, - "busy": 0 - }, - { - "index": 2, - "pc": "IP-0AA08A89", - "ec2": "i-91f1b992", - "ip": "175.41.221.1", - "version": 346, - "freedisk": 14.897, - "ie": "9.0.8112.16421", - "elapsed": 0, - "busy": 0 - } - ] - } - }, - { - "id": "Dulles_IE6", - "elapsed": 0, - "testers": { - "tester": [ - { - "index": 1, - "pc": "IE6101", - "ip": "192.168.101.61", - "version": 346, - "freedisk": 2.054, - "ie": "6.0.2900.5512", - "elapsed": 0, - "last": 60, - "busy": 0 - }, - { - "index": 2, - "pc": "IE6201", - "ip": "192.168.102.61", - "version": 346, - "freedisk": 2.279, - "ie": "6.0.2900.5512", - "elapsed": 0, - "last": 248, - "busy": 0 - } - ] - } - }, - { - "id": "Dulles_IE7", - "elapsed": 0, - "testers": { - "tester": [ - { - "index": 1, - "pc": "IE7101", - "ip": "192.168.101.71", - "version": 346, - "freedisk": 1.333, - "ie": "7.0.5730.13", - "elapsed": 0, - "last": 145, - "busy": 0 - }, - { - "index": 2, - "pc": "IE7102", - "ip": "192.168.101.72", - "version": 346, - "freedisk": 1.351, - "ie": "7.0.5730.13", - "elapsed": 0, - "last": 46, - "busy": 0 - }, - { - "index": 3, - "pc": "IE7201", - "ip": "192.168.102.71", - "version": 346, - "freedisk": 1.14, - "ie": "7.0.5730.13", - "elapsed": 0, - "last": 52, - "busy": 0 - }, - { - "index": 4, - "pc": "IE7202", - "ip": "192.168.102.72", - "version": 346, - "freedisk": 1.259, - "ie": "7.0.5730.13", - "elapsed": 0, - "last": 60, - "busy": 0 - } - ] - } - }, - { - "id": "Dulles_IE7_dynaTrace", - "elapsed": 0, - "testers": { - "tester": [ - { - "index": 1, - "pc": "IE7127", - "ip": "192.168.101.27", - "version": 346, - "freedisk": 1.726, - "ie": "7.0.5730.13", - "elapsed": 0, - "last": 351, - "busy": 0 - }, - { - "index": 2, - "pc": "IE7227", - "ip": "192.168.102.27", - "version": 346, - "freedisk": 1.711, - "ie": "7.0.5730.13", - "elapsed": 0, - "last": 354, - "busy": 0 - } - ] - } - }, - { - "id": "Dulles_IE8", - "elapsed": 0, - "testers": { - "tester": [ - { - "index": 1, - "pc": "IE8101", - "ip": "192.168.101.81", - "version": 346, - "freedisk": 1.299, - "ie": "8.0.7601.17514", - "elapsed": 0, - "last": 0, - "busy": 0 - }, - { - "index": 2, - "pc": "IE8102", - "ip": "192.168.101.82", - "version": 346, - "freedisk": 1.259, - "ie": "8.0.7601.17514", - "elapsed": 0, - "last": 3, - "busy": 0 - }, - { - "index": 3, - "pc": "IE8103", - "ip": "192.168.101.83", - "version": 346, - "freedisk": 1.154, - "ie": "8.0.7601.17514", - "elapsed": 1, - "last": 1, - "busy": 1 - }, - { - "index": 4, - "pc": "IE8104", - "ip": "192.168.101.84", - "version": 346, - "freedisk": 1.083, - "ie": "8.0.7601.17514", - "elapsed": 5, - "last": 5, - "busy": 1 - }, - { - "index": 5, - "pc": "IE8105", - "ip": "192.168.101.85", - "version": 346, - "freedisk": 1.253, - "ie": "8.0.7601.17514", - "elapsed": 0, - "last": 0, - "busy": 0 - }, - { - "index": 6, - "pc": "IE8106", - "ip": "192.168.101.86", - "version": 346, - "freedisk": 1.058, - "ie": "8.0.7601.17514", - "elapsed": 0, - "last": 3, - "busy": 0 - }, - { - "index": 7, - "pc": "IE8107", - "ip": "192.168.101.87", - "version": 346, - "freedisk": 0.729, - "ie": "8.0.7601.17514", - "elapsed": 0, - "last": 2, - "busy": 0 - }, - { - "index": 8, - "pc": "IE8108", - "ip": "192.168.101.88", - "version": 346, - "freedisk": 1.403, - "ie": "8.0.7601.17514", - "elapsed": 0, - "last": 0, - "busy": 1 - }, - { - "index": 9, - "pc": "IE8201", - "ip": "192.168.102.81", - "version": 346, - "freedisk": 1.494, - "ie": "8.0.7601.17514", - "elapsed": 0, - "last": 1, - "busy": 0 - }, - { - "index": 10, - "pc": "IE8202", - "ip": "192.168.102.82", - "version": 346, - "freedisk": 1.476, - "ie": "8.0.7601.17514", - "elapsed": 0, - "last": 2, - "busy": 0 - }, - { - "index": 11, - "pc": "IE8203", - "ip": "192.168.102.83", - "version": 346, - "freedisk": 1.344, - "ie": "8.0.7601.17514", - "elapsed": 0, - "last": 1, - "busy": 0 - }, - { - "index": 12, - "pc": "IE8204", - "ip": "192.168.102.84", - "version": 346, - "freedisk": 1.591, - "ie": "8.0.7601.17514", - "elapsed": 0, - "last": 0, - "busy": 0 - }, - { - "index": 13, - "pc": "IE8205", - "ip": "192.168.102.85", - "version": 346, - "freedisk": 1.517, - "ie": "8.0.7601.17514", - "elapsed": 0, - "last": 0, - "busy": 0 - }, - { - "index": 14, - "pc": "IE8206", - "ip": "192.168.102.86", - "version": 346, - "freedisk": 1.464, - "ie": "8.0.7601.17514", - "elapsed": 1, - "last": 1, - "busy": 1 - }, - { - "index": 15, - "pc": "IE8207", - "ip": "192.168.102.87", - "version": 346, - "freedisk": 1.545, - "ie": "8.0.7601.17514", - "elapsed": 0, - "last": 0, - "busy": 0 - }, - { - "index": 16, - "pc": "IE8208", - "ip": "192.168.102.88", - "version": 346, - "freedisk": 1.438, - "ie": "8.0.7601.17514", - "elapsed": 0, - "last": 1, - "busy": 0 - }, - { - "index": 17, - "pc": "IE8301", - "ip": "192.168.103.81", - "version": 346, - "freedisk": 10.05, - "ie": "8.0.7601.17514", - "elapsed": 0, - "last": 0, - "busy": 0 - }, - { - "index": 18, - "pc": "IE8302", - "ip": "192.168.103.82", - "version": 346, - "freedisk": 10.063, - "ie": "8.0.7601.17514", - "elapsed": 0, - "last": 2, - "busy": 0 - }, - { - "index": 19, - "pc": "IE8303", - "ip": "192.168.103.83", - "version": 346, - "freedisk": 10.053, - "ie": "8.0.7601.17514", - "elapsed": 0, - "last": 0, - "busy": 0 - }, - { - "index": 20, - "pc": "IE8304", - "ip": "192.168.103.84", - "version": 346, - "freedisk": 10.046, - "ie": "8.0.7601.17514", - "elapsed": 0, - "last": 2, - "busy": 0 - }, - { - "index": 21, - "pc": "IE8305", - "ip": "192.168.103.85", - "version": 346, - "freedisk": 10.067, - "ie": "8.0.7601.17514", - "elapsed": 0, - "last": 3, - "busy": 0 - }, - { - "index": 22, - "pc": "IE8306", - "ip": "192.168.103.86", - "version": 346, - "freedisk": 10.09, - "ie": "8.0.7601.17514", - "elapsed": 2, - "last": 2, - "busy": 1 - }, - { - "index": 23, - "pc": "IE8307", - "ip": "192.168.103.87", - "version": 346, - "freedisk": 10.064, - "ie": "8.0.7601.17514", - "elapsed": 0, - "last": 1, - "busy": 0 - }, - { - "index": 24, - "pc": "IE8308", - "ip": "192.168.103.88", - "version": 346, - "freedisk": 10.077, - "ie": "8.0.7601.17514", - "elapsed": 0, - "last": 2, - "busy": 0 - } - ] - } - }, - { - "id": "Dulles_IE8_dynaTrace", - "elapsed": 0, - "testers": { - "tester": [ - { - "index": 1, - "pc": "IE8128", - "ip": "192.168.101.28", - "version": 346, - "freedisk": 1.067, - "ie": "8.0.7601.17514", - "elapsed": 0, - "last": 517, - "busy": 0 - }, - { - "index": 2, - "pc": "IE8228", - "ip": "192.168.102.28", - "version": 346, - "freedisk": 1.376, - "ie": "8.0.7601.17514", - "elapsed": 0, - "last": 523, - "busy": 0 - } - ] - } - }, - { - "id": "Dulles_IE9", - "elapsed": 0, - "testers": { - "tester": [ - { - "index": 1, - "pc": "IE9101", - "ip": "192.168.101.91", - "version": 346, - "freedisk": 1.256, - "ie": "9.0.8112.16421", - "elapsed": 0, - "last": 23, - "busy": 0 - }, - { - "index": 2, - "pc": "IE9102", - "ip": "192.168.101.92", - "version": 346, - "freedisk": 1.112, - "ie": "9.0.8112.16421", - "elapsed": 0, - "last": 19, - "busy": 0 - }, - { - "index": 3, - "pc": "IE9201", - "ip": "192.168.102.91", - "version": 346, - "freedisk": 1.028, - "ie": "9.0.8112.16421", - "elapsed": 0, - "last": 34, - "busy": 0 - }, - { - "index": 4, - "pc": "IE9202", - "ip": "192.168.102.92", - "version": 346, - "freedisk": 1.011, - "ie": "9.0.8112.16421", - "elapsed": 0, - "last": 23, - "busy": 0 - }, - { - "index": 5, - "pc": "IE9301", - "ip": "192.168.103.91", - "version": 346, - "freedisk": 10.015, - "ie": "9.0.8112.16421", - "elapsed": 0, - "last": 22, - "busy": 0 - }, - { - "index": 6, - "pc": "IE9302", - "ip": "192.168.103.92", - "version": 346, - "freedisk": 10.022, - "ie": "9.0.8112.16421", - "elapsed": 0, - "last": 23, - "busy": 0 - } - ] - } - }, - { - "id": "Dulles_IE10", - "elapsed": 0, - "testers": { - "tester": [ - { - "index": 1, - "pc": "IE10201", - "ip": "192.168.102.101", - "version": 91, - "freedisk": 8.874, - "elapsed": 0, - "last": 30, - "busy": 0 - }, - { - "index": 2, - "pc": "IE10301", - "ip": "192.168.103.101", - "version": 91, - "freedisk": 9.473, - "elapsed": 0, - "last": 81, - "busy": 0 - }, - { - "index": 3, - "pc": "IE10302", - "ip": "192.168.103.102", - "version": 91, - "freedisk": 9.028, - "elapsed": 0, - "last": 87, - "busy": 0 - } - ] - } - }, - { - "id": "Dulles", - "elapsed": 0, - "testers": { - "tester": [ - { - "index": 1, - "pc": "IE8102", - "ip": "192.168.101.82", - "version": 91, - "freedisk": 1.259, - "elapsed": 0, - "last": 0, - "busy": 0 - }, - { - "index": 2, - "pc": "IE8103", - "ip": "192.168.101.83", - "version": 91, - "freedisk": 1.154, - "elapsed": 1, - "last": 8, - "busy": 0 - }, - { - "index": 3, - "pc": "IE8104", - "ip": "192.168.101.84", - "version": 91, - "freedisk": 1.083, - "elapsed": 5, - "last": 51, - "busy": 0 - }, - { - "index": 4, - "pc": "IE8105", - "ip": "192.168.101.85", - "version": 91, - "freedisk": 1.253, - "elapsed": 0, - "last": 16, - "busy": 0 - }, - { - "index": 5, - "pc": "IE8106", - "ip": "192.168.101.86", - "version": 91, - "freedisk": 1.058, - "elapsed": 0, - "last": 0, - "busy": 1 - }, - { - "index": 6, - "pc": "IE8107", - "ip": "192.168.101.87", - "version": 91, - "freedisk": 0.729, - "elapsed": 0, - "last": 34, - "busy": 0 - }, - { - "index": 7, - "pc": "IE8108", - "ip": "192.168.101.88", - "version": 91, - "freedisk": 1.403, - "elapsed": 0, - "last": 19, - "busy": 0 - }, - { - "index": 8, - "pc": "IE8128", - "ip": "192.168.101.28", - "version": 91, - "freedisk": 1.067, - "elapsed": 0, - "last": 22, - "busy": 0 - }, - { - "index": 9, - "pc": "IE8202", - "ip": "192.168.102.82", - "version": 91, - "freedisk": 1.476, - "elapsed": 0, - "last": 34, - "busy": 0 - }, - { - "index": 10, - "pc": "IE8203", - "ip": "192.168.102.83", - "version": 91, - "freedisk": 1.344, - "elapsed": 0, - "last": 30, - "busy": 0 - }, - { - "index": 11, - "pc": "IE8204", - "ip": "192.168.102.84", - "version": 91, - "freedisk": 1.591, - "elapsed": 0, - "last": 12, - "busy": 0 - }, - { - "index": 12, - "pc": "IE8205", - "ip": "192.168.102.85", - "version": 91, - "freedisk": 1.517, - "elapsed": 0, - "last": 131, - "busy": 0 - }, - { - "index": 13, - "pc": "IE8206", - "ip": "192.168.102.86", - "version": 91, - "freedisk": 1.464, - "elapsed": 1, - "last": 30, - "busy": 0 - }, - { - "index": 14, - "pc": "IE8207", - "ip": "192.168.102.87", - "version": 91, - "freedisk": 1.545, - "elapsed": 0, - "last": 7, - "busy": 0 - }, - { - "index": 15, - "pc": "IE8208", - "ip": "192.168.102.88", - "version": 91, - "freedisk": 1.438, - "elapsed": 0, - "last": 8, - "busy": 0 - }, - { - "index": 16, - "pc": "IE8228", - "ip": "192.168.102.28", - "version": 91, - "freedisk": 1.376, - "elapsed": 0, - "last": 44, - "busy": 0 - }, - { - "index": 17, - "pc": "IE8301", - "ip": "192.168.103.81", - "version": 91, - "freedisk": 10.05, - "elapsed": 0, - "last": 38, - "busy": 0 - }, - { - "index": 18, - "pc": "IE8302", - "ip": "192.168.103.82", - "version": 91, - "freedisk": 10.063, - "elapsed": 0, - "last": 1, - "busy": 0 - }, - { - "index": 19, - "pc": "IE8303", - "ip": "192.168.103.83", - "version": 91, - "freedisk": 10.053, - "elapsed": 0, - "last": 14, - "busy": 0 - }, - { - "index": 20, - "pc": "IE8304", - "ip": "192.168.103.84", - "version": 91, - "freedisk": 10.046, - "elapsed": 0, - "last": 29, - "busy": 0 - }, - { - "index": 21, - "pc": "IE8305", - "ip": "192.168.103.85", - "version": 91, - "freedisk": 10.067, - "elapsed": 0, - "last": 114, - "busy": 0 - }, - { - "index": 22, - "pc": "IE8306", - "ip": "192.168.103.86", - "version": 91, - "freedisk": 10.09, - "elapsed": 2, - "last": 26, - "busy": 0 - }, - { - "index": 23, - "pc": "IE8307", - "ip": "192.168.103.87", - "version": 91, - "freedisk": 10.064, - "elapsed": 0, - "last": 7, - "busy": 0 - }, - { - "index": 24, - "pc": "IE8308", - "ip": "192.168.103.88", - "version": 91, - "freedisk": 10.077, - "elapsed": 0, - "last": 8, - "busy": 0 - }, - { - "index": 25, - "pc": "IE9101", - "ip": "192.168.101.91", - "version": 91, - "freedisk": 1.256, - "elapsed": 0, - "last": 6, - "busy": 0 - }, - { - "index": 26, - "pc": "IE9102", - "ip": "192.168.101.92", - "version": 91, - "freedisk": 1.112, - "elapsed": 0, - "last": 8, - "busy": 0 - }, - { - "index": 27, - "pc": "IE9201", - "ip": "192.168.102.91", - "version": 91, - "freedisk": 1.028, - "elapsed": 0, - "last": 7, - "busy": 0 - }, - { - "index": 28, - "pc": "IE9202", - "ip": "192.168.102.92", - "version": 91, - "freedisk": 1.011, - "elapsed": 0, - "last": 35, - "busy": 0 - }, - { - "index": 29, - "pc": "IE9301", - "ip": "192.168.103.91", - "version": 91, - "freedisk": 10.015, - "elapsed": 0, - "last": 5, - "busy": 0 - }, - { - "index": 30, - "pc": "IE9302", - "ip": "192.168.103.92", - "version": 91, - "freedisk": 10.022, - "elapsed": 0, - "last": 45, - "busy": 0 - } - ] - } - }, - { - "id": "Dulles_Firefox3", - "elapsed": 0, - "testers": { - "tester": [ - { - "index": 1, - "pc": "IE8101", - "ip": "192.168.101.81", - "version": 91, - "freedisk": 1.299, - "elapsed": 0, - "last": 76, - "busy": 0 - }, - { - "index": 2, - "pc": "IE8201", - "ip": "192.168.102.81", - "version": 91, - "freedisk": 1.494, - "elapsed": 0, - "last": 5, - "busy": 0 - } - ] - } - }, - { - "id": "Dulles_IE6_ChromeFrame", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "IE6131", - "ip": "192.168.101.31", - "version": 346, - "freedisk": 1.875, - "ie": "6.0.2900.5512", - "elapsed": 0, - "last": 60, - "busy": 0 - } - } - }, - { - "id": "Dulles_Replay", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "IE7205", - "ip": "192.168.102.75", - "version": 91, - "freedisk": 2.092, - "elapsed": 0, - "last": 72, - "busy": 0 - } - } - }, - { - "id": "Dulles_iOS", - "elapsed": 0, - "testers": { - "tester": [ - { - "index": 1, - "pc": "iphone-1", - "ip": "72.66.115.14", - "elapsed": 0, - "last": 54, - "busy": 0 - }, - { - "index": 2, - "pc": "iphone2", - "ip": "72.66.115.14", - "elapsed": 0, - "last": 54, - "busy": 0 - }, - { - "index": 3, - "pc": "iphone3", - "ip": "72.66.115.14", - "elapsed": 0, - "last": 7, - "busy": 0 - } - ] - } - }, - { - "id": "Dulles_Android", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "nexus-s-2", - "ip": "72.66.115.14", - "elapsed": 0, - "last": 60, - "busy": 0 - } - } - }, - { - "id": "Asheville_IE", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "RENTAVAU-A9D7DA", - "ip": "96.32.105.254", - "version": 346, - "freedisk": 62.559, - "ie": "8.0.6001.18702", - "elapsed": 5, - "last": 5, - "busy": 1 - } - } - }, - { - "id": "Asheville_wpt", - "elapsed": 5, - "testers": { - "tester": { - "index": 1, - "pc": "RENTAVAU-A9D7DA", - "ip": "96.32.105.254", - "version": 91, - "freedisk": 62.559, - "elapsed": 5, - "last": 28, - "busy": 0 - } - } - }, - { - "id": "Phoenix_IE8" - }, - { - "id": "Phoenix_Chrome" - }, - { - "id": "Miami_IE8", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "ROUTERCON6", - "ip": "75.149.177.50", - "version": 346, - "freedisk": 133.68, - "ie": "8.0.6001.18702", - "elapsed": 5, - "last": 5, - "busy": 1 - } - } - }, - { - "id": "Miami", - "elapsed": 5, - "testers": { - "tester": { - "index": 1, - "pc": "ROUTERCON6", - "ip": "75.149.177.50", - "version": 91, - "freedisk": 133.68, - "elapsed": 5, - "last": 6, - "busy": 0 - } - } - }, - { - "id": "Chicago_IE9" - }, - { - "id": "Chicago" - }, - { - "id": "Missouri_IE8", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "WEBPAGET-0C9CBC", - "ip": "199.193.245.13", - "version": 346, - "freedisk": 4.794, - "ie": "8.0.6001.18702", - "elapsed": 5, - "last": 5, - "busy": 1 - } - } - }, - { - "id": "Missouri_Chrome", - "elapsed": 5, - "testers": { - "tester": { - "index": 1, - "pc": "WEBPAGET-0C9CBC", - "ip": "199.193.245.13", - "version": 91, - "freedisk": 4.794, - "elapsed": 5, - "last": 9, - "busy": 0 - } - } - }, - { - "id": "SanJose_IE9", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "SS0343", - "ip": "67.207.194.210", - "version": 346, - "freedisk": 215.625, - "ie": "9.0.8112.16421", - "elapsed": 4, - "last": 4, - "busy": 1 - } - } - }, - { - "id": "SanJose_wpt", - "elapsed": 4, - "testers": { - "tester": { - "index": 1, - "pc": "SS0343", - "ip": "67.207.194.210", - "version": 91, - "freedisk": 215.625, - "elapsed": 4, - "last": 11, - "busy": 0 - } - } - }, - { - "id": "SanJose_TM" - }, - { - "id": "SanJose_VZ" - }, - { - "id": "LosAngeles_IE7", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "CP-WBT-IE7", - "ip": "99.41.174.101", - "version": 346, - "freedisk": 119.628, - "ie": "8.0.6001.18702", - "elapsed": 0, - "last": 58, - "busy": 0 - } - } - }, - { - "id": "LosAngeles_IE8", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "CP-WBT-IE8", - "ip": "99.41.174.101", - "version": 346, - "freedisk": 118.699, - "ie": "8.0.6001.18702", - "elapsed": 1, - "last": 1, - "busy": 1 - } - } - }, - { - "id": "LosAngeles_IE9", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "WEBPAGEIE9", - "ip": "99.41.174.101", - "version": 346, - "freedisk": 108.084, - "ie": "9.0.8112.16421", - "elapsed": 0, - "last": 51, - "busy": 0 - } - } - }, - { - "id": "LosAngeles_Chrome", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "CP-WBT-IE8", - "ip": "99.41.174.101", - "version": 91, - "freedisk": 117.868, - "elapsed": 0, - "last": 0, - "busy": 1 - } - } - }, - { - "id": "Vancouver_IE8", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "GOSSAMER-69D6FE", - "ip": "204.187.15.253", - "version": 346, - "freedisk": 9.604, - "ie": "8.0.6001.18702", - "elapsed": 0, - "busy": 0 - } - } - }, - { - "id": "Vancouver_wpt", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "GOSSAMER-69D6FE", - "ip": "204.187.15.253", - "version": 91, - "freedisk": 9.604, - "elapsed": 0, - "busy": 0 - } - } - }, - { - "id": "Montreal_IE8", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "GOGAX-F647D7287", - "ip": "76.76.105.98", - "version": 346, - "freedisk": 224.049, - "ie": "8.0.6001.18702", - "elapsed": 4, - "last": 4, - "busy": 1 - } - } - }, - { - "id": "Montreal_wpt", - "elapsed": 4, - "testers": { - "tester": { - "index": 1, - "pc": "GOGAX-F647D7287", - "ip": "76.76.105.98", - "version": 91, - "freedisk": 224.049, - "elapsed": 4, - "last": 25, - "busy": 0 - } - } - }, - { - "id": "Toronto_IE8", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "WPT", - "ip": "67.55.9.3", - "version": 346, - "freedisk": 6.107, - "ie": "8.0.7600.16385", - "elapsed": 0, - "last": 15, - "busy": 0 - } - } - }, - { - "id": "Argentina_IE8", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "WEBPAGETEST", - "ip": "190.111.250.246", - "version": 346, - "freedisk": 91.652, - "ie": "8.0.6001.18702", - "elapsed": 10, - "last": 10, - "busy": 1 - } - } - }, - { - "id": "Argentina_wpt", - "elapsed": 10, - "testers": { - "tester": { - "index": 1, - "pc": "WEBPAGETEST", - "ip": "190.111.250.246", - "version": 91, - "freedisk": 91.652, - "elapsed": 10, - "last": 11, - "busy": 0 - } - } - }, - { - "id": "SaoPaulo_IE8", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "PAGEST-IE8", - "ec2": "i-6e69ec70", - "ip": "54.232.8.149", - "version": 346, - "freedisk": 7.079, - "ie": "8.0.6001.18702", - "elapsed": 0, - "last": 5, - "busy": 0 - } - } - }, - { - "id": "SaoPaulo", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "IP-0AF80BE8", - "ec2": "i-5c26a342", - "ip": "54.232.4.197", - "version": 346, - "freedisk": 16.953, - "ie": "9.0.8112.16421", - "elapsed": 0, - "last": 63, - "busy": 0 - } - } - }, - { - "id": "SaoPaulo_wptdriver", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "IP-0AF80BE8", - "ec2": "i-5c26a342", - "ip": "54.232.4.197", - "version": 91, - "freedisk": 16.953, - "elapsed": 0, - "last": 2, - "busy": 0 - } - } - }, - { - "id": "Dublin_IL_IE7", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "PAGEST-IE7", - "ec2": "i-f3a738bb", - "ip": "79.125.68.171", - "version": 346, - "freedisk": 6.88, - "ie": "7.0.5730.13", - "elapsed": 0, - "last": 613, - "busy": 0 - } - } - }, - { - "id": "Dublin_IL_IE8", - "elapsed": 0, - "testers": { - "tester": [ - { - "index": 1, - "pc": "PAGEST-IE8", - "ec2": "i-5f819f14", - "ip": "54.246.65.49", - "version": 346, - "freedisk": 6.982, - "ie": "8.0.6001.18702", - "elapsed": 0, - "last": 6, - "busy": 0 - }, - { - "index": 2, - "pc": "PAGEST-IE8", - "ec2": "i-f1b02fb9", - "ip": "46.137.145.216", - "version": 346, - "freedisk": 6.688, - "ie": "8.0.6001.18702", - "elapsed": 0, - "last": 5, - "busy": 0 - } - ] - } - }, - { - "id": "Dublin", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "IP-0AE0537C", - "ec2": "i-8daf30c5", - "ip": "46.137.38.250", - "version": 346, - "freedisk": 16.971, - "ie": "9.0.8112.16421", - "elapsed": 0, - "last": 110, - "busy": 0 - } - } - }, - { - "id": "Dublin_wptdriver", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "IP-0AE0537C", - "ec2": "i-8daf30c5", - "ip": "46.137.38.250", - "version": 91, - "freedisk": 16.971, - "elapsed": 0, - "last": 8, - "busy": 0 - } - } - }, - { - "id": "UK", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "DSVR006276", - "ip": "88.208.247.50", - "version": 346, - "freedisk": 3.34, - "ie": "7.0.5730.13", - "elapsed": 0, - "last": 24, - "busy": 0 - } - } - }, - { - "id": "London_IE7", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "IE7A", - "ip": "83.138.148.244", - "version": 346, - "freedisk": 4.331, - "ie": "7.0.5730.13", - "elapsed": 0, - "last": 0, - "busy": 1 - } - } - }, - { - "id": "London_IE8", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "IE8", - "ip": "83.138.148.244", - "version": 346, - "freedisk": 3.042, - "ie": "8.0.6001.18702", - "elapsed": 0, - "last": 1, - "busy": 0 - } - } - }, - { - "id": "Madrid_IE8", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "WEBTESTXP", - "ip": "195.235.93.205", - "version": 346, - "freedisk": 18.618, - "ie": "8.0.6001.18702", - "elapsed": 2, - "last": 2, - "busy": 1 - } - } - }, - { - "id": "Paris_IE7", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "TRADE-4C7F0DCFA", - "ip": "109.190.85.183", - "version": 346, - "freedisk": 65.855, - "ie": "7.0.5730.13", - "elapsed": 0, - "last": 42, - "busy": 0 - } - } - }, - { - "id": "Paris_IE8", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "INOCYBE", - "ip": "78.225.169.33", - "version": 346, - "freedisk": 210.973, - "ie": "8.0.6001.18702", - "elapsed": 0, - "last": 0, - "busy": 1 - } - } - }, - { - "id": "Paris_wpt", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "INOCYBE", - "ip": "78.225.169.33", - "version": 91, - "freedisk": 210.973, - "elapsed": 0, - "last": 0, - "busy": 0 - } - } - }, - { - "id": "Brussels_IE8", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "KEYPERFORMAN-PC", - "ip": "91.183.64.49", - "version": 346, - "freedisk": 48.522, - "ie": "7.0.6001.18000", - "elapsed": 0, - "last": 115, - "busy": 0 - } - } - }, - { - "id": "Brussels", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "KEYPERFORMAN-PC", - "ip": "91.183.64.49", - "version": 91, - "freedisk": 48.522, - "elapsed": 0, - "last": 1, - "busy": 0 - } - } - }, - { - "id": "Amsterdam_IE7", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "WPT-PRIV01-IE7", - "ip": "46.226.57.90", - "version": 346, - "freedisk": 39.005, - "ie": "7.0.5730.13", - "elapsed": 0, - "last": 976, - "busy": 0 - } - } - }, - { - "id": "Amsterdam_IE8", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "WPT-PUBLIC-IE8", - "ip": "46.226.57.90", - "version": 346, - "freedisk": 26.374, - "ie": "8.0.6001.19393", - "elapsed": 0, - "last": 24, - "busy": 0 - } - } - }, - { - "id": "Amsterdam_IE9", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "WPT-PUBLIC-IE9", - "ip": "46.226.57.90", - "version": 346, - "freedisk": 37.155, - "ie": "9.0.8112.16421", - "elapsed": 0, - "last": 113, - "busy": 0 - } - } - }, - { - "id": "Amsterdam", - "elapsed": 0, - "testers": { - "tester": [ - { - "index": 1, - "pc": "WPT-PRIV01-IE7", - "ip": "46.226.57.90", - "version": 91, - "freedisk": 39.005, - "elapsed": 0, - "last": 0, - "busy": 0 - }, - { - "index": 2, - "pc": "WPT-PUBLIC-IE8", - "ip": "46.226.57.90", - "version": 91, - "freedisk": 26.374, - "elapsed": 0, - "last": 3, - "busy": 0 - }, - { - "index": 3, - "pc": "WPT-PUBLIC-IE9", - "ip": "46.226.57.90", - "version": 91, - "freedisk": 37.155, - "elapsed": 0, - "last": 0, - "busy": 0 - } - ] - } - }, - { - "id": "Amsterdam_iOS", - "elapsed": 0, - "testers": { - "tester": [ - { - "index": 1 - }, - { - "index": 1 - }, - { - "index": 1 - }, - { - "index": 1 - }, - { - "index": 1 - }, - { - "index": 1 - }, - { - "index": 1 - }, - { - "index": 1 - }, - { - "index": 1 - }, - { - "index": 1 - } - ] - } - }, - { - "id": "Amsterdam_Android", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "mobitest", - "ip": "46.226.57.90", - "elapsed": 0, - "last": 973, - "busy": 0 - } - } - }, - { - "id": "Geneva_IE8", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "MY-6C51B65D11AD", - "ip": "195.70.27.52", - "version": 346, - "freedisk": 148.312, - "ie": "8.0.6001.18702", - "elapsed": 0, - "last": 3, - "busy": 0 - } - } - }, - { - "id": "Frankfurt_IE7", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "WPT01", - "ip": "83.236.239.34", - "version": 346, - "freedisk": 128.83, - "ie": "7.0.5730.13", - "elapsed": 0, - "last": 49, - "busy": 0 - } - } - }, - { - "id": "Frankfurt", - "elapsed": 7, - "testers": { - "tester": [ - { - "index": 1, - "pc": "D046D083B056425", - "ip": "217.24.222.120", - "version": 346, - "freedisk": 1.813, - "ie": "8.0.6001.18702", - "elapsed": 19, - "last": 19, - "busy": 1 - }, - { - "index": 2, - "pc": "D046D083B056425", - "ip": "62.216.172.30", - "version": 346, - "freedisk": 1.812, - "ie": "8.0.6001.18702", - "elapsed": 10, - "last": 10, - "busy": 1 - } - ] - } - }, - { - "id": "Frankfurt_IE9", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "WPT02", - "ip": "83.236.239.34", - "version": 346, - "freedisk": 48.79, - "ie": "9.0.8112.16421", - "elapsed": 0, - "last": 4, - "busy": 0 - } - } - }, - { - "id": "Frankfurt_wpt", - "elapsed": 0, - "testers": { - "tester": [ - { - "index": 1, - "pc": "D046D083B056425", - "ip": "217.24.222.120", - "version": 91, - "freedisk": 1.813, - "elapsed": 7, - "last": 7, - "busy": 1 - }, - { - "index": 2, - "pc": "D046D083B056425", - "ip": "62.216.172.30", - "version": 91, - "freedisk": 1.812, - "elapsed": 10, - "last": 60, - "busy": 0 - } - ] - } - }, - { - "id": "Stockholm_IE8", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "SESTNSWT01P", - "ip": "213.136.37.170", - "version": 346, - "freedisk": 65.74, - "ie": "8.0.7601.17514", - "elapsed": 0, - "last": 6, - "busy": 0 - } - } - }, - { - "id": "Stockholm", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "SESTNSWT01P", - "ip": "213.136.37.170", - "version": 91, - "freedisk": 65.74, - "elapsed": 0, - "last": 23, - "busy": 0 - } - } - }, - { - "id": "Israel_IE8", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "WEBPAGETEST-IL", - "ip": "84.229.70.72", - "version": 346, - "freedisk": 61.489, - "ie": "8.0.6001.18702", - "elapsed": 0, - "last": 19, - "busy": 0 - } - } - }, - { - "id": "Israel_Chrome", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "WEBPAGETEST-IL", - "ip": "84.229.70.72", - "version": 91, - "freedisk": 61.489, - "elapsed": 0, - "last": 107, - "busy": 0 - } - } - }, - { - "id": "Kenya_IE8" - }, - { - "id": "Kenya_Chrome" - }, - { - "id": "Moscow_IE8", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "WEBO2003-9DEA01", - "ip": "93.95.102.121", - "version": 346, - "freedisk": 15.021, - "ie": "8.0.6001.18702", - "elapsed": 0, - "last": 2, - "busy": 0 - } - } - }, - { - "id": "Moscow", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "WIN-TBAWB44ZXJR", - "ip": "89.253.252.152", - "version": 91, - "freedisk": 6.018, - "elapsed": 0, - "last": 0, - "busy": 0 - } - } - }, - { - "id": "StPetersburg_IE9", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "VPS33966", - "ip": "109.120.144.91", - "version": 346, - "freedisk": 1.469, - "ie": "9.0.8112.16421", - "elapsed": 0, - "last": 0, - "busy": 0 - } - } - }, - { - "id": "StPetersburg", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "VPS33966", - "ip": "109.120.144.91", - "version": 91, - "freedisk": 1.469, - "elapsed": 0, - "last": 3, - "busy": 0 - } - } - }, - { - "id": "Delhi_IE8", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "MEENAN", - "ip": "111.118.182.67", - "version": 346, - "freedisk": 39.314, - "ie": "8.0.6001.18702", - "elapsed": 0, - "last": 27, - "busy": 0 - } - } - }, - { - "id": "Delhi_wpt", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "MEENAN", - "ip": "111.118.182.67", - "version": 91, - "freedisk": 39.314, - "elapsed": 0, - "last": 20, - "busy": 0 - } - } - }, - { - "id": "Singapore_IE8", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "PAGEST-IE8", - "ec2": "i-f30386a4", - "ip": "175.41.171.36", - "version": 346, - "freedisk": 7.102, - "ie": "8.0.6001.18702", - "elapsed": 0, - "last": 45, - "busy": 0 - } - } - }, - { - "id": "HongKong_IE8", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "WEBPAGET-N8YR2Q", - "ip": "124.248.210.158", - "version": 346, - "freedisk": 53.914, - "ie": "8.0.6001.18702", - "elapsed": 0, - "busy": 0 - } - } - }, - { - "id": "HongKong", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "WEBPAGET-N8YR2Q", - "ip": "124.248.210.158", - "version": 91, - "freedisk": 53.914, - "elapsed": 0, - "last": 2624, - "busy": 0 - } - } - }, - { - "id": "China", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "FGHKTUK-TTPWNPY", - "ip": "61.147.67.178", - "version": 346, - "freedisk": 11.024, - "ie": "7.0.5730.13", - "elapsed": 0, - "last": 13, - "busy": 0 - } - } - }, - { - "id": "China_wpt", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "FGHKTUK-TTPWNPY", - "ip": "61.147.67.178", - "version": 91, - "freedisk": 11.024, - "elapsed": 0, - "last": 16, - "busy": 0 - } - } - }, - { - "id": "Korea", - "elapsed": 3085, - "testers": { - "tester": { - "index": 1, - "pc": "NA-IS-WEBPERF", - "ip": "118.218.218.11", - "version": 346, - "freedisk": 60.13, - "ie": "8.0.6001.18702", - "elapsed": 3085, - "busy": 0 - } - } - }, - { - "id": "Korea_IE8", - "elapsed": 7513, - "testers": { - "tester": { - "index": 1, - "pc": "NA-SC-WEBPERF", - "ip": "117.52.9.4", - "version": 346, - "freedisk": 129.285, - "ie": "8.0.6001.18702", - "elapsed": 7513, - "busy": 0 - } - } - }, - { - "id": "Tokyo_IE8", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "PAGEST-IE8", - "ec2": "i-13165710", - "ip": "54.248.179.63", - "version": 346, - "freedisk": 7, - "ie": "8.0.6001.18702", - "elapsed": 0, - "last": 464, - "busy": 0 - } - } - }, - { - "id": "Tokyo", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "IP-0AA0877C", - "ec2": "i-5a913659", - "ip": "54.248.153.220", - "version": 346, - "freedisk": 17.031, - "ie": "9.0.8112.16421", - "elapsed": 0, - "last": 46, - "busy": 0 - } - } - }, - { - "id": "Tokyo_wptdriver", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "IP-0AA0877C", - "ec2": "i-5a913659", - "ip": "54.248.153.220", - "version": 91, - "freedisk": 17.031, - "elapsed": 0, - "last": 20, - "busy": 0 - } - } - }, - { - "id": "Sydney_IE7", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "WPT-APP01", - "ip": "117.53.165.240", - "version": 346, - "freedisk": 46.209, - "ie": "7.0.6002.18005", - "elapsed": 0, - "last": 1, - "busy": 0 - } - } - }, - { - "id": "Sydney", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "WPT-APP01", - "ip": "117.53.165.240", - "version": 91, - "freedisk": 46.209, - "elapsed": 0, - "last": 20, - "busy": 0 - } - } - }, - { - "id": "Wellington_IE9", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "WPTUSER-PC", - "ip": "202.21.128.202", - "version": 346, - "freedisk": 5.283, - "ie": "9.0.8112.16421", - "elapsed": 0, - "last": 27, - "busy": 0 - } - } - }, - { - "id": "Wellington", - "elapsed": 0, - "testers": { - "tester": { - "index": 1, - "pc": "WPTUSER-PC", - "ip": "202.21.128.202", - "version": 91, - "freedisk": 5.283, - "elapsed": 0, - "last": 19, - "busy": 0 - } - } - }, - { - "id": "Test" - }, - { - "id": "Test_wptdriver" - }, - { - "id": "Pat_Chrome" - } - ] - } - } -} \ No newline at end of file diff --git a/test/fixtures/objects/timeline.json b/test/fixtures/objects/timeline.json deleted file mode 100644 index 5561cf3..0000000 --- a/test/fixtures/objects/timeline.json +++ /dev/null @@ -1,25186 +0,0 @@ -[ - "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1 PTST/62", - { - "children": [], - "data": {}, - "endTime": 1348171818031.957, - "frameId": "2036.1", - "startTime": 1348171818031.957, - "totalHeapSize": 4149120, - "type": "Layout", - "usedHeapSize": 2132848 - }, - { - "data": {}, - "startTime": 1348171818031.957, - "totalHeapSize": 4149120, - "type": "BeginFrame", - "usedHeapSize": 2132848 - }, - { - "children": [], - "data": { - "height": 625, - "width": 1014, - "x": 0, - "y": 0 - }, - "endTime": 1348171818032.957, - "frameId": "2036.1", - "startTime": 1348171818032.957, - "totalHeapSize": 4149120, - "type": "Paint", - "usedHeapSize": 2132848 - }, - { - "data": { - "requestId": "2036.2", - "requestMethod": "GET", - "url": "http://twitter.com/marcelduran" - }, - "frameId": "2036.1", - "startTime": 1348171818049.957, - "totalHeapSize": 4149120, - "type": "ResourceSendRequest", - "usedHeapSize": 2132848 - }, - { - "children": [], - "data": { - "mimeType": "text/html", - "requestId": "2036.2", - "statusCode": 200 - }, - "endTime": 1348171818583.957, - "frameId": "2036.1", - "startTime": 1348171818583.957, - "totalHeapSize": 4149120, - "type": "ResourceReceiveResponse", - "usedHeapSize": 2132848 - }, - { - "data": { - "requestId": "2036.3", - "requestMethod": "GET", - "url": "http://a0.twimg.com/a/1348075398/t1/css/t1_core_logged_out.bundle.css" - }, - "frameId": "2036.1", - "startTime": 1348171818605.957, - "totalHeapSize": 7229056, - "type": "ResourceSendRequest", - "usedHeapSize": 2719724 - }, - { - "data": { - "requestId": "2036.4", - "requestMethod": "GET", - "url": "http://a0.twimg.com/a/1348075398/t1/css/t1_more.bundle.css" - }, - "frameId": "2036.1", - "startTime": 1348171818608.957, - "totalHeapSize": 7229056, - "type": "ResourceSendRequest", - "usedHeapSize": 2719724 - }, - { - "children": [ - { - "children": [], - "data": {}, - "endTime": 1348171818587.957, - "frameId": "2036.1", - "startTime": 1348171818587.957, - "totalHeapSize": 4149120, - "type": "RecalculateStyles", - "usedHeapSize": 2139948 - }, - { - "children": [], - "data": {}, - "endTime": 1348171818595.957, - "frameId": "2036.1", - "startTime": 1348171818595.957, - "totalHeapSize": 5164800, - "type": "RecalculateStyles", - "usedHeapSize": 2455376 - }, - { - "children": [ - { - "data": { - "usedHeapSizeDelta": 278784 - }, - "endTime": 1348171818600.957, - "startTime": 1348171818597.957, - "totalHeapSize": 7229056, - "type": "GCEvent", - "usedHeapSize": 2548260 - }, - { - "children": [], - "data": { - "scriptLine": 1582, - "scriptName": "native v8natives.js" - }, - "endTime": 1348171818604.957, - "frameId": "2036.1", - "startTime": 1348171818603.957, - "totalHeapSize": 7229056, - "type": "FunctionCall", - "usedHeapSize": 2610104 - }, - { - "children": [], - "data": { - "lineNumber": 1, - "url": "chrome-extension://ejfgipfkkpdadoidbhfedneaabgolbno/wpt/script.js" - }, - "endTime": 1348171818605.957, - "frameId": "2036.1", - "startTime": 1348171818604.957, - "totalHeapSize": 7229056, - "type": "EvaluateScript", - "usedHeapSize": 2718944 - }, - { - "children": [], - "data": { - "lineNumber": 6, - "url": "http://twitter.com/marcelduran" - }, - "endTime": 1348171818605.957, - "frameId": "2036.1", - "startTime": 1348171818605.957, - "totalHeapSize": 7229056, - "type": "EvaluateScript", - "usedHeapSize": 2719724 - } - ], - "data": { - "endLine": 27, - "length": 2563, - "startLine": 0 - }, - "endTime": 1348171818609.957, - "frameId": "2036.1", - "startTime": 1348171818595.957, - "totalHeapSize": 7229056, - "type": "ParseHTML", - "usedHeapSize": 2719724 - } - ], - "data": { - "requestId": "2036.2" - }, - "endTime": 1348171818610.957, - "frameId": "2036.1", - "startTime": 1348171818584.957, - "totalHeapSize": 7229056, - "type": "ResourceReceivedData", - "usedHeapSize": 2719724 - }, - { - "children": [], - "data": { - "requestId": "2036.2" - }, - "endTime": 1348171818645.957, - "frameId": "2036.1", - "startTime": 1348171818642.957, - "totalHeapSize": 7229056, - "type": "ResourceReceivedData", - "usedHeapSize": 2719780 - }, - { - "children": [], - "data": { - "requestId": "2036.2" - }, - "endTime": 1348171818645.957, - "frameId": "2036.1", - "startTime": 1348171818645.957, - "totalHeapSize": 7229056, - "type": "ResourceReceivedData", - "usedHeapSize": 2719780 - }, - { - "children": [], - "data": { - "requestId": "2036.2" - }, - "endTime": 1348171818800.957, - "frameId": "2036.1", - "startTime": 1348171818799.957, - "totalHeapSize": 7229056, - "type": "ResourceReceivedData", - "usedHeapSize": 2719780 - }, - { - "children": [], - "data": { - "requestId": "2036.2" - }, - "endTime": 1348171818800.957, - "frameId": "2036.1", - "startTime": 1348171818800.957, - "totalHeapSize": 7229056, - "type": "ResourceReceivedData", - "usedHeapSize": 2719780 - }, - { - "data": { - "requestId": "2036.5", - "requestMethod": "GET", - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "frameId": "2036.1", - "startTime": 1348171818803.957, - "totalHeapSize": 7229056, - "type": "ResourceSendRequest", - "usedHeapSize": 2719780 - }, - { - "children": [ - { - "data": { - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "frameId": "2036.1", - "startTime": 1348171818803.957, - "totalHeapSize": 7229056, - "type": "ScheduleResourceRequest", - "usedHeapSize": 2719780 - } - ], - "data": { - "requestId": "2036.2" - }, - "endTime": 1348171818803.957, - "frameId": "2036.1", - "startTime": 1348171818800.957, - "totalHeapSize": 7229056, - "type": "ResourceReceivedData", - "usedHeapSize": 2719780 - }, - { - "children": [], - "data": { - "requestId": "2036.2" - }, - "endTime": 1348171818804.957, - "frameId": "2036.1", - "startTime": 1348171818804.957, - "totalHeapSize": 7229056, - "type": "ResourceReceivedData", - "usedHeapSize": 2719780 - }, - { - "children": [], - "data": { - "requestId": "2036.2" - }, - "endTime": 1348171818812.957, - "frameId": "2036.1", - "startTime": 1348171818812.957, - "totalHeapSize": 7229056, - "type": "ResourceReceivedData", - "usedHeapSize": 2719780 - }, - { - "data": { - "didFail": false, - "networkTime": 1348171818802.957, - "requestId": "2036.2" - }, - "frameId": "2036.1", - "startTime": 1348171818812.957, - "totalHeapSize": 7229056, - "type": "ResourceFinish", - "usedHeapSize": 2719780 - }, - { - "children": [], - "data": { - "mimeType": "text/css", - "requestId": "2036.3", - "statusCode": 200 - }, - "endTime": 1348171818985.957, - "frameId": "2036.1", - "startTime": 1348171818985.957, - "totalHeapSize": 7229056, - "type": "ResourceReceiveResponse", - "usedHeapSize": 2719780 - }, - { - "children": [], - "data": { - "requestId": "2036.3" - }, - "endTime": 1348171818985.957, - "frameId": "2036.1", - "startTime": 1348171818985.957, - "totalHeapSize": 7229056, - "type": "ResourceReceivedData", - "usedHeapSize": 2719780 - }, - { - "children": [], - "data": { - "requestId": "2036.3" - }, - "endTime": 1348171818985.957, - "frameId": "2036.1", - "startTime": 1348171818985.957, - "totalHeapSize": 7229056, - "type": "ResourceReceivedData", - "usedHeapSize": 2719780 - }, - { - "children": [], - "data": { - "mimeType": "text/css", - "requestId": "2036.4", - "statusCode": 200 - }, - "endTime": 1348171819013.957, - "frameId": "2036.1", - "startTime": 1348171819013.957, - "totalHeapSize": 7229056, - "type": "ResourceReceiveResponse", - "usedHeapSize": 2719780 - }, - { - "children": [], - "data": { - "requestId": "2036.4" - }, - "endTime": 1348171819013.957, - "frameId": "2036.1", - "startTime": 1348171819013.957, - "totalHeapSize": 7229056, - "type": "ResourceReceivedData", - "usedHeapSize": 2719780 - }, - { - "children": [], - "data": { - "requestId": "2036.4" - }, - "endTime": 1348171819013.957, - "frameId": "2036.1", - "startTime": 1348171819013.957, - "totalHeapSize": 7229056, - "type": "ResourceReceivedData", - "usedHeapSize": 2719780 - }, - { - "children": [], - "data": { - "requestId": "2036.3" - }, - "endTime": 1348171819042.957, - "frameId": "2036.1", - "startTime": 1348171819042.957, - "totalHeapSize": 7229056, - "type": "ResourceReceivedData", - "usedHeapSize": 2719780 - }, - { - "children": [], - "data": { - "requestId": "2036.3" - }, - "endTime": 1348171819057.957, - "frameId": "2036.1", - "startTime": 1348171819057.957, - "totalHeapSize": 7229056, - "type": "ResourceReceivedData", - "usedHeapSize": 2719780 - }, - { - "children": [], - "data": { - "requestId": "2036.4" - }, - "endTime": 1348171819057.957, - "frameId": "2036.1", - "startTime": 1348171819057.957, - "totalHeapSize": 7229056, - "type": "ResourceReceivedData", - "usedHeapSize": 2719780 - }, - { - "children": [], - "data": { - "requestId": "2036.4" - }, - "endTime": 1348171819057.957, - "frameId": "2036.1", - "startTime": 1348171819057.957, - "totalHeapSize": 7229056, - "type": "ResourceReceivedData", - "usedHeapSize": 2719780 - }, - { - "children": [], - "data": { - "mimeType": "application/javascript", - "requestId": "2036.5", - "statusCode": 200 - }, - "endTime": 1348171819057.957, - "frameId": "2036.1", - "startTime": 1348171819057.957, - "totalHeapSize": 7229056, - "type": "ResourceReceiveResponse", - "usedHeapSize": 2719780 - }, - { - "children": [], - "data": { - "requestId": "2036.5" - }, - "endTime": 1348171819057.957, - "frameId": "2036.1", - "startTime": 1348171819057.957, - "totalHeapSize": 7229056, - "type": "ResourceReceivedData", - "usedHeapSize": 2719780 - }, - { - "children": [], - "data": { - "requestId": "2036.5" - }, - "endTime": 1348171819057.957, - "frameId": "2036.1", - "startTime": 1348171819057.957, - "totalHeapSize": 7229056, - "type": "ResourceReceivedData", - "usedHeapSize": 2719780 - }, - { - "children": [], - "data": { - "requestId": "2036.5" - }, - "endTime": 1348171819109.957, - "frameId": "2036.1", - "startTime": 1348171819109.957, - "totalHeapSize": 7229056, - "type": "ResourceReceivedData", - "usedHeapSize": 2719780 - }, - { - "children": [], - "data": { - "requestId": "2036.5" - }, - "endTime": 1348171819115.957, - "frameId": "2036.1", - "startTime": 1348171819115.957, - "totalHeapSize": 7229056, - "type": "ResourceReceivedData", - "usedHeapSize": 2719780 - }, - { - "children": [], - "data": { - "requestId": "2036.3" - }, - "endTime": 1348171819318.957, - "frameId": "2036.1", - "startTime": 1348171819318.957, - "totalHeapSize": 7229056, - "type": "ResourceReceivedData", - "usedHeapSize": 2719780 - }, - { - "children": [], - "data": { - "requestId": "2036.3" - }, - "endTime": 1348171819318.957, - "frameId": "2036.1", - "startTime": 1348171819318.957, - "totalHeapSize": 7229056, - "type": "ResourceReceivedData", - "usedHeapSize": 2719780 - }, - { - "children": [], - "data": { - "requestId": "2036.3" - }, - "endTime": 1348171819318.957, - "frameId": "2036.1", - "startTime": 1348171819318.957, - "totalHeapSize": 7229056, - "type": "ResourceReceivedData", - "usedHeapSize": 2719780 - }, - { - "children": [], - "data": { - "requestId": "2036.3" - }, - "endTime": 1348171819318.957, - "frameId": "2036.1", - "startTime": 1348171819318.957, - "totalHeapSize": 7229056, - "type": "ResourceReceivedData", - "usedHeapSize": 2719780 - }, - { - "children": [], - "data": { - "requestId": "2036.4" - }, - "endTime": 1348171819328.957, - "frameId": "2036.1", - "startTime": 1348171819328.957, - "totalHeapSize": 7229056, - "type": "ResourceReceivedData", - "usedHeapSize": 2719780 - }, - { - "children": [], - "data": { - "requestId": "2036.4" - }, - "endTime": 1348171819328.957, - "frameId": "2036.1", - "startTime": 1348171819328.957, - "totalHeapSize": 7229056, - "type": "ResourceReceivedData", - "usedHeapSize": 2719780 - }, - { - "children": [], - "data": { - "requestId": "2036.4" - }, - "endTime": 1348171819328.957, - "frameId": "2036.1", - "startTime": 1348171819328.957, - "totalHeapSize": 7229056, - "type": "ResourceReceivedData", - "usedHeapSize": 2719780 - }, - { - "children": [], - "data": { - "requestId": "2036.4" - }, - "endTime": 1348171819329.957, - "frameId": "2036.1", - "startTime": 1348171819329.957, - "totalHeapSize": 7229056, - "type": "ResourceReceivedData", - "usedHeapSize": 2719780 - }, - { - "data": { - "usedHeapSizeDelta": 861048 - }, - "endTime": 1348171819391.957, - "startTime": 1348171819387.957, - "totalHeapSize": 7229056, - "type": "GCEvent", - "usedHeapSize": 1858732 - }, - { - "children": [], - "data": { - "requestId": "2036.4" - }, - "endTime": 1348171819395.957, - "frameId": "2036.1", - "startTime": 1348171819395.957, - "totalHeapSize": 7229056, - "type": "ResourceReceivedData", - "usedHeapSize": 1858732 - }, - { - "data": { - "didFail": false, - "networkTime": 1348171819389.957, - "requestId": "2036.4" - }, - "frameId": "2036.1", - "startTime": 1348171819412.957, - "totalHeapSize": 7229056, - "type": "ResourceFinish", - "usedHeapSize": 1858732 - }, - { - "children": [], - "data": { - "requestId": "2036.3" - }, - "endTime": 1348171819416.957, - "frameId": "2036.1", - "startTime": 1348171819416.957, - "totalHeapSize": 7229056, - "type": "ResourceReceivedData", - "usedHeapSize": 1858732 - }, - { - "children": [], - "data": {}, - "endTime": 1348171819431.957, - "frameId": "2036.1", - "startTime": 1348171819431.957, - "totalHeapSize": 7229056, - "type": "RecalculateStyles", - "usedHeapSize": 1858732 - }, - { - "children": [], - "data": { - "lineNumber": 24, - "url": "http://twitter.com/marcelduran" - }, - "endTime": 1348171819432.957, - "frameId": "2036.1", - "startTime": 1348171819432.957, - "totalHeapSize": 7229056, - "type": "EvaluateScript", - "usedHeapSize": 1863084 - }, - { - "data": { - "requestId": "2036.6", - "requestMethod": "GET", - "url": "http://a0.twimg.com/a/1348075398/t1/img/twitter_web_sprite_bgs.png" - }, - "frameId": "2036.1", - "startTime": 1348171819435.957, - "totalHeapSize": 7229056, - "type": "ResourceSendRequest", - "usedHeapSize": 1879928 - }, - { - "data": { - "requestId": "2036.7", - "requestMethod": "GET", - "url": "http://a0.twimg.com/a/1348075398/t1/img/twitter_web_sprite_icons.png" - }, - "frameId": "2036.1", - "startTime": 1348171819439.957, - "totalHeapSize": 7229056, - "type": "ResourceSendRequest", - "usedHeapSize": 1879928 - }, - { - "data": { - "requestId": "2036.8", - "requestMethod": "GET", - "url": "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" - }, - "frameId": "2036.1", - "startTime": 1348171819441.957, - "totalHeapSize": 7229056, - "type": "ResourceSendRequest", - "usedHeapSize": 1879928 - }, - { - "data": { - "requestId": "2036.9", - "requestMethod": "GET", - "url": "http://a0.twimg.com/a/1348075398/t1/img/wash-white-30.png" - }, - "frameId": "2036.1", - "startTime": 1348171819443.957, - "totalHeapSize": 7229056, - "type": "ResourceSendRequest", - "usedHeapSize": 1879928 - }, - { - "data": { - "requestId": "2036.10", - "requestMethod": "GET", - "url": "http://a0.twimg.com/profile_images/2160711737/marcel_reasonably_small.jpg" - }, - "frameId": "2036.1", - "startTime": 1348171819445.957, - "totalHeapSize": 7229056, - "type": "ResourceSendRequest", - "usedHeapSize": 1879928 - }, - { - "data": { - "requestId": "2036.11", - "requestMethod": "GET", - "url": "http://a0.twimg.com/profile_images/1372346118/Hi-ResMYTHBUSTERStory_normal.jpg" - }, - "frameId": "2036.1", - "startTime": 1348171819450.957, - "totalHeapSize": 7229056, - "type": "ResourceSendRequest", - "usedHeapSize": 1879928 - }, - { - "data": { - "requestId": "2036.12", - "requestMethod": "GET", - "url": "http://a0.twimg.com/profile_images/1178298385/CompSci_normal.png" - }, - "frameId": "2036.1", - "startTime": 1348171819451.957, - "totalHeapSize": 7229056, - "type": "ResourceSendRequest", - "usedHeapSize": 1879928 - }, - { - "data": { - "requestId": "2036.13", - "requestMethod": "GET", - "url": "http://a0.twimg.com/profile_images/2160711737/marcel_normal.jpg" - }, - "frameId": "2036.1", - "startTime": 1348171819452.957, - "totalHeapSize": 7229056, - "type": "ResourceSendRequest", - "usedHeapSize": 1879928 - }, - { - "data": { - "requestId": "2036.14", - "requestMethod": "GET", - "url": "http://a0.twimg.com/profile_images/2327360441/xof3978zk6fu13b8c83t_normal.jpeg" - }, - "frameId": "2036.1", - "startTime": 1348171819461.957, - "totalHeapSize": 7229056, - "type": "ResourceSendRequest", - "usedHeapSize": 1879928 - }, - { - "data": { - "requestId": "2036.15", - "requestMethod": "GET", - "url": "http://a0.twimg.com/profile_images/2509042025/w6j4vyk4t3n4xhx2ebcc_normal.png" - }, - "frameId": "2036.1", - "startTime": 1348171819467.957, - "totalHeapSize": 7229056, - "type": "ResourceSendRequest", - "usedHeapSize": 1879928 - }, - { - "data": { - "requestId": "2036.16", - "requestMethod": "GET", - "url": "http://a0.twimg.com/profile_images/1333659288/flickr-toque_256_normal.jpg" - }, - "frameId": "2036.1", - "startTime": 1348171819469.957, - "totalHeapSize": 7229056, - "type": "ResourceSendRequest", - "usedHeapSize": 1879928 - }, - { - "data": { - "requestId": "2036.17", - "requestMethod": "GET", - "url": "http://a0.twimg.com/profile_images/2239534981/Shaun_NYC_L_Heureux-0768LR_normal.jpg" - }, - "frameId": "2036.1", - "startTime": 1348171819470.957, - "totalHeapSize": 7229056, - "type": "ResourceSendRequest", - "usedHeapSize": 1879928 - }, - { - "data": { - "requestId": "2036.18", - "requestMethod": "GET", - "url": "http://a0.twimg.com/profile_images/2113444521/speedometer_normal.png" - }, - "frameId": "2036.1", - "startTime": 1348171819475.957, - "totalHeapSize": 7229056, - "type": "ResourceSendRequest", - "usedHeapSize": 1879928 - }, - { - "data": { - "requestId": "2036.19", - "requestMethod": "GET", - "url": "http://a0.twimg.com/a/1348075398/t1/img/loader.gif" - }, - "frameId": "2036.1", - "startTime": 1348171819475.957, - "totalHeapSize": 7229056, - "type": "ResourceSendRequest", - "usedHeapSize": 1879928 - }, - { - "data": { - "requestId": "2036.20", - "requestMethod": "GET", - "url": "about:blank" - }, - "frameId": "2036.3", - "startTime": 1348171819475.957, - "totalHeapSize": 7229056, - "type": "ResourceSendRequest", - "usedHeapSize": 1884564 - }, - { - "data": { - "requestId": "2036.21", - "requestMethod": "GET", - "url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_6_mini.png" - }, - "frameId": "2036.1", - "startTime": 1348171819475.957, - "totalHeapSize": 7229056, - "type": "ResourceSendRequest", - "usedHeapSize": 1884564 - }, - { - "data": { - "requestId": "2036.22", - "requestMethod": "GET", - "url": "http://a0.twimg.com/a/1348075398/images/bigger_spinner.gif" - }, - "frameId": "2036.1", - "startTime": 1348171819478.957, - "totalHeapSize": 7229056, - "type": "ResourceSendRequest", - "usedHeapSize": 1884564 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 10000, - "timerId": 2 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 1446, - "functionName": "", - "lineNumber": 30, - "url": "http://twitter.com/marcelduran" - }, - { - "columnNumber": 1513, - "functionName": "", - "lineNumber": 30, - "url": "http://twitter.com/marcelduran" - } - ], - "startTime": 1348171819435.957, - "totalHeapSize": 7229056, - "type": "TimerInstall", - "usedHeapSize": 1879416 - } - ], - "data": { - "lineNumber": 30, - "url": "http://twitter.com/marcelduran" - }, - "endTime": 1348171819435.957, - "frameId": "2036.1", - "startTime": 1348171819434.957, - "totalHeapSize": 7229056, - "type": "EvaluateScript", - "usedHeapSize": 1879928 - }, - { - "data": { - "url": "http://a0.twimg.com/a/1348075398/t1/img/twitter_web_sprite_bgs.png" - }, - "frameId": "2036.1", - "startTime": 1348171819439.957, - "totalHeapSize": 7229056, - "type": "ScheduleResourceRequest", - "usedHeapSize": 1879928 - }, - { - "data": { - "url": "http://a0.twimg.com/a/1348075398/t1/img/twitter_web_sprite_icons.png" - }, - "frameId": "2036.1", - "startTime": 1348171819439.957, - "totalHeapSize": 7229056, - "type": "ScheduleResourceRequest", - "usedHeapSize": 1879928 - }, - { - "data": { - "url": "http://a0.twimg.com/a/1348075398/t1/img/wash-white-30.png" - }, - "frameId": "2036.1", - "startTime": 1348171819443.957, - "totalHeapSize": 7229056, - "type": "ScheduleResourceRequest", - "usedHeapSize": 1879928 - }, - { - "children": [], - "data": {}, - "endTime": 1348171819444.957, - "frameId": "2036.1", - "startTime": 1348171819443.957, - "totalHeapSize": 7229056, - "type": "RecalculateStyles", - "usedHeapSize": 1879928 - }, - { - "data": { - "url": "http://a0.twimg.com/profile_images/2160711737/marcel_reasonably_small.jpg" - }, - "frameId": "2036.1", - "startTime": 1348171819445.957, - "totalHeapSize": 7229056, - "type": "ScheduleResourceRequest", - "usedHeapSize": 1879928 - }, - { - "data": { - "url": "http://a0.twimg.com/profile_images/1372346118/Hi-ResMYTHBUSTERStory_normal.jpg" - }, - "frameId": "2036.1", - "startTime": 1348171819450.957, - "totalHeapSize": 7229056, - "type": "ScheduleResourceRequest", - "usedHeapSize": 1879928 - }, - { - "data": { - "url": "http://a0.twimg.com/profile_images/1178298385/CompSci_normal.png" - }, - "frameId": "2036.1", - "startTime": 1348171819451.957, - "totalHeapSize": 7229056, - "type": "ScheduleResourceRequest", - "usedHeapSize": 1879928 - }, - { - "data": { - "url": "http://a0.twimg.com/profile_images/2160711737/marcel_normal.jpg" - }, - "frameId": "2036.1", - "startTime": 1348171819452.957, - "totalHeapSize": 7229056, - "type": "ScheduleResourceRequest", - "usedHeapSize": 1879928 - }, - { - "data": { - "url": "http://a0.twimg.com/profile_images/2327360441/xof3978zk6fu13b8c83t_normal.jpeg" - }, - "frameId": "2036.1", - "startTime": 1348171819461.957, - "totalHeapSize": 7229056, - "type": "ScheduleResourceRequest", - "usedHeapSize": 1879928 - }, - { - "data": { - "url": "http://a0.twimg.com/profile_images/2509042025/w6j4vyk4t3n4xhx2ebcc_normal.png" - }, - "frameId": "2036.1", - "startTime": 1348171819467.957, - "totalHeapSize": 7229056, - "type": "ScheduleResourceRequest", - "usedHeapSize": 1879928 - }, - { - "data": { - "url": "http://a0.twimg.com/profile_images/1333659288/flickr-toque_256_normal.jpg" - }, - "frameId": "2036.1", - "startTime": 1348171819469.957, - "totalHeapSize": 7229056, - "type": "ScheduleResourceRequest", - "usedHeapSize": 1879928 - }, - { - "data": { - "url": "http://a0.twimg.com/profile_images/2239534981/Shaun_NYC_L_Heureux-0768LR_normal.jpg" - }, - "frameId": "2036.1", - "startTime": 1348171819470.957, - "totalHeapSize": 7229056, - "type": "ScheduleResourceRequest", - "usedHeapSize": 1879928 - }, - { - "data": { - "url": "http://a0.twimg.com/profile_images/2113444521/speedometer_normal.png" - }, - "frameId": "2036.1", - "startTime": 1348171819475.957, - "totalHeapSize": 7229056, - "type": "ScheduleResourceRequest", - "usedHeapSize": 1879928 - }, - { - "data": { - "url": "http://a0.twimg.com/a/1348075398/t1/img/loader.gif" - }, - "frameId": "2036.1", - "startTime": 1348171819475.957, - "totalHeapSize": 7229056, - "type": "ScheduleResourceRequest", - "usedHeapSize": 1879928 - }, - { - "children": [], - "data": {}, - "endTime": 1348171819475.957, - "frameId": "2036.3", - "startTime": 1348171819475.957, - "totalHeapSize": 7229056, - "type": "RecalculateStyles", - "usedHeapSize": 1884564 - }, - { - "children": [], - "data": { - "endLine": 0, - "length": 1, - "startLine": 0 - }, - "endTime": 1348171819475.957, - "frameId": "2036.3", - "startTime": 1348171819475.957, - "totalHeapSize": 7229056, - "type": "ParseHTML", - "usedHeapSize": 1884564 - }, - { - "data": {}, - "frameId": "2036.3", - "startTime": 1348171819475.957, - "totalHeapSize": 7229056, - "type": "MarkDOMContent", - "usedHeapSize": 1884564 - }, - { - "children": [], - "data": { - "mimeType": "text/html", - "requestId": "2036.20", - "statusCode": 0 - }, - "endTime": 1348171819475.957, - "frameId": "2036.3", - "startTime": 1348171819475.957, - "totalHeapSize": 7229056, - "type": "ResourceReceiveResponse", - "usedHeapSize": 1884564 - }, - { - "children": [], - "data": {}, - "endTime": 1348171819475.957, - "frameId": "2036.3", - "startTime": 1348171819475.957, - "totalHeapSize": 7229056, - "type": "RecalculateStyles", - "usedHeapSize": 1884564 - }, - { - "children": [], - "data": { - "endLine": 0, - "length": 1, - "startLine": 0 - }, - "endTime": 1348171819475.957, - "frameId": "2036.3", - "startTime": 1348171819475.957, - "totalHeapSize": 7229056, - "type": "ParseHTML", - "usedHeapSize": 1884564 - }, - { - "data": {}, - "frameId": "2036.3", - "startTime": 1348171819475.957, - "totalHeapSize": 7229056, - "type": "MarkLoad", - "usedHeapSize": 1884564 - }, - { - "data": {}, - "frameId": "2036.3", - "startTime": 1348171819475.957, - "totalHeapSize": 7229056, - "type": "MarkDOMContent", - "usedHeapSize": 1884564 - }, - { - "data": { - "didFail": false, - "requestId": "2036.20" - }, - "frameId": "2036.3", - "startTime": 1348171819475.957, - "totalHeapSize": 7229056, - "type": "ResourceFinish", - "usedHeapSize": 1884564 - }, - { - "data": { - "url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_6_mini.png" - }, - "frameId": "2036.1", - "startTime": 1348171819475.957, - "totalHeapSize": 7229056, - "type": "ScheduleResourceRequest", - "usedHeapSize": 1884564 - }, - { - "data": { - "url": "http://a0.twimg.com/a/1348075398/images/bigger_spinner.gif" - }, - "frameId": "2036.1", - "startTime": 1348171819478.957, - "totalHeapSize": 7229056, - "type": "ScheduleResourceRequest", - "usedHeapSize": 1884564 - } - ], - "data": { - "endLine": 4167, - "length": 192486, - "startLine": 27 - }, - "endTime": 1348171819480.957, - "frameId": "2036.1", - "startTime": 1348171819434.957, - "totalHeapSize": 7229056, - "type": "ParseHTML", - "usedHeapSize": 1884564 - }, - { - "data": { - "didFail": false, - "networkTime": 1348171819392.957, - "requestId": "2036.3" - }, - "frameId": "2036.1", - "startTime": 1348171819484.957, - "totalHeapSize": 7229056, - "type": "ResourceFinish", - "usedHeapSize": 1884564 - }, - { - "children": [], - "data": { - "requestId": "2036.5" - }, - "endTime": 1348171819493.957, - "frameId": "2036.1", - "startTime": 1348171819493.957, - "totalHeapSize": 7229056, - "type": "ResourceReceivedData", - "usedHeapSize": 1884564 - }, - { - "children": [], - "data": { - "requestId": "2036.5" - }, - "endTime": 1348171819493.957, - "frameId": "2036.1", - "startTime": 1348171819493.957, - "totalHeapSize": 7229056, - "type": "ResourceReceivedData", - "usedHeapSize": 1884564 - }, - { - "children": [], - "data": { - "requestId": "2036.5" - }, - "endTime": 1348171819493.957, - "frameId": "2036.1", - "startTime": 1348171819493.957, - "totalHeapSize": 7229056, - "type": "ResourceReceivedData", - "usedHeapSize": 1884564 - }, - { - "data": { - "requestId": "2036.23", - "requestMethod": "GET", - "url": "http://a0.twimg.com/images/themes/theme14/bg.gif" - }, - "frameId": "2036.1", - "startTime": 1348171819493.957, - "totalHeapSize": 7229056, - "type": "ResourceSendRequest", - "usedHeapSize": 1884564 - }, - { - "children": [ - { - "children": [ - { - "data": { - "url": "http://a0.twimg.com/images/themes/theme14/bg.gif" - }, - "frameId": "2036.1", - "startTime": 1348171819493.957, - "totalHeapSize": 7229056, - "type": "ScheduleResourceRequest", - "usedHeapSize": 1884564 - } - ], - "data": {}, - "endTime": 1348171819507.957, - "frameId": "2036.1", - "startTime": 1348171819493.957, - "totalHeapSize": 7229056, - "type": "RecalculateStyles", - "usedHeapSize": 1884564 - } - ], - "data": {}, - "endTime": 1348171819538.957, - "frameId": "2036.1", - "startTime": 1348171819493.957, - "totalHeapSize": 7229056, - "type": "Layout", - "usedHeapSize": 1884564 - }, - { - "children": [], - "data": { - "endLine": 4167, - "length": 22264, - "startLine": 4167 - }, - "endTime": 1348171819538.957, - "frameId": "2036.1", - "startTime": 1348171819538.957, - "totalHeapSize": 7229056, - "type": "ParseHTML", - "usedHeapSize": 1884564 - }, - { - "children": [], - "data": { - "mimeType": "image/gif", - "requestId": "2036.8", - "statusCode": 0 - }, - "endTime": 1348171819538.957, - "frameId": "2036.1", - "startTime": 1348171819538.957, - "totalHeapSize": 7229056, - "type": "ResourceReceiveResponse", - "usedHeapSize": 1884564 - }, - { - "children": [], - "data": { - "requestId": "2036.8" - }, - "endTime": 1348171819538.957, - "frameId": "2036.1", - "startTime": 1348171819538.957, - "totalHeapSize": 7229056, - "type": "ResourceReceivedData", - "usedHeapSize": 1884564 - }, - { - "data": { - "didFail": false, - "networkTime": 1348171819538.957, - "requestId": "2036.8" - }, - "frameId": "2036.1", - "startTime": 1348171819538.957, - "totalHeapSize": 7229056, - "type": "ResourceFinish", - "usedHeapSize": 1884564 - }, - { - "data": {}, - "startTime": 1348171819540.957, - "totalHeapSize": 7229056, - "type": "BeginFrame", - "usedHeapSize": 1884564 - }, - { - "children": [], - "data": { - "height": 625, - "width": 997, - "x": 0, - "y": 0 - }, - "endTime": 1348171819573.957, - "frameId": "2036.1", - "startTime": 1348171819542.957, - "totalHeapSize": 7229056, - "type": "Paint", - "usedHeapSize": 1884564 - }, - { - "children": [], - "data": { - "requestId": "2036.5" - }, - "endTime": 1348171819577.957, - "frameId": "2036.1", - "startTime": 1348171819577.957, - "totalHeapSize": 7229056, - "type": "ResourceReceivedData", - "usedHeapSize": 1884564 - }, - { - "children": [ - { - "children": [], - "data": { - "endLine": 0, - "length": 107, - "startLine": 0 - }, - "endTime": 1348171819701.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 17440, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 21056, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 49847, - "functionName": "", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171819701.957, - "totalHeapSize": 8244736, - "type": "ParseHTML", - "usedHeapSize": 2700712 - }, - { - "children": [], - "data": { - "endLine": 0, - "length": 1, - "startLine": 0 - }, - "endTime": 1348171819703.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 17440, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 21056, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 49847, - "functionName": "", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171819701.957, - "totalHeapSize": 8244736, - "type": "ParseHTML", - "usedHeapSize": 2700864 - }, - { - "children": [], - "data": { - "endLine": 0, - "length": 0, - "startLine": 0 - }, - "endTime": 1348171819705.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 19026, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 21056, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 49847, - "functionName": "", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171819705.957, - "totalHeapSize": 8244736, - "type": "ParseHTML", - "usedHeapSize": 2788012 - }, - { - "children": [], - "data": { - "endLine": 0, - "length": 1, - "startLine": 0 - }, - "endTime": 1348171819705.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 19026, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 21056, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 49847, - "functionName": "", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171819705.957, - "totalHeapSize": 8244736, - "type": "ParseHTML", - "usedHeapSize": 2788164 - }, - { - "children": [], - "data": { - "endLine": 0, - "length": 31, - "startLine": 0 - }, - "endTime": 1348171819708.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 11356, - "functionName": "", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 11812, - "functionName": "", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14996, - "functionName": "", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 49847, - "functionName": "", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171819708.957, - "totalHeapSize": 8244736, - "type": "ParseHTML", - "usedHeapSize": 3058672 - }, - { - "children": [], - "data": { - "endLine": 0, - "length": 1, - "startLine": 0 - }, - "endTime": 1348171819708.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 11356, - "functionName": "", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 11812, - "functionName": "", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14996, - "functionName": "", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 49847, - "functionName": "", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171819708.957, - "totalHeapSize": 8244736, - "type": "ParseHTML", - "usedHeapSize": 3058860 - }, - { - "children": [], - "data": { - "endLine": 0, - "length": 16, - "startLine": 0 - }, - "endTime": 1348171819708.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 12092, - "functionName": "c.querySelectorAll.a", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 12286, - "functionName": "", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14996, - "functionName": "", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 49847, - "functionName": "", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171819708.957, - "totalHeapSize": 8244736, - "type": "ParseHTML", - "usedHeapSize": 3062452 - }, - { - "children": [], - "data": { - "endLine": 0, - "length": 1, - "startLine": 0 - }, - "endTime": 1348171819709.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 12092, - "functionName": "c.querySelectorAll.a", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 12286, - "functionName": "", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14996, - "functionName": "", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 49847, - "functionName": "", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171819708.957, - "totalHeapSize": 8244736, - "type": "ParseHTML", - "usedHeapSize": 3062640 - }, - { - "children": [], - "data": { - "endLine": 0, - "length": 20, - "startLine": 0 - }, - "endTime": 1348171819709.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 12379, - "functionName": "a", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 13335, - "functionName": "", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14996, - "functionName": "", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 49847, - "functionName": "", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171819709.957, - "totalHeapSize": 8244736, - "type": "ParseHTML", - "usedHeapSize": 3062956 - }, - { - "children": [], - "data": { - "endLine": 0, - "length": 1, - "startLine": 0 - }, - "endTime": 1348171819709.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 12379, - "functionName": "a", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 13335, - "functionName": "", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14996, - "functionName": "", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 49847, - "functionName": "", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171819709.957, - "totalHeapSize": 8244736, - "type": "ParseHTML", - "usedHeapSize": 3063144 - }, - { - "children": [], - "data": { - "endLine": 0, - "length": 50, - "startLine": 0 - }, - "endTime": 1348171819709.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 13899, - "functionName": "c.documentElement.contains.n.contains", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14263, - "functionName": "", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14996, - "functionName": "", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 49847, - "functionName": "", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171819709.957, - "totalHeapSize": 8244736, - "type": "ParseHTML", - "usedHeapSize": 3088876 - }, - { - "children": [], - "data": { - "endLine": 0, - "length": 1, - "startLine": 0 - }, - "endTime": 1348171819709.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 13899, - "functionName": "c.documentElement.contains.n.contains", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14263, - "functionName": "", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14996, - "functionName": "", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 49847, - "functionName": "", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171819709.957, - "totalHeapSize": 8244736, - "type": "ParseHTML", - "usedHeapSize": 3089064 - } - ], - "data": { - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171819716.957, - "frameId": "2036.1", - "startTime": 1348171819577.957, - "totalHeapSize": 8244736, - "type": "EvaluateScript", - "usedHeapSize": 3651476 - }, - { - "data": { - "requestId": "2036.24", - "requestMethod": "GET", - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 12982, - "functionName": "A.scriptTagTransport", - "lineNumber": 9, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 11652, - "functionName": "z.start", - "lineNumber": 9, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14146, - "functionName": "C.start", - "lineNumber": 9, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 11312, - "functionName": "z.then", - "lineNumber": 9, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 13508, - "functionName": "B.start", - "lineNumber": 9, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171819720.957, - "totalHeapSize": 8244736, - "type": "ResourceSendRequest", - "usedHeapSize": 3787064 - }, - { - "children": [ - { - "children": [ - { - "data": { - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 12982, - "functionName": "A.scriptTagTransport", - "lineNumber": 9, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 11652, - "functionName": "z.start", - "lineNumber": 9, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14146, - "functionName": "C.start", - "lineNumber": 9, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 11312, - "functionName": "z.then", - "lineNumber": 9, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 13508, - "functionName": "B.start", - "lineNumber": 9, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171819721.957, - "totalHeapSize": 8244736, - "type": "ScheduleResourceRequest", - "usedHeapSize": 3788652 - } - ], - "data": { - "lineNumber": 4169, - "url": "http://twitter.com/marcelduran" - }, - "endTime": 1348171819721.957, - "frameId": "2036.1", - "startTime": 1348171819718.957, - "totalHeapSize": 8244736, - "type": "EvaluateScript", - "usedHeapSize": 3789112 - } - ], - "data": { - "endLine": 4198, - "length": 22264, - "startLine": 4167 - }, - "endTime": 1348171819721.957, - "frameId": "2036.1", - "startTime": 1348171819718.957, - "totalHeapSize": 8244736, - "type": "ParseHTML", - "usedHeapSize": 3789112 - }, - { - "children": [], - "data": { - "endLine": 4198, - "length": 0, - "startLine": 4198 - }, - "endTime": 1348171819721.957, - "frameId": "2036.1", - "startTime": 1348171819721.957, - "totalHeapSize": 8244736, - "type": "ParseHTML", - "usedHeapSize": 3789112 - }, - { - "children": [ - { - "children": [ - { - "children": [], - "data": { - "endLine": 0, - "length": 83, - "startLine": 0 - }, - "endTime": 1348171819721.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 19985, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14845, - "functionName": "f.Callbacks.o", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 15621, - "functionName": "f.Callbacks.p.fireWith", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 9832, - "functionName": "e.extend.ready", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14416, - "functionName": "c.addEventListener.C", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171819721.957, - "totalHeapSize": 8244736, - "type": "ParseHTML", - "usedHeapSize": 3808216 - }, - { - "children": [], - "data": { - "endLine": 0, - "length": 1, - "startLine": 0 - }, - "endTime": 1348171819721.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 19985, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14845, - "functionName": "f.Callbacks.o", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 15621, - "functionName": "f.Callbacks.p.fireWith", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 9832, - "functionName": "e.extend.ready", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14416, - "functionName": "c.addEventListener.C", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171819721.957, - "totalHeapSize": 8244736, - "type": "ParseHTML", - "usedHeapSize": 3808440 - }, - { - "children": [], - "data": {}, - "endTime": 1348171819722.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 20109, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14845, - "functionName": "f.Callbacks.o", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 15621, - "functionName": "f.Callbacks.p.fireWith", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 9832, - "functionName": "e.extend.ready", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14416, - "functionName": "c.addEventListener.C", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171819721.957, - "totalHeapSize": 8244736, - "type": "RecalculateStyles", - "usedHeapSize": 3816032 - }, - { - "children": [], - "data": {}, - "endTime": 1348171819723.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 20109, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14845, - "functionName": "f.Callbacks.o", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 15621, - "functionName": "f.Callbacks.p.fireWith", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 9832, - "functionName": "e.extend.ready", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14416, - "functionName": "c.addEventListener.C", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171819722.957, - "totalHeapSize": 8244736, - "type": "Layout", - "usedHeapSize": 3816256 - }, - { - "children": [], - "data": {}, - "endTime": 1348171819723.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 20206, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14845, - "functionName": "f.Callbacks.o", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 15621, - "functionName": "f.Callbacks.p.fireWith", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 9832, - "functionName": "e.extend.ready", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14416, - "functionName": "c.addEventListener.C", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171819723.957, - "totalHeapSize": 8244736, - "type": "RecalculateStyles", - "usedHeapSize": 3817684 - }, - { - "children": [], - "data": {}, - "endTime": 1348171819723.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 20206, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14845, - "functionName": "f.Callbacks.o", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 15621, - "functionName": "f.Callbacks.p.fireWith", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 9832, - "functionName": "e.extend.ready", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14416, - "functionName": "c.addEventListener.C", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171819723.957, - "totalHeapSize": 8244736, - "type": "Layout", - "usedHeapSize": 3817908 - }, - { - "children": [], - "data": { - "endLine": 0, - "length": 0, - "startLine": 0 - }, - "endTime": 1348171819723.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 20235, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14845, - "functionName": "f.Callbacks.o", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 15621, - "functionName": "f.Callbacks.p.fireWith", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 9832, - "functionName": "e.extend.ready", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14416, - "functionName": "c.addEventListener.C", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171819723.957, - "totalHeapSize": 8244736, - "type": "ParseHTML", - "usedHeapSize": 3818876 - }, - { - "children": [], - "data": { - "endLine": 0, - "length": 1, - "startLine": 0 - }, - "endTime": 1348171819723.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 20235, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14845, - "functionName": "f.Callbacks.o", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 15621, - "functionName": "f.Callbacks.p.fireWith", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 9832, - "functionName": "e.extend.ready", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14416, - "functionName": "c.addEventListener.C", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171819723.957, - "totalHeapSize": 8244736, - "type": "ParseHTML", - "usedHeapSize": 3819100 - }, - { - "children": [], - "data": {}, - "endTime": 1348171819723.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 20302, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14845, - "functionName": "f.Callbacks.o", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 15621, - "functionName": "f.Callbacks.p.fireWith", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 9832, - "functionName": "e.extend.ready", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14416, - "functionName": "c.addEventListener.C", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171819723.957, - "totalHeapSize": 8244736, - "type": "RecalculateStyles", - "usedHeapSize": 3820552 - }, - { - "children": [], - "data": {}, - "endTime": 1348171819724.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 20302, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14845, - "functionName": "f.Callbacks.o", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 15621, - "functionName": "f.Callbacks.p.fireWith", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 9832, - "functionName": "e.extend.ready", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14416, - "functionName": "c.addEventListener.C", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171819723.957, - "totalHeapSize": 8244736, - "type": "Layout", - "usedHeapSize": 3820776 - }, - { - "children": [], - "data": {}, - "endTime": 1348171819724.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 20420, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14845, - "functionName": "f.Callbacks.o", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 15621, - "functionName": "f.Callbacks.p.fireWith", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 9832, - "functionName": "e.extend.ready", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14416, - "functionName": "c.addEventListener.C", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171819724.957, - "totalHeapSize": 8244736, - "type": "RecalculateStyles", - "usedHeapSize": 3822912 - }, - { - "children": [], - "data": {}, - "endTime": 1348171819724.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 20420, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14845, - "functionName": "f.Callbacks.o", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 15621, - "functionName": "f.Callbacks.p.fireWith", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 9832, - "functionName": "e.extend.ready", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14416, - "functionName": "c.addEventListener.C", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171819724.957, - "totalHeapSize": 8244736, - "type": "Layout", - "usedHeapSize": 3823136 - }, - { - "children": [], - "data": { - "endLine": 0, - "length": 30, - "startLine": 0 - }, - "endTime": 1348171819724.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 20467, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14845, - "functionName": "f.Callbacks.o", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 15621, - "functionName": "f.Callbacks.p.fireWith", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 9832, - "functionName": "e.extend.ready", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14416, - "functionName": "c.addEventListener.C", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171819724.957, - "totalHeapSize": 8244736, - "type": "ParseHTML", - "usedHeapSize": 3824564 - }, - { - "children": [], - "data": { - "endLine": 0, - "length": 1, - "startLine": 0 - }, - "endTime": 1348171819724.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 20467, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14845, - "functionName": "f.Callbacks.o", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 15621, - "functionName": "f.Callbacks.p.fireWith", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 9832, - "functionName": "e.extend.ready", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14416, - "functionName": "c.addEventListener.C", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171819724.957, - "totalHeapSize": 8244736, - "type": "ParseHTML", - "usedHeapSize": 3824788 - }, - { - "children": [], - "data": {}, - "endTime": 1348171819726.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 20521, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14845, - "functionName": "f.Callbacks.o", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 15621, - "functionName": "f.Callbacks.p.fireWith", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 9832, - "functionName": "e.extend.ready", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14416, - "functionName": "c.addEventListener.C", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171819724.957, - "totalHeapSize": 8244736, - "type": "RecalculateStyles", - "usedHeapSize": 3825012 - }, - { - "children": [], - "data": {}, - "endTime": 1348171819726.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 20521, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14845, - "functionName": "f.Callbacks.o", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 15621, - "functionName": "f.Callbacks.p.fireWith", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 9832, - "functionName": "e.extend.ready", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14416, - "functionName": "c.addEventListener.C", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171819726.957, - "totalHeapSize": 8244736, - "type": "Layout", - "usedHeapSize": 3825236 - }, - { - "children": [], - "data": { - "endLine": 0, - "length": 291, - "startLine": 0 - }, - "endTime": 1348171819727.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 20570, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14845, - "functionName": "f.Callbacks.o", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 15621, - "functionName": "f.Callbacks.p.fireWith", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 9832, - "functionName": "e.extend.ready", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14416, - "functionName": "c.addEventListener.C", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171819726.957, - "totalHeapSize": 8244736, - "type": "ParseHTML", - "usedHeapSize": 3826680 - }, - { - "children": [], - "data": { - "endLine": 0, - "length": 1, - "startLine": 0 - }, - "endTime": 1348171819727.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 20570, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14845, - "functionName": "f.Callbacks.o", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 15621, - "functionName": "f.Callbacks.p.fireWith", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 9832, - "functionName": "e.extend.ready", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14416, - "functionName": "c.addEventListener.C", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171819727.957, - "totalHeapSize": 8244736, - "type": "ParseHTML", - "usedHeapSize": 3826904 - }, - { - "children": [], - "data": {}, - "endTime": 1348171819727.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 20662, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14845, - "functionName": "f.Callbacks.o", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 15621, - "functionName": "f.Callbacks.p.fireWith", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 9832, - "functionName": "e.extend.ready", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14416, - "functionName": "c.addEventListener.C", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171819727.957, - "totalHeapSize": 8244736, - "type": "RecalculateStyles", - "usedHeapSize": 3856124 - }, - { - "children": [], - "data": {}, - "endTime": 1348171819727.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 20662, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14845, - "functionName": "f.Callbacks.o", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 15621, - "functionName": "f.Callbacks.p.fireWith", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 9832, - "functionName": "e.extend.ready", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14416, - "functionName": "c.addEventListener.C", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171819727.957, - "totalHeapSize": 8244736, - "type": "Layout", - "usedHeapSize": 3856348 - }, - { - "children": [], - "data": {}, - "endTime": 1348171819727.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 20785, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14845, - "functionName": "f.Callbacks.o", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 15621, - "functionName": "f.Callbacks.p.fireWith", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 9832, - "functionName": "e.extend.ready", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14416, - "functionName": "c.addEventListener.C", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171819727.957, - "totalHeapSize": 8244736, - "type": "RecalculateStyles", - "usedHeapSize": 3858368 - }, - { - "children": [], - "data": {}, - "endTime": 1348171819727.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 20785, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14845, - "functionName": "f.Callbacks.o", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 15621, - "functionName": "f.Callbacks.p.fireWith", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 9832, - "functionName": "e.extend.ready", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14416, - "functionName": "c.addEventListener.C", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171819727.957, - "totalHeapSize": 8244736, - "type": "Layout", - "usedHeapSize": 3858592 - }, - { - "children": [], - "data": {}, - "endTime": 1348171819727.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 20945, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14845, - "functionName": "f.Callbacks.o", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 15621, - "functionName": "f.Callbacks.p.fireWith", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 9832, - "functionName": "e.extend.ready", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14416, - "functionName": "c.addEventListener.C", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171819727.957, - "totalHeapSize": 8244736, - "type": "RecalculateStyles", - "usedHeapSize": 3860144 - }, - { - "children": [], - "data": {}, - "endTime": 1348171819727.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 20945, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14845, - "functionName": "f.Callbacks.o", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 15621, - "functionName": "f.Callbacks.p.fireWith", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 9832, - "functionName": "e.extend.ready", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14416, - "functionName": "c.addEventListener.C", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171819727.957, - "totalHeapSize": 8244736, - "type": "Layout", - "usedHeapSize": 3860368 - } - ], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171819727.957, - "frameId": "2036.1", - "startTime": 1348171819721.957, - "totalHeapSize": 8244736, - "type": "FunctionCall", - "usedHeapSize": 3872796 - } - ], - "data": { - "type": "DOMContentLoaded" - }, - "endTime": 1348171819727.957, - "frameId": "2036.1", - "startTime": 1348171819721.957, - "totalHeapSize": 8244736, - "type": "EventDispatch", - "usedHeapSize": 3872796 - }, - { - "data": {}, - "frameId": "2036.1", - "startTime": 1348171819735.957, - "totalHeapSize": 8244736, - "type": "MarkDOMContent", - "usedHeapSize": 3872796 - }, - { - "data": { - "didFail": false, - "networkTime": 1348171819492.957, - "requestId": "2036.5" - }, - "frameId": "2036.1", - "startTime": 1348171819735.957, - "totalHeapSize": 8244736, - "type": "ResourceFinish", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": {}, - "endTime": 1348171819736.957, - "frameId": "2036.3", - "startTime": 1348171819736.957, - "totalHeapSize": 8244736, - "type": "Layout", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": {}, - "endTime": 1348171819740.957, - "frameId": "2036.1", - "startTime": 1348171819736.957, - "totalHeapSize": 8244736, - "type": "Layout", - "usedHeapSize": 3872796 - }, - { - "data": {}, - "startTime": 1348171819740.957, - "totalHeapSize": 8244736, - "type": "BeginFrame", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "height": 625, - "width": 997, - "x": 0, - "y": 0 - }, - "endTime": 1348171819746.957, - "frameId": "2036.1", - "startTime": 1348171819741.957, - "totalHeapSize": 8244736, - "type": "Paint", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "mimeType": "image/png", - "requestId": "2036.6", - "statusCode": 200 - }, - "endTime": 1348171819748.957, - "frameId": "2036.1", - "startTime": 1348171819748.957, - "totalHeapSize": 8244736, - "type": "ResourceReceiveResponse", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.6" - }, - "endTime": 1348171819750.957, - "frameId": "2036.1", - "startTime": 1348171819750.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "mimeType": "image/png", - "requestId": "2036.9", - "statusCode": 200 - }, - "endTime": 1348171819750.957, - "frameId": "2036.1", - "startTime": 1348171819750.957, - "totalHeapSize": 8244736, - "type": "ResourceReceiveResponse", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.9" - }, - "endTime": 1348171819750.957, - "frameId": "2036.1", - "startTime": 1348171819750.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.9" - }, - "endTime": 1348171819750.957, - "frameId": "2036.1", - "startTime": 1348171819750.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.9" - }, - "endTime": 1348171819750.957, - "frameId": "2036.1", - "startTime": 1348171819750.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "data": { - "didFail": false, - "networkTime": 1348171819750.957, - "requestId": "2036.9" - }, - "frameId": "2036.1", - "startTime": 1348171819750.957, - "totalHeapSize": 8244736, - "type": "ResourceFinish", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "mimeType": "image/png", - "requestId": "2036.7", - "statusCode": 200 - }, - "endTime": 1348171819750.957, - "frameId": "2036.1", - "startTime": 1348171819750.957, - "totalHeapSize": 8244736, - "type": "ResourceReceiveResponse", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "mimeType": "image/jpeg", - "requestId": "2036.10", - "statusCode": 200 - }, - "endTime": 1348171819750.957, - "frameId": "2036.1", - "startTime": 1348171819750.957, - "totalHeapSize": 8244736, - "type": "ResourceReceiveResponse", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.7" - }, - "endTime": 1348171819751.957, - "frameId": "2036.1", - "startTime": 1348171819750.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.10" - }, - "endTime": 1348171819751.957, - "frameId": "2036.1", - "startTime": 1348171819751.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "data": { - "didFail": false, - "networkTime": 1348171819750.957, - "requestId": "2036.10" - }, - "frameId": "2036.1", - "startTime": 1348171819751.957, - "totalHeapSize": 8244736, - "type": "ResourceFinish", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.6" - }, - "endTime": 1348171819751.957, - "frameId": "2036.1", - "startTime": 1348171819751.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "data": { - "didFail": false, - "networkTime": 1348171819748.957, - "requestId": "2036.6" - }, - "frameId": "2036.1", - "startTime": 1348171819751.957, - "totalHeapSize": 8244736, - "type": "ResourceFinish", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.7" - }, - "endTime": 1348171819751.957, - "frameId": "2036.1", - "startTime": 1348171819751.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.7" - }, - "endTime": 1348171819759.957, - "frameId": "2036.1", - "startTime": 1348171819751.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.7" - }, - "endTime": 1348171819759.957, - "frameId": "2036.1", - "startTime": 1348171819759.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.7" - }, - "endTime": 1348171819759.957, - "frameId": "2036.1", - "startTime": 1348171819759.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.7" - }, - "endTime": 1348171819759.957, - "frameId": "2036.1", - "startTime": 1348171819759.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.7" - }, - "endTime": 1348171819761.957, - "frameId": "2036.1", - "startTime": 1348171819760.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.7" - }, - "endTime": 1348171819761.957, - "frameId": "2036.1", - "startTime": 1348171819761.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "data": {}, - "startTime": 1348171819761.957, - "totalHeapSize": 8244736, - "type": "BeginFrame", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "height": 625, - "width": 997, - "x": 0, - "y": 0 - }, - "endTime": 1348171819777.957, - "frameId": "2036.1", - "startTime": 1348171819763.957, - "totalHeapSize": 8244736, - "type": "Paint", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "mimeType": "image/png", - "requestId": "2036.12", - "statusCode": 200 - }, - "endTime": 1348171819779.957, - "frameId": "2036.1", - "startTime": 1348171819779.957, - "totalHeapSize": 8244736, - "type": "ResourceReceiveResponse", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "mimeType": "image/jpeg", - "requestId": "2036.11", - "statusCode": 200 - }, - "endTime": 1348171819780.957, - "frameId": "2036.1", - "startTime": 1348171819780.957, - "totalHeapSize": 8244736, - "type": "ResourceReceiveResponse", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.12" - }, - "endTime": 1348171819780.957, - "frameId": "2036.1", - "startTime": 1348171819780.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.11" - }, - "endTime": 1348171819780.957, - "frameId": "2036.1", - "startTime": 1348171819780.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.12" - }, - "endTime": 1348171819780.957, - "frameId": "2036.1", - "startTime": 1348171819780.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "data": { - "didFail": false, - "networkTime": 1348171819779.957, - "requestId": "2036.12" - }, - "frameId": "2036.1", - "startTime": 1348171819780.957, - "totalHeapSize": 8244736, - "type": "ResourceFinish", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.11" - }, - "endTime": 1348171819780.957, - "frameId": "2036.1", - "startTime": 1348171819780.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "data": { - "didFail": false, - "networkTime": 1348171819780.957, - "requestId": "2036.11" - }, - "frameId": "2036.1", - "startTime": 1348171819780.957, - "totalHeapSize": 8244736, - "type": "ResourceFinish", - "usedHeapSize": 3872796 - }, - { - "data": {}, - "startTime": 1348171819780.957, - "totalHeapSize": 8244736, - "type": "BeginFrame", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "height": 48, - "width": 48, - "x": 408, - "y": 387 - }, - "endTime": 1348171819780.957, - "frameId": "2036.1", - "startTime": 1348171819780.957, - "totalHeapSize": 8244736, - "type": "Paint", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "height": 48, - "width": 48, - "x": 408, - "y": 276 - }, - "endTime": 1348171819780.957, - "frameId": "2036.1", - "startTime": 1348171819780.957, - "totalHeapSize": 8244736, - "type": "Paint", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "mimeType": "image/jpeg", - "requestId": "2036.13", - "statusCode": 200 - }, - "endTime": 1348171819787.957, - "frameId": "2036.1", - "startTime": 1348171819787.957, - "totalHeapSize": 8244736, - "type": "ResourceReceiveResponse", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.13" - }, - "endTime": 1348171819788.957, - "frameId": "2036.1", - "startTime": 1348171819788.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.13" - }, - "endTime": 1348171819788.957, - "frameId": "2036.1", - "startTime": 1348171819788.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "data": { - "didFail": false, - "networkTime": 1348171819787.957, - "requestId": "2036.13" - }, - "frameId": "2036.1", - "startTime": 1348171819788.957, - "totalHeapSize": 8244736, - "type": "ResourceFinish", - "usedHeapSize": 3872796 - }, - { - "data": {}, - "startTime": 1348171819788.957, - "totalHeapSize": 8244736, - "type": "BeginFrame", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "height": 48, - "width": 48, - "x": 408, - "y": 480 - }, - "endTime": 1348171819789.957, - "frameId": "2036.1", - "startTime": 1348171819788.957, - "totalHeapSize": 8244736, - "type": "Paint", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "height": 34, - "width": 48, - "x": 408, - "y": 591 - }, - "endTime": 1348171819789.957, - "frameId": "2036.1", - "startTime": 1348171819789.957, - "totalHeapSize": 8244736, - "type": "Paint", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "mimeType": "image/jpeg", - "requestId": "2036.14", - "statusCode": 200 - }, - "endTime": 1348171819810.957, - "frameId": "2036.1", - "startTime": 1348171819810.957, - "totalHeapSize": 8244736, - "type": "ResourceReceiveResponse", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "mimeType": "image/png", - "requestId": "2036.15", - "statusCode": 200 - }, - "endTime": 1348171819810.957, - "frameId": "2036.1", - "startTime": 1348171819810.957, - "totalHeapSize": 8244736, - "type": "ResourceReceiveResponse", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.14" - }, - "endTime": 1348171819810.957, - "frameId": "2036.1", - "startTime": 1348171819810.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.15" - }, - "endTime": 1348171819810.957, - "frameId": "2036.1", - "startTime": 1348171819810.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "data": { - "didFail": false, - "networkTime": 1348171819810.957, - "requestId": "2036.15" - }, - "frameId": "2036.1", - "startTime": 1348171819810.957, - "totalHeapSize": 8244736, - "type": "ResourceFinish", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.14" - }, - "endTime": 1348171819820.957, - "frameId": "2036.1", - "startTime": 1348171819820.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "data": { - "didFail": false, - "networkTime": 1348171819812.957, - "requestId": "2036.14" - }, - "frameId": "2036.1", - "startTime": 1348171819820.957, - "totalHeapSize": 8244736, - "type": "ResourceFinish", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "mimeType": "image/jpeg", - "requestId": "2036.16", - "statusCode": 200 - }, - "endTime": 1348171819900.957, - "frameId": "2036.1", - "startTime": 1348171819900.957, - "totalHeapSize": 8244736, - "type": "ResourceReceiveResponse", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "mimeType": "application/javascript", - "requestId": "2036.24", - "statusCode": 200 - }, - "endTime": 1348171819900.957, - "frameId": "2036.1", - "startTime": 1348171819900.957, - "totalHeapSize": 8244736, - "type": "ResourceReceiveResponse", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.16" - }, - "endTime": 1348171819900.957, - "frameId": "2036.1", - "startTime": 1348171819900.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "data": { - "didFail": false, - "networkTime": 1348171819900.957, - "requestId": "2036.16" - }, - "frameId": "2036.1", - "startTime": 1348171819900.957, - "totalHeapSize": 8244736, - "type": "ResourceFinish", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.24" - }, - "endTime": 1348171819900.957, - "frameId": "2036.1", - "startTime": 1348171819900.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "mimeType": "image/png", - "requestId": "2036.18", - "statusCode": 200 - }, - "endTime": 1348171819959.957, - "frameId": "2036.1", - "startTime": 1348171819959.957, - "totalHeapSize": 8244736, - "type": "ResourceReceiveResponse", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.18" - }, - "endTime": 1348171819959.957, - "frameId": "2036.1", - "startTime": 1348171819959.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "mimeType": "image/jpeg", - "requestId": "2036.17", - "statusCode": 200 - }, - "endTime": 1348171819985.957, - "frameId": "2036.1", - "startTime": 1348171819985.957, - "totalHeapSize": 8244736, - "type": "ResourceReceiveResponse", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.17" - }, - "endTime": 1348171819985.957, - "frameId": "2036.1", - "startTime": 1348171819985.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.17" - }, - "endTime": 1348171819985.957, - "frameId": "2036.1", - "startTime": 1348171819985.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "mimeType": "image/gif", - "requestId": "2036.19", - "statusCode": 200 - }, - "endTime": 1348171819989.957, - "frameId": "2036.1", - "startTime": 1348171819989.957, - "totalHeapSize": 8244736, - "type": "ResourceReceiveResponse", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.19" - }, - "endTime": 1348171819989.957, - "frameId": "2036.1", - "startTime": 1348171819989.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.18" - }, - "endTime": 1348171819995.957, - "frameId": "2036.1", - "startTime": 1348171819995.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.24" - }, - "endTime": 1348171820005.957, - "frameId": "2036.1", - "startTime": 1348171820005.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "mimeType": "image/png", - "requestId": "2036.21", - "statusCode": 200 - }, - "endTime": 1348171820031.957, - "frameId": "2036.1", - "startTime": 1348171820031.957, - "totalHeapSize": 8244736, - "type": "ResourceReceiveResponse", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.21" - }, - "endTime": 1348171820031.957, - "frameId": "2036.1", - "startTime": 1348171820031.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "data": { - "didFail": false, - "networkTime": 1348171820031.957, - "requestId": "2036.21" - }, - "frameId": "2036.1", - "startTime": 1348171820031.957, - "totalHeapSize": 8244736, - "type": "ResourceFinish", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.18" - }, - "endTime": 1348171820031.957, - "frameId": "2036.1", - "startTime": 1348171820031.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "data": { - "didFail": false, - "networkTime": 1348171820025.957, - "requestId": "2036.18" - }, - "frameId": "2036.1", - "startTime": 1348171820031.957, - "totalHeapSize": 8244736, - "type": "ResourceFinish", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.17" - }, - "endTime": 1348171820048.957, - "frameId": "2036.1", - "startTime": 1348171820048.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "data": { - "didFail": false, - "networkTime": 1348171820042.957, - "requestId": "2036.17" - }, - "frameId": "2036.1", - "startTime": 1348171820050.957, - "totalHeapSize": 8244736, - "type": "ResourceFinish", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.19" - }, - "endTime": 1348171820056.957, - "frameId": "2036.1", - "startTime": 1348171820056.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "data": { - "didFail": false, - "networkTime": 1348171820050.957, - "requestId": "2036.19" - }, - "frameId": "2036.1", - "startTime": 1348171820056.957, - "totalHeapSize": 8244736, - "type": "ResourceFinish", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "mimeType": "image/gif", - "requestId": "2036.23", - "statusCode": 200 - }, - "endTime": 1348171820159.957, - "frameId": "2036.1", - "startTime": 1348171820159.957, - "totalHeapSize": 8244736, - "type": "ResourceReceiveResponse", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "mimeType": "image/gif", - "requestId": "2036.22", - "statusCode": 200 - }, - "endTime": 1348171820160.957, - "frameId": "2036.1", - "startTime": 1348171820160.957, - "totalHeapSize": 8244736, - "type": "ResourceReceiveResponse", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.23" - }, - "endTime": 1348171820160.957, - "frameId": "2036.1", - "startTime": 1348171820160.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "data": { - "didFail": false, - "networkTime": 1348171820158.957, - "requestId": "2036.23" - }, - "frameId": "2036.1", - "startTime": 1348171820160.957, - "totalHeapSize": 8244736, - "type": "ResourceFinish", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.22" - }, - "endTime": 1348171820160.957, - "frameId": "2036.1", - "startTime": 1348171820160.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "data": {}, - "startTime": 1348171820160.957, - "totalHeapSize": 8244736, - "type": "BeginFrame", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "height": 625, - "width": 997, - "x": 0, - "y": 0 - }, - "endTime": 1348171820173.957, - "frameId": "2036.1", - "startTime": 1348171820161.957, - "totalHeapSize": 8244736, - "type": "Paint", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.22" - }, - "endTime": 1348171820204.957, - "frameId": "2036.1", - "startTime": 1348171820204.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "data": { - "didFail": false, - "networkTime": 1348171820198.957, - "requestId": "2036.22" - }, - "frameId": "2036.1", - "startTime": 1348171820204.957, - "totalHeapSize": 8244736, - "type": "ResourceFinish", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.7" - }, - "endTime": 1348171820214.957, - "frameId": "2036.1", - "startTime": 1348171820214.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.7" - }, - "endTime": 1348171820215.957, - "frameId": "2036.1", - "startTime": 1348171820215.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "data": {}, - "startTime": 1348171820215.957, - "totalHeapSize": 8244736, - "type": "BeginFrame", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "height": 607, - "width": 747, - "x": 80, - "y": 9 - }, - "endTime": 1348171820232.957, - "frameId": "2036.1", - "startTime": 1348171820216.957, - "totalHeapSize": 8244736, - "type": "Paint", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.24" - }, - "endTime": 1348171820252.957, - "frameId": "2036.1", - "startTime": 1348171820252.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.24" - }, - "endTime": 1348171820252.957, - "frameId": "2036.1", - "startTime": 1348171820252.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.24" - }, - "endTime": 1348171820252.957, - "frameId": "2036.1", - "startTime": 1348171820252.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.7" - }, - "endTime": 1348171820306.957, - "frameId": "2036.1", - "startTime": 1348171820306.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "data": {}, - "startTime": 1348171820306.957, - "totalHeapSize": 8244736, - "type": "BeginFrame", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "height": 607, - "width": 747, - "x": 80, - "y": 9 - }, - "endTime": 1348171820317.957, - "frameId": "2036.1", - "startTime": 1348171820307.957, - "totalHeapSize": 8244736, - "type": "Paint", - "usedHeapSize": 3872796 - }, - { - "children": [], - "data": { - "requestId": "2036.24" - }, - "endTime": 1348171820319.957, - "frameId": "2036.1", - "startTime": 1348171820319.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3872796 - }, - { - "data": { - "didFail": false, - "networkTime": 1348171820311.957, - "requestId": "2036.24" - }, - "frameId": "2036.1", - "startTime": 1348171820319.957, - "totalHeapSize": 8244736, - "type": "ResourceFinish", - "usedHeapSize": 3872796 - }, - { - "data": {}, - "startTime": 1348171820319.957, - "totalHeapSize": 8244736, - "type": "BeginFrame", - "usedHeapSize": 3872796 - }, - { - "children": [ - { - "data": { - "usedHeapSizeDelta": 445592 - }, - "endTime": 1348171820324.957, - "startTime": 1348171820322.957, - "totalHeapSize": 8244736, - "type": "GCEvent", - "usedHeapSize": 3464784 - } - ], - "data": { - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - "endTime": 1348171820325.957, - "frameId": "2036.1", - "startTime": 1348171820319.957, - "totalHeapSize": 8244736, - "type": "EvaluateScript", - "usedHeapSize": 3464784 - }, - { - "data": { - "requestId": "2036.25", - "requestMethod": "GET", - "url": "http://a0.twimg.com/c/swift/en/bundle/timeline.97b730c52dbf7c6aebe75ee2a31e060da3c4e4b8.js" - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 12982, - "functionName": "A.scriptTagTransport", - "lineNumber": 9, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 11652, - "functionName": "z.start", - "lineNumber": 9, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14146, - "functionName": "C.start", - "lineNumber": 9, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 11312, - "functionName": "z.then", - "lineNumber": 9, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 13508, - "functionName": "B.start", - "lineNumber": 9, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171820332.957, - "totalHeapSize": 8244736, - "type": "ResourceSendRequest", - "usedHeapSize": 3727012 - }, - { - "children": [ - { - "children": [ - { - "data": { - "url": "http://a0.twimg.com/c/swift/en/bundle/timeline.97b730c52dbf7c6aebe75ee2a31e060da3c4e4b8.js" - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 12982, - "functionName": "A.scriptTagTransport", - "lineNumber": 9, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 11652, - "functionName": "z.start", - "lineNumber": 9, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14146, - "functionName": "C.start", - "lineNumber": 9, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 11312, - "functionName": "z.then", - "lineNumber": 9, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 13508, - "functionName": "B.start", - "lineNumber": 9, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171820333.957, - "totalHeapSize": 8244736, - "type": "ScheduleResourceRequest", - "usedHeapSize": 3730148 - } - ], - "data": { - "scriptLine": 9, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171820333.957, - "frameId": "2036.1", - "startTime": 1348171820325.957, - "totalHeapSize": 8244736, - "type": "FunctionCall", - "usedHeapSize": 3734144 - } - ], - "data": { - "type": "load" - }, - "endTime": 1348171820333.957, - "frameId": "2036.1", - "startTime": 1348171820325.957, - "totalHeapSize": 8244736, - "type": "EventDispatch", - "usedHeapSize": 3734144 - }, - { - "data": {}, - "startTime": 1348171820335.957, - "totalHeapSize": 8244736, - "type": "BeginFrame", - "usedHeapSize": 3734144 - }, - { - "children": [], - "data": {}, - "endTime": 1348171820335.957, - "frameId": "2036.1", - "startTime": 1348171820335.957, - "totalHeapSize": 8244736, - "type": "RecalculateStyles", - "usedHeapSize": 3734144 - }, - { - "children": [], - "data": { - "requestId": "2036.7" - }, - "endTime": 1348171820387.957, - "frameId": "2036.1", - "startTime": 1348171820387.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3734144 - }, - { - "data": { - "didFail": false, - "networkTime": 1348171820379.957, - "requestId": "2036.7" - }, - "frameId": "2036.1", - "startTime": 1348171820387.957, - "totalHeapSize": 8244736, - "type": "ResourceFinish", - "usedHeapSize": 3734144 - }, - { - "data": {}, - "startTime": 1348171820387.957, - "totalHeapSize": 8244736, - "type": "BeginFrame", - "usedHeapSize": 3734144 - }, - { - "children": [], - "data": { - "height": 607, - "width": 747, - "x": 80, - "y": 9 - }, - "endTime": 1348171820404.957, - "frameId": "2036.1", - "startTime": 1348171820387.957, - "totalHeapSize": 8244736, - "type": "Paint", - "usedHeapSize": 3734144 - }, - { - "children": [], - "data": { - "mimeType": "application/javascript", - "requestId": "2036.25", - "statusCode": 200 - }, - "endTime": 1348171820465.957, - "frameId": "2036.1", - "startTime": 1348171820465.957, - "totalHeapSize": 8244736, - "type": "ResourceReceiveResponse", - "usedHeapSize": 3734144 - }, - { - "children": [], - "data": { - "requestId": "2036.25" - }, - "endTime": 1348171820465.957, - "frameId": "2036.1", - "startTime": 1348171820465.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3734144 - }, - { - "children": [], - "data": { - "requestId": "2036.25" - }, - "endTime": 1348171820465.957, - "frameId": "2036.1", - "startTime": 1348171820465.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3734144 - }, - { - "children": [], - "data": { - "requestId": "2036.25" - }, - "endTime": 1348171820484.957, - "frameId": "2036.1", - "startTime": 1348171820484.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3734144 - }, - { - "children": [], - "data": { - "requestId": "2036.25" - }, - "endTime": 1348171820490.957, - "frameId": "2036.1", - "startTime": 1348171820490.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3734144 - }, - { - "children": [], - "data": { - "requestId": "2036.25" - }, - "endTime": 1348171820507.957, - "frameId": "2036.1", - "startTime": 1348171820506.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3734144 - }, - { - "children": [], - "data": { - "requestId": "2036.25" - }, - "endTime": 1348171820513.957, - "frameId": "2036.1", - "startTime": 1348171820513.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3734144 - }, - { - "children": [], - "data": { - "requestId": "2036.25" - }, - "endTime": 1348171820520.957, - "frameId": "2036.1", - "startTime": 1348171820520.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3734144 - }, - { - "children": [], - "data": { - "requestId": "2036.25" - }, - "endTime": 1348171820558.957, - "frameId": "2036.1", - "startTime": 1348171820558.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3734144 - }, - { - "children": [], - "data": { - "requestId": "2036.25" - }, - "endTime": 1348171820564.957, - "frameId": "2036.1", - "startTime": 1348171820564.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3734144 - }, - { - "children": [], - "data": { - "requestId": "2036.25" - }, - "endTime": 1348171820587.957, - "frameId": "2036.1", - "startTime": 1348171820587.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3734144 - }, - { - "children": [], - "data": { - "requestId": "2036.25" - }, - "endTime": 1348171820595.957, - "frameId": "2036.1", - "startTime": 1348171820595.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3734144 - }, - { - "children": [], - "data": { - "requestId": "2036.25" - }, - "endTime": 1348171820602.957, - "frameId": "2036.1", - "startTime": 1348171820602.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3734144 - }, - { - "children": [], - "data": { - "requestId": "2036.25" - }, - "endTime": 1348171820609.957, - "frameId": "2036.1", - "startTime": 1348171820609.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3734144 - }, - { - "children": [], - "data": { - "requestId": "2036.25" - }, - "endTime": 1348171820632.957, - "frameId": "2036.1", - "startTime": 1348171820632.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3734144 - }, - { - "children": [], - "data": { - "requestId": "2036.25" - }, - "endTime": 1348171820662.957, - "frameId": "2036.1", - "startTime": 1348171820662.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3734144 - }, - { - "children": [], - "data": { - "requestId": "2036.25" - }, - "endTime": 1348171820668.957, - "frameId": "2036.1", - "startTime": 1348171820668.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3734144 - }, - { - "children": [], - "data": { - "requestId": "2036.25" - }, - "endTime": 1348171820683.957, - "frameId": "2036.1", - "startTime": 1348171820683.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3734144 - }, - { - "children": [], - "data": { - "requestId": "2036.25" - }, - "endTime": 1348171820699.957, - "frameId": "2036.1", - "startTime": 1348171820699.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3734144 - }, - { - "children": [], - "data": { - "requestId": "2036.25" - }, - "endTime": 1348171820714.957, - "frameId": "2036.1", - "startTime": 1348171820714.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3734144 - }, - { - "children": [], - "data": { - "requestId": "2036.25" - }, - "endTime": 1348171820760.957, - "frameId": "2036.1", - "startTime": 1348171820760.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3734144 - }, - { - "children": [], - "data": { - "requestId": "2036.25" - }, - "endTime": 1348171820760.957, - "frameId": "2036.1", - "startTime": 1348171820760.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3734144 - }, - { - "children": [], - "data": { - "requestId": "2036.25" - }, - "endTime": 1348171820773.957, - "frameId": "2036.1", - "startTime": 1348171820773.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3734144 - }, - { - "children": [], - "data": { - "requestId": "2036.25" - }, - "endTime": 1348171820797.957, - "frameId": "2036.1", - "startTime": 1348171820797.957, - "totalHeapSize": 8244736, - "type": "ResourceReceivedData", - "usedHeapSize": 3734144 - }, - { - "data": { - "didFail": false, - "networkTime": 1348171820789.957, - "requestId": "2036.25" - }, - "frameId": "2036.1", - "startTime": 1348171820797.957, - "totalHeapSize": 8244736, - "type": "ResourceFinish", - "usedHeapSize": 3734144 - }, - { - "children": [], - "data": { - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/timeline.97b730c52dbf7c6aebe75ee2a31e060da3c4e4b8.js" - }, - "endTime": 1348171820819.957, - "frameId": "2036.1", - "startTime": 1348171820799.957, - "totalHeapSize": 8244736, - "type": "EvaluateScript", - "usedHeapSize": 3838224 - }, - { - "data": { - "requestId": "2036.26", - "requestMethod": "GET", - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 12982, - "functionName": "A.scriptTagTransport", - "lineNumber": 9, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 11652, - "functionName": "z.start", - "lineNumber": 9, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14146, - "functionName": "C.start", - "lineNumber": 9, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 11312, - "functionName": "z.then", - "lineNumber": 9, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 13508, - "functionName": "B.start", - "lineNumber": 9, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171820852.957, - "totalHeapSize": 11345408, - "type": "ResourceSendRequest", - "usedHeapSize": 4923504 - }, - { - "children": [ - { - "children": [ - { - "data": { - "usedHeapSizeDelta": 429316 - }, - "endTime": 1348171820845.957, - "stackTrace": [ - { - "columnNumber": 12982, - "functionName": "A.scriptTagTransport", - "lineNumber": 9, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 11652, - "functionName": "z.start", - "lineNumber": 9, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 14146, - "functionName": "C.start", - "lineNumber": 9, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 11312, - "functionName": "z.then", - "lineNumber": 9, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 13508, - "functionName": "B.start", - "lineNumber": 9, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171820844.957, - "totalHeapSize": 11345408, - "type": "GCEvent", - "usedHeapSize": 4923280 - }, - { - "data": { - "usedHeapSizeDelta": 894636 - }, - "endTime": 1348171820890.957, - "startTime": 1348171820888.957, - "totalHeapSize": 12361088, - "type": "GCEvent", - "usedHeapSize": 6350276 - } - ], - "data": { - "scriptLine": 9, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171820895.957, - "frameId": "2036.1", - "startTime": 1348171820825.957, - "totalHeapSize": 12361088, - "type": "FunctionCall", - "usedHeapSize": 6350276 - } - ], - "data": { - "type": "load" - }, - "endTime": 1348171820895.957, - "frameId": "2036.1", - "startTime": 1348171820825.957, - "totalHeapSize": 12361088, - "type": "EventDispatch", - "usedHeapSize": 6350276 - }, - { - "children": [], - "data": {}, - "endTime": 1348171820899.957, - "frameId": "2036.1", - "startTime": 1348171820899.957, - "totalHeapSize": 12361088, - "type": "RecalculateStyles", - "usedHeapSize": 6350276 - }, - { - "children": [], - "data": { - "mimeType": "application/javascript", - "requestId": "2036.26", - "statusCode": 200 - }, - "endTime": 1348171820985.957, - "frameId": "2036.1", - "startTime": 1348171820985.957, - "totalHeapSize": 12361088, - "type": "ResourceReceiveResponse", - "usedHeapSize": 6350276 - }, - { - "children": [], - "data": { - "requestId": "2036.26" - }, - "endTime": 1348171820985.957, - "frameId": "2036.1", - "startTime": 1348171820985.957, - "totalHeapSize": 12361088, - "type": "ResourceReceivedData", - "usedHeapSize": 6350276 - }, - { - "children": [], - "data": { - "requestId": "2036.26" - }, - "endTime": 1348171820985.957, - "frameId": "2036.1", - "startTime": 1348171820985.957, - "totalHeapSize": 12361088, - "type": "ResourceReceivedData", - "usedHeapSize": 6350276 - }, - { - "children": [], - "data": { - "requestId": "2036.26" - }, - "endTime": 1348171820998.957, - "frameId": "2036.1", - "startTime": 1348171820998.957, - "totalHeapSize": 12361088, - "type": "ResourceReceivedData", - "usedHeapSize": 6350276 - }, - { - "children": [], - "data": { - "requestId": "2036.26" - }, - "endTime": 1348171821013.957, - "frameId": "2036.1", - "startTime": 1348171821013.957, - "totalHeapSize": 12361088, - "type": "ResourceReceivedData", - "usedHeapSize": 6350276 - }, - { - "children": [], - "data": { - "requestId": "2036.26" - }, - "endTime": 1348171821027.957, - "frameId": "2036.1", - "startTime": 1348171821027.957, - "totalHeapSize": 12361088, - "type": "ResourceReceivedData", - "usedHeapSize": 6350276 - }, - { - "children": [], - "data": { - "requestId": "2036.26" - }, - "endTime": 1348171821041.957, - "frameId": "2036.1", - "startTime": 1348171821041.957, - "totalHeapSize": 12361088, - "type": "ResourceReceivedData", - "usedHeapSize": 6350276 - }, - { - "children": [], - "data": { - "requestId": "2036.26" - }, - "endTime": 1348171821045.957, - "frameId": "2036.1", - "startTime": 1348171821045.957, - "totalHeapSize": 12361088, - "type": "ResourceReceivedData", - "usedHeapSize": 6350276 - }, - { - "children": [], - "data": { - "requestId": "2036.26" - }, - "endTime": 1348171821053.957, - "frameId": "2036.1", - "startTime": 1348171821053.957, - "totalHeapSize": 12361088, - "type": "ResourceReceivedData", - "usedHeapSize": 6350276 - }, - { - "children": [], - "data": { - "requestId": "2036.26" - }, - "endTime": 1348171821068.957, - "frameId": "2036.1", - "startTime": 1348171821068.957, - "totalHeapSize": 12361088, - "type": "ResourceReceivedData", - "usedHeapSize": 6350276 - }, - { - "children": [], - "data": { - "requestId": "2036.26" - }, - "endTime": 1348171821075.957, - "frameId": "2036.1", - "startTime": 1348171821075.957, - "totalHeapSize": 12361088, - "type": "ResourceReceivedData", - "usedHeapSize": 6350276 - }, - { - "children": [], - "data": { - "requestId": "2036.26" - }, - "endTime": 1348171821090.957, - "frameId": "2036.1", - "startTime": 1348171821090.957, - "totalHeapSize": 12361088, - "type": "ResourceReceivedData", - "usedHeapSize": 6350276 - }, - { - "children": [], - "data": { - "requestId": "2036.26" - }, - "endTime": 1348171821097.957, - "frameId": "2036.1", - "startTime": 1348171821097.957, - "totalHeapSize": 12361088, - "type": "ResourceReceivedData", - "usedHeapSize": 6350276 - }, - { - "children": [], - "data": { - "requestId": "2036.26" - }, - "endTime": 1348171821104.957, - "frameId": "2036.1", - "startTime": 1348171821104.957, - "totalHeapSize": 12361088, - "type": "ResourceReceivedData", - "usedHeapSize": 6350276 - }, - { - "children": [], - "data": { - "requestId": "2036.26" - }, - "endTime": 1348171821120.957, - "frameId": "2036.1", - "startTime": 1348171821120.957, - "totalHeapSize": 12361088, - "type": "ResourceReceivedData", - "usedHeapSize": 6350276 - }, - { - "data": { - "didFail": false, - "networkTime": 1348171821113.957, - "requestId": "2036.26" - }, - "frameId": "2036.1", - "startTime": 1348171821120.957, - "totalHeapSize": 12361088, - "type": "ResourceFinish", - "usedHeapSize": 6350276 - }, - { - "children": [], - "data": { - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - "endTime": 1348171821123.957, - "frameId": "2036.1", - "startTime": 1348171821120.957, - "totalHeapSize": 12361088, - "type": "EvaluateScript", - "usedHeapSize": 6364916 - }, - { - "data": { - "requestId": "2036.27", - "requestMethod": "GET", - "url": "http://twitpic.com/show/mini/atvrv0" - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 28646, - "functionName": "f.extend.attr", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 13440, - "functionName": "e.extend.access", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 25195, - "functionName": "f.fn.extend.attr", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 236426, - "functionName": "loadThumb", - "lineNumber": 11, - "url": "http://a0.twimg.com/c/swift/en/bundle/timeline.97b730c52dbf7c6aebe75ee2a31e060da3c4e4b8.js" - }, - { - "columnNumber": 235768, - "functionName": "resolveThumbCallback", - "lineNumber": 11, - "url": "http://a0.twimg.com/c/swift/en/bundle/timeline.97b730c52dbf7c6aebe75ee2a31e060da3c4e4b8.js" - } - ], - "startTime": 1348171821294.957, - "totalHeapSize": 19590272, - "type": "ResourceSendRequest", - "usedHeapSize": 11635996 - }, - { - "data": { - "requestId": "2036.28", - "requestMethod": "GET", - "url": "http://pbs.twimg.com/media/A2j-gCvCIAEO7MP.png:thumb" - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 28646, - "functionName": "f.extend.attr", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 13440, - "functionName": "e.extend.access", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 25195, - "functionName": "f.fn.extend.attr", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 236426, - "functionName": "loadThumb", - "lineNumber": 11, - "url": "http://a0.twimg.com/c/swift/en/bundle/timeline.97b730c52dbf7c6aebe75ee2a31e060da3c4e4b8.js" - }, - { - "columnNumber": 235768, - "functionName": "resolveThumbCallback", - "lineNumber": 11, - "url": "http://a0.twimg.com/c/swift/en/bundle/timeline.97b730c52dbf7c6aebe75ee2a31e060da3c4e4b8.js" - } - ], - "startTime": 1348171821299.957, - "totalHeapSize": 19590272, - "type": "ResourceSendRequest", - "usedHeapSize": 11647184 - }, - { - "data": { - "requestId": "2036.29", - "requestMethod": "GET", - "url": "about:blank" - }, - "frameId": "2036.5", - "stackTrace": [ - { - "columnNumber": 2034, - "functionName": "O", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 2128, - "functionName": "P", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 10720, - "functionName": "n.stack.PostMessageTransport.e.onDOMReady", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 416, - "functionName": "D", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 10887, - "functionName": "n.stack.PostMessageTransport.e.init", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - } - ], - "startTime": 1348171821311.957, - "totalHeapSize": 19590272, - "type": "ResourceSendRequest", - "usedHeapSize": 11727276 - }, - { - "data": { - "requestId": "2036.30", - "requestMethod": "GET", - "url": "about:blank" - }, - "frameId": "2036.7", - "stackTrace": [ - { - "columnNumber": 2847, - "functionName": "P", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 10720, - "functionName": "n.stack.PostMessageTransport.e.onDOMReady", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 416, - "functionName": "D", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 10887, - "functionName": "n.stack.PostMessageTransport.e.init", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 15903, - "functionName": "n.stack.QueueBehavior.b.init", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - } - ], - "startTime": 1348171821330.957, - "totalHeapSize": 20605952, - "type": "ResourceSendRequest", - "usedHeapSize": 10515552 - }, - { - "data": { - "requestId": "2036.31", - "requestMethod": "GET", - "url": "http://pbs.twimg.com/media/AzbObgECUAAwUPJ.jpg:thumb" - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 28646, - "functionName": "f.extend.attr", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 13440, - "functionName": "e.extend.access", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 25195, - "functionName": "f.fn.extend.attr", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 236426, - "functionName": "loadThumb", - "lineNumber": 11, - "url": "http://a0.twimg.com/c/swift/en/bundle/timeline.97b730c52dbf7c6aebe75ee2a31e060da3c4e4b8.js" - }, - { - "columnNumber": 235768, - "functionName": "resolveThumbCallback", - "lineNumber": 11, - "url": "http://a0.twimg.com/c/swift/en/bundle/timeline.97b730c52dbf7c6aebe75ee2a31e060da3c4e4b8.js" - } - ], - "startTime": 1348171821341.957, - "totalHeapSize": 20605952, - "type": "ResourceSendRequest", - "usedHeapSize": 10533396 - }, - { - "data": { - "requestId": "2036.32", - "requestMethod": "GET", - "url": "http://www.google-analytics.com/ga.js" - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 50411, - "functionName": "initGoogle", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 36767, - "functionName": "f.event.dispatch", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 32738, - "functionName": "f.event.add.i.handle.j", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 35448, - "functionName": "f.event.trigger", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 42927, - "functionName": "f.fn.extend.trigger", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821431.957, - "totalHeapSize": 20605952, - "type": "ResourceSendRequest", - "usedHeapSize": 12861848 - }, - { - "children": [ - { - "children": [ - { - "data": { - "usedHeapSizeDelta": 2540564 - }, - "endTime": 1348171821168.957, - "stackTrace": [ - { - "columnNumber": 9337, - "functionName": "e.extend.e.fn.extend", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 454, - "functionName": "d.merge", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 10262, - "functionName": "f", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 9853, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 11999, - "functionName": "e.extend.each", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821151.957, - "totalHeapSize": 17571072, - "type": "GCEvent", - "usedHeapSize": 9526784 - }, - { - "data": { - "usedHeapSizeDelta": 741364 - }, - "endTime": 1348171821203.957, - "stackTrace": [ - { - "columnNumber": 9337, - "functionName": "e.extend.e.fn.extend", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 454, - "functionName": "d.merge", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 10262, - "functionName": "f", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 9853, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 11999, - "functionName": "e.extend.each", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821199.957, - "totalHeapSize": 17571072, - "type": "GCEvent", - "usedHeapSize": 9527008 - }, - { - "children": [], - "data": {}, - "endTime": 1348171821233.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 9337, - "functionName": "e.extend.e.fn.extend", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 454, - "functionName": "d.merge", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 10262, - "functionName": "f", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 9853, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 11999, - "functionName": "e.extend.each", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821233.957, - "totalHeapSize": 17571072, - "type": "RecalculateStyles", - "usedHeapSize": 9527232 - }, - { - "children": [], - "data": {}, - "endTime": 1348171821233.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 9337, - "functionName": "e.extend.e.fn.extend", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 454, - "functionName": "d.merge", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 10262, - "functionName": "f", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 9853, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 11999, - "functionName": "e.extend.each", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821233.957, - "totalHeapSize": 17571072, - "type": "Layout", - "usedHeapSize": 9527456 - }, - { - "children": [], - "data": {}, - "endTime": 1348171821239.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 28753, - "functionName": "c.defaultView.c.defaultView.getComputedStyle.Db", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 27517, - "functionName": "f.extend.css", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 39420, - "functionName": "f.fn.extend.hide", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 112717, - "functionName": "", - "lineNumber": 11, - "url": "http://a0.twimg.com/c/swift/en/bundle/timeline.97b730c52dbf7c6aebe75ee2a31e060da3c4e4b8.js" - }, - { - "columnNumber": 7469, - "functionName": "c.after", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - } - ], - "startTime": 1348171821239.957, - "totalHeapSize": 17571072, - "type": "RecalculateStyles", - "usedHeapSize": 9808448 - }, - { - "children": [], - "data": {}, - "endTime": 1348171821241.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 9337, - "functionName": "e.extend.e.fn.extend", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 454, - "functionName": "d.merge", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 10262, - "functionName": "f", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 9853, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 11999, - "functionName": "e.extend.each", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821241.957, - "totalHeapSize": 17571072, - "type": "RecalculateStyles", - "usedHeapSize": 9864552 - }, - { - "children": [], - "data": {}, - "endTime": 1348171821245.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 9337, - "functionName": "e.extend.e.fn.extend", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 454, - "functionName": "d.merge", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 10262, - "functionName": "f", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 9853, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 11999, - "functionName": "e.extend.each", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821244.957, - "totalHeapSize": 17571072, - "type": "RecalculateStyles", - "usedHeapSize": 9957092 - }, - { - "children": [], - "data": {}, - "endTime": 1348171821245.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 9337, - "functionName": "e.extend.e.fn.extend", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 454, - "functionName": "d.merge", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 10262, - "functionName": "f", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 9853, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 11999, - "functionName": "e.extend.each", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821245.957, - "totalHeapSize": 17571072, - "type": "Layout", - "usedHeapSize": 9957316 - }, - { - "children": [], - "data": {}, - "endTime": 1348171821262.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 9337, - "functionName": "e.extend.e.fn.extend", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 454, - "functionName": "d.merge", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 10262, - "functionName": "f", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 9853, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 11999, - "functionName": "e.extend.each", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821262.957, - "totalHeapSize": 17571072, - "type": "RecalculateStyles", - "usedHeapSize": 10703088 - }, - { - "data": { - "singleShot": false, - "timeout": 1000, - "timerId": 3 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 11661, - "functionName": "using.setTicker", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 11759, - "functionName": "using.init", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 12269, - "functionName": "using.setIntervalEvent", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 159520, - "functionName": "g", - "lineNumber": 11, - "url": "http://a0.twimg.com/c/swift/en/bundle/timeline.97b730c52dbf7c6aebe75ee2a31e060da3c4e4b8.js" - }, - { - "columnNumber": 165369, - "functionName": "a.exports", - "lineNumber": 11, - "url": "http://a0.twimg.com/c/swift/en/bundle/timeline.97b730c52dbf7c6aebe75ee2a31e060da3c4e4b8.js" - } - ], - "startTime": 1348171821262.957, - "totalHeapSize": 17571072, - "type": "TimerInstall", - "usedHeapSize": 10741788 - }, - { - "children": [], - "data": {}, - "endTime": 1348171821268.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 9337, - "functionName": "e.extend.e.fn.extend", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 454, - "functionName": "d.merge", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 10262, - "functionName": "f", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 9853, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 11999, - "functionName": "e.extend.each", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821267.957, - "totalHeapSize": 17571072, - "type": "RecalculateStyles", - "usedHeapSize": 10853100 - }, - { - "children": [], - "data": {}, - "endTime": 1348171821309.957, - "frameId": "2036.5", - "stackTrace": [ - { - "columnNumber": 2034, - "functionName": "O", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 2128, - "functionName": "P", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 10720, - "functionName": "n.stack.PostMessageTransport.e.onDOMReady", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 416, - "functionName": "D", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 10887, - "functionName": "n.stack.PostMessageTransport.e.init", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - } - ], - "startTime": 1348171821308.957, - "totalHeapSize": 19590272, - "type": "RecalculateStyles", - "usedHeapSize": 11726828 - }, - { - "children": [], - "data": { - "endLine": 0, - "length": 1, - "startLine": 0 - }, - "endTime": 1348171821309.957, - "frameId": "2036.5", - "stackTrace": [ - { - "columnNumber": 2034, - "functionName": "O", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 2128, - "functionName": "P", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 10720, - "functionName": "n.stack.PostMessageTransport.e.onDOMReady", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 416, - "functionName": "D", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 10887, - "functionName": "n.stack.PostMessageTransport.e.init", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - } - ], - "startTime": 1348171821309.957, - "totalHeapSize": 19590272, - "type": "ParseHTML", - "usedHeapSize": 11727052 - }, - { - "data": {}, - "frameId": "2036.5", - "startTime": 1348171821309.957, - "totalHeapSize": 19590272, - "type": "MarkDOMContent", - "usedHeapSize": 11727052 - }, - { - "children": [], - "data": { - "mimeType": "text/html", - "requestId": "2036.29", - "statusCode": 0 - }, - "endTime": 1348171821315.957, - "frameId": "2036.5", - "startTime": 1348171821315.957, - "totalHeapSize": 19590272, - "type": "ResourceReceiveResponse", - "usedHeapSize": 11730692 - }, - { - "children": [], - "data": {}, - "endTime": 1348171821315.957, - "frameId": "2036.5", - "stackTrace": [ - { - "columnNumber": 2034, - "functionName": "O", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 2128, - "functionName": "P", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 10720, - "functionName": "n.stack.PostMessageTransport.e.onDOMReady", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 416, - "functionName": "D", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 10887, - "functionName": "n.stack.PostMessageTransport.e.init", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - } - ], - "startTime": 1348171821315.957, - "totalHeapSize": 19590272, - "type": "RecalculateStyles", - "usedHeapSize": 11730916 - }, - { - "children": [], - "data": { - "endLine": 0, - "length": 1, - "startLine": 0 - }, - "endTime": 1348171821315.957, - "frameId": "2036.5", - "stackTrace": [ - { - "columnNumber": 2034, - "functionName": "O", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 2128, - "functionName": "P", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 10720, - "functionName": "n.stack.PostMessageTransport.e.onDOMReady", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 416, - "functionName": "D", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 10887, - "functionName": "n.stack.PostMessageTransport.e.init", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - } - ], - "startTime": 1348171821315.957, - "totalHeapSize": 19590272, - "type": "ParseHTML", - "usedHeapSize": 11731140 - }, - { - "data": {}, - "frameId": "2036.5", - "startTime": 1348171821315.957, - "totalHeapSize": 19590272, - "type": "MarkLoad", - "usedHeapSize": 11731140 - }, - { - "data": {}, - "frameId": "2036.5", - "startTime": 1348171821315.957, - "totalHeapSize": 19590272, - "type": "MarkDOMContent", - "usedHeapSize": 11731140 - }, - { - "data": { - "didFail": false, - "requestId": "2036.29" - }, - "frameId": "2036.5", - "startTime": 1348171821320.957, - "totalHeapSize": 19590272, - "type": "ResourceFinish", - "usedHeapSize": 11731140 - }, - { - "data": { - "usedHeapSizeDelta": 1542824 - }, - "endTime": 1348171821327.957, - "stackTrace": [ - { - "columnNumber": 2847, - "functionName": "P", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 10720, - "functionName": "n.stack.PostMessageTransport.e.onDOMReady", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 416, - "functionName": "D", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 10887, - "functionName": "n.stack.PostMessageTransport.e.init", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 15903, - "functionName": "n.stack.QueueBehavior.b.init", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - } - ], - "startTime": 1348171821322.957, - "totalHeapSize": 20605952, - "type": "GCEvent", - "usedHeapSize": 10514880 - }, - { - "children": [], - "data": {}, - "endTime": 1348171821328.957, - "frameId": "2036.7", - "stackTrace": [ - { - "columnNumber": 2847, - "functionName": "P", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 10720, - "functionName": "n.stack.PostMessageTransport.e.onDOMReady", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 416, - "functionName": "D", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 10887, - "functionName": "n.stack.PostMessageTransport.e.init", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 15903, - "functionName": "n.stack.QueueBehavior.b.init", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - } - ], - "startTime": 1348171821328.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 10515104 - }, - { - "children": [], - "data": { - "endLine": 0, - "length": 1, - "startLine": 0 - }, - "endTime": 1348171821328.957, - "frameId": "2036.7", - "stackTrace": [ - { - "columnNumber": 2847, - "functionName": "P", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 10720, - "functionName": "n.stack.PostMessageTransport.e.onDOMReady", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 416, - "functionName": "D", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 10887, - "functionName": "n.stack.PostMessageTransport.e.init", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 15903, - "functionName": "n.stack.QueueBehavior.b.init", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - } - ], - "startTime": 1348171821328.957, - "totalHeapSize": 20605952, - "type": "ParseHTML", - "usedHeapSize": 10515328 - }, - { - "data": {}, - "frameId": "2036.7", - "startTime": 1348171821328.957, - "totalHeapSize": 20605952, - "type": "MarkDOMContent", - "usedHeapSize": 10515328 - }, - { - "children": [], - "data": { - "mimeType": "text/html", - "requestId": "2036.30", - "statusCode": 0 - }, - "endTime": 1348171821337.957, - "frameId": "2036.7", - "startTime": 1348171821337.957, - "totalHeapSize": 20605952, - "type": "ResourceReceiveResponse", - "usedHeapSize": 10518932 - }, - { - "children": [], - "data": {}, - "endTime": 1348171821337.957, - "frameId": "2036.7", - "stackTrace": [ - { - "columnNumber": 2847, - "functionName": "P", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 10720, - "functionName": "n.stack.PostMessageTransport.e.onDOMReady", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 416, - "functionName": "D", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 10887, - "functionName": "n.stack.PostMessageTransport.e.init", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 15903, - "functionName": "n.stack.QueueBehavior.b.init", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - } - ], - "startTime": 1348171821337.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 10519156 - }, - { - "children": [], - "data": { - "endLine": 0, - "length": 1, - "startLine": 0 - }, - "endTime": 1348171821337.957, - "frameId": "2036.7", - "stackTrace": [ - { - "columnNumber": 2847, - "functionName": "P", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 10720, - "functionName": "n.stack.PostMessageTransport.e.onDOMReady", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 416, - "functionName": "D", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 10887, - "functionName": "n.stack.PostMessageTransport.e.init", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 15903, - "functionName": "n.stack.QueueBehavior.b.init", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - } - ], - "startTime": 1348171821337.957, - "totalHeapSize": 20605952, - "type": "ParseHTML", - "usedHeapSize": 10519380 - }, - { - "data": {}, - "frameId": "2036.7", - "startTime": 1348171821337.957, - "totalHeapSize": 20605952, - "type": "MarkLoad", - "usedHeapSize": 10519380 - }, - { - "data": {}, - "frameId": "2036.7", - "startTime": 1348171821337.957, - "totalHeapSize": 20605952, - "type": "MarkDOMContent", - "usedHeapSize": 10519380 - }, - { - "data": { - "didFail": false, - "requestId": "2036.30" - }, - "frameId": "2036.7", - "startTime": 1348171821340.957, - "totalHeapSize": 20605952, - "type": "ResourceFinish", - "usedHeapSize": 10519380 - }, - { - "data": { - "url": "http://pbs.twimg.com/media/AzbObgECUAAwUPJ.jpg:thumb" - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 28646, - "functionName": "f.extend.attr", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 13440, - "functionName": "e.extend.access", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 25195, - "functionName": "f.fn.extend.attr", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 236426, - "functionName": "loadThumb", - "lineNumber": 11, - "url": "http://a0.twimg.com/c/swift/en/bundle/timeline.97b730c52dbf7c6aebe75ee2a31e060da3c4e4b8.js" - }, - { - "columnNumber": 235768, - "functionName": "resolveThumbCallback", - "lineNumber": 11, - "url": "http://a0.twimg.com/c/swift/en/bundle/timeline.97b730c52dbf7c6aebe75ee2a31e060da3c4e4b8.js" - } - ], - "startTime": 1348171821346.957, - "totalHeapSize": 20605952, - "type": "ScheduleResourceRequest", - "usedHeapSize": 10536712 - }, - { - "children": [], - "data": {}, - "endTime": 1348171821350.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 9337, - "functionName": "e.extend.e.fn.extend", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 454, - "functionName": "d.merge", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 10262, - "functionName": "f", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 9853, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 11999, - "functionName": "e.extend.each", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821349.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 10576232 - }, - { - "children": [ - { - "children": [], - "data": {}, - "endTime": 1348171821350.957, - "frameId": "2036.7", - "stackTrace": [ - { - "columnNumber": 9337, - "functionName": "e.extend.e.fn.extend", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 454, - "functionName": "d.merge", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 10262, - "functionName": "f", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 9853, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 11999, - "functionName": "e.extend.each", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821350.957, - "totalHeapSize": 20605952, - "type": "Layout", - "usedHeapSize": 10576680 - }, - { - "children": [], - "data": {}, - "endTime": 1348171821350.957, - "frameId": "2036.7", - "stackTrace": [ - { - "columnNumber": 9337, - "functionName": "e.extend.e.fn.extend", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 454, - "functionName": "d.merge", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 10262, - "functionName": "f", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 9853, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 11999, - "functionName": "e.extend.each", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821350.957, - "totalHeapSize": 20605952, - "type": "Layout", - "usedHeapSize": 10576904 - } - ], - "data": {}, - "endTime": 1348171821350.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 9337, - "functionName": "e.extend.e.fn.extend", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 454, - "functionName": "d.merge", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 10262, - "functionName": "f", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 9853, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 11999, - "functionName": "e.extend.each", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821350.957, - "totalHeapSize": 20605952, - "type": "Layout", - "usedHeapSize": 10576904 - }, - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 4 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 39789, - "functionName": "resolveLink", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 36767, - "functionName": "f.event.dispatch", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 32738, - "functionName": "f.event.add.i.handle.j", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 35448, - "functionName": "f.event.trigger", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 42927, - "functionName": "f.fn.extend.trigger", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821370.957, - "totalHeapSize": 20605952, - "type": "TimerInstall", - "usedHeapSize": 11423904 - }, - { - "data": { - "timerId": 4 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 39666, - "functionName": "resolveLink", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 36767, - "functionName": "f.event.dispatch", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 32738, - "functionName": "f.event.add.i.handle.j", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 35448, - "functionName": "f.event.trigger", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 42927, - "functionName": "f.fn.extend.trigger", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821370.957, - "totalHeapSize": 20605952, - "type": "TimerRemove", - "usedHeapSize": 11440820 - }, - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 5 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 39789, - "functionName": "resolveLink", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 36767, - "functionName": "f.event.dispatch", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 32738, - "functionName": "f.event.add.i.handle.j", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 35448, - "functionName": "f.event.trigger", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 42927, - "functionName": "f.fn.extend.trigger", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821371.957, - "totalHeapSize": 20605952, - "type": "TimerInstall", - "usedHeapSize": 11442640 - }, - { - "data": { - "timerId": 5 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 39666, - "functionName": "resolveLink", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 36767, - "functionName": "f.event.dispatch", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 32738, - "functionName": "f.event.add.i.handle.j", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 35448, - "functionName": "f.event.trigger", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 42927, - "functionName": "f.fn.extend.trigger", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821371.957, - "totalHeapSize": 20605952, - "type": "TimerRemove", - "usedHeapSize": 11463604 - }, - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 6 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 39789, - "functionName": "resolveLink", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 36767, - "functionName": "f.event.dispatch", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 32738, - "functionName": "f.event.add.i.handle.j", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 35448, - "functionName": "f.event.trigger", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 42927, - "functionName": "f.fn.extend.trigger", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821371.957, - "totalHeapSize": 20605952, - "type": "TimerInstall", - "usedHeapSize": 11464144 - }, - { - "data": { - "timerId": 6 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 39666, - "functionName": "resolveLink", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 36767, - "functionName": "f.event.dispatch", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 32738, - "functionName": "f.event.add.i.handle.j", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 35448, - "functionName": "f.event.trigger", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 42927, - "functionName": "f.fn.extend.trigger", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821372.957, - "totalHeapSize": 20605952, - "type": "TimerRemove", - "usedHeapSize": 11469320 - }, - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 7 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 39789, - "functionName": "resolveLink", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 36767, - "functionName": "f.event.dispatch", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 32738, - "functionName": "f.event.add.i.handle.j", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 35448, - "functionName": "f.event.trigger", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 42927, - "functionName": "f.fn.extend.trigger", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821372.957, - "totalHeapSize": 20605952, - "type": "TimerInstall", - "usedHeapSize": 11469860 - }, - { - "data": { - "timerId": 7 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 39666, - "functionName": "resolveLink", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 36767, - "functionName": "f.event.dispatch", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 32738, - "functionName": "f.event.add.i.handle.j", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 35448, - "functionName": "f.event.trigger", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 42927, - "functionName": "f.fn.extend.trigger", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821373.957, - "totalHeapSize": 20605952, - "type": "TimerRemove", - "usedHeapSize": 11513220 - }, - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 8 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 39789, - "functionName": "resolveLink", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 36767, - "functionName": "f.event.dispatch", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 32738, - "functionName": "f.event.add.i.handle.j", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 35448, - "functionName": "f.event.trigger", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 42927, - "functionName": "f.fn.extend.trigger", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821373.957, - "totalHeapSize": 20605952, - "type": "TimerInstall", - "usedHeapSize": 11513760 - }, - { - "data": { - "timerId": 8 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 39666, - "functionName": "resolveLink", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 36767, - "functionName": "f.event.dispatch", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 32738, - "functionName": "f.event.add.i.handle.j", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 35448, - "functionName": "f.event.trigger", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 42927, - "functionName": "f.fn.extend.trigger", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821374.957, - "totalHeapSize": 20605952, - "type": "TimerRemove", - "usedHeapSize": 11535212 - }, - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 9 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 39789, - "functionName": "resolveLink", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 36767, - "functionName": "f.event.dispatch", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 32738, - "functionName": "f.event.add.i.handle.j", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 35448, - "functionName": "f.event.trigger", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 42927, - "functionName": "f.fn.extend.trigger", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821375.957, - "totalHeapSize": 20605952, - "type": "TimerInstall", - "usedHeapSize": 11535752 - }, - { - "data": { - "timerId": 9 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 39666, - "functionName": "resolveLink", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 36767, - "functionName": "f.event.dispatch", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 32738, - "functionName": "f.event.add.i.handle.j", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 35448, - "functionName": "f.event.trigger", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 42927, - "functionName": "f.fn.extend.trigger", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821375.957, - "totalHeapSize": 20605952, - "type": "TimerRemove", - "usedHeapSize": 11549516 - }, - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 10 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 39789, - "functionName": "resolveLink", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 36767, - "functionName": "f.event.dispatch", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 32738, - "functionName": "f.event.add.i.handle.j", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 35448, - "functionName": "f.event.trigger", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 42927, - "functionName": "f.fn.extend.trigger", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821375.957, - "totalHeapSize": 20605952, - "type": "TimerInstall", - "usedHeapSize": 11550056 - }, - { - "data": { - "timerId": 10 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 39666, - "functionName": "resolveLink", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 36767, - "functionName": "f.event.dispatch", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 32738, - "functionName": "f.event.add.i.handle.j", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 35448, - "functionName": "f.event.trigger", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 42927, - "functionName": "f.fn.extend.trigger", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821375.957, - "totalHeapSize": 20605952, - "type": "TimerRemove", - "usedHeapSize": 11563468 - }, - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 11 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 39789, - "functionName": "resolveLink", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 36767, - "functionName": "f.event.dispatch", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 32738, - "functionName": "f.event.add.i.handle.j", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 35448, - "functionName": "f.event.trigger", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 42927, - "functionName": "f.fn.extend.trigger", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821375.957, - "totalHeapSize": 20605952, - "type": "TimerInstall", - "usedHeapSize": 11564008 - }, - { - "data": { - "timerId": 11 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 39666, - "functionName": "resolveLink", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 36767, - "functionName": "f.event.dispatch", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 32738, - "functionName": "f.event.add.i.handle.j", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 35448, - "functionName": "f.event.trigger", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 42927, - "functionName": "f.fn.extend.trigger", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821377.957, - "totalHeapSize": 20605952, - "type": "TimerRemove", - "usedHeapSize": 11596400 - }, - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 12 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 39789, - "functionName": "resolveLink", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 36767, - "functionName": "f.event.dispatch", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 32738, - "functionName": "f.event.add.i.handle.j", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 35448, - "functionName": "f.event.trigger", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 42927, - "functionName": "f.fn.extend.trigger", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821377.957, - "totalHeapSize": 20605952, - "type": "TimerInstall", - "usedHeapSize": 11596940 - }, - { - "data": { - "timerId": 12 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 39666, - "functionName": "resolveLink", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 36767, - "functionName": "f.event.dispatch", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 32738, - "functionName": "f.event.add.i.handle.j", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 35448, - "functionName": "f.event.trigger", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 42927, - "functionName": "f.fn.extend.trigger", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821377.957, - "totalHeapSize": 20605952, - "type": "TimerRemove", - "usedHeapSize": 11611604 - }, - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 13 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 39789, - "functionName": "resolveLink", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - { - "columnNumber": 36767, - "functionName": "f.event.dispatch", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 32738, - "functionName": "f.event.add.i.handle.j", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 35448, - "functionName": "f.event.trigger", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 42927, - "functionName": "f.fn.extend.trigger", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821377.957, - "totalHeapSize": 20605952, - "type": "TimerInstall", - "usedHeapSize": 11612144 - }, - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 14 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 188593, - "functionName": "", - "lineNumber": 11, - "url": "http://a0.twimg.com/c/swift/en/bundle/timeline.97b730c52dbf7c6aebe75ee2a31e060da3c4e4b8.js" - }, - { - "columnNumber": 7469, - "functionName": "c.after", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 7079, - "functionName": "c.around", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 10301, - "functionName": "f", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 9853, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - } - ], - "startTime": 1348171821378.957, - "totalHeapSize": 20605952, - "type": "TimerInstall", - "usedHeapSize": 11637900 - }, - { - "children": [], - "data": {}, - "endTime": 1348171821385.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 9337, - "functionName": "e.extend.e.fn.extend", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 454, - "functionName": "d.merge", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 10262, - "functionName": "f", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 9853, - "functionName": "", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 11999, - "functionName": "e.extend.each", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821380.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 11676780 - }, - { - "children": [], - "data": {}, - "endTime": 1348171821428.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 28753, - "functionName": "c.defaultView.c.defaultView.getComputedStyle.Db", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 27517, - "functionName": "f.extend.css", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 26589, - "functionName": "f.fn.css", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 13499, - "functionName": "e.extend.access", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 26524, - "functionName": "f.fn.css", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821428.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 12786744 - }, - { - "children": [], - "data": {}, - "endTime": 1348171821429.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 28753, - "functionName": "c.defaultView.c.defaultView.getComputedStyle.Db", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 27517, - "functionName": "f.extend.css", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 26589, - "functionName": "f.fn.css", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 13499, - "functionName": "e.extend.access", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 26524, - "functionName": "f.fn.css", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821428.957, - "totalHeapSize": 20605952, - "type": "Layout", - "usedHeapSize": 12786968 - } - ], - "data": { - "scriptLine": 9, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171821436.957, - "frameId": "2036.1", - "startTime": 1348171821124.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 12871708 - } - ], - "data": { - "type": "load" - }, - "endTime": 1348171821436.957, - "frameId": "2036.1", - "startTime": 1348171821124.957, - "totalHeapSize": 20605952, - "type": "EventDispatch", - "usedHeapSize": 12871708 - }, - { - "children": [], - "data": {}, - "endTime": 1348171821448.957, - "frameId": "2036.1", - "startTime": 1348171821448.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 12871708 - }, - { - "children": [], - "data": {}, - "endTime": 1348171821450.957, - "frameId": "2036.1", - "startTime": 1348171821448.957, - "totalHeapSize": 20605952, - "type": "Layout", - "usedHeapSize": 12871708 - }, - { - "data": {}, - "startTime": 1348171821450.957, - "totalHeapSize": 20605952, - "type": "BeginFrame", - "usedHeapSize": 12871708 - }, - { - "children": [], - "data": { - "height": 625, - "width": 997, - "x": 0, - "y": 0 - }, - "endTime": 1348171821459.957, - "frameId": "2036.1", - "startTime": 1348171821450.957, - "totalHeapSize": 20605952, - "type": "Paint", - "usedHeapSize": 12871708 - }, - { - "data": { - "requestId": "2036.33", - "requestMethod": "GET", - "url": "https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1" - }, - "frameId": "2036.7", - "startTime": 1348171821460.957, - "totalHeapSize": 20605952, - "type": "ResourceSendRequest", - "usedHeapSize": 12871736 - }, - { - "data": { - "requestId": "2036.34", - "requestMethod": "GET", - "url": "http://twitter.com/i/resolve.json?urls%5B%5D=http%3A%2F%2Fzoompf.com%2F2012%2F09%2Finternet-explorer-is-the-hare-and-thats-bad&urls%5B%5D=http%3A%2F%2Fwww.strangeloopnetworks.com%2Fresources%2Finfographics%2Ffall-2012-state-of-the-union%2Fposter%2F&urls%5B%5D=http%3A%2F%2Fwww.ie6countdown.com%2F&urls%5B%5D=http%3A%2F%2Ftheie7countdown.com%2F&urls%5B%5D=http%3A%2F%2Fspr.ly%2F6017TWC7&urls%5B%5D=http%3A%2F%2Fwww.codinghorror.com%2Fblog%2F2012%2F09%2Fcomputer-crime-then-and-now.html&urls%5B%5D=http%3A%2F%2Fbit.ly%2FOvLmhp&urls%5B%5D=http%3A%2F%2Fdavesgeekyideas.com%2F2012%2F09%2F14%2Fbay-area-rapid-transit-map-super-mario-kart-style%2F&urls%5B%5D=http%3A%2F%2Fkkovacs.eu%2Fcassandra-vs-mongodb-vs-couchdb-vs-redis&urls%5B%5D=http%3A%2F%2Fwww.codeproject.com%2FTips%2F457877%2Fhow-to-get-A-in-Yslow-and-tune-up-your-website" - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 38030, - "functionName": "f.support.ajax.f.ajaxTransport.send", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 35185, - "functionName": "f.extend.ajax", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 54253, - "functionName": "JSONRequest", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 54510, - "functionName": "get", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js" - }, - { - "columnNumber": 39937, - "functionName": "sendBatchRequest", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - } - ], - "startTime": 1348171821463.957, - "totalHeapSize": 20605952, - "type": "ResourceSendRequest", - "usedHeapSize": 12988616 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1582, - "scriptName": "native v8natives.js" - }, - "endTime": 1348171821463.957, - "frameId": "2036.1", - "startTime": 1348171821460.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 12990436 - } - ], - "data": { - "timerId": 13 - }, - "endTime": 1348171821463.957, - "frameId": "2036.1", - "startTime": 1348171821460.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 12990436 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1582, - "scriptName": "native v8natives.js" - }, - "endTime": 1348171821464.957, - "frameId": "2036.1", - "startTime": 1348171821463.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13028560 - } - ], - "data": { - "timerId": 14 - }, - "endTime": 1348171821464.957, - "frameId": "2036.1", - "startTime": 1348171821463.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13028560 - }, - { - "children": [], - "data": { - "mimeType": "text/javascript", - "requestId": "2036.32", - "statusCode": 200 - }, - "endTime": 1348171821618.957, - "frameId": "2036.1", - "startTime": 1348171821618.957, - "totalHeapSize": 20605952, - "type": "ResourceReceiveResponse", - "usedHeapSize": 13028560 - }, - { - "children": [], - "data": { - "requestId": "2036.32" - }, - "endTime": 1348171821618.957, - "frameId": "2036.1", - "startTime": 1348171821618.957, - "totalHeapSize": 20605952, - "type": "ResourceReceivedData", - "usedHeapSize": 13028560 - }, - { - "children": [], - "data": { - "requestId": "2036.32" - }, - "endTime": 1348171821618.957, - "frameId": "2036.1", - "startTime": 1348171821618.957, - "totalHeapSize": 20605952, - "type": "ResourceReceivedData", - "usedHeapSize": 13028560 - }, - { - "children": [], - "data": { - "requestId": "2036.32" - }, - "endTime": 1348171821686.957, - "frameId": "2036.1", - "startTime": 1348171821686.957, - "totalHeapSize": 20605952, - "type": "ResourceReceivedData", - "usedHeapSize": 13028560 - }, - { - "children": [], - "data": { - "requestId": "2036.32" - }, - "endTime": 1348171821686.957, - "frameId": "2036.1", - "startTime": 1348171821686.957, - "totalHeapSize": 20605952, - "type": "ResourceReceivedData", - "usedHeapSize": 13028560 - }, - { - "data": { - "requestId": "2036.27", - "requestMethod": "GET", - "url": "http://d3j5vwomefv46c.cloudfront.net/photos/mini/654853068.jpg?key=526640&Expires=1348172821&Key-Pair-Id=APKAIYVGSUJFNRFZBBTA&Signature=x5vBtZ-GrAya5Du83FwbWDEBlgwqTjLZ2jgK4wWOsxHvfCDKviAYEBpLMX223N8m55aZN8vOxNrIwNoMY753a8xdeRrD0dL8IsdFA92LCjpRjX-HNdVE-1wkCEV8P7~NRj9EWpG3M-iksoc052IFvS2I7UlV3xqumos0st0JmIw_" - }, - "frameId": "2036.1", - "startTime": 1348171821711.957, - "totalHeapSize": 20605952, - "type": "ResourceSendRequest", - "usedHeapSize": 13028560 - }, - { - "children": [], - "data": { - "mimeType": "image/png", - "requestId": "2036.28", - "statusCode": 200 - }, - "endTime": 1348171821720.957, - "frameId": "2036.1", - "startTime": 1348171821720.957, - "totalHeapSize": 20605952, - "type": "ResourceReceiveResponse", - "usedHeapSize": 13028560 - }, - { - "children": [], - "data": { - "requestId": "2036.28" - }, - "endTime": 1348171821720.957, - "frameId": "2036.1", - "startTime": 1348171821720.957, - "totalHeapSize": 20605952, - "type": "ResourceReceivedData", - "usedHeapSize": 13028560 - }, - { - "children": [], - "data": { - "requestId": "2036.28" - }, - "endTime": 1348171821720.957, - "frameId": "2036.1", - "startTime": 1348171821720.957, - "totalHeapSize": 20605952, - "type": "ResourceReceivedData", - "usedHeapSize": 13028560 - }, - { - "children": [], - "data": { - "requestId": "2036.28" - }, - "endTime": 1348171821720.957, - "frameId": "2036.1", - "startTime": 1348171821720.957, - "totalHeapSize": 20605952, - "type": "ResourceReceivedData", - "usedHeapSize": 13028560 - }, - { - "children": [], - "data": { - "requestId": "2036.28" - }, - "endTime": 1348171821731.957, - "frameId": "2036.1", - "startTime": 1348171821731.957, - "totalHeapSize": 20605952, - "type": "ResourceReceivedData", - "usedHeapSize": 13028560 - }, - { - "children": [], - "data": { - "mimeType": "image/jpeg", - "requestId": "2036.31", - "statusCode": 200 - }, - "endTime": 1348171821746.957, - "frameId": "2036.1", - "startTime": 1348171821746.957, - "totalHeapSize": 20605952, - "type": "ResourceReceiveResponse", - "usedHeapSize": 13028560 - }, - { - "children": [], - "data": { - "requestId": "2036.31" - }, - "endTime": 1348171821746.957, - "frameId": "2036.1", - "startTime": 1348171821746.957, - "totalHeapSize": 20605952, - "type": "ResourceReceivedData", - "usedHeapSize": 13028560 - }, - { - "children": [], - "data": { - "requestId": "2036.31" - }, - "endTime": 1348171821746.957, - "frameId": "2036.1", - "startTime": 1348171821746.957, - "totalHeapSize": 20605952, - "type": "ResourceReceivedData", - "usedHeapSize": 13028560 - }, - { - "children": [], - "data": { - "requestId": "2036.32" - }, - "endTime": 1348171821831.957, - "frameId": "2036.1", - "startTime": 1348171821831.957, - "totalHeapSize": 20605952, - "type": "ResourceReceivedData", - "usedHeapSize": 13028560 - }, - { - "data": { - "didFail": false, - "networkTime": 1348171821824.957, - "requestId": "2036.32" - }, - "frameId": "2036.1", - "startTime": 1348171821831.957, - "totalHeapSize": 20605952, - "type": "ResourceFinish", - "usedHeapSize": 13028560 - }, - { - "children": [], - "data": { - "requestId": "2036.31" - }, - "endTime": 1348171821831.957, - "frameId": "2036.1", - "startTime": 1348171821831.957, - "totalHeapSize": 20605952, - "type": "ResourceReceivedData", - "usedHeapSize": 13028560 - }, - { - "data": { - "didFail": false, - "networkTime": 1348171821825.957, - "requestId": "2036.31" - }, - "frameId": "2036.1", - "startTime": 1348171821831.957, - "totalHeapSize": 20605952, - "type": "ResourceFinish", - "usedHeapSize": 13028560 - }, - { - "data": { - "requestId": "2036.35", - "requestMethod": "GET", - "url": "http://www.google-analytics.com/__utm.gif?utmwv=5.3.5&utms=1&utmn=1181617486&utmhn=twitter.com&utmcs=UTF-8&utmsr=1024x731&utmvp=997x625&utmsc=32-bit&utmul=en-us&utmje=1&utmfl=11.3%20r31&utmdt=Marcel%20Duran%20(marcelduran)%20on%20Twitter&utmhid=2050049151&utmr=-&utmp=%2Fmarcelduran&utmac=UA-30775-6&utmcc=__utma%3D43838368.730111572.1348171822.1348171822.1348171822.1%3B%2B__utmz%3D43838368.1348171822.1.1.utmcsr%3D(direct)%7Cutmccn%3D(direct)%7Cutmcmd%3D(none)%3B&utmu=qAC~" - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 630, - "functionName": "Ra", - "lineNumber": 52, - "url": "http://www.google-analytics.com/ga.js" - }, - { - "columnNumber": 239, - "functionName": "ge", - "lineNumber": 52, - "url": "http://www.google-analytics.com/ga.js" - }, - { - "columnNumber": 387, - "functionName": "Qc.(anonymous function).execute", - "lineNumber": 16, - "url": "http://www.google-analytics.com/ga.js" - }, - { - "columnNumber": 1187, - "functionName": "Uc.j", - "lineNumber": 9, - "url": "http://www.google-analytics.com/ga.js" - }, - { - "columnNumber": 228, - "functionName": "D.Ga", - "lineNumber": 39, - "url": "http://www.google-analytics.com/ga.js" - } - ], - "startTime": 1348171821881.957, - "totalHeapSize": 20605952, - "type": "ResourceSendRequest", - "usedHeapSize": 13689444 - }, - { - "children": [], - "data": { - "lineNumber": 1, - "url": "http://www.google-analytics.com/ga.js" - }, - "endTime": 1348171821888.957, - "frameId": "2036.1", - "startTime": 1348171821831.957, - "totalHeapSize": 20605952, - "type": "EvaluateScript", - "usedHeapSize": 13704364 - }, - { - "children": [], - "data": { - "height": 625, - "width": 997, - "x": 0, - "y": 0 - }, - "endTime": 1348171821917.957, - "frameId": "2036.1", - "startTime": 1348171821895.957, - "totalHeapSize": 20605952, - "type": "Paint", - "usedHeapSize": 13704364 - }, - { - "children": [], - "data": { - "requestId": "2036.28" - }, - "endTime": 1348171821924.957, - "frameId": "2036.1", - "startTime": 1348171821924.957, - "totalHeapSize": 20605952, - "type": "ResourceReceivedData", - "usedHeapSize": 13704364 - }, - { - "children": [ - { - "children": [ - { - "children": [], - "data": {}, - "endTime": 1348171821926.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 29294, - "functionName": "f.expr.f.expr.filters.f.expr.filters.hidden", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 8522, - "functionName": "n.selectors.filter.PSEUDO", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 3043, - "functionName": "n.filter", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 1561, - "functionName": "n", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 13291, - "functionName": "c.querySelectorAll.n", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821926.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 13741800 - }, - { - "children": [], - "data": {}, - "endTime": 1348171821926.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 29294, - "functionName": "f.expr.f.expr.filters.f.expr.filters.hidden", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 8522, - "functionName": "n.selectors.filter.PSEUDO", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 3043, - "functionName": "n.filter", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 1561, - "functionName": "n", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 13291, - "functionName": "c.querySelectorAll.n", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821926.957, - "totalHeapSize": 20605952, - "type": "Layout", - "usedHeapSize": 13742024 - }, - { - "children": [], - "data": {}, - "endTime": 1348171821927.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 28753, - "functionName": "c.defaultView.c.defaultView.getComputedStyle.Db", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 26660, - "functionName": "f.extend.cssHooks.opacity.get", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 27478, - "functionName": "f.extend.css", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 42986, - "functionName": "f.fx.cur", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 41056, - "functionName": "g", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821926.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 13749852 - }, - { - "children": [], - "data": {}, - "endTime": 1348171821927.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 28753, - "functionName": "c.defaultView.c.defaultView.getComputedStyle.Db", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 26660, - "functionName": "f.extend.cssHooks.opacity.get", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 27478, - "functionName": "f.extend.css", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 42986, - "functionName": "f.fx.cur", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 41056, - "functionName": "g", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821927.957, - "totalHeapSize": 20605952, - "type": "Layout", - "usedHeapSize": 13750076 - }, - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 15 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43182, - "functionName": "f.fx.custom", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 41120, - "functionName": "g", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 23951, - "functionName": "f.extend.dequeue", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 24234, - "functionName": "f.fn.extend.queue", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821927.957, - "totalHeapSize": 20605952, - "type": "TimerInstall", - "usedHeapSize": 13751884 - }, - { - "data": { - "singleShot": false, - "timeout": 13, - "timerId": 16 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 43492, - "functionName": "f.fx.custom", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 41120, - "functionName": "g", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 23951, - "functionName": "f.extend.dequeue", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 24234, - "functionName": "f.fn.extend.queue", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 11999, - "functionName": "e.extend.each", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821927.957, - "totalHeapSize": 20605952, - "type": "TimerInstall", - "usedHeapSize": 13757364 - } - ], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171821927.957, - "frameId": "2036.1", - "startTime": 1348171821924.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13761160 - } - ], - "data": { - "type": "load" - }, - "endTime": 1348171821927.957, - "frameId": "2036.1", - "startTime": 1348171821924.957, - "totalHeapSize": 20605952, - "type": "EventDispatch", - "usedHeapSize": 13761160 - }, - { - "children": [], - "data": {}, - "endTime": 1348171821927.957, - "frameId": "2036.1", - "startTime": 1348171821927.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 13761160 - }, - { - "children": [], - "data": {}, - "endTime": 1348171821927.957, - "frameId": "2036.1", - "startTime": 1348171821927.957, - "totalHeapSize": 20605952, - "type": "Layout", - "usedHeapSize": 13761160 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171821928.957, - "frameId": "2036.1", - "startTime": 1348171821928.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13761204 - } - ], - "data": { - "timerId": 15 - }, - "endTime": 1348171821928.957, - "frameId": "2036.1", - "startTime": 1348171821928.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13761204 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 17 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821946.957, - "totalHeapSize": 20605952, - "type": "TimerInstall", - "usedHeapSize": 13762304 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171821946.957, - "frameId": "2036.1", - "startTime": 1348171821946.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13768208 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171821947.957, - "frameId": "2036.1", - "startTime": 1348171821946.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13768208 - }, - { - "children": [], - "data": {}, - "endTime": 1348171821948.957, - "frameId": "2036.1", - "startTime": 1348171821948.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 13768208 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171821951.957, - "frameId": "2036.1", - "startTime": 1348171821951.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13768252 - } - ], - "data": { - "timerId": 17 - }, - "endTime": 1348171821951.957, - "frameId": "2036.1", - "startTime": 1348171821951.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13768252 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 18 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821956.957, - "totalHeapSize": 20605952, - "type": "TimerInstall", - "usedHeapSize": 13768516 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171821956.957, - "frameId": "2036.1", - "startTime": 1348171821956.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13770124 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171821956.957, - "frameId": "2036.1", - "startTime": 1348171821956.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13770124 - }, - { - "children": [], - "data": {}, - "endTime": 1348171821960.957, - "frameId": "2036.1", - "startTime": 1348171821960.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 13770124 - }, - { - "children": [], - "data": { - "mimeType": "image/gif", - "requestId": "2036.35", - "statusCode": 200 - }, - "endTime": 1348171821962.957, - "frameId": "2036.1", - "startTime": 1348171821962.957, - "totalHeapSize": 20605952, - "type": "ResourceReceiveResponse", - "usedHeapSize": 13770124 - }, - { - "children": [], - "data": { - "requestId": "2036.35" - }, - "endTime": 1348171821962.957, - "frameId": "2036.1", - "startTime": 1348171821962.957, - "totalHeapSize": 20605952, - "type": "ResourceReceivedData", - "usedHeapSize": 13770124 - }, - { - "data": { - "didFail": false, - "networkTime": 1348171821962.957, - "requestId": "2036.35" - }, - "frameId": "2036.1", - "startTime": 1348171821962.957, - "totalHeapSize": 20605952, - "type": "ResourceFinish", - "usedHeapSize": 13770124 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171821962.957, - "frameId": "2036.1", - "startTime": 1348171821962.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13770168 - } - ], - "data": { - "timerId": 18 - }, - "endTime": 1348171821962.957, - "frameId": "2036.1", - "startTime": 1348171821962.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13770168 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 52, - "scriptName": "http://www.google-analytics.com/ga.js" - }, - "endTime": 1348171821962.957, - "frameId": "2036.1", - "startTime": 1348171821962.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13770232 - } - ], - "data": { - "type": "load" - }, - "endTime": 1348171821962.957, - "frameId": "2036.1", - "startTime": 1348171821962.957, - "totalHeapSize": 20605952, - "type": "EventDispatch", - "usedHeapSize": 13770232 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 19 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821977.957, - "totalHeapSize": 20605952, - "type": "TimerInstall", - "usedHeapSize": 13770496 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171821977.957, - "frameId": "2036.1", - "startTime": 1348171821977.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13771796 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171821977.957, - "frameId": "2036.1", - "startTime": 1348171821977.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13771796 - }, - { - "children": [], - "data": {}, - "endTime": 1348171821981.957, - "frameId": "2036.1", - "startTime": 1348171821981.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 13771796 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171821983.957, - "frameId": "2036.1", - "startTime": 1348171821983.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13771840 - } - ], - "data": { - "timerId": 19 - }, - "endTime": 1348171821983.957, - "frameId": "2036.1", - "startTime": 1348171821983.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13771840 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 20 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171821990.957, - "totalHeapSize": 20605952, - "type": "TimerInstall", - "usedHeapSize": 13772104 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171821990.957, - "frameId": "2036.1", - "startTime": 1348171821990.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13773404 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171821990.957, - "frameId": "2036.1", - "startTime": 1348171821990.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13773404 - }, - { - "children": [], - "data": {}, - "endTime": 1348171821993.957, - "frameId": "2036.1", - "startTime": 1348171821993.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 13773404 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171821996.957, - "frameId": "2036.1", - "startTime": 1348171821996.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13773448 - } - ], - "data": { - "timerId": 20 - }, - "endTime": 1348171821996.957, - "frameId": "2036.1", - "startTime": 1348171821996.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13773448 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 21 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822004.957, - "totalHeapSize": 20605952, - "type": "TimerInstall", - "usedHeapSize": 13773712 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822004.957, - "frameId": "2036.1", - "startTime": 1348171822004.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13775012 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822004.957, - "frameId": "2036.1", - "startTime": 1348171822004.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13775012 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822005.957, - "frameId": "2036.1", - "startTime": 1348171822005.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 13775012 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822008.957, - "frameId": "2036.1", - "startTime": 1348171822008.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13775056 - } - ], - "data": { - "timerId": 21 - }, - "endTime": 1348171822008.957, - "frameId": "2036.1", - "startTime": 1348171822008.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13775056 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 22 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822018.957, - "totalHeapSize": 20605952, - "type": "TimerInstall", - "usedHeapSize": 13775320 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822018.957, - "frameId": "2036.1", - "startTime": 1348171822018.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13776620 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822018.957, - "frameId": "2036.1", - "startTime": 1348171822018.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13776620 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822020.957, - "frameId": "2036.1", - "startTime": 1348171822020.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 13776620 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822022.957, - "frameId": "2036.1", - "startTime": 1348171822022.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13776664 - } - ], - "data": { - "timerId": 22 - }, - "endTime": 1348171822022.957, - "frameId": "2036.1", - "startTime": 1348171822022.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13776664 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 23 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822031.957, - "totalHeapSize": 20605952, - "type": "TimerInstall", - "usedHeapSize": 13776928 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822031.957, - "frameId": "2036.1", - "startTime": 1348171822031.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13778228 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822031.957, - "frameId": "2036.1", - "startTime": 1348171822031.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13778228 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822032.957, - "frameId": "2036.1", - "startTime": 1348171822032.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 13778228 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822034.957, - "frameId": "2036.1", - "startTime": 1348171822034.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13778272 - } - ], - "data": { - "timerId": 23 - }, - "endTime": 1348171822034.957, - "frameId": "2036.1", - "startTime": 1348171822034.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13778272 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 24 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822045.957, - "totalHeapSize": 20605952, - "type": "TimerInstall", - "usedHeapSize": 13778536 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822045.957, - "frameId": "2036.1", - "startTime": 1348171822045.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13779836 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822045.957, - "frameId": "2036.1", - "startTime": 1348171822045.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13779836 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822047.957, - "frameId": "2036.1", - "startTime": 1348171822047.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 13779836 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822050.957, - "frameId": "2036.1", - "startTime": 1348171822050.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13779880 - } - ], - "data": { - "timerId": 24 - }, - "endTime": 1348171822050.957, - "frameId": "2036.1", - "startTime": 1348171822050.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13779880 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 25 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822059.957, - "totalHeapSize": 20605952, - "type": "TimerInstall", - "usedHeapSize": 13780144 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822059.957, - "frameId": "2036.1", - "startTime": 1348171822059.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13781444 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822059.957, - "frameId": "2036.1", - "startTime": 1348171822059.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13781444 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822061.957, - "frameId": "2036.1", - "startTime": 1348171822061.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 13781444 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822062.957, - "frameId": "2036.1", - "startTime": 1348171822062.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13781488 - } - ], - "data": { - "timerId": 25 - }, - "endTime": 1348171822062.957, - "frameId": "2036.1", - "startTime": 1348171822062.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13781488 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 26 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822072.957, - "totalHeapSize": 20605952, - "type": "TimerInstall", - "usedHeapSize": 13781752 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822072.957, - "frameId": "2036.1", - "startTime": 1348171822072.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13783052 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822072.957, - "frameId": "2036.1", - "startTime": 1348171822072.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13783052 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822075.957, - "frameId": "2036.1", - "startTime": 1348171822075.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 13783052 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822077.957, - "frameId": "2036.1", - "startTime": 1348171822077.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13783096 - } - ], - "data": { - "timerId": 26 - }, - "endTime": 1348171822077.957, - "frameId": "2036.1", - "startTime": 1348171822077.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13783096 - }, - { - "children": [], - "data": { - "mimeType": "image/jpeg", - "requestId": "2036.27", - "statusCode": 200 - }, - "endTime": 1348171822081.957, - "frameId": "2036.1", - "startTime": 1348171822081.957, - "totalHeapSize": 20605952, - "type": "ResourceReceiveResponse", - "usedHeapSize": 13783096 - }, - { - "children": [], - "data": { - "requestId": "2036.27" - }, - "endTime": 1348171822081.957, - "frameId": "2036.1", - "startTime": 1348171822081.957, - "totalHeapSize": 20605952, - "type": "ResourceReceivedData", - "usedHeapSize": 13783096 - }, - { - "children": [], - "data": { - "requestId": "2036.27" - }, - "endTime": 1348171822082.957, - "frameId": "2036.1", - "startTime": 1348171822081.957, - "totalHeapSize": 20605952, - "type": "ResourceReceivedData", - "usedHeapSize": 13783096 - }, - { - "children": [], - "data": { - "requestId": "2036.27" - }, - "endTime": 1348171822082.957, - "frameId": "2036.1", - "startTime": 1348171822082.957, - "totalHeapSize": 20605952, - "type": "ResourceReceivedData", - "usedHeapSize": 13783096 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 27 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822086.957, - "totalHeapSize": 20605952, - "type": "TimerInstall", - "usedHeapSize": 13783360 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822086.957, - "frameId": "2036.1", - "startTime": 1348171822086.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13784660 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822086.957, - "frameId": "2036.1", - "startTime": 1348171822086.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13784660 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822086.957, - "frameId": "2036.1", - "startTime": 1348171822086.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 13784660 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822087.957, - "frameId": "2036.1", - "startTime": 1348171822087.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13784704 - } - ], - "data": { - "timerId": 27 - }, - "endTime": 1348171822087.957, - "frameId": "2036.1", - "startTime": 1348171822087.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13784704 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 28 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822101.957, - "totalHeapSize": 20605952, - "type": "TimerInstall", - "usedHeapSize": 13784968 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822101.957, - "frameId": "2036.1", - "startTime": 1348171822101.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13786268 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822101.957, - "frameId": "2036.1", - "startTime": 1348171822101.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13786268 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822101.957, - "frameId": "2036.1", - "startTime": 1348171822101.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 13786268 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822105.957, - "frameId": "2036.1", - "startTime": 1348171822105.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13786312 - } - ], - "data": { - "timerId": 28 - }, - "endTime": 1348171822105.957, - "frameId": "2036.1", - "startTime": 1348171822105.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13786312 - }, - { - "children": [], - "data": { - "requestId": "2036.28" - }, - "endTime": 1348171822110.957, - "frameId": "2036.1", - "startTime": 1348171822110.957, - "totalHeapSize": 20605952, - "type": "ResourceReceivedData", - "usedHeapSize": 13786312 - }, - { - "data": { - "didFail": false, - "networkTime": 1348171822104.957, - "requestId": "2036.28" - }, - "frameId": "2036.1", - "startTime": 1348171822110.957, - "totalHeapSize": 20605952, - "type": "ResourceFinish", - "usedHeapSize": 13786312 - }, - { - "children": [ - { - "children": [ - { - "children": [], - "data": {}, - "endTime": 1348171822111.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 29294, - "functionName": "f.expr.f.expr.filters.f.expr.filters.hidden", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 8522, - "functionName": "n.selectors.filter.PSEUDO", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 3043, - "functionName": "n.filter", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 1561, - "functionName": "n", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 13291, - "functionName": "c.querySelectorAll.n", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822111.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 13803396 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822112.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 29294, - "functionName": "f.expr.f.expr.filters.f.expr.filters.hidden", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 8522, - "functionName": "n.selectors.filter.PSEUDO", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 3043, - "functionName": "n.filter", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 1561, - "functionName": "n", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 13291, - "functionName": "c.querySelectorAll.n", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822111.957, - "totalHeapSize": 20605952, - "type": "Layout", - "usedHeapSize": 13803620 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822112.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 28753, - "functionName": "c.defaultView.c.defaultView.getComputedStyle.Db", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 26660, - "functionName": "f.extend.cssHooks.opacity.get", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 27478, - "functionName": "f.extend.css", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 42986, - "functionName": "f.fx.cur", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 41056, - "functionName": "g", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822112.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 13810092 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822112.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 28753, - "functionName": "c.defaultView.c.defaultView.getComputedStyle.Db", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 26660, - "functionName": "f.extend.cssHooks.opacity.get", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 27478, - "functionName": "f.extend.css", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 42986, - "functionName": "f.fx.cur", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 41056, - "functionName": "g", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822112.957, - "totalHeapSize": 20605952, - "type": "Layout", - "usedHeapSize": 13810316 - }, - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 29 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43182, - "functionName": "f.fx.custom", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 41120, - "functionName": "g", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 23951, - "functionName": "f.extend.dequeue", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 24234, - "functionName": "f.fn.extend.queue", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822113.957, - "totalHeapSize": 20605952, - "type": "TimerInstall", - "usedHeapSize": 13812140 - } - ], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822113.957, - "frameId": "2036.1", - "startTime": 1348171822110.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13818420 - } - ], - "data": { - "type": "load" - }, - "endTime": 1348171822113.957, - "frameId": "2036.1", - "startTime": 1348171822110.957, - "totalHeapSize": 20605952, - "type": "EventDispatch", - "usedHeapSize": 13818420 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822113.957, - "frameId": "2036.1", - "startTime": 1348171822113.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 13818420 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822113.957, - "frameId": "2036.1", - "startTime": 1348171822113.957, - "totalHeapSize": 20605952, - "type": "Layout", - "usedHeapSize": 13818420 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822118.957, - "frameId": "2036.1", - "startTime": 1348171822118.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13818464 - } - ], - "data": { - "timerId": 29 - }, - "endTime": 1348171822118.957, - "frameId": "2036.1", - "startTime": 1348171822118.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13818464 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 30 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822118.957, - "totalHeapSize": 20605952, - "type": "TimerInstall", - "usedHeapSize": 13818728 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822119.957, - "frameId": "2036.1", - "startTime": 1348171822118.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13820252 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822119.957, - "frameId": "2036.1", - "startTime": 1348171822118.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13820252 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822119.957, - "frameId": "2036.1", - "startTime": 1348171822119.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13820296 - } - ], - "data": { - "timerId": 30 - }, - "endTime": 1348171822119.957, - "frameId": "2036.1", - "startTime": 1348171822119.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13820296 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822119.957, - "frameId": "2036.1", - "startTime": 1348171822119.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 13820296 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 31 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822132.957, - "totalHeapSize": 20605952, - "type": "TimerInstall", - "usedHeapSize": 13820560 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822132.957, - "frameId": "2036.1", - "startTime": 1348171822132.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13822072 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822132.957, - "frameId": "2036.1", - "startTime": 1348171822132.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13822072 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822132.957, - "frameId": "2036.1", - "startTime": 1348171822132.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 13822072 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822136.957, - "frameId": "2036.1", - "startTime": 1348171822136.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13822116 - } - ], - "data": { - "timerId": 31 - }, - "endTime": 1348171822136.957, - "frameId": "2036.1", - "startTime": 1348171822136.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13822116 - }, - { - "children": [], - "data": { - "requestId": "2036.27" - }, - "endTime": 1348171822136.957, - "frameId": "2036.1", - "startTime": 1348171822136.957, - "totalHeapSize": 20605952, - "type": "ResourceReceivedData", - "usedHeapSize": 13822116 - }, - { - "children": [], - "data": { - "requestId": "2036.27" - }, - "endTime": 1348171822136.957, - "frameId": "2036.1", - "startTime": 1348171822136.957, - "totalHeapSize": 20605952, - "type": "ResourceReceivedData", - "usedHeapSize": 13822116 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 32 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822157.957, - "totalHeapSize": 20605952, - "type": "TimerInstall", - "usedHeapSize": 13822380 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822157.957, - "frameId": "2036.1", - "startTime": 1348171822157.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13823900 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822157.957, - "frameId": "2036.1", - "startTime": 1348171822157.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13823900 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822161.957, - "frameId": "2036.1", - "startTime": 1348171822161.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 13823900 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822163.957, - "frameId": "2036.1", - "startTime": 1348171822163.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13823944 - } - ], - "data": { - "timerId": 32 - }, - "endTime": 1348171822163.957, - "frameId": "2036.1", - "startTime": 1348171822163.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13823944 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 33 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822170.957, - "totalHeapSize": 20605952, - "type": "TimerInstall", - "usedHeapSize": 13824208 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822170.957, - "frameId": "2036.1", - "startTime": 1348171822170.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13825728 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822170.957, - "frameId": "2036.1", - "startTime": 1348171822170.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13825728 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822170.957, - "frameId": "2036.1", - "startTime": 1348171822170.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 13825728 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822183.957, - "frameId": "2036.1", - "startTime": 1348171822183.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13825772 - } - ], - "data": { - "timerId": 33 - }, - "endTime": 1348171822183.957, - "frameId": "2036.1", - "startTime": 1348171822183.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13825772 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 34 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822185.957, - "totalHeapSize": 20605952, - "type": "TimerInstall", - "usedHeapSize": 13826036 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822185.957, - "frameId": "2036.1", - "startTime": 1348171822185.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13827556 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822185.957, - "frameId": "2036.1", - "startTime": 1348171822185.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13827556 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822187.957, - "frameId": "2036.1", - "startTime": 1348171822187.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 13827556 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822191.957, - "frameId": "2036.1", - "startTime": 1348171822191.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13827600 - } - ], - "data": { - "timerId": 34 - }, - "endTime": 1348171822191.957, - "frameId": "2036.1", - "startTime": 1348171822191.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13827600 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 35 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822197.957, - "totalHeapSize": 20605952, - "type": "TimerInstall", - "usedHeapSize": 13827864 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822197.957, - "frameId": "2036.1", - "startTime": 1348171822197.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13829384 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822197.957, - "frameId": "2036.1", - "startTime": 1348171822197.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13829384 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822200.957, - "frameId": "2036.1", - "startTime": 1348171822200.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 13829384 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822204.957, - "frameId": "2036.1", - "startTime": 1348171822204.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13829428 - } - ], - "data": { - "timerId": 35 - }, - "endTime": 1348171822204.957, - "frameId": "2036.1", - "startTime": 1348171822204.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13829428 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 36 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822211.957, - "totalHeapSize": 20605952, - "type": "TimerInstall", - "usedHeapSize": 13829692 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822211.957, - "frameId": "2036.1", - "startTime": 1348171822211.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13831212 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822211.957, - "frameId": "2036.1", - "startTime": 1348171822211.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13831212 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822211.957, - "frameId": "2036.1", - "startTime": 1348171822211.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 13831212 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822216.957, - "frameId": "2036.1", - "startTime": 1348171822216.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13831256 - } - ], - "data": { - "timerId": 36 - }, - "endTime": 1348171822216.957, - "frameId": "2036.1", - "startTime": 1348171822216.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13831256 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 37 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822224.957, - "totalHeapSize": 20605952, - "type": "TimerInstall", - "usedHeapSize": 13831520 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822224.957, - "frameId": "2036.1", - "startTime": 1348171822224.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13833040 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822224.957, - "frameId": "2036.1", - "startTime": 1348171822224.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13833040 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822226.957, - "frameId": "2036.1", - "startTime": 1348171822226.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 13833040 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822228.957, - "frameId": "2036.1", - "startTime": 1348171822228.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13833084 - } - ], - "data": { - "timerId": 37 - }, - "endTime": 1348171822228.957, - "frameId": "2036.1", - "startTime": 1348171822228.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13833084 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 38 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822238.957, - "totalHeapSize": 20605952, - "type": "TimerInstall", - "usedHeapSize": 13833348 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822238.957, - "frameId": "2036.1", - "startTime": 1348171822238.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13834868 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822238.957, - "frameId": "2036.1", - "startTime": 1348171822238.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13834868 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822242.957, - "frameId": "2036.1", - "startTime": 1348171822242.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 13834868 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822244.957, - "frameId": "2036.1", - "startTime": 1348171822244.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13834912 - } - ], - "data": { - "timerId": 38 - }, - "endTime": 1348171822244.957, - "frameId": "2036.1", - "startTime": 1348171822244.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13834912 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 39 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822251.957, - "totalHeapSize": 20605952, - "type": "TimerInstall", - "usedHeapSize": 13835176 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822251.957, - "frameId": "2036.1", - "startTime": 1348171822251.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13836696 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822251.957, - "frameId": "2036.1", - "startTime": 1348171822251.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13836696 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822251.957, - "frameId": "2036.1", - "startTime": 1348171822251.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 13836696 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822254.957, - "frameId": "2036.1", - "startTime": 1348171822254.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13836740 - } - ], - "data": { - "timerId": 39 - }, - "endTime": 1348171822254.957, - "frameId": "2036.1", - "startTime": 1348171822254.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13836740 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1582, - "scriptName": "native v8natives.js" - }, - "endTime": 1348171822264.957, - "frameId": "2036.1", - "startTime": 1348171822264.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13837880 - } - ], - "data": { - "timerId": 3 - }, - "endTime": 1348171822264.957, - "frameId": "2036.1", - "startTime": 1348171822264.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13837880 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 40 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822264.957, - "totalHeapSize": 20605952, - "type": "TimerInstall", - "usedHeapSize": 13838144 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822264.957, - "frameId": "2036.1", - "startTime": 1348171822264.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13839664 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822264.957, - "frameId": "2036.1", - "startTime": 1348171822264.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13839664 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822264.957, - "frameId": "2036.1", - "startTime": 1348171822264.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 13839664 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822265.957, - "frameId": "2036.1", - "startTime": 1348171822265.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13839708 - } - ], - "data": { - "timerId": 40 - }, - "endTime": 1348171822265.957, - "frameId": "2036.1", - "startTime": 1348171822265.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13839708 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 41 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822278.957, - "totalHeapSize": 20605952, - "type": "TimerInstall", - "usedHeapSize": 13839972 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822278.957, - "frameId": "2036.1", - "startTime": 1348171822278.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13841492 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822278.957, - "frameId": "2036.1", - "startTime": 1348171822278.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13841492 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822278.957, - "frameId": "2036.1", - "startTime": 1348171822278.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 13841492 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822284.957, - "frameId": "2036.1", - "startTime": 1348171822284.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13841536 - } - ], - "data": { - "timerId": 41 - }, - "endTime": 1348171822284.957, - "frameId": "2036.1", - "startTime": 1348171822284.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13841536 - }, - { - "children": [], - "data": { - "requestId": "2036.27" - }, - "endTime": 1348171822287.957, - "frameId": "2036.1", - "startTime": 1348171822287.957, - "totalHeapSize": 20605952, - "type": "ResourceReceivedData", - "usedHeapSize": 13841536 - }, - { - "data": { - "didFail": false, - "networkTime": 1348171822280.957, - "requestId": "2036.27" - }, - "frameId": "2036.1", - "startTime": 1348171822287.957, - "totalHeapSize": 20605952, - "type": "ResourceFinish", - "usedHeapSize": 13841536 - }, - { - "children": [ - { - "children": [ - { - "children": [], - "data": {}, - "endTime": 1348171822289.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 29294, - "functionName": "f.expr.f.expr.filters.f.expr.filters.hidden", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 8522, - "functionName": "n.selectors.filter.PSEUDO", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 3043, - "functionName": "n.filter", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 1561, - "functionName": "n", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 13291, - "functionName": "c.querySelectorAll.n", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822289.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 13851144 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822289.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 29294, - "functionName": "f.expr.f.expr.filters.f.expr.filters.hidden", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 8522, - "functionName": "n.selectors.filter.PSEUDO", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 3043, - "functionName": "n.filter", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 1561, - "functionName": "n", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 13291, - "functionName": "c.querySelectorAll.n", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822289.957, - "totalHeapSize": 20605952, - "type": "Layout", - "usedHeapSize": 13851368 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822289.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 28753, - "functionName": "c.defaultView.c.defaultView.getComputedStyle.Db", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 26660, - "functionName": "f.extend.cssHooks.opacity.get", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 27478, - "functionName": "f.extend.css", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 42986, - "functionName": "f.fx.cur", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 41056, - "functionName": "g", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822289.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 13853492 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822289.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 28753, - "functionName": "c.defaultView.c.defaultView.getComputedStyle.Db", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 26660, - "functionName": "f.extend.cssHooks.opacity.get", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 27478, - "functionName": "f.extend.css", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 42986, - "functionName": "f.fx.cur", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 41056, - "functionName": "g", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822289.957, - "totalHeapSize": 20605952, - "type": "Layout", - "usedHeapSize": 13853716 - }, - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 42 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43182, - "functionName": "f.fx.custom", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 41120, - "functionName": "g", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 23951, - "functionName": "f.extend.dequeue", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 24234, - "functionName": "f.fn.extend.queue", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822289.957, - "totalHeapSize": 20605952, - "type": "TimerInstall", - "usedHeapSize": 13855332 - } - ], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822289.957, - "frameId": "2036.1", - "startTime": 1348171822287.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13857300 - } - ], - "data": { - "type": "load" - }, - "endTime": 1348171822289.957, - "frameId": "2036.1", - "startTime": 1348171822287.957, - "totalHeapSize": 20605952, - "type": "EventDispatch", - "usedHeapSize": 13857300 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 43 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 10, - "functionName": "", - "lineNumber": 81, - "url": "chrome-extension://ejfgipfkkpdadoidbhfedneaabgolbno/wpt/script.js" - } - ], - "startTime": 1348171822290.957, - "totalHeapSize": 20605952, - "type": "TimerInstall", - "usedHeapSize": 13881744 - } - ], - "data": { - "scriptLine": 80, - "scriptName": "chrome-extension://ejfgipfkkpdadoidbhfedneaabgolbno/wpt/script.js" - }, - "endTime": 1348171822290.957, - "frameId": "2036.1", - "startTime": 1348171822290.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13881744 - }, - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822290.957, - "frameId": "2036.1", - "startTime": 1348171822290.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13881808 - } - ], - "data": { - "type": "load" - }, - "endTime": 1348171822290.957, - "frameId": "2036.1", - "startTime": 1348171822290.957, - "totalHeapSize": 20605952, - "type": "EventDispatch", - "usedHeapSize": 13881808 - }, - { - "data": {}, - "frameId": "2036.1", - "startTime": 1348171822290.957, - "totalHeapSize": 20605952, - "type": "MarkLoad", - "usedHeapSize": 13881808 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822291.957, - "frameId": "2036.1", - "startTime": 1348171822290.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 13881808 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822291.957, - "frameId": "2036.1", - "startTime": 1348171822291.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13881852 - } - ], - "data": { - "timerId": 42 - }, - "endTime": 1348171822291.957, - "frameId": "2036.1", - "startTime": 1348171822291.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13881852 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822291.957, - "frameId": "2036.1", - "startTime": 1348171822291.957, - "totalHeapSize": 20605952, - "type": "Layout", - "usedHeapSize": 13881852 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 59, - "scriptName": "chrome-extension://ejfgipfkkpdadoidbhfedneaabgolbno/wpt/script.js" - }, - "endTime": 1348171822317.957, - "frameId": "2036.1", - "startTime": 1348171822291.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13917588 - } - ], - "data": { - "timerId": 43 - }, - "endTime": 1348171822317.957, - "frameId": "2036.1", - "startTime": 1348171822291.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13917588 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 44 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822317.957, - "totalHeapSize": 20605952, - "type": "TimerInstall", - "usedHeapSize": 13917852 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822317.957, - "frameId": "2036.1", - "startTime": 1348171822317.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13919596 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822317.957, - "frameId": "2036.1", - "startTime": 1348171822317.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13919596 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822320.957, - "frameId": "2036.1", - "startTime": 1348171822320.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 13919596 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822320.957, - "frameId": "2036.1", - "startTime": 1348171822320.957, - "totalHeapSize": 20605952, - "type": "FunctionCall", - "usedHeapSize": 13919640 - } - ], - "data": { - "timerId": 44 - }, - "endTime": 1348171822320.957, - "frameId": "2036.1", - "startTime": 1348171822320.957, - "totalHeapSize": 20605952, - "type": "TimerFire", - "usedHeapSize": 13919640 - }, - { - "children": [], - "data": { - "mimeType": "text/html", - "requestId": "2036.33", - "statusCode": 200 - }, - "endTime": 1348171822322.957, - "frameId": "2036.7", - "startTime": 1348171822322.957, - "totalHeapSize": 20605952, - "type": "ResourceReceiveResponse", - "usedHeapSize": 13919640 - }, - { - "data": { - "requestId": "2036.36", - "requestMethod": "GET", - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - "frameId": "2036.7", - "stackTrace": [ - { - "columnNumber": 4076, - "functionName": "B.createScriptTag", - "lineNumber": 11, - "url": "https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1" - }, - { - "columnNumber": 4263, - "functionName": "B.load", - "lineNumber": 11, - "url": "https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1" - }, - { - "columnNumber": 4834, - "functionName": "C.start", - "lineNumber": 11, - "url": "https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1" - }, - { - "columnNumber": 2912, - "functionName": "A.then", - "lineNumber": 11, - "url": "https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1" - }, - { - "columnNumber": 5655, - "functionName": "E.start", - "lineNumber": 11, - "url": "https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1" - } - ], - "startTime": 1348171822347.957, - "totalHeapSize": 21609472, - "type": "ResourceSendRequest", - "usedHeapSize": 14371776 - }, - { - "children": [ - { - "children": [], - "data": {}, - "endTime": 1348171822322.957, - "frameId": "2036.7", - "startTime": 1348171822322.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 13919640 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822323.957, - "frameId": "2036.7", - "startTime": 1348171822323.957, - "totalHeapSize": 20605952, - "type": "RecalculateStyles", - "usedHeapSize": 13919640 - }, - { - "children": [ - { - "children": [], - "data": { - "lineNumber": 11, - "url": "https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1" - }, - "endTime": 1348171822346.957, - "frameId": "2036.7", - "startTime": 1348171822328.957, - "totalHeapSize": 21609472, - "type": "EvaluateScript", - "usedHeapSize": 14345172 - }, - { - "children": [], - "data": { - "lineNumber": 12, - "url": "https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1" - }, - "endTime": 1348171822346.957, - "frameId": "2036.7", - "startTime": 1348171822346.957, - "totalHeapSize": 21609472, - "type": "EvaluateScript", - "usedHeapSize": 14347100 - }, - { - "children": [ - { - "data": { - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - "frameId": "2036.7", - "stackTrace": [ - { - "columnNumber": 4076, - "functionName": "B.createScriptTag", - "lineNumber": 11, - "url": "https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1" - }, - { - "columnNumber": 4263, - "functionName": "B.load", - "lineNumber": 11, - "url": "https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1" - }, - { - "columnNumber": 4834, - "functionName": "C.start", - "lineNumber": 11, - "url": "https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1" - }, - { - "columnNumber": 2912, - "functionName": "A.then", - "lineNumber": 11, - "url": "https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1" - }, - { - "columnNumber": 5655, - "functionName": "E.start", - "lineNumber": 11, - "url": "https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1" - } - ], - "startTime": 1348171822350.957, - "totalHeapSize": 21609472, - "type": "ScheduleResourceRequest", - "usedHeapSize": 14373224 - } - ], - "data": { - "lineNumber": 14, - "url": "https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1" - }, - "endTime": 1348171822350.957, - "frameId": "2036.7", - "startTime": 1348171822346.957, - "totalHeapSize": 21609472, - "type": "EvaluateScript", - "usedHeapSize": 14376168 - } - ], - "data": { - "endLine": 37, - "length": 8140, - "startLine": 0 - }, - "endTime": 1348171822350.957, - "frameId": "2036.7", - "startTime": 1348171822323.957, - "totalHeapSize": 21609472, - "type": "ParseHTML", - "usedHeapSize": 14376168 - } - ], - "data": { - "requestId": "2036.33" - }, - "endTime": 1348171822350.957, - "frameId": "2036.7", - "startTime": 1348171822322.957, - "totalHeapSize": 21609472, - "type": "ResourceReceivedData", - "usedHeapSize": 14376168 - }, - { - "children": [], - "data": { - "endLine": 37, - "length": 1, - "startLine": 37 - }, - "endTime": 1348171822353.957, - "frameId": "2036.7", - "startTime": 1348171822353.957, - "totalHeapSize": 21609472, - "type": "ParseHTML", - "usedHeapSize": 14376168 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822358.957, - "frameId": "2036.7", - "startTime": 1348171822358.957, - "totalHeapSize": 21609472, - "type": "RecalculateStyles", - "usedHeapSize": 14376168 - }, - { - "data": {}, - "frameId": "2036.7", - "startTime": 1348171822362.957, - "totalHeapSize": 21609472, - "type": "MarkDOMContent", - "usedHeapSize": 14376168 - }, - { - "data": { - "didFail": false, - "networkTime": 1348171822322.957, - "requestId": "2036.33" - }, - "frameId": "2036.7", - "startTime": 1348171822366.957, - "totalHeapSize": 21609472, - "type": "ResourceFinish", - "usedHeapSize": 14376168 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 45 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822370.957, - "totalHeapSize": 21609472, - "type": "TimerInstall", - "usedHeapSize": 14376432 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822370.957, - "frameId": "2036.1", - "startTime": 1348171822370.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14378172 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822370.957, - "frameId": "2036.1", - "startTime": 1348171822370.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14378172 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822374.957, - "frameId": "2036.1", - "startTime": 1348171822374.957, - "totalHeapSize": 21609472, - "type": "RecalculateStyles", - "usedHeapSize": 14378172 - }, - { - "children": [], - "data": { - "scriptLine": 81, - "scriptName": "miscellaneous_bindings" - }, - "endTime": 1348171822376.957, - "frameId": "2036.1", - "startTime": 1348171822376.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14378352 - }, - { - "children": [], - "data": { - "scriptLine": 244, - "scriptName": "miscellaneous_bindings" - }, - "endTime": 1348171822378.957, - "frameId": "2036.1", - "startTime": 1348171822378.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14381792 - }, - { - "children": [], - "data": { - "scriptLine": 222, - "scriptName": "miscellaneous_bindings" - }, - "endTime": 1348171822378.957, - "frameId": "2036.1", - "startTime": 1348171822378.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14382024 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822378.957, - "frameId": "2036.1", - "startTime": 1348171822378.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14382108 - } - ], - "data": { - "timerId": 45 - }, - "endTime": 1348171822378.957, - "frameId": "2036.1", - "startTime": 1348171822378.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14382108 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 46 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822387.957, - "totalHeapSize": 21609472, - "type": "TimerInstall", - "usedHeapSize": 14382372 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822387.957, - "frameId": "2036.1", - "startTime": 1348171822387.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14384068 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822387.957, - "frameId": "2036.1", - "startTime": 1348171822387.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14384068 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822389.957, - "frameId": "2036.1", - "startTime": 1348171822389.957, - "totalHeapSize": 21609472, - "type": "RecalculateStyles", - "usedHeapSize": 14384068 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822391.957, - "frameId": "2036.1", - "startTime": 1348171822391.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14384112 - } - ], - "data": { - "timerId": 46 - }, - "endTime": 1348171822391.957, - "frameId": "2036.1", - "startTime": 1348171822391.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14384112 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 47 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822401.957, - "totalHeapSize": 21609472, - "type": "TimerInstall", - "usedHeapSize": 14384376 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822401.957, - "frameId": "2036.1", - "startTime": 1348171822401.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14386116 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822401.957, - "frameId": "2036.1", - "startTime": 1348171822401.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14386116 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822403.957, - "frameId": "2036.1", - "startTime": 1348171822403.957, - "totalHeapSize": 21609472, - "type": "RecalculateStyles", - "usedHeapSize": 14386116 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822405.957, - "frameId": "2036.1", - "startTime": 1348171822405.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14386160 - } - ], - "data": { - "timerId": 47 - }, - "endTime": 1348171822405.957, - "frameId": "2036.1", - "startTime": 1348171822405.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14386160 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 48 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822415.957, - "totalHeapSize": 21609472, - "type": "TimerInstall", - "usedHeapSize": 14386424 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822415.957, - "frameId": "2036.1", - "startTime": 1348171822415.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14388164 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822415.957, - "frameId": "2036.1", - "startTime": 1348171822415.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14388164 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822416.957, - "frameId": "2036.1", - "startTime": 1348171822416.957, - "totalHeapSize": 21609472, - "type": "RecalculateStyles", - "usedHeapSize": 14388164 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822420.957, - "frameId": "2036.1", - "startTime": 1348171822419.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14388208 - } - ], - "data": { - "timerId": 48 - }, - "endTime": 1348171822420.957, - "frameId": "2036.1", - "startTime": 1348171822419.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14388208 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 49 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822428.957, - "totalHeapSize": 21609472, - "type": "TimerInstall", - "usedHeapSize": 14388472 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822428.957, - "frameId": "2036.1", - "startTime": 1348171822428.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14390212 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822428.957, - "frameId": "2036.1", - "startTime": 1348171822428.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14390212 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822428.957, - "frameId": "2036.1", - "startTime": 1348171822428.957, - "totalHeapSize": 21609472, - "type": "RecalculateStyles", - "usedHeapSize": 14390212 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822431.957, - "frameId": "2036.1", - "startTime": 1348171822431.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14390256 - } - ], - "data": { - "timerId": 49 - }, - "endTime": 1348171822431.957, - "frameId": "2036.1", - "startTime": 1348171822431.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14390256 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 50 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822442.957, - "totalHeapSize": 21609472, - "type": "TimerInstall", - "usedHeapSize": 14390520 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822442.957, - "frameId": "2036.1", - "startTime": 1348171822442.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14392260 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822442.957, - "frameId": "2036.1", - "startTime": 1348171822442.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14392260 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822446.957, - "frameId": "2036.1", - "startTime": 1348171822446.957, - "totalHeapSize": 21609472, - "type": "RecalculateStyles", - "usedHeapSize": 14392260 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822449.957, - "frameId": "2036.1", - "startTime": 1348171822449.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14392304 - } - ], - "data": { - "timerId": 50 - }, - "endTime": 1348171822449.957, - "frameId": "2036.1", - "startTime": 1348171822449.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14392304 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 51 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822456.957, - "totalHeapSize": 21609472, - "type": "TimerInstall", - "usedHeapSize": 14392568 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822456.957, - "frameId": "2036.1", - "startTime": 1348171822456.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14394308 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822456.957, - "frameId": "2036.1", - "startTime": 1348171822456.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14394308 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822459.957, - "frameId": "2036.1", - "startTime": 1348171822459.957, - "totalHeapSize": 21609472, - "type": "RecalculateStyles", - "usedHeapSize": 14394308 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822461.957, - "frameId": "2036.1", - "startTime": 1348171822461.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14394352 - } - ], - "data": { - "timerId": 51 - }, - "endTime": 1348171822461.957, - "frameId": "2036.1", - "startTime": 1348171822461.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14394352 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 52 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822469.957, - "totalHeapSize": 21609472, - "type": "TimerInstall", - "usedHeapSize": 14394616 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822469.957, - "frameId": "2036.1", - "startTime": 1348171822469.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14396356 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822469.957, - "frameId": "2036.1", - "startTime": 1348171822469.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14396356 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822471.957, - "frameId": "2036.1", - "startTime": 1348171822471.957, - "totalHeapSize": 21609472, - "type": "RecalculateStyles", - "usedHeapSize": 14396356 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822479.957, - "frameId": "2036.1", - "startTime": 1348171822479.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14396400 - } - ], - "data": { - "timerId": 52 - }, - "endTime": 1348171822479.957, - "frameId": "2036.1", - "startTime": 1348171822479.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14396400 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 53 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822482.957, - "totalHeapSize": 21609472, - "type": "TimerInstall", - "usedHeapSize": 14396664 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822482.957, - "frameId": "2036.1", - "startTime": 1348171822482.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14398404 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822482.957, - "frameId": "2036.1", - "startTime": 1348171822482.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14398404 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822484.957, - "frameId": "2036.1", - "startTime": 1348171822484.957, - "totalHeapSize": 21609472, - "type": "RecalculateStyles", - "usedHeapSize": 14398404 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822484.957, - "frameId": "2036.1", - "startTime": 1348171822484.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14398448 - } - ], - "data": { - "timerId": 53 - }, - "endTime": 1348171822484.957, - "frameId": "2036.1", - "startTime": 1348171822484.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14398448 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 54 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822496.957, - "totalHeapSize": 21609472, - "type": "TimerInstall", - "usedHeapSize": 14398712 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822496.957, - "frameId": "2036.1", - "startTime": 1348171822496.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14400452 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822496.957, - "frameId": "2036.1", - "startTime": 1348171822496.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14400452 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822496.957, - "frameId": "2036.1", - "startTime": 1348171822496.957, - "totalHeapSize": 21609472, - "type": "RecalculateStyles", - "usedHeapSize": 14400452 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822497.957, - "frameId": "2036.1", - "startTime": 1348171822497.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14400496 - } - ], - "data": { - "timerId": 54 - }, - "endTime": 1348171822497.957, - "frameId": "2036.1", - "startTime": 1348171822497.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14400496 - }, - { - "children": [], - "data": { - "mimeType": "application/javascript", - "requestId": "2036.36", - "statusCode": 200 - }, - "endTime": 1348171822502.957, - "frameId": "2036.7", - "startTime": 1348171822502.957, - "totalHeapSize": 21609472, - "type": "ResourceReceiveResponse", - "usedHeapSize": 14400496 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 55 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822510.957, - "totalHeapSize": 21609472, - "type": "TimerInstall", - "usedHeapSize": 14400760 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822510.957, - "frameId": "2036.1", - "startTime": 1348171822510.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14402500 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822510.957, - "frameId": "2036.1", - "startTime": 1348171822510.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14402500 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822510.957, - "frameId": "2036.1", - "startTime": 1348171822510.957, - "totalHeapSize": 21609472, - "type": "RecalculateStyles", - "usedHeapSize": 14402500 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822511.957, - "frameId": "2036.1", - "startTime": 1348171822511.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14402544 - } - ], - "data": { - "timerId": 55 - }, - "endTime": 1348171822511.957, - "frameId": "2036.1", - "startTime": 1348171822511.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14402544 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 56 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822524.957, - "totalHeapSize": 21609472, - "type": "TimerInstall", - "usedHeapSize": 14402808 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822524.957, - "frameId": "2036.1", - "startTime": 1348171822524.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14404548 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822524.957, - "frameId": "2036.1", - "startTime": 1348171822524.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14404548 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822524.957, - "frameId": "2036.1", - "startTime": 1348171822524.957, - "totalHeapSize": 21609472, - "type": "RecalculateStyles", - "usedHeapSize": 14404548 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822529.957, - "frameId": "2036.1", - "startTime": 1348171822529.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14404592 - } - ], - "data": { - "timerId": 56 - }, - "endTime": 1348171822529.957, - "frameId": "2036.1", - "startTime": 1348171822529.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14404592 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 57 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822538.957, - "totalHeapSize": 21609472, - "type": "TimerInstall", - "usedHeapSize": 14404856 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822538.957, - "frameId": "2036.1", - "startTime": 1348171822538.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14406596 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822538.957, - "frameId": "2036.1", - "startTime": 1348171822538.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14406596 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822538.957, - "frameId": "2036.1", - "startTime": 1348171822538.957, - "totalHeapSize": 21609472, - "type": "RecalculateStyles", - "usedHeapSize": 14406596 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822539.957, - "frameId": "2036.1", - "startTime": 1348171822539.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14406640 - } - ], - "data": { - "timerId": 57 - }, - "endTime": 1348171822539.957, - "frameId": "2036.1", - "startTime": 1348171822539.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14406640 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 58 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822551.957, - "totalHeapSize": 21609472, - "type": "TimerInstall", - "usedHeapSize": 14406904 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822551.957, - "frameId": "2036.1", - "startTime": 1348171822551.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14408644 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822551.957, - "frameId": "2036.1", - "startTime": 1348171822551.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14408644 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822554.957, - "frameId": "2036.1", - "startTime": 1348171822554.957, - "totalHeapSize": 21609472, - "type": "RecalculateStyles", - "usedHeapSize": 14408644 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822556.957, - "frameId": "2036.1", - "startTime": 1348171822556.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14408688 - } - ], - "data": { - "timerId": 58 - }, - "endTime": 1348171822556.957, - "frameId": "2036.1", - "startTime": 1348171822556.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14408688 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 59 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822565.957, - "totalHeapSize": 21609472, - "type": "TimerInstall", - "usedHeapSize": 14408952 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822565.957, - "frameId": "2036.1", - "startTime": 1348171822565.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14410692 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822565.957, - "frameId": "2036.1", - "startTime": 1348171822565.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14410692 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822566.957, - "frameId": "2036.1", - "startTime": 1348171822566.957, - "totalHeapSize": 21609472, - "type": "RecalculateStyles", - "usedHeapSize": 14410692 - }, - { - "children": [], - "data": { - "requestId": "2036.36" - }, - "endTime": 1348171822568.957, - "frameId": "2036.7", - "startTime": 1348171822568.957, - "totalHeapSize": 21609472, - "type": "ResourceReceivedData", - "usedHeapSize": 14410692 - }, - { - "children": [], - "data": { - "requestId": "2036.36" - }, - "endTime": 1348171822572.957, - "frameId": "2036.7", - "startTime": 1348171822572.957, - "totalHeapSize": 21609472, - "type": "ResourceReceivedData", - "usedHeapSize": 14410692 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822572.957, - "frameId": "2036.1", - "startTime": 1348171822572.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14410736 - } - ], - "data": { - "timerId": 59 - }, - "endTime": 1348171822572.957, - "frameId": "2036.1", - "startTime": 1348171822572.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14410736 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822579.957, - "frameId": "2036.7", - "startTime": 1348171822578.957, - "totalHeapSize": 21609472, - "type": "Layout", - "usedHeapSize": 14410736 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 60 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822580.957, - "totalHeapSize": 21609472, - "type": "TimerInstall", - "usedHeapSize": 14411000 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822580.957, - "frameId": "2036.1", - "startTime": 1348171822580.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14412740 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822580.957, - "frameId": "2036.1", - "startTime": 1348171822580.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14412740 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822580.957, - "frameId": "2036.1", - "startTime": 1348171822580.957, - "totalHeapSize": 21609472, - "type": "RecalculateStyles", - "usedHeapSize": 14412740 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822587.957, - "frameId": "2036.1", - "startTime": 1348171822587.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14412784 - } - ], - "data": { - "timerId": 60 - }, - "endTime": 1348171822587.957, - "frameId": "2036.1", - "startTime": 1348171822587.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14412784 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 61 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822592.957, - "totalHeapSize": 21609472, - "type": "TimerInstall", - "usedHeapSize": 14413048 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822592.957, - "frameId": "2036.1", - "startTime": 1348171822592.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14414788 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822592.957, - "frameId": "2036.1", - "startTime": 1348171822592.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14414788 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822595.957, - "frameId": "2036.1", - "startTime": 1348171822595.957, - "totalHeapSize": 21609472, - "type": "RecalculateStyles", - "usedHeapSize": 14414788 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822597.957, - "frameId": "2036.1", - "startTime": 1348171822597.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14414832 - } - ], - "data": { - "timerId": 61 - }, - "endTime": 1348171822597.957, - "frameId": "2036.1", - "startTime": 1348171822597.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14414832 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 62 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822605.957, - "totalHeapSize": 21609472, - "type": "TimerInstall", - "usedHeapSize": 14415096 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822605.957, - "frameId": "2036.1", - "startTime": 1348171822605.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14416836 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822605.957, - "frameId": "2036.1", - "startTime": 1348171822605.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14416836 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822606.957, - "frameId": "2036.1", - "startTime": 1348171822606.957, - "totalHeapSize": 21609472, - "type": "RecalculateStyles", - "usedHeapSize": 14416836 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822609.957, - "frameId": "2036.1", - "startTime": 1348171822609.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14416880 - } - ], - "data": { - "timerId": 62 - }, - "endTime": 1348171822609.957, - "frameId": "2036.1", - "startTime": 1348171822609.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14416880 - }, - { - "children": [], - "data": { - "requestId": "2036.36" - }, - "endTime": 1348171822619.957, - "frameId": "2036.7", - "startTime": 1348171822619.957, - "totalHeapSize": 21609472, - "type": "ResourceReceivedData", - "usedHeapSize": 14416880 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 63 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822621.957, - "totalHeapSize": 21609472, - "type": "TimerInstall", - "usedHeapSize": 14417144 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822621.957, - "frameId": "2036.1", - "startTime": 1348171822621.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14420508 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822621.957, - "frameId": "2036.1", - "startTime": 1348171822621.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14420508 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822623.957, - "frameId": "2036.1", - "startTime": 1348171822623.957, - "totalHeapSize": 21609472, - "type": "RecalculateStyles", - "usedHeapSize": 14420508 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822628.957, - "frameId": "2036.1", - "startTime": 1348171822628.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14420552 - } - ], - "data": { - "timerId": 63 - }, - "endTime": 1348171822628.957, - "frameId": "2036.1", - "startTime": 1348171822628.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14420552 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 64 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822635.957, - "totalHeapSize": 21609472, - "type": "TimerInstall", - "usedHeapSize": 14420816 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822635.957, - "frameId": "2036.1", - "startTime": 1348171822635.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14422556 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822635.957, - "frameId": "2036.1", - "startTime": 1348171822635.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14422556 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822637.957, - "frameId": "2036.1", - "startTime": 1348171822637.957, - "totalHeapSize": 21609472, - "type": "RecalculateStyles", - "usedHeapSize": 14422556 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822640.957, - "frameId": "2036.1", - "startTime": 1348171822640.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14422600 - } - ], - "data": { - "timerId": 64 - }, - "endTime": 1348171822640.957, - "frameId": "2036.1", - "startTime": 1348171822640.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14422600 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 65 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822649.957, - "totalHeapSize": 21609472, - "type": "TimerInstall", - "usedHeapSize": 14422864 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822649.957, - "frameId": "2036.1", - "startTime": 1348171822649.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14424604 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822649.957, - "frameId": "2036.1", - "startTime": 1348171822649.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14424604 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822649.957, - "frameId": "2036.1", - "startTime": 1348171822649.957, - "totalHeapSize": 21609472, - "type": "RecalculateStyles", - "usedHeapSize": 14424604 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822653.957, - "frameId": "2036.1", - "startTime": 1348171822653.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14424648 - } - ], - "data": { - "timerId": 65 - }, - "endTime": 1348171822653.957, - "frameId": "2036.1", - "startTime": 1348171822653.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14424648 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 66 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822662.957, - "totalHeapSize": 21609472, - "type": "TimerInstall", - "usedHeapSize": 14424912 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822662.957, - "frameId": "2036.1", - "startTime": 1348171822662.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14426652 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822662.957, - "frameId": "2036.1", - "startTime": 1348171822662.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14426652 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822665.957, - "frameId": "2036.1", - "startTime": 1348171822665.957, - "totalHeapSize": 21609472, - "type": "RecalculateStyles", - "usedHeapSize": 14426652 - }, - { - "children": [], - "data": { - "mimeType": "application/json", - "requestId": "2036.34", - "statusCode": 200 - }, - "endTime": 1348171822668.957, - "frameId": "2036.1", - "startTime": 1348171822668.957, - "totalHeapSize": 21609472, - "type": "ResourceReceiveResponse", - "usedHeapSize": 14426652 - }, - { - "children": [ - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822673.957, - "frameId": "2036.1", - "startTime": 1348171822673.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14426736 - } - ], - "data": { - "readyState": 2, - "url": "http://twitter.com/i/resolve.json?urls%5B%5D=http%3A%2F%2Fzoompf.com%2F2012%2F09%2Finternet-explorer-is-the-hare-and-thats-bad&urls%5B%5D=http%3A%2F%2Fwww.strangeloopnetworks.com%2Fresources%2Finfographics%2Ffall-2012-state-of-the-union%2Fposter%2F&urls%5B%5D=http%3A%2F%2Fwww.ie6countdown.com%2F&urls%5B%5D=http%3A%2F%2Ftheie7countdown.com%2F&urls%5B%5D=http%3A%2F%2Fspr.ly%2F6017TWC7&urls%5B%5D=http%3A%2F%2Fwww.codinghorror.com%2Fblog%2F2012%2F09%2Fcomputer-crime-then-and-now.html&urls%5B%5D=http%3A%2F%2Fbit.ly%2FOvLmhp&urls%5B%5D=http%3A%2F%2Fdavesgeekyideas.com%2F2012%2F09%2F14%2Fbay-area-rapid-transit-map-super-mario-kart-style%2F&urls%5B%5D=http%3A%2F%2Fkkovacs.eu%2Fcassandra-vs-mongodb-vs-couchdb-vs-redis&urls%5B%5D=http%3A%2F%2Fwww.codeproject.com%2FTips%2F457877%2Fhow-to-get-A-in-Yslow-and-tune-up-your-website" - }, - "endTime": 1348171822673.957, - "frameId": "2036.1", - "startTime": 1348171822673.957, - "totalHeapSize": 21609472, - "type": "XHRReadyStateChange", - "usedHeapSize": 14426736 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822673.957, - "frameId": "2036.1", - "startTime": 1348171822673.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14427176 - } - ], - "data": { - "readyState": 3, - "url": "http://twitter.com/i/resolve.json?urls%5B%5D=http%3A%2F%2Fzoompf.com%2F2012%2F09%2Finternet-explorer-is-the-hare-and-thats-bad&urls%5B%5D=http%3A%2F%2Fwww.strangeloopnetworks.com%2Fresources%2Finfographics%2Ffall-2012-state-of-the-union%2Fposter%2F&urls%5B%5D=http%3A%2F%2Fwww.ie6countdown.com%2F&urls%5B%5D=http%3A%2F%2Ftheie7countdown.com%2F&urls%5B%5D=http%3A%2F%2Fspr.ly%2F6017TWC7&urls%5B%5D=http%3A%2F%2Fwww.codinghorror.com%2Fblog%2F2012%2F09%2Fcomputer-crime-then-and-now.html&urls%5B%5D=http%3A%2F%2Fbit.ly%2FOvLmhp&urls%5B%5D=http%3A%2F%2Fdavesgeekyideas.com%2F2012%2F09%2F14%2Fbay-area-rapid-transit-map-super-mario-kart-style%2F&urls%5B%5D=http%3A%2F%2Fkkovacs.eu%2Fcassandra-vs-mongodb-vs-couchdb-vs-redis&urls%5B%5D=http%3A%2F%2Fwww.codeproject.com%2FTips%2F457877%2Fhow-to-get-A-in-Yslow-and-tune-up-your-website" - }, - "endTime": 1348171822673.957, - "frameId": "2036.1", - "startTime": 1348171822673.957, - "totalHeapSize": 21609472, - "type": "XHRReadyStateChange", - "usedHeapSize": 14427176 - } - ], - "data": { - "requestId": "2036.34" - }, - "endTime": 1348171822673.957, - "frameId": "2036.1", - "startTime": 1348171822673.957, - "totalHeapSize": 21609472, - "type": "ResourceReceivedData", - "usedHeapSize": 14427176 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822682.957, - "frameId": "2036.1", - "startTime": 1348171822675.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14737632 - } - ], - "data": { - "readyState": 4, - "url": "http://twitter.com/i/resolve.json?urls%5B%5D=http%3A%2F%2Fzoompf.com%2F2012%2F09%2Finternet-explorer-is-the-hare-and-thats-bad&urls%5B%5D=http%3A%2F%2Fwww.strangeloopnetworks.com%2Fresources%2Finfographics%2Ffall-2012-state-of-the-union%2Fposter%2F&urls%5B%5D=http%3A%2F%2Fwww.ie6countdown.com%2F&urls%5B%5D=http%3A%2F%2Ftheie7countdown.com%2F&urls%5B%5D=http%3A%2F%2Fspr.ly%2F6017TWC7&urls%5B%5D=http%3A%2F%2Fwww.codinghorror.com%2Fblog%2F2012%2F09%2Fcomputer-crime-then-and-now.html&urls%5B%5D=http%3A%2F%2Fbit.ly%2FOvLmhp&urls%5B%5D=http%3A%2F%2Fdavesgeekyideas.com%2F2012%2F09%2F14%2Fbay-area-rapid-transit-map-super-mario-kart-style%2F&urls%5B%5D=http%3A%2F%2Fkkovacs.eu%2Fcassandra-vs-mongodb-vs-couchdb-vs-redis&urls%5B%5D=http%3A%2F%2Fwww.codeproject.com%2FTips%2F457877%2Fhow-to-get-A-in-Yslow-and-tune-up-your-website" - }, - "endTime": 1348171822682.957, - "frameId": "2036.1", - "startTime": 1348171822675.957, - "totalHeapSize": 21609472, - "type": "XHRReadyStateChange", - "usedHeapSize": 14737632 - }, - { - "data": { - "didFail": false, - "networkTime": 1348171822668.957, - "requestId": "2036.34" - }, - "frameId": "2036.1", - "startTime": 1348171822686.957, - "totalHeapSize": 21609472, - "type": "ResourceFinish", - "usedHeapSize": 14737632 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822689.957, - "frameId": "2036.1", - "startTime": 1348171822689.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14737676 - } - ], - "data": { - "timerId": 66 - }, - "endTime": 1348171822689.957, - "frameId": "2036.1", - "startTime": 1348171822689.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14737676 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 67 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822691.957, - "totalHeapSize": 21609472, - "type": "TimerInstall", - "usedHeapSize": 14737940 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822691.957, - "frameId": "2036.1", - "startTime": 1348171822691.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14739680 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822691.957, - "frameId": "2036.1", - "startTime": 1348171822691.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14739680 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822694.957, - "frameId": "2036.1", - "startTime": 1348171822694.957, - "totalHeapSize": 21609472, - "type": "RecalculateStyles", - "usedHeapSize": 14739680 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822697.957, - "frameId": "2036.1", - "startTime": 1348171822697.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14739724 - } - ], - "data": { - "timerId": 67 - }, - "endTime": 1348171822697.957, - "frameId": "2036.1", - "startTime": 1348171822697.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14739724 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 68 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822703.957, - "totalHeapSize": 21609472, - "type": "TimerInstall", - "usedHeapSize": 14739988 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822703.957, - "frameId": "2036.1", - "startTime": 1348171822703.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14741724 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822703.957, - "frameId": "2036.1", - "startTime": 1348171822703.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14741724 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822706.957, - "frameId": "2036.1", - "startTime": 1348171822706.957, - "totalHeapSize": 21609472, - "type": "RecalculateStyles", - "usedHeapSize": 14741724 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822710.957, - "frameId": "2036.1", - "startTime": 1348171822710.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14741768 - } - ], - "data": { - "timerId": 68 - }, - "endTime": 1348171822710.957, - "frameId": "2036.1", - "startTime": 1348171822710.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14741768 - }, - { - "children": [], - "data": { - "requestId": "2036.36" - }, - "endTime": 1348171822717.957, - "frameId": "2036.7", - "startTime": 1348171822717.957, - "totalHeapSize": 21609472, - "type": "ResourceReceivedData", - "usedHeapSize": 14741768 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 69 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822720.957, - "totalHeapSize": 21609472, - "type": "TimerInstall", - "usedHeapSize": 14742032 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822720.957, - "frameId": "2036.1", - "startTime": 1348171822720.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14743772 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822720.957, - "frameId": "2036.1", - "startTime": 1348171822720.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14743772 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822722.957, - "frameId": "2036.1", - "startTime": 1348171822722.957, - "totalHeapSize": 21609472, - "type": "RecalculateStyles", - "usedHeapSize": 14743772 - }, - { - "children": [], - "data": { - "requestId": "2036.36" - }, - "endTime": 1348171822727.957, - "frameId": "2036.7", - "startTime": 1348171822727.957, - "totalHeapSize": 21609472, - "type": "ResourceReceivedData", - "usedHeapSize": 14743772 - }, - { - "data": { - "didFail": false, - "networkTime": 1348171822711.957, - "requestId": "2036.36" - }, - "frameId": "2036.7", - "startTime": 1348171822729.957, - "totalHeapSize": 21609472, - "type": "ResourceFinish", - "usedHeapSize": 14743772 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822738.957, - "frameId": "2036.1", - "startTime": 1348171822738.957, - "totalHeapSize": 21609472, - "type": "FunctionCall", - "usedHeapSize": 14743816 - } - ], - "data": { - "timerId": 69 - }, - "endTime": 1348171822738.957, - "frameId": "2036.1", - "startTime": 1348171822738.957, - "totalHeapSize": 21609472, - "type": "TimerFire", - "usedHeapSize": 14743816 - }, - { - "children": [], - "data": { - "lineNumber": 1, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - "endTime": 1348171822745.957, - "frameId": "2036.7", - "startTime": 1348171822741.957, - "totalHeapSize": 21609472, - "type": "EvaluateScript", - "usedHeapSize": 14749432 - }, - { - "children": [ - { - "children": [ - { - "children": [], - "data": { - "endLine": 0, - "length": 109, - "startLine": 0 - }, - "endTime": 1348171822772.957, - "frameId": "2036.7", - "stackTrace": [ - { - "columnNumber": 15238, - "functionName": "", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 18193, - "functionName": "", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 48390, - "functionName": "", - "lineNumber": 20, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 5257, - "functionName": "C.execute", - "lineNumber": 11, - "url": "https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1" - }, - { - "columnNumber": 4722, - "functionName": "C.start", - "lineNumber": 11, - "url": "https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1" - } - ], - "startTime": 1348171822771.957, - "totalHeapSize": 22625152, - "type": "ParseHTML", - "usedHeapSize": 15418644 - }, - { - "children": [], - "data": { - "endLine": 0, - "length": 1, - "startLine": 0 - }, - "endTime": 1348171822772.957, - "frameId": "2036.7", - "stackTrace": [ - { - "columnNumber": 15238, - "functionName": "", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 18193, - "functionName": "", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 48390, - "functionName": "", - "lineNumber": 20, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 5257, - "functionName": "C.execute", - "lineNumber": 11, - "url": "https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1" - }, - { - "columnNumber": 4722, - "functionName": "C.start", - "lineNumber": 11, - "url": "https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1" - } - ], - "startTime": 1348171822772.957, - "totalHeapSize": 22625152, - "type": "ParseHTML", - "usedHeapSize": 15418868 - }, - { - "children": [], - "data": { - "endLine": 0, - "length": 56, - "startLine": 0 - }, - "endTime": 1348171822773.957, - "frameId": "2036.7", - "stackTrace": [ - { - "columnNumber": 16757, - "functionName": "", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 18193, - "functionName": "", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 48390, - "functionName": "", - "lineNumber": 20, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 5257, - "functionName": "C.execute", - "lineNumber": 11, - "url": "https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1" - }, - { - "columnNumber": 4722, - "functionName": "C.start", - "lineNumber": 11, - "url": "https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1" - } - ], - "startTime": 1348171822773.957, - "totalHeapSize": 22625152, - "type": "ParseHTML", - "usedHeapSize": 15464464 - }, - { - "children": [], - "data": { - "endLine": 0, - "length": 1, - "startLine": 0 - }, - "endTime": 1348171822773.957, - "frameId": "2036.7", - "stackTrace": [ - { - "columnNumber": 16757, - "functionName": "", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 18193, - "functionName": "", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 48390, - "functionName": "", - "lineNumber": 20, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 5257, - "functionName": "C.execute", - "lineNumber": 11, - "url": "https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1" - }, - { - "columnNumber": 4722, - "functionName": "C.start", - "lineNumber": 11, - "url": "https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1" - } - ], - "startTime": 1348171822773.957, - "totalHeapSize": 22625152, - "type": "ParseHTML", - "usedHeapSize": 15464688 - }, - { - "children": [], - "data": { - "endLine": 0, - "length": 31, - "startLine": 0 - }, - "endTime": 1348171822774.957, - "frameId": "2036.7", - "stackTrace": [ - { - "columnNumber": 10635, - "functionName": "", - "lineNumber": 20, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 11091, - "functionName": "", - "lineNumber": 20, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 14234, - "functionName": "", - "lineNumber": 20, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 48390, - "functionName": "", - "lineNumber": 20, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 5257, - "functionName": "C.execute", - "lineNumber": 11, - "url": "https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1" - } - ], - "startTime": 1348171822774.957, - "totalHeapSize": 22625152, - "type": "ParseHTML", - "usedHeapSize": 15655924 - }, - { - "children": [], - "data": { - "endLine": 0, - "length": 1, - "startLine": 0 - }, - "endTime": 1348171822774.957, - "frameId": "2036.7", - "stackTrace": [ - { - "columnNumber": 10635, - "functionName": "", - "lineNumber": 20, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 11091, - "functionName": "", - "lineNumber": 20, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 14234, - "functionName": "", - "lineNumber": 20, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 48390, - "functionName": "", - "lineNumber": 20, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 5257, - "functionName": "C.execute", - "lineNumber": 11, - "url": "https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1" - } - ], - "startTime": 1348171822774.957, - "totalHeapSize": 22625152, - "type": "ParseHTML", - "usedHeapSize": 15656148 - }, - { - "children": [], - "data": { - "endLine": 0, - "length": 16, - "startLine": 0 - }, - "endTime": 1348171822775.957, - "frameId": "2036.7", - "stackTrace": [ - { - "columnNumber": 11371, - "functionName": "D.querySelectorAll.a", - "lineNumber": 20, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 11565, - "functionName": "", - "lineNumber": 20, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 14234, - "functionName": "", - "lineNumber": 20, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 48390, - "functionName": "", - "lineNumber": 20, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 5257, - "functionName": "C.execute", - "lineNumber": 11, - "url": "https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1" - } - ], - "startTime": 1348171822775.957, - "totalHeapSize": 22625152, - "type": "ParseHTML", - "usedHeapSize": 15660092 - }, - { - "children": [], - "data": { - "endLine": 0, - "length": 1, - "startLine": 0 - }, - "endTime": 1348171822775.957, - "frameId": "2036.7", - "stackTrace": [ - { - "columnNumber": 11371, - "functionName": "D.querySelectorAll.a", - "lineNumber": 20, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 11565, - "functionName": "", - "lineNumber": 20, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 14234, - "functionName": "", - "lineNumber": 20, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 48390, - "functionName": "", - "lineNumber": 20, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 5257, - "functionName": "C.execute", - "lineNumber": 11, - "url": "https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1" - } - ], - "startTime": 1348171822775.957, - "totalHeapSize": 22625152, - "type": "ParseHTML", - "usedHeapSize": 15660316 - }, - { - "children": [], - "data": { - "endLine": 0, - "length": 20, - "startLine": 0 - }, - "endTime": 1348171822775.957, - "frameId": "2036.7", - "stackTrace": [ - { - "columnNumber": 11658, - "functionName": "a", - "lineNumber": 20, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 12614, - "functionName": "", - "lineNumber": 20, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 14234, - "functionName": "", - "lineNumber": 20, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 48390, - "functionName": "", - "lineNumber": 20, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 5257, - "functionName": "C.execute", - "lineNumber": 11, - "url": "https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1" - } - ], - "startTime": 1348171822775.957, - "totalHeapSize": 22625152, - "type": "ParseHTML", - "usedHeapSize": 15660668 - }, - { - "children": [], - "data": { - "endLine": 0, - "length": 1, - "startLine": 0 - }, - "endTime": 1348171822775.957, - "frameId": "2036.7", - "stackTrace": [ - { - "columnNumber": 11658, - "functionName": "a", - "lineNumber": 20, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 12614, - "functionName": "", - "lineNumber": 20, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 14234, - "functionName": "", - "lineNumber": 20, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 48390, - "functionName": "", - "lineNumber": 20, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 5257, - "functionName": "C.execute", - "lineNumber": 11, - "url": "https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1" - } - ], - "startTime": 1348171822775.957, - "totalHeapSize": 22625152, - "type": "ParseHTML", - "usedHeapSize": 15660892 - }, - { - "children": [], - "data": { - "endLine": 0, - "length": 50, - "startLine": 0 - }, - "endTime": 1348171822776.957, - "frameId": "2036.7", - "stackTrace": [ - { - "columnNumber": 13178, - "functionName": "D.documentElement.contains.l.contains", - "lineNumber": 20, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 13542, - "functionName": "", - "lineNumber": 20, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 14234, - "functionName": "", - "lineNumber": 20, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 48390, - "functionName": "", - "lineNumber": 20, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 5257, - "functionName": "C.execute", - "lineNumber": 11, - "url": "https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1" - } - ], - "startTime": 1348171822776.957, - "totalHeapSize": 22625152, - "type": "ParseHTML", - "usedHeapSize": 15684588 - }, - { - "children": [], - "data": { - "endLine": 0, - "length": 1, - "startLine": 0 - }, - "endTime": 1348171822776.957, - "frameId": "2036.7", - "stackTrace": [ - { - "columnNumber": 13178, - "functionName": "D.documentElement.contains.l.contains", - "lineNumber": 20, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 13542, - "functionName": "", - "lineNumber": 20, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 14234, - "functionName": "", - "lineNumber": 20, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 48390, - "functionName": "", - "lineNumber": 20, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 5257, - "functionName": "C.execute", - "lineNumber": 11, - "url": "https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1" - } - ], - "startTime": 1348171822776.957, - "totalHeapSize": 22625152, - "type": "ParseHTML", - "usedHeapSize": 15684812 - }, - { - "data": { - "usedHeapSizeDelta": 1740700 - }, - "endTime": 1348171822783.957, - "stackTrace": [ - { - "columnNumber": 10834, - "functionName": "J.stack.PostMessageTransport.g.onDOMReady", - "lineNumber": 42, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 416, - "functionName": "m", - "lineNumber": 42, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 10887, - "functionName": "J.stack.PostMessageTransport.g.init", - "lineNumber": 42, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 15903, - "functionName": "J.stack.QueueBehavior.c.init", - "lineNumber": 42, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 5258, - "functionName": "c.init", - "lineNumber": 42, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - } - ], - "startTime": 1348171822778.957, - "totalHeapSize": 23640832, - "type": "GCEvent", - "usedHeapSize": 14531908 - }, - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 70 - }, - "frameId": "2036.7", - "stackTrace": [ - { - "columnNumber": 10834, - "functionName": "J.stack.PostMessageTransport.g.onDOMReady", - "lineNumber": 42, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 416, - "functionName": "m", - "lineNumber": 42, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 10887, - "functionName": "J.stack.PostMessageTransport.g.init", - "lineNumber": 42, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 15903, - "functionName": "J.stack.QueueBehavior.c.init", - "lineNumber": 42, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 5258, - "functionName": "c.init", - "lineNumber": 42, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - } - ], - "startTime": 1348171822794.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14532132 - } - ], - "data": { - "scriptLine": 11, - "scriptName": "https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1" - }, - "endTime": 1348171822794.957, - "frameId": "2036.7", - "startTime": 1348171822747.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14532132 - } - ], - "data": { - "type": "load" - }, - "endTime": 1348171822794.957, - "frameId": "2036.7", - "startTime": 1348171822747.957, - "totalHeapSize": 23640832, - "type": "EventDispatch", - "usedHeapSize": 14532132 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 71 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822800.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14532396 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822800.957, - "frameId": "2036.1", - "startTime": 1348171822800.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14536308 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822800.957, - "frameId": "2036.1", - "startTime": 1348171822800.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14536308 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822802.957, - "frameId": "2036.7", - "startTime": 1348171822802.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14536308 - }, - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 72 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 10580, - "functionName": "i", - "lineNumber": 23, - "url": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - } - ], - "startTime": 1348171822805.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14537300 - } - ], - "data": { - "scriptLine": 23, - "scriptName": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - "endTime": 1348171822805.957, - "frameId": "2036.1", - "startTime": 1348171822805.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14537300 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 42, - "scriptName": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - "endTime": 1348171822806.957, - "frameId": "2036.7", - "startTime": 1348171822806.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14538168 - } - ], - "data": { - "timerId": 70 - }, - "endTime": 1348171822806.957, - "frameId": "2036.7", - "startTime": 1348171822806.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14538168 - }, - { - "children": [ - { - "children": [ - { - "children": [], - "data": {}, - "endTime": 1348171822809.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 17126, - "functionName": "", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 14186, - "functionName": "E.extend._Deferred.e.resolveWith", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 9177, - "functionName": "d.extend.ready", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - } - ], - "startTime": 1348171822809.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14539776 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822809.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 17126, - "functionName": "", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 14186, - "functionName": "E.extend._Deferred.e.resolveWith", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 9177, - "functionName": "d.extend.ready", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - } - ], - "startTime": 1348171822809.957, - "totalHeapSize": 23640832, - "type": "Layout", - "usedHeapSize": 14539928 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822809.957, - "frameId": "2036.7", - "stackTrace": [ - { - "columnNumber": 17126, - "functionName": "", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 14186, - "functionName": "E.extend._Deferred.e.resolveWith", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 9177, - "functionName": "d.extend.ready", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - } - ], - "startTime": 1348171822809.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14540080 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822809.957, - "frameId": "2036.7", - "stackTrace": [ - { - "columnNumber": 17126, - "functionName": "", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 14186, - "functionName": "E.extend._Deferred.e.resolveWith", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 9177, - "functionName": "d.extend.ready", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - } - ], - "startTime": 1348171822809.957, - "totalHeapSize": 23640832, - "type": "Layout", - "usedHeapSize": 14540232 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822809.957, - "frameId": "2036.7", - "stackTrace": [ - { - "columnNumber": 17236, - "functionName": "", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 14186, - "functionName": "E.extend._Deferred.e.resolveWith", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 9177, - "functionName": "d.extend.ready", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - } - ], - "startTime": 1348171822809.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14541656 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822810.957, - "frameId": "2036.7", - "stackTrace": [ - { - "columnNumber": 17236, - "functionName": "", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 14186, - "functionName": "E.extend._Deferred.e.resolveWith", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 9177, - "functionName": "d.extend.ready", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - } - ], - "startTime": 1348171822809.957, - "totalHeapSize": 23640832, - "type": "Layout", - "usedHeapSize": 14541808 - }, - { - "children": [], - "data": { - "endLine": 0, - "length": 30, - "startLine": 0 - }, - "endTime": 1348171822810.957, - "frameId": "2036.7", - "stackTrace": [ - { - "columnNumber": 17283, - "functionName": "", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 14186, - "functionName": "E.extend._Deferred.e.resolveWith", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 9177, - "functionName": "d.extend.ready", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - } - ], - "startTime": 1348171822810.957, - "totalHeapSize": 23640832, - "type": "ParseHTML", - "usedHeapSize": 14543088 - }, - { - "children": [], - "data": { - "endLine": 0, - "length": 1, - "startLine": 0 - }, - "endTime": 1348171822810.957, - "frameId": "2036.7", - "stackTrace": [ - { - "columnNumber": 17283, - "functionName": "", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 14186, - "functionName": "E.extend._Deferred.e.resolveWith", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 9177, - "functionName": "d.extend.ready", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - } - ], - "startTime": 1348171822810.957, - "totalHeapSize": 23640832, - "type": "ParseHTML", - "usedHeapSize": 14543240 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822810.957, - "frameId": "2036.7", - "stackTrace": [ - { - "columnNumber": 17345, - "functionName": "", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 14186, - "functionName": "E.extend._Deferred.e.resolveWith", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 9177, - "functionName": "d.extend.ready", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - } - ], - "startTime": 1348171822810.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14543392 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822810.957, - "frameId": "2036.7", - "stackTrace": [ - { - "columnNumber": 17345, - "functionName": "", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 14186, - "functionName": "E.extend._Deferred.e.resolveWith", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 9177, - "functionName": "d.extend.ready", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - } - ], - "startTime": 1348171822810.957, - "totalHeapSize": 23640832, - "type": "Layout", - "usedHeapSize": 14543544 - }, - { - "children": [], - "data": { - "endLine": 0, - "length": 83, - "startLine": 0 - }, - "endTime": 1348171822810.957, - "frameId": "2036.7", - "stackTrace": [ - { - "columnNumber": 17374, - "functionName": "", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 14186, - "functionName": "E.extend._Deferred.e.resolveWith", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 9177, - "functionName": "d.extend.ready", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - } - ], - "startTime": 1348171822810.957, - "totalHeapSize": 23640832, - "type": "ParseHTML", - "usedHeapSize": 14543908 - }, - { - "children": [], - "data": { - "endLine": 0, - "length": 1, - "startLine": 0 - }, - "endTime": 1348171822810.957, - "frameId": "2036.7", - "stackTrace": [ - { - "columnNumber": 17374, - "functionName": "", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 14186, - "functionName": "E.extend._Deferred.e.resolveWith", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 9177, - "functionName": "d.extend.ready", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - } - ], - "startTime": 1348171822810.957, - "totalHeapSize": 23640832, - "type": "ParseHTML", - "usedHeapSize": 14544060 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822810.957, - "frameId": "2036.7", - "stackTrace": [ - { - "columnNumber": 17532, - "functionName": "", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 14186, - "functionName": "E.extend._Deferred.e.resolveWith", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 9177, - "functionName": "d.extend.ready", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - } - ], - "startTime": 1348171822810.957, - "totalHeapSize": 23640832, - "type": "Layout", - "usedHeapSize": 14550128 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822810.957, - "frameId": "2036.7", - "stackTrace": [ - { - "columnNumber": 17667, - "functionName": "", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 14186, - "functionName": "E.extend._Deferred.e.resolveWith", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 9177, - "functionName": "d.extend.ready", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - } - ], - "startTime": 1348171822810.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14551444 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822810.957, - "frameId": "2036.7", - "stackTrace": [ - { - "columnNumber": 17667, - "functionName": "", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 14186, - "functionName": "E.extend._Deferred.e.resolveWith", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 9177, - "functionName": "d.extend.ready", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - } - ], - "startTime": 1348171822810.957, - "totalHeapSize": 23640832, - "type": "Layout", - "usedHeapSize": 14551596 - }, - { - "children": [], - "data": { - "endLine": 0, - "length": 0, - "startLine": 0 - }, - "endTime": 1348171822811.957, - "frameId": "2036.7", - "stackTrace": [ - { - "columnNumber": 17696, - "functionName": "", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 14186, - "functionName": "E.extend._Deferred.e.resolveWith", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 9177, - "functionName": "d.extend.ready", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - } - ], - "startTime": 1348171822810.957, - "totalHeapSize": 23640832, - "type": "ParseHTML", - "usedHeapSize": 14551748 - }, - { - "children": [], - "data": { - "endLine": 0, - "length": 1, - "startLine": 0 - }, - "endTime": 1348171822811.957, - "frameId": "2036.7", - "stackTrace": [ - { - "columnNumber": 17696, - "functionName": "", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 14186, - "functionName": "E.extend._Deferred.e.resolveWith", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 9177, - "functionName": "d.extend.ready", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - } - ], - "startTime": 1348171822811.957, - "totalHeapSize": 23640832, - "type": "ParseHTML", - "usedHeapSize": 14551900 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822811.957, - "frameId": "2036.7", - "stackTrace": [ - { - "columnNumber": 17870, - "functionName": "", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 14186, - "functionName": "E.extend._Deferred.e.resolveWith", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 9177, - "functionName": "d.extend.ready", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - } - ], - "startTime": 1348171822811.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14553208 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822811.957, - "frameId": "2036.7", - "stackTrace": [ - { - "columnNumber": 17870, - "functionName": "", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 14186, - "functionName": "E.extend._Deferred.e.resolveWith", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 9177, - "functionName": "d.extend.ready", - "lineNumber": 15, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - } - ], - "startTime": 1348171822811.957, - "totalHeapSize": 23640832, - "type": "Layout", - "usedHeapSize": 14553360 - } - ], - "data": { - "scriptLine": 15, - "scriptName": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - "endTime": 1348171822811.957, - "frameId": "2036.7", - "startTime": 1348171822809.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14559504 - } - ], - "data": { - "type": "load" - }, - "endTime": 1348171822811.957, - "frameId": "2036.7", - "startTime": 1348171822809.957, - "totalHeapSize": 23640832, - "type": "EventDispatch", - "usedHeapSize": 14559504 - }, - { - "data": {}, - "frameId": "2036.7", - "startTime": 1348171822815.957, - "totalHeapSize": 23640832, - "type": "MarkLoad", - "usedHeapSize": 14559504 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822817.957, - "frameId": "2036.7", - "startTime": 1348171822817.957, - "totalHeapSize": 23640832, - "type": "Layout", - "usedHeapSize": 14559504 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822820.957, - "frameId": "2036.1", - "startTime": 1348171822820.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14559548 - } - ], - "data": { - "timerId": 71 - }, - "endTime": 1348171822820.957, - "frameId": "2036.1", - "startTime": 1348171822820.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14559548 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 23, - "scriptName": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - "endTime": 1348171822823.957, - "frameId": "2036.1", - "startTime": 1348171822823.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14562460 - } - ], - "data": { - "timerId": 72 - }, - "endTime": 1348171822823.957, - "frameId": "2036.1", - "startTime": 1348171822823.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14562460 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 73 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822825.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14562724 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822825.957, - "frameId": "2036.1", - "startTime": 1348171822825.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14564212 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822825.957, - "frameId": "2036.1", - "startTime": 1348171822825.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14564212 - }, - { - "data": { - "requestId": "2036.37", - "requestMethod": "GET", - "url": "https://widgets.platform.twitter.com/services/rest?jsoncallback=jQuery152016022174223326147_1348171822792&format=json&api_key=2a56884b56a00758525eaa2fee16a798&method=flickr.photos.getInfo&photo_id=7926895406&_=1348171822835" - }, - "frameId": "2036.7", - "stackTrace": [ - { - "columnNumber": 35659, - "functionName": "E.ajaxTransport.send", - "lineNumber": 20, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 33629, - "functionName": "E.extend.ajax", - "lineNumber": 20, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 13, - "functionName": "easyXDM.Socket.onMessage", - "lineNumber": 31, - "url": "https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1" - }, - { - "columnNumber": 6942, - "functionName": "J.Socket.z.concat.incoming", - "lineNumber": 42, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - { - "columnNumber": 10144, - "functionName": "f", - "lineNumber": 42, - "url": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - } - ], - "startTime": 1348171822828.957, - "totalHeapSize": 23640832, - "type": "ResourceSendRequest", - "usedHeapSize": 14628980 - }, - { - "children": [], - "data": { - "scriptLine": 42, - "scriptName": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - "endTime": 1348171822834.957, - "frameId": "2036.7", - "startTime": 1348171822827.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14629984 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822836.957, - "frameId": "2036.1", - "startTime": 1348171822836.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14629984 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822839.957, - "frameId": "2036.1", - "startTime": 1348171822839.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14630028 - } - ], - "data": { - "timerId": 73 - }, - "endTime": 1348171822839.957, - "frameId": "2036.1", - "startTime": 1348171822839.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14630028 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 74 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822840.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14630292 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822840.957, - "frameId": "2036.1", - "startTime": 1348171822840.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14631812 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822840.957, - "frameId": "2036.1", - "startTime": 1348171822840.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14631812 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822843.957, - "frameId": "2036.7", - "startTime": 1348171822843.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14631812 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822845.957, - "frameId": "2036.1", - "startTime": 1348171822845.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14631812 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822847.957, - "frameId": "2036.1", - "startTime": 1348171822847.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14631856 - } - ], - "data": { - "timerId": 74 - }, - "endTime": 1348171822847.957, - "frameId": "2036.1", - "startTime": 1348171822847.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14631856 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 75 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822853.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14632120 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822853.957, - "frameId": "2036.1", - "startTime": 1348171822853.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14633640 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822853.957, - "frameId": "2036.1", - "startTime": 1348171822853.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14633640 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822855.957, - "frameId": "2036.1", - "startTime": 1348171822855.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14633640 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822857.957, - "frameId": "2036.1", - "startTime": 1348171822857.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14633684 - } - ], - "data": { - "timerId": 75 - }, - "endTime": 1348171822857.957, - "frameId": "2036.1", - "startTime": 1348171822857.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14633684 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 76 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822867.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14633948 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822867.957, - "frameId": "2036.1", - "startTime": 1348171822867.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14635436 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822867.957, - "frameId": "2036.1", - "startTime": 1348171822867.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14635436 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822869.957, - "frameId": "2036.1", - "startTime": 1348171822869.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14635436 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822873.957, - "frameId": "2036.1", - "startTime": 1348171822873.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14635480 - } - ], - "data": { - "timerId": 76 - }, - "endTime": 1348171822873.957, - "frameId": "2036.1", - "startTime": 1348171822873.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14635480 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 77 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822881.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14635744 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822881.957, - "frameId": "2036.1", - "startTime": 1348171822881.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14637264 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822881.957, - "frameId": "2036.1", - "startTime": 1348171822881.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14637264 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822882.957, - "frameId": "2036.1", - "startTime": 1348171822882.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14637264 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822882.957, - "frameId": "2036.1", - "startTime": 1348171822882.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14637308 - } - ], - "data": { - "timerId": 77 - }, - "endTime": 1348171822882.957, - "frameId": "2036.1", - "startTime": 1348171822882.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14637308 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 78 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822896.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14637572 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822896.957, - "frameId": "2036.1", - "startTime": 1348171822896.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14639060 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822896.957, - "frameId": "2036.1", - "startTime": 1348171822896.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14639060 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822898.957, - "frameId": "2036.1", - "startTime": 1348171822898.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14639060 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822900.957, - "frameId": "2036.1", - "startTime": 1348171822900.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14639104 - } - ], - "data": { - "timerId": 78 - }, - "endTime": 1348171822900.957, - "frameId": "2036.1", - "startTime": 1348171822900.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14639104 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 79 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822910.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14639368 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822911.957, - "frameId": "2036.1", - "startTime": 1348171822910.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14648300 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822911.957, - "frameId": "2036.1", - "startTime": 1348171822910.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14648300 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822912.957, - "frameId": "2036.1", - "startTime": 1348171822912.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14648300 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822914.957, - "frameId": "2036.1", - "startTime": 1348171822914.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14648344 - } - ], - "data": { - "timerId": 79 - }, - "endTime": 1348171822914.957, - "frameId": "2036.1", - "startTime": 1348171822914.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14648344 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 80 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822924.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14648608 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822924.957, - "frameId": "2036.1", - "startTime": 1348171822924.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14651356 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822924.957, - "frameId": "2036.1", - "startTime": 1348171822924.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14651356 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822927.957, - "frameId": "2036.1", - "startTime": 1348171822927.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14651356 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822930.957, - "frameId": "2036.1", - "startTime": 1348171822930.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14651400 - } - ], - "data": { - "timerId": 80 - }, - "endTime": 1348171822930.957, - "frameId": "2036.1", - "startTime": 1348171822930.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14651400 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822933.957, - "frameId": "2036.1", - "startTime": 1348171822933.957, - "totalHeapSize": 23640832, - "type": "Layout", - "usedHeapSize": 14651400 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 81 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822937.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14651664 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822937.957, - "frameId": "2036.1", - "startTime": 1348171822937.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14652952 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822937.957, - "frameId": "2036.1", - "startTime": 1348171822937.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14652952 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822937.957, - "frameId": "2036.1", - "startTime": 1348171822937.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14652952 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822943.957, - "frameId": "2036.1", - "startTime": 1348171822943.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14652996 - } - ], - "data": { - "timerId": 81 - }, - "endTime": 1348171822943.957, - "frameId": "2036.1", - "startTime": 1348171822943.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14652996 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 82 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822950.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14653260 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822950.957, - "frameId": "2036.1", - "startTime": 1348171822950.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14654548 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822950.957, - "frameId": "2036.1", - "startTime": 1348171822950.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14654548 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822951.957, - "frameId": "2036.1", - "startTime": 1348171822951.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14654548 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822955.957, - "frameId": "2036.1", - "startTime": 1348171822955.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14654592 - } - ], - "data": { - "timerId": 82 - }, - "endTime": 1348171822955.957, - "frameId": "2036.1", - "startTime": 1348171822955.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14654592 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 83 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822964.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14654856 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822964.957, - "frameId": "2036.1", - "startTime": 1348171822964.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14656144 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822964.957, - "frameId": "2036.1", - "startTime": 1348171822964.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14656144 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822966.957, - "frameId": "2036.1", - "startTime": 1348171822966.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14656144 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822968.957, - "frameId": "2036.1", - "startTime": 1348171822968.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14656188 - } - ], - "data": { - "timerId": 83 - }, - "endTime": 1348171822968.957, - "frameId": "2036.1", - "startTime": 1348171822968.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14656188 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 84 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822978.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14656452 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822978.957, - "frameId": "2036.1", - "startTime": 1348171822978.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14657740 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822978.957, - "frameId": "2036.1", - "startTime": 1348171822978.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14657740 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822981.957, - "frameId": "2036.1", - "startTime": 1348171822981.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14657740 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822983.957, - "frameId": "2036.1", - "startTime": 1348171822983.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14657784 - } - ], - "data": { - "timerId": 84 - }, - "endTime": 1348171822983.957, - "frameId": "2036.1", - "startTime": 1348171822983.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14657784 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 85 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171822991.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14658048 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822991.957, - "frameId": "2036.1", - "startTime": 1348171822991.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14659336 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171822991.957, - "frameId": "2036.1", - "startTime": 1348171822991.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14659336 - }, - { - "children": [], - "data": {}, - "endTime": 1348171822992.957, - "frameId": "2036.1", - "startTime": 1348171822992.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14659336 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171822992.957, - "frameId": "2036.1", - "startTime": 1348171822992.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14659380 - } - ], - "data": { - "timerId": 85 - }, - "endTime": 1348171822992.957, - "frameId": "2036.1", - "startTime": 1348171822992.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14659380 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 86 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171823005.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14659644 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171823005.957, - "frameId": "2036.1", - "startTime": 1348171823005.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14660932 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171823005.957, - "frameId": "2036.1", - "startTime": 1348171823005.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14660932 - }, - { - "children": [], - "data": {}, - "endTime": 1348171823005.957, - "frameId": "2036.1", - "startTime": 1348171823005.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14660932 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171823009.957, - "frameId": "2036.1", - "startTime": 1348171823009.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14660976 - } - ], - "data": { - "timerId": 86 - }, - "endTime": 1348171823009.957, - "frameId": "2036.1", - "startTime": 1348171823009.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14660976 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 87 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171823018.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14661240 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171823018.957, - "frameId": "2036.1", - "startTime": 1348171823018.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14662528 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171823018.957, - "frameId": "2036.1", - "startTime": 1348171823018.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14662528 - }, - { - "children": [], - "data": {}, - "endTime": 1348171823020.957, - "frameId": "2036.1", - "startTime": 1348171823020.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14662528 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171823022.957, - "frameId": "2036.1", - "startTime": 1348171823022.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14662572 - } - ], - "data": { - "timerId": 87 - }, - "endTime": 1348171823022.957, - "frameId": "2036.1", - "startTime": 1348171823022.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14662572 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 88 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171823031.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14662836 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171823031.957, - "frameId": "2036.1", - "startTime": 1348171823031.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14664124 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171823031.957, - "frameId": "2036.1", - "startTime": 1348171823031.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14664124 - }, - { - "children": [], - "data": {}, - "endTime": 1348171823033.957, - "frameId": "2036.1", - "startTime": 1348171823033.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14664124 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171823035.957, - "frameId": "2036.1", - "startTime": 1348171823035.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14664168 - } - ], - "data": { - "timerId": 88 - }, - "endTime": 1348171823035.957, - "frameId": "2036.1", - "startTime": 1348171823035.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14664168 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 89 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171823045.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14664432 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171823045.957, - "frameId": "2036.1", - "startTime": 1348171823045.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14665720 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171823045.957, - "frameId": "2036.1", - "startTime": 1348171823045.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14665720 - }, - { - "children": [], - "data": {}, - "endTime": 1348171823047.957, - "frameId": "2036.1", - "startTime": 1348171823046.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14665720 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171823050.957, - "frameId": "2036.1", - "startTime": 1348171823050.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14665764 - } - ], - "data": { - "timerId": 89 - }, - "endTime": 1348171823050.957, - "frameId": "2036.1", - "startTime": 1348171823050.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14665764 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 90 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171823059.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14666028 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171823059.957, - "frameId": "2036.1", - "startTime": 1348171823059.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14667316 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171823059.957, - "frameId": "2036.1", - "startTime": 1348171823059.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14667316 - }, - { - "children": [], - "data": {}, - "endTime": 1348171823059.957, - "frameId": "2036.1", - "startTime": 1348171823059.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14667316 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171823062.957, - "frameId": "2036.1", - "startTime": 1348171823062.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14667360 - } - ], - "data": { - "timerId": 90 - }, - "endTime": 1348171823062.957, - "frameId": "2036.1", - "startTime": 1348171823062.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14667360 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 91 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171823073.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14667624 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171823073.957, - "frameId": "2036.1", - "startTime": 1348171823073.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14668912 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171823073.957, - "frameId": "2036.1", - "startTime": 1348171823073.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14668912 - }, - { - "children": [], - "data": {}, - "endTime": 1348171823074.957, - "frameId": "2036.1", - "startTime": 1348171823074.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14668912 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171823074.957, - "frameId": "2036.1", - "startTime": 1348171823074.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14668956 - } - ], - "data": { - "timerId": 91 - }, - "endTime": 1348171823074.957, - "frameId": "2036.1", - "startTime": 1348171823074.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14668956 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 92 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171823087.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14669220 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171823087.957, - "frameId": "2036.1", - "startTime": 1348171823087.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14670508 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171823087.957, - "frameId": "2036.1", - "startTime": 1348171823087.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14670508 - }, - { - "children": [], - "data": {}, - "endTime": 1348171823087.957, - "frameId": "2036.1", - "startTime": 1348171823087.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14670508 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171823088.957, - "frameId": "2036.1", - "startTime": 1348171823088.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14670552 - } - ], - "data": { - "timerId": 92 - }, - "endTime": 1348171823088.957, - "frameId": "2036.1", - "startTime": 1348171823088.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14670552 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 93 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171823102.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14670816 - }, - { - "data": { - "timerId": 16 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 44936, - "functionName": "f.extend.stop", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44900, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171823102.957, - "totalHeapSize": 23640832, - "type": "TimerRemove", - "usedHeapSize": 14672824 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171823102.957, - "frameId": "2036.1", - "startTime": 1348171823102.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14672824 - } - ], - "data": { - "timerId": 16 - }, - "endTime": 1348171823102.957, - "frameId": "2036.1", - "startTime": 1348171823102.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14672824 - }, - { - "children": [], - "data": {}, - "endTime": 1348171823104.957, - "frameId": "2036.1", - "startTime": 1348171823104.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14672824 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171823107.957, - "frameId": "2036.1", - "startTime": 1348171823107.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14672868 - } - ], - "data": { - "timerId": 93 - }, - "endTime": 1348171823107.957, - "frameId": "2036.1", - "startTime": 1348171823107.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14672868 - }, - { - "children": [], - "data": {}, - "endTime": 1348171823109.957, - "frameId": "2036.1", - "startTime": 1348171823109.957, - "totalHeapSize": 23640832, - "type": "Layout", - "usedHeapSize": 14672868 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1582, - "scriptName": "native v8natives.js" - }, - "endTime": 1348171823265.957, - "frameId": "2036.1", - "startTime": 1348171823265.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14673356 - } - ], - "data": { - "timerId": 3 - }, - "endTime": 1348171823265.957, - "frameId": "2036.1", - "startTime": 1348171823265.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14673356 - }, - { - "children": [], - "data": { - "mimeType": "text/javascript", - "requestId": "2036.37", - "statusCode": 200 - }, - "endTime": 1348171823794.957, - "frameId": "2036.7", - "startTime": 1348171823794.957, - "totalHeapSize": 23640832, - "type": "ResourceReceiveResponse", - "usedHeapSize": 14673356 - }, - { - "children": [], - "data": { - "requestId": "2036.37" - }, - "endTime": 1348171823794.957, - "frameId": "2036.7", - "startTime": 1348171823794.957, - "totalHeapSize": 23640832, - "type": "ResourceReceivedData", - "usedHeapSize": 14673356 - }, - { - "children": [], - "data": { - "requestId": "2036.37" - }, - "endTime": 1348171823794.957, - "frameId": "2036.7", - "startTime": 1348171823794.957, - "totalHeapSize": 23640832, - "type": "ResourceReceivedData", - "usedHeapSize": 14673356 - }, - { - "data": { - "didFail": false, - "networkTime": 1348171823794.957, - "requestId": "2036.37" - }, - "frameId": "2036.7", - "startTime": 1348171823794.957, - "totalHeapSize": 23640832, - "type": "ResourceFinish", - "usedHeapSize": 14673356 - }, - { - "children": [], - "data": { - "lineNumber": 1, - "url": "https://widgets.platform.twitter.com/services/rest?jsoncallback=jQuery152016022174223326147_1348171822792&format=json&api_key=2a56884b56a00758525eaa2fee16a798&method=flickr.photos.getInfo&photo_id=7926895406&_=1348171822835" - }, - "endTime": 1348171823795.957, - "frameId": "2036.7", - "startTime": 1348171823794.957, - "totalHeapSize": 23640832, - "type": "EvaluateScript", - "usedHeapSize": 14688700 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 20, - "scriptName": "https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js" - }, - "endTime": 1348171823796.957, - "frameId": "2036.7", - "startTime": 1348171823795.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14730240 - } - ], - "data": { - "type": "load" - }, - "endTime": 1348171823796.957, - "frameId": "2036.7", - "startTime": 1348171823795.957, - "totalHeapSize": 23640832, - "type": "EventDispatch", - "usedHeapSize": 14730240 - }, - { - "data": { - "requestId": "2036.38", - "requestMethod": "GET", - "url": "http://farm9.static.flickr.com/8308/7926895406_7ddda37c10.jpg" - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 28646, - "functionName": "f.extend.attr", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 13440, - "functionName": "e.extend.access", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 25195, - "functionName": "f.fn.extend.attr", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 236426, - "functionName": "loadThumb", - "lineNumber": 11, - "url": "http://a0.twimg.com/c/swift/en/bundle/timeline.97b730c52dbf7c6aebe75ee2a31e060da3c4e4b8.js" - }, - { - "columnNumber": 235768, - "functionName": "resolveThumbCallback", - "lineNumber": 11, - "url": "http://a0.twimg.com/c/swift/en/bundle/timeline.97b730c52dbf7c6aebe75ee2a31e060da3c4e4b8.js" - } - ], - "startTime": 1348171823797.957, - "totalHeapSize": 23640832, - "type": "ResourceSendRequest", - "usedHeapSize": 14767692 - }, - { - "children": [], - "data": { - "scriptLine": 23, - "scriptName": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - "endTime": 1348171823798.957, - "frameId": "2036.1", - "startTime": 1348171823796.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14768984 - }, - { - "children": [], - "data": { - "scriptLine": 23, - "scriptName": "http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js" - }, - "endTime": 1348171823798.957, - "frameId": "2036.1", - "startTime": 1348171823798.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14773144 - }, - { - "children": [], - "data": { - "mimeType": "image/jpeg", - "requestId": "2036.38", - "statusCode": 200 - }, - "endTime": 1348171824122.957, - "frameId": "2036.1", - "startTime": 1348171824122.957, - "totalHeapSize": 23640832, - "type": "ResourceReceiveResponse", - "usedHeapSize": 14773144 - }, - { - "children": [], - "data": { - "requestId": "2036.38" - }, - "endTime": 1348171824122.957, - "frameId": "2036.1", - "startTime": 1348171824122.957, - "totalHeapSize": 23640832, - "type": "ResourceReceivedData", - "usedHeapSize": 14773144 - }, - { - "children": [], - "data": { - "requestId": "2036.38" - }, - "endTime": 1348171824122.957, - "frameId": "2036.1", - "startTime": 1348171824122.957, - "totalHeapSize": 23640832, - "type": "ResourceReceivedData", - "usedHeapSize": 14773144 - }, - { - "children": [], - "data": { - "requestId": "2036.38" - }, - "endTime": 1348171824122.957, - "frameId": "2036.1", - "startTime": 1348171824122.957, - "totalHeapSize": 23640832, - "type": "ResourceReceivedData", - "usedHeapSize": 14773144 - }, - { - "children": [], - "data": { - "requestId": "2036.38" - }, - "endTime": 1348171824188.957, - "frameId": "2036.1", - "startTime": 1348171824188.957, - "totalHeapSize": 23640832, - "type": "ResourceReceivedData", - "usedHeapSize": 14773144 - }, - { - "children": [], - "data": { - "requestId": "2036.38" - }, - "endTime": 1348171824188.957, - "frameId": "2036.1", - "startTime": 1348171824188.957, - "totalHeapSize": 23640832, - "type": "ResourceReceivedData", - "usedHeapSize": 14773144 - }, - { - "children": [], - "data": { - "requestId": "2036.38" - }, - "endTime": 1348171824239.957, - "frameId": "2036.1", - "startTime": 1348171824239.957, - "totalHeapSize": 23640832, - "type": "ResourceReceivedData", - "usedHeapSize": 14773144 - }, - { - "children": [], - "data": { - "requestId": "2036.38" - }, - "endTime": 1348171824239.957, - "frameId": "2036.1", - "startTime": 1348171824239.957, - "totalHeapSize": 23640832, - "type": "ResourceReceivedData", - "usedHeapSize": 14773144 - }, - { - "children": [], - "data": { - "requestId": "2036.38" - }, - "endTime": 1348171824253.957, - "frameId": "2036.1", - "startTime": 1348171824253.957, - "totalHeapSize": 23640832, - "type": "ResourceReceivedData", - "usedHeapSize": 14773144 - }, - { - "children": [], - "data": { - "requestId": "2036.38" - }, - "endTime": 1348171824253.957, - "frameId": "2036.1", - "startTime": 1348171824253.957, - "totalHeapSize": 23640832, - "type": "ResourceReceivedData", - "usedHeapSize": 14773144 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1582, - "scriptName": "native v8natives.js" - }, - "endTime": 1348171824266.957, - "frameId": "2036.1", - "startTime": 1348171824266.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14773320 - } - ], - "data": { - "timerId": 3 - }, - "endTime": 1348171824266.957, - "frameId": "2036.1", - "startTime": 1348171824266.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14773320 - }, - { - "children": [], - "data": { - "requestId": "2036.38" - }, - "endTime": 1348171824288.957, - "frameId": "2036.1", - "startTime": 1348171824288.957, - "totalHeapSize": 23640832, - "type": "ResourceReceivedData", - "usedHeapSize": 14773320 - }, - { - "children": [], - "data": { - "requestId": "2036.38" - }, - "endTime": 1348171824288.957, - "frameId": "2036.1", - "startTime": 1348171824288.957, - "totalHeapSize": 23640832, - "type": "ResourceReceivedData", - "usedHeapSize": 14773320 - }, - { - "children": [], - "data": { - "requestId": "2036.38" - }, - "endTime": 1348171824296.957, - "frameId": "2036.1", - "startTime": 1348171824296.957, - "totalHeapSize": 23640832, - "type": "ResourceReceivedData", - "usedHeapSize": 14773320 - }, - { - "children": [], - "data": { - "requestId": "2036.38" - }, - "endTime": 1348171824296.957, - "frameId": "2036.1", - "startTime": 1348171824296.957, - "totalHeapSize": 23640832, - "type": "ResourceReceivedData", - "usedHeapSize": 14773320 - }, - { - "children": [], - "data": { - "requestId": "2036.38" - }, - "endTime": 1348171824466.957, - "frameId": "2036.1", - "startTime": 1348171824466.957, - "totalHeapSize": 23640832, - "type": "ResourceReceivedData", - "usedHeapSize": 14773320 - }, - { - "children": [], - "data": { - "requestId": "2036.38" - }, - "endTime": 1348171824466.957, - "frameId": "2036.1", - "startTime": 1348171824466.957, - "totalHeapSize": 23640832, - "type": "ResourceReceivedData", - "usedHeapSize": 14773320 - }, - { - "children": [], - "data": { - "requestId": "2036.38" - }, - "endTime": 1348171824559.957, - "frameId": "2036.1", - "startTime": 1348171824559.957, - "totalHeapSize": 23640832, - "type": "ResourceReceivedData", - "usedHeapSize": 14773320 - }, - { - "children": [], - "data": { - "requestId": "2036.38" - }, - "endTime": 1348171824742.957, - "frameId": "2036.1", - "startTime": 1348171824742.957, - "totalHeapSize": 23640832, - "type": "ResourceReceivedData", - "usedHeapSize": 14773320 - }, - { - "children": [], - "data": { - "requestId": "2036.38" - }, - "endTime": 1348171824742.957, - "frameId": "2036.1", - "startTime": 1348171824742.957, - "totalHeapSize": 23640832, - "type": "ResourceReceivedData", - "usedHeapSize": 14773320 - }, - { - "children": [], - "data": { - "requestId": "2036.38" - }, - "endTime": 1348171824861.957, - "frameId": "2036.1", - "startTime": 1348171824861.957, - "totalHeapSize": 23640832, - "type": "ResourceReceivedData", - "usedHeapSize": 14773320 - }, - { - "data": { - "didFail": false, - "networkTime": 1348171824853.957, - "requestId": "2036.38" - }, - "frameId": "2036.1", - "startTime": 1348171824861.957, - "totalHeapSize": 23640832, - "type": "ResourceFinish", - "usedHeapSize": 14773320 - }, - { - "children": [ - { - "children": [ - { - "children": [], - "data": {}, - "endTime": 1348171824862.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 29294, - "functionName": "f.expr.f.expr.filters.f.expr.filters.hidden", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 8522, - "functionName": "n.selectors.filter.PSEUDO", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 3043, - "functionName": "n.filter", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 1561, - "functionName": "n", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 13291, - "functionName": "c.querySelectorAll.n", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171824862.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14783768 - }, - { - "children": [], - "data": {}, - "endTime": 1348171824863.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 29294, - "functionName": "f.expr.f.expr.filters.f.expr.filters.hidden", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 8522, - "functionName": "n.selectors.filter.PSEUDO", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 3043, - "functionName": "n.filter", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 1561, - "functionName": "n", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 13291, - "functionName": "c.querySelectorAll.n", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171824862.957, - "totalHeapSize": 23640832, - "type": "Layout", - "usedHeapSize": 14783992 - }, - { - "children": [], - "data": {}, - "endTime": 1348171824863.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 28753, - "functionName": "c.defaultView.c.defaultView.getComputedStyle.Db", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 26660, - "functionName": "f.extend.cssHooks.opacity.get", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 27478, - "functionName": "f.extend.css", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 42986, - "functionName": "f.fx.cur", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 41056, - "functionName": "g", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171824863.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14786116 - }, - { - "children": [], - "data": {}, - "endTime": 1348171824863.957, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 28753, - "functionName": "c.defaultView.c.defaultView.getComputedStyle.Db", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 26660, - "functionName": "f.extend.cssHooks.opacity.get", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 27478, - "functionName": "f.extend.css", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 42986, - "functionName": "f.fx.cur", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 41056, - "functionName": "g", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171824863.957, - "totalHeapSize": 23640832, - "type": "Layout", - "usedHeapSize": 14786340 - }, - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 94 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43182, - "functionName": "f.fx.custom", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 41120, - "functionName": "g", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 23951, - "functionName": "f.extend.dequeue", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 24234, - "functionName": "f.fn.extend.queue", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171824863.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14787956 - }, - { - "data": { - "singleShot": false, - "timeout": 13, - "timerId": 95 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 43492, - "functionName": "f.fx.custom", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 41120, - "functionName": "g", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 23951, - "functionName": "f.extend.dequeue", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 24234, - "functionName": "f.fn.extend.queue", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 11999, - "functionName": "e.extend.each", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171824863.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14789588 - } - ], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171824864.957, - "frameId": "2036.1", - "startTime": 1348171824861.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14823592 - } - ], - "data": { - "type": "load" - }, - "endTime": 1348171824864.957, - "frameId": "2036.1", - "startTime": 1348171824861.957, - "totalHeapSize": 23640832, - "type": "EventDispatch", - "usedHeapSize": 14823592 - }, - { - "children": [], - "data": {}, - "endTime": 1348171824865.957, - "frameId": "2036.1", - "startTime": 1348171824865.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14823592 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171824865.957, - "frameId": "2036.1", - "startTime": 1348171824865.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14823636 - } - ], - "data": { - "timerId": 94 - }, - "endTime": 1348171824865.957, - "frameId": "2036.1", - "startTime": 1348171824865.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14823636 - }, - { - "children": [], - "data": {}, - "endTime": 1348171824865.957, - "frameId": "2036.1", - "startTime": 1348171824865.957, - "totalHeapSize": 23640832, - "type": "Layout", - "usedHeapSize": 14823636 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 96 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171824880.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14823900 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171824880.957, - "frameId": "2036.1", - "startTime": 1348171824880.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14825192 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171824880.957, - "frameId": "2036.1", - "startTime": 1348171824880.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14825192 - }, - { - "children": [], - "data": {}, - "endTime": 1348171824880.957, - "frameId": "2036.1", - "startTime": 1348171824880.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14825192 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171824884.957, - "frameId": "2036.1", - "startTime": 1348171824884.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14825236 - } - ], - "data": { - "timerId": 96 - }, - "endTime": 1348171824884.957, - "frameId": "2036.1", - "startTime": 1348171824884.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14825236 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 97 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171824893.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14825500 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171824893.957, - "frameId": "2036.1", - "startTime": 1348171824893.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14826792 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171824893.957, - "frameId": "2036.1", - "startTime": 1348171824893.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14826792 - }, - { - "children": [], - "data": {}, - "endTime": 1348171824893.957, - "frameId": "2036.1", - "startTime": 1348171824893.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14826792 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171824897.957, - "frameId": "2036.1", - "startTime": 1348171824897.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14826836 - } - ], - "data": { - "timerId": 97 - }, - "endTime": 1348171824897.957, - "frameId": "2036.1", - "startTime": 1348171824897.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14826836 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 98 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171824907.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14827100 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171824907.957, - "frameId": "2036.1", - "startTime": 1348171824907.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14828356 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171824907.957, - "frameId": "2036.1", - "startTime": 1348171824907.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14828356 - }, - { - "children": [], - "data": {}, - "endTime": 1348171824907.957, - "frameId": "2036.1", - "startTime": 1348171824907.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14828356 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171824910.957, - "frameId": "2036.1", - "startTime": 1348171824910.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14828400 - } - ], - "data": { - "timerId": 98 - }, - "endTime": 1348171824910.957, - "frameId": "2036.1", - "startTime": 1348171824910.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14828400 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 99 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171824921.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14828664 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171824921.957, - "frameId": "2036.1", - "startTime": 1348171824921.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14829952 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171824921.957, - "frameId": "2036.1", - "startTime": 1348171824921.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14829952 - }, - { - "children": [], - "data": {}, - "endTime": 1348171824923.957, - "frameId": "2036.1", - "startTime": 1348171824923.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14829952 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171824924.957, - "frameId": "2036.1", - "startTime": 1348171824924.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14829996 - } - ], - "data": { - "timerId": 99 - }, - "endTime": 1348171824924.957, - "frameId": "2036.1", - "startTime": 1348171824924.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14829996 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 100 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171824935.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14830260 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171824935.957, - "frameId": "2036.1", - "startTime": 1348171824935.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14831516 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171824935.957, - "frameId": "2036.1", - "startTime": 1348171824935.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14831516 - }, - { - "children": [], - "data": {}, - "endTime": 1348171824937.957, - "frameId": "2036.1", - "startTime": 1348171824937.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14831516 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171824937.957, - "frameId": "2036.1", - "startTime": 1348171824937.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14831560 - } - ], - "data": { - "timerId": 100 - }, - "endTime": 1348171824937.957, - "frameId": "2036.1", - "startTime": 1348171824937.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14831560 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 101 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171824948.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14831824 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171824948.957, - "frameId": "2036.1", - "startTime": 1348171824948.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14833112 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171824948.957, - "frameId": "2036.1", - "startTime": 1348171824948.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14833112 - }, - { - "children": [], - "data": {}, - "endTime": 1348171824949.957, - "frameId": "2036.1", - "startTime": 1348171824949.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14833112 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171824951.957, - "frameId": "2036.1", - "startTime": 1348171824951.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14833156 - } - ], - "data": { - "timerId": 101 - }, - "endTime": 1348171824951.957, - "frameId": "2036.1", - "startTime": 1348171824951.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14833156 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 102 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171824962.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14833420 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171824962.957, - "frameId": "2036.1", - "startTime": 1348171824962.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14834708 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171824962.957, - "frameId": "2036.1", - "startTime": 1348171824962.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14834708 - }, - { - "children": [], - "data": {}, - "endTime": 1348171824964.957, - "frameId": "2036.1", - "startTime": 1348171824964.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14834708 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171824967.957, - "frameId": "2036.1", - "startTime": 1348171824967.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14834752 - } - ], - "data": { - "timerId": 102 - }, - "endTime": 1348171824967.957, - "frameId": "2036.1", - "startTime": 1348171824967.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14834752 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 103 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171824975.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14835016 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171824975.957, - "frameId": "2036.1", - "startTime": 1348171824975.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14836272 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171824975.957, - "frameId": "2036.1", - "startTime": 1348171824975.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14836272 - }, - { - "children": [], - "data": {}, - "endTime": 1348171824976.957, - "frameId": "2036.1", - "startTime": 1348171824976.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14836272 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171824979.957, - "frameId": "2036.1", - "startTime": 1348171824979.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14836316 - } - ], - "data": { - "timerId": 103 - }, - "endTime": 1348171824979.957, - "frameId": "2036.1", - "startTime": 1348171824979.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14836316 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 104 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171824989.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14836580 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171824989.957, - "frameId": "2036.1", - "startTime": 1348171824989.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14837836 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171824989.957, - "frameId": "2036.1", - "startTime": 1348171824989.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14837836 - }, - { - "children": [], - "data": {}, - "endTime": 1348171824991.957, - "frameId": "2036.1", - "startTime": 1348171824991.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14837836 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171824991.957, - "frameId": "2036.1", - "startTime": 1348171824991.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14837880 - } - ], - "data": { - "timerId": 104 - }, - "endTime": 1348171824991.957, - "frameId": "2036.1", - "startTime": 1348171824991.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14837880 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 105 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825002.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14838144 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825002.957, - "frameId": "2036.1", - "startTime": 1348171825002.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14839400 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825002.957, - "frameId": "2036.1", - "startTime": 1348171825002.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14839400 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825002.957, - "frameId": "2036.1", - "startTime": 1348171825002.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14839400 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825006.957, - "frameId": "2036.1", - "startTime": 1348171825006.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14839444 - } - ], - "data": { - "timerId": 105 - }, - "endTime": 1348171825006.957, - "frameId": "2036.1", - "startTime": 1348171825006.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14839444 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 106 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825016.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14839708 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825016.957, - "frameId": "2036.1", - "startTime": 1348171825016.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14840964 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825016.957, - "frameId": "2036.1", - "startTime": 1348171825016.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14840964 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825018.957, - "frameId": "2036.1", - "startTime": 1348171825018.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14840964 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825020.957, - "frameId": "2036.1", - "startTime": 1348171825020.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14841008 - } - ], - "data": { - "timerId": 106 - }, - "endTime": 1348171825020.957, - "frameId": "2036.1", - "startTime": 1348171825020.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14841008 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 107 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825030.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14841272 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825030.957, - "frameId": "2036.1", - "startTime": 1348171825030.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14842528 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825030.957, - "frameId": "2036.1", - "startTime": 1348171825030.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14842528 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825033.957, - "frameId": "2036.1", - "startTime": 1348171825033.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14842528 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825035.957, - "frameId": "2036.1", - "startTime": 1348171825035.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14842572 - } - ], - "data": { - "timerId": 107 - }, - "endTime": 1348171825035.957, - "frameId": "2036.1", - "startTime": 1348171825035.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14842572 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 108 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825043.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14842836 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825043.957, - "frameId": "2036.1", - "startTime": 1348171825043.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14844092 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825043.957, - "frameId": "2036.1", - "startTime": 1348171825043.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14844092 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825045.957, - "frameId": "2036.1", - "startTime": 1348171825045.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14844092 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825047.957, - "frameId": "2036.1", - "startTime": 1348171825047.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14844136 - } - ], - "data": { - "timerId": 108 - }, - "endTime": 1348171825047.957, - "frameId": "2036.1", - "startTime": 1348171825047.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14844136 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 109 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825057.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14844400 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825057.957, - "frameId": "2036.1", - "startTime": 1348171825057.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14845688 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825057.957, - "frameId": "2036.1", - "startTime": 1348171825057.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14845688 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825058.957, - "frameId": "2036.1", - "startTime": 1348171825058.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14845688 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825061.957, - "frameId": "2036.1", - "startTime": 1348171825061.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14845732 - } - ], - "data": { - "timerId": 109 - }, - "endTime": 1348171825061.957, - "frameId": "2036.1", - "startTime": 1348171825061.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14845732 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 110 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825070.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14845996 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825070.957, - "frameId": "2036.1", - "startTime": 1348171825070.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14847252 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825070.957, - "frameId": "2036.1", - "startTime": 1348171825070.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14847252 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825072.957, - "frameId": "2036.1", - "startTime": 1348171825072.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14847252 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825075.957, - "frameId": "2036.1", - "startTime": 1348171825075.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14847296 - } - ], - "data": { - "timerId": 110 - }, - "endTime": 1348171825075.957, - "frameId": "2036.1", - "startTime": 1348171825075.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14847296 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 111 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825084.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14847560 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825084.957, - "frameId": "2036.1", - "startTime": 1348171825084.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14848816 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825084.957, - "frameId": "2036.1", - "startTime": 1348171825084.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14848816 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825087.957, - "frameId": "2036.1", - "startTime": 1348171825087.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14848816 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825089.957, - "frameId": "2036.1", - "startTime": 1348171825089.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14848860 - } - ], - "data": { - "timerId": 111 - }, - "endTime": 1348171825089.957, - "frameId": "2036.1", - "startTime": 1348171825089.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14848860 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 112 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825097.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14849124 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825097.957, - "frameId": "2036.1", - "startTime": 1348171825097.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14850412 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825097.957, - "frameId": "2036.1", - "startTime": 1348171825097.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14850412 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825099.957, - "frameId": "2036.1", - "startTime": 1348171825099.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14850412 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825101.957, - "frameId": "2036.1", - "startTime": 1348171825101.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14850456 - } - ], - "data": { - "timerId": 112 - }, - "endTime": 1348171825101.957, - "frameId": "2036.1", - "startTime": 1348171825101.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14850456 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 113 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825111.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14850720 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825111.957, - "frameId": "2036.1", - "startTime": 1348171825111.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14852008 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825111.957, - "frameId": "2036.1", - "startTime": 1348171825111.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14852008 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825112.957, - "frameId": "2036.1", - "startTime": 1348171825112.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14852008 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825114.957, - "frameId": "2036.1", - "startTime": 1348171825114.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14852052 - } - ], - "data": { - "timerId": 113 - }, - "endTime": 1348171825114.957, - "frameId": "2036.1", - "startTime": 1348171825114.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14852052 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 114 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825125.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14852316 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825125.957, - "frameId": "2036.1", - "startTime": 1348171825125.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14853572 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825125.957, - "frameId": "2036.1", - "startTime": 1348171825125.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14853572 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825127.957, - "frameId": "2036.1", - "startTime": 1348171825127.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14853572 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825129.957, - "frameId": "2036.1", - "startTime": 1348171825129.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14853616 - } - ], - "data": { - "timerId": 114 - }, - "endTime": 1348171825129.957, - "frameId": "2036.1", - "startTime": 1348171825129.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14853616 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 115 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825138.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14853880 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825138.957, - "frameId": "2036.1", - "startTime": 1348171825138.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14855168 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825138.957, - "frameId": "2036.1", - "startTime": 1348171825138.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14855168 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825139.957, - "frameId": "2036.1", - "startTime": 1348171825139.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14855168 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825141.957, - "frameId": "2036.1", - "startTime": 1348171825141.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14855212 - } - ], - "data": { - "timerId": 115 - }, - "endTime": 1348171825141.957, - "frameId": "2036.1", - "startTime": 1348171825141.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14855212 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 116 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825152.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14855476 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825152.957, - "frameId": "2036.1", - "startTime": 1348171825152.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14856764 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825152.957, - "frameId": "2036.1", - "startTime": 1348171825152.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14856764 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825153.957, - "frameId": "2036.1", - "startTime": 1348171825153.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14856764 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825155.957, - "frameId": "2036.1", - "startTime": 1348171825155.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14856808 - } - ], - "data": { - "timerId": 116 - }, - "endTime": 1348171825155.957, - "frameId": "2036.1", - "startTime": 1348171825155.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14856808 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 117 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825166.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14857072 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825166.957, - "frameId": "2036.1", - "startTime": 1348171825166.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14858328 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825166.957, - "frameId": "2036.1", - "startTime": 1348171825166.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14858328 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825166.957, - "frameId": "2036.1", - "startTime": 1348171825166.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14858328 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825171.957, - "frameId": "2036.1", - "startTime": 1348171825171.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14858372 - } - ], - "data": { - "timerId": 117 - }, - "endTime": 1348171825171.957, - "frameId": "2036.1", - "startTime": 1348171825171.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14858372 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 118 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825180.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14858636 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825180.957, - "frameId": "2036.1", - "startTime": 1348171825180.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14859924 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825180.957, - "frameId": "2036.1", - "startTime": 1348171825180.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14859924 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825182.957, - "frameId": "2036.1", - "startTime": 1348171825182.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14859924 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825184.957, - "frameId": "2036.1", - "startTime": 1348171825184.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14859968 - } - ], - "data": { - "timerId": 118 - }, - "endTime": 1348171825184.957, - "frameId": "2036.1", - "startTime": 1348171825184.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14859968 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 119 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825194.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14860232 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825194.957, - "frameId": "2036.1", - "startTime": 1348171825194.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14861520 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825194.957, - "frameId": "2036.1", - "startTime": 1348171825194.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14861520 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825195.957, - "frameId": "2036.1", - "startTime": 1348171825195.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14861520 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825198.957, - "frameId": "2036.1", - "startTime": 1348171825198.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14861564 - } - ], - "data": { - "timerId": 119 - }, - "endTime": 1348171825198.957, - "frameId": "2036.1", - "startTime": 1348171825198.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14861564 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 120 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825208.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14861828 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825208.957, - "frameId": "2036.1", - "startTime": 1348171825208.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14863116 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825208.957, - "frameId": "2036.1", - "startTime": 1348171825208.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14863116 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825210.957, - "frameId": "2036.1", - "startTime": 1348171825210.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14863116 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825212.957, - "frameId": "2036.1", - "startTime": 1348171825212.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14863160 - } - ], - "data": { - "timerId": 120 - }, - "endTime": 1348171825212.957, - "frameId": "2036.1", - "startTime": 1348171825212.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14863160 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 121 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825222.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14863424 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825222.957, - "frameId": "2036.1", - "startTime": 1348171825222.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14864712 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825222.957, - "frameId": "2036.1", - "startTime": 1348171825222.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14864712 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825223.957, - "frameId": "2036.1", - "startTime": 1348171825223.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14864712 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825225.957, - "frameId": "2036.1", - "startTime": 1348171825225.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14864756 - } - ], - "data": { - "timerId": 121 - }, - "endTime": 1348171825225.957, - "frameId": "2036.1", - "startTime": 1348171825225.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14864756 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 122 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825236.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14865020 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825236.957, - "frameId": "2036.1", - "startTime": 1348171825236.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14866276 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825236.957, - "frameId": "2036.1", - "startTime": 1348171825236.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14866276 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825238.957, - "frameId": "2036.1", - "startTime": 1348171825238.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14866276 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825240.957, - "frameId": "2036.1", - "startTime": 1348171825240.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14866320 - } - ], - "data": { - "timerId": 122 - }, - "endTime": 1348171825240.957, - "frameId": "2036.1", - "startTime": 1348171825240.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14866320 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 123 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825250.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14866584 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825250.957, - "frameId": "2036.1", - "startTime": 1348171825250.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14867872 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825250.957, - "frameId": "2036.1", - "startTime": 1348171825250.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14867872 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825250.957, - "frameId": "2036.1", - "startTime": 1348171825250.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14867872 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825254.957, - "frameId": "2036.1", - "startTime": 1348171825254.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14867916 - } - ], - "data": { - "timerId": 123 - }, - "endTime": 1348171825254.957, - "frameId": "2036.1", - "startTime": 1348171825254.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14867916 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 124 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825263.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14868180 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825263.957, - "frameId": "2036.1", - "startTime": 1348171825263.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14869468 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825263.957, - "frameId": "2036.1", - "startTime": 1348171825263.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14869468 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825265.957, - "frameId": "2036.1", - "startTime": 1348171825265.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14869468 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825266.957, - "frameId": "2036.1", - "startTime": 1348171825266.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14869512 - } - ], - "data": { - "timerId": 124 - }, - "endTime": 1348171825266.957, - "frameId": "2036.1", - "startTime": 1348171825266.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14869512 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1582, - "scriptName": "native v8natives.js" - }, - "endTime": 1348171825268.957, - "frameId": "2036.1", - "startTime": 1348171825268.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14869688 - } - ], - "data": { - "timerId": 3 - }, - "endTime": 1348171825268.957, - "frameId": "2036.1", - "startTime": 1348171825268.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14869688 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 125 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825277.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14869952 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825277.957, - "frameId": "2036.1", - "startTime": 1348171825277.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14871208 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825277.957, - "frameId": "2036.1", - "startTime": 1348171825277.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14871208 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825279.957, - "frameId": "2036.1", - "startTime": 1348171825279.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14871208 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825282.957, - "frameId": "2036.1", - "startTime": 1348171825282.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14871252 - } - ], - "data": { - "timerId": 125 - }, - "endTime": 1348171825282.957, - "frameId": "2036.1", - "startTime": 1348171825282.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14871252 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 126 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825290.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14871516 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825290.957, - "frameId": "2036.1", - "startTime": 1348171825290.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14872804 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825290.957, - "frameId": "2036.1", - "startTime": 1348171825290.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14872804 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825291.957, - "frameId": "2036.1", - "startTime": 1348171825291.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14872804 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825293.957, - "frameId": "2036.1", - "startTime": 1348171825293.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14872848 - } - ], - "data": { - "timerId": 126 - }, - "endTime": 1348171825293.957, - "frameId": "2036.1", - "startTime": 1348171825293.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14872848 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 127 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825304.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14873112 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825304.957, - "frameId": "2036.1", - "startTime": 1348171825304.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14874400 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825304.957, - "frameId": "2036.1", - "startTime": 1348171825304.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14874400 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825304.957, - "frameId": "2036.1", - "startTime": 1348171825304.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14874400 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825307.957, - "frameId": "2036.1", - "startTime": 1348171825307.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14874444 - } - ], - "data": { - "timerId": 127 - }, - "endTime": 1348171825307.957, - "frameId": "2036.1", - "startTime": 1348171825307.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14874444 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 128 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825317.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14874708 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825317.957, - "frameId": "2036.1", - "startTime": 1348171825317.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14875996 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825317.957, - "frameId": "2036.1", - "startTime": 1348171825317.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14875996 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825319.957, - "frameId": "2036.1", - "startTime": 1348171825319.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14875996 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825321.957, - "frameId": "2036.1", - "startTime": 1348171825321.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14876040 - } - ], - "data": { - "timerId": 128 - }, - "endTime": 1348171825321.957, - "frameId": "2036.1", - "startTime": 1348171825321.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14876040 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 129 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825331.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14876304 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825331.957, - "frameId": "2036.1", - "startTime": 1348171825331.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14877592 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825331.957, - "frameId": "2036.1", - "startTime": 1348171825331.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14877592 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825332.957, - "frameId": "2036.1", - "startTime": 1348171825332.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14877592 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825334.957, - "frameId": "2036.1", - "startTime": 1348171825334.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14877636 - } - ], - "data": { - "timerId": 129 - }, - "endTime": 1348171825334.957, - "frameId": "2036.1", - "startTime": 1348171825334.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14877636 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 130 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825345.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14877900 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825345.957, - "frameId": "2036.1", - "startTime": 1348171825345.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14879188 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825345.957, - "frameId": "2036.1", - "startTime": 1348171825345.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14879188 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825346.957, - "frameId": "2036.1", - "startTime": 1348171825346.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14879188 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825348.957, - "frameId": "2036.1", - "startTime": 1348171825348.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14879232 - } - ], - "data": { - "timerId": 130 - }, - "endTime": 1348171825348.957, - "frameId": "2036.1", - "startTime": 1348171825348.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14879232 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 131 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825359.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14879496 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825359.957, - "frameId": "2036.1", - "startTime": 1348171825359.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14880784 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825359.957, - "frameId": "2036.1", - "startTime": 1348171825359.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14880784 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825360.957, - "frameId": "2036.1", - "startTime": 1348171825360.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14880784 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825362.957, - "frameId": "2036.1", - "startTime": 1348171825362.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14880828 - } - ], - "data": { - "timerId": 131 - }, - "endTime": 1348171825362.957, - "frameId": "2036.1", - "startTime": 1348171825362.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14880828 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 132 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825373.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14881092 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825373.957, - "frameId": "2036.1", - "startTime": 1348171825373.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14882380 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825373.957, - "frameId": "2036.1", - "startTime": 1348171825373.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14882380 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825374.957, - "frameId": "2036.1", - "startTime": 1348171825374.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14882380 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825376.957, - "frameId": "2036.1", - "startTime": 1348171825376.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14882424 - } - ], - "data": { - "timerId": 132 - }, - "endTime": 1348171825376.957, - "frameId": "2036.1", - "startTime": 1348171825376.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14882424 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 133 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825387.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14882688 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825387.957, - "frameId": "2036.1", - "startTime": 1348171825387.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14883976 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825387.957, - "frameId": "2036.1", - "startTime": 1348171825387.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14883976 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825389.957, - "frameId": "2036.1", - "startTime": 1348171825389.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14883976 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825391.957, - "frameId": "2036.1", - "startTime": 1348171825391.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14884020 - } - ], - "data": { - "timerId": 133 - }, - "endTime": 1348171825391.957, - "frameId": "2036.1", - "startTime": 1348171825391.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14884020 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 134 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825401.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14884284 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825401.957, - "frameId": "2036.1", - "startTime": 1348171825401.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14885572 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825401.957, - "frameId": "2036.1", - "startTime": 1348171825401.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14885572 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825403.957, - "frameId": "2036.1", - "startTime": 1348171825403.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14885572 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825403.957, - "frameId": "2036.1", - "startTime": 1348171825403.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14885616 - } - ], - "data": { - "timerId": 134 - }, - "endTime": 1348171825403.957, - "frameId": "2036.1", - "startTime": 1348171825403.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14885616 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 135 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825414.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14885880 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825414.957, - "frameId": "2036.1", - "startTime": 1348171825414.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14887124 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825414.957, - "frameId": "2036.1", - "startTime": 1348171825414.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14887124 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825416.957, - "frameId": "2036.1", - "startTime": 1348171825416.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14887124 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825418.957, - "frameId": "2036.1", - "startTime": 1348171825418.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14887168 - } - ], - "data": { - "timerId": 135 - }, - "endTime": 1348171825418.957, - "frameId": "2036.1", - "startTime": 1348171825418.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14887168 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 136 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825428.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14887432 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825428.957, - "frameId": "2036.1", - "startTime": 1348171825428.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14888720 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825428.957, - "frameId": "2036.1", - "startTime": 1348171825428.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14888720 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825430.957, - "frameId": "2036.1", - "startTime": 1348171825430.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14888720 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825431.957, - "frameId": "2036.1", - "startTime": 1348171825431.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14888764 - } - ], - "data": { - "timerId": 136 - }, - "endTime": 1348171825431.957, - "frameId": "2036.1", - "startTime": 1348171825431.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14888764 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 137 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825442.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14889028 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825442.957, - "frameId": "2036.1", - "startTime": 1348171825442.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14890316 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825442.957, - "frameId": "2036.1", - "startTime": 1348171825442.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14890316 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825446.957, - "frameId": "2036.1", - "startTime": 1348171825446.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14890316 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825450.957, - "frameId": "2036.1", - "startTime": 1348171825450.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14890360 - } - ], - "data": { - "timerId": 137 - }, - "endTime": 1348171825450.957, - "frameId": "2036.1", - "startTime": 1348171825450.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14890360 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 138 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825456.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14890624 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825456.957, - "frameId": "2036.1", - "startTime": 1348171825456.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14891912 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825456.957, - "frameId": "2036.1", - "startTime": 1348171825456.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14891912 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825457.957, - "frameId": "2036.1", - "startTime": 1348171825457.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14891912 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825460.957, - "frameId": "2036.1", - "startTime": 1348171825460.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14891956 - } - ], - "data": { - "timerId": 138 - }, - "endTime": 1348171825460.957, - "frameId": "2036.1", - "startTime": 1348171825460.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14891956 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 139 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825469.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14892220 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825469.957, - "frameId": "2036.1", - "startTime": 1348171825469.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14893508 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825469.957, - "frameId": "2036.1", - "startTime": 1348171825469.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14893508 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825471.957, - "frameId": "2036.1", - "startTime": 1348171825471.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14893508 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825473.957, - "frameId": "2036.1", - "startTime": 1348171825473.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14893552 - } - ], - "data": { - "timerId": 139 - }, - "endTime": 1348171825473.957, - "frameId": "2036.1", - "startTime": 1348171825473.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14893552 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 140 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825482.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14893816 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825482.957, - "frameId": "2036.1", - "startTime": 1348171825482.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14895104 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825482.957, - "frameId": "2036.1", - "startTime": 1348171825482.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14895104 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825483.957, - "frameId": "2036.1", - "startTime": 1348171825483.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14895104 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825485.957, - "frameId": "2036.1", - "startTime": 1348171825485.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14895148 - } - ], - "data": { - "timerId": 140 - }, - "endTime": 1348171825485.957, - "frameId": "2036.1", - "startTime": 1348171825485.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14895148 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 141 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825496.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14895412 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825496.957, - "frameId": "2036.1", - "startTime": 1348171825496.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14896700 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825496.957, - "frameId": "2036.1", - "startTime": 1348171825496.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14896700 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825498.957, - "frameId": "2036.1", - "startTime": 1348171825498.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14896700 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825501.957, - "frameId": "2036.1", - "startTime": 1348171825501.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14896744 - } - ], - "data": { - "timerId": 141 - }, - "endTime": 1348171825501.957, - "frameId": "2036.1", - "startTime": 1348171825501.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14896744 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 142 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825510.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14897008 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825510.957, - "frameId": "2036.1", - "startTime": 1348171825510.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14898296 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825510.957, - "frameId": "2036.1", - "startTime": 1348171825510.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14898296 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825510.957, - "frameId": "2036.1", - "startTime": 1348171825510.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14898296 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825515.957, - "frameId": "2036.1", - "startTime": 1348171825515.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14898340 - } - ], - "data": { - "timerId": 142 - }, - "endTime": 1348171825515.957, - "frameId": "2036.1", - "startTime": 1348171825515.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14898340 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 143 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825523.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14898604 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825523.957, - "frameId": "2036.1", - "startTime": 1348171825523.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14899892 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825523.957, - "frameId": "2036.1", - "startTime": 1348171825523.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14899892 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825524.957, - "frameId": "2036.1", - "startTime": 1348171825524.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14899892 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825526.957, - "frameId": "2036.1", - "startTime": 1348171825526.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14899936 - } - ], - "data": { - "timerId": 143 - }, - "endTime": 1348171825526.957, - "frameId": "2036.1", - "startTime": 1348171825526.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14899936 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 144 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825537.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14900200 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825537.957, - "frameId": "2036.1", - "startTime": 1348171825537.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14901488 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825537.957, - "frameId": "2036.1", - "startTime": 1348171825537.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14901488 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825540.957, - "frameId": "2036.1", - "startTime": 1348171825540.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14901488 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825541.957, - "frameId": "2036.1", - "startTime": 1348171825541.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14901532 - } - ], - "data": { - "timerId": 144 - }, - "endTime": 1348171825541.957, - "frameId": "2036.1", - "startTime": 1348171825541.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14901532 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 145 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825551.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14901796 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825551.957, - "frameId": "2036.1", - "startTime": 1348171825551.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14903084 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825551.957, - "frameId": "2036.1", - "startTime": 1348171825551.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14903084 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825552.957, - "frameId": "2036.1", - "startTime": 1348171825552.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14903084 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825554.957, - "frameId": "2036.1", - "startTime": 1348171825554.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14903128 - } - ], - "data": { - "timerId": 145 - }, - "endTime": 1348171825554.957, - "frameId": "2036.1", - "startTime": 1348171825554.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14903128 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 146 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825565.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14903392 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825565.957, - "frameId": "2036.1", - "startTime": 1348171825565.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14904636 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825565.957, - "frameId": "2036.1", - "startTime": 1348171825565.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14904636 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825565.957, - "frameId": "2036.1", - "startTime": 1348171825565.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14904636 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825570.957, - "frameId": "2036.1", - "startTime": 1348171825570.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14904680 - } - ], - "data": { - "timerId": 146 - }, - "endTime": 1348171825570.957, - "frameId": "2036.1", - "startTime": 1348171825570.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14904680 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 147 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825579.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14904944 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825579.957, - "frameId": "2036.1", - "startTime": 1348171825579.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14906188 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825579.957, - "frameId": "2036.1", - "startTime": 1348171825579.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14906188 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825581.957, - "frameId": "2036.1", - "startTime": 1348171825581.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14906188 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825582.957, - "frameId": "2036.1", - "startTime": 1348171825582.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14906232 - } - ], - "data": { - "timerId": 147 - }, - "endTime": 1348171825582.957, - "frameId": "2036.1", - "startTime": 1348171825582.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14906232 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 148 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825593.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14906496 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825593.957, - "frameId": "2036.1", - "startTime": 1348171825593.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14907784 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825593.957, - "frameId": "2036.1", - "startTime": 1348171825593.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14907784 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825595.957, - "frameId": "2036.1", - "startTime": 1348171825595.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14907784 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825597.957, - "frameId": "2036.1", - "startTime": 1348171825597.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14907828 - } - ], - "data": { - "timerId": 148 - }, - "endTime": 1348171825597.957, - "frameId": "2036.1", - "startTime": 1348171825597.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14907828 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 149 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825607.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14908092 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825607.957, - "frameId": "2036.1", - "startTime": 1348171825607.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14909380 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825607.957, - "frameId": "2036.1", - "startTime": 1348171825607.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14909380 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825609.957, - "frameId": "2036.1", - "startTime": 1348171825609.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14909380 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825609.957, - "frameId": "2036.1", - "startTime": 1348171825609.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14909424 - } - ], - "data": { - "timerId": 149 - }, - "endTime": 1348171825609.957, - "frameId": "2036.1", - "startTime": 1348171825609.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14909424 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 150 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825621.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14909688 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825621.957, - "frameId": "2036.1", - "startTime": 1348171825621.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14910976 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825621.957, - "frameId": "2036.1", - "startTime": 1348171825621.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14910976 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825621.957, - "frameId": "2036.1", - "startTime": 1348171825621.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14910976 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825626.957, - "frameId": "2036.1", - "startTime": 1348171825626.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14911020 - } - ], - "data": { - "timerId": 150 - }, - "endTime": 1348171825626.957, - "frameId": "2036.1", - "startTime": 1348171825626.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14911020 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 151 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825635.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14911284 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825635.957, - "frameId": "2036.1", - "startTime": 1348171825635.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14912572 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825635.957, - "frameId": "2036.1", - "startTime": 1348171825635.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14912572 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825637.957, - "frameId": "2036.1", - "startTime": 1348171825637.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14912572 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825639.957, - "frameId": "2036.1", - "startTime": 1348171825639.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14912616 - } - ], - "data": { - "timerId": 151 - }, - "endTime": 1348171825639.957, - "frameId": "2036.1", - "startTime": 1348171825639.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14912616 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 152 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825649.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14914116 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825650.957, - "frameId": "2036.1", - "startTime": 1348171825649.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14915404 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825650.957, - "frameId": "2036.1", - "startTime": 1348171825649.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14915404 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825651.957, - "frameId": "2036.1", - "startTime": 1348171825651.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14915404 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825653.957, - "frameId": "2036.1", - "startTime": 1348171825653.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14918196 - } - ], - "data": { - "timerId": 152 - }, - "endTime": 1348171825653.957, - "frameId": "2036.1", - "startTime": 1348171825653.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14918196 - }, - { - "children": [ - { - "children": [ - { - "data": { - "singleShot": true, - "timeout": 0, - "timerId": 153 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 5506, - "functionName": "vc", - "lineNumber": 1, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43984, - "functionName": "f.fx.step", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 43137, - "functionName": "i", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44854, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825663.957, - "totalHeapSize": 23640832, - "type": "TimerInstall", - "usedHeapSize": 14918460 - }, - { - "data": { - "timerId": 95 - }, - "frameId": "2036.1", - "stackTrace": [ - { - "columnNumber": 44936, - "functionName": "f.extend.stop", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - { - "columnNumber": 44900, - "functionName": "f.extend.tick", - "lineNumber": 6, - "url": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - } - ], - "startTime": 1348171825663.957, - "totalHeapSize": 23640832, - "type": "TimerRemove", - "usedHeapSize": 14921332 - } - ], - "data": { - "scriptLine": 6, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825663.957, - "frameId": "2036.1", - "startTime": 1348171825663.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14921332 - } - ], - "data": { - "timerId": 95 - }, - "endTime": 1348171825663.957, - "frameId": "2036.1", - "startTime": 1348171825663.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14921332 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825665.957, - "frameId": "2036.1", - "startTime": 1348171825665.957, - "totalHeapSize": 23640832, - "type": "RecalculateStyles", - "usedHeapSize": 14921332 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1, - "scriptName": "http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js" - }, - "endTime": 1348171825668.957, - "frameId": "2036.1", - "startTime": 1348171825668.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14921376 - } - ], - "data": { - "timerId": 153 - }, - "endTime": 1348171825668.957, - "frameId": "2036.1", - "startTime": 1348171825668.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14921376 - }, - { - "children": [], - "data": {}, - "endTime": 1348171825670.957, - "frameId": "2036.1", - "startTime": 1348171825670.957, - "totalHeapSize": 23640832, - "type": "Layout", - "usedHeapSize": 14921376 - }, - { - "children": [ - { - "children": [], - "data": { - "scriptLine": 1582, - "scriptName": "native v8natives.js" - }, - "endTime": 1348171826266.957, - "frameId": "2036.1", - "startTime": 1348171826266.957, - "totalHeapSize": 23640832, - "type": "FunctionCall", - "usedHeapSize": 14921552 - } - ], - "data": { - "timerId": 3 - }, - "endTime": 1348171826266.957, - "frameId": "2036.1", - "startTime": 1348171826266.957, - "totalHeapSize": 23640832, - "type": "TimerFire", - "usedHeapSize": 14921552 - } -] diff --git a/test/fixtures/objects/utilization.json b/test/fixtures/objects/utilization.json deleted file mode 100644 index 4e917b0..0000000 --- a/test/fixtures/objects/utilization.json +++ /dev/null @@ -1,634 +0,0 @@ -{ - "Offset Time (ms)": [ - 93, - 193, - 294, - 395, - 495, - 596, - 696, - 796, - 897, - 997, - 1097, - 1198, - 1298, - 1398, - 1499, - 1599, - 1700, - 1800, - 1900, - 2000, - 2101, - 2201, - 2302, - 2402, - 2502, - 2602, - 2703, - 2803, - 2904, - 3004, - 3104, - 3205, - 3305, - 3405, - 3505, - 3606, - 3715, - 3815, - 3915, - 4015, - 4115, - 4216, - 4316, - 4417, - 4517, - 4617, - 4718, - 4818, - 4918, - 5018, - 5119, - 5219, - 5320, - 5420, - 5520, - 5621, - 5721, - 5821, - 5922, - 6022, - 6122, - 6222, - 6323, - 6423, - 6524, - 6624, - 6724, - 6824, - 6925, - 7025, - 7126, - 7226, - 7326, - 7426, - 7527, - 7627, - 7728, - 7828, - 7928, - 8028, - 8129, - 8229, - 8330, - 8430, - 8530, - 8631, - 8731, - 8831, - 8931, - 9032, - 9132, - 9233, - 9333, - 9433, - 9534, - 9634, - 9734, - 9834, - 9935, - 10035, - 10136, - 10236, - 10336, - 10437, - 10537, - 10637, - 10737, - 10838, - 10945, - 11044, - 11146, - 11246, - 11347, - 11447, - 11547, - 11648, - 11748, - 11848, - 11949, - 12050, - 12149, - 12249, - 12350, - 12450, - 12550, - 12655, - 12755, - 12858, - 12958, - 13069, - 13169, - 13269, - 13370, - 13470, - 13570, - 13670, - 13771, - 13871, - 13971, - 14072, - 14172, - 14272, - 14373, - 14473, - 14573, - 14674, - 14774, - 14874, - 14975, - 15075, - 15175, - 15276, - 15376, - 15477, - 15577, - 15677 - ], - "Bandwidth In (kbps)": [ - 0, - 0, - 282080, - 3564, - 0, - 0, - 0, - 0, - 0, - 93200, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 694787, - 1756800, - 0, - 0, - 235600, - 20000, - 231680, - 1835959, - 233504, - 0, - 1621760, - 1346320, - 1664320, - 1538275, - 1381090, - 1214640, - 1777120, - 1249600, - 1704000, - 1363200, - 1363200, - 1363200, - 1363200, - 1931200, - 1022400, - 1854320, - 1363200, - 1476800, - 1414720, - 1249600, - 1704000, - 1476800, - 1249600, - 1704000, - 1363200, - 1363200, - 1590400, - 1443360, - 1590400, - 1363200, - 1249600, - 1766574, - 1606464, - 1249600, - 1430960, - 1151680, - 1717440, - 1494720, - 1254080, - 1590400, - 1590400, - 1294400, - 1363200, - 1704000, - 1590400, - 1249600, - 1363200, - 1704000, - 1590400, - 1249600, - 1363200, - 1590400, - 1249600, - 1704000, - 1363200, - 1476800, - 1363200, - 1704000, - 1249600, - 1590400, - 1363200, - 1363200, - 1606464, - 1590400, - 1363200, - 1590400, - 1249600, - 1704000, - 1363200, - 1476800, - 1136000, - 1704000, - 1704000, - 1136000, - 1363200, - 1286037, - 2065454, - 1291009, - 1606464, - 1363200, - 1590400, - 1363200, - 1383360, - 1378880, - 1260800, - 1849040, - 1349702, - 1622857, - 718640, - 0, - 112640, - 167680, - 230000, - 1699313, - 1077647, - 720808, - 846630, - 36282, - 844444, - 1654640, - 1156525, - 1615040, - 1634960, - 598240, - 100560, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "CPU Utilization (%)": [ - 40, - 0, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 0, - 0, - 0, - 0, - 10, - 0, - 40, - 10, - 10, - 0, - 0, - 10, - 10, - 0, - 80, - 90, - 20, - 20, - 20, - 27, - 80, - 0, - 30, - 10, - 10, - 20, - 10, - 10, - 10, - 10, - 10, - 20, - 10, - 0, - 20, - 0, - 0, - 0, - 10, - 20, - 0, - 10, - 0, - 30, - 100, - 100, - 100, - 100, - 100, - 50, - 0, - 10, - 0, - 10, - 10, - 20, - 0, - 20, - 9, - 0, - 20, - 0, - 10, - 0, - 0, - 0, - 40, - 0, - 10, - 10, - 0, - 30, - 0, - 20, - 10, - 10, - 0, - 0, - 10, - 10, - 10, - 10, - 0, - 0, - 20, - 10, - 0, - 10, - 0, - 20, - 0, - 18, - 20, - 90, - 90, - 100, - 60, - 10, - 0, - 10, - 0, - 70, - 100, - 100, - 90, - 100, - 100, - 90, - 100, - 40, - 45, - 40, - 100, - 80, - 10, - 10, - 0, - 0, - 10, - 40, - 10, - 10, - 0, - 0, - 40, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "Memory Use (KB)": [ - 36512, - 36512, - 36956, - 36956, - 36956, - 36956, - 36956, - 36960, - 36960, - 37148, - 37148, - 37148, - 37148, - 37148, - 37148, - 37148, - 37148, - 37148, - 37148, - 37152, - 37152, - 37152, - 37152, - 37288, - 37292, - 37308, - 37308, - 37392, - 37544, - 37560, - 37592, - 37704, - 37780, - 38068, - 38408, - 38856, - 38912, - 38792, - 38812, - 38848, - 38960, - 37760, - 37772, - 37808, - 37808, - 37824, - 37852, - 37868, - 37840, - 37864, - 37876, - 37708, - 37724, - 37756, - 37756, - 37772, - 37808, - 37824, - 37840, - 37876, - 37724, - 37328, - 37352, - 37420, - 37492, - 37332, - 37360, - 37380, - 37392, - 37432, - 37456, - 37204, - 37236, - 37336, - 37368, - 37384, - 37400, - 37440, - 37440, - 37476, - 37476, - 37504, - 37504, - 37596, - 37612, - 37628, - 37660, - 37660, - 37692, - 37696, - 37728, - 37444, - 37476, - 37492, - 37508, - 37540, - 37540, - 37572, - 37572, - 37612, - 37628, - 37644, - 37672, - 37672, - 37704, - 37704, - 37740, - 37740, - 37772, - 37808, - 37116, - 36808, - 36824, - 36852, - 36872, - 36892, - 36916, - 36920, - 36940, - 36984, - 37008, - 35764, - 36016, - 36220, - 36200, - 35888, - 35952, - 36104, - 36856, - 31484, - 31776, - 31384, - 31432, - 31472, - 31540, - 31540, - 31720, - 31832, - 31864, - 31584, - 31584, - 30532, - 30744, - 30744, - 30744, - 30744, - 30744, - 30744, - 30744, - 30748, - 30748, - 30748, - 30748, - 30748, - 30748, - 30768 - ] -} diff --git a/test/fixtures/objects/waterfall.txt b/test/fixtures/objects/waterfall.txt deleted file mode 100644 index 0dd12f1..0000000 --- a/test/fixtures/objects/waterfall.txt +++ /dev/null @@ -1 +0,0 @@ -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 diff --git a/test/fixtures/objects/waterfallNotFound.txt b/test/fixtures/objects/waterfallNotFound.txt deleted file mode 100644 index 8bd53c9..0000000 --- a/test/fixtures/objects/waterfallNotFound.txt +++ /dev/null @@ -1 +0,0 @@ -iVBORw0KGgoAAAANSUhEUgAAA6IAAAAsBAMAAACNhBiBAAAAGFBMVEX///8AAADAwMD/fwAAfwDw8PD/YGD//2A7gkQOAAABAUlEQVR4nO3cQW7DIBBA0ZkbDIvcq5vc/yoF49bZxIkaKktf/wsRC5uweJKXjtv9wpotL64EvX+FLS6jnt2qqGNU5fZzzFHZt9f+2O+WMefP4nji9Pinh9tfeyGatc9zavOyxmpOuGh5iGbuG9s2KuqFmaLLOxHtb+TWETfFbLGNcdFXxuhe++KDW82pJum4e368oss7Ef2wt/5X0eUpSuv/RN9K0eUpSktRWorSUpSWorQUpaUoLUVpKUpLUVqK0lKUlqK0FKWlKC1FaSlKS1FaitJSlJaitBSlpSgtRWkpSktRWorSUpSWorQUpaUoLUVpKUpLUVqK0sq4+qNntrhv8FWVFKNKWMcAAAAASUVORK5CYII= diff --git a/test/fixtures/objects/waterfallThumbnail.txt b/test/fixtures/objects/waterfallThumbnail.txt deleted file mode 100644 index ec0b4d9..0000000 --- a/test/fixtures/objects/waterfallThumbnail.txt +++ /dev/null @@ -1 +0,0 @@ -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 diff --git a/test/fixtures/objects/waterfallThumbnailNotFound.txt b/test/fixtures/objects/waterfallThumbnailNotFound.txt deleted file mode 100644 index 45929a1..0000000 --- a/test/fixtures/objects/waterfallThumbnailNotFound.txt +++ /dev/null @@ -1 +0,0 @@ -iVBORw0KGgoAAAANSUhEUgAAAPoAAAAMBAMAAAC5Cb0KAAAAG1BMVEX///8AAADAwMDQ0ND/t3CJyInw8PD/YGD//2BVx1Z+AAAANUlEQVQ4jWNQS0MBSnQFDKiWpyUw0BEwMSigCihgU0U725VGsO1o1o3aPmr7sLedvkUrGgAAEesto+/ErRwAAAAASUVORK5CYII= diff --git a/test/fixtures/responses/cancel.html b/test/fixtures/responses/cancel.html deleted file mode 100644 index 5af6ff5..0000000 --- a/test/fixtures/responses/cancel.html +++ /dev/null @@ -1 +0,0 @@ -

Test cancelled!

\ No newline at end of file diff --git a/test/fixtures/responses/cancelNotCancelled.html b/test/fixtures/responses/cancelNotCancelled.html deleted file mode 100644 index ae767f0..0000000 --- a/test/fixtures/responses/cancelNotCancelled.html +++ /dev/null @@ -1 +0,0 @@ -

Sorry, the test could not be cancelled. It may have already started or been cancelled

\ No newline at end of file diff --git a/test/fixtures/responses/consoleLog.json b/test/fixtures/responses/consoleLog.json deleted file mode 100644 index 66fdf24..0000000 --- a/test/fixtures/responses/consoleLog.json +++ /dev/null @@ -1 +0,0 @@ -[{"level":"log","line":4,"parameters":[{"type":"string","value":"foo"},{"description":"0","type":"number","value":0}],"repeatCount":1,"source":"console-api","stackTrace":[{"columnNumber":15,"functionName":"","lineNumber":4,"url":"http://host.com:8000/"}],"text":"foo","type":"log","url":"http://host.com:8000/"},{"level":"log","line":10,"parameters":[{"type":"string","value":"bar"},{"description":"1","type":"number","value":1}],"repeatCount":1,"source":"console-api","stackTrace":[{"columnNumber":15,"functionName":"","lineNumber":10,"url":"http://host.com:8000/"}],"text":"bar","type":"log","url":"http://host.com:8000/"}] \ No newline at end of file diff --git a/test/fixtures/responses/createVideo.json b/test/fixtures/responses/createVideo.json deleted file mode 100644 index 239fa1f..0000000 --- a/test/fixtures/responses/createVideo.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "statusCode":200, - "statusText":"Ok", - "data":{ - "videoId":"130416_36ed6e37013655a14b2b857cdccec99db72adcaa", - "jsonUrl":"http:\/\/www.webpagetest.org\/video\/view.php?f=json&id=130416_36ed6e37013655a14b2b857cdccec99db72adcaa", - "userUrl":"http:\/\/www.webpagetest.org\/video\/view.php?id=130416_36ed6e37013655a14b2b857cdccec99db72adcaa" - } -} diff --git a/test/fixtures/responses/embeddedVideoPlayer.html b/test/fixtures/responses/embeddedVideoPlayer.html deleted file mode 100644 index ce25f21..0000000 --- a/test/fixtures/responses/embeddedVideoPlayer.html +++ /dev/null @@ -1,56 +0,0 @@ - - - - -WebPagetest - Visual Comparison - Apr 30, 2013 : , - - - - - -
- - -
- - - diff --git a/test/fixtures/responses/googleCsiData.csv b/test/fixtures/responses/googleCsiData.csv deleted file mode 100644 index 4952049..0000000 --- a/test/fixtures/responses/googleCsiData.csv +++ /dev/null @@ -1,10 +0,0 @@ -"id","run","cached","service","action","variable","value" -"140101_AB_12","1","false","myservice","var1,var2","foo","123" -"140101_AB_12","1","false","myservice","var1,var2","bar","456" -"140101_AB_12","1","false","myservice","var1,var2","baz","789" -"140101_AB_12","2","false","myservice","var1,var2","foo","234" -"140101_AB_12","2","false","myservice","var1,var2","bar","567" -"140101_AB_12","2","false","myservice","var1,var2","baz","890" -"140101_AB_12","3","false","myservice","var1,var2","foo","345" -"140101_AB_12","3","false","myservice","var1,var2","bar","678" -"140101_AB_12","3","false","myservice","var1,var2","baz","901" diff --git a/test/fixtures/responses/googleCsiDataRun2.csv b/test/fixtures/responses/googleCsiDataRun2.csv deleted file mode 100644 index aa9e8ad..0000000 --- a/test/fixtures/responses/googleCsiDataRun2.csv +++ /dev/null @@ -1,4 +0,0 @@ -"id","run","cached","service","action","variable","value" -"140101_AB_12","2","false","myservice","var1,var2","foo","234" -"140101_AB_12","2","false","myservice","var1,var2","bar","567" -"140101_AB_12","2","false","myservice","var1,var2","baz","890" diff --git a/test/fixtures/responses/har.json b/test/fixtures/responses/har.json deleted file mode 100644 index 4c57a36..0000000 --- a/test/fixtures/responses/har.json +++ /dev/null @@ -1 +0,0 @@ -{"log":{"version":"1.1","creator":{"name":"WebPagetest","version":"1.8"},"pages":[{"startedDateTime":"2012-08-16T18:27:29.000+00:00","title":"Run 1, First View for ","id":"page_1_0","pageTimings":{"onLoad":13701,"onContentLoad":-1}},{"startedDateTime":"2012-08-16T18:28:03.000+00:00","title":"Run 2, First View for ","id":"page_2_0","pageTimings":{"onLoad":10972,"onContentLoad":-1}},{"startedDateTime":"2012-08-16T18:28:34.000+00:00","title":"Run 3, First View for ","id":"page_3_0","pageTimings":{"onLoad":12182,"onContentLoad":-1}}],"browser":{"name":"Google Chrome","version":"21.0.1180.79"},"entries":[{"pageref":"page_1_0","startedDateTime":"2012-08-16T18:27:29.994+00:00","time":1491,"request":{"method":"GET","url":"https://twitter.com/","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"twitter.com"},{"name":"Referer","value":"http://twitter.com/"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"no-cache, no-store, must-revalidate, pre-check=0, post-check=0"},{"name":"content-encoding","value":"gzip"},{"name":"content-length","value":"29987"},{"name":"content-type","value":"text/html; charset=utf-8"},{"name":"date","value":"Thu, 16 Aug 2012 18:27:30 GMT"},{"name":"etag","value":"\"61a4e7a628026c36523233df86d2bcaa\""},{"name":"expires","value":"Tue, 31 Mar 1981 05:00:00 GMT"},{"name":"last-modified","value":"Thu, 16 Aug 2012 18:27:30 GMT"},{"name":"pragma","value":"no-cache"},{"name":"server","value":"tfe"},{"name":"set-cookie","value":"dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:27:30 GMT"},{"name":"set-cookie","value":"pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"},{"name":"set-cookie","value":"_twitter_sess=BAh7DyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo%250ASGFzaHsABjoKQHVzZWR7ADoTc2hvd19oZWxwX2xpbmswOg9jcmVhdGVkX2F0%250AbCsIPo6wMDkBOgxjc3JmX2lkIiU5NTc0NmMwZDYzYzlhMjFjZWY1MGQ0ZWUz%250AMjA3NDk4MToQc3RheV9zZWN1cmVUOhNwYXNzd29yZF90b2tlbiItNWMxZTk5%250AODg2Mzc1MWQxZTJmYzlkYzIyMjA0ZTBkZWRhN2Q1ZDg5Yjobc2Vzc2lvbl9w%250AYXNzd29yZF90b2tlbiItNWMxZTk5ODg2Mzc1MWQxZTJmYzlkYzIyMjA0ZTBk%250AZWRhN2Q1ZDg5YjoJdXNlcmkEZc%252FoFzoHaWQiJTE5OGQ5N2M0OTk2NzUyMWQ2%250AMDNjZDAzMTMwNGFjZmE4OhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--81eaebfc4901aa122a8c75211ef959e385c7c842; domain=.twitter.com; path=/; secure; HttpOnly"},{"name":"status","value":"200 OK"},{"name":"strict-transport-security","value":"max-age=631138519"},{"name":"vary","value":"Accept-Encoding"},{"name":"version","value":"HTTP/1.1"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-mid","value":"17c6f45205128406d64318e3d4c79c0dcff838c2"},{"name":"x-runtime","value":"0.37937"},{"name":"x-transaction","value":"e300bdd8681d7255"},{"name":"x-xss-protection","value":"1; mode=block"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"text/html"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1347,"receive":144}},{"pageref":"page_1_0","startedDateTime":"2012-08-16T18:27:31.432+00:00","time":1210,"request":{"method":"GET","url":"https://si0.twimg.com/a/1345133470/t1/css/t1_core.bundle.css","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"text/css,*/*;q=0.1"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"h8z9Td/7D2oElkR+lOzR2DPSTCy8F5l9vNLkq+TyEMF1w3LyX7ayxtfe6dslwWV3"},{"name":"x-amz-request-id","value":"295BF01C9B4AEE58"},{"name":"Date","value":"Thu, 16 Aug 2012 18:27:31 GMT"},{"name":"Last-Modified","value":"Thu, 16 Aug 2012 16:15:41 GMT"},{"name":"ETag","value":"\"59337cd26ece9dbdc2d36eaa667efb4c\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"text/css"},{"name":"Server","value":"AmazonS3"},{"name":"Content-Encoding","value":"gzip"},{"name":"Vary","value":"Accept-Encoding"},{"name":"Content-Length","value":"27926"},{"name":"Cache-Control","value":"private, max-age=31449600"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 15 Aug 2013 18:27:31 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"text/css"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":470,"ssl":301,"send":0,"wait":594,"receive":146}},{"pageref":"page_1_0","startedDateTime":"2012-08-16T18:27:32.189+00:00","time":1204,"request":{"method":"GET","url":"https://si0.twimg.com/profile_images/2505588755/fo9wp35195hierdes2f5_normal.png","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"4+6eT2FAPhe49n4yxrbBSx22g37ylaFgzzwosHp5Qtev6bSu3Q5Bf1pRPo4qwxay"},{"name":"x-amz-request-id","value":"EFCECBDEDFE5608E"},{"name":"Date","value":"Thu, 16 Aug 2012 18:27:32 GMT"},{"name":"Last-Modified","value":"Wed, 15 Aug 2012 00:08:00 GMT"},{"name":"ETag","value":"\"2df6ad4d14cd84ebb56be69f4e838fcc\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/png"},{"name":"Content-Length","value":"3273"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=604800"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 23 Aug 2012 18:27:32 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/png"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":499,"ssl":-1,"send":0,"wait":671,"receive":34}},{"pageref":"page_1_0","startedDateTime":"2012-08-16T18:27:32.190+00:00","time":1304,"request":{"method":"GET","url":"https://si0.twimg.com/profile_images/1804416058/43776868-4e4e-45cc-b91c-7ec1b6f350aa_normal.png","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"scz9/mAalAfnDOTjmTH6/7Z2QBtURR49Qp1Vx356nHEePb+Now2o2kftmfoQPc5x"},{"name":"x-amz-request-id","value":"769DC651FEBEC1EE"},{"name":"Date","value":"Thu, 16 Aug 2012 18:27:32 GMT"},{"name":"Last-Modified","value":"Sat, 04 Feb 2012 21:42:09 GMT"},{"name":"ETag","value":"\"145b79a3a79e37520432d48a880b7e97\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/png"},{"name":"Content-Length","value":"5456"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=604800"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 23 Aug 2012 18:27:32 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/png"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":520,"ssl":-1,"send":0,"wait":681,"receive":103}},{"pageref":"page_1_0","startedDateTime":"2012-08-16T18:27:32.191+00:00","time":1375,"request":{"method":"GET","url":"https://si0.twimg.com/profile_images/2466871092/image_normal.jpg","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"7NEj14/u5J9sQNw3RlNMXtVpVYhZRJ74FUrqMsr8JfaAlp4WB8zSMVPYnrOZYPTy"},{"name":"x-amz-request-id","value":"5A5B0C1EC30B7ED4"},{"name":"Date","value":"Thu, 16 Aug 2012 18:27:32 GMT"},{"name":"Last-Modified","value":"Sat, 04 Aug 2012 13:11:29 GMT"},{"name":"ETag","value":"\"da79b27a7964b450de35597d1e47d5b4\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/jpeg"},{"name":"Content-Length","value":"1453"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=604800"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 23 Aug 2012 18:27:32 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/jpeg"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":610,"ssl":-1,"send":0,"wait":765,"receive":0}},{"pageref":"page_1_0","startedDateTime":"2012-08-16T18:27:32.192+00:00","time":752,"request":{"method":"GET","url":"https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"0EjGO3bb9WTEKhVNvYGh6b9jQeFAgihPIZQ/NbsiNt4kHj/25ceaF3X2lBegMBgJ"},{"name":"x-amz-request-id","value":"847A950EA4FC8B09"},{"name":"Date","value":"Thu, 16 Aug 2012 18:27:32 GMT"},{"name":"Last-Modified","value":"Thu, 26 May 2011 01:08:30 GMT"},{"name":"ETag","value":"\"46d5128c6bf7ee8b66257b966b8c883e\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/png"},{"name":"Content-Length","value":"1381"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=604800"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 23 Aug 2012 18:27:32 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/png"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":245,"ssl":128,"send":0,"wait":505,"receive":2}},{"pageref":"page_1_0","startedDateTime":"2012-08-16T18:27:32.192+00:00","time":870,"request":{"method":"GET","url":"https://si0.twimg.com/a/1345133470/t1/img/twitter_web_sprite_bgs.png","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"1ZsOeVxpeSixQ9eUW7vBdJdVCjmOMLvDgu+ZczTLzbuHnDuFrUQWBQ2ptp+b0R3Z"},{"name":"x-amz-request-id","value":"7B74D4B95ECA0474"},{"name":"Date","value":"Thu, 16 Aug 2012 18:27:32 GMT"},{"name":"Last-Modified","value":"Thu, 16 Aug 2012 16:15:41 GMT"},{"name":"ETag","value":"\"dc43d8feef9a6f6bc87fb56f2810bb1f\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/png"},{"name":"Content-Length","value":"6602"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=604800"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 23 Aug 2012 18:27:32 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/png"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":249,"ssl":126,"send":0,"wait":506,"receive":115}},{"pageref":"page_1_0","startedDateTime":"2012-08-16T18:27:32.198+00:00","time":1904,"request":{"method":"GET","url":"https://si0.twimg.com/a/1345133470/t1/img/twitter_web_sprite_icons.png","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"SZn+2XyAEy/JSLDLuF11DB+EDMyWDFXzXTUO3/W8freAaTH9AHevOJCsbnzmaPIf"},{"name":"x-amz-request-id","value":"49499E48F469851C"},{"name":"Date","value":"Thu, 16 Aug 2012 18:27:32 GMT"},{"name":"Last-Modified","value":"Thu, 16 Aug 2012 16:15:39 GMT"},{"name":"ETag","value":"\"223836604d80c5faa4079d6e5554cfbb\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/png"},{"name":"Content-Length","value":"65084"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=604800"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 23 Aug 2012 18:27:32 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/png"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":245,"ssl":126,"send":0,"wait":515,"receive":1144}},{"pageref":"page_1_0","startedDateTime":"2012-08-16T18:27:32.209+00:00","time":801,"request":{"method":"GET","url":"https://si0.twimg.com/a/1345133470/t1/img/wash-white-30.png","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"PFDD6lGbbBN8+gH2sMpnliksoIUhfjlUM9mZKggE2bF9ZtN21zxiMfj+Ibksdm4F"},{"name":"x-amz-request-id","value":"8A67F9C4834A8872"},{"name":"Date","value":"Thu, 16 Aug 2012 18:27:32 GMT"},{"name":"Last-Modified","value":"Thu, 16 Aug 2012 16:15:39 GMT"},{"name":"ETag","value":"\"bc953c554d5f0ab6402865969e7244b4\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/png"},{"name":"Content-Length","value":"940"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=604800"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 23 Aug 2012 18:27:32 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/png"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":269,"ssl":152,"send":0,"wait":532,"receive":0}},{"pageref":"page_1_0","startedDateTime":"2012-08-16T18:27:32.294+00:00","time":661,"request":{"method":"GET","url":"https://api.twitter.com/receiver.html","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"api.twitter.com"},{"name":"Accept","value":"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"},{"name":"Referer","value":"https://twitter.com/"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"max-age=300"},{"name":"content-encoding","value":"gzip"},{"name":"content-type","value":"text/html; charset=UTF-8"},{"name":"date","value":"Thu, 16 Aug 2012 18:27:32 GMT"},{"name":"expires","value":"Thu, 16 Aug 2012 18:32:32 GMT"},{"name":"last-modified","value":"Wed, 15 Aug 2012 21:05:50 GMT"},{"name":"server","value":"tfe"},{"name":"status","value":"200 OK"},{"name":"vary","value":"Accept-Encoding"},{"name":"version","value":"HTTP/1.1"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"text/html"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":287,"ssl":228,"send":0,"wait":370,"receive":4}},{"pageref":"page_1_0","startedDateTime":"2012-08-16T18:27:32.380+00:00","time":2929,"request":{"method":"GET","url":"https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"0vpG/0wtJEp7TOqdtyiR/AYji7s/2lD7r3rbMX/0Dp4pD1I9sUYM5mHLIsmf6o1x"},{"name":"x-amz-request-id","value":"A54095D1E835D86D"},{"name":"Date","value":"Thu, 16 Aug 2012 18:27:32 GMT"},{"name":"Last-Modified","value":"Thu, 16 Aug 2012 00:09:08 GMT"},{"name":"ETag","value":"\"4b3ce8775717a723bf0673ba11e197fb\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"application/javascript"},{"name":"Server","value":"AmazonS3"},{"name":"Content-Encoding","value":"gzip"},{"name":"Vary","value":"Accept-Encoding"},{"name":"Content-Length","value":"179563"},{"name":"Cache-Control","value":"private, max-age=31449600"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 15 Aug 2013 18:27:32 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"application/javascript"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":137,"ssl":125,"send":0,"wait":396,"receive":2396}},{"pageref":"page_1_0","startedDateTime":"2012-08-16T18:27:32.550+00:00","time":9012,"request":{"method":"GET","url":"https://si0.twimg.com/profile_background_images/594970743/ht90irx2ejrvh0xqpjjb.jpeg","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"uFRhiBVDHHXu6Xn0edW4PU3j52UrfVMHBda00LkFkJ7LuV895qm4mYEdei8AwRLo"},{"name":"x-amz-request-id","value":"AFF767D128C8A8FE"},{"name":"Date","value":"Thu, 16 Aug 2012 18:27:31 GMT"},{"name":"Last-Modified","value":"Tue, 03 Jul 2012 18:45:18 GMT"},{"name":"ETag","value":"\"6883b757d4b1a38d9f16b0a724ab208e\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/jpeg"},{"name":"Content-Length","value":"916044"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=604800"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 23 Aug 2012 18:27:31 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/jpeg"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":123,"receive":8889}},{"pageref":"page_1_0","startedDateTime":"2012-08-16T18:27:35.385+00:00","time":252,"request":{"method":"GET","url":"https://api.twitter.com/1/saved_searches.json","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"api.twitter.com"},{"name":"Accept","value":"application/json, text/javascript, */*; q=0.01"},{"name":"Referer","value":"https://api.twitter.com/receiver.html"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"X-PHX","value":"true"},{"name":"X-Requested-With","value":"XMLHttpRequest"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"no-cache, no-store, must-revalidate, pre-check=0, post-check=0"},{"name":"content-encoding","value":"gzip"},{"name":"content-length","value":"22"},{"name":"content-type","value":"application/json; charset=utf-8"},{"name":"date","value":"Thu, 16 Aug 2012 18:27:35 GMT"},{"name":"etag","value":"\"d751713988987e9331980363e24189ce\""},{"name":"expires","value":"Tue, 31 Mar 1981 05:00:00 GMT"},{"name":"last-modified","value":"Thu, 16 Aug 2012 18:27:35 GMT"},{"name":"pragma","value":"no-cache"},{"name":"server","value":"tfe"},{"name":"set-cookie","value":"original_referer=padhuUp37zigs9eJTisr5PnVtwPa2Ks3aYGytRQKC2hhgexXtH6h6g%3D%3D; path=/"},{"name":"set-cookie","value":"dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:27:35 GMT"},{"name":"set-cookie","value":"pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"},{"name":"set-cookie","value":"lang=pt; path=/"},{"name":"set-cookie","value":"_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCD6OsDA5AToTcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6EHN0YXlf%250Ac2VjdXJlVDoMY3NyZl9pZCIlOTU3NDZjMGQ2M2M5YTIxY2VmNTBkNGVlMzIw%250ANzQ5ODEiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFz%250AaEhhc2h7AAY6CkB1c2VkewA6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6CXVzZXJp%250ABGXP6Bc6B2lkIiUxOThkOTdjNDk5Njc1MjFkNjAzY2QwMzEzMDRhY2ZhODoT%250Ac2hvd19oZWxwX2xpbmswOhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--0201f13306e9f1ad6db9f2f7608d7f97174e427d; domain=.twitter.com; path=/; secure; HttpOnly"},{"name":"status","value":"200 OK"},{"name":"vary","value":"Accept-Encoding"},{"name":"version","value":"HTTP/1.1"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-mid","value":"6e8450a830128122e46d7b2eccae57d078e9af04"},{"name":"x-ratelimit-class","value":"api"},{"name":"x-ratelimit-limit","value":"150"},{"name":"x-ratelimit-remaining","value":"150"},{"name":"x-ratelimit-reset","value":"1345141872"},{"name":"x-runtime","value":"0.02280"},{"name":"x-transaction","value":"b76691d4fd6d62b4"},{"name":"x-transaction-mask","value":"a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"application/json"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":252,"receive":-1}},{"pageref":"page_1_0","startedDateTime":"2012-08-16T18:27:35.643+00:00","time":181,"request":{"method":"GET","url":"https://si0.twimg.com/a/1345133470/t1/img/loader.gif","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"51RcqEB8zjhSx8FJnPr3ZlHR2hZg4JEw7Z8Jn7Rd9VzS6INKwP8vyXPXBCrpKMVy"},{"name":"x-amz-request-id","value":"182C1108AD43EB11"},{"name":"Date","value":"Thu, 16 Aug 2012 18:27:35 GMT"},{"name":"Last-Modified","value":"Thu, 16 Aug 2012 16:15:40 GMT"},{"name":"ETag","value":"\"faf550cb80c83c14e5176f61e1bb6239\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/gif"},{"name":"Content-Length","value":"4178"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=31449600"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 15 Aug 2013 18:27:35 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/gif"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":156,"receive":25}},{"pageref":"page_1_0","startedDateTime":"2012-08-16T18:27:35.644+00:00","time":138,"request":{"method":"GET","url":"https://api.twitter.com/1/promoted_content/27/log.png?impression_id=18585a97d622a74b","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"api.twitter.com"},{"name":"Referer","value":"https://twitter.com/"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"}],"httpVersion":"1.1","queryString":[{"name":"impression_id","value":"18585a97d622a74b"}]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"no-cache, no-store, must-revalidate, pre-check=0, post-check=0"},{"name":"content-length","value":"1"},{"name":"content-transfer-encoding","value":"binary"},{"name":"content-type","value":"image/png"},{"name":"date","value":"Thu, 16 Aug 2012 18:27:35 GMT"},{"name":"etag","value":"\"7215ee9c7d9dc229d2921a40e899ec5f\""},{"name":"expires","value":"Tue, 31 Mar 1981 05:00:00 GMT"},{"name":"last-modified","value":"Thu, 16 Aug 2012 18:27:35 GMT"},{"name":"pragma","value":"no-cache"},{"name":"server","value":"tfe"},{"name":"set-cookie","value":"dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:27:35 GMT"},{"name":"set-cookie","value":"pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"},{"name":"set-cookie","value":"_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCD6OsDA5AToMY3NyZl9pZCIlOTU3NDZjMGQ2%250AM2M5YTIxY2VmNTBkNGVlMzIwNzQ5ODE6EHN0YXlfc2VjdXJlVDoTcGFzc3dv%250AcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdk%250ANWQ4OWI6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFk%250AMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6CXVzZXJpBGXP6BciCmZsYXNo%250ASUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhhc2h7AAY6CkB1%250Ac2VkewA6E3Nob3dfaGVscF9saW5rMDoHaWQiJTE5OGQ5N2M0OTk2NzUyMWQ2%250AMDNjZDAzMTMwNGFjZmE4OhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--b0bec636f1111f95dbf26ff746a311959c61ca93; domain=.twitter.com; path=/; secure; HttpOnly"},{"name":"status","value":"200 OK"},{"name":"version","value":"HTTP/1.1"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-mid","value":"82c22f9863bace4aceebc14038d5525bca3d5980"},{"name":"x-runtime","value":"0.01756"},{"name":"x-transaction","value":"b2ca2ee2f48e283d"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/png"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":128,"receive":10}},{"pageref":"page_1_0","startedDateTime":"2012-08-16T18:27:35.646+00:00","time":4412,"request":{"method":"GET","url":"https://si0.twimg.com/c/phoenix/pt/bundle/t1-more.7cc751ba2c21e9a6c6b2303739b6c255dbd458a7.js","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"TXbWBH9+gUFymJhD1NMd3fcCy07rk/qzxY1DfKBoXm8IASOjcijGeNv83cLVIpa1"},{"name":"x-amz-request-id","value":"179190B3D40BA2F4"},{"name":"Date","value":"Thu, 16 Aug 2012 18:27:35 GMT"},{"name":"Last-Modified","value":"Thu, 16 Aug 2012 00:09:06 GMT"},{"name":"ETag","value":"\"ae65bec57dbceda1ae68d40c43ba1a99\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"application/javascript"},{"name":"Server","value":"AmazonS3"},{"name":"Content-Encoding","value":"gzip"},{"name":"Vary","value":"Accept-Encoding"},{"name":"Content-Length","value":"388038"},{"name":"Cache-Control","value":"private, max-age=31449600"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 15 Aug 2013 18:27:35 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"application/javascript"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":171,"receive":4241}},{"pageref":"page_1_0","startedDateTime":"2012-08-16T18:27:40.410+00:00","time":481,"request":{"method":"GET","url":"https://si0.twimg.com/a/1345133470/t1/css/t1_more.bundle.css","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"text/css,*/*;q=0.1"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"WeesZkhxFaLfaTUc5LfTFkKlsTZr33TONDtAMU2omKh8L9sP0mLFiFf9n+YvVXpp"},{"name":"x-amz-request-id","value":"C23C30A35C9BCDE3"},{"name":"Date","value":"Thu, 16 Aug 2012 18:27:40 GMT"},{"name":"Last-Modified","value":"Thu, 16 Aug 2012 16:15:40 GMT"},{"name":"ETag","value":"\"3f3602e820e9ee9471e24f73c15a9a8d\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"text/css"},{"name":"Server","value":"AmazonS3"},{"name":"Content-Encoding","value":"gzip"},{"name":"Vary","value":"Accept-Encoding"},{"name":"Content-Length","value":"32957"},{"name":"Cache-Control","value":"private, max-age=31449600"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 15 Aug 2013 18:27:40 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"text/css"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":139,"receive":342}},{"pageref":"page_1_0","startedDateTime":"2012-08-16T18:27:41.358+00:00","time":221,"request":{"method":"GET","url":"https://api.twitter.com/1/direct_messages.json?count=50&include_entities=true","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"api.twitter.com"},{"name":"Accept","value":"application/json, text/javascript, */*; q=0.01"},{"name":"Referer","value":"https://api.twitter.com/receiver.html"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"X-PHX","value":"true"},{"name":"X-Requested-With","value":"XMLHttpRequest"}],"httpVersion":"1.1","queryString":[{"name":"count","value":"50"},{"name":"include_entities","value":"true"}]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"no-cache, no-store, must-revalidate, pre-check=0, post-check=0"},{"name":"content-encoding","value":"gzip"},{"name":"content-length","value":"928"},{"name":"content-type","value":"application/json; charset=utf-8"},{"name":"date","value":"Thu, 16 Aug 2012 18:27:40 GMT"},{"name":"etag","value":"\"609b75034f913260b2698796fd053f97\""},{"name":"expires","value":"Tue, 31 Mar 1981 05:00:00 GMT"},{"name":"last-modified","value":"Thu, 16 Aug 2012 18:27:40 GMT"},{"name":"pragma","value":"no-cache"},{"name":"server","value":"tfe"},{"name":"set-cookie","value":"dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:27:40 GMT"},{"name":"set-cookie","value":"pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"},{"name":"set-cookie","value":"_twitter_sess=BAh7DzoTc2hvd19oZWxwX2xpbmswOg9jcmVhdGVkX2F0bCsIPo6wMDkBOhNw%250AYXNzd29yZF90b2tlbiItNWMxZTk5ODg2Mzc1MWQxZTJmYzlkYzIyMjA0ZTBk%250AZWRhN2Q1ZDg5YjoQc3RheV9zZWN1cmVUOgxjc3JmX2lkIiU5NTc0NmMwZDYz%250AYzlhMjFjZWY1MGQ0ZWUzMjA3NDk4MTobc2Vzc2lvbl9wYXNzd29yZF90b2tl%250AbiItNWMxZTk5ODg2Mzc1MWQxZTJmYzlkYzIyMjA0ZTBkZWRhN2Q1ZDg5YiIK%250AZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsA%250ABjoKQHVzZWR7ADoJdXNlcmkEZc%252FoFzoHaWQiJTE5OGQ5N2M0OTk2NzUyMWQ2%250AMDNjZDAzMTMwNGFjZmE4OhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--1cb67294f303b454e4cc27b207bcec031b96ca99; domain=.twitter.com; path=/; secure; HttpOnly"},{"name":"status","value":"200 OK"},{"name":"vary","value":"Accept-Encoding"},{"name":"version","value":"HTTP/1.1"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-mid","value":"d51f56ddf31c9419aeaf0f21fb5a84e22dbd6e4b"},{"name":"x-ratelimit-class","value":"api"},{"name":"x-ratelimit-limit","value":"150"},{"name":"x-ratelimit-remaining","value":"150"},{"name":"x-ratelimit-reset","value":"1345141872"},{"name":"x-runtime","value":"0.01969"},{"name":"x-transaction","value":"1f37960d3b6bb01a"},{"name":"x-transaction-mask","value":"a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"application/json"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":221,"receive":0}},{"pageref":"page_1_0","startedDateTime":"2012-08-16T18:27:41.363+00:00","time":221,"request":{"method":"GET","url":"https://api.twitter.com/1/direct_messages/sent.json?count=50&include_entities=true","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"api.twitter.com"},{"name":"Accept","value":"application/json, text/javascript, */*; q=0.01"},{"name":"Referer","value":"https://api.twitter.com/receiver.html"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"X-PHX","value":"true"},{"name":"X-Requested-With","value":"XMLHttpRequest"}],"httpVersion":"1.1","queryString":[{"name":"count","value":"50"},{"name":"include_entities","value":"true"}]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"no-cache, no-store, must-revalidate, pre-check=0, post-check=0"},{"name":"content-encoding","value":"gzip"},{"name":"content-length","value":"935"},{"name":"content-type","value":"application/json; charset=utf-8"},{"name":"date","value":"Thu, 16 Aug 2012 18:27:41 GMT"},{"name":"etag","value":"\"f613d3f7346e4c1a034485dc484b4bda\""},{"name":"expires","value":"Tue, 31 Mar 1981 05:00:00 GMT"},{"name":"last-modified","value":"Thu, 16 Aug 2012 18:27:41 GMT"},{"name":"pragma","value":"no-cache"},{"name":"server","value":"tfe"},{"name":"set-cookie","value":"dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:27:41 GMT"},{"name":"set-cookie","value":"pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"},{"name":"set-cookie","value":"_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCD6OsDA5ASIKZmxhc2hJQzonQWN0aW9uQ29u%250AdHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7ADoTcGFzc3dv%250AcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdk%250ANWQ4OWI6EHN0YXlfc2VjdXJlVDoMY3NyZl9pZCIlOTU3NDZjMGQ2M2M5YTIx%250AY2VmNTBkNGVlMzIwNzQ5ODE6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6CXVzZXJp%250ABGXP6Bc6E3Nob3dfaGVscF9saW5rMDoHaWQiJTE5OGQ5N2M0OTk2NzUyMWQ2%250AMDNjZDAzMTMwNGFjZmE4OhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--c15a9843548aeff0455f07a79fc640b6d008d702; domain=.twitter.com; path=/; secure; HttpOnly"},{"name":"status","value":"200 OK"},{"name":"vary","value":"Accept-Encoding"},{"name":"version","value":"HTTP/1.1"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-mid","value":"01f5170eccc9596ea628f9b84c58511d98edde75"},{"name":"x-ratelimit-class","value":"api"},{"name":"x-ratelimit-limit","value":"150"},{"name":"x-ratelimit-remaining","value":"150"},{"name":"x-ratelimit-reset","value":"1345141872"},{"name":"x-runtime","value":"0.02071"},{"name":"x-transaction","value":"eaf263852f4482c9"},{"name":"x-transaction-mask","value":"a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"application/json"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":221,"receive":0}},{"pageref":"page_1_0","startedDateTime":"2012-08-16T18:27:41.392+00:00","time":189,"request":{"method":"GET","url":"https://api.twitter.com/1/saved_searches.json","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"api.twitter.com"},{"name":"Accept","value":"application/json, text/javascript, */*; q=0.01"},{"name":"Referer","value":"https://api.twitter.com/receiver.html"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"X-PHX","value":"true"},{"name":"X-Requested-With","value":"XMLHttpRequest"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"no-cache, no-store, must-revalidate, pre-check=0, post-check=0"},{"name":"content-encoding","value":"gzip"},{"name":"content-type","value":"application/json; charset=utf-8"},{"name":"date","value":"Thu, 16 Aug 2012 18:27:41 GMT"},{"name":"etag","value":"\"d751713988987e9331980363e24189ce\""},{"name":"expires","value":"Tue, 31 Mar 1981 05:00:00 GMT"},{"name":"last-modified","value":"Thu, 16 Aug 2012 18:27:41 GMT"},{"name":"pragma","value":"no-cache"},{"name":"server","value":"tfe"},{"name":"set-cookie","value":"dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:27:41 GMT"},{"name":"set-cookie","value":"pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"},{"name":"set-cookie","value":"_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCD6OsDA5AToTcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6EHN0YXlf%250Ac2VjdXJlVDoMY3NyZl9pZCIlOTU3NDZjMGQ2M2M5YTIxY2VmNTBkNGVlMzIw%250ANzQ5ODE6E3Nob3dfaGVscF9saW5rMDobc2Vzc2lvbl9wYXNzd29yZF90b2tl%250AbiItNWMxZTk5ODg2Mzc1MWQxZTJmYzlkYzIyMjA0ZTBkZWRhN2Q1ZDg5YiIK%250AZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsA%250ABjoKQHVzZWR7ADoJdXNlcmkEZc%252FoFzoHaWQiJTE5OGQ5N2M0OTk2NzUyMWQ2%250AMDNjZDAzMTMwNGFjZmE4OhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--7dafb2ae4048354aa869776ded9f689c281ad085; domain=.twitter.com; path=/; secure; HttpOnly"},{"name":"status","value":"200 OK"},{"name":"vary","value":"Accept-Encoding"},{"name":"version","value":"HTTP/1.1"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-mid","value":"a8c2e6cc10b4dc29a14357b6c994a11c89f8f0c4"},{"name":"x-ratelimit-class","value":"api"},{"name":"x-ratelimit-limit","value":"150"},{"name":"x-ratelimit-remaining","value":"150"},{"name":"x-ratelimit-reset","value":"1345141872"},{"name":"x-runtime","value":"0.01561"},{"name":"x-transaction","value":"c07584add5425672"},{"name":"x-transaction-mask","value":"a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"application/json"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":189,"receive":0}},{"pageref":"page_1_0","startedDateTime":"2012-08-16T18:27:41.411+00:00","time":386,"request":{"method":"GET","url":"https://api.twitter.com/i/search/typeahead.json?count=2500&prefetch=true&result_type=users&post_authenticity_token=bf49bcdf4afb91a0627cacfdd4dfdc09540c736e","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"api.twitter.com"},{"name":"Accept","value":"application/json, text/javascript, */*; q=0.01"},{"name":"Referer","value":"https://api.twitter.com/receiver.html"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"X-PHX","value":"true"},{"name":"X-Requested-With","value":"XMLHttpRequest"}],"httpVersion":"1.1","queryString":[{"name":"count","value":"2500"},{"name":"prefetch","value":"true"},{"name":"result_type","value":"users"},{"name":"post_authenticity_token","value":"bf49bcdf4afb91a0627cacfdd4dfdc09540c736e"}]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"no-cache, no-store, must-revalidate, pre-check=0, post-check=0"},{"name":"content-encoding","value":"gzip"},{"name":"content-length","value":"30925"},{"name":"content-type","value":"application/json;charset=utf-8"},{"name":"date","value":"Thu, 16 Aug 2012 18:27:41 GMT"},{"name":"expires","value":"Tue, 31 Mar 1981 05:00:00 GMT"},{"name":"last-modified","value":"Thu, 16 Aug 2012 18:27:41 GMT"},{"name":"pragma","value":"no-cache"},{"name":"server","value":"tfe"},{"name":"status","value":"200 OK"},{"name":"version","value":"HTTP/1.1"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-ratelimit-class","value":"api"},{"name":"x-ratelimit-limit","value":"150"},{"name":"x-ratelimit-remaining","value":"150"},{"name":"x-ratelimit-reset","value":"1345141872"},{"name":"x-transaction","value":"58668ccf18e609a4"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"application/json"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":282,"receive":104}},{"pageref":"page_1_0","startedDateTime":"2012-08-16T18:27:41.412+00:00","time":402,"request":{"method":"GET","url":"https://api.twitter.com/1/trends/available.json?lang=pt","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"api.twitter.com"},{"name":"Accept","value":"application/json, text/javascript, */*; q=0.01"},{"name":"Referer","value":"https://api.twitter.com/receiver.html"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"X-PHX","value":"true"},{"name":"X-Requested-With","value":"XMLHttpRequest"}],"httpVersion":"1.1","queryString":[{"name":"lang","value":"pt"}]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"max-age=2592000, must-revalidate"},{"name":"content-encoding","value":"gzip"},{"name":"content-length","value":"3921"},{"name":"content-type","value":"application/json; charset=utf-8"},{"name":"date","value":"Thu, 16 Aug 2012 18:27:41 GMT"},{"name":"etag","value":"\"7218403370b1badcdd8651793f0ddde0\""},{"name":"expires","value":"Tue, 31 Mar 1981 05:00:00 GMT"},{"name":"last-modified","value":"Thu, 16 Aug 2012 18:27:41 GMT"},{"name":"pragma","value":"no-cache"},{"name":"server","value":"tfe"},{"name":"set-cookie","value":"dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:27:41 GMT"},{"name":"set-cookie","value":"pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"},{"name":"set-cookie","value":"_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCD6OsDA5ASIKZmxhc2hJQzonQWN0aW9uQ29u%250AdHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7ADoTcGFzc3dv%250AcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdk%250ANWQ4OWI6EHN0YXlfc2VjdXJlVDoMY3NyZl9pZCIlOTU3NDZjMGQ2M2M5YTIx%250AY2VmNTBkNGVlMzIwNzQ5ODE6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6CXVzZXJp%250ABGXP6Bc6B2lkIiUxOThkOTdjNDk5Njc1MjFkNjAzY2QwMzEzMDRhY2ZhODoV%250AaW5fbmV3X3VzZXJfZmxvdzA6E3Nob3dfaGVscF9saW5rMA%253D%253D--e3877bada3d1eed6e484f51e3d0ef367598cd6c8; domain=.twitter.com; path=/; secure; HttpOnly"},{"name":"status","value":"200 OK"},{"name":"vary","value":"Accept-Encoding"},{"name":"version","value":"HTTP/1.1"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-mid","value":"a35765583d92520555073428d5f270fbfe2e0183"},{"name":"x-ratelimit-class","value":"api"},{"name":"x-ratelimit-limit","value":"150"},{"name":"x-ratelimit-remaining","value":"150"},{"name":"x-ratelimit-reset","value":"1345141872"},{"name":"x-runtime","value":"0.18887"},{"name":"x-transaction","value":"71a5106c70cab4d3"},{"name":"x-transaction-mask","value":"a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"application/json"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":394,"receive":8}},{"pageref":"page_1_0","startedDateTime":"2012-08-16T18:27:41.429+00:00","time":158,"request":{"method":"GET","url":"https://twitter.com/images/spinner.gif","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"twitter.com"},{"name":"Referer","value":"https://twitter.com/"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"accept-ranges","value":"bytes"},{"name":"cache-control","value":"max-age=315360000"},{"name":"content-length","value":"457"},{"name":"content-type","value":"image/gif"},{"name":"date","value":"Thu, 16 Aug 2012 18:27:41 GMT"},{"name":"expires","value":"Sun, 14 Aug 2022 18:27:41 GMT"},{"name":"last-modified","value":"Wed, 15 Aug 2012 21:05:49 GMT"},{"name":"server","value":"tfe"},{"name":"status","value":"200 OK"},{"name":"version","value":"HTTP/1.1"},{"name":"x-xss-protection","value":"1; mode=block"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/gif"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":158,"receive":0}},{"pageref":"page_1_0","startedDateTime":"2012-08-16T18:27:41.475+00:00","time":548,"request":{"method":"GET","url":"https://api.twitter.com/1/users/recommendations.json?limit=3&excluded=&display_location=wtf-component&pc=true&connections=true&algorithm=null&force_new_signup=false","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"api.twitter.com"},{"name":"Accept","value":"application/json, text/javascript, */*; q=0.01"},{"name":"Referer","value":"https://api.twitter.com/receiver.html"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"X-PHX","value":"true"},{"name":"X-Requested-With","value":"XMLHttpRequest"}],"httpVersion":"1.1","queryString":[{"name":"limit","value":"3"},{"name":"excluded","value":""},{"name":"display_location","value":"wtf-component"},{"name":"pc","value":"true"},{"name":"connections","value":"true"},{"name":"algorithm","value":"null"},{"name":"force_new_signup","value":"false"}]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"private, max-age=120"},{"name":"content-encoding","value":"gzip"},{"name":"content-length","value":"1898"},{"name":"content-type","value":"application/json; charset=utf-8"},{"name":"date","value":"Thu, 16 Aug 2012 18:27:41 GMT"},{"name":"etag","value":"\"d913919a3491f405b6539bcd2c02dc59\""},{"name":"expires","value":"Thu, 16 Aug 2012 18:29:41 GMT"},{"name":"last-modified","value":"Thu, 16 Aug 2012 18:25:41 GMT"},{"name":"server","value":"tfe"},{"name":"set-cookie","value":"dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:27:41 GMT"},{"name":"set-cookie","value":"pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"},{"name":"set-cookie","value":"_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCD6OsDA5AToMY3NyZl9pZCIlOTU3NDZjMGQ2%250AM2M5YTIxY2VmNTBkNGVlMzIwNzQ5ODE6EHN0YXlfc2VjdXJlVDoTcGFzc3dv%250AcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdk%250ANWQ4OWIiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFz%250AaEhhc2h7AAY6CkB1c2VkewA6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6E3Nob3df%250AaGVscF9saW5rMDoJdXNlcmkEZc%252FoFzoHaWQiJTE5OGQ5N2M0OTk2NzUyMWQ2%250AMDNjZDAzMTMwNGFjZmE4OhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--74ff9f2b580a7e248c0f695b4661361c096cd552; domain=.twitter.com; path=/; secure; HttpOnly"},{"name":"status","value":"200 OK"},{"name":"vary","value":"Accept-Encoding"},{"name":"version","value":"HTTP/1.1"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-mid","value":"f55659a56f266240bd50085c9928962bf1c39d73"},{"name":"x-ratelimit-class","value":"api"},{"name":"x-ratelimit-limit","value":"150"},{"name":"x-ratelimit-remaining","value":"150"},{"name":"x-ratelimit-reset","value":"1345141872"},{"name":"x-runtime","value":"0.06959"},{"name":"x-transaction","value":"9a9de3c259e63c10"},{"name":"x-transaction-mask","value":"a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"application/json"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":525,"receive":23}},{"pageref":"page_1_0","startedDateTime":"2012-08-16T18:27:41.503+00:00","time":577,"request":{"method":"GET","url":"https://api.twitter.com/1/users/recommendations.json?limit=3&excluded=&display_location=wtf-component&pc=true&connections=true&algorithm=null&force_new_signup=true","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"api.twitter.com"},{"name":"Accept","value":"application/json, text/javascript, */*; q=0.01"},{"name":"Referer","value":"https://api.twitter.com/receiver.html"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"X-PHX","value":"true"},{"name":"X-Requested-With","value":"XMLHttpRequest"}],"httpVersion":"1.1","queryString":[{"name":"limit","value":"3"},{"name":"excluded","value":""},{"name":"display_location","value":"wtf-component"},{"name":"pc","value":"true"},{"name":"connections","value":"true"},{"name":"algorithm","value":"null"},{"name":"force_new_signup","value":"true"}]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"private, max-age=120"},{"name":"content-encoding","value":"gzip"},{"name":"content-length","value":"1961"},{"name":"content-type","value":"application/json; charset=utf-8"},{"name":"date","value":"Thu, 16 Aug 2012 18:27:41 GMT"},{"name":"etag","value":"\"5145df644f004c0ed7d46d9413e323bb\""},{"name":"expires","value":"Thu, 16 Aug 2012 18:29:41 GMT"},{"name":"last-modified","value":"Thu, 16 Aug 2012 18:25:41 GMT"},{"name":"server","value":"tfe"},{"name":"set-cookie","value":"dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:27:41 GMT"},{"name":"set-cookie","value":"pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"},{"name":"set-cookie","value":"_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCD6OsDA5AToMY3NyZl9pZCIlOTU3NDZjMGQ2%250AM2M5YTIxY2VmNTBkNGVlMzIwNzQ5ODE6EHN0YXlfc2VjdXJlVDoTcGFzc3dv%250AcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdk%250ANWQ4OWIiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFz%250AaEhhc2h7AAY6CkB1c2VkewA6E3Nob3dfaGVscF9saW5rMDobc2Vzc2lvbl9w%250AYXNzd29yZF90b2tlbiItNWMxZTk5ODg2Mzc1MWQxZTJmYzlkYzIyMjA0ZTBk%250AZWRhN2Q1ZDg5YjoJdXNlcmkEZc%252FoFzoHaWQiJTE5OGQ5N2M0OTk2NzUyMWQ2%250AMDNjZDAzMTMwNGFjZmE4OhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--1a0c9f3d1a0bb9a4ee5357f58685acb0140c5600; domain=.twitter.com; path=/; secure; HttpOnly"},{"name":"status","value":"200 OK"},{"name":"vary","value":"Accept-Encoding"},{"name":"version","value":"HTTP/1.1"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-mid","value":"931ec5d0e1f5e6b8415c6318c15ecf8159e175cd"},{"name":"x-ratelimit-class","value":"api"},{"name":"x-ratelimit-limit","value":"150"},{"name":"x-ratelimit-remaining","value":"150"},{"name":"x-ratelimit-reset","value":"1345141872"},{"name":"x-runtime","value":"0.12863"},{"name":"x-transaction","value":"589e90cc41a2e910"},{"name":"x-transaction-mask","value":"a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"application/json"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":577,"receive":0}},{"pageref":"page_1_0","startedDateTime":"2012-08-16T18:27:41.599+00:00","time":626,"request":{"method":"GET","url":"https://ssl.google-analytics.com/ga.js","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"ssl.google-analytics.com"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"age","value":"19249"},{"name":"cache-control","value":"max-age=43200, public"},{"name":"content-encoding","value":"gzip"},{"name":"content-length","value":"14688"},{"name":"content-type","value":"text/javascript"},{"name":"date","value":"Thu, 16 Aug 2012 13:06:52 GMT"},{"name":"expires","value":"Fri, 17 Aug 2012 01:06:52 GMT"},{"name":"last-modified","value":"Wed, 18 Jul 2012 18:52:25 GMT"},{"name":"server","value":"GFE/2.0"},{"name":"status","value":"200 OK"},{"name":"vary","value":"Accept-Encoding"},{"name":"version","value":"HTTP/1.1"},{"name":"x-content-type-options","value":"nosniff"},{"name":"x-content-type-options","value":"nosniff"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"text/javascript"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":200,"ssl":77,"send":0,"wait":307,"receive":119}},{"pageref":"page_1_0","startedDateTime":"2012-08-16T18:27:41.807+00:00","time":120,"request":{"method":"GET","url":"https://api.twitter.com/1/blocks/blocking.json","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"api.twitter.com"},{"name":"Accept","value":"application/json, text/javascript, */*; q=0.01"},{"name":"Referer","value":"https://api.twitter.com/receiver.html"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"X-PHX","value":"true"},{"name":"X-Requested-With","value":"XMLHttpRequest"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"no-cache, no-store, must-revalidate, pre-check=0, post-check=0"},{"name":"content-encoding","value":"gzip"},{"name":"content-length","value":"22"},{"name":"content-type","value":"application/json; charset=utf-8"},{"name":"date","value":"Thu, 16 Aug 2012 18:27:41 GMT"},{"name":"etag","value":"\"d751713988987e9331980363e24189ce\""},{"name":"expires","value":"Tue, 31 Mar 1981 05:00:00 GMT"},{"name":"last-modified","value":"Thu, 16 Aug 2012 18:27:41 GMT"},{"name":"pragma","value":"no-cache"},{"name":"server","value":"tfe"},{"name":"set-cookie","value":"dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:27:41 GMT"},{"name":"set-cookie","value":"pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"},{"name":"set-cookie","value":"_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCD6OsDA5AToMY3NyZl9pZCIlOTU3NDZjMGQ2%250AM2M5YTIxY2VmNTBkNGVlMzIwNzQ5ODE6EHN0YXlfc2VjdXJlVDoTcGFzc3dv%250AcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdk%250ANWQ4OWIiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFz%250AaEhhc2h7AAY6CkB1c2VkewA6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6CXVzZXJp%250ABGXP6Bc6E3Nob3dfaGVscF9saW5rMDoHaWQiJTE5OGQ5N2M0OTk2NzUyMWQ2%250AMDNjZDAzMTMwNGFjZmE4OhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--83a1371d0e34c47532ded0e81bb544c7fcc278d0; domain=.twitter.com; path=/; secure; HttpOnly"},{"name":"status","value":"200 OK"},{"name":"vary","value":"Accept-Encoding"},{"name":"version","value":"HTTP/1.1"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-mid","value":"072a257af8126cffc14d324bf5566a398f54abe0"},{"name":"x-ratelimit-class","value":"api"},{"name":"x-ratelimit-limit","value":"150"},{"name":"x-ratelimit-remaining","value":"150"},{"name":"x-ratelimit-reset","value":"1345141872"},{"name":"x-runtime","value":"0.01359"},{"name":"x-transaction","value":"bfcec2fc51aa3c44"},{"name":"x-transaction-mask","value":"a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"application/json"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":120,"receive":0}},{"pageref":"page_1_0","startedDateTime":"2012-08-16T18:27:41.827+00:00","time":159,"request":{"method":"GET","url":"https://api.twitter.com/1/trends/1.json?pc=true&post_authenticity_token=bf49bcdf4afb91a0627cacfdd4dfdc09540c736e","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"api.twitter.com"},{"name":"Accept","value":"application/json, text/javascript, */*; q=0.01"},{"name":"Referer","value":"https://api.twitter.com/receiver.html"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"X-PHX","value":"true"},{"name":"X-Requested-With","value":"XMLHttpRequest"}],"httpVersion":"1.1","queryString":[{"name":"pc","value":"true"},{"name":"post_authenticity_token","value":"bf49bcdf4afb91a0627cacfdd4dfdc09540c736e"}]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"max-age=300, must-revalidate"},{"name":"content-encoding","value":"gzip"},{"name":"content-length","value":"555"},{"name":"content-type","value":"application/json; charset=utf-8"},{"name":"date","value":"Thu, 16 Aug 2012 18:27:41 GMT"},{"name":"etag","value":"\"22dba77da5237f4ed054700dc7eabd72\""},{"name":"expires","value":"Tue, 31 Mar 1981 05:00:00 GMT"},{"name":"last-modified","value":"Thu, 16 Aug 2012 18:27:41 GMT"},{"name":"pragma","value":"no-cache"},{"name":"server","value":"tfe"},{"name":"set-cookie","value":"dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:27:41 GMT"},{"name":"set-cookie","value":"pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"},{"name":"set-cookie","value":"_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCD6OsDA5AToMY3NyZl9pZCIlOTU3NDZjMGQ2%250AM2M5YTIxY2VmNTBkNGVlMzIwNzQ5ODE6EHN0YXlfc2VjdXJlVDoTcGFzc3dv%250AcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdk%250ANWQ4OWI6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFk%250AMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6E3Nob3dfaGVscF9saW5rMDoJ%250AdXNlcmkEZc%252FoFyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6%250AOkZsYXNoSGFzaHsABjoKQHVzZWR7ADoHaWQiJTE5OGQ5N2M0OTk2NzUyMWQ2%250AMDNjZDAzMTMwNGFjZmE4OhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--c95a83200ba5ef193a53c3c1b332f79be8b7c6b2; domain=.twitter.com; path=/; secure; HttpOnly"},{"name":"status","value":"200 OK"},{"name":"vary","value":"Accept-Encoding"},{"name":"version","value":"HTTP/1.1"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-mid","value":"32e18399f3c42586e062e530291d1abaa742cf2e"},{"name":"x-ratelimit-class","value":"api"},{"name":"x-ratelimit-limit","value":"150"},{"name":"x-ratelimit-remaining","value":"150"},{"name":"x-ratelimit-reset","value":"1345141872"},{"name":"x-runtime","value":"0.06128"},{"name":"x-transaction","value":"4e9dc9b58e3db1e7"},{"name":"x-transaction-mask","value":"a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"application/json"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":159,"receive":0}},{"pageref":"page_1_0","startedDateTime":"2012-08-16T18:27:42.014+00:00","time":117,"request":{"method":"GET","url":"https://api.twitter.com/1/promoted_content/i/log.png?promoted_trend_id=5288","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"api.twitter.com"},{"name":"Referer","value":"https://twitter.com/"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"}],"httpVersion":"1.1","queryString":[{"name":"promoted_trend_id","value":"5288"}]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"no-cache, no-store, must-revalidate, pre-check=0, post-check=0"},{"name":"content-length","value":"1"},{"name":"content-transfer-encoding","value":"binary"},{"name":"content-type","value":"image/png"},{"name":"date","value":"Thu, 16 Aug 2012 18:27:41 GMT"},{"name":"etag","value":"\"7215ee9c7d9dc229d2921a40e899ec5f\""},{"name":"expires","value":"Tue, 31 Mar 1981 05:00:00 GMT"},{"name":"last-modified","value":"Thu, 16 Aug 2012 18:27:41 GMT"},{"name":"pragma","value":"no-cache"},{"name":"server","value":"tfe"},{"name":"set-cookie","value":"dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:27:41 GMT"},{"name":"set-cookie","value":"pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"},{"name":"set-cookie","value":"_twitter_sess=BAh7DyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo%250ASGFzaHsABjoKQHVzZWR7ADoPY3JlYXRlZF9hdGwrCD6OsDA5AToTcGFzc3dv%250AcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdk%250ANWQ4OWI6EHN0YXlfc2VjdXJlVDoMY3NyZl9pZCIlOTU3NDZjMGQ2M2M5YTIx%250AY2VmNTBkNGVlMzIwNzQ5ODE6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6CXVzZXJp%250ABGXP6Bc6E3Nob3dfaGVscF9saW5rMDoHaWQiJTE5OGQ5N2M0OTk2NzUyMWQ2%250AMDNjZDAzMTMwNGFjZmE4OhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--f82cf0b8337eb3dd39ead1e76cfab2b2ca3d1429; domain=.twitter.com; path=/; secure; HttpOnly"},{"name":"status","value":"200 OK"},{"name":"version","value":"HTTP/1.1"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-mid","value":"2e0e52b88386e01b395af1e7d42298595088b447"},{"name":"x-runtime","value":"0.02187"},{"name":"x-transaction","value":"5fb13ba3ab1b66ff"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/png"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":117,"receive":-1}},{"pageref":"page_1_0","startedDateTime":"2012-08-16T18:27:42.064+00:00","time":68,"request":{"method":"GET","url":"https://ssl.google-analytics.com/__utm.gif?utmwv=5.3.4&utms=2&utmn=869617103&utmhn=twitter.com&utmcs=UTF-8&utmsr=1024x768&utmvp=997x614&utmsc=32-bit&utmul=en-us&utmje=1&utmfl=11.3%20r31&utmdt=Twitter%20%2F%20In%C3%ADcio&utmhid=775368836&utmr=0&utmp=%2F&utmac=UA-30775-6&utmcc=__utma%3D43838368.159264585.1345141647.1345141647.1345141647.1%3B%2B__utmz%3D43838368.1345141647.1.1.utmcsr%3D(direct)%7Cutmccn%3D(direct)%7Cutmcmd%3D(none)%3B&utmu=q~","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"ssl.google-analytics.com"},{"name":"Referer","value":"https://twitter.com/"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"}],"httpVersion":"1.1","queryString":[{"name":"utmwv","value":"5.3.4"},{"name":"utms","value":"2"},{"name":"utmn","value":"869617103"},{"name":"utmhn","value":"twitter.com"},{"name":"utmcs","value":"UTF-8"},{"name":"utmsr","value":"1024x768"},{"name":"utmvp","value":"997x614"},{"name":"utmsc","value":"32-bit"},{"name":"utmul","value":"en-us"},{"name":"utmje","value":"1"},{"name":"utmfl","value":"11.3 r31"},{"name":"utmdt","value":"Twitter / Início"},{"name":"utmhid","value":"775368836"},{"name":"utmr","value":"0"},{"name":"utmp","value":"/"},{"name":"utmac","value":"UA-30775-6"},{"name":"utmcc","value":"__utma=43838368.159264585.1345141647.1345141647.1345141647.1;+__utmz=43838368.1345141647.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none);"},{"name":"utmu","value":"q~"}]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"age","value":"14522"},{"name":"cache-control","value":"private, no-cache, no-cache=Set-Cookie, proxy-revalidate"},{"name":"content-length","value":"35"},{"name":"content-type","value":"image/gif"},{"name":"date","value":"Thu, 16 Aug 2012 14:25:39 GMT"},{"name":"expires","value":"Wed, 19 Apr 2000 11:43:00 GMT"},{"name":"last-modified","value":"Wed, 21 Jan 2004 19:51:30 GMT"},{"name":"pragma","value":"no-cache"},{"name":"server","value":"GFE/2.0"},{"name":"status","value":"200 OK"},{"name":"version","value":"HTTP/1.1"},{"name":"x-content-type-options","value":"nosniff"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/gif"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":68,"receive":0}},{"pageref":"page_1_0","startedDateTime":"2012-08-16T18:27:42.092+00:00","time":118,"request":{"method":"GET","url":"https://si0.twimg.com/profile_images/1409530731/bbm__1308837078033_normal.tmp","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"ZjRboMg0IX6RiflM4H0c93YnwzkE3bB8Tup39HHCl05T5tbj450L/qZI01RN4SzD"},{"name":"x-amz-request-id","value":"C9816E53EA95585A"},{"name":"Date","value":"Thu, 16 Aug 2012 18:27:41 GMT"},{"name":"Last-Modified","value":"Thu, 23 Jun 2011 14:37:42 GMT"},{"name":"ETag","value":"\"82ea7702bcbd6e72ca978ecbd1befc8c\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/jpeg"},{"name":"Content-Length","value":"975"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=31449600"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 15 Aug 2013 18:27:41 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/jpeg"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":117,"receive":1}},{"pageref":"page_1_0","startedDateTime":"2012-08-16T18:27:42.100+00:00","time":404,"request":{"method":"GET","url":"https://si0.twimg.com/profile_images/1583722973/tweter_normal.jpg","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"LSVtZu2wpDiFu4d+vapaVvPN8dRwUWJ43mojC0K7mTmHykIPBnV5GNuX//SsN1N0"},{"name":"x-amz-request-id","value":"2D2EACE842AD2DBA"},{"name":"Date","value":"Thu, 16 Aug 2012 18:27:41 GMT"},{"name":"Last-Modified","value":"Tue, 11 Oct 2011 19:50:44 GMT"},{"name":"ETag","value":"\"d66538ca9a2d928cbf9aa07d8985726d\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/jpeg"},{"name":"Content-Length","value":"21376"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=604800"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 23 Aug 2012 18:27:41 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/jpeg"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":131,"receive":273}},{"pageref":"page_1_0","startedDateTime":"2012-08-16T18:27:42.102+00:00","time":139,"request":{"method":"GET","url":"https://si0.twimg.com/profile_images/1727300915/image_normal.jpg","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"niBNHx22XW88tYQ+gKhJote24f7zOGGVAbxwc/f5Pjgk24bQpCJSHV4xuw8iK1MK"},{"name":"x-amz-request-id","value":"44C9F57F9C81A05E"},{"name":"Date","value":"Thu, 16 Aug 2012 18:27:41 GMT"},{"name":"Last-Modified","value":"Sun, 01 Jan 2012 13:07:54 GMT"},{"name":"ETag","value":"\"8d21d19180349b3db707fc4605e2fc33\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/jpeg"},{"name":"Content-Length","value":"1230"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=604800"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 23 Aug 2012 18:27:41 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/jpeg"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":139,"receive":0}},{"pageref":"page_1_0","startedDateTime":"2012-08-16T18:27:42.125+00:00","time":189,"request":{"method":"GET","url":"https://api.twitter.com/1/statuses/friends.json?cursor=-1&user_id=401133413","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"api.twitter.com"},{"name":"Accept","value":"application/json, text/javascript, */*; q=0.01"},{"name":"Referer","value":"https://api.twitter.com/receiver.html"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"X-PHX","value":"true"},{"name":"X-Requested-With","value":"XMLHttpRequest"}],"httpVersion":"1.1","queryString":[{"name":"cursor","value":"-1"},{"name":"user_id","value":"401133413"}]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"no-cache, no-store, must-revalidate, pre-check=0, post-check=0"},{"name":"content-encoding","value":"gzip"},{"name":"content-length","value":"1562"},{"name":"content-type","value":"application/json; charset=utf-8"},{"name":"date","value":"Thu, 16 Aug 2012 18:27:41 GMT"},{"name":"etag","value":"\"bf03d4de0580babb935eb4e1a6f676e7\""},{"name":"expires","value":"Tue, 31 Mar 1981 05:00:00 GMT"},{"name":"last-modified","value":"Thu, 16 Aug 2012 18:27:41 GMT"},{"name":"pragma","value":"no-cache"},{"name":"server","value":"tfe"},{"name":"set-cookie","value":"dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:27:41 GMT"},{"name":"set-cookie","value":"pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"},{"name":"set-cookie","value":"_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCD6OsDA5AToMY3NyZl9pZCIlOTU3NDZjMGQ2%250AM2M5YTIxY2VmNTBkNGVlMzIwNzQ5ODE6EHN0YXlfc2VjdXJlVDoTcGFzc3dv%250AcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdk%250ANWQ4OWI6E3Nob3dfaGVscF9saW5rMDobc2Vzc2lvbl9wYXNzd29yZF90b2tl%250AbiItNWMxZTk5ODg2Mzc1MWQxZTJmYzlkYzIyMjA0ZTBkZWRhN2Q1ZDg5YjoJ%250AdXNlcmkEZc%252FoFyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6%250AOkZsYXNoSGFzaHsABjoKQHVzZWR7ADoHaWQiJTE5OGQ5N2M0OTk2NzUyMWQ2%250AMDNjZDAzMTMwNGFjZmE4OhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--4af407ae68696d2f787bc11b2ff71b8a99a8148f; domain=.twitter.com; path=/; secure; HttpOnly"},{"name":"status","value":"200 OK"},{"name":"vary","value":"Accept-Encoding"},{"name":"version","value":"HTTP/1.1"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-mid","value":"df44a9e4ade8718a851f7ea1fb70d429401a3d29"},{"name":"x-ratelimit-class","value":"api"},{"name":"x-ratelimit-limit","value":"150"},{"name":"x-ratelimit-remaining","value":"150"},{"name":"x-ratelimit-reset","value":"1345141872"},{"name":"x-runtime","value":"0.07592"},{"name":"x-transaction","value":"80262a2153b373bf"},{"name":"x-transaction-mask","value":"a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"application/json"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":173,"receive":16}},{"pageref":"page_1_0","startedDateTime":"2012-08-16T18:27:42.133+00:00","time":548,"request":{"method":"GET","url":"https://si0.twimg.com/profile_images/1910328549/image_reasonably_small.jpg","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"UVxzZIT6h9rcnHL1Kkv0cyPBzMJib3+iWR4mO0pvTzkdb5cIz4f5u0OQskG3WARf"},{"name":"x-amz-request-id","value":"CEE6E67FDC5C6B4F"},{"name":"Date","value":"Thu, 16 Aug 2012 18:27:41 GMT"},{"name":"Last-Modified","value":"Mon, 19 Mar 2012 23:35:09 GMT"},{"name":"ETag","value":"\"f72594541e751a06b42f38868bbc5556\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/jpeg"},{"name":"Content-Length","value":"6358"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=604800"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 23 Aug 2012 18:27:41 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/jpeg"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":507,"receive":41}},{"pageref":"page_1_0","startedDateTime":"2012-08-16T18:27:42.136+00:00","time":472,"request":{"method":"GET","url":"https://si0.twimg.com/profile_images/2325704772/wrrmef61i6jl91kwkmzq_reasonably_small.png","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"G1yVnY3N52eFahELSDckg3Jd+BD7pqs4gfMraO9oZIqakEl8XhvvAmN6EV764UZT"},{"name":"x-amz-request-id","value":"29FC2F61132DE635"},{"name":"Date","value":"Thu, 16 Aug 2012 18:27:41 GMT"},{"name":"Last-Modified","value":"Wed, 20 Jun 2012 16:21:33 GMT"},{"name":"ETag","value":"\"4050d7e7652de802767c0d9204706238\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/png"},{"name":"Content-Length","value":"24083"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=604800"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 23 Aug 2012 18:27:41 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/png"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":162,"receive":310}},{"pageref":"page_1_0","startedDateTime":"2012-08-16T18:27:42.136+00:00","time":561,"request":{"method":"GET","url":"https://si0.twimg.com/profile_images/2258914696/sq_reasonably_small.jpg","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"cbmUlFC74OizAMlbg+xxwGBv3sWeRmTTvOhnbb3wRIRFOHTv8gcELCUo9hhDWBjl"},{"name":"x-amz-request-id","value":"A8043AFC4081A3BE"},{"name":"Date","value":"Thu, 16 Aug 2012 18:27:41 GMT"},{"name":"Last-Modified","value":"Tue, 29 May 2012 00:21:06 GMT"},{"name":"ETag","value":"\"5317cf198e5b23f32acdc4f124b3a5b7\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/jpeg"},{"name":"Content-Length","value":"34213"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=604800"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 23 Aug 2012 18:27:41 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/jpeg"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":143,"receive":418}},{"pageref":"page_2_0","startedDateTime":"2012-08-16T18:28:03.478+00:00","time":784,"request":{"method":"GET","url":"https://twitter.com/","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"twitter.com"},{"name":"Referer","value":"http://twitter.com/"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"no-cache, no-store, must-revalidate, pre-check=0, post-check=0"},{"name":"content-encoding","value":"gzip"},{"name":"content-type","value":"text/html; charset=utf-8"},{"name":"date","value":"Thu, 16 Aug 2012 18:28:04 GMT"},{"name":"etag","value":"\"109784f2682b0175a921b0fba21c2f28\""},{"name":"expires","value":"Tue, 31 Mar 1981 05:00:00 GMT"},{"name":"last-modified","value":"Thu, 16 Aug 2012 18:28:03 GMT"},{"name":"pragma","value":"no-cache"},{"name":"server","value":"tfe"},{"name":"set-cookie","value":"dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:03 GMT"},{"name":"set-cookie","value":"pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"},{"name":"set-cookie","value":"_twitter_sess=BAh7DyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo%250ASGFzaHsABjoKQHVzZWR7ADoPY3JlYXRlZF9hdGwrCMkRsTA5AToMY3NyZl9p%250AZCIlZTE2MjEyZjA4YjcwMzJjMDQwOWZkZjlmNzI2YWVjZDM6EHN0YXlfc2Vj%250AdXJlVDoTcGFzc3dvcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMy%250AMjIwNGUwZGVkYTdkNWQ4OWI6E3Nob3dfaGVscF9saW5rMDobc2Vzc2lvbl9w%250AYXNzd29yZF90b2tlbiItNWMxZTk5ODg2Mzc1MWQxZTJmYzlkYzIyMjA0ZTBk%250AZWRhN2Q1ZDg5YjoJdXNlcmkEZc%252FoFzoHaWQiJWFmYjFmOWVjMjMwNzAzODBj%250AZGVlZGE1YjhlM2I1MDhiOhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--8198a0c7e87b78d1fa95daddd35cfcc79d9566e1; domain=.twitter.com; path=/; secure; HttpOnly"},{"name":"status","value":"200 OK"},{"name":"strict-transport-security","value":"max-age=631138519"},{"name":"vary","value":"Accept-Encoding"},{"name":"version","value":"HTTP/1.1"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-mid","value":"1e50b687d3f622d1ad84a2708b7d6d1b85f320c2"},{"name":"x-runtime","value":"0.32050"},{"name":"x-transaction","value":"9ac149310b1ab0ce"},{"name":"x-xss-protection","value":"1; mode=block"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"text/html"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":508,"receive":276}},{"pageref":"page_2_0","startedDateTime":"2012-08-16T18:28:04.068+00:00","time":1179,"request":{"method":"GET","url":"https://si0.twimg.com/a/1345133470/t1/css/t1_core.bundle.css","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"text/css,*/*;q=0.1"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"h8z9Td/7D2oElkR+lOzR2DPSTCy8F5l9vNLkq+TyEMF1w3LyX7ayxtfe6dslwWV3"},{"name":"x-amz-request-id","value":"295BF01C9B4AEE58"},{"name":"Date","value":"Thu, 16 Aug 2012 18:28:04 GMT"},{"name":"Last-Modified","value":"Thu, 16 Aug 2012 16:15:41 GMT"},{"name":"ETag","value":"\"59337cd26ece9dbdc2d36eaa667efb4c\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"text/css"},{"name":"Server","value":"AmazonS3"},{"name":"Content-Encoding","value":"gzip"},{"name":"Vary","value":"Accept-Encoding"},{"name":"Content-Length","value":"27926"},{"name":"Cache-Control","value":"private, max-age=31449600"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 15 Aug 2013 18:28:04 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"text/css"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":462,"ssl":298,"send":0,"wait":582,"receive":135}},{"pageref":"page_2_0","startedDateTime":"2012-08-16T18:28:04.795+00:00","time":1248,"request":{"method":"GET","url":"https://si0.twimg.com/profile_images/1804416058/43776868-4e4e-45cc-b91c-7ec1b6f350aa_normal.png","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"scz9/mAalAfnDOTjmTH6/7Z2QBtURR49Qp1Vx356nHEePb+Now2o2kftmfoQPc5x"},{"name":"x-amz-request-id","value":"769DC651FEBEC1EE"},{"name":"Date","value":"Thu, 16 Aug 2012 18:28:05 GMT"},{"name":"Last-Modified","value":"Sat, 04 Feb 2012 21:42:09 GMT"},{"name":"ETag","value":"\"145b79a3a79e37520432d48a880b7e97\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/png"},{"name":"Content-Length","value":"5456"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=604800"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 23 Aug 2012 18:28:05 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/png"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":491,"ssl":-1,"send":0,"wait":653,"receive":104}},{"pageref":"page_2_0","startedDateTime":"2012-08-16T18:28:04.795+00:00","time":735,"request":{"method":"GET","url":"https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"0EjGO3bb9WTEKhVNvYGh6b9jQeFAgihPIZQ/NbsiNt4kHj/25ceaF3X2lBegMBgJ"},{"name":"x-amz-request-id","value":"847A950EA4FC8B09"},{"name":"Date","value":"Thu, 16 Aug 2012 18:28:05 GMT"},{"name":"Last-Modified","value":"Thu, 26 May 2011 01:08:30 GMT"},{"name":"ETag","value":"\"46d5128c6bf7ee8b66257b966b8c883e\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/png"},{"name":"Content-Length","value":"1381"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=604800"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 23 Aug 2012 18:28:05 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/png"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":242,"ssl":124,"send":0,"wait":493,"receive":0}},{"pageref":"page_2_0","startedDateTime":"2012-08-16T18:28:04.797+00:00","time":1164,"request":{"method":"GET","url":"https://si0.twimg.com/profile_images/2466871092/image_normal.jpg","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"7NEj14/u5J9sQNw3RlNMXtVpVYhZRJ74FUrqMsr8JfaAlp4WB8zSMVPYnrOZYPTy"},{"name":"x-amz-request-id","value":"5A5B0C1EC30B7ED4"},{"name":"Date","value":"Thu, 16 Aug 2012 18:28:05 GMT"},{"name":"Last-Modified","value":"Sat, 04 Aug 2012 13:11:29 GMT"},{"name":"ETag","value":"\"da79b27a7964b450de35597d1e47d5b4\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/jpeg"},{"name":"Content-Length","value":"1453"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=604800"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 23 Aug 2012 18:28:05 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/jpeg"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":504,"ssl":-1,"send":0,"wait":660,"receive":0}},{"pageref":"page_2_0","startedDateTime":"2012-08-16T18:28:04.798+00:00","time":887,"request":{"method":"GET","url":"https://si0.twimg.com/a/1345133470/t1/img/twitter_web_sprite_bgs.png","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"1ZsOeVxpeSixQ9eUW7vBdJdVCjmOMLvDgu+ZczTLzbuHnDuFrUQWBQ2ptp+b0R3Z"},{"name":"x-amz-request-id","value":"7B74D4B95ECA0474"},{"name":"Date","value":"Thu, 16 Aug 2012 18:28:05 GMT"},{"name":"Last-Modified","value":"Thu, 16 Aug 2012 16:15:41 GMT"},{"name":"ETag","value":"\"dc43d8feef9a6f6bc87fb56f2810bb1f\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/png"},{"name":"Content-Length","value":"6602"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=604800"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 23 Aug 2012 18:28:05 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/png"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":244,"ssl":123,"send":0,"wait":528,"receive":115}},{"pageref":"page_2_0","startedDateTime":"2012-08-16T18:28:04.801+00:00","time":1867,"request":{"method":"GET","url":"https://si0.twimg.com/a/1345133470/t1/img/twitter_web_sprite_icons.png","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"SZn+2XyAEy/JSLDLuF11DB+EDMyWDFXzXTUO3/W8freAaTH9AHevOJCsbnzmaPIf"},{"name":"x-amz-request-id","value":"49499E48F469851C"},{"name":"Date","value":"Thu, 16 Aug 2012 18:28:05 GMT"},{"name":"Last-Modified","value":"Thu, 16 Aug 2012 16:15:39 GMT"},{"name":"ETag","value":"\"223836604d80c5faa4079d6e5554cfbb\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/png"},{"name":"Content-Length","value":"65084"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=604800"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 23 Aug 2012 18:28:05 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/png"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":243,"ssl":123,"send":0,"wait":507,"receive":1117}},{"pageref":"page_2_0","startedDateTime":"2012-08-16T18:28:04.814+00:00","time":750,"request":{"method":"GET","url":"https://si0.twimg.com/a/1345133470/t1/img/wash-white-30.png","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"PFDD6lGbbBN8+gH2sMpnliksoIUhfjlUM9mZKggE2bF9ZtN21zxiMfj+Ibksdm4F"},{"name":"x-amz-request-id","value":"8A67F9C4834A8872"},{"name":"Date","value":"Thu, 16 Aug 2012 18:28:05 GMT"},{"name":"Last-Modified","value":"Thu, 16 Aug 2012 16:15:39 GMT"},{"name":"ETag","value":"\"bc953c554d5f0ab6402865969e7244b4\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/png"},{"name":"Content-Length","value":"940"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=604800"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 23 Aug 2012 18:28:05 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/png"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":242,"ssl":125,"send":0,"wait":507,"receive":1}},{"pageref":"page_2_0","startedDateTime":"2012-08-16T18:28:04.818+00:00","time":8829,"request":{"method":"GET","url":"https://si0.twimg.com/profile_background_images/594970743/ht90irx2ejrvh0xqpjjb.jpeg","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"uFRhiBVDHHXu6Xn0edW4PU3j52UrfVMHBda00LkFkJ7LuV895qm4mYEdei8AwRLo"},{"name":"x-amz-request-id","value":"AFF767D128C8A8FE"},{"name":"Date","value":"Thu, 16 Aug 2012 18:28:05 GMT"},{"name":"Last-Modified","value":"Tue, 03 Jul 2012 18:45:18 GMT"},{"name":"ETag","value":"\"6883b757d4b1a38d9f16b0a724ab208e\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/jpeg"},{"name":"Content-Length","value":"916044"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=604800"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 23 Aug 2012 18:28:05 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/jpeg"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":124,"receive":8705}},{"pageref":"page_2_0","startedDateTime":"2012-08-16T18:28:04.895+00:00","time":658,"request":{"method":"GET","url":"https://api.twitter.com/receiver.html","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"api.twitter.com"},{"name":"Accept","value":"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"},{"name":"Referer","value":"https://twitter.com/"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"max-age=300"},{"name":"content-encoding","value":"gzip"},{"name":"content-type","value":"text/html; charset=UTF-8"},{"name":"date","value":"Thu, 16 Aug 2012 18:28:05 GMT"},{"name":"expires","value":"Thu, 16 Aug 2012 18:33:05 GMT"},{"name":"last-modified","value":"Wed, 15 Aug 2012 21:05:50 GMT"},{"name":"server","value":"tfe"},{"name":"status","value":"200 OK"},{"name":"vary","value":"Accept-Encoding"},{"name":"version","value":"HTTP/1.1"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"text/html"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":283,"ssl":226,"send":0,"wait":371,"receive":4}},{"pageref":"page_2_0","startedDateTime":"2012-08-16T18:28:04.964+00:00","time":2879,"request":{"method":"GET","url":"https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"0vpG/0wtJEp7TOqdtyiR/AYji7s/2lD7r3rbMX/0Dp4pD1I9sUYM5mHLIsmf6o1x"},{"name":"x-amz-request-id","value":"A54095D1E835D86D"},{"name":"Date","value":"Thu, 16 Aug 2012 18:28:05 GMT"},{"name":"Last-Modified","value":"Thu, 16 Aug 2012 00:09:08 GMT"},{"name":"ETag","value":"\"4b3ce8775717a723bf0673ba11e197fb\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"application/javascript"},{"name":"Server","value":"AmazonS3"},{"name":"Content-Encoding","value":"gzip"},{"name":"Vary","value":"Accept-Encoding"},{"name":"Content-Length","value":"179563"},{"name":"Cache-Control","value":"private, max-age=31449600"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 15 Aug 2013 18:28:05 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"application/javascript"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":122,"ssl":121,"send":0,"wait":357,"receive":2400}},{"pageref":"page_2_0","startedDateTime":"2012-08-16T18:28:07.945+00:00","time":1029,"request":{"method":"GET","url":"https://api.twitter.com/1/saved_searches.json","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"api.twitter.com"},{"name":"Accept","value":"application/json, text/javascript, */*; q=0.01"},{"name":"Referer","value":"https://api.twitter.com/receiver.html"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"X-PHX","value":"true"},{"name":"X-Requested-With","value":"XMLHttpRequest"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"no-cache, no-store, must-revalidate, pre-check=0, post-check=0"},{"name":"content-encoding","value":"gzip"},{"name":"content-length","value":"22"},{"name":"content-type","value":"application/json; charset=utf-8"},{"name":"date","value":"Thu, 16 Aug 2012 18:28:08 GMT"},{"name":"etag","value":"\"d751713988987e9331980363e24189ce\""},{"name":"expires","value":"Tue, 31 Mar 1981 05:00:00 GMT"},{"name":"last-modified","value":"Thu, 16 Aug 2012 18:28:08 GMT"},{"name":"pragma","value":"no-cache"},{"name":"server","value":"tfe"},{"name":"set-cookie","value":"original_referer=padhuUp37zigs9eJTisr5PnVtwPa2Ks3aYGytRQKC2hhgexXtH6h6g%3D%3D; path=/"},{"name":"set-cookie","value":"dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:08 GMT"},{"name":"set-cookie","value":"pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"},{"name":"set-cookie","value":"lang=pt; path=/"},{"name":"set-cookie","value":"_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCMkRsTA5AToTcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6EHN0YXlf%250Ac2VjdXJlVDoMY3NyZl9pZCIlZTE2MjEyZjA4YjcwMzJjMDQwOWZkZjlmNzI2%250AYWVjZDM6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFk%250AMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6CXVzZXJpBGXP6Bc6E3Nob3df%250AaGVscF9saW5rMCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6%250AOkZsYXNoSGFzaHsABjoKQHVzZWR7ADoHaWQiJWFmYjFmOWVjMjMwNzAzODBj%250AZGVlZGE1YjhlM2I1MDhiOhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--edce5829132839a74ea002febb5d745285ddd58a; domain=.twitter.com; path=/; secure; HttpOnly"},{"name":"status","value":"200 OK"},{"name":"vary","value":"Accept-Encoding"},{"name":"version","value":"HTTP/1.1"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-mid","value":"36ff0db347846cd8cdb11c929c4ed5ccdd913c18"},{"name":"x-ratelimit-class","value":"api"},{"name":"x-ratelimit-limit","value":"150"},{"name":"x-ratelimit-remaining","value":"150"},{"name":"x-ratelimit-reset","value":"1345141872"},{"name":"x-runtime","value":"0.01716"},{"name":"x-transaction","value":"68d8501d4c2e13af"},{"name":"x-transaction-mask","value":"a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"application/json"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":1029,"receive":0}},{"pageref":"page_2_0","startedDateTime":"2012-08-16T18:28:08.981+00:00","time":184,"request":{"method":"GET","url":"https://si0.twimg.com/a/1345133470/t1/img/loader.gif","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"51RcqEB8zjhSx8FJnPr3ZlHR2hZg4JEw7Z8Jn7Rd9VzS6INKwP8vyXPXBCrpKMVy"},{"name":"x-amz-request-id","value":"182C1108AD43EB11"},{"name":"Date","value":"Thu, 16 Aug 2012 18:28:09 GMT"},{"name":"Last-Modified","value":"Thu, 16 Aug 2012 16:15:40 GMT"},{"name":"ETag","value":"\"faf550cb80c83c14e5176f61e1bb6239\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/gif"},{"name":"Content-Length","value":"4178"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=31449600"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 15 Aug 2013 18:28:09 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/gif"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":153,"receive":31}},{"pageref":"page_2_0","startedDateTime":"2012-08-16T18:28:09.085+00:00","time":4408,"request":{"method":"GET","url":"https://si0.twimg.com/c/phoenix/pt/bundle/t1-more.7cc751ba2c21e9a6c6b2303739b6c255dbd458a7.js","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"TXbWBH9+gUFymJhD1NMd3fcCy07rk/qzxY1DfKBoXm8IASOjcijGeNv83cLVIpa1"},{"name":"x-amz-request-id","value":"179190B3D40BA2F4"},{"name":"Date","value":"Thu, 16 Aug 2012 18:28:09 GMT"},{"name":"Last-Modified","value":"Thu, 16 Aug 2012 00:09:06 GMT"},{"name":"ETag","value":"\"ae65bec57dbceda1ae68d40c43ba1a99\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"application/javascript"},{"name":"Server","value":"AmazonS3"},{"name":"Content-Encoding","value":"gzip"},{"name":"Vary","value":"Accept-Encoding"},{"name":"Content-Length","value":"388038"},{"name":"Cache-Control","value":"private, max-age=31449600"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 15 Aug 2013 18:28:09 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"application/javascript"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":153,"receive":4255}},{"pageref":"page_2_0","startedDateTime":"2012-08-16T18:28:13.701+00:00","time":268,"request":{"method":"GET","url":"https://si0.twimg.com/a/1345133470/t1/css/t1_more.bundle.css","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"text/css,*/*;q=0.1"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"WeesZkhxFaLfaTUc5LfTFkKlsTZr33TONDtAMU2omKh8L9sP0mLFiFf9n+YvVXpp"},{"name":"x-amz-request-id","value":"C23C30A35C9BCDE3"},{"name":"Date","value":"Thu, 16 Aug 2012 18:28:13 GMT"},{"name":"Last-Modified","value":"Thu, 16 Aug 2012 16:15:40 GMT"},{"name":"ETag","value":"\"3f3602e820e9ee9471e24f73c15a9a8d\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"text/css"},{"name":"Server","value":"AmazonS3"},{"name":"Content-Encoding","value":"gzip"},{"name":"Vary","value":"Accept-Encoding"},{"name":"Content-Length","value":"32957"},{"name":"Cache-Control","value":"private, max-age=31449600"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 15 Aug 2013 18:28:13 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"text/css"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":129,"receive":139}},{"pageref":"page_2_0","startedDateTime":"2012-08-16T18:28:14.218+00:00","time":246,"request":{"method":"GET","url":"https://api.twitter.com/1/direct_messages.json?count=50&include_entities=true","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"api.twitter.com"},{"name":"Accept","value":"application/json, text/javascript, */*; q=0.01"},{"name":"Referer","value":"https://api.twitter.com/receiver.html"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"X-PHX","value":"true"},{"name":"X-Requested-With","value":"XMLHttpRequest"}],"httpVersion":"1.1","queryString":[{"name":"count","value":"50"},{"name":"include_entities","value":"true"}]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"no-cache, no-store, must-revalidate, pre-check=0, post-check=0"},{"name":"content-encoding","value":"gzip"},{"name":"content-length","value":"928"},{"name":"content-type","value":"application/json; charset=utf-8"},{"name":"date","value":"Thu, 16 Aug 2012 18:28:14 GMT"},{"name":"etag","value":"\"609b75034f913260b2698796fd053f97\""},{"name":"expires","value":"Tue, 31 Mar 1981 05:00:00 GMT"},{"name":"last-modified","value":"Thu, 16 Aug 2012 18:28:14 GMT"},{"name":"pragma","value":"no-cache"},{"name":"server","value":"tfe"},{"name":"set-cookie","value":"dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:14 GMT"},{"name":"set-cookie","value":"pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"},{"name":"set-cookie","value":"_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCMkRsTA5ASIKZmxhc2hJQzonQWN0aW9uQ29u%250AdHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7ADoMY3NyZl9p%250AZCIlZTE2MjEyZjA4YjcwMzJjMDQwOWZkZjlmNzI2YWVjZDM6EHN0YXlfc2Vj%250AdXJlVDoTcGFzc3dvcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMy%250AMjIwNGUwZGVkYTdkNWQ4OWI6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6CXVzZXJp%250ABGXP6Bc6B2lkIiVhZmIxZjllYzIzMDcwMzgwY2RlZWRhNWI4ZTNiNTA4YjoV%250AaW5fbmV3X3VzZXJfZmxvdzA6E3Nob3dfaGVscF9saW5rMA%253D%253D--235d712abbc9959c964f95108c99fa8e5cc3d938; domain=.twitter.com; path=/; secure; HttpOnly"},{"name":"status","value":"200 OK"},{"name":"vary","value":"Accept-Encoding"},{"name":"version","value":"HTTP/1.1"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-mid","value":"f12024b77a501c7714b97e0331a366fd74aef83e"},{"name":"x-ratelimit-class","value":"api"},{"name":"x-ratelimit-limit","value":"150"},{"name":"x-ratelimit-remaining","value":"150"},{"name":"x-ratelimit-reset","value":"1345141872"},{"name":"x-runtime","value":"0.03438"},{"name":"x-transaction","value":"e073ca353d687e57"},{"name":"x-transaction-mask","value":"a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"application/json"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":246,"receive":0}},{"pageref":"page_2_0","startedDateTime":"2012-08-16T18:28:14.233+00:00","time":260,"request":{"method":"GET","url":"https://api.twitter.com/1/direct_messages/sent.json?count=50&include_entities=true","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"api.twitter.com"},{"name":"Accept","value":"application/json, text/javascript, */*; q=0.01"},{"name":"Referer","value":"https://api.twitter.com/receiver.html"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"X-PHX","value":"true"},{"name":"X-Requested-With","value":"XMLHttpRequest"}],"httpVersion":"1.1","queryString":[{"name":"count","value":"50"},{"name":"include_entities","value":"true"}]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"no-cache, no-store, must-revalidate, pre-check=0, post-check=0"},{"name":"content-encoding","value":"gzip"},{"name":"content-length","value":"935"},{"name":"content-type","value":"application/json; charset=utf-8"},{"name":"date","value":"Thu, 16 Aug 2012 18:28:14 GMT"},{"name":"etag","value":"\"f613d3f7346e4c1a034485dc484b4bda\""},{"name":"expires","value":"Tue, 31 Mar 1981 05:00:00 GMT"},{"name":"last-modified","value":"Thu, 16 Aug 2012 18:28:14 GMT"},{"name":"pragma","value":"no-cache"},{"name":"server","value":"tfe"},{"name":"set-cookie","value":"dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:14 GMT"},{"name":"set-cookie","value":"pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"},{"name":"set-cookie","value":"_twitter_sess=BAh7DzoTc2hvd19oZWxwX2xpbmswOg9jcmVhdGVkX2F0bCsIyRGxMDkBIgpm%250AbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpGbGFzaDo6Rmxhc2hIYXNoewAG%250AOgpAdXNlZHsAOgxjc3JmX2lkIiVlMTYyMTJmMDhiNzAzMmMwNDA5ZmRmOWY3%250AMjZhZWNkMzoQc3RheV9zZWN1cmVUOhNwYXNzd29yZF90b2tlbiItNWMxZTk5%250AODg2Mzc1MWQxZTJmYzlkYzIyMjA0ZTBkZWRhN2Q1ZDg5Yjobc2Vzc2lvbl9w%250AYXNzd29yZF90b2tlbiItNWMxZTk5ODg2Mzc1MWQxZTJmYzlkYzIyMjA0ZTBk%250AZWRhN2Q1ZDg5YjoJdXNlcmkEZc%252FoFzoHaWQiJWFmYjFmOWVjMjMwNzAzODBj%250AZGVlZGE1YjhlM2I1MDhiOhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--364b01e711b490ce00e95c6984b6b34c5ecf0a49; domain=.twitter.com; path=/; secure; HttpOnly"},{"name":"status","value":"200 OK"},{"name":"vary","value":"Accept-Encoding"},{"name":"version","value":"HTTP/1.1"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-mid","value":"a4c74b8cb6c9823795f8e9569c6bea43fdd360fc"},{"name":"x-ratelimit-class","value":"api"},{"name":"x-ratelimit-limit","value":"150"},{"name":"x-ratelimit-remaining","value":"150"},{"name":"x-ratelimit-reset","value":"1345141872"},{"name":"x-runtime","value":"0.01953"},{"name":"x-transaction","value":"5687c6187e32c75a"},{"name":"x-transaction-mask","value":"a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"application/json"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":260,"receive":-1}},{"pageref":"page_2_0","startedDateTime":"2012-08-16T18:28:14.253+00:00","time":888,"request":{"method":"GET","url":"https://api.twitter.com/i/search/typeahead.json?count=2500&prefetch=true&result_type=users&post_authenticity_token=51bd72c7fbd5920e8b63cece5d48828d359e21e8","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"api.twitter.com"},{"name":"Accept","value":"application/json, text/javascript, */*; q=0.01"},{"name":"Referer","value":"https://api.twitter.com/receiver.html"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"X-PHX","value":"true"},{"name":"X-Requested-With","value":"XMLHttpRequest"}],"httpVersion":"1.1","queryString":[{"name":"count","value":"2500"},{"name":"prefetch","value":"true"},{"name":"result_type","value":"users"},{"name":"post_authenticity_token","value":"51bd72c7fbd5920e8b63cece5d48828d359e21e8"}]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"no-cache, no-store, must-revalidate, pre-check=0, post-check=0"},{"name":"content-encoding","value":"gzip"},{"name":"content-length","value":"30927"},{"name":"content-type","value":"application/json;charset=utf-8"},{"name":"date","value":"Thu, 16 Aug 2012 18:28:14 GMT"},{"name":"expires","value":"Tue, 31 Mar 1981 05:00:00 GMT"},{"name":"last-modified","value":"Thu, 16 Aug 2012 18:28:14 GMT"},{"name":"pragma","value":"no-cache"},{"name":"server","value":"tfe"},{"name":"status","value":"200 OK"},{"name":"version","value":"HTTP/1.1"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-ratelimit-class","value":"api"},{"name":"x-ratelimit-limit","value":"150"},{"name":"x-ratelimit-remaining","value":"150"},{"name":"x-ratelimit-reset","value":"1345141872"},{"name":"x-transaction","value":"3ad91ab14bdbefea"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"application/json"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":340,"receive":548}},{"pageref":"page_2_0","startedDateTime":"2012-08-16T18:28:14.253+00:00","time":237,"request":{"method":"GET","url":"https://api.twitter.com/1/saved_searches.json","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"api.twitter.com"},{"name":"Accept","value":"application/json, text/javascript, */*; q=0.01"},{"name":"Referer","value":"https://api.twitter.com/receiver.html"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"X-PHX","value":"true"},{"name":"X-Requested-With","value":"XMLHttpRequest"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"no-cache, no-store, must-revalidate, pre-check=0, post-check=0"},{"name":"content-encoding","value":"gzip"},{"name":"content-length","value":"22"},{"name":"content-type","value":"application/json; charset=utf-8"},{"name":"date","value":"Thu, 16 Aug 2012 18:28:14 GMT"},{"name":"etag","value":"\"d751713988987e9331980363e24189ce\""},{"name":"expires","value":"Tue, 31 Mar 1981 05:00:00 GMT"},{"name":"last-modified","value":"Thu, 16 Aug 2012 18:28:14 GMT"},{"name":"pragma","value":"no-cache"},{"name":"server","value":"tfe"},{"name":"set-cookie","value":"dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:14 GMT"},{"name":"set-cookie","value":"pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"},{"name":"set-cookie","value":"_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCMkRsTA5AToMY3NyZl9pZCIlZTE2MjEyZjA4%250AYjcwMzJjMDQwOWZkZjlmNzI2YWVjZDM6EHN0YXlfc2VjdXJlVDoTcGFzc3dv%250AcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdk%250ANWQ4OWI6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFk%250AMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6CXVzZXJpBGXP6BciCmZsYXNo%250ASUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhhc2h7AAY6CkB1%250Ac2VkewA6E3Nob3dfaGVscF9saW5rMDoHaWQiJWFmYjFmOWVjMjMwNzAzODBj%250AZGVlZGE1YjhlM2I1MDhiOhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--24246159794fe09fe2d10ba78920ffc90c362e06; domain=.twitter.com; path=/; secure; HttpOnly"},{"name":"status","value":"200 OK"},{"name":"vary","value":"Accept-Encoding"},{"name":"version","value":"HTTP/1.1"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-mid","value":"ff23184403480d00eb183032d617437e6fc3288e"},{"name":"x-ratelimit-class","value":"api"},{"name":"x-ratelimit-limit","value":"150"},{"name":"x-ratelimit-remaining","value":"150"},{"name":"x-ratelimit-reset","value":"1345141872"},{"name":"x-runtime","value":"0.01640"},{"name":"x-transaction","value":"ca5c7ea8f988c413"},{"name":"x-transaction-mask","value":"a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"application/json"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":237,"receive":0}},{"pageref":"page_2_0","startedDateTime":"2012-08-16T18:28:14.278+00:00","time":192,"request":{"method":"GET","url":"https://twitter.com/images/spinner.gif","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"twitter.com"},{"name":"Referer","value":"https://twitter.com/"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"accept-ranges","value":"bytes"},{"name":"cache-control","value":"max-age=315360000"},{"name":"content-length","value":"457"},{"name":"content-type","value":"image/gif"},{"name":"date","value":"Thu, 16 Aug 2012 18:28:14 GMT"},{"name":"expires","value":"Sun, 14 Aug 2022 18:28:14 GMT"},{"name":"last-modified","value":"Wed, 15 Aug 2012 21:05:49 GMT"},{"name":"server","value":"tfe"},{"name":"status","value":"200 OK"},{"name":"version","value":"HTTP/1.1"},{"name":"x-xss-protection","value":"1; mode=block"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/gif"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":192,"receive":0}},{"pageref":"page_2_0","startedDateTime":"2012-08-16T18:28:14.287+00:00","time":212,"request":{"method":"GET","url":"https://api.twitter.com/1/trends/available.json?lang=pt","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"api.twitter.com"},{"name":"Accept","value":"application/json, text/javascript, */*; q=0.01"},{"name":"Referer","value":"https://api.twitter.com/receiver.html"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"X-PHX","value":"true"},{"name":"X-Requested-With","value":"XMLHttpRequest"}],"httpVersion":"1.1","queryString":[{"name":"lang","value":"pt"}]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"max-age=2592000, must-revalidate"},{"name":"content-encoding","value":"gzip"},{"name":"content-length","value":"3912"},{"name":"content-type","value":"application/json; charset=utf-8"},{"name":"date","value":"Thu, 16 Aug 2012 18:28:14 GMT"},{"name":"etag","value":"\"f497ca90dcd36818273c5e38d5ad0bad\""},{"name":"expires","value":"Tue, 31 Mar 1981 05:00:00 GMT"},{"name":"last-modified","value":"Thu, 16 Aug 2012 18:28:14 GMT"},{"name":"pragma","value":"no-cache"},{"name":"server","value":"tfe"},{"name":"set-cookie","value":"dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:14 GMT"},{"name":"set-cookie","value":"pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"},{"name":"set-cookie","value":"_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCMkRsTA5AToMY3NyZl9pZCIlZTE2MjEyZjA4%250AYjcwMzJjMDQwOWZkZjlmNzI2YWVjZDM6EHN0YXlfc2VjdXJlVDoTcGFzc3dv%250AcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdk%250ANWQ4OWIiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFz%250AaEhhc2h7AAY6CkB1c2VkewA6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6CXVzZXJp%250ABGXP6Bc6E3Nob3dfaGVscF9saW5rMDoHaWQiJWFmYjFmOWVjMjMwNzAzODBj%250AZGVlZGE1YjhlM2I1MDhiOhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--c633ab869131e6b08062adb28dd9e0367b1920e8; domain=.twitter.com; path=/; secure; HttpOnly"},{"name":"status","value":"200 OK"},{"name":"vary","value":"Accept-Encoding"},{"name":"version","value":"HTTP/1.1"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-mid","value":"87cf3ff1568b90352eb055e13034d8597ae1f55b"},{"name":"x-ratelimit-class","value":"api"},{"name":"x-ratelimit-limit","value":"150"},{"name":"x-ratelimit-remaining","value":"150"},{"name":"x-ratelimit-reset","value":"1345141872"},{"name":"x-runtime","value":"0.03665"},{"name":"x-transaction","value":"00709abcb0003356"},{"name":"x-transaction-mask","value":"a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"application/json"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":212,"receive":0}},{"pageref":"page_2_0","startedDateTime":"2012-08-16T18:28:14.339+00:00","time":185,"request":{"method":"GET","url":"https://api.twitter.com/1/users/recommendations.json?limit=3&excluded=&display_location=wtf-component&pc=true&connections=true&algorithm=null&force_new_signup=false","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"api.twitter.com"},{"name":"Accept","value":"application/json, text/javascript, */*; q=0.01"},{"name":"Referer","value":"https://api.twitter.com/receiver.html"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"X-PHX","value":"true"},{"name":"X-Requested-With","value":"XMLHttpRequest"}],"httpVersion":"1.1","queryString":[{"name":"limit","value":"3"},{"name":"excluded","value":""},{"name":"display_location","value":"wtf-component"},{"name":"pc","value":"true"},{"name":"connections","value":"true"},{"name":"algorithm","value":"null"},{"name":"force_new_signup","value":"false"}]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"private, max-age=120"},{"name":"content-encoding","value":"gzip"},{"name":"content-length","value":"1963"},{"name":"content-type","value":"application/json; charset=utf-8"},{"name":"date","value":"Thu, 16 Aug 2012 18:28:14 GMT"},{"name":"etag","value":"\"fc44fc29d296cc233107df242ea6d6d6\""},{"name":"expires","value":"Thu, 16 Aug 2012 18:30:14 GMT"},{"name":"last-modified","value":"Thu, 16 Aug 2012 18:26:14 GMT"},{"name":"server","value":"tfe"},{"name":"set-cookie","value":"dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:14 GMT"},{"name":"set-cookie","value":"pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"},{"name":"set-cookie","value":"_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCMkRsTA5AToTcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6EHN0YXlf%250Ac2VjdXJlVDoMY3NyZl9pZCIlZTE2MjEyZjA4YjcwMzJjMDQwOWZkZjlmNzI2%250AYWVjZDM6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFk%250AMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWIiCmZsYXNoSUM6J0FjdGlvbkNv%250AbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhhc2h7AAY6CkB1c2VkewA6CXVzZXJp%250ABGXP6Bc6E3Nob3dfaGVscF9saW5rMDoHaWQiJWFmYjFmOWVjMjMwNzAzODBj%250AZGVlZGE1YjhlM2I1MDhiOhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--3f521fffb43b81c9fb4cafd4e62562567dede94f; domain=.twitter.com; path=/; secure; HttpOnly"},{"name":"status","value":"200 OK"},{"name":"vary","value":"Accept-Encoding"},{"name":"version","value":"HTTP/1.1"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-mid","value":"6bdcfa77fc5ab3ae3e0d60346d5505858ffa6436"},{"name":"x-ratelimit-class","value":"api"},{"name":"x-ratelimit-limit","value":"150"},{"name":"x-ratelimit-remaining","value":"150"},{"name":"x-ratelimit-reset","value":"1345141872"},{"name":"x-runtime","value":"0.06790"},{"name":"x-transaction","value":"870d9d1b42e99d47"},{"name":"x-transaction-mask","value":"a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"application/json"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":185,"receive":0}},{"pageref":"page_2_0","startedDateTime":"2012-08-16T18:28:14.367+00:00","time":189,"request":{"method":"GET","url":"https://api.twitter.com/1/users/recommendations.json?limit=3&excluded=&display_location=wtf-component&pc=true&connections=true&algorithm=null&force_new_signup=true","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"api.twitter.com"},{"name":"Accept","value":"application/json, text/javascript, */*; q=0.01"},{"name":"Referer","value":"https://api.twitter.com/receiver.html"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"X-PHX","value":"true"},{"name":"X-Requested-With","value":"XMLHttpRequest"}],"httpVersion":"1.1","queryString":[{"name":"limit","value":"3"},{"name":"excluded","value":""},{"name":"display_location","value":"wtf-component"},{"name":"pc","value":"true"},{"name":"connections","value":"true"},{"name":"algorithm","value":"null"},{"name":"force_new_signup","value":"true"}]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"private, max-age=120"},{"name":"content-encoding","value":"gzip"},{"name":"content-length","value":"1758"},{"name":"content-type","value":"application/json; charset=utf-8"},{"name":"date","value":"Thu, 16 Aug 2012 18:28:14 GMT"},{"name":"etag","value":"\"3da2040dc5687af32d5e1514941b66b9\""},{"name":"expires","value":"Thu, 16 Aug 2012 18:30:14 GMT"},{"name":"last-modified","value":"Thu, 16 Aug 2012 18:26:14 GMT"},{"name":"server","value":"tfe"},{"name":"set-cookie","value":"dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:14 GMT"},{"name":"set-cookie","value":"pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"},{"name":"set-cookie","value":"_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCMkRsTA5AToTcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6EHN0YXlf%250Ac2VjdXJlVDoMY3NyZl9pZCIlZTE2MjEyZjA4YjcwMzJjMDQwOWZkZjlmNzI2%250AYWVjZDM6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFk%250AMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWIiCmZsYXNoSUM6J0FjdGlvbkNv%250AbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhhc2h7AAY6CkB1c2VkewA6CXVzZXJp%250ABGXP6Bc6E3Nob3dfaGVscF9saW5rMDoHaWQiJWFmYjFmOWVjMjMwNzAzODBj%250AZGVlZGE1YjhlM2I1MDhiOhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--3f521fffb43b81c9fb4cafd4e62562567dede94f; domain=.twitter.com; path=/; secure; HttpOnly"},{"name":"status","value":"200 OK"},{"name":"vary","value":"Accept-Encoding"},{"name":"version","value":"HTTP/1.1"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-mid","value":"a70da6a5080e3da9b3c6dfc5c34e4c8aaa7e75b9"},{"name":"x-ratelimit-class","value":"api"},{"name":"x-ratelimit-limit","value":"150"},{"name":"x-ratelimit-remaining","value":"150"},{"name":"x-ratelimit-reset","value":"1345141872"},{"name":"x-runtime","value":"0.09999"},{"name":"x-transaction","value":"2628499e545e1e58"},{"name":"x-transaction-mask","value":"a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"application/json"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":186,"receive":3}},{"pageref":"page_2_0","startedDateTime":"2012-08-16T18:28:14.467+00:00","time":979,"request":{"method":"GET","url":"https://ssl.google-analytics.com/ga.js","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"ssl.google-analytics.com"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"age","value":"19282"},{"name":"cache-control","value":"max-age=43200, public"},{"name":"content-encoding","value":"gzip"},{"name":"content-length","value":"14688"},{"name":"content-type","value":"text/javascript"},{"name":"date","value":"Thu, 16 Aug 2012 13:06:52 GMT"},{"name":"expires","value":"Fri, 17 Aug 2012 01:06:52 GMT"},{"name":"last-modified","value":"Wed, 18 Jul 2012 18:52:25 GMT"},{"name":"server","value":"GFE/2.0"},{"name":"status","value":"200 OK"},{"name":"vary","value":"Accept-Encoding"},{"name":"version","value":"HTTP/1.1"},{"name":"x-content-type-options","value":"nosniff"},{"name":"x-content-type-options","value":"nosniff"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"text/javascript"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":200,"ssl":90,"send":0,"wait":301,"receive":478}},{"pageref":"page_2_0","startedDateTime":"2012-08-16T18:28:14.538+00:00","time":807,"request":{"method":"GET","url":"https://si0.twimg.com/profile_images/1583722973/tweter_normal.jpg","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"LSVtZu2wpDiFu4d+vapaVvPN8dRwUWJ43mojC0K7mTmHykIPBnV5GNuX//SsN1N0"},{"name":"x-amz-request-id","value":"2D2EACE842AD2DBA"},{"name":"Date","value":"Thu, 16 Aug 2012 18:28:14 GMT"},{"name":"Last-Modified","value":"Tue, 11 Oct 2011 19:50:44 GMT"},{"name":"ETag","value":"\"d66538ca9a2d928cbf9aa07d8985726d\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/jpeg"},{"name":"Content-Length","value":"21376"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=604800"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 23 Aug 2012 18:28:14 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/jpeg"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":182,"receive":625}},{"pageref":"page_2_0","startedDateTime":"2012-08-16T18:28:14.552+00:00","time":635,"request":{"method":"GET","url":"https://api.twitter.com/1/trends/1.json?pc=true&post_authenticity_token=51bd72c7fbd5920e8b63cece5d48828d359e21e8","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"api.twitter.com"},{"name":"Accept","value":"application/json, text/javascript, */*; q=0.01"},{"name":"Referer","value":"https://api.twitter.com/receiver.html"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"X-PHX","value":"true"},{"name":"X-Requested-With","value":"XMLHttpRequest"}],"httpVersion":"1.1","queryString":[{"name":"pc","value":"true"},{"name":"post_authenticity_token","value":"51bd72c7fbd5920e8b63cece5d48828d359e21e8"}]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"max-age=300, must-revalidate"},{"name":"content-encoding","value":"gzip"},{"name":"content-length","value":"557"},{"name":"content-type","value":"application/json; charset=utf-8"},{"name":"date","value":"Thu, 16 Aug 2012 18:28:14 GMT"},{"name":"etag","value":"\"43a91b541e1313be5a8b096c41376a58\""},{"name":"expires","value":"Tue, 31 Mar 1981 05:00:00 GMT"},{"name":"last-modified","value":"Thu, 16 Aug 2012 18:28:14 GMT"},{"name":"pragma","value":"no-cache"},{"name":"server","value":"tfe"},{"name":"set-cookie","value":"dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:14 GMT"},{"name":"set-cookie","value":"pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"},{"name":"set-cookie","value":"_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCMkRsTA5AToMY3NyZl9pZCIlZTE2MjEyZjA4%250AYjcwMzJjMDQwOWZkZjlmNzI2YWVjZDM6EHN0YXlfc2VjdXJlVDoTcGFzc3dv%250AcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdk%250ANWQ4OWI6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFk%250AMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6CXVzZXJpBGXP6Bc6E3Nob3df%250AaGVscF9saW5rMDoHaWQiJWFmYjFmOWVjMjMwNzAzODBjZGVlZGE1YjhlM2I1%250AMDhiOhVpbl9uZXdfdXNlcl9mbG93MCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%250AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%253D%253D--b12d2036b7dac68e1a24db40b812d819c1739fc3; domain=.twitter.com; path=/; secure; HttpOnly"},{"name":"status","value":"200 OK"},{"name":"vary","value":"Accept-Encoding"},{"name":"version","value":"HTTP/1.1"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-mid","value":"2ce50599b9d965e5c930779f9942e85ad6fafda1"},{"name":"x-ratelimit-class","value":"api"},{"name":"x-ratelimit-limit","value":"150"},{"name":"x-ratelimit-remaining","value":"150"},{"name":"x-ratelimit-reset","value":"1345141872"},{"name":"x-runtime","value":"0.07118"},{"name":"x-transaction","value":"da0b8ce486287971"},{"name":"x-transaction-mask","value":"a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"application/json"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":635,"receive":0}},{"pageref":"page_2_0","startedDateTime":"2012-08-16T18:28:14.555+00:00","time":792,"request":{"method":"GET","url":"https://si0.twimg.com/profile_images/1704174536/br_reasonably_small_normal.jpg","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"juF11vMZeNSP3U/ciJvHfMsTc9kTF0RAWFZ3U1ugOYItM5Fr1RFKgLthV3q4pVNR"},{"name":"x-amz-request-id","value":"7428102AFE7FD946"},{"name":"Date","value":"Thu, 16 Aug 2012 18:28:14 GMT"},{"name":"Last-Modified","value":"Tue, 20 Dec 2011 14:33:00 GMT"},{"name":"ETag","value":"\"28cf966feb59a79205ad4ea2a548073c\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/jpeg"},{"name":"Content-Length","value":"20826"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=604800"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 23 Aug 2012 18:28:14 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/jpeg"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":211,"receive":581}},{"pageref":"page_2_0","startedDateTime":"2012-08-16T18:28:14.556+00:00","time":236,"request":{"method":"GET","url":"https://si0.twimg.com/profile_images/1708108126/pic_normal.jpg","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"7L7r7lIP/RkORKzQvVIhHkciQmEvRrp8bxnd/sABrDZgHuFw+7geUDZeMgMRwi+V"},{"name":"x-amz-request-id","value":"82B79479FBBE1FAC"},{"name":"Date","value":"Thu, 16 Aug 2012 18:28:14 GMT"},{"name":"Last-Modified","value":"Thu, 22 Dec 2011 15:50:19 GMT"},{"name":"ETag","value":"\"17d0db28c385b7524b284f7cd3aa288c\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/jpeg"},{"name":"Content-Length","value":"4240"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=604800"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 23 Aug 2012 18:28:14 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/jpeg"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":211,"receive":25}},{"pageref":"page_2_0","startedDateTime":"2012-08-16T18:28:14.582+00:00","time":883,"request":{"method":"GET","url":"https://si0.twimg.com/profile_images/1805231321/4b87e0c3-e98a-4736-ab7c-bfa4f4a0a34c_reasonably_small.png","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"EXk+8xP49yh0nnwLxfqdsZ8uV1c+95+XXMB0MPn8F8NuW9newR7w0AUDG36RmLBJ"},{"name":"x-amz-request-id","value":"4D63C135FAAACB59"},{"name":"Date","value":"Thu, 16 Aug 2012 18:28:14 GMT"},{"name":"Last-Modified","value":"Sun, 05 Feb 2012 05:30:07 GMT"},{"name":"ETag","value":"\"14b206acb5a367cf78a86ad9df1a2bcf\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/png"},{"name":"Content-Length","value":"32022"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=604800"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 23 Aug 2012 18:28:14 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/png"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":256,"receive":627}},{"pageref":"page_2_0","startedDateTime":"2012-08-16T18:28:14.583+00:00","time":839,"request":{"method":"GET","url":"https://si0.twimg.com/profile_images/728337241/conan_4cred_reasonably_small.jpg","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"35TIKPVkRZZ/0OWJDlqn0XToZXC0Ca55SSXgQiOdDMfvgblmF8Z80CaO1dAyoRoX"},{"name":"x-amz-request-id","value":"B4F0015A477BC2D9"},{"name":"Date","value":"Thu, 16 Aug 2012 18:28:14 GMT"},{"name":"Last-Modified","value":"Mon, 13 Sep 2010 15:28:52 GMT"},{"name":"ETag","value":"\"4222af25e68e27e759a145209750ee1f\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/jpeg"},{"name":"Content-Length","value":"24566"},{"name":"Server","value":"AmazonS3"},{"name":"X-Error","value":"bad-expires"},{"name":"X-Error","value":"bad-expires"},{"name":"Cache-Control","value":"private, max-age=604800"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 23 Aug 2012 18:28:14 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/jpeg"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":256,"receive":583}},{"pageref":"page_2_0","startedDateTime":"2012-08-16T18:28:14.586+00:00","time":793,"request":{"method":"GET","url":"https://si0.twimg.com/profile_images/2263764407/Screen_Shot_2012-05-30_at_10.22.08_AM_reasonably_small.png","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"CgbjkPuzZtsPB82EbsWLXKzBJgK0lK32oN+z3s/XhArYVv/Io1IAAn8OwbJX1nSa"},{"name":"x-amz-request-id","value":"5B59576771F3D9C5"},{"name":"Date","value":"Thu, 16 Aug 2012 18:28:14 GMT"},{"name":"Last-Modified","value":"Wed, 30 May 2012 17:21:45 GMT"},{"name":"ETag","value":"\"94947db49794f243c1c864f8b4bed927\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/png"},{"name":"Content-Length","value":"7701"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=604800"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 23 Aug 2012 18:28:14 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/png"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":705,"receive":88}},{"pageref":"page_2_0","startedDateTime":"2012-08-16T18:28:14.586+00:00","time":699,"request":{"method":"GET","url":"https://api.twitter.com/1/statuses/friends.json?cursor=-1&user_id=401133413","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"api.twitter.com"},{"name":"Accept","value":"application/json, text/javascript, */*; q=0.01"},{"name":"Referer","value":"https://api.twitter.com/receiver.html"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"X-PHX","value":"true"},{"name":"X-Requested-With","value":"XMLHttpRequest"}],"httpVersion":"1.1","queryString":[{"name":"cursor","value":"-1"},{"name":"user_id","value":"401133413"}]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"no-cache, no-store, must-revalidate, pre-check=0, post-check=0"},{"name":"content-encoding","value":"gzip"},{"name":"content-length","value":"1562"},{"name":"content-type","value":"application/json; charset=utf-8"},{"name":"date","value":"Thu, 16 Aug 2012 18:28:14 GMT"},{"name":"etag","value":"\"f7f113de7363af4b1bbf9811d8b5518d\""},{"name":"expires","value":"Tue, 31 Mar 1981 05:00:00 GMT"},{"name":"last-modified","value":"Thu, 16 Aug 2012 18:28:14 GMT"},{"name":"pragma","value":"no-cache"},{"name":"server","value":"tfe"},{"name":"set-cookie","value":"dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:14 GMT"},{"name":"set-cookie","value":"pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"},{"name":"set-cookie","value":"_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCMkRsTA5AToMY3NyZl9pZCIlZTE2MjEyZjA4%250AYjcwMzJjMDQwOWZkZjlmNzI2YWVjZDM6EHN0YXlfc2VjdXJlVDoTcGFzc3dv%250AcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdk%250ANWQ4OWI6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFk%250AMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6CXVzZXJpBGXP6BciCmZsYXNo%250ASUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhhc2h7AAY6CkB1%250Ac2VkewA6B2lkIiVhZmIxZjllYzIzMDcwMzgwY2RlZWRhNWI4ZTNiNTA4YjoV%250AaW5fbmV3X3VzZXJfZmxvdzA6E3Nob3dfaGVscF9saW5rMA%253D%253D--0fd6de6024c24a5572c87c7320df7851bad3bc32; domain=.twitter.com; path=/; secure; HttpOnly"},{"name":"status","value":"200 OK"},{"name":"vary","value":"Accept-Encoding"},{"name":"version","value":"HTTP/1.1"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-mid","value":"74eb81785f5fc56c430d914531fce6aac5fd23f1"},{"name":"x-ratelimit-class","value":"api"},{"name":"x-ratelimit-limit","value":"150"},{"name":"x-ratelimit-remaining","value":"150"},{"name":"x-ratelimit-reset","value":"1345141872"},{"name":"x-runtime","value":"0.08719"},{"name":"x-transaction","value":"615a9b2825f469fa"},{"name":"x-transaction-mask","value":"a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"application/json"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":647,"receive":52}},{"pageref":"page_2_0","startedDateTime":"2012-08-16T18:28:15.153+00:00","time":142,"request":{"method":"GET","url":"https://api.twitter.com/1/blocks/blocking.json","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"api.twitter.com"},{"name":"Accept","value":"application/json, text/javascript, */*; q=0.01"},{"name":"Referer","value":"https://api.twitter.com/receiver.html"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"X-PHX","value":"true"},{"name":"X-Requested-With","value":"XMLHttpRequest"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"no-cache, no-store, must-revalidate, pre-check=0, post-check=0"},{"name":"content-encoding","value":"gzip"},{"name":"content-length","value":"22"},{"name":"content-type","value":"application/json; charset=utf-8"},{"name":"date","value":"Thu, 16 Aug 2012 18:28:15 GMT"},{"name":"etag","value":"\"d751713988987e9331980363e24189ce\""},{"name":"expires","value":"Tue, 31 Mar 1981 05:00:00 GMT"},{"name":"last-modified","value":"Thu, 16 Aug 2012 18:28:15 GMT"},{"name":"pragma","value":"no-cache"},{"name":"server","value":"tfe"},{"name":"set-cookie","value":"dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:15 GMT"},{"name":"set-cookie","value":"pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"},{"name":"set-cookie","value":"_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCMkRsTA5ASIKZmxhc2hJQzonQWN0aW9uQ29u%250AdHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7ADoMY3NyZl9p%250AZCIlZTE2MjEyZjA4YjcwMzJjMDQwOWZkZjlmNzI2YWVjZDM6EHN0YXlfc2Vj%250AdXJlVDoTcGFzc3dvcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMy%250AMjIwNGUwZGVkYTdkNWQ4OWI6E3Nob3dfaGVscF9saW5rMDobc2Vzc2lvbl9w%250AYXNzd29yZF90b2tlbiItNWMxZTk5ODg2Mzc1MWQxZTJmYzlkYzIyMjA0ZTBk%250AZWRhN2Q1ZDg5YjoJdXNlcmkEZc%252FoFzoHaWQiJWFmYjFmOWVjMjMwNzAzODBj%250AZGVlZGE1YjhlM2I1MDhiOhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--498f104993abdf54e6c4b11cf24b2a09d0c61e19; domain=.twitter.com; path=/; secure; HttpOnly"},{"name":"status","value":"200 OK"},{"name":"vary","value":"Accept-Encoding"},{"name":"version","value":"HTTP/1.1"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-mid","value":"3bd3db0bdd999bdeb7f4c8bfb40e4f99efd3d037"},{"name":"x-ratelimit-class","value":"api"},{"name":"x-ratelimit-limit","value":"150"},{"name":"x-ratelimit-remaining","value":"150"},{"name":"x-ratelimit-reset","value":"1345141872"},{"name":"x-runtime","value":"0.01364"},{"name":"x-transaction","value":"498de3deb98f031c"},{"name":"x-transaction-mask","value":"a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"application/json"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":142,"receive":0}},{"pageref":"page_2_0","startedDateTime":"2012-08-16T18:28:15.239+00:00","time":96,"request":{"method":"GET","url":"https://api.twitter.com/1/promoted_content/i/log.png?promoted_trend_id=5288","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"api.twitter.com"},{"name":"Referer","value":"https://twitter.com/"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"}],"httpVersion":"1.1","queryString":[{"name":"promoted_trend_id","value":"5288"}]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"no-cache, no-store, must-revalidate, pre-check=0, post-check=0"},{"name":"content-length","value":"1"},{"name":"content-transfer-encoding","value":"binary"},{"name":"content-type","value":"image/png"},{"name":"date","value":"Thu, 16 Aug 2012 18:28:15 GMT"},{"name":"etag","value":"\"7215ee9c7d9dc229d2921a40e899ec5f\""},{"name":"expires","value":"Tue, 31 Mar 1981 05:00:00 GMT"},{"name":"last-modified","value":"Thu, 16 Aug 2012 18:28:15 GMT"},{"name":"pragma","value":"no-cache"},{"name":"server","value":"tfe"},{"name":"set-cookie","value":"dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:15 GMT"},{"name":"set-cookie","value":"pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"},{"name":"set-cookie","value":"_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCMkRsTA5AToTcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6EHN0YXlf%250Ac2VjdXJlVDoMY3NyZl9pZCIlZTE2MjEyZjA4YjcwMzJjMDQwOWZkZjlmNzI2%250AYWVjZDM6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFk%250AMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6CXVzZXJpBGXP6Bc6E3Nob3df%250AaGVscF9saW5rMDoHaWQiJWFmYjFmOWVjMjMwNzAzODBjZGVlZGE1YjhlM2I1%250AMDhiOhVpbl9uZXdfdXNlcl9mbG93MCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%250AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%253D%253D--bf4f5d9ce8bd86cefd9087a906ffd8d4fde23305; domain=.twitter.com; path=/; secure; HttpOnly"},{"name":"status","value":"200 OK"},{"name":"version","value":"HTTP/1.1"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-mid","value":"a69ffbd13d41f40c005c79d080785d51bf6d8a76"},{"name":"x-runtime","value":"0.01527"},{"name":"x-transaction","value":"220af1ec1b0c9027"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/png"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":96,"receive":0}},{"pageref":"page_2_0","startedDateTime":"2012-08-16T18:28:15.275+00:00","time":62,"request":{"method":"GET","url":"https://ssl.google-analytics.com/__utm.gif?utmwv=5.3.4&utms=2&utmn=2023916517&utmhn=twitter.com&utmcs=UTF-8&utmsr=1024x768&utmvp=997x614&utmsc=32-bit&utmul=en-us&utmje=1&utmfl=11.3%20r31&utmdt=Twitter%20%2F%20In%C3%ADcio&utmhid=256817567&utmr=0&utmp=%2F&utmac=UA-30775-6&utmcc=__utma%3D43838368.1437752932.1345141681.1345141681.1345141681.1%3B%2B__utmz%3D43838368.1345141681.1.1.utmcsr%3D(direct)%7Cutmccn%3D(direct)%7Cutmcmd%3D(none)%3B&utmu=q~","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"ssl.google-analytics.com"},{"name":"Referer","value":"https://twitter.com/"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"}],"httpVersion":"1.1","queryString":[{"name":"utmwv","value":"5.3.4"},{"name":"utms","value":"2"},{"name":"utmn","value":"2023916517"},{"name":"utmhn","value":"twitter.com"},{"name":"utmcs","value":"UTF-8"},{"name":"utmsr","value":"1024x768"},{"name":"utmvp","value":"997x614"},{"name":"utmsc","value":"32-bit"},{"name":"utmul","value":"en-us"},{"name":"utmje","value":"1"},{"name":"utmfl","value":"11.3 r31"},{"name":"utmdt","value":"Twitter / Início"},{"name":"utmhid","value":"256817567"},{"name":"utmr","value":"0"},{"name":"utmp","value":"/"},{"name":"utmac","value":"UA-30775-6"},{"name":"utmcc","value":"__utma=43838368.1437752932.1345141681.1345141681.1345141681.1;+__utmz=43838368.1345141681.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none);"},{"name":"utmu","value":"q~"}]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"age","value":"14556"},{"name":"cache-control","value":"private, no-cache, no-cache=Set-Cookie, proxy-revalidate"},{"name":"content-length","value":"35"},{"name":"content-type","value":"image/gif"},{"name":"date","value":"Thu, 16 Aug 2012 14:25:39 GMT"},{"name":"expires","value":"Wed, 19 Apr 2000 11:43:00 GMT"},{"name":"last-modified","value":"Wed, 21 Jan 2004 19:51:30 GMT"},{"name":"pragma","value":"no-cache"},{"name":"server","value":"GFE/2.0"},{"name":"status","value":"200 OK"},{"name":"version","value":"HTTP/1.1"},{"name":"x-content-type-options","value":"nosniff"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/gif"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":62,"receive":0}},{"pageref":"page_3_0","startedDateTime":"2012-08-16T18:28:35.829+00:00","time":513,"request":{"method":"GET","url":"https://twitter.com/","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"twitter.com"},{"name":"Referer","value":"http://twitter.com/"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"no-cache, no-store, must-revalidate, pre-check=0, post-check=0"},{"name":"content-encoding","value":"gzip"},{"name":"content-length","value":"29632"},{"name":"content-type","value":"text/html; charset=utf-8"},{"name":"date","value":"Thu, 16 Aug 2012 18:28:36 GMT"},{"name":"etag","value":"\"a1f63bbaa42862d965092881330a7a97\""},{"name":"expires","value":"Tue, 31 Mar 1981 05:00:00 GMT"},{"name":"last-modified","value":"Thu, 16 Aug 2012 18:28:35 GMT"},{"name":"pragma","value":"no-cache"},{"name":"server","value":"tfe"},{"name":"set-cookie","value":"dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:35 GMT"},{"name":"set-cookie","value":"pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"},{"name":"set-cookie","value":"_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCAKOsTA5AToMY3NyZl9pZCIlYjkyZjA3NWYz%250AOGU2NDEyZjU1MjBkNmU3YmNkMDk1ZTk6EHN0YXlfc2VjdXJlVDoTcGFzc3dv%250AcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdk%250ANWQ4OWI6E3Nob3dfaGVscF9saW5rMDobc2Vzc2lvbl9wYXNzd29yZF90b2tl%250AbiItNWMxZTk5ODg2Mzc1MWQxZTJmYzlkYzIyMjA0ZTBkZWRhN2Q1ZDg5YjoJ%250AdXNlcmkEZc%252FoFzoHaWQiJWRlN2RjZjIzOWJkNzBhODAxMGFlNmY2NTk2MTI0%250AMGFmIgpmbGFzaElDOidBY3Rpb25Db250cm9sbGVyOjpGbGFzaDo6Rmxhc2hI%250AYXNoewAGOgpAdXNlZHsAOhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--6c22f0c65541d3bd6514f8ae6ef2b4907e69cad7; domain=.twitter.com; path=/; secure; HttpOnly"},{"name":"status","value":"200 OK"},{"name":"strict-transport-security","value":"max-age=631138519"},{"name":"vary","value":"Accept-Encoding"},{"name":"version","value":"HTTP/1.1"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-mid","value":"244fddc42feee185998bd42c7ab624cce4aa18a6"},{"name":"x-runtime","value":"0.28876"},{"name":"x-transaction","value":"4ac7be2dd2ecb49d"},{"name":"x-xss-protection","value":"1; mode=block"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"text/html"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":374,"receive":139}},{"pageref":"page_3_0","startedDateTime":"2012-08-16T18:28:36.297+00:00","time":1168,"request":{"method":"GET","url":"https://si0.twimg.com/a/1345133470/t1/css/t1_core.bundle.css","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"text/css,*/*;q=0.1"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"h8z9Td/7D2oElkR+lOzR2DPSTCy8F5l9vNLkq+TyEMF1w3LyX7ayxtfe6dslwWV3"},{"name":"x-amz-request-id","value":"295BF01C9B4AEE58"},{"name":"Date","value":"Thu, 16 Aug 2012 18:28:36 GMT"},{"name":"Last-Modified","value":"Thu, 16 Aug 2012 16:15:41 GMT"},{"name":"ETag","value":"\"59337cd26ece9dbdc2d36eaa667efb4c\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"text/css"},{"name":"Server","value":"AmazonS3"},{"name":"Content-Encoding","value":"gzip"},{"name":"Vary","value":"Accept-Encoding"},{"name":"Content-Length","value":"27926"},{"name":"Cache-Control","value":"private, max-age=31449600"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 15 Aug 2013 18:28:36 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"text/css"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":455,"ssl":292,"send":0,"wait":573,"receive":140}},{"pageref":"page_3_0","startedDateTime":"2012-08-16T18:28:37.017+00:00","time":754,"request":{"method":"GET","url":"https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"0EjGO3bb9WTEKhVNvYGh6b9jQeFAgihPIZQ/NbsiNt4kHj/25ceaF3X2lBegMBgJ"},{"name":"x-amz-request-id","value":"847A950EA4FC8B09"},{"name":"Date","value":"Thu, 16 Aug 2012 18:28:37 GMT"},{"name":"Last-Modified","value":"Thu, 26 May 2011 01:08:30 GMT"},{"name":"ETag","value":"\"46d5128c6bf7ee8b66257b966b8c883e\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/png"},{"name":"Content-Length","value":"1381"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=604800"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 23 Aug 2012 18:28:37 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/png"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":248,"ssl":128,"send":0,"wait":506,"receive":0}},{"pageref":"page_3_0","startedDateTime":"2012-08-16T18:28:37.020+00:00","time":908,"request":{"method":"GET","url":"https://si0.twimg.com/a/1345133470/t1/img/twitter_web_sprite_bgs.png","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"1ZsOeVxpeSixQ9eUW7vBdJdVCjmOMLvDgu+ZczTLzbuHnDuFrUQWBQ2ptp+b0R3Z"},{"name":"x-amz-request-id","value":"7B74D4B95ECA0474"},{"name":"Date","value":"Thu, 16 Aug 2012 18:28:37 GMT"},{"name":"Last-Modified","value":"Thu, 16 Aug 2012 16:15:41 GMT"},{"name":"ETag","value":"\"dc43d8feef9a6f6bc87fb56f2810bb1f\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/png"},{"name":"Content-Length","value":"6602"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=604800"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 23 Aug 2012 18:28:37 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/png"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":250,"ssl":126,"send":0,"wait":522,"receive":136}},{"pageref":"page_3_0","startedDateTime":"2012-08-16T18:28:37.023+00:00","time":1257,"request":{"method":"GET","url":"https://si0.twimg.com/profile_images/1804416058/43776868-4e4e-45cc-b91c-7ec1b6f350aa_normal.png","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"scz9/mAalAfnDOTjmTH6/7Z2QBtURR49Qp1Vx356nHEePb+Now2o2kftmfoQPc5x"},{"name":"x-amz-request-id","value":"769DC651FEBEC1EE"},{"name":"Date","value":"Thu, 16 Aug 2012 18:28:37 GMT"},{"name":"Last-Modified","value":"Sat, 04 Feb 2012 21:42:09 GMT"},{"name":"ETag","value":"\"145b79a3a79e37520432d48a880b7e97\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/png"},{"name":"Content-Length","value":"5456"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=604800"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 23 Aug 2012 18:28:37 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/png"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":499,"ssl":-1,"send":0,"wait":660,"receive":98}},{"pageref":"page_3_0","startedDateTime":"2012-08-16T18:28:37.025+00:00","time":1896,"request":{"method":"GET","url":"https://si0.twimg.com/a/1345133470/t1/img/twitter_web_sprite_icons.png","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"SZn+2XyAEy/JSLDLuF11DB+EDMyWDFXzXTUO3/W8freAaTH9AHevOJCsbnzmaPIf"},{"name":"x-amz-request-id","value":"49499E48F469851C"},{"name":"Date","value":"Thu, 16 Aug 2012 18:28:37 GMT"},{"name":"Last-Modified","value":"Thu, 16 Aug 2012 16:15:39 GMT"},{"name":"ETag","value":"\"223836604d80c5faa4079d6e5554cfbb\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/png"},{"name":"Content-Length","value":"65084"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=604800"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 23 Aug 2012 18:28:37 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/png"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":250,"ssl":128,"send":0,"wait":524,"receive":1122}},{"pageref":"page_3_0","startedDateTime":"2012-08-16T18:28:37.035+00:00","time":1151,"request":{"method":"GET","url":"https://si0.twimg.com/profile_images/2466871092/image_normal.jpg","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"7NEj14/u5J9sQNw3RlNMXtVpVYhZRJ74FUrqMsr8JfaAlp4WB8zSMVPYnrOZYPTy"},{"name":"x-amz-request-id","value":"5A5B0C1EC30B7ED4"},{"name":"Date","value":"Thu, 16 Aug 2012 18:28:37 GMT"},{"name":"Last-Modified","value":"Sat, 04 Aug 2012 13:11:29 GMT"},{"name":"ETag","value":"\"da79b27a7964b450de35597d1e47d5b4\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/jpeg"},{"name":"Content-Length","value":"1453"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=604800"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 23 Aug 2012 18:28:37 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/jpeg"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":495,"ssl":-1,"send":0,"wait":656,"receive":0}},{"pageref":"page_3_0","startedDateTime":"2012-08-16T18:28:37.037+00:00","time":8961,"request":{"method":"GET","url":"https://si0.twimg.com/profile_background_images/594970743/ht90irx2ejrvh0xqpjjb.jpeg","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"uFRhiBVDHHXu6Xn0edW4PU3j52UrfVMHBda00LkFkJ7LuV895qm4mYEdei8AwRLo"},{"name":"x-amz-request-id","value":"AFF767D128C8A8FE"},{"name":"Date","value":"Thu, 16 Aug 2012 18:28:37 GMT"},{"name":"Last-Modified","value":"Tue, 03 Jul 2012 18:45:18 GMT"},{"name":"ETag","value":"\"6883b757d4b1a38d9f16b0a724ab208e\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/jpeg"},{"name":"Content-Length","value":"916044"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=604800"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 23 Aug 2012 18:28:37 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/jpeg"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":133,"receive":8828}},{"pageref":"page_3_0","startedDateTime":"2012-08-16T18:28:37.037+00:00","time":770,"request":{"method":"GET","url":"https://si0.twimg.com/a/1345133470/t1/img/wash-white-30.png","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"PFDD6lGbbBN8+gH2sMpnliksoIUhfjlUM9mZKggE2bF9ZtN21zxiMfj+Ibksdm4F"},{"name":"x-amz-request-id","value":"8A67F9C4834A8872"},{"name":"Date","value":"Thu, 16 Aug 2012 18:28:37 GMT"},{"name":"Last-Modified","value":"Thu, 16 Aug 2012 16:15:39 GMT"},{"name":"ETag","value":"\"bc953c554d5f0ab6402865969e7244b4\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/png"},{"name":"Content-Length","value":"940"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=604800"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 23 Aug 2012 18:28:37 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/png"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":253,"ssl":132,"send":0,"wait":517,"receive":0}},{"pageref":"page_3_0","startedDateTime":"2012-08-16T18:28:37.130+00:00","time":653,"request":{"method":"GET","url":"https://api.twitter.com/receiver.html","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"api.twitter.com"},{"name":"Accept","value":"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"},{"name":"Referer","value":"https://twitter.com/"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"max-age=300"},{"name":"content-encoding","value":"gzip"},{"name":"content-type","value":"text/html; charset=UTF-8"},{"name":"date","value":"Thu, 16 Aug 2012 18:28:37 GMT"},{"name":"expires","value":"Thu, 16 Aug 2012 18:33:37 GMT"},{"name":"last-modified","value":"Wed, 15 Aug 2012 21:05:50 GMT"},{"name":"server","value":"tfe"},{"name":"status","value":"200 OK"},{"name":"vary","value":"Accept-Encoding"},{"name":"version","value":"HTTP/1.1"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"text/html"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":278,"ssl":219,"send":0,"wait":367,"receive":8}},{"pageref":"page_3_0","startedDateTime":"2012-08-16T18:28:37.145+00:00","time":2867,"request":{"method":"GET","url":"https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"0vpG/0wtJEp7TOqdtyiR/AYji7s/2lD7r3rbMX/0Dp4pD1I9sUYM5mHLIsmf6o1x"},{"name":"x-amz-request-id","value":"A54095D1E835D86D"},{"name":"Date","value":"Thu, 16 Aug 2012 18:28:37 GMT"},{"name":"Last-Modified","value":"Thu, 16 Aug 2012 00:09:08 GMT"},{"name":"ETag","value":"\"4b3ce8775717a723bf0673ba11e197fb\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"application/javascript"},{"name":"Server","value":"AmazonS3"},{"name":"Content-Encoding","value":"gzip"},{"name":"Vary","value":"Accept-Encoding"},{"name":"Content-Length","value":"179563"},{"name":"Cache-Control","value":"private, max-age=31449600"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 15 Aug 2013 18:28:37 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"application/javascript"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":115,"ssl":-1,"send":0,"wait":365,"receive":2387}},{"pageref":"page_3_0","startedDateTime":"2012-08-16T18:28:40.155+00:00","time":755,"request":{"method":"GET","url":"https://api.twitter.com/1/saved_searches.json","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"api.twitter.com"},{"name":"Accept","value":"application/json, text/javascript, */*; q=0.01"},{"name":"Referer","value":"https://api.twitter.com/receiver.html"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"X-PHX","value":"true"},{"name":"X-Requested-With","value":"XMLHttpRequest"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"no-cache, no-store, must-revalidate, pre-check=0, post-check=0"},{"name":"content-encoding","value":"gzip"},{"name":"content-length","value":"22"},{"name":"content-type","value":"application/json; charset=utf-8"},{"name":"date","value":"Thu, 16 Aug 2012 18:28:40 GMT"},{"name":"etag","value":"\"d751713988987e9331980363e24189ce\""},{"name":"expires","value":"Tue, 31 Mar 1981 05:00:00 GMT"},{"name":"last-modified","value":"Thu, 16 Aug 2012 18:28:40 GMT"},{"name":"pragma","value":"no-cache"},{"name":"server","value":"tfe"},{"name":"set-cookie","value":"original_referer=padhuUp37zigs9eJTisr5PnVtwPa2Ks3aYGytRQKC2hhgexXtH6h6g%3D%3D; path=/"},{"name":"set-cookie","value":"dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:40 GMT"},{"name":"set-cookie","value":"pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"},{"name":"set-cookie","value":"lang=pt; path=/"},{"name":"set-cookie","value":"_twitter_sess=BAh7DyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo%250ASGFzaHsABjoKQHVzZWR7ADoPY3JlYXRlZF9hdGwrCAKOsTA5AToTcGFzc3dv%250AcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdk%250ANWQ4OWI6EHN0YXlfc2VjdXJlVDoMY3NyZl9pZCIlYjkyZjA3NWYzOGU2NDEy%250AZjU1MjBkNmU3YmNkMDk1ZTk6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6E3Nob3df%250AaGVscF9saW5rMDoJdXNlcmkEZc%252FoFzoHaWQiJWRlN2RjZjIzOWJkNzBhODAx%250AMGFlNmY2NTk2MTI0MGFmOhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--178c6b7df4eebd9a16cbeb02ec4d569281c07623; domain=.twitter.com; path=/; secure; HttpOnly"},{"name":"status","value":"200 OK"},{"name":"vary","value":"Accept-Encoding"},{"name":"version","value":"HTTP/1.1"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-mid","value":"1c1c92987d53f7775504bc1d656b8864f96829d0"},{"name":"x-ratelimit-class","value":"api"},{"name":"x-ratelimit-limit","value":"150"},{"name":"x-ratelimit-remaining","value":"150"},{"name":"x-ratelimit-reset","value":"1345141872"},{"name":"x-runtime","value":"0.01779"},{"name":"x-transaction","value":"81dc4edca210470c"},{"name":"x-transaction-mask","value":"a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"application/json"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":755,"receive":0}},{"pageref":"page_3_0","startedDateTime":"2012-08-16T18:28:40.918+00:00","time":175,"request":{"method":"GET","url":"https://si0.twimg.com/a/1345133470/t1/img/loader.gif","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"51RcqEB8zjhSx8FJnPr3ZlHR2hZg4JEw7Z8Jn7Rd9VzS6INKwP8vyXPXBCrpKMVy"},{"name":"x-amz-request-id","value":"182C1108AD43EB11"},{"name":"Date","value":"Thu, 16 Aug 2012 18:28:41 GMT"},{"name":"Last-Modified","value":"Thu, 16 Aug 2012 16:15:40 GMT"},{"name":"ETag","value":"\"faf550cb80c83c14e5176f61e1bb6239\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/gif"},{"name":"Content-Length","value":"4178"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=31449600"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 15 Aug 2013 18:28:41 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/gif"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":155,"receive":20}},{"pageref":"page_3_0","startedDateTime":"2012-08-16T18:28:40.941+00:00","time":4399,"request":{"method":"GET","url":"https://si0.twimg.com/c/phoenix/pt/bundle/t1-more.7cc751ba2c21e9a6c6b2303739b6c255dbd458a7.js","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"TXbWBH9+gUFymJhD1NMd3fcCy07rk/qzxY1DfKBoXm8IASOjcijGeNv83cLVIpa1"},{"name":"x-amz-request-id","value":"179190B3D40BA2F4"},{"name":"Date","value":"Thu, 16 Aug 2012 18:28:41 GMT"},{"name":"Last-Modified","value":"Thu, 16 Aug 2012 00:09:06 GMT"},{"name":"ETag","value":"\"ae65bec57dbceda1ae68d40c43ba1a99\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"application/javascript"},{"name":"Server","value":"AmazonS3"},{"name":"Content-Encoding","value":"gzip"},{"name":"Vary","value":"Accept-Encoding"},{"name":"Content-Length","value":"388038"},{"name":"Cache-Control","value":"private, max-age=31449600"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 15 Aug 2013 18:28:41 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"application/javascript"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":167,"receive":4232}},{"pageref":"page_3_0","startedDateTime":"2012-08-16T18:28:45.568+00:00","time":456,"request":{"method":"GET","url":"https://si0.twimg.com/a/1345133470/t1/css/t1_more.bundle.css","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"text/css,*/*;q=0.1"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"WeesZkhxFaLfaTUc5LfTFkKlsTZr33TONDtAMU2omKh8L9sP0mLFiFf9n+YvVXpp"},{"name":"x-amz-request-id","value":"C23C30A35C9BCDE3"},{"name":"Date","value":"Thu, 16 Aug 2012 18:28:45 GMT"},{"name":"Last-Modified","value":"Thu, 16 Aug 2012 16:15:40 GMT"},{"name":"ETag","value":"\"3f3602e820e9ee9471e24f73c15a9a8d\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"text/css"},{"name":"Server","value":"AmazonS3"},{"name":"Content-Encoding","value":"gzip"},{"name":"Vary","value":"Accept-Encoding"},{"name":"Content-Length","value":"32957"},{"name":"Cache-Control","value":"private, max-age=31449600"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 15 Aug 2013 18:28:45 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"text/css"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":143,"receive":313}},{"pageref":"page_3_0","startedDateTime":"2012-08-16T18:28:46.274+00:00","time":204,"request":{"method":"GET","url":"https://api.twitter.com/1/direct_messages.json?count=50&include_entities=true","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"api.twitter.com"},{"name":"Accept","value":"application/json, text/javascript, */*; q=0.01"},{"name":"Referer","value":"https://api.twitter.com/receiver.html"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"X-PHX","value":"true"},{"name":"X-Requested-With","value":"XMLHttpRequest"}],"httpVersion":"1.1","queryString":[{"name":"count","value":"50"},{"name":"include_entities","value":"true"}]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"no-cache, no-store, must-revalidate, pre-check=0, post-check=0"},{"name":"content-encoding","value":"gzip"},{"name":"content-length","value":"928"},{"name":"content-type","value":"application/json; charset=utf-8"},{"name":"date","value":"Thu, 16 Aug 2012 18:28:46 GMT"},{"name":"etag","value":"\"609b75034f913260b2698796fd053f97\""},{"name":"expires","value":"Tue, 31 Mar 1981 05:00:00 GMT"},{"name":"last-modified","value":"Thu, 16 Aug 2012 18:28:46 GMT"},{"name":"pragma","value":"no-cache"},{"name":"server","value":"tfe"},{"name":"set-cookie","value":"dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:46 GMT"},{"name":"set-cookie","value":"pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"},{"name":"set-cookie","value":"_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCAKOsTA5AToMY3NyZl9pZCIlYjkyZjA3NWYz%250AOGU2NDEyZjU1MjBkNmU3YmNkMDk1ZTk6EHN0YXlfc2VjdXJlVDoTcGFzc3dv%250AcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdk%250ANWQ4OWI6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFk%250AMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWIiCmZsYXNoSUM6J0FjdGlvbkNv%250AbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhhc2h7AAY6CkB1c2VkewA6CXVzZXJp%250ABGXP6Bc6B2lkIiVkZTdkY2YyMzliZDcwYTgwMTBhZTZmNjU5NjEyNDBhZjoV%250AaW5fbmV3X3VzZXJfZmxvdzA6E3Nob3dfaGVscF9saW5rMA%253D%253D--9dbc30cf2870210000beb7cf8fdfd2dd147aac19; domain=.twitter.com; path=/; secure; HttpOnly"},{"name":"status","value":"200 OK"},{"name":"vary","value":"Accept-Encoding"},{"name":"version","value":"HTTP/1.1"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-mid","value":"a52ca8be68917213518d46a149a0ed9a48271226"},{"name":"x-ratelimit-class","value":"api"},{"name":"x-ratelimit-limit","value":"150"},{"name":"x-ratelimit-remaining","value":"150"},{"name":"x-ratelimit-reset","value":"1345141872"},{"name":"x-runtime","value":"0.02403"},{"name":"x-transaction","value":"8adcd86e0cfb4972"},{"name":"x-transaction-mask","value":"a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"application/json"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":204,"receive":0}},{"pageref":"page_3_0","startedDateTime":"2012-08-16T18:28:46.276+00:00","time":211,"request":{"method":"GET","url":"https://api.twitter.com/1/direct_messages/sent.json?count=50&include_entities=true","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"api.twitter.com"},{"name":"Accept","value":"application/json, text/javascript, */*; q=0.01"},{"name":"Referer","value":"https://api.twitter.com/receiver.html"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"X-PHX","value":"true"},{"name":"X-Requested-With","value":"XMLHttpRequest"}],"httpVersion":"1.1","queryString":[{"name":"count","value":"50"},{"name":"include_entities","value":"true"}]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"no-cache, no-store, must-revalidate, pre-check=0, post-check=0"},{"name":"content-encoding","value":"gzip"},{"name":"content-length","value":"935"},{"name":"content-type","value":"application/json; charset=utf-8"},{"name":"date","value":"Thu, 16 Aug 2012 18:28:46 GMT"},{"name":"etag","value":"\"f613d3f7346e4c1a034485dc484b4bda\""},{"name":"expires","value":"Tue, 31 Mar 1981 05:00:00 GMT"},{"name":"last-modified","value":"Thu, 16 Aug 2012 18:28:46 GMT"},{"name":"pragma","value":"no-cache"},{"name":"server","value":"tfe"},{"name":"set-cookie","value":"dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:46 GMT"},{"name":"set-cookie","value":"pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"},{"name":"set-cookie","value":"_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCAKOsTA5AToMY3NyZl9pZCIlYjkyZjA3NWYz%250AOGU2NDEyZjU1MjBkNmU3YmNkMDk1ZTk6EHN0YXlfc2VjdXJlVDoTcGFzc3dv%250AcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdk%250ANWQ4OWI6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFk%250AMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6CXVzZXJpBGXP6Bc6E3Nob3df%250AaGVscF9saW5rMCIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6%250AOkZsYXNoSGFzaHsABjoKQHVzZWR7ADoHaWQiJWRlN2RjZjIzOWJkNzBhODAx%250AMGFlNmY2NTk2MTI0MGFmOhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--eab9364845e0dd5afe04624f9dac12ef424fa557; domain=.twitter.com; path=/; secure; HttpOnly"},{"name":"status","value":"200 OK"},{"name":"vary","value":"Accept-Encoding"},{"name":"version","value":"HTTP/1.1"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-mid","value":"9fb05d5634276050a3c5f9663a07b701a7337cdc"},{"name":"x-ratelimit-class","value":"api"},{"name":"x-ratelimit-limit","value":"150"},{"name":"x-ratelimit-remaining","value":"150"},{"name":"x-ratelimit-reset","value":"1345141872"},{"name":"x-runtime","value":"0.02293"},{"name":"x-transaction","value":"bcf94df5ec1c3471"},{"name":"x-transaction-mask","value":"a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"application/json"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":211,"receive":0}},{"pageref":"page_3_0","startedDateTime":"2012-08-16T18:28:46.294+00:00","time":191,"request":{"method":"GET","url":"https://api.twitter.com/1/saved_searches.json","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"api.twitter.com"},{"name":"Accept","value":"application/json, text/javascript, */*; q=0.01"},{"name":"Referer","value":"https://api.twitter.com/receiver.html"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"X-PHX","value":"true"},{"name":"X-Requested-With","value":"XMLHttpRequest"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"no-cache, no-store, must-revalidate, pre-check=0, post-check=0"},{"name":"content-encoding","value":"gzip"},{"name":"content-length","value":"22"},{"name":"content-type","value":"application/json; charset=utf-8"},{"name":"date","value":"Thu, 16 Aug 2012 18:28:46 GMT"},{"name":"etag","value":"\"d751713988987e9331980363e24189ce\""},{"name":"expires","value":"Tue, 31 Mar 1981 05:00:00 GMT"},{"name":"last-modified","value":"Thu, 16 Aug 2012 18:28:46 GMT"},{"name":"pragma","value":"no-cache"},{"name":"server","value":"tfe"},{"name":"set-cookie","value":"dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:46 GMT"},{"name":"set-cookie","value":"pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"},{"name":"set-cookie","value":"_twitter_sess=BAh7DzoTc2hvd19oZWxwX2xpbmswOg9jcmVhdGVkX2F0bCsIAo6xMDkBOgxj%250Ac3JmX2lkIiViOTJmMDc1ZjM4ZTY0MTJmNTUyMGQ2ZTdiY2QwOTVlOToQc3Rh%250AeV9zZWN1cmVUOhNwYXNzd29yZF90b2tlbiItNWMxZTk5ODg2Mzc1MWQxZTJm%250AYzlkYzIyMjA0ZTBkZWRhN2Q1ZDg5YiIKZmxhc2hJQzonQWN0aW9uQ29udHJv%250AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7ADobc2Vzc2lvbl9w%250AYXNzd29yZF90b2tlbiItNWMxZTk5ODg2Mzc1MWQxZTJmYzlkYzIyMjA0ZTBk%250AZWRhN2Q1ZDg5YjoJdXNlcmkEZc%252FoFzoHaWQiJWRlN2RjZjIzOWJkNzBhODAx%250AMGFlNmY2NTk2MTI0MGFmOhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--4c9bca3001bf778b6e58b5ecd91eb3038d821791; domain=.twitter.com; path=/; secure; HttpOnly"},{"name":"status","value":"200 OK"},{"name":"vary","value":"Accept-Encoding"},{"name":"version","value":"HTTP/1.1"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-mid","value":"508aae63770c7690fe64735e5ce41abf820c8d07"},{"name":"x-ratelimit-class","value":"api"},{"name":"x-ratelimit-limit","value":"150"},{"name":"x-ratelimit-remaining","value":"150"},{"name":"x-ratelimit-reset","value":"1345141872"},{"name":"x-runtime","value":"0.01516"},{"name":"x-transaction","value":"7fa82bc0c8f41c0a"},{"name":"x-transaction-mask","value":"a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"application/json"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":191,"receive":0}},{"pageref":"page_3_0","startedDateTime":"2012-08-16T18:28:46.304+00:00","time":1208,"request":{"method":"GET","url":"https://api.twitter.com/i/search/typeahead.json?count=2500&prefetch=true&result_type=users&post_authenticity_token=290d0a6a22bcbf17d50515c92bf65da31a3baa7c","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"api.twitter.com"},{"name":"Accept","value":"application/json, text/javascript, */*; q=0.01"},{"name":"Referer","value":"https://api.twitter.com/receiver.html"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"X-PHX","value":"true"},{"name":"X-Requested-With","value":"XMLHttpRequest"}],"httpVersion":"1.1","queryString":[{"name":"count","value":"2500"},{"name":"prefetch","value":"true"},{"name":"result_type","value":"users"},{"name":"post_authenticity_token","value":"290d0a6a22bcbf17d50515c92bf65da31a3baa7c"}]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"no-cache, no-store, must-revalidate, pre-check=0, post-check=0"},{"name":"content-encoding","value":"gzip"},{"name":"content-length","value":"30925"},{"name":"content-type","value":"application/json;charset=utf-8"},{"name":"date","value":"Thu, 16 Aug 2012 18:28:46 GMT"},{"name":"expires","value":"Tue, 31 Mar 1981 05:00:00 GMT"},{"name":"last-modified","value":"Thu, 16 Aug 2012 18:28:46 GMT"},{"name":"pragma","value":"no-cache"},{"name":"server","value":"tfe"},{"name":"status","value":"200 OK"},{"name":"version","value":"HTTP/1.1"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-ratelimit-class","value":"api"},{"name":"x-ratelimit-limit","value":"150"},{"name":"x-ratelimit-remaining","value":"150"},{"name":"x-ratelimit-reset","value":"1345141872"},{"name":"x-transaction","value":"9669306ec962aa34"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"application/json"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":568,"receive":640}},{"pageref":"page_3_0","startedDateTime":"2012-08-16T18:28:46.313+00:00","time":271,"request":{"method":"GET","url":"https://api.twitter.com/1/trends/available.json?lang=pt","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"api.twitter.com"},{"name":"Accept","value":"application/json, text/javascript, */*; q=0.01"},{"name":"Referer","value":"https://api.twitter.com/receiver.html"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"X-PHX","value":"true"},{"name":"X-Requested-With","value":"XMLHttpRequest"}],"httpVersion":"1.1","queryString":[{"name":"lang","value":"pt"}]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"max-age=2592000, must-revalidate"},{"name":"content-encoding","value":"gzip"},{"name":"content-length","value":"3921"},{"name":"content-type","value":"application/json; charset=utf-8"},{"name":"date","value":"Thu, 16 Aug 2012 18:28:46 GMT"},{"name":"etag","value":"\"e55ff5e38c5365466847a8d39c53e351\""},{"name":"expires","value":"Tue, 31 Mar 1981 05:00:00 GMT"},{"name":"last-modified","value":"Thu, 16 Aug 2012 18:28:46 GMT"},{"name":"pragma","value":"no-cache"},{"name":"server","value":"tfe"},{"name":"set-cookie","value":"dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:46 GMT"},{"name":"set-cookie","value":"pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"},{"name":"set-cookie","value":"_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCAKOsTA5AToMY3NyZl9pZCIlYjkyZjA3NWYz%250AOGU2NDEyZjU1MjBkNmU3YmNkMDk1ZTk6EHN0YXlfc2VjdXJlVDoTcGFzc3dv%250AcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdk%250ANWQ4OWIiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFz%250AaEhhc2h7AAY6CkB1c2VkewA6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6CXVzZXJp%250ABGXP6Bc6E3Nob3dfaGVscF9saW5rMDoHaWQiJWRlN2RjZjIzOWJkNzBhODAx%250AMGFlNmY2NTk2MTI0MGFmOhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--996014e5cdc08f7c5d489243589dda396a324b2c; domain=.twitter.com; path=/; secure; HttpOnly"},{"name":"status","value":"200 OK"},{"name":"vary","value":"Accept-Encoding"},{"name":"version","value":"HTTP/1.1"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-mid","value":"f10e13d9c139f8e37ca537e8f9b8d9eca30830c5"},{"name":"x-ratelimit-class","value":"api"},{"name":"x-ratelimit-limit","value":"150"},{"name":"x-ratelimit-remaining","value":"150"},{"name":"x-ratelimit-reset","value":"1345141872"},{"name":"x-runtime","value":"0.15230"},{"name":"x-transaction","value":"b61f832ddfa6a903"},{"name":"x-transaction-mask","value":"a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"application/json"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":265,"receive":6}},{"pageref":"page_3_0","startedDateTime":"2012-08-16T18:28:46.330+00:00","time":153,"request":{"method":"GET","url":"https://twitter.com/images/spinner.gif","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"twitter.com"},{"name":"Referer","value":"https://twitter.com/"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"accept-ranges","value":"bytes"},{"name":"cache-control","value":"max-age=315360000"},{"name":"content-length","value":"457"},{"name":"content-type","value":"image/gif"},{"name":"date","value":"Thu, 16 Aug 2012 18:28:46 GMT"},{"name":"expires","value":"Sun, 14 Aug 2022 18:28:46 GMT"},{"name":"last-modified","value":"Wed, 15 Aug 2012 21:05:49 GMT"},{"name":"server","value":"tfe"},{"name":"status","value":"200 OK"},{"name":"version","value":"HTTP/1.1"},{"name":"x-xss-protection","value":"1; mode=block"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/gif"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":153,"receive":0}},{"pageref":"page_3_0","startedDateTime":"2012-08-16T18:28:46.372+00:00","time":148,"request":{"method":"GET","url":"https://api.twitter.com/1/users/recommendations.json?limit=3&excluded=&display_location=wtf-component&pc=true&connections=true&algorithm=null&force_new_signup=false","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"api.twitter.com"},{"name":"Accept","value":"application/json, text/javascript, */*; q=0.01"},{"name":"Referer","value":"https://api.twitter.com/receiver.html"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"X-PHX","value":"true"},{"name":"X-Requested-With","value":"XMLHttpRequest"}],"httpVersion":"1.1","queryString":[{"name":"limit","value":"3"},{"name":"excluded","value":""},{"name":"display_location","value":"wtf-component"},{"name":"pc","value":"true"},{"name":"connections","value":"true"},{"name":"algorithm","value":"null"},{"name":"force_new_signup","value":"false"}]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"private, max-age=120"},{"name":"content-encoding","value":"gzip"},{"name":"content-length","value":"2058"},{"name":"content-type","value":"application/json; charset=utf-8"},{"name":"date","value":"Thu, 16 Aug 2012 18:28:46 GMT"},{"name":"etag","value":"\"9b4d756cc98475e8e6b89b36bc1d0484\""},{"name":"expires","value":"Thu, 16 Aug 2012 18:30:46 GMT"},{"name":"last-modified","value":"Thu, 16 Aug 2012 18:26:46 GMT"},{"name":"server","value":"tfe"},{"name":"set-cookie","value":"dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:46 GMT"},{"name":"set-cookie","value":"pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"},{"name":"set-cookie","value":"_twitter_sess=BAh7DyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo%250ASGFzaHsABjoKQHVzZWR7ADoPY3JlYXRlZF9hdGwrCAKOsTA5AToTcGFzc3dv%250AcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdk%250ANWQ4OWI6EHN0YXlfc2VjdXJlVDoMY3NyZl9pZCIlYjkyZjA3NWYzOGU2NDEy%250AZjU1MjBkNmU3YmNkMDk1ZTk6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6E3Nob3df%250AaGVscF9saW5rMDoJdXNlcmkEZc%252FoFzoHaWQiJWRlN2RjZjIzOWJkNzBhODAx%250AMGFlNmY2NTk2MTI0MGFmOhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--178c6b7df4eebd9a16cbeb02ec4d569281c07623; domain=.twitter.com; path=/; secure; HttpOnly"},{"name":"status","value":"200 OK"},{"name":"vary","value":"Accept-Encoding"},{"name":"version","value":"HTTP/1.1"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-mid","value":"8724a53eb6dbb7708ba32cc2a6bf1e05b88d00e1"},{"name":"x-ratelimit-class","value":"api"},{"name":"x-ratelimit-limit","value":"150"},{"name":"x-ratelimit-remaining","value":"150"},{"name":"x-ratelimit-reset","value":"1345141872"},{"name":"x-runtime","value":"0.06623"},{"name":"x-transaction","value":"852f3d82a404926a"},{"name":"x-transaction-mask","value":"a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"application/json"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":143,"receive":5}},{"pageref":"page_3_0","startedDateTime":"2012-08-16T18:28:46.397+00:00","time":203,"request":{"method":"GET","url":"https://api.twitter.com/1/users/recommendations.json?limit=3&excluded=&display_location=wtf-component&pc=true&connections=true&algorithm=null&force_new_signup=true","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"api.twitter.com"},{"name":"Accept","value":"application/json, text/javascript, */*; q=0.01"},{"name":"Referer","value":"https://api.twitter.com/receiver.html"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"X-PHX","value":"true"},{"name":"X-Requested-With","value":"XMLHttpRequest"}],"httpVersion":"1.1","queryString":[{"name":"limit","value":"3"},{"name":"excluded","value":""},{"name":"display_location","value":"wtf-component"},{"name":"pc","value":"true"},{"name":"connections","value":"true"},{"name":"algorithm","value":"null"},{"name":"force_new_signup","value":"true"}]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"private, max-age=120"},{"name":"content-encoding","value":"gzip"},{"name":"content-length","value":"2085"},{"name":"content-type","value":"application/json; charset=utf-8"},{"name":"date","value":"Thu, 16 Aug 2012 18:28:46 GMT"},{"name":"etag","value":"\"621c42945babaf2036d8ceff7a1d776e\""},{"name":"expires","value":"Thu, 16 Aug 2012 18:30:46 GMT"},{"name":"last-modified","value":"Thu, 16 Aug 2012 18:26:46 GMT"},{"name":"server","value":"tfe"},{"name":"set-cookie","value":"dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:46 GMT"},{"name":"set-cookie","value":"pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"},{"name":"set-cookie","value":"_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCAKOsTA5AToTcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6EHN0YXlf%250Ac2VjdXJlVDoMY3NyZl9pZCIlYjkyZjA3NWYzOGU2NDEyZjU1MjBkNmU3YmNk%250AMDk1ZTk6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFk%250AMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWIiCmZsYXNoSUM6J0FjdGlvbkNv%250AbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhhc2h7AAY6CkB1c2VkewA6CXVzZXJp%250ABGXP6Bc6E3Nob3dfaGVscF9saW5rMDoHaWQiJWRlN2RjZjIzOWJkNzBhODAx%250AMGFlNmY2NTk2MTI0MGFmOhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--d8fb82a051656e842b48715f1c6a3e740def6674; domain=.twitter.com; path=/; secure; HttpOnly"},{"name":"status","value":"200 OK"},{"name":"vary","value":"Accept-Encoding"},{"name":"version","value":"HTTP/1.1"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-mid","value":"2deabd0717180d49dc30aeae1b2c602b4c0184c2"},{"name":"x-ratelimit-class","value":"api"},{"name":"x-ratelimit-limit","value":"150"},{"name":"x-ratelimit-remaining","value":"150"},{"name":"x-ratelimit-reset","value":"1345141872"},{"name":"x-runtime","value":"0.08615"},{"name":"x-transaction","value":"a7d51aad8389eefe"},{"name":"x-transaction-mask","value":"a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"application/json"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":195,"receive":8}},{"pageref":"page_3_0","startedDateTime":"2012-08-16T18:28:46.476+00:00","time":983,"request":{"method":"GET","url":"https://ssl.google-analytics.com/ga.js","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"ssl.google-analytics.com"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"age","value":"36182"},{"name":"cache-control","value":"max-age=43200, public"},{"name":"content-encoding","value":"gzip"},{"name":"content-length","value":"14688"},{"name":"content-type","value":"text/javascript"},{"name":"date","value":"Thu, 16 Aug 2012 08:25:44 GMT"},{"name":"expires","value":"Thu, 16 Aug 2012 20:25:44 GMT"},{"name":"last-modified","value":"Wed, 18 Jul 2012 18:52:25 GMT"},{"name":"server","value":"GFE/2.0"},{"name":"status","value":"200 OK"},{"name":"vary","value":"Accept-Encoding"},{"name":"version","value":"HTTP/1.1"},{"name":"x-content-type-options","value":"nosniff"},{"name":"x-content-type-options","value":"nosniff"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"text/javascript"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":238,"ssl":94,"send":0,"wait":346,"receive":399}},{"pageref":"page_3_0","startedDateTime":"2012-08-16T18:28:46.545+00:00","time":638,"request":{"method":"GET","url":"https://si0.twimg.com/profile_images/1583722973/tweter_normal.jpg","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"LSVtZu2wpDiFu4d+vapaVvPN8dRwUWJ43mojC0K7mTmHykIPBnV5GNuX//SsN1N0"},{"name":"x-amz-request-id","value":"2D2EACE842AD2DBA"},{"name":"Date","value":"Thu, 16 Aug 2012 18:28:46 GMT"},{"name":"Last-Modified","value":"Tue, 11 Oct 2011 19:50:44 GMT"},{"name":"ETag","value":"\"d66538ca9a2d928cbf9aa07d8985726d\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/jpeg"},{"name":"Content-Length","value":"21376"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=604800"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 23 Aug 2012 18:28:46 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/jpeg"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":176,"receive":462}},{"pageref":"page_3_0","startedDateTime":"2012-08-16T18:28:46.547+00:00","time":172,"request":{"method":"GET","url":"https://si0.twimg.com/profile_images/1409530731/bbm__1308837078033_normal.tmp","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"ZjRboMg0IX6RiflM4H0c93YnwzkE3bB8Tup39HHCl05T5tbj450L/qZI01RN4SzD"},{"name":"x-amz-request-id","value":"C9816E53EA95585A"},{"name":"Date","value":"Thu, 16 Aug 2012 18:28:46 GMT"},{"name":"Last-Modified","value":"Thu, 23 Jun 2011 14:37:42 GMT"},{"name":"ETag","value":"\"82ea7702bcbd6e72ca978ecbd1befc8c\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/jpeg"},{"name":"Content-Length","value":"975"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=31449600"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 15 Aug 2013 18:28:46 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/jpeg"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":172,"receive":0}},{"pageref":"page_3_0","startedDateTime":"2012-08-16T18:28:46.549+00:00","time":166,"request":{"method":"GET","url":"https://si0.twimg.com/profile_images/1804574712/88229773-40dd-4d69-b666-cab3c1303e60_normal.png","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"toQVle8h7O9rj+Ja0HZLDX8RbhC79XBO1nwgryymeq33QKxBi98gnhCFEwODbXfo"},{"name":"x-amz-request-id","value":"645916EA7083539C"},{"name":"Date","value":"Thu, 16 Aug 2012 18:28:46 GMT"},{"name":"Last-Modified","value":"Sat, 04 Feb 2012 23:11:17 GMT"},{"name":"ETag","value":"\"934663fa51404d3724fdc3930584b5e5\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/png"},{"name":"Content-Length","value":"6257"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=604800"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 23 Aug 2012 18:28:46 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/png"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":130,"receive":36}},{"pageref":"page_3_0","startedDateTime":"2012-08-16T18:28:46.593+00:00","time":158,"request":{"method":"GET","url":"https://api.twitter.com/1/trends/1.json?pc=true&post_authenticity_token=290d0a6a22bcbf17d50515c92bf65da31a3baa7c","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"api.twitter.com"},{"name":"Accept","value":"application/json, text/javascript, */*; q=0.01"},{"name":"Referer","value":"https://api.twitter.com/receiver.html"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"X-PHX","value":"true"},{"name":"X-Requested-With","value":"XMLHttpRequest"}],"httpVersion":"1.1","queryString":[{"name":"pc","value":"true"},{"name":"post_authenticity_token","value":"290d0a6a22bcbf17d50515c92bf65da31a3baa7c"}]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"max-age=300, must-revalidate"},{"name":"content-encoding","value":"gzip"},{"name":"content-length","value":"557"},{"name":"content-type","value":"application/json; charset=utf-8"},{"name":"date","value":"Thu, 16 Aug 2012 18:28:46 GMT"},{"name":"etag","value":"\"006fff0db1394683b48e81ab09fcaccf\""},{"name":"expires","value":"Tue, 31 Mar 1981 05:00:00 GMT"},{"name":"last-modified","value":"Thu, 16 Aug 2012 18:28:46 GMT"},{"name":"pragma","value":"no-cache"},{"name":"server","value":"tfe"},{"name":"set-cookie","value":"dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:46 GMT"},{"name":"set-cookie","value":"pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"},{"name":"set-cookie","value":"_twitter_sess=BAh7DzoTc2hvd19oZWxwX2xpbmswOg9jcmVhdGVkX2F0bCsIAo6xMDkBOgxj%250Ac3JmX2lkIiViOTJmMDc1ZjM4ZTY0MTJmNTUyMGQ2ZTdiY2QwOTVlOToQc3Rh%250AeV9zZWN1cmVUOhNwYXNzd29yZF90b2tlbiItNWMxZTk5ODg2Mzc1MWQxZTJm%250AYzlkYzIyMjA0ZTBkZWRhN2Q1ZDg5Yjobc2Vzc2lvbl9wYXNzd29yZF90b2tl%250AbiItNWMxZTk5ODg2Mzc1MWQxZTJmYzlkYzIyMjA0ZTBkZWRhN2Q1ZDg5YjoJ%250AdXNlcmkEZc%252FoFyIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6%250AOkZsYXNoSGFzaHsABjoKQHVzZWR7ADoHaWQiJWRlN2RjZjIzOWJkNzBhODAx%250AMGFlNmY2NTk2MTI0MGFmOhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--af18829a8203a32ea841d0936b2693a632ca5748; domain=.twitter.com; path=/; secure; HttpOnly"},{"name":"status","value":"200 OK"},{"name":"vary","value":"Accept-Encoding"},{"name":"version","value":"HTTP/1.1"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-mid","value":"24984851311e6646dcc83c632cd7bbdb4f09072f"},{"name":"x-ratelimit-class","value":"api"},{"name":"x-ratelimit-limit","value":"150"},{"name":"x-ratelimit-remaining","value":"150"},{"name":"x-ratelimit-reset","value":"1345141872"},{"name":"x-runtime","value":"0.07085"},{"name":"x-transaction","value":"fc5ab920cfbbb309"},{"name":"x-transaction-mask","value":"a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"application/json"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":158,"receive":0}},{"pageref":"page_3_0","startedDateTime":"2012-08-16T18:28:46.621+00:00","time":341,"request":{"method":"GET","url":"https://si0.twimg.com/profile_images/2437279640/2cali45t0152zzmbrpwd_reasonably_small.jpeg","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"w+pJVvqPfG5arOaIC1Kn+adZZH7TM37Te65QYuVsJTx02ZNSEifu+hITk/o5+CPd"},{"name":"x-amz-request-id","value":"EF7806C91232FCDF"},{"name":"Date","value":"Thu, 16 Aug 2012 18:28:46 GMT"},{"name":"Last-Modified","value":"Fri, 27 Jul 2012 05:03:37 GMT"},{"name":"ETag","value":"\"60bac19c857d37fc9ec1553f7fb71b1d\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/jpeg"},{"name":"Content-Length","value":"7327"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=604800"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 23 Aug 2012 18:28:46 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/jpeg"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":239,"receive":102}},{"pageref":"page_3_0","startedDateTime":"2012-08-16T18:28:46.621+00:00","time":952,"request":{"method":"GET","url":"https://si0.twimg.com/profile_images/1863133962/HAMAD_ALMAJED_SYR_reasonably_small.jpg","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"UXwyO9Dmtzs0OEVN5hTuVVpa/r6pPVpohCdrI3WwqjVxt55JKY8aGnw2ANNeTj3P"},{"name":"x-amz-request-id","value":"3ABBCB82AB9EEE9D"},{"name":"Date","value":"Thu, 16 Aug 2012 18:28:46 GMT"},{"name":"Last-Modified","value":"Wed, 29 Feb 2012 20:39:05 GMT"},{"name":"ETag","value":"\"20acd30dcc713773547885550ad42399\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/jpeg"},{"name":"Content-Length","value":"40333"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=604800"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 23 Aug 2012 18:28:46 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/jpeg"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":219,"receive":733}},{"pageref":"page_3_0","startedDateTime":"2012-08-16T18:28:46.621+00:00","time":187,"request":{"method":"GET","url":"https://api.twitter.com/1/statuses/friends.json?cursor=-1&user_id=401133413","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"api.twitter.com"},{"name":"Accept","value":"application/json, text/javascript, */*; q=0.01"},{"name":"Referer","value":"https://api.twitter.com/receiver.html"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"X-PHX","value":"true"},{"name":"X-Requested-With","value":"XMLHttpRequest"}],"httpVersion":"1.1","queryString":[{"name":"cursor","value":"-1"},{"name":"user_id","value":"401133413"}]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"no-cache, no-store, must-revalidate, pre-check=0, post-check=0"},{"name":"content-encoding","value":"gzip"},{"name":"content-length","value":"1562"},{"name":"content-type","value":"application/json; charset=utf-8"},{"name":"date","value":"Thu, 16 Aug 2012 18:28:46 GMT"},{"name":"etag","value":"\"bf03d4de0580babb935eb4e1a6f676e7\""},{"name":"expires","value":"Tue, 31 Mar 1981 05:00:00 GMT"},{"name":"last-modified","value":"Thu, 16 Aug 2012 18:28:46 GMT"},{"name":"pragma","value":"no-cache"},{"name":"server","value":"tfe"},{"name":"set-cookie","value":"dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:46 GMT"},{"name":"set-cookie","value":"pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"},{"name":"set-cookie","value":"_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCAKOsTA5AToMY3NyZl9pZCIlYjkyZjA3NWYz%250AOGU2NDEyZjU1MjBkNmU3YmNkMDk1ZTk6EHN0YXlfc2VjdXJlVDoTcGFzc3dv%250AcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdk%250ANWQ4OWIiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFz%250AaEhhc2h7AAY6CkB1c2VkewA6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6E3Nob3df%250AaGVscF9saW5rMDoJdXNlcmkEZc%252FoFzoHaWQiJWRlN2RjZjIzOWJkNzBhODAx%250AMGFlNmY2NTk2MTI0MGFmOhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--13fd29c2716e4b61ee2344a90b90705387d775a5; domain=.twitter.com; path=/; secure; HttpOnly"},{"name":"status","value":"200 OK"},{"name":"vary","value":"Accept-Encoding"},{"name":"version","value":"HTTP/1.1"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-mid","value":"20629a234103bb13832bc5f40f67d5278c57964d"},{"name":"x-ratelimit-class","value":"api"},{"name":"x-ratelimit-limit","value":"150"},{"name":"x-ratelimit-remaining","value":"150"},{"name":"x-ratelimit-reset","value":"1345141872"},{"name":"x-runtime","value":"0.04278"},{"name":"x-transaction","value":"af8939897115af8e"},{"name":"x-transaction-mask","value":"a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"application/json"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":156,"receive":31}},{"pageref":"page_3_0","startedDateTime":"2012-08-16T18:28:46.623+00:00","time":904,"request":{"method":"GET","url":"https://si0.twimg.com/profile_images/2384068128/zgvcaz8zn5k474o1kin2_reasonably_small.png","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"si0.twimg.com"},{"name":"Connection","value":"keep-alive"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"Accept","value":"*/*"},{"name":"Referer","value":"https://twitter.com/"},{"name":"Accept-Encoding","value":"gzip,deflate,sdch"},{"name":"Accept-Language","value":"en-US,en;q=0.8"},{"name":"Accept-Charset","value":"ISO-8859-1,utf-8;q=0.7,*;q=0.3"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"x-amz-id-2","value":"v5JyqLnoVN2pYTf14XkJZ8gH2zQV4Lpb+KccRYt7UQONiO2FbvfPi9Pw0v50yh6U"},{"name":"x-amz-request-id","value":"BE70C09E80A78287"},{"name":"Date","value":"Thu, 16 Aug 2012 18:28:46 GMT"},{"name":"Last-Modified","value":"Tue, 10 Jul 2012 04:23:31 GMT"},{"name":"ETag","value":"\"fad5242dd37c997ed97e4637b2d36be3\""},{"name":"Accept-Ranges","value":"bytes"},{"name":"Content-Type","value":"image/png"},{"name":"Content-Length","value":"36049"},{"name":"Server","value":"AmazonS3"},{"name":"Cache-Control","value":"private, max-age=604800"},{"name":"Age","value":"0"},{"name":"Expires","value":"Thu, 23 Aug 2012 18:28:46 GMT"},{"name":"Connection","value":"Keep-Alive"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/png"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":220,"receive":684}},{"pageref":"page_3_0","startedDateTime":"2012-08-16T18:28:46.782+00:00","time":744,"request":{"method":"GET","url":"https://api.twitter.com/1/promoted_content/i/log.png?promoted_trend_id=5288","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"api.twitter.com"},{"name":"Referer","value":"https://twitter.com/"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"}],"httpVersion":"1.1","queryString":[{"name":"promoted_trend_id","value":"5288"}]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"no-cache, no-store, must-revalidate, pre-check=0, post-check=0"},{"name":"content-length","value":"1"},{"name":"content-transfer-encoding","value":"binary"},{"name":"content-type","value":"image/png"},{"name":"date","value":"Thu, 16 Aug 2012 18:28:46 GMT"},{"name":"etag","value":"\"7215ee9c7d9dc229d2921a40e899ec5f\""},{"name":"expires","value":"Tue, 31 Mar 1981 05:00:00 GMT"},{"name":"last-modified","value":"Thu, 16 Aug 2012 18:28:46 GMT"},{"name":"pragma","value":"no-cache"},{"name":"server","value":"tfe"},{"name":"set-cookie","value":"dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:46 GMT"},{"name":"set-cookie","value":"pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"},{"name":"set-cookie","value":"_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCAKOsTA5AToTcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6EHN0YXlf%250Ac2VjdXJlVDoMY3NyZl9pZCIlYjkyZjA3NWYzOGU2NDEyZjU1MjBkNmU3YmNk%250AMDk1ZTk6E3Nob3dfaGVscF9saW5rMDobc2Vzc2lvbl9wYXNzd29yZF90b2tl%250AbiItNWMxZTk5ODg2Mzc1MWQxZTJmYzlkYzIyMjA0ZTBkZWRhN2Q1ZDg5YiIK%250AZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsA%250ABjoKQHVzZWR7ADoJdXNlcmkEZc%252FoFzoHaWQiJWRlN2RjZjIzOWJkNzBhODAx%250AMGFlNmY2NTk2MTI0MGFmOhVpbl9uZXdfdXNlcl9mbG93MA%253D%253D--78119ba569b876e4267007f1c05f52e8fbec6fb2; domain=.twitter.com; path=/; secure; HttpOnly"},{"name":"status","value":"200 OK"},{"name":"version","value":"HTTP/1.1"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-mid","value":"2bfb7c91d15b57fc4ac3c0d4ed59ba30fc0a34af"},{"name":"x-runtime","value":"0.01699"},{"name":"x-transaction","value":"3ded4dce0ec2d047"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/png"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":744,"receive":0}},{"pageref":"page_3_0","startedDateTime":"2012-08-16T18:28:47.230+00:00","time":72,"request":{"method":"GET","url":"https://ssl.google-analytics.com/__utm.gif?utmwv=5.3.4&utms=2&utmn=279024497&utmhn=twitter.com&utmcs=UTF-8&utmsr=1024x768&utmvp=997x614&utmsc=32-bit&utmul=en-us&utmje=1&utmfl=11.3%20r31&utmdt=Twitter%20%2F%20In%C3%ADcio&utmhid=1688495001&utmr=0&utmp=%2F&utmac=UA-30775-6&utmcc=__utma%3D43838368.854034156.1345141713.1345141713.1345141713.1%3B%2B__utmz%3D43838368.1345141713.1.1.utmcsr%3D(direct)%7Cutmccn%3D(direct)%7Cutmcmd%3D(none)%3B&utmu=q~","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"ssl.google-analytics.com"},{"name":"Referer","value":"https://twitter.com/"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"}],"httpVersion":"1.1","queryString":[{"name":"utmwv","value":"5.3.4"},{"name":"utms","value":"2"},{"name":"utmn","value":"279024497"},{"name":"utmhn","value":"twitter.com"},{"name":"utmcs","value":"UTF-8"},{"name":"utmsr","value":"1024x768"},{"name":"utmvp","value":"997x614"},{"name":"utmsc","value":"32-bit"},{"name":"utmul","value":"en-us"},{"name":"utmje","value":"1"},{"name":"utmfl","value":"11.3 r31"},{"name":"utmdt","value":"Twitter / Início"},{"name":"utmhid","value":"1688495001"},{"name":"utmr","value":"0"},{"name":"utmp","value":"/"},{"name":"utmac","value":"UA-30775-6"},{"name":"utmcc","value":"__utma=43838368.854034156.1345141713.1345141713.1345141713.1;+__utmz=43838368.1345141713.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none);"},{"name":"utmu","value":"q~"}]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"age","value":"1704283"},{"name":"cache-control","value":"private, no-cache, no-cache=Set-Cookie, proxy-revalidate"},{"name":"content-length","value":"35"},{"name":"content-type","value":"image/gif"},{"name":"date","value":"Sat, 28 Jul 2012 01:04:04 GMT"},{"name":"expires","value":"Wed, 19 Apr 2000 11:43:00 GMT"},{"name":"last-modified","value":"Wed, 21 Jan 2004 19:51:30 GMT"},{"name":"pragma","value":"no-cache"},{"name":"server","value":"GFE/2.0"},{"name":"status","value":"200 OK"},{"name":"version","value":"HTTP/1.1"},{"name":"x-content-type-options","value":"nosniff"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"image/gif"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":72,"receive":-1}},{"pageref":"page_3_0","startedDateTime":"2012-08-16T18:28:47.515+00:00","time":95,"request":{"method":"GET","url":"https://api.twitter.com/1/blocks/blocking.json","headersSize":-1,"bodySize":-1,"cookies":[],"headers":[{"name":"Host","value":"api.twitter.com"},{"name":"Accept","value":"application/json, text/javascript, */*; q=0.01"},{"name":"Referer","value":"https://api.twitter.com/receiver.html"},{"name":"User-Agent","value":"Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.79 Safari/537.1"},{"name":"X-PHX","value":"true"},{"name":"X-Requested-With","value":"XMLHttpRequest"}],"httpVersion":"1.1","queryString":[]},"response":{"status":200,"statusText":"","headersSize":-1,"bodySize":0,"headers":[{"name":"cache-control","value":"no-cache, no-store, must-revalidate, pre-check=0, post-check=0"},{"name":"content-encoding","value":"gzip"},{"name":"content-length","value":"22"},{"name":"content-type","value":"application/json; charset=utf-8"},{"name":"date","value":"Thu, 16 Aug 2012 18:28:47 GMT"},{"name":"etag","value":"\"d751713988987e9331980363e24189ce\""},{"name":"expires","value":"Tue, 31 Mar 1981 05:00:00 GMT"},{"name":"last-modified","value":"Thu, 16 Aug 2012 18:28:47 GMT"},{"name":"pragma","value":"no-cache"},{"name":"server","value":"tfe"},{"name":"set-cookie","value":"dnt=1; domain=.twitter.com; path=/; expires=Wed, 17-Aug-2022 06:28:47 GMT"},{"name":"set-cookie","value":"pid=; domain=.twitter.com; path=/; expires=Thu, 01-Jan-1970 00:00:00 GMT"},{"name":"set-cookie","value":"_twitter_sess=BAh7DzoPY3JlYXRlZF9hdGwrCAKOsTA5AToTcGFzc3dvcmRfdG9rZW4iLTVj%250AMWU5OTg4NjM3NTFkMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6EHN0YXlf%250Ac2VjdXJlVDoMY3NyZl9pZCIlYjkyZjA3NWYzOGU2NDEyZjU1MjBkNmU3YmNk%250AMDk1ZTk6G3Nlc3Npb25fcGFzc3dvcmRfdG9rZW4iLTVjMWU5OTg4NjM3NTFk%250AMWUyZmM5ZGMyMjIwNGUwZGVkYTdkNWQ4OWI6CXVzZXJpBGXP6Bc6E3Nob3df%250AaGVscF9saW5rMDoHaWQiJWRlN2RjZjIzOWJkNzBhODAxMGFlNmY2NTk2MTI0%250AMGFmOhVpbl9uZXdfdXNlcl9mbG93MCIKZmxhc2hJQzonQWN0aW9uQ29udHJv%250AbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%253D%253D--4f19cb76167df05aba6a19869f549ccba81281ac; domain=.twitter.com; path=/; secure; HttpOnly"},{"name":"status","value":"200 OK"},{"name":"vary","value":"Accept-Encoding"},{"name":"version","value":"HTTP/1.1"},{"name":"x-frame-options","value":"SAMEORIGIN"},{"name":"x-mid","value":"27ed9e9f4ebc9b94880492611648b57cbebfeb3d"},{"name":"x-ratelimit-class","value":"api"},{"name":"x-ratelimit-limit","value":"150"},{"name":"x-ratelimit-remaining","value":"150"},{"name":"x-ratelimit-reset","value":"1345141872"},{"name":"x-runtime","value":"0.01716"},{"name":"x-transaction","value":"d3b1b43adaac50be"},{"name":"x-transaction-mask","value":"a6183ffa5f8ca943ff1b53b5644ef114ea8b2fe3"}],"httpVersion":"1.1","redirectURL":"","content":{"size":0,"mimeType":"application/json"},"cookies":[]},"cache":{},"timings":{"blocked":-1,"dns":-1,"connect":-1,"ssl":-1,"send":0,"wait":95,"receive":0}}]}} \ No newline at end of file diff --git a/test/fixtures/responses/harNotFound.json b/test/fixtures/responses/harNotFound.json deleted file mode 100644 index cba3378..0000000 --- a/test/fixtures/responses/harNotFound.json +++ /dev/null @@ -1 +0,0 @@ -{"log":{"version":"1.1","creator":{"name":"WebPagetest","version":"1.8"},"pages":[],"entries":[]}} \ No newline at end of file diff --git a/test/fixtures/responses/history.csv b/test/fixtures/responses/history.csv deleted file mode 100644 index b9d1c07..0000000 --- a/test/fixtures/responses/history.csv +++ /dev/null @@ -1,11 +0,0 @@ -"Date/Time","Location","Test ID","URL" -"11/28/13 16:24:24","Dublin, Ireland - Chrome - Cable","131128_9N_S23","http://tech.vg.no/" -"11/28/13 16:24:23","Dulles, VA - Chrome - Cable","131128_5W_S28","http://www.bdaygreetings.com" -"11/28/13 16:24:23","Buenos Aires, Argentina - Chrome - Cable","131128_HA_S27","https://buyingflow.mercadolibre.com.ar/?item_id=MLA485711339&quantity=1" -"11/28/13 16:24:19","Dulles, VA - IE 9 - Cable","131128_XC_S26","http://www.pietzoomers.com" -"11/28/13 16:24:19","São Paulo, Brasil - Chrome - Cable","131128_A2_S25","http://www.livrariasaraiva.com.br" -"11/28/13 16:24:17","Buenos Aires, Argentina - IE8 - Cable","131128_NW_S24","http://ti.kwikkiangie.ac.id" -"11/28/13 16:23:11","Madrid, Spain - IE 8 - Cable","131128_CM_S15","https://www.rastreator.com/seguro-coche/datos-comparativa.aspx" -"11/28/13 16:23:04","Dublin, Ireland - Chrome - Cable","131128_H8_S11","http://www.bilgi-sor.com" -"11/28/13 16:22:40","Dulles, VA - IE 9 - Cable","131128_YA_S0S","http://www.debrastefan.com/" -"11/28/13 16:22:35","Dulles, VA - IE 9 - Cable","131128_HS_S0M","http://recreational-looting.herokuapp.com" \ No newline at end of file diff --git a/test/fixtures/responses/locations.xml b/test/fixtures/responses/locations.xml deleted file mode 100644 index 47c7e18..0000000 --- a/test/fixtures/responses/locations.xml +++ /dev/null @@ -1,105 +0,0 @@ - - - -200 -Ok - - -Local_IE7 - -Local_IE7 -IE 7 - - -1 - -0 -0 -0 -0 -0 -0 -0 -0 -0 -0 -0 -0 -0 -1 - - - -Local_Firefox_Chrome:Chrome - -Local_Firefox_Chrome -Chrome - - - -0 -0 -0 -0 -0 -0 -0 -0 -0 -0 -0 -0 -0 -1 - - - -Local_Firefox_Chrome:Firefox - -Local_Firefox_Chrome -Firefox - - - -0 -0 -0 -0 -0 -0 -0 -0 -0 -0 -0 -0 -0 -1 - - - -Local_Firefox_Chrome:Firefox 3.6 - -Local_Firefox_Chrome -Firefox 3.6 - - - -0 -0 -0 -0 -0 -0 -0 -0 -0 -0 -0 -0 -0 -1 - - - - diff --git a/test/fixtures/responses/netLog.txt b/test/fixtures/responses/netLog.txt deleted file mode 100644 index ddfd598..0000000 --- a/test/fixtures/responses/netLog.txt +++ /dev/null @@ -1,3816 +0,0 @@ -{"constants": {"addressFamily":{"ADDRESS_FAMILY_IPV4":1,"ADDRESS_FAMILY_IPV6":2,"ADDRESS_FAMILY_UNSPECIFIED":0},"certStatusFlag":{"AUTHORITY_INVALID":4,"COMMON_NAME_INVALID":1,"DATE_INVALID":2,"INVALID":128,"IS_EV":65536,"NAME_CONSTRAINT_VIOLATION":16384,"NON_UNIQUE_NAME":1024,"NO_REVOCATION_MECHANISM":16,"PINNED_KEY_MISSING":8192,"REVOKED":64,"REV_CHECKING_ENABLED":131072,"UNABLE_TO_CHECK_REVOCATION":32,"WEAK_KEY":2048,"WEAK_SIGNATURE_ALGORITHM":256},"clientInfo":{"cl":"281580","command_line":"\"c:\\program files\\Google\\Chrome\\Application\\chrome.exe\" --load-extension=\"C:\\webpagetest\\extension\" --user-data-dir=\"C:\\Users\\pmeenan\\AppData\\Roaming\\webpagetest_profiles\\Chrome\" --no-proxy-server --enable-experimental-extension-apis --disable-background-networking --no-default-browser-check --no-first-run --process-per-tab --new-window --disable-translate --disable-desktop-notifications --allow-running-insecure-content --log-net-log=\"C:\\Users\\pmeenan\\AppData\\Roaming\\webpagetest\\1_netlog.txt\" http://127.0.0.1:8888/blank.html","name":"Google Chrome","official":"official","os_type":"Windows","version":"37.0.2062.124","version_mod":"m"},"loadFlag":{"BYPASS_CACHE":2,"BYPASS_PROXY":32768,"DISABLE_CACHE":32,"DISABLE_CERT_REVOCATION_CHECKING":4096,"DISABLE_INTERCEPT":64,"DO_NOT_PROMPT_FOR_LOGIN":67108864,"DO_NOT_SAVE_COOKIES":16384,"DO_NOT_SEND_AUTH_DATA":524288,"DO_NOT_SEND_COOKIES":262144,"DO_NOT_USE_EMBEDDED_IDENTITY":268435456,"ENABLE_LOAD_TIMING":256,"ENABLE_UPLOAD_PROGRESS":128,"FROM_CACHE_IF_OFFLINE":16,"IGNORE_ALL_CERT_ERRORS":1048576,"IGNORE_CERT_AUTHORITY_INVALID":2048,"IGNORE_CERT_COMMON_NAME_INVALID":512,"IGNORE_CERT_DATE_INVALID":1024,"IGNORE_CERT_WRONG_USAGE":8192,"IGNORE_LIMITS":33554432,"IS_DOWNLOAD":65536,"MAIN_FRAME":2097152,"MAYBE_USER_GESTURE":134217728,"NORMAL":0,"ONLY_FROM_CACHE":8,"PREFERRING_CACHE":4,"PREFETCH":16777216,"REPORT_RAW_HEADERS":8388608,"SUB_FRAME":4194304,"VALIDATE_CACHE":1,"VERIFY_EV_CERT":131072},"loadState":{"CONNECTING":11,"DOWNLOADING_PROXY_SCRIPT":6,"ESTABLISHING_PROXY_TUNNEL":9,"IDLE":0,"READING_RESPONSE":15,"RESOLVING_HOST":10,"RESOLVING_HOST_IN_PROXY_SCRIPT":8,"RESOLVING_PROXY_FOR_URL":7,"SENDING_REQUEST":13,"SSL_HANDSHAKE":12,"WAITING_FOR_APPCACHE":5,"WAITING_FOR_AVAILABLE_SOCKET":2,"WAITING_FOR_CACHE":4,"WAITING_FOR_DELEGATE":3,"WAITING_FOR_RESPONSE":14,"WAITING_FOR_STALLED_SOCKET_POOL":1},"logEventPhase":{"PHASE_BEGIN":1,"PHASE_END":2,"PHASE_NONE":0},"logEventTypes":{"APPCACHE_DELIVERING_CACHED_RESPONSE":227,"APPCACHE_DELIVERING_ERROR_RESPONSE":229,"APPCACHE_DELIVERING_EXECUTABLE_RESPONSE":230,"APPCACHE_DELIVERING_FALLBACK_RESPONSE":228,"AUTH_PROXY":225,"AUTH_SERVER":226,"BACKUP_CONNECT_JOB_CREATED":87,"BAD_PROXY_LIST_REPORTED":28,"CANCELLED":0,"CERT_VERIFIER_JOB":249,"CERT_VERIFIER_REQUEST":248,"CERT_VERIFIER_REQUEST_BOUND_TO_JOB":250,"CHROME_EXTENSION_ABORTED_REQUEST":242,"CHROME_EXTENSION_IGNORED_DUE_TO_CONFLICT":245,"CHROME_EXTENSION_MODIFIED_HEADERS":244,"CHROME_EXTENSION_PROVIDE_AUTH_CREDENTIALS":246,"CHROME_EXTENSION_REDIRECTED_REQUEST":243,"CHROME_POLICY_ABORTED_REQUEST":247,"CONNECT_JOB_SET_SOCKET":79,"DELEGATE_INFO":94,"DISK_CACHE_ENTRY_IMPL":108,"DISK_CACHE_MEM_ENTRY_IMPL":109,"DNS_CONFIG_CHANGED":234,"DNS_TRANSACTION":237,"DNS_TRANSACTION_ATTEMPT":239,"DNS_TRANSACTION_QUERY":238,"DNS_TRANSACTION_RESPONSE":241,"DNS_TRANSACTION_TCP_ATTEMPT":240,"DOWNLOAD_FILE_ANNOTATED":269,"DOWNLOAD_FILE_CLOSED":265,"DOWNLOAD_FILE_DELETED":267,"DOWNLOAD_FILE_DETACHED":266,"DOWNLOAD_FILE_ERROR":268,"DOWNLOAD_FILE_OPENED":262,"DOWNLOAD_FILE_RENAMED":264,"DOWNLOAD_ITEM_ACTIVE":253,"DOWNLOAD_ITEM_CANCELED":261,"DOWNLOAD_ITEM_COMPLETING":259,"DOWNLOAD_ITEM_FINISHED":260,"DOWNLOAD_ITEM_INTERRUPTED":257,"DOWNLOAD_ITEM_RENAMED":256,"DOWNLOAD_ITEM_RESUMED":258,"DOWNLOAD_ITEM_SAFETY_STATE_UPDATED":254,"DOWNLOAD_ITEM_UPDATED":255,"DOWNLOAD_STARTED":251,"DOWNLOAD_STREAM_DRAINED":263,"DOWNLOAD_URL_REQUEST":252,"ENTRY_CLOSE":118,"ENTRY_DOOM":119,"ENTRY_READ_DATA":110,"ENTRY_WRITE_DATA":111,"FAILED":1,"FILE_STREAM_ALIVE":270,"FILE_STREAM_BOUND_TO_OWNER":272,"FILE_STREAM_ERROR":274,"FILE_STREAM_OPEN":273,"FILE_STREAM_SOURCE":271,"FTP_COMMAND_SENT":275,"FTP_CONTROL_CONNECTION":276,"FTP_CONTROL_RESPONSE":278,"FTP_DATA_CONNECTION":277,"HOST_RESOLVER_IMPL":3,"HOST_RESOLVER_IMPL_ATTEMPT_FINISHED":13,"HOST_RESOLVER_IMPL_ATTEMPT_STARTED":12,"HOST_RESOLVER_IMPL_CACHE_HIT":6,"HOST_RESOLVER_IMPL_CREATE_JOB":8,"HOST_RESOLVER_IMPL_DNS_TASK":18,"HOST_RESOLVER_IMPL_HOSTS_HIT":7,"HOST_RESOLVER_IMPL_IPV6_SUPPORTED":5,"HOST_RESOLVER_IMPL_JOB":9,"HOST_RESOLVER_IMPL_JOB_ATTACH":14,"HOST_RESOLVER_IMPL_JOB_EVICTED":10,"HOST_RESOLVER_IMPL_JOB_REQUEST_ATTACH":15,"HOST_RESOLVER_IMPL_JOB_REQUEST_DETACH":16,"HOST_RESOLVER_IMPL_JOB_STARTED":11,"HOST_RESOLVER_IMPL_PROC_TASK":17,"HOST_RESOLVER_IMPL_REQUEST":4,"HTTP_CACHE_ADD_TO_ENTRY":102,"HTTP_CACHE_CREATE_ENTRY":101,"HTTP_CACHE_DOOM_ENTRY":103,"HTTP_CACHE_GET_BACKEND":99,"HTTP_CACHE_OPEN_ENTRY":100,"HTTP_CACHE_READ_DATA":106,"HTTP_CACHE_READ_INFO":104,"HTTP_CACHE_WRITE_DATA":107,"HTTP_CACHE_WRITE_INFO":105,"HTTP_STREAM_JOB":121,"HTTP_STREAM_JOB_BOUND_TO_REQUEST":123,"HTTP_STREAM_PARSER_READ_HEADERS":215,"HTTP_STREAM_REQUEST":120,"HTTP_STREAM_REQUEST_BOUND_TO_JOB":122,"HTTP_STREAM_REQUEST_PROTO":124,"HTTP_TRANSACTION_DRAIN_BODY_FOR_AUTH_RESTART":137,"HTTP_TRANSACTION_QUIC_SEND_REQUEST_HEADERS":133,"HTTP_TRANSACTION_READ_BODY":136,"HTTP_TRANSACTION_READ_HEADERS":134,"HTTP_TRANSACTION_READ_RESPONSE_HEADERS":135,"HTTP_TRANSACTION_READ_TUNNEL_RESPONSE_HEADERS":128,"HTTP_TRANSACTION_RESTART_AFTER_ERROR":138,"HTTP_TRANSACTION_SEND_REQUEST":129,"HTTP_TRANSACTION_SEND_REQUEST_BODY":131,"HTTP_TRANSACTION_SEND_REQUEST_HEADERS":130,"HTTP_TRANSACTION_SEND_TUNNEL_HEADERS":126,"HTTP_TRANSACTION_SPDY_SEND_REQUEST_HEADERS":132,"HTTP_TRANSACTION_TUNNEL_READ_HEADERS":127,"HTTP_TRANSACTION_TUNNEL_SEND_REQUEST":125,"IPV6_REACHABILITY_CHECK":303,"NETWORK_CHANGED":233,"NETWORK_CONNECTIVITY_CHANGED":232,"NETWORK_IP_ADDRESSES_CHANGED":231,"PAC_JAVASCRIPT_ALERT":31,"PAC_JAVASCRIPT_ERROR":30,"PROXY_CONFIG_CHANGED":27,"PROXY_LIST_FALLBACK":29,"PROXY_SCRIPT_DECIDER":19,"PROXY_SCRIPT_DECIDER_FALLING_BACK_TO_NEXT_PAC_SOURCE":23,"PROXY_SCRIPT_DECIDER_FETCH_PAC_SCRIPT":21,"PROXY_SCRIPT_DECIDER_HAS_NO_FETCHER":22,"PROXY_SCRIPT_DECIDER_WAIT":20,"PROXY_SERVICE":24,"PROXY_SERVICE_RESOLVED_PROXY_LIST":26,"PROXY_SERVICE_WAITING_FOR_INIT_PAC":25,"QUIC_HTTP_STREAM_READ_RESPONSE_HEADERS":214,"QUIC_HTTP_STREAM_SEND_REQUEST_HEADERS":213,"QUIC_SESSION":180,"QUIC_SESSION_ACK_FRAME_RECEIVED":188,"QUIC_SESSION_ACK_FRAME_SENT":189,"QUIC_SESSION_BLOCKED_FRAME_RECEIVED":192,"QUIC_SESSION_BLOCKED_FRAME_SENT":193,"QUIC_SESSION_CLOSED":212,"QUIC_SESSION_CLOSE_ON_ERROR":181,"QUIC_SESSION_CONGESTION_FEEDBACK_FRAME_RECEIVED":202,"QUIC_SESSION_CONGESTION_FEEDBACK_FRAME_SENT":203,"QUIC_SESSION_CONNECTION_CLOSE_FRAME_RECEIVED":204,"QUIC_SESSION_CONNECTION_CLOSE_FRAME_SENT":205,"QUIC_SESSION_CRYPTO_HANDSHAKE_MESSAGE_RECEIVED":210,"QUIC_SESSION_CRYPTO_HANDSHAKE_MESSAGE_SENT":211,"QUIC_SESSION_GOAWAY_FRAME_RECEIVED":194,"QUIC_SESSION_GOAWAY_FRAME_SENT":195,"QUIC_SESSION_PACKET_HEADER_RECEIVED":185,"QUIC_SESSION_PACKET_HEADER_REVIVED":209,"QUIC_SESSION_PACKET_RECEIVED":182,"QUIC_SESSION_PACKET_RETRANSMITTED":184,"QUIC_SESSION_PACKET_SENT":183,"QUIC_SESSION_PING_FRAME_RECEIVED":196,"QUIC_SESSION_PING_FRAME_SENT":197,"QUIC_SESSION_PUBLIC_RESET_PACKET_RECEIVED":206,"QUIC_SESSION_RST_STREAM_FRAME_RECEIVED":200,"QUIC_SESSION_RST_STREAM_FRAME_SENT":201,"QUIC_SESSION_STOP_WAITING_FRAME_RECEIVED":198,"QUIC_SESSION_STOP_WAITING_FRAME_SENT":199,"QUIC_SESSION_STREAM_FRAME_RECEIVED":186,"QUIC_SESSION_STREAM_FRAME_SENT":187,"QUIC_SESSION_VERSION_NEGOTIATED":208,"QUIC_SESSION_VERSION_NEGOTIATION_PACKET_RECEIVED":207,"QUIC_SESSION_WINDOW_UPDATE_FRAME_RECEIVED":190,"QUIC_SESSION_WINDOW_UPDATE_FRAME_SENT":191,"REQUEST_ALIVE":2,"SIGNED_CERTIFICATE_TIMESTAMPS_CHECKED":70,"SIGNED_CERTIFICATE_TIMESTAMPS_RECEIVED":69,"SIMPLE_CACHE_ENTRY":279,"SIMPLE_CACHE_ENTRY_CHECKSUM_BEGIN":291,"SIMPLE_CACHE_ENTRY_CHECKSUM_END":292,"SIMPLE_CACHE_ENTRY_CLOSE_BEGIN":301,"SIMPLE_CACHE_ENTRY_CLOSE_CALL":300,"SIMPLE_CACHE_ENTRY_CLOSE_END":302,"SIMPLE_CACHE_ENTRY_CREATE_BEGIN":286,"SIMPLE_CACHE_ENTRY_CREATE_CALL":284,"SIMPLE_CACHE_ENTRY_CREATE_END":287,"SIMPLE_CACHE_ENTRY_CREATE_OPTIMISTIC":285,"SIMPLE_CACHE_ENTRY_DOOM_BEGIN":298,"SIMPLE_CACHE_ENTRY_DOOM_CALL":297,"SIMPLE_CACHE_ENTRY_DOOM_END":299,"SIMPLE_CACHE_ENTRY_OPEN_BEGIN":282,"SIMPLE_CACHE_ENTRY_OPEN_CALL":281,"SIMPLE_CACHE_ENTRY_OPEN_END":283,"SIMPLE_CACHE_ENTRY_READ_BEGIN":289,"SIMPLE_CACHE_ENTRY_READ_CALL":288,"SIMPLE_CACHE_ENTRY_READ_END":290,"SIMPLE_CACHE_ENTRY_SET_KEY":280,"SIMPLE_CACHE_ENTRY_WRITE_BEGIN":295,"SIMPLE_CACHE_ENTRY_WRITE_CALL":293,"SIMPLE_CACHE_ENTRY_WRITE_END":296,"SIMPLE_CACHE_ENTRY_WRITE_OPTIMISTIC":294,"SOCKET_ALIVE":34,"SOCKET_BYTES_RECEIVED":63,"SOCKET_BYTES_SENT":61,"SOCKET_CLOSED":67,"SOCKET_IN_USE":38,"SOCKET_POOL":81,"SOCKET_POOL_BOUND_TO_CONNECT_JOB":88,"SOCKET_POOL_BOUND_TO_SOCKET":89,"SOCKET_POOL_CONNECTING_N_SOCKETS":90,"SOCKET_POOL_CONNECT_JOB":77,"SOCKET_POOL_CONNECT_JOB_CONNECT":78,"SOCKET_POOL_CONNECT_JOB_TIMED_OUT":80,"SOCKET_POOL_REUSED_AN_EXISTING_SOCKET":84,"SOCKET_POOL_STALLED_MAX_SOCKETS":82,"SOCKET_POOL_STALLED_MAX_SOCKETS_PER_GROUP":83,"SOCKET_READ_ERROR":65,"SOCKET_STREAM_CONNECT":216,"SOCKET_STREAM_RECEIVED":218,"SOCKET_STREAM_SENT":217,"SOCKET_WRITE_ERROR":66,"SOCKS5_CONNECT":40,"SOCKS5_GREET_READ":222,"SOCKS5_GREET_WRITE":221,"SOCKS5_HANDSHAKE_READ":224,"SOCKS5_HANDSHAKE_WRITE":223,"SOCKS_CONNECT":39,"SOCKS_HOSTNAME_TOO_BIG":41,"SOCKS_SERVER_ERROR":45,"SOCKS_UNEXPECTEDLY_CLOSED_DURING_GREETING":42,"SOCKS_UNEXPECTEDLY_CLOSED_DURING_HANDSHAKE":43,"SOCKS_UNEXPECTED_AUTH":46,"SOCKS_UNEXPECTED_VERSION":44,"SOCKS_UNKNOWN_ADDRESS_TYPE":47,"SPARSE_DELETE_CHILDREN":117,"SPARSE_GET_RANGE":116,"SPARSE_READ":112,"SPARSE_READ_CHILD_DATA":114,"SPARSE_WRITE":113,"SPARSE_WRITE_CHILD_DATA":115,"SPDY_PROXY_CLIENT_SESSION":179,"SPDY_SESSION":139,"SPDY_SESSION_CLOSE":163,"SPDY_SESSION_GOAWAY":152,"SPDY_SESSION_INITIALIZED":140,"SPDY_SESSION_INITIAL_WINDOW_SIZE_NO_FLOW_CONTROL":165,"SPDY_SESSION_INITIAL_WINDOW_SIZE_OUT_OF_RANGE":166,"SPDY_SESSION_PING":151,"SPDY_SESSION_POOL_CREATED_NEW_SESSION":170,"SPDY_SESSION_POOL_FOUND_EXISTING_SESSION":168,"SPDY_SESSION_POOL_FOUND_EXISTING_SESSION_FROM_IP_POOL":169,"SPDY_SESSION_POOL_IMPORTED_SESSION_FROM_SOCKET":171,"SPDY_SESSION_POOL_REMOVE_SESSION":172,"SPDY_SESSION_PUSHED_SYN_STREAM":142,"SPDY_SESSION_RECEIVED_WINDOW_UPDATE_FRAME":153,"SPDY_SESSION_RECV_DATA":159,"SPDY_SESSION_RECV_HEADERS":144,"SPDY_SESSION_RECV_PUSH_PROMISE":160,"SPDY_SESSION_RECV_SETTING":148,"SPDY_SESSION_RECV_SETTINGS":147,"SPDY_SESSION_RST_STREAM":149,"SPDY_SESSION_SEND_CREDENTIAL":157,"SPDY_SESSION_SEND_DATA":158,"SPDY_SESSION_SEND_HEADERS":143,"SPDY_SESSION_SEND_RST_STREAM":150,"SPDY_SESSION_SEND_SETTINGS":146,"SPDY_SESSION_SENT_WINDOW_UPDATE_FRAME":154,"SPDY_SESSION_STALLED_MAX_STREAMS":164,"SPDY_SESSION_STREAM_STALLED_BY_SESSION_SEND_WINDOW":161,"SPDY_SESSION_STREAM_STALLED_BY_STREAM_SEND_WINDOW":162,"SPDY_SESSION_SYN_REPLY":145,"SPDY_SESSION_SYN_STREAM":141,"SPDY_SESSION_UPDATE_RECV_WINDOW":156,"SPDY_SESSION_UPDATE_SEND_WINDOW":155,"SPDY_SESSION_UPDATE_STREAMS_SEND_WINDOW_SIZE":167,"SPDY_STREAM":173,"SPDY_STREAM_ADOPTED_PUSH_STREAM":174,"SPDY_STREAM_ERROR":178,"SPDY_STREAM_FLOW_CONTROL_UNSTALLED":175,"SPDY_STREAM_UPDATE_RECV_WINDOW":177,"SPDY_STREAM_UPDATE_SEND_WINDOW":176,"SSL_CERTIFICATES_RECEIVED":68,"SSL_CHANNEL_ID_PROVIDED":53,"SSL_CHANNEL_ID_REQUESTED":52,"SSL_CLIENT_CERT_PROVIDED":54,"SSL_CLIENT_CERT_REQUESTED":50,"SSL_CONNECT":48,"SSL_GET_DOMAIN_BOUND_CERT":51,"SSL_HANDSHAKE_ERROR":55,"SSL_NSS_ERROR":60,"SSL_READ_ERROR":56,"SSL_SERVER_HANDSHAKE":49,"SSL_SOCKET_BYTES_RECEIVED":64,"SSL_SOCKET_BYTES_SENT":62,"SSL_VERIFICATION_MERGED":59,"SSL_VERSION_FALLBACK":58,"SSL_WRITE_ERROR":57,"SUBMITTED_TO_RESOLVER_THREAD":33,"TCP_ACCEPT":37,"TCP_CLIENT_SOCKET_POOL_REQUESTED_SOCKET":85,"TCP_CLIENT_SOCKET_POOL_REQUESTED_SOCKETS":86,"TCP_CONNECT":35,"TCP_CONNECT_ATTEMPT":36,"THROTTLING_DISABLED_FOR_HOST":235,"THROTTLING_REJECTED_REQUEST":236,"UDP_BYTES_RECEIVED":73,"UDP_BYTES_SENT":74,"UDP_CONNECT":71,"UDP_LOCAL_ADDRESS":72,"UDP_RECEIVE_ERROR":75,"UDP_SEND_ERROR":76,"URL_REQUEST_DELEGATE":93,"URL_REQUEST_JOB_BYTES_READ":95,"URL_REQUEST_JOB_FILTERED_BYTES_READ":96,"URL_REQUEST_REDIRECTED":92,"URL_REQUEST_REDIRECT_JOB":98,"URL_REQUEST_SET_PRIORITY":97,"URL_REQUEST_START_JOB":91,"WAITING_FOR_PROXY_RESOLVER_THREAD":32,"WEB_SOCKET_READ_RESPONSE_HEADERS":220,"WEB_SOCKET_SEND_REQUEST_HEADERS":219},"logFormatVersion":1,"logLevelType":{"LOG_ALL":0,"LOG_ALL_BUT_BYTES":1,"LOG_STRIP_PRIVATE_DATA":2},"logSourceType":{"CERT_VERIFIER_JOB":15,"CONNECT_JOB":4,"DISK_CACHE_ENTRY":10,"DNS_PROBER":18,"DOWNLOAD":16,"EXPONENTIAL_BACKOFF_THROTTLING":13,"FILESTREAM":17,"HOST_RESOLVER_IMPL_JOB":9,"HOST_RESOLVER_IMPL_REQUEST":8,"HTTP_STREAM_JOB":12,"IPV6_REACHABILITY_CHECK":20,"MEMORY_CACHE_ENTRY":11,"NONE":0,"PROXY_CLIENT_SOCKET":19,"PROXY_SCRIPT_DECIDER":3,"QUIC_SESSION":7,"SOCKET":5,"SOCKET_STREAM":2,"SPDY_SESSION":6,"UDP_SOCKET":14,"URL_REQUEST":1},"netError":{"ABORTED":-3,"ACCESS_DENIED":-10,"ADDRESS_INVALID":-108,"ADDRESS_IN_USE":-147,"ADDRESS_UNREACHABLE":-109,"ADD_USER_CERT_FAILED":-503,"BAD_SSL_CLIENT_AUTH_CERT":-117,"BLOCKED_BY_ADMINISTRATOR":-22,"BLOCKED_BY_CLIENT":-20,"BLOCKED_ENROLLMENT_CHECK_PENDING":-24,"CACHE_CHECKSUM_MISMATCH":-408,"CACHE_CHECKSUM_READ_FAILURE":-407,"CACHE_CREATE_FAILURE":-405,"CACHE_MISS":-400,"CACHE_OPEN_FAILURE":-404,"CACHE_OPERATION_NOT_SUPPORTED":-403,"CACHE_RACE":-406,"CACHE_READ_FAILURE":-401,"CACHE_WRITE_FAILURE":-402,"CERT_AUTHORITY_INVALID":-202,"CERT_COMMON_NAME_INVALID":-200,"CERT_CONTAINS_ERRORS":-203,"CERT_DATABASE_CHANGED":-714,"CERT_DATE_INVALID":-201,"CERT_END":-213,"CERT_ERROR_IN_SSL_RENEGOTIATION":-116,"CERT_INVALID":-207,"CERT_NAME_CONSTRAINT_VIOLATION":-212,"CERT_NON_UNIQUE_NAME":-210,"CERT_NO_REVOCATION_MECHANISM":-204,"CERT_REVOKED":-206,"CERT_UNABLE_TO_CHECK_REVOCATION":-205,"CERT_WEAK_KEY":-211,"CERT_WEAK_SIGNATURE_ALGORITHM":-208,"CLIENT_AUTH_CERT_TYPE_UNSUPPORTED":-151,"CONNECTION_ABORTED":-103,"CONNECTION_CLOSED":-100,"CONNECTION_FAILED":-104,"CONNECTION_REFUSED":-102,"CONNECTION_RESET":-101,"CONNECTION_TIMED_OUT":-118,"CONTENT_DECODING_FAILED":-330,"CONTENT_LENGTH_MISMATCH":-354,"CT_NO_SCTS_VERIFIED_OK":-158,"DISALLOWED_URL_SCHEME":-301,"DNS_CACHE_MISS":-804,"DNS_MALFORMED_RESPONSE":-800,"DNS_SEARCH_EMPTY":-805,"DNS_SERVER_FAILED":-802,"DNS_SERVER_REQUIRES_TCP":-801,"DNS_SORT_ERROR":-806,"DNS_TIMED_OUT":-803,"EMPTY_RESPONSE":-324,"ENCODING_CONVERSION_FAILED":-333,"ENCODING_DETECTION_FAILED":-340,"FAILED":-2,"FILE_EXISTS":-16,"FILE_NOT_FOUND":-6,"FILE_NO_SPACE":-18,"FILE_PATH_TOO_LONG":-17,"FILE_TOO_BIG":-8,"FILE_VIRUS_INFECTED":-19,"FTP_BAD_COMMAND_SEQUENCE":-607,"FTP_COMMAND_NOT_SUPPORTED":-606,"FTP_FAILED":-601,"FTP_FILE_BUSY":-604,"FTP_SERVICE_UNAVAILABLE":-602,"FTP_SYNTAX_ERROR":-605,"FTP_TRANSFER_ABORTED":-603,"HOST_RESOLVER_QUEUE_TOO_LARGE":-119,"HTTPS_PROXY_TUNNEL_RESPONSE":-140,"IMPORT_CA_CERT_FAILED":-705,"IMPORT_CA_CERT_NOT_CA":-703,"IMPORT_CERT_ALREADY_EXISTS":-704,"IMPORT_SERVER_CERT_FAILED":-706,"INCOMPLETE_CHUNKED_ENCODING":-355,"INCOMPLETE_SPDY_HEADERS":-347,"INSECURE_RESPONSE":-501,"INSUFFICIENT_RESOURCES":-12,"INTERNET_DISCONNECTED":-106,"INVALID_ARGUMENT":-4,"INVALID_AUTH_CREDENTIALS":-338,"INVALID_CHUNKED_ENCODING":-321,"INVALID_HANDLE":-5,"INVALID_RESPONSE":-320,"INVALID_SPDY_STREAM":-335,"INVALID_URL":-300,"IO_PENDING":-1,"KEY_GENERATION_FAILED":-710,"MALFORMED_IDENTITY":-329,"MANDATORY_PROXY_CONFIGURATION_FAILED":-131,"METHOD_NOT_SUPPORTED":-322,"MISCONFIGURED_AUTH_ENVIRONMENT":-343,"MISSING_AUTH_CREDENTIALS":-341,"MSG_TOO_BIG":-142,"NAME_NOT_RESOLVED":-105,"NAME_RESOLUTION_FAILED":-137,"NETWORK_ACCESS_DENIED":-138,"NETWORK_CHANGED":-21,"NETWORK_IO_SUSPENDED":-331,"NOT_IMPLEMENTED":-11,"NO_PRIVATE_KEY_FOR_CERT":-502,"NO_SSL_VERSIONS_ENABLED":-112,"NO_SUPPORTED_PROXIES":-336,"NPN_NEGOTIATION_FAILED":-122,"ORIGIN_BOUND_CERT_GENERATION_FAILED":-711,"ORIGIN_BOUND_CERT_GENERATION_TYPE_MISMATCH":-152,"OUT_OF_MEMORY":-13,"PAC_NOT_IN_DHCP":-348,"PAC_SCRIPT_FAILED":-327,"PAC_STATUS_NOT_OK":-326,"PKCS12_IMPORT_BAD_PASSWORD":-701,"PKCS12_IMPORT_FAILED":-702,"PKCS12_IMPORT_INVALID_FILE":-708,"PKCS12_IMPORT_INVALID_MAC":-707,"PKCS12_IMPORT_UNSUPPORTED":-709,"PRECONNECT_MAX_SOCKET_LIMIT":-133,"PRIVATE_KEY_EXPORT_FAILED":-712,"PROTOCOL_SWITCHED":-146,"PROXY_AUTH_REQUESTED":-127,"PROXY_AUTH_REQUESTED_WITH_NO_CONNECTION":-364,"PROXY_AUTH_UNSUPPORTED":-115,"PROXY_CERTIFICATE_INVALID":-136,"PROXY_CONNECTION_FAILED":-130,"QUIC_HANDSHAKE_FAILED":-358,"QUIC_PROTOCOL_ERROR":-356,"REQUEST_FOR_SECURE_RESOURCE_OVER_INSECURE_QUIC":-359,"REQUEST_RANGE_NOT_SATISFIABLE":-328,"RESPONSE_BODY_TOO_BIG_TO_DRAIN":-345,"RESPONSE_HEADERS_MULTIPLE_CONTENT_DISPOSITION":-349,"RESPONSE_HEADERS_MULTIPLE_CONTENT_LENGTH":-346,"RESPONSE_HEADERS_MULTIPLE_LOCATION":-350,"RESPONSE_HEADERS_TOO_BIG":-325,"RESPONSE_HEADERS_TRUNCATED":-357,"SELF_SIGNED_CERT_GENERATION_FAILED":-713,"SOCKET_IS_CONNECTED":-23,"SOCKET_NOT_CONNECTED":-15,"SOCKET_RECEIVE_BUFFER_SIZE_UNCHANGEABLE":-162,"SOCKET_SEND_BUFFER_SIZE_UNCHANGEABLE":-163,"SOCKET_SET_RECEIVE_BUFFER_SIZE_ERROR":-160,"SOCKET_SET_SEND_BUFFER_SIZE_ERROR":-161,"SOCKS_CONNECTION_FAILED":-120,"SOCKS_CONNECTION_HOST_UNREACHABLE":-121,"SPDY_COMPRESSION_ERROR":-363,"SPDY_FLOW_CONTROL_ERROR":-361,"SPDY_FRAME_SIZE_ERROR":-362,"SPDY_INADEQUATE_TRANSPORT_SECURITY":-360,"SPDY_PING_FAILED":-352,"SPDY_PROTOCOL_ERROR":-337,"SPDY_SERVER_REFUSED_STREAM":-351,"SPDY_SESSION_ALREADY_EXISTS":-143,"SSL_BAD_PEER_PUBLIC_KEY":-149,"SSL_BAD_RECORD_MAC_ALERT":-126,"SSL_CLIENT_AUTH_CERT_NEEDED":-110,"SSL_CLIENT_AUTH_CERT_NO_PRIVATE_KEY":-135,"SSL_CLIENT_AUTH_PRIVATE_KEY_ACCESS_DENIED":-134,"SSL_CLIENT_AUTH_SIGNATURE_FAILED":-141,"SSL_DECOMPRESSION_FAILURE_ALERT":-125,"SSL_DECRYPT_ERROR_ALERT":-153,"SSL_HANDSHAKE_NOT_COMPLETED":-148,"SSL_INAPPROPRIATE_FALLBACK":-157,"SSL_NO_RENEGOTIATION":-123,"SSL_PINNED_KEY_NOT_IN_CERT_CHAIN":-150,"SSL_PROTOCOL_ERROR":-107,"SSL_RENEGOTIATION_REQUESTED":-114,"SSL_SERVER_CERT_CHANGED":-156,"SSL_UNRECOGNIZED_NAME_ALERT":-159,"SSL_UNSAFE_NEGOTIATION":-128,"SSL_VERSION_OR_CIPHER_MISMATCH":-113,"SSL_WEAK_SERVER_EPHEMERAL_DH_KEY":-129,"SYN_REPLY_NOT_RECEIVED":-332,"TEMPORARILY_THROTTLED":-139,"TIMED_OUT":-7,"TOO_MANY_REDIRECTS":-310,"TOO_MANY_SOCKET_STREAMS":-155,"TUNNEL_CONNECTION_FAILED":-111,"UNDOCUMENTED_SECURITY_LIBRARY_STATUS":-344,"UNEXPECTED":-9,"UNEXPECTED_PROXY_AUTH":-323,"UNEXPECTED_SECURITY_LIBRARY_STATUS":-342,"UNKNOWN_URL_SCHEME":-302,"UNRECOGNIZED_FTP_DIRECTORY_LISTING_FORMAT":-334,"UNSAFE_PORT":-312,"UNSAFE_REDIRECT":-311,"UNSUPPORTED_AUTH_SCHEME":-339,"UPLOAD_FILE_CHANGED":-14,"WINSOCK_UNEXPECTED_WRITTEN_BYTES":-124,"WS_PROTOCOL_ERROR":-145,"WS_THROTTLE_QUEUE_TOO_LARGE":-154},"quicError":{"INVALID_ERROR_CODE":21,"QUIC_CONNECTION_IP_POOLED":62,"QUIC_CONNECTION_TIMED_OUT":25,"QUIC_CRYPTO_DUPLICATE_TAG":43,"QUIC_CRYPTO_ENCRYPTION_LEVEL_INCORRECT":44,"QUIC_CRYPTO_INTERNAL_ERROR":38,"QUIC_CRYPTO_INVALID_VALUE_LENGTH":31,"QUIC_CRYPTO_MESSAGE_AFTER_HANDSHAKE_COMPLETE":32,"QUIC_CRYPTO_MESSAGE_INDEX_NOT_FOUND":37,"QUIC_CRYPTO_MESSAGE_PARAMETER_NOT_FOUND":35,"QUIC_CRYPTO_MESSAGE_PARAMETER_NO_OVERLAP":36,"QUIC_CRYPTO_MESSAGE_WHILE_VALIDATING_CLIENT_HELLO":54,"QUIC_CRYPTO_NO_SUPPORT":40,"QUIC_CRYPTO_SERVER_CONFIG_EXPIRED":45,"QUIC_CRYPTO_SYMMETRIC_KEY_SETUP_FAILED":53,"QUIC_CRYPTO_TAGS_OUT_OF_ORDER":29,"QUIC_CRYPTO_TOO_MANY_ENTRIES":30,"QUIC_CRYPTO_TOO_MANY_REJECTS":41,"QUIC_CRYPTO_VERSION_NOT_SUPPORTED":39,"QUIC_DECOMPRESSION_FAILURE":24,"QUIC_DECRYPTION_FAILURE":12,"QUIC_ENCRYPTION_FAILURE":13,"QUIC_ERROR_MIGRATING_ADDRESS":26,"QUIC_FLOW_CONTROL_INVALID_WINDOW":64,"QUIC_FLOW_CONTROL_RECEIVED_TOO_MUCH_DATA":59,"QUIC_FLOW_CONTROL_SENT_TOO_MUCH_DATA":63,"QUIC_HANDSHAKE_FAILED":28,"QUIC_INTERNAL_ERROR":1,"QUIC_INVALID_ACK_DATA":9,"QUIC_INVALID_BLOCKED_DATA":58,"QUIC_INVALID_CHANNEL_ID_SIGNATURE":52,"QUIC_INVALID_CONGESTION_FEEDBACK_DATA":47,"QUIC_INVALID_CONNECTION_CLOSE_DATA":7,"QUIC_INVALID_CRYPTO_MESSAGE_PARAMETER":34,"QUIC_INVALID_CRYPTO_MESSAGE_TYPE":33,"QUIC_INVALID_FEC_DATA":5,"QUIC_INVALID_FRAME_DATA":4,"QUIC_INVALID_GOAWAY_DATA":8,"QUIC_INVALID_HEADERS_STREAM_DATA":56,"QUIC_INVALID_HEADER_ID":22,"QUIC_INVALID_NEGOTIATED_VALUE":23,"QUIC_INVALID_PACKET_HEADER":3,"QUIC_INVALID_PRIORITY":49,"QUIC_INVALID_PUBLIC_RST_PACKET":11,"QUIC_INVALID_RST_STREAM_DATA":6,"QUIC_INVALID_STOP_WAITING_DATA":60,"QUIC_INVALID_STREAM_DATA":46,"QUIC_INVALID_STREAM_FRAME":50,"QUIC_INVALID_STREAM_ID":17,"QUIC_INVALID_VERSION":20,"QUIC_INVALID_VERSION_NEGOTIATION_PACKET":10,"QUIC_INVALID_WINDOW_UPDATE_DATA":57,"QUIC_MISSING_PAYLOAD":48,"QUIC_NO_ERROR":0,"QUIC_PACKET_FOR_NONEXISTENT_STREAM":15,"QUIC_PACKET_READ_ERROR":51,"QUIC_PACKET_TOO_LARGE":14,"QUIC_PACKET_WRITE_ERROR":27,"QUIC_PEER_GOING_AWAY":16,"QUIC_PROOF_INVALID":42,"QUIC_PUBLIC_RESET":19,"QUIC_STREAM_DATA_AFTER_TERMINATION":2,"QUIC_TOO_MANY_OPEN_STREAMS":18,"QUIC_UNENCRYPTED_STREAM_DATA":61,"QUIC_VERSION_NEGOTIATION_MISMATCH":55},"quicRstStreamError":{"QUIC_BAD_APPLICATION_PAYLOAD":3,"QUIC_ERROR_PROCESSING_STREAM":1,"QUIC_MULTIPLE_TERMINATION_OFFSETS":2,"QUIC_RST_FLOW_CONTROL_ACCOUNTING":7,"QUIC_STREAM_CANCELLED":6,"QUIC_STREAM_CONNECTION_ERROR":4,"QUIC_STREAM_NO_ERROR":0,"QUIC_STREAM_PEER_GOING_AWAY":5},"timeTickOffset":"1410510083955"}, -"events": [ -{"params":{"address_family":0,"allow_cached_response":true,"host":"www.google.com:80","is_speculative":true,"source_dependency":{"id":0,"type":0}},"phase":1,"source":{"id":2,"type":8},"time":"1250423872","type":4}, -{"params":{"source_dependency":{"id":2,"type":8}},"phase":1,"source":{"id":3,"type":20},"time":"1250423872","type":303}, -{"params":{"source_dependency":{"id":3,"type":20}},"phase":1,"source":{"id":4,"type":14},"time":"1250423872","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":4,"type":14},"time":"1250423872","type":71}, -{"phase":2,"source":{"id":4,"type":14},"time":"1250423873","type":71}, -{"params":{"address":"[::ffff:2001:0]:56534"},"phase":0,"source":{"id":4,"type":14},"time":"1250423873","type":72}, -{"phase":2,"source":{"id":4,"type":14},"time":"1250423873","type":34}, -{"phase":2,"source":{"id":3,"type":20},"time":"1250423873","type":303}, -{"phase":0,"source":{"id":2,"type":8},"time":"1250423873","type":5}, -{"phase":0,"source":{"id":2,"type":8},"time":"1250423873","type":8}, -{"params":{"host":"www.google.com","source_dependency":{"id":2,"type":8}},"phase":1,"source":{"id":5,"type":9},"time":"1250423873","type":9}, -{"phase":0,"source":{"id":5,"type":9},"time":"1250423873","type":11}, -{"phase":1,"source":{"id":5,"type":9},"time":"1250423873","type":17}, -{"params":{"attempt_number":1},"phase":0,"source":{"id":5,"type":9},"time":"1250423873","type":12}, -{"params":{"source_dependency":{"id":5,"type":9}},"phase":0,"source":{"id":2,"type":8},"time":"1250423873","type":14}, -{"params":{"priority":"LOWEST","source_dependency":{"id":2,"type":8}},"phase":0,"source":{"id":5,"type":9},"time":"1250423873","type":15}, -{"params":{"original_url":"http://127.0.0.1:8888/","priority":"HIGHEST","url":"http://127.0.0.1:8888/"},"phase":1,"source":{"id":6,"type":12},"time":"1250424005","type":121}, -{"phase":1,"source":{"id":6,"type":12},"time":"1250424008","type":24}, -{"params":{"new_config":{"source":"UNKNOWN"}},"phase":0,"source":{"id":7,"type":0},"time":"1250424008","type":27}, -{"params":{"pac_string":"DIRECT"},"phase":0,"source":{"id":6,"type":12},"time":"1250424009","type":26}, -{"phase":2,"source":{"id":6,"type":12},"time":"1250424009","type":24}, -{"params":{"source_dependency":{"id":8,"type":8}},"phase":1,"source":{"id":6,"type":12},"time":"1250424009","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":6,"type":12}},"phase":1,"source":{"id":8,"type":8},"time":"1250424009","type":4}, -{"params":{"source_dependency":{"id":8,"type":8}},"phase":1,"source":{"id":9,"type":20},"time":"1250424009","type":303}, -{"params":{"source_dependency":{"id":9,"type":20}},"phase":1,"source":{"id":10,"type":14},"time":"1250424009","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":10,"type":14},"time":"1250424009","type":71}, -{"phase":2,"source":{"id":10,"type":14},"time":"1250424009","type":71}, -{"params":{"address":"[::ffff:2001:0]:50964"},"phase":0,"source":{"id":10,"type":14},"time":"1250424009","type":72}, -{"phase":2,"source":{"id":10,"type":14},"time":"1250424009","type":34}, -{"phase":2,"source":{"id":9,"type":20},"time":"1250424009","type":303}, -{"phase":0,"source":{"id":8,"type":8},"time":"1250424009","type":5}, -{"phase":2,"source":{"id":8,"type":8},"time":"1250424009","type":4}, -{"phase":2,"source":{"id":6,"type":12},"time":"1250424010","type":3}, -{"params":{"host_and_port":"127.0.0.1:8888"},"phase":0,"source":{"id":6,"type":12},"time":"1250424010","type":86}, -{"params":{"num_sockets":1},"phase":1,"source":{"id":6,"type":12},"time":"1250424010","type":90}, -{"params":{"group_name":"127.0.0.1:8888"},"phase":1,"source":{"id":11,"type":4},"time":"1250424010","type":77}, -{"phase":1,"source":{"id":11,"type":4},"time":"1250424010","type":78}, -{"params":{"source_dependency":{"id":12,"type":8}},"phase":1,"source":{"id":11,"type":4},"time":"1250424010","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":11,"type":4}},"phase":1,"source":{"id":12,"type":8},"time":"1250424010","type":4}, -{"params":{"source_dependency":{"id":12,"type":8}},"phase":1,"source":{"id":13,"type":20},"time":"1250424010","type":303}, -{"params":{"source_dependency":{"id":13,"type":20}},"phase":1,"source":{"id":14,"type":14},"time":"1250424010","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":14,"type":14},"time":"1250424010","type":71}, -{"phase":2,"source":{"id":14,"type":14},"time":"1250424010","type":71}, -{"params":{"address":"[::ffff:2001:0]:50965"},"phase":0,"source":{"id":14,"type":14},"time":"1250424010","type":72}, -{"phase":2,"source":{"id":14,"type":14},"time":"1250424010","type":34}, -{"phase":2,"source":{"id":13,"type":20},"time":"1250424010","type":303}, -{"phase":0,"source":{"id":12,"type":8},"time":"1250424010","type":5}, -{"phase":2,"source":{"id":12,"type":8},"time":"1250424011","type":4}, -{"phase":2,"source":{"id":11,"type":4},"time":"1250424011","type":3}, -{"params":{"source_dependency":{"id":11,"type":4}},"phase":1,"source":{"id":15,"type":5},"time":"1250424011","type":34}, -{"params":{"address_list":["127.0.0.1:8888"]},"phase":1,"source":{"id":15,"type":5},"time":"1250424011","type":35}, -{"params":{"address":"127.0.0.1:8888"},"phase":1,"source":{"id":15,"type":5},"time":"1250424011","type":36}, -{"phase":2,"source":{"id":6,"type":12},"time":"1250424012","type":90}, -{"params":{"original_url":"http://127.0.0.1:8888/","priority":"HIGHEST","url":"http://127.0.0.1:8888/"},"phase":1,"source":{"id":16,"type":12},"time":"1250424012","type":121}, -{"phase":1,"source":{"id":16,"type":12},"time":"1250424012","type":24}, -{"params":{"pac_string":"DIRECT"},"phase":0,"source":{"id":16,"type":12},"time":"1250424012","type":26}, -{"phase":2,"source":{"id":16,"type":12},"time":"1250424012","type":24}, -{"params":{"source_dependency":{"id":17,"type":8}},"phase":1,"source":{"id":16,"type":12},"time":"1250424012","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":16,"type":12}},"phase":1,"source":{"id":17,"type":8},"time":"1250424012","type":4}, -{"params":{"source_dependency":{"id":17,"type":8}},"phase":1,"source":{"id":18,"type":20},"time":"1250424012","type":303}, -{"params":{"source_dependency":{"id":18,"type":20}},"phase":1,"source":{"id":19,"type":14},"time":"1250424012","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":19,"type":14},"time":"1250424012","type":71}, -{"phase":2,"source":{"id":19,"type":14},"time":"1250424012","type":71}, -{"params":{"address":"[::ffff:2001:0]:50966"},"phase":0,"source":{"id":19,"type":14},"time":"1250424012","type":72}, -{"phase":2,"source":{"id":19,"type":14},"time":"1250424012","type":34}, -{"phase":2,"source":{"id":18,"type":20},"time":"1250424012","type":303}, -{"phase":0,"source":{"id":17,"type":8},"time":"1250424012","type":5}, -{"phase":2,"source":{"id":17,"type":8},"time":"1250424012","type":4}, -{"phase":2,"source":{"id":16,"type":12},"time":"1250424012","type":3}, -{"params":{"host_and_port":"127.0.0.1:8888"},"phase":0,"source":{"id":16,"type":12},"time":"1250424012","type":86}, -{"params":{"num_sockets":2},"phase":1,"source":{"id":16,"type":12},"time":"1250424012","type":90}, -{"params":{"group_name":"127.0.0.1:8888"},"phase":1,"source":{"id":20,"type":4},"time":"1250424012","type":77}, -{"phase":1,"source":{"id":20,"type":4},"time":"1250424012","type":78}, -{"params":{"source_dependency":{"id":21,"type":8}},"phase":1,"source":{"id":20,"type":4},"time":"1250424012","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":20,"type":4}},"phase":1,"source":{"id":21,"type":8},"time":"1250424012","type":4}, -{"params":{"source_dependency":{"id":21,"type":8}},"phase":1,"source":{"id":22,"type":20},"time":"1250424012","type":303}, -{"params":{"source_dependency":{"id":22,"type":20}},"phase":1,"source":{"id":23,"type":14},"time":"1250424012","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":23,"type":14},"time":"1250424012","type":71}, -{"phase":2,"source":{"id":23,"type":14},"time":"1250424012","type":71}, -{"params":{"address":"[::ffff:2001:0]:50967"},"phase":0,"source":{"id":23,"type":14},"time":"1250424012","type":72}, -{"phase":2,"source":{"id":23,"type":14},"time":"1250424012","type":34}, -{"phase":2,"source":{"id":22,"type":20},"time":"1250424012","type":303}, -{"phase":0,"source":{"id":21,"type":8},"time":"1250424012","type":5}, -{"phase":2,"source":{"id":21,"type":8},"time":"1250424012","type":4}, -{"phase":2,"source":{"id":20,"type":4},"time":"1250424012","type":3}, -{"params":{"source_dependency":{"id":20,"type":4}},"phase":1,"source":{"id":24,"type":5},"time":"1250424012","type":34}, -{"params":{"address_list":["127.0.0.1:8888"]},"phase":1,"source":{"id":24,"type":5},"time":"1250424012","type":35}, -{"params":{"address":"127.0.0.1:8888"},"phase":1,"source":{"id":24,"type":5},"time":"1250424013","type":36}, -{"phase":2,"source":{"id":16,"type":12},"time":"1250424013","type":90}, -{"phase":2,"source":{"id":6,"type":12},"time":"1250424013","type":121}, -{"phase":2,"source":{"id":16,"type":12},"time":"1250424013","type":121}, -{"phase":2,"source":{"id":15,"type":5},"time":"1250424016","type":36}, -{"params":{"source_address":"127.0.0.1:50980"},"phase":2,"source":{"id":15,"type":5},"time":"1250424016","type":35}, -{"params":{"source_dependency":{"id":15,"type":5}},"phase":0,"source":{"id":11,"type":4},"time":"1250424016","type":79}, -{"phase":2,"source":{"id":11,"type":4},"time":"1250424016","type":78}, -{"phase":2,"source":{"id":11,"type":4},"time":"1250424016","type":77}, -{"phase":2,"source":{"id":24,"type":5},"time":"1250424016","type":36}, -{"params":{"source_address":"127.0.0.1:50981"},"phase":2,"source":{"id":24,"type":5},"time":"1250424016","type":35}, -{"params":{"source_dependency":{"id":24,"type":5}},"phase":0,"source":{"id":20,"type":4},"time":"1250424016","type":79}, -{"phase":2,"source":{"id":20,"type":4},"time":"1250424016","type":78}, -{"phase":2,"source":{"id":20,"type":4},"time":"1250424016","type":77}, -{"params":{"attempt_number":1},"phase":0,"source":{"id":5,"type":9},"time":"1250424310","type":13}, -{"params":{"address_list":["74.125.228.16:0","74.125.228.17:0","74.125.228.18:0","74.125.228.19:0","74.125.228.20:0"]},"phase":2,"source":{"id":5,"type":9},"time":"1250424310","type":17}, -{"phase":2,"source":{"id":5,"type":9},"time":"1250424310","type":9}, -{"phase":2,"source":{"id":2,"type":8},"time":"1250424310","type":4}, -{"phase":1,"source":{"id":25,"type":1},"time":"1250425433","type":2}, -{"phase":1,"source":{"id":25,"type":1},"time":"1250425433","type":93}, -{"phase":2,"source":{"id":25,"type":1},"time":"1250425433","type":93}, -{"params":{"load_flags":136446208,"method":"GET","priority":"HIGHEST","url":"http://127.0.0.1:8888/blank.html"},"phase":1,"source":{"id":25,"type":1},"time":"1250425433","type":91}, -{"params":{"host":"127.0.0.1"},"phase":0,"source":{"id":1,"type":13},"time":"1250425434","type":235}, -{"phase":2,"source":{"id":25,"type":1},"time":"1250425434","type":91}, -{"params":{"load_flags":136446208,"method":"GET","priority":"HIGHEST","url":"http://127.0.0.1:8888/blank.html"},"phase":1,"source":{"id":25,"type":1},"time":"1250425434","type":91}, -{"phase":1,"source":{"id":25,"type":1},"time":"1250425445","type":93}, -{"phase":2,"source":{"id":25,"type":1},"time":"1250425445","type":93}, -{"phase":1,"source":{"id":25,"type":1},"time":"1250425445","type":99}, -{"phase":1,"source":{"id":27,"type":1},"time":"1250426307","type":2}, -{"phase":1,"source":{"id":27,"type":1},"time":"1250426307","type":93}, -{"phase":2,"source":{"id":27,"type":1},"time":"1250426307","type":93}, -{"params":{"load_flags":136446208,"method":"GET","priority":"HIGHEST","url":"chrome-extension://nkeimhogjdpnpccoofpliimaahmaaome/background.html"},"phase":1,"source":{"id":27,"type":1},"time":"1250426308","type":91}, -{"phase":1,"source":{"id":28,"type":1},"time":"1250426308","type":2}, -{"phase":1,"source":{"id":28,"type":1},"time":"1250426308","type":93}, -{"phase":2,"source":{"id":28,"type":1},"time":"1250426308","type":93}, -{"params":{"load_flags":136446208,"method":"GET","priority":"HIGHEST","url":"chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/_generated_background_page.html"},"phase":1,"source":{"id":28,"type":1},"time":"1250426308","type":91}, -{"phase":1,"source":{"id":29,"type":1},"time":"1250426308","type":2}, -{"phase":1,"source":{"id":29,"type":1},"time":"1250426308","type":93}, -{"phase":2,"source":{"id":29,"type":1},"time":"1250426308","type":93}, -{"params":{"load_flags":136446208,"method":"GET","priority":"HIGHEST","url":"chrome-extension://ejfgipfkkpdadoidbhfedneaabgolbno/_generated_background_page.html"},"phase":1,"source":{"id":29,"type":1},"time":"1250426308","type":91}, -{"phase":2,"source":{"id":28,"type":1},"time":"1250426308","type":91}, -{"phase":1,"source":{"id":28,"type":1},"time":"1250426308","type":93}, -{"phase":2,"source":{"id":28,"type":1},"time":"1250426308","type":93}, -{"phase":2,"source":{"id":28,"type":1},"time":"1250426310","type":2}, -{"phase":2,"source":{"id":29,"type":1},"time":"1250426310","type":91}, -{"phase":1,"source":{"id":29,"type":1},"time":"1250426310","type":93}, -{"phase":2,"source":{"id":29,"type":1},"time":"1250426310","type":93}, -{"phase":2,"source":{"id":29,"type":1},"time":"1250426310","type":2}, -{"phase":2,"source":{"id":27,"type":1},"time":"1250426311","type":91}, -{"phase":1,"source":{"id":27,"type":1},"time":"1250426311","type":93}, -{"phase":2,"source":{"id":27,"type":1},"time":"1250426311","type":93}, -{"phase":2,"source":{"id":27,"type":1},"time":"1250426311","type":2}, -{"phase":2,"source":{"id":25,"type":1},"time":"1250426367","type":99}, -{"phase":1,"source":{"id":25,"type":1},"time":"1250426367","type":100}, -{"params":{"net_error":-2},"phase":2,"source":{"id":25,"type":1},"time":"1250426367","type":100}, -{"phase":1,"source":{"id":25,"type":1},"time":"1250426367","type":101}, -{"params":{"created":true,"key":"http://127.0.0.1:8888/blank.html"},"phase":1,"source":{"id":30,"type":10},"time":"1250426367","type":108}, -{"phase":2,"source":{"id":25,"type":1},"time":"1250426367","type":101}, -{"phase":1,"source":{"id":25,"type":1},"time":"1250426367","type":102}, -{"phase":2,"source":{"id":25,"type":1},"time":"1250426367","type":102}, -{"phase":1,"source":{"id":25,"type":1},"time":"1250426367","type":93}, -{"phase":2,"source":{"id":25,"type":1},"time":"1250426367","type":93}, -{"phase":1,"source":{"id":25,"type":1},"time":"1250426367","type":120}, -{"params":{"original_url":"http://127.0.0.1:8888/","priority":"HIGHEST","url":"http://127.0.0.1:8888/"},"phase":1,"source":{"id":31,"type":12},"time":"1250426367","type":121}, -{"phase":1,"source":{"id":31,"type":12},"time":"1250426367","type":24}, -{"params":{"pac_string":"DIRECT"},"phase":0,"source":{"id":31,"type":12},"time":"1250426367","type":26}, -{"phase":2,"source":{"id":31,"type":12},"time":"1250426367","type":24}, -{"params":{"source_dependency":{"id":32,"type":8}},"phase":1,"source":{"id":31,"type":12},"time":"1250426367","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":31,"type":12}},"phase":1,"source":{"id":32,"type":8},"time":"1250426367","type":4}, -{"params":{"source_dependency":{"id":32,"type":8}},"phase":1,"source":{"id":33,"type":20},"time":"1250426367","type":303}, -{"params":{"source_dependency":{"id":33,"type":20}},"phase":1,"source":{"id":34,"type":14},"time":"1250426367","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":34,"type":14},"time":"1250426367","type":71}, -{"phase":2,"source":{"id":34,"type":14},"time":"1250426367","type":71}, -{"params":{"address":"[::ffff:2001:0]:50968"},"phase":0,"source":{"id":34,"type":14},"time":"1250426367","type":72}, -{"phase":2,"source":{"id":34,"type":14},"time":"1250426367","type":34}, -{"phase":2,"source":{"id":33,"type":20},"time":"1250426367","type":303}, -{"phase":0,"source":{"id":32,"type":8},"time":"1250426367","type":5}, -{"phase":2,"source":{"id":32,"type":8},"time":"1250426367","type":4}, -{"phase":2,"source":{"id":31,"type":12},"time":"1250426367","type":3}, -{"params":{"host_and_port":"127.0.0.1:8888"},"phase":0,"source":{"id":31,"type":12},"time":"1250426367","type":85}, -{"phase":1,"source":{"id":31,"type":12},"time":"1250426367","type":81}, -{"params":{"source_dependency":{"id":15,"type":5}},"phase":0,"source":{"id":31,"type":12},"time":"1250426368","type":89}, -{"phase":2,"source":{"id":31,"type":12},"time":"1250426368","type":81}, -{"params":{"source_dependency":{"id":31,"type":12}},"phase":1,"source":{"id":15,"type":5},"time":"1250426368","type":38}, -{"params":{"source_dependency":{"id":31,"type":12}},"phase":0,"source":{"id":25,"type":1},"time":"1250426368","type":122}, -{"params":{"source_dependency":{"id":25,"type":1}},"phase":0,"source":{"id":31,"type":12},"time":"1250426368","type":123}, -{"phase":2,"source":{"id":25,"type":1},"time":"1250426368","type":120}, -{"phase":2,"source":{"id":31,"type":12},"time":"1250426368","type":121}, -{"phase":1,"source":{"id":25,"type":1},"time":"1250426368","type":129}, -{"params":{"headers":["Host: 127.0.0.1:8888","Connection: keep-alive","Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8","User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36","Accept-Encoding: gzip,deflate,sdch","Accept-Language: en-US,en;q=0.8"],"line":"GET /blank.html HTTP/1.1\r\n"},"phase":0,"source":{"id":25,"type":1},"time":"1250426368","type":130}, -{"params":{"byte_count":343},"phase":0,"source":{"id":15,"type":5},"time":"1250426368","type":61}, -{"phase":2,"source":{"id":25,"type":1},"time":"1250426368","type":129}, -{"phase":1,"source":{"id":25,"type":1},"time":"1250426368","type":134}, -{"phase":1,"source":{"id":25,"type":1},"time":"1250426368","type":215}, -{"params":{"byte_count":355},"phase":0,"source":{"id":15,"type":5},"time":"1250426386","type":63}, -{"phase":2,"source":{"id":25,"type":1},"time":"1250426387","type":215}, -{"params":{"headers":["HTTP/1.1 200 OK","Cache: no-cache","Content-Type: text/html"]},"phase":0,"source":{"id":25,"type":1},"time":"1250426387","type":135}, -{"phase":2,"source":{"id":25,"type":1},"time":"1250426387","type":134}, -{"phase":1,"source":{"id":25,"type":1},"time":"1250426387","type":105}, -{"params":{"buf_len":108,"index":0,"offset":0,"truncate":true},"phase":1,"source":{"id":30,"type":10},"time":"1250426387","type":111}, -{"params":{"bytes_copied":108},"phase":2,"source":{"id":30,"type":10},"time":"1250426387","type":111}, -{"phase":2,"source":{"id":25,"type":1},"time":"1250426387","type":105}, -{"phase":1,"source":{"id":25,"type":1},"time":"1250426387","type":107}, -{"params":{"buf_len":0,"index":1,"offset":0,"truncate":true},"phase":1,"source":{"id":30,"type":10},"time":"1250426387","type":111}, -{"params":{"bytes_copied":0},"phase":2,"source":{"id":30,"type":10},"time":"1250426387","type":111}, -{"phase":2,"source":{"id":25,"type":1},"time":"1250426387","type":107}, -{"phase":1,"source":{"id":25,"type":1},"time":"1250426387","type":105}, -{"params":{"buf_len":0,"index":2,"offset":0,"truncate":true},"phase":1,"source":{"id":30,"type":10},"time":"1250426387","type":111}, -{"params":{"bytes_copied":0},"phase":2,"source":{"id":30,"type":10},"time":"1250426387","type":111}, -{"phase":2,"source":{"id":25,"type":1},"time":"1250426387","type":105}, -{"phase":1,"source":{"id":25,"type":1},"time":"1250426387","type":93}, -{"phase":2,"source":{"id":25,"type":1},"time":"1250426387","type":93}, -{"phase":2,"source":{"id":25,"type":1},"time":"1250426387","type":91}, -{"phase":1,"source":{"id":25,"type":1},"time":"1250426387","type":93}, -{"phase":2,"source":{"id":25,"type":1},"time":"1250426387","type":93}, -{"phase":1,"source":{"id":25,"type":1},"time":"1250426387","type":136}, -{"phase":2,"source":{"id":25,"type":1},"time":"1250426387","type":136}, -{"phase":1,"source":{"id":25,"type":1},"time":"1250426387","type":107}, -{"params":{"buf_len":295,"index":1,"offset":0,"truncate":true},"phase":1,"source":{"id":30,"type":10},"time":"1250426387","type":111}, -{"params":{"bytes_copied":295},"phase":2,"source":{"id":30,"type":10},"time":"1250426387","type":111}, -{"phase":2,"source":{"id":25,"type":1},"time":"1250426387","type":107}, -{"phase":1,"source":{"id":25,"type":1},"time":"1250426387","type":136}, -{"params":{"byte_count":0},"phase":0,"source":{"id":15,"type":5},"time":"1250426387","type":63}, -{"phase":0,"source":{"id":15,"type":5},"time":"1250426387","type":67}, -{"phase":2,"source":{"id":15,"type":5},"time":"1250426388","type":38}, -{"phase":2,"source":{"id":15,"type":5},"time":"1250426388","type":34}, -{"phase":2,"source":{"id":25,"type":1},"time":"1250426388","type":136}, -{"phase":1,"source":{"id":25,"type":1},"time":"1250426388","type":107}, -{"phase":2,"source":{"id":25,"type":1},"time":"1250426388","type":107}, -{"phase":2,"source":{"id":25,"type":1},"time":"1250426388","type":2}, -{"phase":0,"source":{"id":30,"type":10},"time":"1250426388","type":118}, -{"phase":2,"source":{"id":30,"type":10},"time":"1250426389","type":108}, -{"phase":1,"source":{"id":35,"type":1},"time":"1250426406","type":2}, -{"phase":1,"source":{"id":35,"type":1},"time":"1250426406","type":93}, -{"phase":2,"source":{"id":35,"type":1},"time":"1250426406","type":93}, -{"params":{"load_flags":134349056,"method":"GET","priority":"LOW","url":"chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/util.js"},"phase":1,"source":{"id":35,"type":1},"time":"1250426407","type":91}, -{"phase":2,"source":{"id":35,"type":1},"time":"1250426407","type":91}, -{"phase":1,"source":{"id":35,"type":1},"time":"1250426407","type":93}, -{"phase":2,"source":{"id":35,"type":1},"time":"1250426407","type":93}, -{"phase":2,"source":{"id":35,"type":1},"time":"1250426407","type":2}, -{"phase":1,"source":{"id":36,"type":1},"time":"1250426418","type":2}, -{"phase":1,"source":{"id":36,"type":1},"time":"1250426418","type":93}, -{"phase":2,"source":{"id":36,"type":1},"time":"1250426418","type":93}, -{"params":{"load_flags":134349056,"method":"GET","priority":"LOW","url":"chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/b64.js"},"phase":1,"source":{"id":36,"type":1},"time":"1250426418","type":91}, -{"phase":2,"source":{"id":36,"type":1},"time":"1250426418","type":91}, -{"phase":1,"source":{"id":36,"type":1},"time":"1250426418","type":93}, -{"phase":2,"source":{"id":36,"type":1},"time":"1250426418","type":93}, -{"phase":2,"source":{"id":36,"type":1},"time":"1250426419","type":2}, -{"phase":1,"source":{"id":37,"type":1},"time":"1250426419","type":2}, -{"phase":1,"source":{"id":37,"type":1},"time":"1250426419","type":93}, -{"phase":2,"source":{"id":37,"type":1},"time":"1250426419","type":93}, -{"params":{"load_flags":134349056,"method":"GET","priority":"LOW","url":"chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/closeable.js"},"phase":1,"source":{"id":37,"type":1},"time":"1250426419","type":91}, -{"phase":2,"source":{"id":37,"type":1},"time":"1250426420","type":91}, -{"phase":1,"source":{"id":37,"type":1},"time":"1250426420","type":93}, -{"phase":2,"source":{"id":37,"type":1},"time":"1250426420","type":93}, -{"phase":2,"source":{"id":37,"type":1},"time":"1250426420","type":2}, -{"phase":1,"source":{"id":38,"type":1},"time":"1250426420","type":2}, -{"phase":1,"source":{"id":38,"type":1},"time":"1250426420","type":93}, -{"phase":2,"source":{"id":38,"type":1},"time":"1250426420","type":93}, -{"params":{"load_flags":134349056,"method":"GET","priority":"LOW","url":"chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/countdown.js"},"phase":1,"source":{"id":38,"type":1},"time":"1250426420","type":91}, -{"phase":2,"source":{"id":38,"type":1},"time":"1250426421","type":91}, -{"phase":1,"source":{"id":38,"type":1},"time":"1250426421","type":93}, -{"phase":2,"source":{"id":38,"type":1},"time":"1250426421","type":93}, -{"phase":2,"source":{"id":38,"type":1},"time":"1250426421","type":2}, -{"phase":1,"source":{"id":39,"type":1},"time":"1250426422","type":2}, -{"phase":1,"source":{"id":39,"type":1},"time":"1250426422","type":93}, -{"phase":2,"source":{"id":39,"type":1},"time":"1250426422","type":93}, -{"params":{"load_flags":134349056,"method":"GET","priority":"LOW","url":"chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/sha256.js"},"phase":1,"source":{"id":39,"type":1},"time":"1250426422","type":91}, -{"phase":2,"source":{"id":39,"type":1},"time":"1250426422","type":91}, -{"phase":1,"source":{"id":39,"type":1},"time":"1250426422","type":93}, -{"phase":2,"source":{"id":39,"type":1},"time":"1250426422","type":93}, -{"phase":2,"source":{"id":39,"type":1},"time":"1250426422","type":2}, -{"phase":1,"source":{"id":40,"type":1},"time":"1250426423","type":2}, -{"phase":1,"source":{"id":40,"type":1},"time":"1250426423","type":93}, -{"phase":2,"source":{"id":40,"type":1},"time":"1250426423","type":93}, -{"params":{"load_flags":134349056,"method":"GET","priority":"LOW","url":"chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/llgnubby.js"},"phase":1,"source":{"id":40,"type":1},"time":"1250426424","type":91}, -{"phase":2,"source":{"id":40,"type":1},"time":"1250426424","type":91}, -{"phase":1,"source":{"id":40,"type":1},"time":"1250426424","type":93}, -{"phase":2,"source":{"id":40,"type":1},"time":"1250426424","type":93}, -{"phase":2,"source":{"id":40,"type":1},"time":"1250426424","type":2}, -{"phase":1,"source":{"id":41,"type":1},"time":"1250426425","type":2}, -{"phase":1,"source":{"id":41,"type":1},"time":"1250426425","type":93}, -{"phase":2,"source":{"id":41,"type":1},"time":"1250426425","type":93}, -{"params":{"load_flags":134349056,"method":"GET","priority":"LOW","url":"chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/llhidgnubby.js"},"phase":1,"source":{"id":41,"type":1},"time":"1250426425","type":91}, -{"phase":2,"source":{"id":41,"type":1},"time":"1250426425","type":91}, -{"phase":1,"source":{"id":41,"type":1},"time":"1250426425","type":93}, -{"phase":2,"source":{"id":41,"type":1},"time":"1250426426","type":93}, -{"phase":2,"source":{"id":41,"type":1},"time":"1250426426","type":2}, -{"phase":1,"source":{"id":42,"type":1},"time":"1250426427","type":2}, -{"phase":1,"source":{"id":42,"type":1},"time":"1250426427","type":93}, -{"phase":2,"source":{"id":42,"type":1},"time":"1250426427","type":93}, -{"params":{"load_flags":134349056,"method":"GET","priority":"LOW","url":"chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/llusbgnubby.js"},"phase":1,"source":{"id":42,"type":1},"time":"1250426427","type":91}, -{"phase":2,"source":{"id":42,"type":1},"time":"1250426427","type":91}, -{"phase":1,"source":{"id":42,"type":1},"time":"1250426427","type":93}, -{"phase":2,"source":{"id":42,"type":1},"time":"1250426427","type":93}, -{"phase":2,"source":{"id":42,"type":1},"time":"1250426427","type":2}, -{"phase":1,"source":{"id":43,"type":1},"time":"1250426428","type":2}, -{"phase":1,"source":{"id":43,"type":1},"time":"1250426428","type":93}, -{"phase":2,"source":{"id":43,"type":1},"time":"1250426428","type":93}, -{"params":{"load_flags":134349056,"method":"GET","priority":"LOW","url":"chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/gnubbies.js"},"phase":1,"source":{"id":43,"type":1},"time":"1250426429","type":91}, -{"phase":2,"source":{"id":43,"type":1},"time":"1250426429","type":91}, -{"phase":1,"source":{"id":43,"type":1},"time":"1250426429","type":93}, -{"phase":2,"source":{"id":43,"type":1},"time":"1250426429","type":93}, -{"phase":2,"source":{"id":43,"type":1},"time":"1250426429","type":2}, -{"phase":1,"source":{"id":44,"type":1},"time":"1250426430","type":2}, -{"phase":1,"source":{"id":44,"type":1},"time":"1250426430","type":93}, -{"phase":2,"source":{"id":44,"type":1},"time":"1250426430","type":93}, -{"params":{"load_flags":134349056,"method":"GET","priority":"LOW","url":"chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/gnubby.js"},"phase":1,"source":{"id":44,"type":1},"time":"1250426430","type":91}, -{"phase":2,"source":{"id":44,"type":1},"time":"1250426430","type":91}, -{"phase":1,"source":{"id":44,"type":1},"time":"1250426430","type":93}, -{"phase":2,"source":{"id":44,"type":1},"time":"1250426430","type":93}, -{"phase":2,"source":{"id":44,"type":1},"time":"1250426430","type":2}, -{"phase":1,"source":{"id":45,"type":1},"time":"1250426432","type":2}, -{"phase":1,"source":{"id":45,"type":1},"time":"1250426432","type":93}, -{"phase":2,"source":{"id":45,"type":1},"time":"1250426432","type":93}, -{"params":{"load_flags":134349056,"method":"GET","priority":"LOW","url":"chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/gnubby-u2f.js"},"phase":1,"source":{"id":45,"type":1},"time":"1250426432","type":91}, -{"phase":2,"source":{"id":45,"type":1},"time":"1250426432","type":91}, -{"phase":1,"source":{"id":45,"type":1},"time":"1250426432","type":93}, -{"phase":2,"source":{"id":45,"type":1},"time":"1250426432","type":93}, -{"phase":2,"source":{"id":45,"type":1},"time":"1250426432","type":2}, -{"phase":1,"source":{"id":46,"type":1},"time":"1250426433","type":2}, -{"phase":1,"source":{"id":46,"type":1},"time":"1250426433","type":93}, -{"phase":2,"source":{"id":46,"type":1},"time":"1250426433","type":93}, -{"params":{"load_flags":134349056,"method":"GET","priority":"LOW","url":"chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/gnubbycodetypes.js"},"phase":1,"source":{"id":46,"type":1},"time":"1250426433","type":91}, -{"phase":2,"source":{"id":46,"type":1},"time":"1250426433","type":91}, -{"phase":1,"source":{"id":46,"type":1},"time":"1250426433","type":93}, -{"phase":2,"source":{"id":46,"type":1},"time":"1250426433","type":93}, -{"phase":2,"source":{"id":46,"type":1},"time":"1250426433","type":2}, -{"phase":1,"source":{"id":47,"type":1},"time":"1250426434","type":2}, -{"phase":1,"source":{"id":47,"type":1},"time":"1250426434","type":93}, -{"phase":2,"source":{"id":47,"type":1},"time":"1250426434","type":93}, -{"params":{"load_flags":134349056,"method":"GET","priority":"LOW","url":"chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/gnubbyfactory.js"},"phase":1,"source":{"id":47,"type":1},"time":"1250426434","type":91}, -{"phase":2,"source":{"id":47,"type":1},"time":"1250426434","type":91}, -{"phase":1,"source":{"id":47,"type":1},"time":"1250426434","type":93}, -{"phase":2,"source":{"id":47,"type":1},"time":"1250426434","type":93}, -{"phase":2,"source":{"id":47,"type":1},"time":"1250426435","type":2}, -{"phase":1,"source":{"id":48,"type":1},"time":"1250426436","type":2}, -{"phase":1,"source":{"id":48,"type":1},"time":"1250426436","type":93}, -{"phase":2,"source":{"id":48,"type":1},"time":"1250426436","type":93}, -{"params":{"load_flags":134349056,"method":"GET","priority":"LOW","url":"chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/gnubbymsgtypes.js"},"phase":1,"source":{"id":48,"type":1},"time":"1250426436","type":91}, -{"phase":2,"source":{"id":48,"type":1},"time":"1250426436","type":91}, -{"phase":1,"source":{"id":48,"type":1},"time":"1250426436","type":93}, -{"phase":2,"source":{"id":48,"type":1},"time":"1250426437","type":93}, -{"phase":2,"source":{"id":48,"type":1},"time":"1250426437","type":2}, -{"phase":1,"source":{"id":49,"type":1},"time":"1250426437","type":2}, -{"phase":1,"source":{"id":49,"type":1},"time":"1250426437","type":93}, -{"phase":2,"source":{"id":49,"type":1},"time":"1250426437","type":93}, -{"params":{"load_flags":134349056,"method":"GET","priority":"LOW","url":"chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/usbgnubbyfactory.js"},"phase":1,"source":{"id":49,"type":1},"time":"1250426437","type":91}, -{"phase":2,"source":{"id":49,"type":1},"time":"1250426437","type":91}, -{"phase":1,"source":{"id":49,"type":1},"time":"1250426437","type":93}, -{"phase":2,"source":{"id":49,"type":1},"time":"1250426438","type":93}, -{"phase":2,"source":{"id":49,"type":1},"time":"1250426438","type":2}, -{"phase":1,"source":{"id":50,"type":1},"time":"1250426438","type":2}, -{"phase":1,"source":{"id":50,"type":1},"time":"1250426438","type":93}, -{"phase":2,"source":{"id":50,"type":1},"time":"1250426438","type":93}, -{"params":{"load_flags":134349056,"method":"GET","priority":"LOW","url":"chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/devicestatuscodes.js"},"phase":1,"source":{"id":50,"type":1},"time":"1250426438","type":91}, -{"phase":2,"source":{"id":50,"type":1},"time":"1250426439","type":91}, -{"phase":1,"source":{"id":50,"type":1},"time":"1250426439","type":93}, -{"phase":2,"source":{"id":50,"type":1},"time":"1250426439","type":93}, -{"phase":2,"source":{"id":50,"type":1},"time":"1250426439","type":2}, -{"phase":1,"source":{"id":51,"type":1},"time":"1250426439","type":2}, -{"phase":1,"source":{"id":51,"type":1},"time":"1250426439","type":93}, -{"phase":2,"source":{"id":51,"type":1},"time":"1250426439","type":93}, -{"params":{"load_flags":134349056,"method":"GET","priority":"LOW","url":"chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/enroller.js"},"phase":1,"source":{"id":51,"type":1},"time":"1250426439","type":91}, -{"phase":2,"source":{"id":51,"type":1},"time":"1250426440","type":91}, -{"phase":1,"source":{"id":51,"type":1},"time":"1250426440","type":93}, -{"phase":2,"source":{"id":51,"type":1},"time":"1250426440","type":93}, -{"phase":2,"source":{"id":51,"type":1},"time":"1250426440","type":2}, -{"phase":1,"source":{"id":52,"type":1},"time":"1250426441","type":2}, -{"phase":1,"source":{"id":52,"type":1},"time":"1250426441","type":93}, -{"phase":2,"source":{"id":52,"type":1},"time":"1250426441","type":93}, -{"params":{"load_flags":134349056,"method":"GET","priority":"LOW","url":"chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/enrollhelper.js"},"phase":1,"source":{"id":52,"type":1},"time":"1250426441","type":91}, -{"phase":2,"source":{"id":52,"type":1},"time":"1250426441","type":91}, -{"phase":1,"source":{"id":52,"type":1},"time":"1250426441","type":93}, -{"phase":2,"source":{"id":52,"type":1},"time":"1250426441","type":93}, -{"phase":2,"source":{"id":52,"type":1},"time":"1250426441","type":2}, -{"phase":1,"source":{"id":53,"type":1},"time":"1250426442","type":2}, -{"phase":1,"source":{"id":53,"type":1},"time":"1250426442","type":93}, -{"phase":2,"source":{"id":53,"type":1},"time":"1250426442","type":93}, -{"params":{"load_flags":134349056,"method":"GET","priority":"LOW","url":"chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/usbenrollhelper.js"},"phase":1,"source":{"id":53,"type":1},"time":"1250426442","type":91}, -{"phase":2,"source":{"id":53,"type":1},"time":"1250426443","type":91}, -{"phase":1,"source":{"id":53,"type":1},"time":"1250426443","type":93}, -{"phase":2,"source":{"id":53,"type":1},"time":"1250426443","type":93}, -{"phase":2,"source":{"id":53,"type":1},"time":"1250426443","type":2}, -{"phase":1,"source":{"id":54,"type":1},"time":"1250426444","type":2}, -{"phase":1,"source":{"id":54,"type":1},"time":"1250426444","type":93}, -{"phase":2,"source":{"id":54,"type":1},"time":"1250426444","type":93}, -{"params":{"load_flags":134349056,"method":"GET","priority":"LOW","url":"chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/requestqueue.js"},"phase":1,"source":{"id":54,"type":1},"time":"1250426444","type":91}, -{"phase":2,"source":{"id":54,"type":1},"time":"1250426444","type":91}, -{"phase":1,"source":{"id":54,"type":1},"time":"1250426444","type":93}, -{"phase":2,"source":{"id":54,"type":1},"time":"1250426444","type":93}, -{"phase":2,"source":{"id":54,"type":1},"time":"1250426444","type":2}, -{"phase":1,"source":{"id":55,"type":1},"time":"1250426445","type":2}, -{"phase":1,"source":{"id":55,"type":1},"time":"1250426445","type":93}, -{"phase":2,"source":{"id":55,"type":1},"time":"1250426445","type":93}, -{"params":{"load_flags":134349056,"method":"GET","priority":"LOW","url":"chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/signer.js"},"phase":1,"source":{"id":55,"type":1},"time":"1250426445","type":91}, -{"phase":2,"source":{"id":55,"type":1},"time":"1250426445","type":91}, -{"phase":1,"source":{"id":55,"type":1},"time":"1250426446","type":93}, -{"phase":2,"source":{"id":55,"type":1},"time":"1250426446","type":93}, -{"phase":2,"source":{"id":55,"type":1},"time":"1250426446","type":2}, -{"phase":1,"source":{"id":56,"type":1},"time":"1250426447","type":2}, -{"phase":1,"source":{"id":56,"type":1},"time":"1250426447","type":93}, -{"phase":2,"source":{"id":56,"type":1},"time":"1250426447","type":93}, -{"params":{"load_flags":134349056,"method":"GET","priority":"LOW","url":"chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/signhelper.js"},"phase":1,"source":{"id":56,"type":1},"time":"1250426447","type":91}, -{"phase":2,"source":{"id":56,"type":1},"time":"1250426447","type":91}, -{"phase":1,"source":{"id":56,"type":1},"time":"1250426447","type":93}, -{"phase":2,"source":{"id":56,"type":1},"time":"1250426447","type":93}, -{"phase":2,"source":{"id":56,"type":1},"time":"1250426447","type":2}, -{"phase":1,"source":{"id":57,"type":1},"time":"1250426448","type":2}, -{"phase":1,"source":{"id":57,"type":1},"time":"1250426448","type":93}, -{"phase":2,"source":{"id":57,"type":1},"time":"1250426448","type":93}, -{"params":{"load_flags":134349056,"method":"GET","priority":"LOW","url":"chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/singlesigner.js"},"phase":1,"source":{"id":57,"type":1},"time":"1250426448","type":91}, -{"phase":2,"source":{"id":57,"type":1},"time":"1250426448","type":91}, -{"phase":1,"source":{"id":57,"type":1},"time":"1250426448","type":93}, -{"phase":2,"source":{"id":57,"type":1},"time":"1250426448","type":93}, -{"phase":2,"source":{"id":57,"type":1},"time":"1250426448","type":2}, -{"phase":1,"source":{"id":58,"type":1},"time":"1250426449","type":2}, -{"phase":1,"source":{"id":58,"type":1},"time":"1250426449","type":93}, -{"phase":2,"source":{"id":58,"type":1},"time":"1250426449","type":93}, -{"params":{"load_flags":134349056,"method":"GET","priority":"LOW","url":"chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/multiplesigner.js"},"phase":1,"source":{"id":58,"type":1},"time":"1250426449","type":91}, -{"phase":2,"source":{"id":58,"type":1},"time":"1250426450","type":91}, -{"phase":1,"source":{"id":58,"type":1},"time":"1250426450","type":93}, -{"phase":2,"source":{"id":58,"type":1},"time":"1250426450","type":93}, -{"phase":2,"source":{"id":58,"type":1},"time":"1250426450","type":2}, -{"phase":1,"source":{"id":59,"type":1},"time":"1250426450","type":2}, -{"phase":1,"source":{"id":59,"type":1},"time":"1250426450","type":93}, -{"phase":2,"source":{"id":59,"type":1},"time":"1250426450","type":93}, -{"params":{"load_flags":134349056,"method":"GET","priority":"LOW","url":"chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/usbsignhelper.js"},"phase":1,"source":{"id":59,"type":1},"time":"1250426451","type":91}, -{"phase":2,"source":{"id":59,"type":1},"time":"1250426451","type":91}, -{"phase":1,"source":{"id":59,"type":1},"time":"1250426451","type":93}, -{"phase":2,"source":{"id":59,"type":1},"time":"1250426451","type":93}, -{"phase":2,"source":{"id":59,"type":1},"time":"1250426451","type":2}, -{"phase":1,"source":{"id":60,"type":1},"time":"1250426452","type":2}, -{"phase":1,"source":{"id":60,"type":1},"time":"1250426452","type":93}, -{"phase":2,"source":{"id":60,"type":1},"time":"1250426452","type":93}, -{"params":{"load_flags":134349056,"method":"GET","priority":"LOW","url":"chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/webrequest.js"},"phase":1,"source":{"id":60,"type":1},"time":"1250426452","type":91}, -{"phase":2,"source":{"id":60,"type":1},"time":"1250426452","type":91}, -{"phase":1,"source":{"id":60,"type":1},"time":"1250426452","type":93}, -{"phase":2,"source":{"id":60,"type":1},"time":"1250426452","type":93}, -{"phase":2,"source":{"id":60,"type":1},"time":"1250426452","type":2}, -{"phase":1,"source":{"id":61,"type":1},"time":"1250426453","type":2}, -{"phase":1,"source":{"id":61,"type":1},"time":"1250426453","type":93}, -{"phase":2,"source":{"id":61,"type":1},"time":"1250426453","type":93}, -{"params":{"load_flags":134349056,"method":"GET","priority":"LOW","url":"chrome-extension://kmendfapggjehodndflmmgagdbamhnfd/background.js"},"phase":1,"source":{"id":61,"type":1},"time":"1250426453","type":91}, -{"phase":2,"source":{"id":61,"type":1},"time":"1250426454","type":91}, -{"phase":1,"source":{"id":61,"type":1},"time":"1250426454","type":93}, -{"phase":2,"source":{"id":61,"type":1},"time":"1250426454","type":93}, -{"phase":2,"source":{"id":61,"type":1},"time":"1250426454","type":2}, -{"phase":1,"source":{"id":62,"type":1},"time":"1250426479","type":2}, -{"phase":1,"source":{"id":62,"type":1},"time":"1250426479","type":93}, -{"phase":2,"source":{"id":62,"type":1},"time":"1250426479","type":93}, -{"params":{"load_flags":134349056,"method":"GET","priority":"LOW","url":"chrome-extension://ejfgipfkkpdadoidbhfedneaabgolbno/wpt/background.js"},"phase":1,"source":{"id":62,"type":1},"time":"1250426479","type":91}, -{"phase":2,"source":{"id":62,"type":1},"time":"1250426480","type":91}, -{"phase":1,"source":{"id":62,"type":1},"time":"1250426480","type":93}, -{"phase":2,"source":{"id":62,"type":1},"time":"1250426480","type":93}, -{"phase":2,"source":{"id":62,"type":1},"time":"1250426481","type":2}, -{"phase":1,"source":{"id":63,"type":1},"time":"1250426548","type":2}, -{"phase":1,"source":{"id":63,"type":1},"time":"1250426548","type":93}, -{"phase":2,"source":{"id":63,"type":1},"time":"1250426548","type":93}, -{"params":{"load_flags":134349056,"method":"GET","priority":"LOW","url":"chrome-extension://ejfgipfkkpdadoidbhfedneaabgolbno/deps.js"},"phase":1,"source":{"id":63,"type":1},"time":"1250426548","type":91}, -{"params":{"net_error":-6},"phase":0,"source":{"id":63,"type":1},"time":"1250426548","type":1}, -{"params":{"net_error":-6},"phase":2,"source":{"id":63,"type":1},"time":"1250426548","type":91}, -{"phase":1,"source":{"id":63,"type":1},"time":"1250426548","type":93}, -{"phase":2,"source":{"id":63,"type":1},"time":"1250426548","type":93}, -{"params":{"net_error":-6},"phase":2,"source":{"id":63,"type":1},"time":"1250426548","type":2}, -{"phase":1,"source":{"id":64,"type":1},"time":"1250426558","type":2}, -{"phase":1,"source":{"id":64,"type":1},"time":"1250426558","type":93}, -{"phase":2,"source":{"id":64,"type":1},"time":"1250426558","type":93}, -{"params":{"load_flags":134349056,"method":"GET","priority":"LOW","url":"chrome-extension://nkeimhogjdpnpccoofpliimaahmaaome/startup.js"},"phase":1,"source":{"id":64,"type":1},"time":"1250426559","type":91}, -{"params":{"net_error":-6},"phase":0,"source":{"id":64,"type":1},"time":"1250426559","type":1}, -{"params":{"net_error":-6},"phase":2,"source":{"id":64,"type":1},"time":"1250426559","type":91}, -{"phase":1,"source":{"id":64,"type":1},"time":"1250426559","type":93}, -{"phase":2,"source":{"id":64,"type":1},"time":"1250426559","type":93}, -{"params":{"net_error":-6},"phase":2,"source":{"id":64,"type":1},"time":"1250426559","type":2}, -{"phase":1,"source":{"id":65,"type":1},"time":"1250426559","type":2}, -{"phase":1,"source":{"id":65,"type":1},"time":"1250426560","type":93}, -{"phase":2,"source":{"id":65,"type":1},"time":"1250426560","type":93}, -{"params":{"load_flags":134349056,"method":"GET","priority":"LOW","url":"chrome-extension://nkeimhogjdpnpccoofpliimaahmaaome/thunk.js"},"phase":1,"source":{"id":65,"type":1},"time":"1250426560","type":91}, -{"phase":2,"source":{"id":65,"type":1},"time":"1250426560","type":91}, -{"phase":1,"source":{"id":65,"type":1},"time":"1250426560","type":93}, -{"phase":2,"source":{"id":65,"type":1},"time":"1250426560","type":93}, -{"phase":2,"source":{"id":65,"type":1},"time":"1250426560","type":2}, -{"phase":1,"source":{"id":66,"type":1},"time":"1250426583","type":2}, -{"phase":1,"source":{"id":66,"type":1},"time":"1250426583","type":93}, -{"phase":2,"source":{"id":66,"type":1},"time":"1250426583","type":93}, -{"params":{"load_flags":136446208,"method":"GET","priority":"HIGHEST","url":"chrome-extension://ennkphjdgehloodpbhlhldgbnhmacadg/_generated_background_page.html"},"phase":1,"source":{"id":66,"type":1},"time":"1250426583","type":91}, -{"phase":2,"source":{"id":66,"type":1},"time":"1250426583","type":91}, -{"phase":1,"source":{"id":66,"type":1},"time":"1250426583","type":93}, -{"phase":2,"source":{"id":66,"type":1},"time":"1250426583","type":93}, -{"phase":2,"source":{"id":66,"type":1},"time":"1250426583","type":2}, -{"phase":1,"source":{"id":67,"type":1},"time":"1250426712","type":2}, -{"phase":1,"source":{"id":67,"type":1},"time":"1250426712","type":93}, -{"phase":2,"source":{"id":67,"type":1},"time":"1250426712","type":93}, -{"params":{"load_flags":201457920,"method":"GET","priority":"LOWEST","url":"http://127.0.0.1:8888/favicon.ico"},"phase":1,"source":{"id":67,"type":1},"time":"1250426712","type":91}, -{"phase":1,"source":{"id":67,"type":1},"time":"1250426713","type":93}, -{"phase":2,"source":{"id":67,"type":1},"time":"1250426713","type":93}, -{"phase":1,"source":{"id":67,"type":1},"time":"1250426713","type":99}, -{"phase":2,"source":{"id":67,"type":1},"time":"1250426713","type":99}, -{"phase":1,"source":{"id":67,"type":1},"time":"1250426713","type":100}, -{"params":{"net_error":-2},"phase":2,"source":{"id":67,"type":1},"time":"1250426713","type":100}, -{"phase":1,"source":{"id":67,"type":1},"time":"1250426713","type":101}, -{"params":{"created":true,"key":"http://127.0.0.1:8888/favicon.ico"},"phase":1,"source":{"id":69,"type":10},"time":"1250426713","type":108}, -{"phase":2,"source":{"id":67,"type":1},"time":"1250426717","type":101}, -{"phase":1,"source":{"id":67,"type":1},"time":"1250426717","type":102}, -{"phase":2,"source":{"id":67,"type":1},"time":"1250426717","type":102}, -{"phase":1,"source":{"id":67,"type":1},"time":"1250426717","type":93}, -{"phase":2,"source":{"id":67,"type":1},"time":"1250426717","type":93}, -{"phase":1,"source":{"id":67,"type":1},"time":"1250426717","type":120}, -{"params":{"original_url":"http://127.0.0.1:8888/","priority":"LOWEST","url":"http://127.0.0.1:8888/"},"phase":1,"source":{"id":70,"type":12},"time":"1250426717","type":121}, -{"phase":1,"source":{"id":70,"type":12},"time":"1250426717","type":24}, -{"params":{"pac_string":"DIRECT"},"phase":0,"source":{"id":70,"type":12},"time":"1250426717","type":26}, -{"phase":2,"source":{"id":70,"type":12},"time":"1250426717","type":24}, -{"params":{"source_dependency":{"id":71,"type":8}},"phase":1,"source":{"id":70,"type":12},"time":"1250426717","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":70,"type":12}},"phase":1,"source":{"id":71,"type":8},"time":"1250426717","type":4}, -{"params":{"source_dependency":{"id":71,"type":8}},"phase":1,"source":{"id":72,"type":20},"time":"1250426717","type":303}, -{"params":{"source_dependency":{"id":72,"type":20}},"phase":1,"source":{"id":73,"type":14},"time":"1250426717","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":73,"type":14},"time":"1250426717","type":71}, -{"phase":2,"source":{"id":73,"type":14},"time":"1250426717","type":71}, -{"params":{"address":"[::ffff:2001:0]:50969"},"phase":0,"source":{"id":73,"type":14},"time":"1250426717","type":72}, -{"phase":2,"source":{"id":73,"type":14},"time":"1250426717","type":34}, -{"phase":2,"source":{"id":72,"type":20},"time":"1250426717","type":303}, -{"phase":0,"source":{"id":71,"type":8},"time":"1250426717","type":5}, -{"phase":2,"source":{"id":71,"type":8},"time":"1250426717","type":4}, -{"phase":2,"source":{"id":70,"type":12},"time":"1250426717","type":3}, -{"params":{"host_and_port":"127.0.0.1:8888"},"phase":0,"source":{"id":70,"type":12},"time":"1250426717","type":85}, -{"phase":1,"source":{"id":70,"type":12},"time":"1250426717","type":81}, -{"params":{"source_dependency":{"id":24,"type":5}},"phase":0,"source":{"id":70,"type":12},"time":"1250426717","type":89}, -{"phase":2,"source":{"id":70,"type":12},"time":"1250426717","type":81}, -{"params":{"source_dependency":{"id":70,"type":12}},"phase":1,"source":{"id":24,"type":5},"time":"1250426717","type":38}, -{"params":{"source_dependency":{"id":70,"type":12}},"phase":0,"source":{"id":67,"type":1},"time":"1250426717","type":122}, -{"params":{"source_dependency":{"id":67,"type":1}},"phase":0,"source":{"id":70,"type":12},"time":"1250426717","type":123}, -{"phase":2,"source":{"id":67,"type":1},"time":"1250426717","type":120}, -{"phase":2,"source":{"id":70,"type":12},"time":"1250426717","type":121}, -{"phase":1,"source":{"id":67,"type":1},"time":"1250426717","type":129}, -{"params":{"headers":["Host: 127.0.0.1:8888","Connection: keep-alive","Accept: */*","User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36","Accept-Encoding: gzip,deflate,sdch","Accept-Language: en-US,en;q=0.8"],"line":"GET /favicon.ico HTTP/1.1\r\n"},"phase":0,"source":{"id":67,"type":1},"time":"1250426717","type":130}, -{"params":{"byte_count":273},"phase":0,"source":{"id":24,"type":5},"time":"1250426717","type":61}, -{"phase":2,"source":{"id":67,"type":1},"time":"1250426717","type":129}, -{"phase":1,"source":{"id":67,"type":1},"time":"1250426717","type":134}, -{"phase":1,"source":{"id":67,"type":1},"time":"1250426717","type":215}, -{"params":{"byte_count":181},"phase":0,"source":{"id":24,"type":5},"time":"1250426718","type":63}, -{"phase":2,"source":{"id":67,"type":1},"time":"1250426718","type":215}, -{"params":{"headers":["HTTP/1.1 200 OK","Server: wptdriver","Cache: no-cache","Pragma: no-cache","Content-Type: application/json","Content-Length: 56"]},"phase":0,"source":{"id":67,"type":1},"time":"1250426718","type":135}, -{"phase":2,"source":{"id":67,"type":1},"time":"1250426718","type":134}, -{"phase":1,"source":{"id":67,"type":1},"time":"1250426718","type":105}, -{"params":{"buf_len":172,"index":0,"offset":0,"truncate":true},"phase":1,"source":{"id":69,"type":10},"time":"1250426718","type":111}, -{"params":{"bytes_copied":172},"phase":2,"source":{"id":69,"type":10},"time":"1250426718","type":111}, -{"phase":2,"source":{"id":67,"type":1},"time":"1250426718","type":105}, -{"phase":1,"source":{"id":67,"type":1},"time":"1250426718","type":107}, -{"params":{"buf_len":0,"index":1,"offset":0,"truncate":true},"phase":1,"source":{"id":69,"type":10},"time":"1250426718","type":111}, -{"params":{"bytes_copied":0},"phase":2,"source":{"id":69,"type":10},"time":"1250426718","type":111}, -{"phase":2,"source":{"id":67,"type":1},"time":"1250426718","type":107}, -{"phase":1,"source":{"id":67,"type":1},"time":"1250426718","type":105}, -{"params":{"buf_len":0,"index":2,"offset":0,"truncate":true},"phase":1,"source":{"id":69,"type":10},"time":"1250426718","type":111}, -{"params":{"bytes_copied":0},"phase":2,"source":{"id":69,"type":10},"time":"1250426718","type":111}, -{"phase":2,"source":{"id":67,"type":1},"time":"1250426718","type":105}, -{"phase":1,"source":{"id":67,"type":1},"time":"1250426718","type":93}, -{"phase":2,"source":{"id":67,"type":1},"time":"1250426718","type":93}, -{"phase":2,"source":{"id":67,"type":1},"time":"1250426718","type":91}, -{"phase":1,"source":{"id":67,"type":1},"time":"1250426718","type":93}, -{"phase":2,"source":{"id":67,"type":1},"time":"1250426718","type":93}, -{"phase":1,"source":{"id":67,"type":1},"time":"1250426718","type":136}, -{"phase":2,"source":{"id":67,"type":1},"time":"1250426718","type":136}, -{"phase":1,"source":{"id":67,"type":1},"time":"1250426718","type":107}, -{"params":{"buf_len":56,"index":1,"offset":0,"truncate":true},"phase":1,"source":{"id":69,"type":10},"time":"1250426718","type":111}, -{"params":{"bytes_copied":56},"phase":2,"source":{"id":69,"type":10},"time":"1250426718","type":111}, -{"phase":2,"source":{"id":67,"type":1},"time":"1250426718","type":107}, -{"phase":1,"source":{"id":67,"type":1},"time":"1250426718","type":136}, -{"phase":2,"source":{"id":24,"type":5},"time":"1250426718","type":38}, -{"phase":0,"source":{"id":24,"type":5},"time":"1250426718","type":67}, -{"phase":2,"source":{"id":24,"type":5},"time":"1250426718","type":34}, -{"phase":2,"source":{"id":67,"type":1},"time":"1250426718","type":136}, -{"phase":1,"source":{"id":67,"type":1},"time":"1250426718","type":107}, -{"phase":2,"source":{"id":67,"type":1},"time":"1250426718","type":107}, -{"phase":2,"source":{"id":67,"type":1},"time":"1250426719","type":2}, -{"phase":0,"source":{"id":69,"type":10},"time":"1250426719","type":118}, -{"phase":2,"source":{"id":69,"type":10},"time":"1250426719","type":108}, -{"phase":1,"source":{"id":74,"type":1},"time":"1250426904","type":2}, -{"phase":1,"source":{"id":74,"type":1},"time":"1250426904","type":93}, -{"phase":2,"source":{"id":74,"type":1},"time":"1250426905","type":93}, -{"params":{"load_flags":134349056,"method":"POST","priority":"LOW","url":"http://127.0.0.1:8888/event/load?timestamp=1273.9999999757856&fixedViewport=1"},"phase":1,"source":{"id":74,"type":1},"time":"1250426905","type":91}, -{"phase":1,"source":{"id":74,"type":1},"time":"1250426905","type":93}, -{"phase":2,"source":{"id":74,"type":1},"time":"1250426905","type":93}, -{"phase":1,"source":{"id":74,"type":1},"time":"1250426905","type":99}, -{"phase":2,"source":{"id":74,"type":1},"time":"1250426905","type":99}, -{"phase":1,"source":{"id":74,"type":1},"time":"1250426905","type":93}, -{"phase":2,"source":{"id":74,"type":1},"time":"1250426905","type":93}, -{"phase":1,"source":{"id":74,"type":1},"time":"1250426905","type":120}, -{"params":{"original_url":"http://127.0.0.1:8888/","priority":"LOW","url":"http://127.0.0.1:8888/"},"phase":1,"source":{"id":76,"type":12},"time":"1250426905","type":121}, -{"phase":1,"source":{"id":76,"type":12},"time":"1250426905","type":24}, -{"params":{"pac_string":"DIRECT"},"phase":0,"source":{"id":76,"type":12},"time":"1250426905","type":26}, -{"phase":2,"source":{"id":76,"type":12},"time":"1250426905","type":24}, -{"params":{"source_dependency":{"id":77,"type":8}},"phase":1,"source":{"id":76,"type":12},"time":"1250426905","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":76,"type":12}},"phase":1,"source":{"id":77,"type":8},"time":"1250426905","type":4}, -{"params":{"source_dependency":{"id":77,"type":8}},"phase":1,"source":{"id":78,"type":20},"time":"1250426905","type":303}, -{"params":{"source_dependency":{"id":78,"type":20}},"phase":1,"source":{"id":79,"type":14},"time":"1250426905","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":79,"type":14},"time":"1250426905","type":71}, -{"phase":2,"source":{"id":79,"type":14},"time":"1250426905","type":71}, -{"params":{"address":"[::ffff:2001:0]:50970"},"phase":0,"source":{"id":79,"type":14},"time":"1250426905","type":72}, -{"phase":2,"source":{"id":79,"type":14},"time":"1250426905","type":34}, -{"phase":2,"source":{"id":78,"type":20},"time":"1250426905","type":303}, -{"phase":0,"source":{"id":77,"type":8},"time":"1250426905","type":5}, -{"phase":2,"source":{"id":77,"type":8},"time":"1250426905","type":4}, -{"phase":2,"source":{"id":76,"type":12},"time":"1250426905","type":3}, -{"params":{"host_and_port":"127.0.0.1:8888"},"phase":0,"source":{"id":76,"type":12},"time":"1250426905","type":85}, -{"phase":1,"source":{"id":76,"type":12},"time":"1250426905","type":81}, -{"params":{"group_name":"127.0.0.1:8888"},"phase":1,"source":{"id":80,"type":4},"time":"1250426905","type":77}, -{"phase":1,"source":{"id":80,"type":4},"time":"1250426905","type":78}, -{"params":{"source_dependency":{"id":81,"type":8}},"phase":1,"source":{"id":80,"type":4},"time":"1250426905","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":80,"type":4}},"phase":1,"source":{"id":81,"type":8},"time":"1250426905","type":4}, -{"params":{"source_dependency":{"id":81,"type":8}},"phase":1,"source":{"id":82,"type":20},"time":"1250426906","type":303}, -{"params":{"source_dependency":{"id":82,"type":20}},"phase":1,"source":{"id":83,"type":14},"time":"1250426906","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":83,"type":14},"time":"1250426906","type":71}, -{"phase":2,"source":{"id":83,"type":14},"time":"1250426906","type":71}, -{"params":{"address":"[::ffff:2001:0]:50971"},"phase":0,"source":{"id":83,"type":14},"time":"1250426906","type":72}, -{"phase":2,"source":{"id":83,"type":14},"time":"1250426906","type":34}, -{"phase":2,"source":{"id":82,"type":20},"time":"1250426906","type":303}, -{"phase":0,"source":{"id":81,"type":8},"time":"1250426906","type":5}, -{"phase":2,"source":{"id":81,"type":8},"time":"1250426906","type":4}, -{"phase":2,"source":{"id":80,"type":4},"time":"1250426906","type":3}, -{"params":{"source_dependency":{"id":80,"type":4}},"phase":1,"source":{"id":84,"type":5},"time":"1250426906","type":34}, -{"params":{"address_list":["127.0.0.1:8888"]},"phase":1,"source":{"id":84,"type":5},"time":"1250426906","type":35}, -{"params":{"address":"127.0.0.1:8888"},"phase":1,"source":{"id":84,"type":5},"time":"1250426906","type":36}, -{"phase":2,"source":{"id":84,"type":5},"time":"1250426906","type":36}, -{"params":{"source_address":"127.0.0.1:50982"},"phase":2,"source":{"id":84,"type":5},"time":"1250426906","type":35}, -{"params":{"source_dependency":{"id":84,"type":5}},"phase":0,"source":{"id":80,"type":4},"time":"1250426906","type":79}, -{"phase":2,"source":{"id":80,"type":4},"time":"1250426906","type":78}, -{"phase":2,"source":{"id":80,"type":4},"time":"1250426906","type":77}, -{"params":{"source_dependency":{"id":80,"type":4}},"phase":0,"source":{"id":76,"type":12},"time":"1250426906","type":88}, -{"params":{"source_dependency":{"id":84,"type":5}},"phase":0,"source":{"id":76,"type":12},"time":"1250426906","type":89}, -{"phase":2,"source":{"id":76,"type":12},"time":"1250426906","type":81}, -{"params":{"source_dependency":{"id":76,"type":12}},"phase":1,"source":{"id":84,"type":5},"time":"1250426906","type":38}, -{"params":{"source_dependency":{"id":76,"type":12}},"phase":0,"source":{"id":74,"type":1},"time":"1250426906","type":122}, -{"params":{"source_dependency":{"id":74,"type":1}},"phase":0,"source":{"id":76,"type":12},"time":"1250426906","type":123}, -{"phase":2,"source":{"id":74,"type":1},"time":"1250426906","type":120}, -{"phase":2,"source":{"id":76,"type":12},"time":"1250426906","type":121}, -{"phase":1,"source":{"id":74,"type":1},"time":"1250426907","type":129}, -{"params":{"headers":["Host: 127.0.0.1:8888","Connection: keep-alive","Content-Length: 0","User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36","Origin: chrome-extension://ejfgipfkkpdadoidbhfedneaabgolbno","Accept: */*","Accept-Encoding: gzip,deflate","Accept-Language: en-US,en;q=0.8"],"line":"POST /event/load?timestamp=1273.9999999757856&fixedViewport=1 HTTP/1.1\r\n"},"phase":0,"source":{"id":74,"type":1},"time":"1250426907","type":130}, -{"params":{"byte_count":393},"phase":0,"source":{"id":84,"type":5},"time":"1250426907","type":61}, -{"phase":2,"source":{"id":74,"type":1},"time":"1250426907","type":129}, -{"phase":1,"source":{"id":74,"type":1},"time":"1250426907","type":134}, -{"phase":1,"source":{"id":74,"type":1},"time":"1250426907","type":215}, -{"params":{"byte_count":161},"phase":0,"source":{"id":84,"type":5},"time":"1250426907","type":63}, -{"phase":2,"source":{"id":74,"type":1},"time":"1250426907","type":215}, -{"params":{"headers":["HTTP/1.1 200 OK","Server: wptdriver","Cache: no-cache","Pragma: no-cache","Content-Type: application/json","Content-Length: 36"]},"phase":0,"source":{"id":74,"type":1},"time":"1250426907","type":135}, -{"phase":2,"source":{"id":74,"type":1},"time":"1250426907","type":134}, -{"phase":1,"source":{"id":74,"type":1},"time":"1250426907","type":93}, -{"phase":2,"source":{"id":74,"type":1},"time":"1250426907","type":93}, -{"phase":2,"source":{"id":74,"type":1},"time":"1250426907","type":91}, -{"phase":1,"source":{"id":74,"type":1},"time":"1250426907","type":93}, -{"phase":2,"source":{"id":74,"type":1},"time":"1250426907","type":93}, -{"phase":1,"source":{"id":74,"type":1},"time":"1250426907","type":136}, -{"phase":2,"source":{"id":74,"type":1},"time":"1250426907","type":136}, -{"phase":1,"source":{"id":74,"type":1},"time":"1250426907","type":136}, -{"phase":2,"source":{"id":84,"type":5},"time":"1250426907","type":38}, -{"phase":0,"source":{"id":84,"type":5},"time":"1250426907","type":67}, -{"phase":2,"source":{"id":84,"type":5},"time":"1250426908","type":34}, -{"phase":2,"source":{"id":74,"type":1},"time":"1250426908","type":136}, -{"phase":2,"source":{"id":74,"type":1},"time":"1250426908","type":2}, -{"phase":1,"source":{"id":85,"type":1},"time":"1250426922","type":2}, -{"phase":1,"source":{"id":85,"type":1},"time":"1250426922","type":93}, -{"phase":2,"source":{"id":85,"type":1},"time":"1250426922","type":93}, -{"params":{"load_flags":134349056,"method":"GET","priority":"LOW","url":"chrome-extension://ennkphjdgehloodpbhlhldgbnhmacadg/settings_app.js"},"phase":1,"source":{"id":85,"type":1},"time":"1250426922","type":91}, -{"phase":2,"source":{"id":85,"type":1},"time":"1250426923","type":91}, -{"phase":1,"source":{"id":85,"type":1},"time":"1250426923","type":93}, -{"phase":2,"source":{"id":85,"type":1},"time":"1250426923","type":93}, -{"phase":2,"source":{"id":85,"type":1},"time":"1250426923","type":2}, -{"phase":1,"source":{"id":86,"type":1},"time":"1250426953","type":2}, -{"phase":1,"source":{"id":86,"type":1},"time":"1250426953","type":93}, -{"phase":2,"source":{"id":86,"type":1},"time":"1250426953","type":93}, -{"params":{"load_flags":136446208,"method":"GET","priority":"HIGHEST","url":"chrome-extension://gfdkimpbcpahaombhbimeihdjnejgicl/_generated_background_page.html"},"phase":1,"source":{"id":86,"type":1},"time":"1250426953","type":91}, -{"phase":2,"source":{"id":86,"type":1},"time":"1250426953","type":91}, -{"phase":1,"source":{"id":86,"type":1},"time":"1250426953","type":93}, -{"phase":2,"source":{"id":86,"type":1},"time":"1250426953","type":93}, -{"phase":2,"source":{"id":86,"type":1},"time":"1250426953","type":2}, -{"phase":1,"source":{"id":87,"type":1},"time":"1250427211","type":2}, -{"phase":1,"source":{"id":87,"type":1},"time":"1250427211","type":93}, -{"phase":2,"source":{"id":87,"type":1},"time":"1250427211","type":93}, -{"params":{"load_flags":136446208,"method":"GET","priority":"HIGHEST","url":"chrome-extension://neajdppkdcdipfabeoofebfddakdcjhd/_generated_background_page.html"},"phase":1,"source":{"id":87,"type":1},"time":"1250427211","type":91}, -{"phase":2,"source":{"id":87,"type":1},"time":"1250427211","type":91}, -{"phase":1,"source":{"id":87,"type":1},"time":"1250427211","type":93}, -{"phase":2,"source":{"id":87,"type":1},"time":"1250427211","type":93}, -{"phase":2,"source":{"id":87,"type":1},"time":"1250427211","type":2}, -{"phase":1,"source":{"id":88,"type":1},"time":"1250427211","type":2}, -{"phase":1,"source":{"id":88,"type":1},"time":"1250427211","type":93}, -{"phase":2,"source":{"id":88,"type":1},"time":"1250427211","type":93}, -{"params":{"load_flags":134349056,"method":"GET","priority":"LOW","url":"chrome-extension://gfdkimpbcpahaombhbimeihdjnejgicl/js/event_handler.js"},"phase":1,"source":{"id":88,"type":1},"time":"1250427211","type":91}, -{"phase":2,"source":{"id":88,"type":1},"time":"1250427213","type":91}, -{"phase":1,"source":{"id":88,"type":1},"time":"1250427213","type":93}, -{"phase":2,"source":{"id":88,"type":1},"time":"1250427213","type":93}, -{"phase":2,"source":{"id":88,"type":1},"time":"1250427213","type":2}, -{"phase":1,"source":{"id":89,"type":1},"time":"1250427434","type":2}, -{"phase":1,"source":{"id":89,"type":1},"time":"1250427435","type":93}, -{"phase":2,"source":{"id":89,"type":1},"time":"1250427435","type":93}, -{"params":{"load_flags":134349056,"method":"GET","priority":"LOW","url":"chrome-extension://neajdppkdcdipfabeoofebfddakdcjhd/tts_extension.js"},"phase":1,"source":{"id":89,"type":1},"time":"1250427435","type":91}, -{"phase":2,"source":{"id":89,"type":1},"time":"1250427435","type":91}, -{"phase":1,"source":{"id":89,"type":1},"time":"1250427435","type":93}, -{"phase":2,"source":{"id":89,"type":1},"time":"1250427435","type":93}, -{"phase":2,"source":{"id":89,"type":1},"time":"1250427435","type":2}, -{"params":{"original_url":"http://127.0.0.1:8888/","priority":"HIGHEST","url":"http://127.0.0.1:8888/"},"phase":1,"source":{"id":90,"type":12},"time":"1250427676","type":121}, -{"phase":1,"source":{"id":90,"type":12},"time":"1250427676","type":24}, -{"params":{"pac_string":"DIRECT"},"phase":0,"source":{"id":90,"type":12},"time":"1250427676","type":26}, -{"phase":2,"source":{"id":90,"type":12},"time":"1250427676","type":24}, -{"params":{"source_dependency":{"id":91,"type":8}},"phase":1,"source":{"id":90,"type":12},"time":"1250427676","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":90,"type":12}},"phase":1,"source":{"id":91,"type":8},"time":"1250427676","type":4}, -{"params":{"source_dependency":{"id":91,"type":8}},"phase":1,"source":{"id":92,"type":20},"time":"1250427676","type":303}, -{"params":{"source_dependency":{"id":92,"type":20}},"phase":1,"source":{"id":93,"type":14},"time":"1250427676","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":93,"type":14},"time":"1250427676","type":71}, -{"phase":2,"source":{"id":93,"type":14},"time":"1250427676","type":71}, -{"params":{"address":"[::ffff:2001:0]:50972"},"phase":0,"source":{"id":93,"type":14},"time":"1250427676","type":72}, -{"phase":2,"source":{"id":93,"type":14},"time":"1250427676","type":34}, -{"phase":2,"source":{"id":92,"type":20},"time":"1250427676","type":303}, -{"phase":0,"source":{"id":91,"type":8},"time":"1250427676","type":5}, -{"phase":2,"source":{"id":91,"type":8},"time":"1250427676","type":4}, -{"phase":2,"source":{"id":90,"type":12},"time":"1250427676","type":3}, -{"params":{"host_and_port":"127.0.0.1:8888"},"phase":0,"source":{"id":90,"type":12},"time":"1250427676","type":86}, -{"params":{"num_sockets":1},"phase":1,"source":{"id":90,"type":12},"time":"1250427676","type":90}, -{"params":{"group_name":"127.0.0.1:8888"},"phase":1,"source":{"id":94,"type":4},"time":"1250427676","type":77}, -{"phase":1,"source":{"id":94,"type":4},"time":"1250427677","type":78}, -{"params":{"source_dependency":{"id":95,"type":8}},"phase":1,"source":{"id":94,"type":4},"time":"1250427677","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":94,"type":4}},"phase":1,"source":{"id":95,"type":8},"time":"1250427677","type":4}, -{"params":{"source_dependency":{"id":95,"type":8}},"phase":1,"source":{"id":96,"type":20},"time":"1250427677","type":303}, -{"params":{"source_dependency":{"id":96,"type":20}},"phase":1,"source":{"id":97,"type":14},"time":"1250427677","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":97,"type":14},"time":"1250427677","type":71}, -{"phase":2,"source":{"id":97,"type":14},"time":"1250427677","type":71}, -{"params":{"address":"[::ffff:2001:0]:50973"},"phase":0,"source":{"id":97,"type":14},"time":"1250427677","type":72}, -{"phase":2,"source":{"id":97,"type":14},"time":"1250427677","type":34}, -{"phase":2,"source":{"id":96,"type":20},"time":"1250427677","type":303}, -{"phase":0,"source":{"id":95,"type":8},"time":"1250427677","type":5}, -{"phase":2,"source":{"id":95,"type":8},"time":"1250427677","type":4}, -{"phase":2,"source":{"id":94,"type":4},"time":"1250427677","type":3}, -{"params":{"source_dependency":{"id":94,"type":4}},"phase":1,"source":{"id":98,"type":5},"time":"1250427677","type":34}, -{"params":{"address_list":["127.0.0.1:8888"]},"phase":1,"source":{"id":98,"type":5},"time":"1250427677","type":35}, -{"params":{"address":"127.0.0.1:8888"},"phase":1,"source":{"id":98,"type":5},"time":"1250427677","type":36}, -{"phase":2,"source":{"id":90,"type":12},"time":"1250427677","type":90}, -{"params":{"original_url":"http://127.0.0.1:8888/","priority":"HIGHEST","url":"http://127.0.0.1:8888/"},"phase":1,"source":{"id":99,"type":12},"time":"1250427677","type":121}, -{"phase":1,"source":{"id":99,"type":12},"time":"1250427677","type":24}, -{"params":{"pac_string":"DIRECT"},"phase":0,"source":{"id":99,"type":12},"time":"1250427677","type":26}, -{"phase":2,"source":{"id":99,"type":12},"time":"1250427677","type":24}, -{"params":{"source_dependency":{"id":100,"type":8}},"phase":1,"source":{"id":99,"type":12},"time":"1250427677","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":99,"type":12}},"phase":1,"source":{"id":100,"type":8},"time":"1250427677","type":4}, -{"params":{"source_dependency":{"id":100,"type":8}},"phase":1,"source":{"id":101,"type":20},"time":"1250427677","type":303}, -{"params":{"source_dependency":{"id":101,"type":20}},"phase":1,"source":{"id":102,"type":14},"time":"1250427677","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":102,"type":14},"time":"1250427677","type":71}, -{"phase":2,"source":{"id":102,"type":14},"time":"1250427678","type":71}, -{"params":{"address":"[::ffff:2001:0]:50974"},"phase":0,"source":{"id":102,"type":14},"time":"1250427678","type":72}, -{"phase":2,"source":{"id":102,"type":14},"time":"1250427678","type":34}, -{"phase":2,"source":{"id":101,"type":20},"time":"1250427678","type":303}, -{"phase":0,"source":{"id":100,"type":8},"time":"1250427678","type":5}, -{"phase":2,"source":{"id":100,"type":8},"time":"1250427678","type":4}, -{"phase":2,"source":{"id":99,"type":12},"time":"1250427678","type":3}, -{"params":{"host_and_port":"127.0.0.1:8888"},"phase":0,"source":{"id":99,"type":12},"time":"1250427678","type":86}, -{"params":{"num_sockets":2},"phase":1,"source":{"id":99,"type":12},"time":"1250427678","type":90}, -{"params":{"group_name":"127.0.0.1:8888"},"phase":1,"source":{"id":103,"type":4},"time":"1250427678","type":77}, -{"phase":1,"source":{"id":103,"type":4},"time":"1250427678","type":78}, -{"params":{"source_dependency":{"id":104,"type":8}},"phase":1,"source":{"id":103,"type":4},"time":"1250427678","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":103,"type":4}},"phase":1,"source":{"id":104,"type":8},"time":"1250427678","type":4}, -{"params":{"source_dependency":{"id":104,"type":8}},"phase":1,"source":{"id":105,"type":20},"time":"1250427678","type":303}, -{"params":{"source_dependency":{"id":105,"type":20}},"phase":1,"source":{"id":106,"type":14},"time":"1250427678","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":106,"type":14},"time":"1250427678","type":71}, -{"phase":2,"source":{"id":106,"type":14},"time":"1250427678","type":71}, -{"params":{"address":"[::ffff:2001:0]:50975"},"phase":0,"source":{"id":106,"type":14},"time":"1250427678","type":72}, -{"phase":2,"source":{"id":106,"type":14},"time":"1250427678","type":34}, -{"phase":2,"source":{"id":105,"type":20},"time":"1250427678","type":303}, -{"phase":0,"source":{"id":104,"type":8},"time":"1250427678","type":5}, -{"phase":2,"source":{"id":104,"type":8},"time":"1250427678","type":4}, -{"phase":2,"source":{"id":103,"type":4},"time":"1250427678","type":3}, -{"params":{"source_dependency":{"id":103,"type":4}},"phase":1,"source":{"id":107,"type":5},"time":"1250427678","type":34}, -{"params":{"address_list":["127.0.0.1:8888"]},"phase":1,"source":{"id":107,"type":5},"time":"1250427678","type":35}, -{"params":{"address":"127.0.0.1:8888"},"phase":1,"source":{"id":107,"type":5},"time":"1250427678","type":36}, -{"phase":2,"source":{"id":99,"type":12},"time":"1250427678","type":90}, -{"phase":2,"source":{"id":90,"type":12},"time":"1250427678","type":121}, -{"phase":2,"source":{"id":99,"type":12},"time":"1250427678","type":121}, -{"phase":2,"source":{"id":98,"type":5},"time":"1250427678","type":36}, -{"params":{"source_address":"127.0.0.1:50983"},"phase":2,"source":{"id":98,"type":5},"time":"1250427678","type":35}, -{"params":{"source_dependency":{"id":98,"type":5}},"phase":0,"source":{"id":94,"type":4},"time":"1250427678","type":79}, -{"phase":2,"source":{"id":94,"type":4},"time":"1250427678","type":78}, -{"phase":2,"source":{"id":94,"type":4},"time":"1250427678","type":77}, -{"phase":2,"source":{"id":107,"type":5},"time":"1250427678","type":36}, -{"params":{"source_address":"127.0.0.1:50984"},"phase":2,"source":{"id":107,"type":5},"time":"1250427678","type":35}, -{"params":{"source_dependency":{"id":107,"type":5}},"phase":0,"source":{"id":103,"type":4},"time":"1250427678","type":79}, -{"phase":2,"source":{"id":103,"type":4},"time":"1250427678","type":78}, -{"phase":2,"source":{"id":103,"type":4},"time":"1250427678","type":77}, -{"phase":1,"source":{"id":108,"type":1},"time":"1250427679","type":2}, -{"phase":1,"source":{"id":108,"type":1},"time":"1250427679","type":93}, -{"phase":2,"source":{"id":108,"type":1},"time":"1250427679","type":93}, -{"params":{"load_flags":10617088,"method":"GET","priority":"HIGHEST","url":"http://127.0.0.1:8888/blank2.html"},"phase":1,"source":{"id":108,"type":1},"time":"1250427680","type":91}, -{"phase":2,"source":{"id":108,"type":1},"time":"1250427680","type":91}, -{"params":{"load_flags":10617088,"method":"GET","priority":"HIGHEST","url":"http://127.0.0.1:8888/blank2.html"},"phase":1,"source":{"id":108,"type":1},"time":"1250427680","type":91}, -{"phase":1,"source":{"id":108,"type":1},"time":"1250427680","type":93}, -{"phase":2,"source":{"id":108,"type":1},"time":"1250427680","type":93}, -{"phase":1,"source":{"id":108,"type":1},"time":"1250427680","type":99}, -{"phase":2,"source":{"id":108,"type":1},"time":"1250427680","type":99}, -{"phase":1,"source":{"id":108,"type":1},"time":"1250427680","type":100}, -{"params":{"net_error":-2},"phase":2,"source":{"id":108,"type":1},"time":"1250427680","type":100}, -{"phase":1,"source":{"id":108,"type":1},"time":"1250427680","type":101}, -{"params":{"created":true,"key":"http://127.0.0.1:8888/blank2.html"},"phase":1,"source":{"id":110,"type":10},"time":"1250427680","type":108}, -{"phase":2,"source":{"id":108,"type":1},"time":"1250427681","type":101}, -{"phase":1,"source":{"id":108,"type":1},"time":"1250427681","type":102}, -{"phase":2,"source":{"id":108,"type":1},"time":"1250427681","type":102}, -{"phase":1,"source":{"id":108,"type":1},"time":"1250427681","type":93}, -{"phase":2,"source":{"id":108,"type":1},"time":"1250427681","type":93}, -{"phase":1,"source":{"id":108,"type":1},"time":"1250427681","type":120}, -{"params":{"original_url":"http://127.0.0.1:8888/","priority":"HIGHEST","url":"http://127.0.0.1:8888/"},"phase":1,"source":{"id":111,"type":12},"time":"1250427681","type":121}, -{"phase":1,"source":{"id":111,"type":12},"time":"1250427681","type":24}, -{"params":{"pac_string":"DIRECT"},"phase":0,"source":{"id":111,"type":12},"time":"1250427681","type":26}, -{"phase":2,"source":{"id":111,"type":12},"time":"1250427681","type":24}, -{"params":{"source_dependency":{"id":112,"type":8}},"phase":1,"source":{"id":111,"type":12},"time":"1250427681","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":111,"type":12}},"phase":1,"source":{"id":112,"type":8},"time":"1250427681","type":4}, -{"params":{"source_dependency":{"id":112,"type":8}},"phase":1,"source":{"id":113,"type":20},"time":"1250427681","type":303}, -{"params":{"source_dependency":{"id":113,"type":20}},"phase":1,"source":{"id":114,"type":14},"time":"1250427681","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":114,"type":14},"time":"1250427681","type":71}, -{"phase":2,"source":{"id":114,"type":14},"time":"1250427681","type":71}, -{"params":{"address":"[::ffff:2001:0]:50976"},"phase":0,"source":{"id":114,"type":14},"time":"1250427681","type":72}, -{"phase":2,"source":{"id":114,"type":14},"time":"1250427681","type":34}, -{"phase":2,"source":{"id":113,"type":20},"time":"1250427681","type":303}, -{"phase":0,"source":{"id":112,"type":8},"time":"1250427681","type":5}, -{"phase":2,"source":{"id":112,"type":8},"time":"1250427681","type":4}, -{"phase":2,"source":{"id":111,"type":12},"time":"1250427681","type":3}, -{"params":{"host_and_port":"127.0.0.1:8888"},"phase":0,"source":{"id":111,"type":12},"time":"1250427681","type":85}, -{"phase":1,"source":{"id":111,"type":12},"time":"1250427681","type":81}, -{"params":{"source_dependency":{"id":98,"type":5}},"phase":0,"source":{"id":111,"type":12},"time":"1250427681","type":89}, -{"phase":2,"source":{"id":111,"type":12},"time":"1250427681","type":81}, -{"params":{"source_dependency":{"id":111,"type":12}},"phase":1,"source":{"id":98,"type":5},"time":"1250427681","type":38}, -{"params":{"source_dependency":{"id":111,"type":12}},"phase":0,"source":{"id":108,"type":1},"time":"1250427681","type":122}, -{"params":{"source_dependency":{"id":108,"type":1}},"phase":0,"source":{"id":111,"type":12},"time":"1250427681","type":123}, -{"phase":2,"source":{"id":108,"type":1},"time":"1250427681","type":120}, -{"phase":2,"source":{"id":111,"type":12},"time":"1250427681","type":121}, -{"phase":1,"source":{"id":108,"type":1},"time":"1250427681","type":129}, -{"params":{"headers":["Host: 127.0.0.1:8888","Connection: keep-alive","Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8","User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36","Accept-Encoding: gzip,deflate,sdch","Accept-Language: en-US,en;q=0.8"],"line":"GET /blank2.html HTTP/1.1\r\n"},"phase":0,"source":{"id":108,"type":1},"time":"1250427681","type":130}, -{"params":{"byte_count":344},"phase":0,"source":{"id":98,"type":5},"time":"1250427681","type":61}, -{"phase":2,"source":{"id":108,"type":1},"time":"1250427681","type":129}, -{"phase":1,"source":{"id":108,"type":1},"time":"1250427681","type":134}, -{"phase":1,"source":{"id":108,"type":1},"time":"1250427681","type":215}, -{"params":{"byte_count":355},"phase":0,"source":{"id":98,"type":5},"time":"1250427682","type":63}, -{"phase":2,"source":{"id":108,"type":1},"time":"1250427682","type":215}, -{"params":{"headers":["HTTP/1.1 200 OK","Cache: no-cache","Content-Type: text/html"]},"phase":0,"source":{"id":108,"type":1},"time":"1250427682","type":135}, -{"phase":2,"source":{"id":108,"type":1},"time":"1250427682","type":134}, -{"phase":1,"source":{"id":108,"type":1},"time":"1250427682","type":105}, -{"params":{"buf_len":108,"index":0,"offset":0,"truncate":true},"phase":1,"source":{"id":110,"type":10},"time":"1250427682","type":111}, -{"params":{"bytes_copied":108},"phase":2,"source":{"id":110,"type":10},"time":"1250427682","type":111}, -{"phase":2,"source":{"id":108,"type":1},"time":"1250427682","type":105}, -{"phase":1,"source":{"id":108,"type":1},"time":"1250427682","type":107}, -{"params":{"buf_len":0,"index":1,"offset":0,"truncate":true},"phase":1,"source":{"id":110,"type":10},"time":"1250427682","type":111}, -{"params":{"bytes_copied":0},"phase":2,"source":{"id":110,"type":10},"time":"1250427682","type":111}, -{"phase":2,"source":{"id":108,"type":1},"time":"1250427682","type":107}, -{"phase":1,"source":{"id":108,"type":1},"time":"1250427682","type":105}, -{"params":{"buf_len":0,"index":2,"offset":0,"truncate":true},"phase":1,"source":{"id":110,"type":10},"time":"1250427682","type":111}, -{"params":{"bytes_copied":0},"phase":2,"source":{"id":110,"type":10},"time":"1250427682","type":111}, -{"phase":2,"source":{"id":108,"type":1},"time":"1250427682","type":105}, -{"phase":1,"source":{"id":108,"type":1},"time":"1250427682","type":93}, -{"phase":2,"source":{"id":108,"type":1},"time":"1250427682","type":93}, -{"phase":2,"source":{"id":108,"type":1},"time":"1250427682","type":91}, -{"phase":1,"source":{"id":108,"type":1},"time":"1250427682","type":93}, -{"phase":2,"source":{"id":108,"type":1},"time":"1250427682","type":93}, -{"phase":1,"source":{"id":108,"type":1},"time":"1250427682","type":136}, -{"phase":2,"source":{"id":108,"type":1},"time":"1250427682","type":136}, -{"phase":1,"source":{"id":108,"type":1},"time":"1250427682","type":107}, -{"params":{"buf_len":295,"index":1,"offset":0,"truncate":true},"phase":1,"source":{"id":110,"type":10},"time":"1250427682","type":111}, -{"params":{"bytes_copied":295},"phase":2,"source":{"id":110,"type":10},"time":"1250427682","type":111}, -{"phase":2,"source":{"id":108,"type":1},"time":"1250427682","type":107}, -{"phase":1,"source":{"id":108,"type":1},"time":"1250427682","type":136}, -{"params":{"byte_count":0},"phase":0,"source":{"id":98,"type":5},"time":"1250427682","type":63}, -{"phase":0,"source":{"id":98,"type":5},"time":"1250427682","type":67}, -{"phase":2,"source":{"id":98,"type":5},"time":"1250427682","type":38}, -{"phase":2,"source":{"id":98,"type":5},"time":"1250427682","type":34}, -{"phase":2,"source":{"id":108,"type":1},"time":"1250427682","type":136}, -{"phase":1,"source":{"id":108,"type":1},"time":"1250427682","type":107}, -{"phase":2,"source":{"id":108,"type":1},"time":"1250427682","type":107}, -{"phase":2,"source":{"id":108,"type":1},"time":"1250427683","type":2}, -{"phase":0,"source":{"id":110,"type":10},"time":"1250427683","type":118}, -{"phase":2,"source":{"id":110,"type":10},"time":"1250427683","type":108}, -{"phase":1,"source":{"id":115,"type":1},"time":"1250427772","type":2}, -{"phase":1,"source":{"id":115,"type":1},"time":"1250427772","type":93}, -{"phase":2,"source":{"id":115,"type":1},"time":"1250427772","type":93}, -{"params":{"load_flags":67240192,"method":"GET","priority":"LOWEST","url":"http://127.0.0.1:8888/favicon.ico"},"phase":1,"source":{"id":115,"type":1},"time":"1250427772","type":91}, -{"phase":1,"source":{"id":115,"type":1},"time":"1250427773","type":93}, -{"phase":2,"source":{"id":115,"type":1},"time":"1250427773","type":93}, -{"phase":1,"source":{"id":115,"type":1},"time":"1250427773","type":99}, -{"phase":2,"source":{"id":115,"type":1},"time":"1250427773","type":99}, -{"phase":1,"source":{"id":115,"type":1},"time":"1250427773","type":100}, -{"params":{"created":false,"key":"http://127.0.0.1:8888/favicon.ico"},"phase":1,"source":{"id":116,"type":10},"time":"1250427773","type":108}, -{"phase":2,"source":{"id":115,"type":1},"time":"1250427773","type":100}, -{"phase":1,"source":{"id":115,"type":1},"time":"1250427773","type":102}, -{"phase":2,"source":{"id":115,"type":1},"time":"1250427773","type":102}, -{"phase":1,"source":{"id":115,"type":1},"time":"1250427773","type":104}, -{"params":{"buf_len":172,"index":0,"offset":0},"phase":1,"source":{"id":116,"type":10},"time":"1250427773","type":110}, -{"params":{"bytes_copied":172},"phase":2,"source":{"id":116,"type":10},"time":"1250427773","type":110}, -{"phase":2,"source":{"id":115,"type":1},"time":"1250427773","type":104}, -{"phase":1,"source":{"id":115,"type":1},"time":"1250427773","type":93}, -{"phase":2,"source":{"id":115,"type":1},"time":"1250427773","type":93}, -{"phase":1,"source":{"id":115,"type":1},"time":"1250427773","type":120}, -{"params":{"original_url":"http://127.0.0.1:8888/","priority":"LOWEST","url":"http://127.0.0.1:8888/"},"phase":1,"source":{"id":117,"type":12},"time":"1250427773","type":121}, -{"phase":1,"source":{"id":117,"type":12},"time":"1250427773","type":24}, -{"params":{"pac_string":"DIRECT"},"phase":0,"source":{"id":117,"type":12},"time":"1250427773","type":26}, -{"phase":2,"source":{"id":117,"type":12},"time":"1250427773","type":24}, -{"params":{"source_dependency":{"id":118,"type":8}},"phase":1,"source":{"id":117,"type":12},"time":"1250427773","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":117,"type":12}},"phase":1,"source":{"id":118,"type":8},"time":"1250427773","type":4}, -{"params":{"source_dependency":{"id":118,"type":8}},"phase":1,"source":{"id":119,"type":20},"time":"1250427773","type":303}, -{"params":{"source_dependency":{"id":119,"type":20}},"phase":1,"source":{"id":120,"type":14},"time":"1250427773","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":120,"type":14},"time":"1250427773","type":71}, -{"phase":2,"source":{"id":120,"type":14},"time":"1250427774","type":71}, -{"params":{"address":"[::ffff:2001:0]:50977"},"phase":0,"source":{"id":120,"type":14},"time":"1250427774","type":72}, -{"phase":2,"source":{"id":120,"type":14},"time":"1250427774","type":34}, -{"phase":2,"source":{"id":119,"type":20},"time":"1250427774","type":303}, -{"phase":0,"source":{"id":118,"type":8},"time":"1250427774","type":5}, -{"phase":2,"source":{"id":118,"type":8},"time":"1250427774","type":4}, -{"phase":2,"source":{"id":117,"type":12},"time":"1250427774","type":3}, -{"params":{"host_and_port":"127.0.0.1:8888"},"phase":0,"source":{"id":117,"type":12},"time":"1250427774","type":85}, -{"phase":1,"source":{"id":117,"type":12},"time":"1250427774","type":81}, -{"params":{"source_dependency":{"id":107,"type":5}},"phase":0,"source":{"id":117,"type":12},"time":"1250427774","type":89}, -{"phase":2,"source":{"id":117,"type":12},"time":"1250427774","type":81}, -{"params":{"source_dependency":{"id":117,"type":12}},"phase":1,"source":{"id":107,"type":5},"time":"1250427774","type":38}, -{"params":{"source_dependency":{"id":117,"type":12}},"phase":0,"source":{"id":115,"type":1},"time":"1250427774","type":122}, -{"params":{"source_dependency":{"id":115,"type":1}},"phase":0,"source":{"id":117,"type":12},"time":"1250427774","type":123}, -{"phase":2,"source":{"id":115,"type":1},"time":"1250427774","type":120}, -{"phase":2,"source":{"id":117,"type":12},"time":"1250427774","type":121}, -{"phase":1,"source":{"id":115,"type":1},"time":"1250427774","type":129}, -{"params":{"headers":["Host: 127.0.0.1:8888","Connection: keep-alive","Accept: */*","User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36","Accept-Encoding: gzip,deflate,sdch","Accept-Language: en-US,en;q=0.8"],"line":"GET /favicon.ico HTTP/1.1\r\n"},"phase":0,"source":{"id":115,"type":1},"time":"1250427774","type":130}, -{"params":{"byte_count":273},"phase":0,"source":{"id":107,"type":5},"time":"1250427774","type":61}, -{"phase":2,"source":{"id":115,"type":1},"time":"1250427774","type":129}, -{"phase":1,"source":{"id":115,"type":1},"time":"1250427774","type":134}, -{"phase":1,"source":{"id":115,"type":1},"time":"1250427774","type":215}, -{"params":{"byte_count":181},"phase":0,"source":{"id":107,"type":5},"time":"1250427774","type":63}, -{"phase":2,"source":{"id":115,"type":1},"time":"1250427774","type":215}, -{"params":{"headers":["HTTP/1.1 200 OK","Server: wptdriver","Cache: no-cache","Pragma: no-cache","Content-Type: application/json","Content-Length: 56"]},"phase":0,"source":{"id":115,"type":1},"time":"1250427774","type":135}, -{"phase":2,"source":{"id":115,"type":1},"time":"1250427774","type":134}, -{"phase":1,"source":{"id":115,"type":1},"time":"1250427774","type":105}, -{"params":{"buf_len":172,"index":0,"offset":0,"truncate":true},"phase":1,"source":{"id":116,"type":10},"time":"1250427774","type":111}, -{"params":{"bytes_copied":172},"phase":2,"source":{"id":116,"type":10},"time":"1250427774","type":111}, -{"phase":2,"source":{"id":115,"type":1},"time":"1250427774","type":105}, -{"phase":1,"source":{"id":115,"type":1},"time":"1250427774","type":107}, -{"params":{"buf_len":0,"index":1,"offset":0,"truncate":true},"phase":1,"source":{"id":116,"type":10},"time":"1250427774","type":111}, -{"params":{"bytes_copied":0},"phase":2,"source":{"id":116,"type":10},"time":"1250427774","type":111}, -{"phase":2,"source":{"id":115,"type":1},"time":"1250427774","type":107}, -{"phase":1,"source":{"id":115,"type":1},"time":"1250427774","type":105}, -{"params":{"buf_len":0,"index":2,"offset":0,"truncate":true},"phase":1,"source":{"id":116,"type":10},"time":"1250427774","type":111}, -{"params":{"bytes_copied":0},"phase":2,"source":{"id":116,"type":10},"time":"1250427774","type":111}, -{"phase":2,"source":{"id":115,"type":1},"time":"1250427774","type":105}, -{"phase":1,"source":{"id":115,"type":1},"time":"1250427775","type":93}, -{"phase":2,"source":{"id":115,"type":1},"time":"1250427775","type":93}, -{"phase":2,"source":{"id":115,"type":1},"time":"1250427775","type":91}, -{"phase":1,"source":{"id":115,"type":1},"time":"1250427775","type":93}, -{"phase":2,"source":{"id":115,"type":1},"time":"1250427775","type":93}, -{"phase":1,"source":{"id":115,"type":1},"time":"1250427775","type":136}, -{"phase":2,"source":{"id":115,"type":1},"time":"1250427775","type":136}, -{"phase":1,"source":{"id":115,"type":1},"time":"1250427775","type":107}, -{"params":{"buf_len":56,"index":1,"offset":0,"truncate":true},"phase":1,"source":{"id":116,"type":10},"time":"1250427775","type":111}, -{"params":{"bytes_copied":56},"phase":2,"source":{"id":116,"type":10},"time":"1250427775","type":111}, -{"phase":2,"source":{"id":115,"type":1},"time":"1250427775","type":107}, -{"phase":1,"source":{"id":115,"type":1},"time":"1250427775","type":136}, -{"phase":2,"source":{"id":107,"type":5},"time":"1250427775","type":38}, -{"phase":0,"source":{"id":107,"type":5},"time":"1250427775","type":67}, -{"phase":2,"source":{"id":107,"type":5},"time":"1250427775","type":34}, -{"phase":2,"source":{"id":115,"type":1},"time":"1250427775","type":136}, -{"phase":1,"source":{"id":115,"type":1},"time":"1250427775","type":107}, -{"phase":2,"source":{"id":115,"type":1},"time":"1250427775","type":107}, -{"phase":2,"source":{"id":115,"type":1},"time":"1250427775","type":2}, -{"phase":0,"source":{"id":116,"type":10},"time":"1250427775","type":118}, -{"phase":2,"source":{"id":116,"type":10},"time":"1250427775","type":108}, -{"phase":1,"source":{"id":121,"type":1},"time":"1250427784","type":2}, -{"phase":1,"source":{"id":121,"type":1},"time":"1250427784","type":93}, -{"phase":2,"source":{"id":121,"type":1},"time":"1250427784","type":93}, -{"params":{"load_flags":131328,"method":"POST","priority":"LOW","url":"http://127.0.0.1:8888/event/load?timestamp=81.99999993667006&fixedViewport=1"},"phase":1,"source":{"id":121,"type":1},"time":"1250427784","type":91}, -{"phase":1,"source":{"id":121,"type":1},"time":"1250427785","type":93}, -{"phase":2,"source":{"id":121,"type":1},"time":"1250427785","type":93}, -{"phase":1,"source":{"id":121,"type":1},"time":"1250427785","type":99}, -{"phase":2,"source":{"id":121,"type":1},"time":"1250427785","type":99}, -{"phase":1,"source":{"id":121,"type":1},"time":"1250427785","type":93}, -{"phase":2,"source":{"id":121,"type":1},"time":"1250427785","type":93}, -{"phase":1,"source":{"id":121,"type":1},"time":"1250427785","type":120}, -{"params":{"original_url":"http://127.0.0.1:8888/","priority":"LOW","url":"http://127.0.0.1:8888/"},"phase":1,"source":{"id":122,"type":12},"time":"1250427785","type":121}, -{"phase":1,"source":{"id":122,"type":12},"time":"1250427785","type":24}, -{"params":{"pac_string":"DIRECT"},"phase":0,"source":{"id":122,"type":12},"time":"1250427785","type":26}, -{"phase":2,"source":{"id":122,"type":12},"time":"1250427785","type":24}, -{"params":{"source_dependency":{"id":123,"type":8}},"phase":1,"source":{"id":122,"type":12},"time":"1250427785","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":122,"type":12}},"phase":1,"source":{"id":123,"type":8},"time":"1250427785","type":4}, -{"params":{"source_dependency":{"id":123,"type":8}},"phase":1,"source":{"id":124,"type":20},"time":"1250427785","type":303}, -{"params":{"source_dependency":{"id":124,"type":20}},"phase":1,"source":{"id":125,"type":14},"time":"1250427785","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":125,"type":14},"time":"1250427785","type":71}, -{"phase":2,"source":{"id":125,"type":14},"time":"1250427785","type":71}, -{"params":{"address":"[::ffff:2001:0]:50978"},"phase":0,"source":{"id":125,"type":14},"time":"1250427785","type":72}, -{"phase":2,"source":{"id":125,"type":14},"time":"1250427785","type":34}, -{"phase":2,"source":{"id":124,"type":20},"time":"1250427785","type":303}, -{"phase":0,"source":{"id":123,"type":8},"time":"1250427785","type":5}, -{"phase":2,"source":{"id":123,"type":8},"time":"1250427785","type":4}, -{"phase":2,"source":{"id":122,"type":12},"time":"1250427785","type":3}, -{"params":{"host_and_port":"127.0.0.1:8888"},"phase":0,"source":{"id":122,"type":12},"time":"1250427785","type":85}, -{"phase":1,"source":{"id":122,"type":12},"time":"1250427785","type":81}, -{"params":{"group_name":"127.0.0.1:8888"},"phase":1,"source":{"id":126,"type":4},"time":"1250427785","type":77}, -{"phase":1,"source":{"id":126,"type":4},"time":"1250427785","type":78}, -{"params":{"source_dependency":{"id":127,"type":8}},"phase":1,"source":{"id":126,"type":4},"time":"1250427785","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":126,"type":4}},"phase":1,"source":{"id":127,"type":8},"time":"1250427785","type":4}, -{"params":{"source_dependency":{"id":127,"type":8}},"phase":1,"source":{"id":128,"type":20},"time":"1250427785","type":303}, -{"params":{"source_dependency":{"id":128,"type":20}},"phase":1,"source":{"id":129,"type":14},"time":"1250427785","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":129,"type":14},"time":"1250427785","type":71}, -{"phase":2,"source":{"id":129,"type":14},"time":"1250427785","type":71}, -{"params":{"address":"[::ffff:2001:0]:50979"},"phase":0,"source":{"id":129,"type":14},"time":"1250427785","type":72}, -{"phase":2,"source":{"id":129,"type":14},"time":"1250427785","type":34}, -{"phase":2,"source":{"id":128,"type":20},"time":"1250427785","type":303}, -{"phase":0,"source":{"id":127,"type":8},"time":"1250427785","type":5}, -{"phase":2,"source":{"id":127,"type":8},"time":"1250427785","type":4}, -{"phase":2,"source":{"id":126,"type":4},"time":"1250427785","type":3}, -{"params":{"source_dependency":{"id":126,"type":4}},"phase":1,"source":{"id":130,"type":5},"time":"1250427785","type":34}, -{"params":{"address_list":["127.0.0.1:8888"]},"phase":1,"source":{"id":130,"type":5},"time":"1250427785","type":35}, -{"params":{"address":"127.0.0.1:8888"},"phase":1,"source":{"id":130,"type":5},"time":"1250427786","type":36}, -{"phase":2,"source":{"id":130,"type":5},"time":"1250427786","type":36}, -{"params":{"source_address":"127.0.0.1:50985"},"phase":2,"source":{"id":130,"type":5},"time":"1250427786","type":35}, -{"params":{"source_dependency":{"id":130,"type":5}},"phase":0,"source":{"id":126,"type":4},"time":"1250427786","type":79}, -{"phase":2,"source":{"id":126,"type":4},"time":"1250427786","type":78}, -{"phase":2,"source":{"id":126,"type":4},"time":"1250427786","type":77}, -{"params":{"source_dependency":{"id":126,"type":4}},"phase":0,"source":{"id":122,"type":12},"time":"1250427786","type":88}, -{"params":{"source_dependency":{"id":130,"type":5}},"phase":0,"source":{"id":122,"type":12},"time":"1250427786","type":89}, -{"phase":2,"source":{"id":122,"type":12},"time":"1250427786","type":81}, -{"params":{"source_dependency":{"id":122,"type":12}},"phase":1,"source":{"id":130,"type":5},"time":"1250427786","type":38}, -{"params":{"source_dependency":{"id":122,"type":12}},"phase":0,"source":{"id":121,"type":1},"time":"1250427786","type":122}, -{"params":{"source_dependency":{"id":121,"type":1}},"phase":0,"source":{"id":122,"type":12},"time":"1250427786","type":123}, -{"phase":2,"source":{"id":121,"type":1},"time":"1250427786","type":120}, -{"phase":2,"source":{"id":122,"type":12},"time":"1250427786","type":121}, -{"phase":1,"source":{"id":121,"type":1},"time":"1250427786","type":129}, -{"params":{"headers":["Host: 127.0.0.1:8888","Connection: keep-alive","Content-Length: 0","User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36","Origin: chrome-extension://ejfgipfkkpdadoidbhfedneaabgolbno","Accept: */*","Accept-Encoding: gzip,deflate","Accept-Language: en-US,en;q=0.8"],"line":"POST /event/load?timestamp=81.99999993667006&fixedViewport=1 HTTP/1.1\r\n"},"phase":0,"source":{"id":121,"type":1},"time":"1250427786","type":130}, -{"params":{"byte_count":392},"phase":0,"source":{"id":130,"type":5},"time":"1250427786","type":61}, -{"phase":2,"source":{"id":121,"type":1},"time":"1250427786","type":129}, -{"phase":1,"source":{"id":121,"type":1},"time":"1250427786","type":134}, -{"phase":1,"source":{"id":121,"type":1},"time":"1250427786","type":215}, -{"params":{"byte_count":161},"phase":0,"source":{"id":130,"type":5},"time":"1250427786","type":63}, -{"phase":2,"source":{"id":121,"type":1},"time":"1250427786","type":215}, -{"params":{"headers":["HTTP/1.1 200 OK","Server: wptdriver","Cache: no-cache","Pragma: no-cache","Content-Type: application/json","Content-Length: 36"]},"phase":0,"source":{"id":121,"type":1},"time":"1250427786","type":135}, -{"phase":2,"source":{"id":121,"type":1},"time":"1250427786","type":134}, -{"phase":1,"source":{"id":121,"type":1},"time":"1250427786","type":93}, -{"phase":2,"source":{"id":121,"type":1},"time":"1250427786","type":93}, -{"phase":2,"source":{"id":121,"type":1},"time":"1250427786","type":91}, -{"phase":1,"source":{"id":121,"type":1},"time":"1250427786","type":93}, -{"phase":2,"source":{"id":121,"type":1},"time":"1250427787","type":93}, -{"phase":1,"source":{"id":121,"type":1},"time":"1250427787","type":136}, -{"phase":2,"source":{"id":121,"type":1},"time":"1250427787","type":136}, -{"phase":1,"source":{"id":121,"type":1},"time":"1250427787","type":136}, -{"phase":2,"source":{"id":130,"type":5},"time":"1250427787","type":38}, -{"phase":0,"source":{"id":130,"type":5},"time":"1250427787","type":67}, -{"phase":2,"source":{"id":130,"type":5},"time":"1250427787","type":34}, -{"phase":2,"source":{"id":121,"type":1},"time":"1250427787","type":136}, -{"phase":2,"source":{"id":121,"type":1},"time":"1250427787","type":2}, -{"phase":1,"source":{"id":131,"type":1},"time":"1250428844","type":2}, -{"phase":1,"source":{"id":131,"type":1},"time":"1250428844","type":93}, -{"phase":2,"source":{"id":131,"type":1},"time":"1250428844","type":93}, -{"params":{"load_flags":131328,"method":"GET","priority":"LOW","url":"http://127.0.0.1:8888/task"},"phase":1,"source":{"id":131,"type":1},"time":"1250428844","type":91}, -{"phase":1,"source":{"id":131,"type":1},"time":"1250428844","type":93}, -{"phase":2,"source":{"id":131,"type":1},"time":"1250428844","type":93}, -{"phase":1,"source":{"id":131,"type":1},"time":"1250428844","type":99}, -{"phase":2,"source":{"id":131,"type":1},"time":"1250428844","type":99}, -{"phase":1,"source":{"id":131,"type":1},"time":"1250428844","type":100}, -{"params":{"net_error":-2},"phase":2,"source":{"id":131,"type":1},"time":"1250428844","type":100}, -{"phase":1,"source":{"id":131,"type":1},"time":"1250428844","type":101}, -{"params":{"created":true,"key":"http://127.0.0.1:8888/task"},"phase":1,"source":{"id":133,"type":10},"time":"1250428845","type":108}, -{"phase":2,"source":{"id":131,"type":1},"time":"1250428845","type":101}, -{"phase":1,"source":{"id":131,"type":1},"time":"1250428845","type":102}, -{"phase":2,"source":{"id":131,"type":1},"time":"1250428845","type":102}, -{"phase":1,"source":{"id":131,"type":1},"time":"1250428845","type":93}, -{"phase":2,"source":{"id":131,"type":1},"time":"1250428845","type":93}, -{"phase":1,"source":{"id":131,"type":1},"time":"1250428845","type":120}, -{"params":{"original_url":"http://127.0.0.1:8888/","priority":"LOW","url":"http://127.0.0.1:8888/"},"phase":1,"source":{"id":134,"type":12},"time":"1250428845","type":121}, -{"phase":1,"source":{"id":134,"type":12},"time":"1250428845","type":24}, -{"params":{"pac_string":"DIRECT"},"phase":0,"source":{"id":134,"type":12},"time":"1250428845","type":26}, -{"phase":2,"source":{"id":134,"type":12},"time":"1250428845","type":24}, -{"params":{"source_dependency":{"id":135,"type":8}},"phase":1,"source":{"id":134,"type":12},"time":"1250428845","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":134,"type":12}},"phase":1,"source":{"id":135,"type":8},"time":"1250428845","type":4}, -{"params":{"source_dependency":{"id":135,"type":8}},"phase":1,"source":{"id":136,"type":20},"time":"1250428845","type":303}, -{"params":{"source_dependency":{"id":136,"type":20}},"phase":1,"source":{"id":137,"type":14},"time":"1250428845","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":137,"type":14},"time":"1250428845","type":71}, -{"phase":2,"source":{"id":137,"type":14},"time":"1250428845","type":71}, -{"params":{"address":"[::ffff:2001:0]:50980"},"phase":0,"source":{"id":137,"type":14},"time":"1250428845","type":72}, -{"phase":2,"source":{"id":137,"type":14},"time":"1250428845","type":34}, -{"phase":2,"source":{"id":136,"type":20},"time":"1250428846","type":303}, -{"phase":0,"source":{"id":135,"type":8},"time":"1250428846","type":5}, -{"phase":2,"source":{"id":135,"type":8},"time":"1250428846","type":4}, -{"phase":2,"source":{"id":134,"type":12},"time":"1250428846","type":3}, -{"params":{"host_and_port":"127.0.0.1:8888"},"phase":0,"source":{"id":134,"type":12},"time":"1250428846","type":85}, -{"phase":1,"source":{"id":134,"type":12},"time":"1250428846","type":81}, -{"params":{"group_name":"127.0.0.1:8888"},"phase":1,"source":{"id":138,"type":4},"time":"1250428846","type":77}, -{"phase":1,"source":{"id":138,"type":4},"time":"1250428846","type":78}, -{"params":{"source_dependency":{"id":139,"type":8}},"phase":1,"source":{"id":138,"type":4},"time":"1250428846","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":138,"type":4}},"phase":1,"source":{"id":139,"type":8},"time":"1250428846","type":4}, -{"params":{"source_dependency":{"id":139,"type":8}},"phase":1,"source":{"id":140,"type":20},"time":"1250428846","type":303}, -{"params":{"source_dependency":{"id":140,"type":20}},"phase":1,"source":{"id":141,"type":14},"time":"1250428846","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":141,"type":14},"time":"1250428846","type":71}, -{"phase":2,"source":{"id":141,"type":14},"time":"1250428846","type":71}, -{"params":{"address":"[::ffff:2001:0]:50981"},"phase":0,"source":{"id":141,"type":14},"time":"1250428846","type":72}, -{"phase":2,"source":{"id":141,"type":14},"time":"1250428846","type":34}, -{"phase":2,"source":{"id":140,"type":20},"time":"1250428846","type":303}, -{"phase":0,"source":{"id":139,"type":8},"time":"1250428846","type":5}, -{"phase":2,"source":{"id":139,"type":8},"time":"1250428846","type":4}, -{"phase":2,"source":{"id":138,"type":4},"time":"1250428846","type":3}, -{"params":{"source_dependency":{"id":138,"type":4}},"phase":1,"source":{"id":142,"type":5},"time":"1250428846","type":34}, -{"params":{"address_list":["127.0.0.1:8888"]},"phase":1,"source":{"id":142,"type":5},"time":"1250428846","type":35}, -{"params":{"address":"127.0.0.1:8888"},"phase":1,"source":{"id":142,"type":5},"time":"1250428846","type":36}, -{"phase":2,"source":{"id":142,"type":5},"time":"1250428846","type":36}, -{"params":{"source_address":"127.0.0.1:50986"},"phase":2,"source":{"id":142,"type":5},"time":"1250428846","type":35}, -{"params":{"source_dependency":{"id":142,"type":5}},"phase":0,"source":{"id":138,"type":4},"time":"1250428846","type":79}, -{"phase":2,"source":{"id":138,"type":4},"time":"1250428846","type":78}, -{"phase":2,"source":{"id":138,"type":4},"time":"1250428846","type":77}, -{"params":{"source_dependency":{"id":138,"type":4}},"phase":0,"source":{"id":134,"type":12},"time":"1250428846","type":88}, -{"params":{"source_dependency":{"id":142,"type":5}},"phase":0,"source":{"id":134,"type":12},"time":"1250428846","type":89}, -{"phase":2,"source":{"id":134,"type":12},"time":"1250428846","type":81}, -{"params":{"source_dependency":{"id":134,"type":12}},"phase":1,"source":{"id":142,"type":5},"time":"1250428846","type":38}, -{"params":{"source_dependency":{"id":134,"type":12}},"phase":0,"source":{"id":131,"type":1},"time":"1250428846","type":122}, -{"params":{"source_dependency":{"id":131,"type":1}},"phase":0,"source":{"id":134,"type":12},"time":"1250428846","type":123}, -{"phase":2,"source":{"id":131,"type":1},"time":"1250428846","type":120}, -{"phase":2,"source":{"id":134,"type":12},"time":"1250428846","type":121}, -{"phase":1,"source":{"id":131,"type":1},"time":"1250428846","type":129}, -{"params":{"headers":["Host: 127.0.0.1:8888","Connection: keep-alive","User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36","Accept: */*","Accept-Encoding: gzip,deflate,sdch","Accept-Language: en-US,en;q=0.8"],"line":"GET /task HTTP/1.1\r\n"},"phase":0,"source":{"id":131,"type":1},"time":"1250428846","type":130}, -{"params":{"byte_count":266},"phase":0,"source":{"id":142,"type":5},"time":"1250428846","type":61}, -{"phase":2,"source":{"id":131,"type":1},"time":"1250428846","type":129}, -{"phase":1,"source":{"id":131,"type":1},"time":"1250428846","type":134}, -{"phase":1,"source":{"id":131,"type":1},"time":"1250428846","type":215}, -{"params":{"byte_count":161},"phase":0,"source":{"id":142,"type":5},"time":"1250428847","type":63}, -{"phase":2,"source":{"id":131,"type":1},"time":"1250428847","type":215}, -{"params":{"headers":["HTTP/1.1 200 OK","Server: wptdriver","Cache: no-cache","Pragma: no-cache","Content-Type: application/json","Content-Length: 36"]},"phase":0,"source":{"id":131,"type":1},"time":"1250428847","type":135}, -{"phase":2,"source":{"id":131,"type":1},"time":"1250428847","type":134}, -{"phase":1,"source":{"id":131,"type":1},"time":"1250428847","type":105}, -{"params":{"buf_len":172,"index":0,"offset":0,"truncate":true},"phase":1,"source":{"id":133,"type":10},"time":"1250428847","type":111}, -{"params":{"bytes_copied":172},"phase":2,"source":{"id":133,"type":10},"time":"1250428847","type":111}, -{"phase":2,"source":{"id":131,"type":1},"time":"1250428847","type":105}, -{"phase":1,"source":{"id":131,"type":1},"time":"1250428847","type":107}, -{"params":{"buf_len":0,"index":1,"offset":0,"truncate":true},"phase":1,"source":{"id":133,"type":10},"time":"1250428847","type":111}, -{"params":{"bytes_copied":0},"phase":2,"source":{"id":133,"type":10},"time":"1250428847","type":111}, -{"phase":2,"source":{"id":131,"type":1},"time":"1250428847","type":107}, -{"phase":1,"source":{"id":131,"type":1},"time":"1250428847","type":105}, -{"params":{"buf_len":0,"index":2,"offset":0,"truncate":true},"phase":1,"source":{"id":133,"type":10},"time":"1250428847","type":111}, -{"params":{"bytes_copied":0},"phase":2,"source":{"id":133,"type":10},"time":"1250428847","type":111}, -{"phase":2,"source":{"id":131,"type":1},"time":"1250428847","type":105}, -{"phase":1,"source":{"id":131,"type":1},"time":"1250428847","type":93}, -{"phase":2,"source":{"id":131,"type":1},"time":"1250428847","type":93}, -{"phase":2,"source":{"id":131,"type":1},"time":"1250428847","type":91}, -{"phase":1,"source":{"id":131,"type":1},"time":"1250428847","type":93}, -{"phase":2,"source":{"id":131,"type":1},"time":"1250428847","type":93}, -{"phase":1,"source":{"id":131,"type":1},"time":"1250428847","type":136}, -{"phase":2,"source":{"id":131,"type":1},"time":"1250428847","type":136}, -{"phase":1,"source":{"id":131,"type":1},"time":"1250428847","type":107}, -{"params":{"buf_len":36,"index":1,"offset":0,"truncate":true},"phase":1,"source":{"id":133,"type":10},"time":"1250428847","type":111}, -{"params":{"bytes_copied":36},"phase":2,"source":{"id":133,"type":10},"time":"1250428847","type":111}, -{"phase":2,"source":{"id":131,"type":1},"time":"1250428847","type":107}, -{"phase":1,"source":{"id":131,"type":1},"time":"1250428847","type":136}, -{"phase":2,"source":{"id":142,"type":5},"time":"1250428847","type":38}, -{"phase":0,"source":{"id":142,"type":5},"time":"1250428847","type":67}, -{"phase":2,"source":{"id":142,"type":5},"time":"1250428847","type":34}, -{"phase":2,"source":{"id":131,"type":1},"time":"1250428847","type":136}, -{"phase":1,"source":{"id":131,"type":1},"time":"1250428847","type":107}, -{"phase":2,"source":{"id":131,"type":1},"time":"1250428847","type":107}, -{"phase":2,"source":{"id":131,"type":1},"time":"1250428847","type":2}, -{"phase":0,"source":{"id":133,"type":10},"time":"1250428848","type":118}, -{"phase":2,"source":{"id":133,"type":10},"time":"1250428851","type":108}, -{"phase":1,"source":{"id":143,"type":1},"time":"1250429838","type":2}, -{"phase":1,"source":{"id":143,"type":1},"time":"1250429839","type":93}, -{"phase":2,"source":{"id":143,"type":1},"time":"1250429839","type":93}, -{"params":{"load_flags":131328,"method":"GET","priority":"LOW","url":"http://127.0.0.1:8888/task"},"phase":1,"source":{"id":143,"type":1},"time":"1250429839","type":91}, -{"phase":1,"source":{"id":143,"type":1},"time":"1250429839","type":93}, -{"phase":2,"source":{"id":143,"type":1},"time":"1250429839","type":93}, -{"phase":1,"source":{"id":143,"type":1},"time":"1250429839","type":99}, -{"phase":2,"source":{"id":143,"type":1},"time":"1250429839","type":99}, -{"phase":1,"source":{"id":143,"type":1},"time":"1250429839","type":100}, -{"params":{"created":false,"key":"http://127.0.0.1:8888/task"},"phase":1,"source":{"id":144,"type":10},"time":"1250429839","type":108}, -{"phase":2,"source":{"id":143,"type":1},"time":"1250429839","type":100}, -{"phase":1,"source":{"id":143,"type":1},"time":"1250429839","type":102}, -{"phase":2,"source":{"id":143,"type":1},"time":"1250429839","type":102}, -{"phase":1,"source":{"id":143,"type":1},"time":"1250429839","type":104}, -{"params":{"buf_len":172,"index":0,"offset":0},"phase":1,"source":{"id":144,"type":10},"time":"1250429839","type":110}, -{"params":{"bytes_copied":172},"phase":2,"source":{"id":144,"type":10},"time":"1250429839","type":110}, -{"phase":2,"source":{"id":143,"type":1},"time":"1250429839","type":104}, -{"phase":1,"source":{"id":143,"type":1},"time":"1250429839","type":93}, -{"phase":2,"source":{"id":143,"type":1},"time":"1250429839","type":93}, -{"phase":1,"source":{"id":143,"type":1},"time":"1250429839","type":120}, -{"params":{"original_url":"http://127.0.0.1:8888/","priority":"LOW","url":"http://127.0.0.1:8888/"},"phase":1,"source":{"id":145,"type":12},"time":"1250429839","type":121}, -{"phase":1,"source":{"id":145,"type":12},"time":"1250429840","type":24}, -{"params":{"pac_string":"DIRECT"},"phase":0,"source":{"id":145,"type":12},"time":"1250429840","type":26}, -{"phase":2,"source":{"id":145,"type":12},"time":"1250429840","type":24}, -{"params":{"source_dependency":{"id":146,"type":8}},"phase":1,"source":{"id":145,"type":12},"time":"1250429840","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":145,"type":12}},"phase":1,"source":{"id":146,"type":8},"time":"1250429840","type":4}, -{"params":{"source_dependency":{"id":146,"type":8}},"phase":1,"source":{"id":147,"type":20},"time":"1250429840","type":303}, -{"params":{"source_dependency":{"id":147,"type":20}},"phase":1,"source":{"id":148,"type":14},"time":"1250429840","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":148,"type":14},"time":"1250429840","type":71}, -{"phase":2,"source":{"id":148,"type":14},"time":"1250429840","type":71}, -{"params":{"address":"[::ffff:2001:0]:50982"},"phase":0,"source":{"id":148,"type":14},"time":"1250429840","type":72}, -{"phase":2,"source":{"id":148,"type":14},"time":"1250429840","type":34}, -{"phase":2,"source":{"id":147,"type":20},"time":"1250429840","type":303}, -{"phase":0,"source":{"id":146,"type":8},"time":"1250429840","type":5}, -{"phase":2,"source":{"id":146,"type":8},"time":"1250429840","type":4}, -{"phase":2,"source":{"id":145,"type":12},"time":"1250429840","type":3}, -{"params":{"host_and_port":"127.0.0.1:8888"},"phase":0,"source":{"id":145,"type":12},"time":"1250429840","type":85}, -{"phase":1,"source":{"id":145,"type":12},"time":"1250429840","type":81}, -{"params":{"group_name":"127.0.0.1:8888"},"phase":1,"source":{"id":149,"type":4},"time":"1250429840","type":77}, -{"phase":1,"source":{"id":149,"type":4},"time":"1250429840","type":78}, -{"params":{"source_dependency":{"id":150,"type":8}},"phase":1,"source":{"id":149,"type":4},"time":"1250429840","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":149,"type":4}},"phase":1,"source":{"id":150,"type":8},"time":"1250429840","type":4}, -{"params":{"source_dependency":{"id":150,"type":8}},"phase":1,"source":{"id":151,"type":20},"time":"1250429840","type":303}, -{"params":{"source_dependency":{"id":151,"type":20}},"phase":1,"source":{"id":152,"type":14},"time":"1250429840","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":152,"type":14},"time":"1250429840","type":71}, -{"phase":2,"source":{"id":152,"type":14},"time":"1250429840","type":71}, -{"params":{"address":"[::ffff:2001:0]:50983"},"phase":0,"source":{"id":152,"type":14},"time":"1250429840","type":72}, -{"phase":2,"source":{"id":152,"type":14},"time":"1250429840","type":34}, -{"phase":2,"source":{"id":151,"type":20},"time":"1250429840","type":303}, -{"phase":0,"source":{"id":150,"type":8},"time":"1250429840","type":5}, -{"phase":2,"source":{"id":150,"type":8},"time":"1250429840","type":4}, -{"phase":2,"source":{"id":149,"type":4},"time":"1250429840","type":3}, -{"params":{"source_dependency":{"id":149,"type":4}},"phase":1,"source":{"id":153,"type":5},"time":"1250429840","type":34}, -{"params":{"address_list":["127.0.0.1:8888"]},"phase":1,"source":{"id":153,"type":5},"time":"1250429840","type":35}, -{"params":{"address":"127.0.0.1:8888"},"phase":1,"source":{"id":153,"type":5},"time":"1250429840","type":36}, -{"phase":2,"source":{"id":153,"type":5},"time":"1250429840","type":36}, -{"params":{"source_address":"127.0.0.1:50987"},"phase":2,"source":{"id":153,"type":5},"time":"1250429841","type":35}, -{"params":{"source_dependency":{"id":153,"type":5}},"phase":0,"source":{"id":149,"type":4},"time":"1250429841","type":79}, -{"phase":2,"source":{"id":149,"type":4},"time":"1250429841","type":78}, -{"phase":2,"source":{"id":149,"type":4},"time":"1250429841","type":77}, -{"params":{"source_dependency":{"id":149,"type":4}},"phase":0,"source":{"id":145,"type":12},"time":"1250429841","type":88}, -{"params":{"source_dependency":{"id":153,"type":5}},"phase":0,"source":{"id":145,"type":12},"time":"1250429841","type":89}, -{"phase":2,"source":{"id":145,"type":12},"time":"1250429841","type":81}, -{"params":{"source_dependency":{"id":145,"type":12}},"phase":1,"source":{"id":153,"type":5},"time":"1250429841","type":38}, -{"params":{"source_dependency":{"id":145,"type":12}},"phase":0,"source":{"id":143,"type":1},"time":"1250429841","type":122}, -{"params":{"source_dependency":{"id":143,"type":1}},"phase":0,"source":{"id":145,"type":12},"time":"1250429841","type":123}, -{"phase":2,"source":{"id":143,"type":1},"time":"1250429841","type":120}, -{"phase":2,"source":{"id":145,"type":12},"time":"1250429841","type":121}, -{"phase":1,"source":{"id":143,"type":1},"time":"1250429841","type":129}, -{"params":{"headers":["Host: 127.0.0.1:8888","Connection: keep-alive","User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36","Accept: */*","Accept-Encoding: gzip,deflate,sdch","Accept-Language: en-US,en;q=0.8"],"line":"GET /task HTTP/1.1\r\n"},"phase":0,"source":{"id":143,"type":1},"time":"1250429841","type":130}, -{"params":{"byte_count":266},"phase":0,"source":{"id":153,"type":5},"time":"1250429841","type":61}, -{"phase":2,"source":{"id":143,"type":1},"time":"1250429841","type":129}, -{"phase":1,"source":{"id":143,"type":1},"time":"1250429841","type":134}, -{"phase":1,"source":{"id":143,"type":1},"time":"1250429841","type":215}, -{"params":{"byte_count":161},"phase":0,"source":{"id":153,"type":5},"time":"1250429841","type":63}, -{"phase":2,"source":{"id":143,"type":1},"time":"1250429841","type":215}, -{"params":{"headers":["HTTP/1.1 200 OK","Server: wptdriver","Cache: no-cache","Pragma: no-cache","Content-Type: application/json","Content-Length: 36"]},"phase":0,"source":{"id":143,"type":1},"time":"1250429841","type":135}, -{"phase":2,"source":{"id":143,"type":1},"time":"1250429841","type":134}, -{"phase":1,"source":{"id":143,"type":1},"time":"1250429841","type":105}, -{"params":{"buf_len":172,"index":0,"offset":0,"truncate":true},"phase":1,"source":{"id":144,"type":10},"time":"1250429841","type":111}, -{"params":{"bytes_copied":172},"phase":2,"source":{"id":144,"type":10},"time":"1250429841","type":111}, -{"phase":2,"source":{"id":143,"type":1},"time":"1250429841","type":105}, -{"phase":1,"source":{"id":143,"type":1},"time":"1250429841","type":107}, -{"params":{"buf_len":0,"index":1,"offset":0,"truncate":true},"phase":1,"source":{"id":144,"type":10},"time":"1250429841","type":111}, -{"params":{"bytes_copied":0},"phase":2,"source":{"id":144,"type":10},"time":"1250429841","type":111}, -{"phase":2,"source":{"id":143,"type":1},"time":"1250429841","type":107}, -{"phase":1,"source":{"id":143,"type":1},"time":"1250429841","type":105}, -{"params":{"buf_len":0,"index":2,"offset":0,"truncate":true},"phase":1,"source":{"id":144,"type":10},"time":"1250429841","type":111}, -{"params":{"bytes_copied":0},"phase":2,"source":{"id":144,"type":10},"time":"1250429841","type":111}, -{"phase":2,"source":{"id":143,"type":1},"time":"1250429841","type":105}, -{"phase":1,"source":{"id":143,"type":1},"time":"1250429841","type":93}, -{"phase":2,"source":{"id":143,"type":1},"time":"1250429841","type":93}, -{"phase":2,"source":{"id":143,"type":1},"time":"1250429841","type":91}, -{"phase":1,"source":{"id":143,"type":1},"time":"1250429841","type":93}, -{"phase":2,"source":{"id":143,"type":1},"time":"1250429842","type":93}, -{"phase":1,"source":{"id":143,"type":1},"time":"1250429842","type":136}, -{"phase":2,"source":{"id":143,"type":1},"time":"1250429842","type":136}, -{"phase":1,"source":{"id":143,"type":1},"time":"1250429842","type":107}, -{"params":{"buf_len":36,"index":1,"offset":0,"truncate":true},"phase":1,"source":{"id":144,"type":10},"time":"1250429842","type":111}, -{"params":{"bytes_copied":36},"phase":2,"source":{"id":144,"type":10},"time":"1250429842","type":111}, -{"phase":2,"source":{"id":143,"type":1},"time":"1250429842","type":107}, -{"phase":1,"source":{"id":143,"type":1},"time":"1250429842","type":136}, -{"phase":2,"source":{"id":153,"type":5},"time":"1250429842","type":38}, -{"phase":0,"source":{"id":153,"type":5},"time":"1250429842","type":67}, -{"phase":2,"source":{"id":153,"type":5},"time":"1250429842","type":34}, -{"phase":2,"source":{"id":143,"type":1},"time":"1250429842","type":136}, -{"phase":1,"source":{"id":143,"type":1},"time":"1250429842","type":107}, -{"phase":2,"source":{"id":143,"type":1},"time":"1250429842","type":107}, -{"phase":2,"source":{"id":143,"type":1},"time":"1250429842","type":2}, -{"phase":0,"source":{"id":144,"type":10},"time":"1250429842","type":118}, -{"phase":2,"source":{"id":144,"type":10},"time":"1250429842","type":108}, -{"phase":1,"source":{"id":154,"type":1},"time":"1250430839","type":2}, -{"phase":1,"source":{"id":154,"type":1},"time":"1250430839","type":93}, -{"phase":2,"source":{"id":154,"type":1},"time":"1250430839","type":93}, -{"params":{"load_flags":131328,"method":"GET","priority":"LOW","url":"http://127.0.0.1:8888/task"},"phase":1,"source":{"id":154,"type":1},"time":"1250430840","type":91}, -{"phase":1,"source":{"id":154,"type":1},"time":"1250430840","type":93}, -{"phase":2,"source":{"id":154,"type":1},"time":"1250430840","type":93}, -{"phase":1,"source":{"id":154,"type":1},"time":"1250430840","type":99}, -{"phase":2,"source":{"id":154,"type":1},"time":"1250430840","type":99}, -{"phase":1,"source":{"id":154,"type":1},"time":"1250430840","type":100}, -{"params":{"created":false,"key":"http://127.0.0.1:8888/task"},"phase":1,"source":{"id":155,"type":10},"time":"1250430840","type":108}, -{"phase":2,"source":{"id":154,"type":1},"time":"1250430840","type":100}, -{"phase":1,"source":{"id":154,"type":1},"time":"1250430840","type":102}, -{"phase":2,"source":{"id":154,"type":1},"time":"1250430840","type":102}, -{"phase":1,"source":{"id":154,"type":1},"time":"1250430840","type":104}, -{"params":{"buf_len":172,"index":0,"offset":0},"phase":1,"source":{"id":155,"type":10},"time":"1250430840","type":110}, -{"params":{"bytes_copied":172},"phase":2,"source":{"id":155,"type":10},"time":"1250430840","type":110}, -{"phase":2,"source":{"id":154,"type":1},"time":"1250430840","type":104}, -{"phase":1,"source":{"id":154,"type":1},"time":"1250430841","type":93}, -{"phase":2,"source":{"id":154,"type":1},"time":"1250430841","type":93}, -{"phase":1,"source":{"id":154,"type":1},"time":"1250430841","type":120}, -{"params":{"original_url":"http://127.0.0.1:8888/","priority":"LOW","url":"http://127.0.0.1:8888/"},"phase":1,"source":{"id":156,"type":12},"time":"1250430841","type":121}, -{"phase":1,"source":{"id":156,"type":12},"time":"1250430841","type":24}, -{"params":{"pac_string":"DIRECT"},"phase":0,"source":{"id":156,"type":12},"time":"1250430841","type":26}, -{"phase":2,"source":{"id":156,"type":12},"time":"1250430841","type":24}, -{"params":{"source_dependency":{"id":157,"type":8}},"phase":1,"source":{"id":156,"type":12},"time":"1250430841","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":156,"type":12}},"phase":1,"source":{"id":157,"type":8},"time":"1250430841","type":4}, -{"params":{"source_dependency":{"id":157,"type":8}},"phase":1,"source":{"id":158,"type":20},"time":"1250430841","type":303}, -{"params":{"source_dependency":{"id":158,"type":20}},"phase":1,"source":{"id":159,"type":14},"time":"1250430841","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":159,"type":14},"time":"1250430841","type":71}, -{"phase":2,"source":{"id":159,"type":14},"time":"1250430841","type":71}, -{"params":{"address":"[::ffff:2001:0]:50984"},"phase":0,"source":{"id":159,"type":14},"time":"1250430841","type":72}, -{"phase":2,"source":{"id":159,"type":14},"time":"1250430841","type":34}, -{"phase":2,"source":{"id":158,"type":20},"time":"1250430841","type":303}, -{"phase":0,"source":{"id":157,"type":8},"time":"1250430841","type":5}, -{"phase":2,"source":{"id":157,"type":8},"time":"1250430841","type":4}, -{"phase":2,"source":{"id":156,"type":12},"time":"1250430841","type":3}, -{"params":{"host_and_port":"127.0.0.1:8888"},"phase":0,"source":{"id":156,"type":12},"time":"1250430841","type":85}, -{"phase":1,"source":{"id":156,"type":12},"time":"1250430841","type":81}, -{"params":{"group_name":"127.0.0.1:8888"},"phase":1,"source":{"id":160,"type":4},"time":"1250430841","type":77}, -{"phase":1,"source":{"id":160,"type":4},"time":"1250430841","type":78}, -{"params":{"source_dependency":{"id":161,"type":8}},"phase":1,"source":{"id":160,"type":4},"time":"1250430841","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":160,"type":4}},"phase":1,"source":{"id":161,"type":8},"time":"1250430841","type":4}, -{"params":{"source_dependency":{"id":161,"type":8}},"phase":1,"source":{"id":162,"type":20},"time":"1250430841","type":303}, -{"params":{"source_dependency":{"id":162,"type":20}},"phase":1,"source":{"id":163,"type":14},"time":"1250430841","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":163,"type":14},"time":"1250430841","type":71}, -{"phase":2,"source":{"id":163,"type":14},"time":"1250430841","type":71}, -{"params":{"address":"[::ffff:2001:0]:50985"},"phase":0,"source":{"id":163,"type":14},"time":"1250430841","type":72}, -{"phase":2,"source":{"id":163,"type":14},"time":"1250430841","type":34}, -{"phase":2,"source":{"id":162,"type":20},"time":"1250430841","type":303}, -{"phase":0,"source":{"id":161,"type":8},"time":"1250430841","type":5}, -{"phase":2,"source":{"id":161,"type":8},"time":"1250430841","type":4}, -{"phase":2,"source":{"id":160,"type":4},"time":"1250430841","type":3}, -{"params":{"source_dependency":{"id":160,"type":4}},"phase":1,"source":{"id":164,"type":5},"time":"1250430842","type":34}, -{"params":{"address_list":["127.0.0.1:8888"]},"phase":1,"source":{"id":164,"type":5},"time":"1250430842","type":35}, -{"params":{"address":"127.0.0.1:8888"},"phase":1,"source":{"id":164,"type":5},"time":"1250430842","type":36}, -{"phase":2,"source":{"id":164,"type":5},"time":"1250430842","type":36}, -{"params":{"source_address":"127.0.0.1:50988"},"phase":2,"source":{"id":164,"type":5},"time":"1250430842","type":35}, -{"params":{"source_dependency":{"id":164,"type":5}},"phase":0,"source":{"id":160,"type":4},"time":"1250430842","type":79}, -{"phase":2,"source":{"id":160,"type":4},"time":"1250430842","type":78}, -{"phase":2,"source":{"id":160,"type":4},"time":"1250430842","type":77}, -{"params":{"source_dependency":{"id":160,"type":4}},"phase":0,"source":{"id":156,"type":12},"time":"1250430842","type":88}, -{"params":{"source_dependency":{"id":164,"type":5}},"phase":0,"source":{"id":156,"type":12},"time":"1250430842","type":89}, -{"phase":2,"source":{"id":156,"type":12},"time":"1250430842","type":81}, -{"params":{"source_dependency":{"id":156,"type":12}},"phase":1,"source":{"id":164,"type":5},"time":"1250430842","type":38}, -{"params":{"source_dependency":{"id":156,"type":12}},"phase":0,"source":{"id":154,"type":1},"time":"1250430842","type":122}, -{"params":{"source_dependency":{"id":154,"type":1}},"phase":0,"source":{"id":156,"type":12},"time":"1250430842","type":123}, -{"phase":2,"source":{"id":154,"type":1},"time":"1250430842","type":120}, -{"phase":2,"source":{"id":156,"type":12},"time":"1250430842","type":121}, -{"phase":1,"source":{"id":154,"type":1},"time":"1250430842","type":129}, -{"params":{"headers":["Host: 127.0.0.1:8888","Connection: keep-alive","User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36","Accept: */*","Accept-Encoding: gzip,deflate,sdch","Accept-Language: en-US,en;q=0.8"],"line":"GET /task HTTP/1.1\r\n"},"phase":0,"source":{"id":154,"type":1},"time":"1250430842","type":130}, -{"params":{"byte_count":266},"phase":0,"source":{"id":164,"type":5},"time":"1250430843","type":61}, -{"phase":2,"source":{"id":154,"type":1},"time":"1250430843","type":129}, -{"phase":1,"source":{"id":154,"type":1},"time":"1250430843","type":134}, -{"phase":1,"source":{"id":154,"type":1},"time":"1250430843","type":215}, -{"params":{"byte_count":161},"phase":0,"source":{"id":164,"type":5},"time":"1250430843","type":63}, -{"phase":2,"source":{"id":154,"type":1},"time":"1250430843","type":215}, -{"params":{"headers":["HTTP/1.1 200 OK","Server: wptdriver","Cache: no-cache","Pragma: no-cache","Content-Type: application/json","Content-Length: 36"]},"phase":0,"source":{"id":154,"type":1},"time":"1250430843","type":135}, -{"phase":2,"source":{"id":154,"type":1},"time":"1250430843","type":134}, -{"phase":1,"source":{"id":154,"type":1},"time":"1250430843","type":105}, -{"params":{"buf_len":172,"index":0,"offset":0,"truncate":true},"phase":1,"source":{"id":155,"type":10},"time":"1250430843","type":111}, -{"params":{"bytes_copied":172},"phase":2,"source":{"id":155,"type":10},"time":"1250430843","type":111}, -{"phase":2,"source":{"id":154,"type":1},"time":"1250430843","type":105}, -{"phase":1,"source":{"id":154,"type":1},"time":"1250430843","type":107}, -{"params":{"buf_len":0,"index":1,"offset":0,"truncate":true},"phase":1,"source":{"id":155,"type":10},"time":"1250430843","type":111}, -{"params":{"bytes_copied":0},"phase":2,"source":{"id":155,"type":10},"time":"1250430843","type":111}, -{"phase":2,"source":{"id":154,"type":1},"time":"1250430844","type":107}, -{"phase":1,"source":{"id":154,"type":1},"time":"1250430844","type":105}, -{"params":{"buf_len":0,"index":2,"offset":0,"truncate":true},"phase":1,"source":{"id":155,"type":10},"time":"1250430844","type":111}, -{"params":{"bytes_copied":0},"phase":2,"source":{"id":155,"type":10},"time":"1250430844","type":111}, -{"phase":2,"source":{"id":154,"type":1},"time":"1250430844","type":105}, -{"phase":1,"source":{"id":154,"type":1},"time":"1250430844","type":93}, -{"phase":2,"source":{"id":154,"type":1},"time":"1250430844","type":93}, -{"phase":2,"source":{"id":154,"type":1},"time":"1250430844","type":91}, -{"phase":1,"source":{"id":154,"type":1},"time":"1250430844","type":93}, -{"phase":2,"source":{"id":154,"type":1},"time":"1250430844","type":93}, -{"phase":1,"source":{"id":154,"type":1},"time":"1250430844","type":136}, -{"phase":2,"source":{"id":154,"type":1},"time":"1250430844","type":136}, -{"phase":1,"source":{"id":154,"type":1},"time":"1250430844","type":107}, -{"params":{"buf_len":36,"index":1,"offset":0,"truncate":true},"phase":1,"source":{"id":155,"type":10},"time":"1250430844","type":111}, -{"params":{"bytes_copied":36},"phase":2,"source":{"id":155,"type":10},"time":"1250430844","type":111}, -{"phase":2,"source":{"id":154,"type":1},"time":"1250430844","type":107}, -{"phase":1,"source":{"id":154,"type":1},"time":"1250430844","type":136}, -{"phase":2,"source":{"id":164,"type":5},"time":"1250430844","type":38}, -{"phase":0,"source":{"id":164,"type":5},"time":"1250430844","type":67}, -{"phase":2,"source":{"id":164,"type":5},"time":"1250430844","type":34}, -{"phase":2,"source":{"id":154,"type":1},"time":"1250430844","type":136}, -{"phase":1,"source":{"id":154,"type":1},"time":"1250430844","type":107}, -{"phase":2,"source":{"id":154,"type":1},"time":"1250430844","type":107}, -{"phase":2,"source":{"id":154,"type":1},"time":"1250430844","type":2}, -{"phase":0,"source":{"id":155,"type":10},"time":"1250430844","type":118}, -{"phase":2,"source":{"id":155,"type":10},"time":"1250430844","type":108}, -{"phase":1,"source":{"id":165,"type":1},"time":"1250431840","type":2}, -{"phase":1,"source":{"id":165,"type":1},"time":"1250431840","type":93}, -{"phase":2,"source":{"id":165,"type":1},"time":"1250431840","type":93}, -{"params":{"load_flags":131328,"method":"GET","priority":"LOW","url":"http://127.0.0.1:8888/task"},"phase":1,"source":{"id":165,"type":1},"time":"1250431840","type":91}, -{"phase":1,"source":{"id":165,"type":1},"time":"1250431840","type":93}, -{"phase":2,"source":{"id":165,"type":1},"time":"1250431840","type":93}, -{"phase":1,"source":{"id":165,"type":1},"time":"1250431840","type":99}, -{"phase":2,"source":{"id":165,"type":1},"time":"1250431840","type":99}, -{"phase":1,"source":{"id":165,"type":1},"time":"1250431840","type":100}, -{"params":{"created":false,"key":"http://127.0.0.1:8888/task"},"phase":1,"source":{"id":166,"type":10},"time":"1250431841","type":108}, -{"phase":2,"source":{"id":165,"type":1},"time":"1250431841","type":100}, -{"phase":1,"source":{"id":165,"type":1},"time":"1250431841","type":102}, -{"phase":2,"source":{"id":165,"type":1},"time":"1250431841","type":102}, -{"phase":1,"source":{"id":165,"type":1},"time":"1250431841","type":104}, -{"params":{"buf_len":172,"index":0,"offset":0},"phase":1,"source":{"id":166,"type":10},"time":"1250431841","type":110}, -{"params":{"bytes_copied":172},"phase":2,"source":{"id":166,"type":10},"time":"1250431841","type":110}, -{"phase":2,"source":{"id":165,"type":1},"time":"1250431841","type":104}, -{"phase":1,"source":{"id":165,"type":1},"time":"1250431841","type":93}, -{"phase":2,"source":{"id":165,"type":1},"time":"1250431841","type":93}, -{"phase":1,"source":{"id":165,"type":1},"time":"1250431841","type":120}, -{"params":{"original_url":"http://127.0.0.1:8888/","priority":"LOW","url":"http://127.0.0.1:8888/"},"phase":1,"source":{"id":167,"type":12},"time":"1250431841","type":121}, -{"phase":1,"source":{"id":167,"type":12},"time":"1250431841","type":24}, -{"params":{"pac_string":"DIRECT"},"phase":0,"source":{"id":167,"type":12},"time":"1250431841","type":26}, -{"phase":2,"source":{"id":167,"type":12},"time":"1250431841","type":24}, -{"params":{"source_dependency":{"id":168,"type":8}},"phase":1,"source":{"id":167,"type":12},"time":"1250431841","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":167,"type":12}},"phase":1,"source":{"id":168,"type":8},"time":"1250431841","type":4}, -{"params":{"source_dependency":{"id":168,"type":8}},"phase":1,"source":{"id":169,"type":20},"time":"1250431841","type":303}, -{"params":{"source_dependency":{"id":169,"type":20}},"phase":1,"source":{"id":170,"type":14},"time":"1250431841","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":170,"type":14},"time":"1250431841","type":71}, -{"phase":2,"source":{"id":170,"type":14},"time":"1250431841","type":71}, -{"params":{"address":"[::ffff:2001:0]:50986"},"phase":0,"source":{"id":170,"type":14},"time":"1250431841","type":72}, -{"phase":2,"source":{"id":170,"type":14},"time":"1250431841","type":34}, -{"phase":2,"source":{"id":169,"type":20},"time":"1250431841","type":303}, -{"phase":0,"source":{"id":168,"type":8},"time":"1250431841","type":5}, -{"phase":2,"source":{"id":168,"type":8},"time":"1250431841","type":4}, -{"phase":2,"source":{"id":167,"type":12},"time":"1250431841","type":3}, -{"params":{"host_and_port":"127.0.0.1:8888"},"phase":0,"source":{"id":167,"type":12},"time":"1250431841","type":85}, -{"phase":1,"source":{"id":167,"type":12},"time":"1250431841","type":81}, -{"params":{"group_name":"127.0.0.1:8888"},"phase":1,"source":{"id":171,"type":4},"time":"1250431841","type":77}, -{"phase":1,"source":{"id":171,"type":4},"time":"1250431841","type":78}, -{"params":{"source_dependency":{"id":172,"type":8}},"phase":1,"source":{"id":171,"type":4},"time":"1250431841","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":171,"type":4}},"phase":1,"source":{"id":172,"type":8},"time":"1250431841","type":4}, -{"params":{"source_dependency":{"id":172,"type":8}},"phase":1,"source":{"id":173,"type":20},"time":"1250431842","type":303}, -{"params":{"source_dependency":{"id":173,"type":20}},"phase":1,"source":{"id":174,"type":14},"time":"1250431842","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":174,"type":14},"time":"1250431842","type":71}, -{"phase":2,"source":{"id":174,"type":14},"time":"1250431842","type":71}, -{"params":{"address":"[::ffff:2001:0]:50987"},"phase":0,"source":{"id":174,"type":14},"time":"1250431842","type":72}, -{"phase":2,"source":{"id":174,"type":14},"time":"1250431842","type":34}, -{"phase":2,"source":{"id":173,"type":20},"time":"1250431842","type":303}, -{"phase":0,"source":{"id":172,"type":8},"time":"1250431842","type":5}, -{"phase":2,"source":{"id":172,"type":8},"time":"1250431842","type":4}, -{"phase":2,"source":{"id":171,"type":4},"time":"1250431842","type":3}, -{"params":{"source_dependency":{"id":171,"type":4}},"phase":1,"source":{"id":175,"type":5},"time":"1250431842","type":34}, -{"params":{"address_list":["127.0.0.1:8888"]},"phase":1,"source":{"id":175,"type":5},"time":"1250431842","type":35}, -{"params":{"address":"127.0.0.1:8888"},"phase":1,"source":{"id":175,"type":5},"time":"1250431842","type":36}, -{"phase":2,"source":{"id":175,"type":5},"time":"1250431842","type":36}, -{"params":{"source_address":"127.0.0.1:50989"},"phase":2,"source":{"id":175,"type":5},"time":"1250431842","type":35}, -{"params":{"source_dependency":{"id":175,"type":5}},"phase":0,"source":{"id":171,"type":4},"time":"1250431842","type":79}, -{"phase":2,"source":{"id":171,"type":4},"time":"1250431842","type":78}, -{"phase":2,"source":{"id":171,"type":4},"time":"1250431842","type":77}, -{"params":{"source_dependency":{"id":171,"type":4}},"phase":0,"source":{"id":167,"type":12},"time":"1250431842","type":88}, -{"params":{"source_dependency":{"id":175,"type":5}},"phase":0,"source":{"id":167,"type":12},"time":"1250431842","type":89}, -{"phase":2,"source":{"id":167,"type":12},"time":"1250431842","type":81}, -{"params":{"source_dependency":{"id":167,"type":12}},"phase":1,"source":{"id":175,"type":5},"time":"1250431842","type":38}, -{"params":{"source_dependency":{"id":167,"type":12}},"phase":0,"source":{"id":165,"type":1},"time":"1250431843","type":122}, -{"params":{"source_dependency":{"id":165,"type":1}},"phase":0,"source":{"id":167,"type":12},"time":"1250431843","type":123}, -{"phase":2,"source":{"id":165,"type":1},"time":"1250431843","type":120}, -{"phase":2,"source":{"id":167,"type":12},"time":"1250431843","type":121}, -{"phase":1,"source":{"id":165,"type":1},"time":"1250431843","type":129}, -{"params":{"headers":["Host: 127.0.0.1:8888","Connection: keep-alive","User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36","Accept: */*","Accept-Encoding: gzip,deflate,sdch","Accept-Language: en-US,en;q=0.8"],"line":"GET /task HTTP/1.1\r\n"},"phase":0,"source":{"id":165,"type":1},"time":"1250431843","type":130}, -{"params":{"byte_count":266},"phase":0,"source":{"id":175,"type":5},"time":"1250431843","type":61}, -{"phase":2,"source":{"id":165,"type":1},"time":"1250431843","type":129}, -{"phase":1,"source":{"id":165,"type":1},"time":"1250431843","type":134}, -{"phase":1,"source":{"id":165,"type":1},"time":"1250431843","type":215}, -{"params":{"byte_count":241},"phase":0,"source":{"id":175,"type":5},"time":"1250431846","type":63}, -{"phase":2,"source":{"id":165,"type":1},"time":"1250431847","type":215}, -{"params":{"headers":["HTTP/1.1 200 OK","Server: wptdriver","Cache: no-cache","Pragma: no-cache","Content-Type: application/json","Content-Length: 115"]},"phase":0,"source":{"id":165,"type":1},"time":"1250431847","type":135}, -{"phase":2,"source":{"id":165,"type":1},"time":"1250431847","type":134}, -{"phase":1,"source":{"id":165,"type":1},"time":"1250431847","type":105}, -{"params":{"buf_len":172,"index":0,"offset":0,"truncate":true},"phase":1,"source":{"id":166,"type":10},"time":"1250431847","type":111}, -{"params":{"bytes_copied":172},"phase":2,"source":{"id":166,"type":10},"time":"1250431847","type":111}, -{"phase":2,"source":{"id":165,"type":1},"time":"1250431847","type":105}, -{"phase":1,"source":{"id":165,"type":1},"time":"1250431847","type":107}, -{"params":{"buf_len":0,"index":1,"offset":0,"truncate":true},"phase":1,"source":{"id":166,"type":10},"time":"1250431847","type":111}, -{"params":{"bytes_copied":0},"phase":2,"source":{"id":166,"type":10},"time":"1250431847","type":111}, -{"phase":2,"source":{"id":165,"type":1},"time":"1250431847","type":107}, -{"phase":1,"source":{"id":165,"type":1},"time":"1250431847","type":105}, -{"params":{"buf_len":0,"index":2,"offset":0,"truncate":true},"phase":1,"source":{"id":166,"type":10},"time":"1250431847","type":111}, -{"params":{"bytes_copied":0},"phase":2,"source":{"id":166,"type":10},"time":"1250431847","type":111}, -{"phase":2,"source":{"id":165,"type":1},"time":"1250431847","type":105}, -{"phase":1,"source":{"id":165,"type":1},"time":"1250431847","type":93}, -{"phase":2,"source":{"id":165,"type":1},"time":"1250431847","type":93}, -{"phase":2,"source":{"id":165,"type":1},"time":"1250431847","type":91}, -{"phase":1,"source":{"id":165,"type":1},"time":"1250431847","type":93}, -{"phase":2,"source":{"id":165,"type":1},"time":"1250431847","type":93}, -{"phase":1,"source":{"id":165,"type":1},"time":"1250431847","type":136}, -{"phase":2,"source":{"id":165,"type":1},"time":"1250431847","type":136}, -{"phase":1,"source":{"id":165,"type":1},"time":"1250431847","type":107}, -{"params":{"buf_len":115,"index":1,"offset":0,"truncate":true},"phase":1,"source":{"id":166,"type":10},"time":"1250431848","type":111}, -{"params":{"bytes_copied":115},"phase":2,"source":{"id":166,"type":10},"time":"1250431848","type":111}, -{"phase":2,"source":{"id":165,"type":1},"time":"1250431848","type":107}, -{"phase":1,"source":{"id":165,"type":1},"time":"1250431848","type":136}, -{"phase":2,"source":{"id":175,"type":5},"time":"1250431848","type":38}, -{"phase":0,"source":{"id":175,"type":5},"time":"1250431848","type":67}, -{"phase":2,"source":{"id":175,"type":5},"time":"1250431848","type":34}, -{"phase":2,"source":{"id":165,"type":1},"time":"1250431848","type":136}, -{"phase":1,"source":{"id":165,"type":1},"time":"1250431848","type":107}, -{"phase":2,"source":{"id":165,"type":1},"time":"1250431848","type":107}, -{"phase":2,"source":{"id":165,"type":1},"time":"1250431848","type":2}, -{"phase":0,"source":{"id":166,"type":10},"time":"1250431848","type":118}, -{"phase":2,"source":{"id":166,"type":10},"time":"1250431848","type":108}, -{"params":{"original_url":"http://marcelduran.com/","priority":"HIGHEST","url":"http://marcelduran.com/"},"phase":1,"source":{"id":176,"type":12},"time":"1250431857","type":121}, -{"phase":1,"source":{"id":176,"type":12},"time":"1250431857","type":24}, -{"params":{"pac_string":"DIRECT"},"phase":0,"source":{"id":176,"type":12},"time":"1250431857","type":26}, -{"phase":2,"source":{"id":176,"type":12},"time":"1250431857","type":24}, -{"params":{"source_dependency":{"id":177,"type":8}},"phase":1,"source":{"id":176,"type":12},"time":"1250431857","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"marcelduran.com:80","is_speculative":false,"source_dependency":{"id":176,"type":12}},"phase":1,"source":{"id":177,"type":8},"time":"1250431857","type":4}, -{"params":{"source_dependency":{"id":177,"type":8}},"phase":1,"source":{"id":178,"type":20},"time":"1250431857","type":303}, -{"params":{"source_dependency":{"id":178,"type":20}},"phase":1,"source":{"id":179,"type":14},"time":"1250431857","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":179,"type":14},"time":"1250431857","type":71}, -{"phase":2,"source":{"id":179,"type":14},"time":"1250431857","type":71}, -{"params":{"address":"[::ffff:2001:0]:50988"},"phase":0,"source":{"id":179,"type":14},"time":"1250431857","type":72}, -{"phase":2,"source":{"id":179,"type":14},"time":"1250431857","type":34}, -{"phase":2,"source":{"id":178,"type":20},"time":"1250431857","type":303}, -{"phase":0,"source":{"id":177,"type":8},"time":"1250431857","type":5}, -{"params":{"net_error":-804},"phase":2,"source":{"id":177,"type":8},"time":"1250431857","type":4}, -{"phase":2,"source":{"id":176,"type":12},"time":"1250431857","type":3}, -{"params":{"host_and_port":"marcelduran.com:80"},"phase":0,"source":{"id":176,"type":12},"time":"1250431857","type":86}, -{"params":{"num_sockets":1},"phase":1,"source":{"id":176,"type":12},"time":"1250431857","type":90}, -{"params":{"group_name":"marcelduran.com:80"},"phase":1,"source":{"id":180,"type":4},"time":"1250431857","type":77}, -{"phase":1,"source":{"id":180,"type":4},"time":"1250431857","type":78}, -{"params":{"source_dependency":{"id":181,"type":8}},"phase":1,"source":{"id":180,"type":4},"time":"1250431857","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"marcelduran.com:80","is_speculative":false,"source_dependency":{"id":180,"type":4}},"phase":1,"source":{"id":181,"type":8},"time":"1250431857","type":4}, -{"params":{"source_dependency":{"id":181,"type":8}},"phase":1,"source":{"id":182,"type":20},"time":"1250431858","type":303}, -{"params":{"source_dependency":{"id":182,"type":20}},"phase":1,"source":{"id":183,"type":14},"time":"1250431858","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":183,"type":14},"time":"1250431858","type":71}, -{"phase":2,"source":{"id":183,"type":14},"time":"1250431858","type":71}, -{"params":{"address":"[::ffff:2001:0]:50989"},"phase":0,"source":{"id":183,"type":14},"time":"1250431858","type":72}, -{"phase":2,"source":{"id":183,"type":14},"time":"1250431858","type":34}, -{"phase":2,"source":{"id":182,"type":20},"time":"1250431858","type":303}, -{"phase":0,"source":{"id":181,"type":8},"time":"1250431858","type":5}, -{"phase":0,"source":{"id":181,"type":8},"time":"1250431858","type":8}, -{"params":{"host":"marcelduran.com","source_dependency":{"id":181,"type":8}},"phase":1,"source":{"id":184,"type":9},"time":"1250431858","type":9}, -{"phase":0,"source":{"id":184,"type":9},"time":"1250431858","type":11}, -{"phase":1,"source":{"id":184,"type":9},"time":"1250431858","type":17}, -{"params":{"attempt_number":1},"phase":0,"source":{"id":184,"type":9},"time":"1250431858","type":12}, -{"params":{"source_dependency":{"id":184,"type":9}},"phase":0,"source":{"id":181,"type":8},"time":"1250431858","type":14}, -{"params":{"priority":"LOWEST","source_dependency":{"id":181,"type":8}},"phase":0,"source":{"id":184,"type":9},"time":"1250431858","type":15}, -{"phase":2,"source":{"id":176,"type":12},"time":"1250431858","type":90}, -{"params":{"original_url":"http://marcelduran.com/","priority":"HIGHEST","url":"http://marcelduran.com/"},"phase":1,"source":{"id":185,"type":12},"time":"1250431858","type":121}, -{"phase":1,"source":{"id":185,"type":12},"time":"1250431858","type":24}, -{"params":{"pac_string":"DIRECT"},"phase":0,"source":{"id":185,"type":12},"time":"1250431858","type":26}, -{"phase":2,"source":{"id":185,"type":12},"time":"1250431858","type":24}, -{"params":{"source_dependency":{"id":186,"type":8}},"phase":1,"source":{"id":185,"type":12},"time":"1250431858","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"marcelduran.com:80","is_speculative":false,"source_dependency":{"id":185,"type":12}},"phase":1,"source":{"id":186,"type":8},"time":"1250431858","type":4}, -{"params":{"source_dependency":{"id":186,"type":8}},"phase":1,"source":{"id":187,"type":20},"time":"1250431858","type":303}, -{"params":{"source_dependency":{"id":187,"type":20}},"phase":1,"source":{"id":188,"type":14},"time":"1250431858","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":188,"type":14},"time":"1250431858","type":71}, -{"phase":2,"source":{"id":188,"type":14},"time":"1250431858","type":71}, -{"params":{"address":"[::ffff:2001:0]:50990"},"phase":0,"source":{"id":188,"type":14},"time":"1250431858","type":72}, -{"phase":2,"source":{"id":188,"type":14},"time":"1250431859","type":34}, -{"phase":2,"source":{"id":187,"type":20},"time":"1250431859","type":303}, -{"phase":0,"source":{"id":186,"type":8},"time":"1250431859","type":5}, -{"params":{"net_error":-804},"phase":2,"source":{"id":186,"type":8},"time":"1250431859","type":4}, -{"phase":2,"source":{"id":185,"type":12},"time":"1250431859","type":3}, -{"params":{"host_and_port":"marcelduran.com:80"},"phase":0,"source":{"id":185,"type":12},"time":"1250431859","type":86}, -{"params":{"num_sockets":2},"phase":1,"source":{"id":185,"type":12},"time":"1250431859","type":90}, -{"params":{"group_name":"marcelduran.com:80"},"phase":1,"source":{"id":189,"type":4},"time":"1250431859","type":77}, -{"phase":1,"source":{"id":189,"type":4},"time":"1250431859","type":78}, -{"params":{"source_dependency":{"id":190,"type":8}},"phase":1,"source":{"id":189,"type":4},"time":"1250431859","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"marcelduran.com:80","is_speculative":false,"source_dependency":{"id":189,"type":4}},"phase":1,"source":{"id":190,"type":8},"time":"1250431859","type":4}, -{"params":{"source_dependency":{"id":190,"type":8}},"phase":1,"source":{"id":191,"type":20},"time":"1250431859","type":303}, -{"params":{"source_dependency":{"id":191,"type":20}},"phase":1,"source":{"id":192,"type":14},"time":"1250431859","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":192,"type":14},"time":"1250431859","type":71}, -{"phase":2,"source":{"id":192,"type":14},"time":"1250431859","type":71}, -{"params":{"address":"[::ffff:2001:0]:50991"},"phase":0,"source":{"id":192,"type":14},"time":"1250431859","type":72}, -{"phase":2,"source":{"id":192,"type":14},"time":"1250431859","type":34}, -{"phase":2,"source":{"id":191,"type":20},"time":"1250431859","type":303}, -{"phase":0,"source":{"id":190,"type":8},"time":"1250431859","type":5}, -{"params":{"source_dependency":{"id":184,"type":9}},"phase":0,"source":{"id":190,"type":8},"time":"1250431859","type":14}, -{"params":{"priority":"LOWEST","source_dependency":{"id":190,"type":8}},"phase":0,"source":{"id":184,"type":9},"time":"1250431859","type":15}, -{"phase":2,"source":{"id":185,"type":12},"time":"1250431859","type":90}, -{"phase":2,"source":{"id":176,"type":12},"time":"1250431859","type":121}, -{"phase":2,"source":{"id":185,"type":12},"time":"1250431859","type":121}, -{"phase":1,"source":{"id":193,"type":1},"time":"1250431861","type":2}, -{"phase":1,"source":{"id":193,"type":1},"time":"1250431861","type":93}, -{"phase":2,"source":{"id":193,"type":1},"time":"1250431861","type":93}, -{"params":{"load_flags":10617088,"method":"GET","priority":"HIGHEST","url":"http://marcelduran.com/"},"phase":1,"source":{"id":193,"type":1},"time":"1250431861","type":91}, -{"phase":2,"source":{"id":193,"type":1},"time":"1250431861","type":91}, -{"params":{"load_flags":10617088,"method":"GET","priority":"HIGHEST","url":"http://marcelduran.com/"},"phase":1,"source":{"id":193,"type":1},"time":"1250431861","type":91}, -{"phase":1,"source":{"id":193,"type":1},"time":"1250431861","type":93}, -{"phase":2,"source":{"id":193,"type":1},"time":"1250431861","type":93}, -{"phase":1,"source":{"id":193,"type":1},"time":"1250431862","type":99}, -{"phase":2,"source":{"id":193,"type":1},"time":"1250431862","type":99}, -{"phase":1,"source":{"id":193,"type":1},"time":"1250431862","type":100}, -{"params":{"net_error":-2},"phase":2,"source":{"id":193,"type":1},"time":"1250431862","type":100}, -{"phase":1,"source":{"id":193,"type":1},"time":"1250431862","type":101}, -{"params":{"created":true,"key":"http://marcelduran.com/"},"phase":1,"source":{"id":195,"type":10},"time":"1250431862","type":108}, -{"phase":2,"source":{"id":193,"type":1},"time":"1250431862","type":101}, -{"phase":1,"source":{"id":193,"type":1},"time":"1250431862","type":102}, -{"phase":2,"source":{"id":193,"type":1},"time":"1250431862","type":102}, -{"phase":1,"source":{"id":193,"type":1},"time":"1250431862","type":93}, -{"phase":2,"source":{"id":193,"type":1},"time":"1250431862","type":93}, -{"phase":1,"source":{"id":193,"type":1},"time":"1250431862","type":120}, -{"params":{"original_url":"http://marcelduran.com/","priority":"HIGHEST","url":"http://marcelduran.com/"},"phase":1,"source":{"id":196,"type":12},"time":"1250431862","type":121}, -{"phase":1,"source":{"id":196,"type":12},"time":"1250431862","type":24}, -{"params":{"pac_string":"DIRECT"},"phase":0,"source":{"id":196,"type":12},"time":"1250431862","type":26}, -{"phase":2,"source":{"id":196,"type":12},"time":"1250431862","type":24}, -{"params":{"source_dependency":{"id":197,"type":8}},"phase":1,"source":{"id":196,"type":12},"time":"1250431862","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"marcelduran.com:80","is_speculative":false,"source_dependency":{"id":196,"type":12}},"phase":1,"source":{"id":197,"type":8},"time":"1250431862","type":4}, -{"params":{"source_dependency":{"id":197,"type":8}},"phase":1,"source":{"id":198,"type":20},"time":"1250431862","type":303}, -{"params":{"source_dependency":{"id":198,"type":20}},"phase":1,"source":{"id":199,"type":14},"time":"1250431862","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":199,"type":14},"time":"1250431862","type":71}, -{"phase":2,"source":{"id":199,"type":14},"time":"1250431862","type":71}, -{"params":{"address":"[::ffff:2001:0]:50992"},"phase":0,"source":{"id":199,"type":14},"time":"1250431862","type":72}, -{"phase":2,"source":{"id":199,"type":14},"time":"1250431863","type":34}, -{"phase":2,"source":{"id":198,"type":20},"time":"1250431863","type":303}, -{"phase":0,"source":{"id":197,"type":8},"time":"1250431863","type":5}, -{"params":{"net_error":-804},"phase":2,"source":{"id":197,"type":8},"time":"1250431863","type":4}, -{"phase":2,"source":{"id":196,"type":12},"time":"1250431863","type":3}, -{"params":{"host_and_port":"marcelduran.com:80"},"phase":0,"source":{"id":196,"type":12},"time":"1250431863","type":85}, -{"phase":1,"source":{"id":196,"type":12},"time":"1250431863","type":81}, -{"params":{"attempt_number":1},"phase":0,"source":{"id":184,"type":9},"time":"1250431942","type":13}, -{"params":{"address_list":["207.97.227.245:0"]},"phase":2,"source":{"id":184,"type":9},"time":"1250431942","type":17}, -{"phase":2,"source":{"id":184,"type":9},"time":"1250431942","type":9}, -{"phase":2,"source":{"id":181,"type":8},"time":"1250431942","type":4}, -{"phase":2,"source":{"id":180,"type":4},"time":"1250431942","type":3}, -{"params":{"source_dependency":{"id":180,"type":4}},"phase":1,"source":{"id":200,"type":5},"time":"1250431942","type":34}, -{"params":{"address_list":["207.97.227.245:80"]},"phase":1,"source":{"id":200,"type":5},"time":"1250431942","type":35}, -{"params":{"address":"207.97.227.245:80"},"phase":1,"source":{"id":200,"type":5},"time":"1250431942","type":36}, -{"phase":2,"source":{"id":190,"type":8},"time":"1250431942","type":4}, -{"phase":2,"source":{"id":189,"type":4},"time":"1250431942","type":3}, -{"params":{"source_dependency":{"id":189,"type":4}},"phase":1,"source":{"id":201,"type":5},"time":"1250431942","type":34}, -{"params":{"address_list":["207.97.227.245:80"]},"phase":1,"source":{"id":201,"type":5},"time":"1250431942","type":35}, -{"params":{"address":"207.97.227.245:80"},"phase":1,"source":{"id":201,"type":5},"time":"1250431942","type":36}, -{"phase":2,"source":{"id":200,"type":5},"time":"1250432011","type":36}, -{"params":{"source_address":"192.168.102.82:50990"},"phase":2,"source":{"id":200,"type":5},"time":"1250432011","type":35}, -{"params":{"source_dependency":{"id":200,"type":5}},"phase":0,"source":{"id":180,"type":4},"time":"1250432011","type":79}, -{"phase":2,"source":{"id":180,"type":4},"time":"1250432011","type":78}, -{"phase":2,"source":{"id":180,"type":4},"time":"1250432011","type":77}, -{"params":{"source_dependency":{"id":180,"type":4}},"phase":0,"source":{"id":196,"type":12},"time":"1250432011","type":88}, -{"params":{"source_dependency":{"id":200,"type":5}},"phase":0,"source":{"id":196,"type":12},"time":"1250432011","type":89}, -{"phase":2,"source":{"id":196,"type":12},"time":"1250432011","type":81}, -{"params":{"source_dependency":{"id":196,"type":12}},"phase":1,"source":{"id":200,"type":5},"time":"1250432011","type":38}, -{"params":{"source_dependency":{"id":196,"type":12}},"phase":0,"source":{"id":193,"type":1},"time":"1250432011","type":122}, -{"params":{"source_dependency":{"id":193,"type":1}},"phase":0,"source":{"id":196,"type":12},"time":"1250432011","type":123}, -{"phase":2,"source":{"id":193,"type":1},"time":"1250432011","type":120}, -{"phase":2,"source":{"id":196,"type":12},"time":"1250432011","type":121}, -{"phase":1,"source":{"id":193,"type":1},"time":"1250432011","type":129}, -{"params":{"headers":["Host: marcelduran.com","Connection: keep-alive","Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8","User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36","Accept-Encoding: gzip,deflate,sdch","Accept-Language: en-US,en;q=0.8"],"line":"GET / HTTP/1.1\r\n"},"phase":0,"source":{"id":193,"type":1},"time":"1250432011","type":130}, -{"params":{"byte_count":334},"phase":0,"source":{"id":200,"type":5},"time":"1250432012","type":61}, -{"phase":2,"source":{"id":193,"type":1},"time":"1250432012","type":129}, -{"phase":1,"source":{"id":193,"type":1},"time":"1250432012","type":134}, -{"phase":1,"source":{"id":193,"type":1},"time":"1250432012","type":215}, -{"phase":2,"source":{"id":201,"type":5},"time":"1250432014","type":36}, -{"params":{"source_address":"192.168.102.82:50991"},"phase":2,"source":{"id":201,"type":5},"time":"1250432014","type":35}, -{"params":{"source_dependency":{"id":201,"type":5}},"phase":0,"source":{"id":189,"type":4},"time":"1250432014","type":79}, -{"phase":2,"source":{"id":189,"type":4},"time":"1250432014","type":78}, -{"phase":2,"source":{"id":189,"type":4},"time":"1250432014","type":77}, -{"params":{"byte_count":975},"phase":0,"source":{"id":200,"type":5},"time":"1250432051","type":63}, -{"phase":2,"source":{"id":193,"type":1},"time":"1250432051","type":215}, -{"params":{"headers":["HTTP/1.1 200 OK","Server: GitHub.com","Date: Fri, 26 Sep 2014 19:42:01 GMT","Content-Type: text/html; charset=utf-8","Last-Modified: Tue, 13 Aug 2013 23:46:37 GMT","Transfer-Encoding: chunked","Connection: close","Expires: Fri, 26 Sep 2014 19:52:01 GMT","Cache-Control: max-age=600","Vary: Accept-Encoding","Content-Encoding: gzip"]},"phase":0,"source":{"id":193,"type":1},"time":"1250432051","type":135}, -{"phase":2,"source":{"id":193,"type":1},"time":"1250432051","type":134}, -{"phase":1,"source":{"id":193,"type":1},"time":"1250432052","type":105}, -{"params":{"buf_len":340,"index":0,"offset":0,"truncate":true},"phase":1,"source":{"id":195,"type":10},"time":"1250432052","type":111}, -{"params":{"bytes_copied":340},"phase":2,"source":{"id":195,"type":10},"time":"1250432052","type":111}, -{"phase":2,"source":{"id":193,"type":1},"time":"1250432052","type":105}, -{"phase":1,"source":{"id":193,"type":1},"time":"1250432052","type":107}, -{"params":{"buf_len":0,"index":1,"offset":0,"truncate":true},"phase":1,"source":{"id":195,"type":10},"time":"1250432052","type":111}, -{"params":{"bytes_copied":0},"phase":2,"source":{"id":195,"type":10},"time":"1250432052","type":111}, -{"phase":2,"source":{"id":193,"type":1},"time":"1250432052","type":107}, -{"phase":1,"source":{"id":193,"type":1},"time":"1250432052","type":105}, -{"params":{"buf_len":0,"index":2,"offset":0,"truncate":true},"phase":1,"source":{"id":195,"type":10},"time":"1250432052","type":111}, -{"params":{"bytes_copied":0},"phase":2,"source":{"id":195,"type":10},"time":"1250432052","type":111}, -{"phase":2,"source":{"id":193,"type":1},"time":"1250432052","type":105}, -{"phase":1,"source":{"id":193,"type":1},"time":"1250432052","type":93}, -{"phase":2,"source":{"id":193,"type":1},"time":"1250432052","type":93}, -{"phase":2,"source":{"id":193,"type":1},"time":"1250432052","type":91}, -{"phase":1,"source":{"id":193,"type":1},"time":"1250432052","type":93}, -{"phase":2,"source":{"id":193,"type":1},"time":"1250432052","type":93}, -{"phase":1,"source":{"id":193,"type":1},"time":"1250432052","type":136}, -{"phase":2,"source":{"id":193,"type":1},"time":"1250432052","type":136}, -{"phase":1,"source":{"id":193,"type":1},"time":"1250432052","type":107}, -{"params":{"buf_len":639,"index":1,"offset":0,"truncate":true},"phase":1,"source":{"id":195,"type":10},"time":"1250432052","type":111}, -{"params":{"bytes_copied":639},"phase":2,"source":{"id":195,"type":10},"time":"1250432052","type":111}, -{"phase":2,"source":{"id":193,"type":1},"time":"1250432052","type":107}, -{"phase":1,"source":{"id":193,"type":1},"time":"1250432052","type":136}, -{"phase":0,"source":{"id":200,"type":5},"time":"1250432052","type":67}, -{"phase":2,"source":{"id":200,"type":5},"time":"1250432053","type":38}, -{"phase":2,"source":{"id":200,"type":5},"time":"1250432053","type":34}, -{"phase":2,"source":{"id":193,"type":1},"time":"1250432053","type":136}, -{"phase":1,"source":{"id":193,"type":1},"time":"1250432053","type":107}, -{"phase":2,"source":{"id":193,"type":1},"time":"1250432053","type":107}, -{"phase":2,"source":{"id":193,"type":1},"time":"1250432053","type":2}, -{"phase":0,"source":{"id":195,"type":10},"time":"1250432053","type":118}, -{"phase":2,"source":{"id":195,"type":10},"time":"1250432053","type":108}, -{"phase":1,"source":{"id":202,"type":1},"time":"1250432146","type":2}, -{"phase":1,"source":{"id":202,"type":1},"time":"1250432147","type":93}, -{"phase":2,"source":{"id":202,"type":1},"time":"1250432147","type":93}, -{"params":{"load_flags":131328,"method":"POST","priority":"LOW","upload_id":"0","url":"http://127.0.0.1:8888/event/received_data"},"phase":1,"source":{"id":202,"type":1},"time":"1250432147","type":91}, -{"phase":1,"source":{"id":202,"type":1},"time":"1250432147","type":93}, -{"phase":2,"source":{"id":202,"type":1},"time":"1250432147","type":93}, -{"phase":1,"source":{"id":202,"type":1},"time":"1250432147","type":99}, -{"phase":2,"source":{"id":202,"type":1},"time":"1250432147","type":99}, -{"phase":1,"source":{"id":202,"type":1},"time":"1250432147","type":93}, -{"phase":2,"source":{"id":202,"type":1},"time":"1250432147","type":93}, -{"phase":1,"source":{"id":202,"type":1},"time":"1250432147","type":120}, -{"params":{"original_url":"http://127.0.0.1:8888/","priority":"LOW","url":"http://127.0.0.1:8888/"},"phase":1,"source":{"id":204,"type":12},"time":"1250432147","type":121}, -{"phase":1,"source":{"id":204,"type":12},"time":"1250432147","type":24}, -{"params":{"pac_string":"DIRECT"},"phase":0,"source":{"id":204,"type":12},"time":"1250432147","type":26}, -{"phase":2,"source":{"id":204,"type":12},"time":"1250432147","type":24}, -{"params":{"source_dependency":{"id":205,"type":8}},"phase":1,"source":{"id":204,"type":12},"time":"1250432147","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":204,"type":12}},"phase":1,"source":{"id":205,"type":8},"time":"1250432147","type":4}, -{"params":{"source_dependency":{"id":205,"type":8}},"phase":1,"source":{"id":206,"type":20},"time":"1250432147","type":303}, -{"params":{"source_dependency":{"id":206,"type":20}},"phase":1,"source":{"id":207,"type":14},"time":"1250432147","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":207,"type":14},"time":"1250432147","type":71}, -{"phase":2,"source":{"id":207,"type":14},"time":"1250432148","type":71}, -{"params":{"address":"[::ffff:2001:0]:53438"},"phase":0,"source":{"id":207,"type":14},"time":"1250432148","type":72}, -{"phase":2,"source":{"id":207,"type":14},"time":"1250432148","type":34}, -{"phase":2,"source":{"id":206,"type":20},"time":"1250432148","type":303}, -{"phase":0,"source":{"id":205,"type":8},"time":"1250432148","type":5}, -{"phase":2,"source":{"id":205,"type":8},"time":"1250432148","type":4}, -{"phase":2,"source":{"id":204,"type":12},"time":"1250432148","type":3}, -{"params":{"host_and_port":"127.0.0.1:8888"},"phase":0,"source":{"id":204,"type":12},"time":"1250432148","type":85}, -{"phase":1,"source":{"id":204,"type":12},"time":"1250432148","type":81}, -{"params":{"group_name":"127.0.0.1:8888"},"phase":1,"source":{"id":208,"type":4},"time":"1250432148","type":77}, -{"phase":1,"source":{"id":208,"type":4},"time":"1250432148","type":78}, -{"params":{"source_dependency":{"id":209,"type":8}},"phase":1,"source":{"id":208,"type":4},"time":"1250432148","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":208,"type":4}},"phase":1,"source":{"id":209,"type":8},"time":"1250432148","type":4}, -{"params":{"source_dependency":{"id":209,"type":8}},"phase":1,"source":{"id":210,"type":20},"time":"1250432148","type":303}, -{"params":{"source_dependency":{"id":210,"type":20}},"phase":1,"source":{"id":211,"type":14},"time":"1250432148","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":211,"type":14},"time":"1250432148","type":71}, -{"phase":2,"source":{"id":211,"type":14},"time":"1250432148","type":71}, -{"params":{"address":"[::ffff:2001:0]:53439"},"phase":0,"source":{"id":211,"type":14},"time":"1250432148","type":72}, -{"phase":2,"source":{"id":211,"type":14},"time":"1250432148","type":34}, -{"phase":2,"source":{"id":210,"type":20},"time":"1250432148","type":303}, -{"phase":0,"source":{"id":209,"type":8},"time":"1250432148","type":5}, -{"phase":2,"source":{"id":209,"type":8},"time":"1250432148","type":4}, -{"phase":2,"source":{"id":208,"type":4},"time":"1250432148","type":3}, -{"params":{"source_dependency":{"id":208,"type":4}},"phase":1,"source":{"id":212,"type":5},"time":"1250432148","type":34}, -{"params":{"address_list":["127.0.0.1:8888"]},"phase":1,"source":{"id":212,"type":5},"time":"1250432148","type":35}, -{"params":{"address":"127.0.0.1:8888"},"phase":1,"source":{"id":212,"type":5},"time":"1250432148","type":36}, -{"phase":2,"source":{"id":212,"type":5},"time":"1250432149","type":36}, -{"params":{"source_address":"127.0.0.1:50992"},"phase":2,"source":{"id":212,"type":5},"time":"1250432149","type":35}, -{"params":{"source_dependency":{"id":212,"type":5}},"phase":0,"source":{"id":208,"type":4},"time":"1250432149","type":79}, -{"phase":2,"source":{"id":208,"type":4},"time":"1250432149","type":78}, -{"phase":2,"source":{"id":208,"type":4},"time":"1250432149","type":77}, -{"params":{"source_dependency":{"id":208,"type":4}},"phase":0,"source":{"id":204,"type":12},"time":"1250432149","type":88}, -{"params":{"source_dependency":{"id":212,"type":5}},"phase":0,"source":{"id":204,"type":12},"time":"1250432149","type":89}, -{"phase":2,"source":{"id":204,"type":12},"time":"1250432149","type":81}, -{"params":{"source_dependency":{"id":204,"type":12}},"phase":1,"source":{"id":212,"type":5},"time":"1250432149","type":38}, -{"params":{"source_dependency":{"id":204,"type":12}},"phase":0,"source":{"id":202,"type":1},"time":"1250432149","type":122}, -{"params":{"source_dependency":{"id":202,"type":1}},"phase":0,"source":{"id":204,"type":12},"time":"1250432149","type":123}, -{"phase":2,"source":{"id":202,"type":1},"time":"1250432149","type":120}, -{"phase":2,"source":{"id":204,"type":12},"time":"1250432149","type":121}, -{"phase":1,"source":{"id":202,"type":1},"time":"1250432149","type":129}, -{"params":{"headers":["Host: 127.0.0.1:8888","Connection: keep-alive","Content-Length: 0","User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36","Origin: chrome-extension://ejfgipfkkpdadoidbhfedneaabgolbno","Content-Type: text/plain;charset=UTF-8","Accept: */*","Accept-Encoding: gzip,deflate","Accept-Language: en-US,en;q=0.8"],"line":"POST /event/received_data HTTP/1.1\r\n"},"phase":0,"source":{"id":202,"type":1},"time":"1250432149","type":130}, -{"params":{"byte_count":397},"phase":0,"source":{"id":212,"type":5},"time":"1250432149","type":61}, -{"phase":2,"source":{"id":202,"type":1},"time":"1250432149","type":129}, -{"phase":1,"source":{"id":202,"type":1},"time":"1250432149","type":134}, -{"phase":1,"source":{"id":202,"type":1},"time":"1250432149","type":215}, -{"params":{"byte_count":0},"phase":0,"source":{"id":212,"type":5},"time":"1250432150","type":63}, -{"params":{"net_error":-324},"phase":2,"source":{"id":202,"type":1},"time":"1250432150","type":215}, -{"params":{"net_error":-324},"phase":2,"source":{"id":202,"type":1},"time":"1250432150","type":134}, -{"params":{"net_error":-324},"phase":2,"source":{"id":202,"type":1},"time":"1250432150","type":91}, -{"phase":1,"source":{"id":202,"type":1},"time":"1250432150","type":93}, -{"phase":2,"source":{"id":202,"type":1},"time":"1250432150","type":93}, -{"phase":0,"source":{"id":212,"type":5},"time":"1250432150","type":67}, -{"phase":2,"source":{"id":212,"type":5},"time":"1250432150","type":38}, -{"phase":2,"source":{"id":212,"type":5},"time":"1250432150","type":34}, -{"params":{"net_error":-324},"phase":2,"source":{"id":202,"type":1},"time":"1250432150","type":2}, -{"phase":1,"source":{"id":213,"type":1},"time":"1250432151","type":2}, -{"phase":1,"source":{"id":213,"type":1},"time":"1250432151","type":93}, -{"phase":2,"source":{"id":213,"type":1},"time":"1250432151","type":93}, -{"params":{"load_flags":131328,"method":"POST","priority":"LOW","url":"http://127.0.0.1:8888/event/navigate"},"phase":1,"source":{"id":213,"type":1},"time":"1250432151","type":91}, -{"phase":1,"source":{"id":213,"type":1},"time":"1250432152","type":93}, -{"phase":2,"source":{"id":213,"type":1},"time":"1250432152","type":93}, -{"phase":1,"source":{"id":213,"type":1},"time":"1250432152","type":99}, -{"phase":2,"source":{"id":213,"type":1},"time":"1250432152","type":99}, -{"phase":1,"source":{"id":213,"type":1},"time":"1250432152","type":93}, -{"phase":2,"source":{"id":213,"type":1},"time":"1250432152","type":93}, -{"phase":1,"source":{"id":213,"type":1},"time":"1250432152","type":120}, -{"params":{"original_url":"http://127.0.0.1:8888/","priority":"LOW","url":"http://127.0.0.1:8888/"},"phase":1,"source":{"id":215,"type":12},"time":"1250432152","type":121}, -{"phase":1,"source":{"id":215,"type":12},"time":"1250432152","type":24}, -{"params":{"pac_string":"DIRECT"},"phase":0,"source":{"id":215,"type":12},"time":"1250432152","type":26}, -{"phase":2,"source":{"id":215,"type":12},"time":"1250432152","type":24}, -{"params":{"source_dependency":{"id":216,"type":8}},"phase":1,"source":{"id":215,"type":12},"time":"1250432152","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":215,"type":12}},"phase":1,"source":{"id":216,"type":8},"time":"1250432152","type":4}, -{"params":{"source_dependency":{"id":216,"type":8}},"phase":1,"source":{"id":217,"type":20},"time":"1250432152","type":303}, -{"params":{"source_dependency":{"id":217,"type":20}},"phase":1,"source":{"id":218,"type":14},"time":"1250432152","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":218,"type":14},"time":"1250432152","type":71}, -{"phase":2,"source":{"id":218,"type":14},"time":"1250432152","type":71}, -{"params":{"address":"[::ffff:2001:0]:53440"},"phase":0,"source":{"id":218,"type":14},"time":"1250432152","type":72}, -{"phase":2,"source":{"id":218,"type":14},"time":"1250432152","type":34}, -{"phase":2,"source":{"id":217,"type":20},"time":"1250432152","type":303}, -{"phase":0,"source":{"id":216,"type":8},"time":"1250432152","type":5}, -{"phase":2,"source":{"id":216,"type":8},"time":"1250432152","type":4}, -{"phase":2,"source":{"id":215,"type":12},"time":"1250432152","type":3}, -{"params":{"host_and_port":"127.0.0.1:8888"},"phase":0,"source":{"id":215,"type":12},"time":"1250432152","type":85}, -{"phase":1,"source":{"id":215,"type":12},"time":"1250432152","type":81}, -{"params":{"group_name":"127.0.0.1:8888"},"phase":1,"source":{"id":219,"type":4},"time":"1250432152","type":77}, -{"phase":1,"source":{"id":219,"type":4},"time":"1250432152","type":78}, -{"params":{"source_dependency":{"id":220,"type":8}},"phase":1,"source":{"id":219,"type":4},"time":"1250432152","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":219,"type":4}},"phase":1,"source":{"id":220,"type":8},"time":"1250432153","type":4}, -{"params":{"source_dependency":{"id":220,"type":8}},"phase":1,"source":{"id":221,"type":20},"time":"1250432153","type":303}, -{"params":{"source_dependency":{"id":221,"type":20}},"phase":1,"source":{"id":222,"type":14},"time":"1250432153","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":222,"type":14},"time":"1250432153","type":71}, -{"phase":2,"source":{"id":222,"type":14},"time":"1250432153","type":71}, -{"params":{"address":"[::ffff:2001:0]:53441"},"phase":0,"source":{"id":222,"type":14},"time":"1250432153","type":72}, -{"phase":2,"source":{"id":222,"type":14},"time":"1250432153","type":34}, -{"phase":2,"source":{"id":221,"type":20},"time":"1250432153","type":303}, -{"phase":0,"source":{"id":220,"type":8},"time":"1250432153","type":5}, -{"phase":2,"source":{"id":220,"type":8},"time":"1250432153","type":4}, -{"phase":2,"source":{"id":219,"type":4},"time":"1250432153","type":3}, -{"params":{"source_dependency":{"id":219,"type":4}},"phase":1,"source":{"id":223,"type":5},"time":"1250432153","type":34}, -{"params":{"address_list":["127.0.0.1:8888"]},"phase":1,"source":{"id":223,"type":5},"time":"1250432153","type":35}, -{"params":{"address":"127.0.0.1:8888"},"phase":1,"source":{"id":223,"type":5},"time":"1250432153","type":36}, -{"phase":2,"source":{"id":223,"type":5},"time":"1250432154","type":36}, -{"params":{"source_address":"127.0.0.1:50993"},"phase":2,"source":{"id":223,"type":5},"time":"1250432154","type":35}, -{"params":{"source_dependency":{"id":223,"type":5}},"phase":0,"source":{"id":219,"type":4},"time":"1250432154","type":79}, -{"phase":2,"source":{"id":219,"type":4},"time":"1250432154","type":78}, -{"phase":2,"source":{"id":219,"type":4},"time":"1250432154","type":77}, -{"params":{"source_dependency":{"id":219,"type":4}},"phase":0,"source":{"id":215,"type":12},"time":"1250432154","type":88}, -{"params":{"source_dependency":{"id":223,"type":5}},"phase":0,"source":{"id":215,"type":12},"time":"1250432154","type":89}, -{"phase":2,"source":{"id":215,"type":12},"time":"1250432154","type":81}, -{"params":{"source_dependency":{"id":215,"type":12}},"phase":1,"source":{"id":223,"type":5},"time":"1250432154","type":38}, -{"params":{"source_dependency":{"id":215,"type":12}},"phase":0,"source":{"id":213,"type":1},"time":"1250432154","type":122}, -{"params":{"source_dependency":{"id":213,"type":1}},"phase":0,"source":{"id":215,"type":12},"time":"1250432154","type":123}, -{"phase":2,"source":{"id":213,"type":1},"time":"1250432154","type":120}, -{"phase":2,"source":{"id":215,"type":12},"time":"1250432154","type":121}, -{"phase":1,"source":{"id":213,"type":1},"time":"1250432154","type":129}, -{"params":{"headers":["Host: 127.0.0.1:8888","Connection: keep-alive","Content-Length: 0","User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36","Origin: chrome-extension://ejfgipfkkpdadoidbhfedneaabgolbno","Accept: */*","Accept-Encoding: gzip,deflate","Accept-Language: en-US,en;q=0.8"],"line":"POST /event/navigate HTTP/1.1\r\n"},"phase":0,"source":{"id":213,"type":1},"time":"1250432154","type":130}, -{"params":{"byte_count":352},"phase":0,"source":{"id":223,"type":5},"time":"1250432154","type":61}, -{"phase":2,"source":{"id":213,"type":1},"time":"1250432154","type":129}, -{"phase":1,"source":{"id":213,"type":1},"time":"1250432154","type":134}, -{"phase":1,"source":{"id":213,"type":1},"time":"1250432154","type":215}, -{"params":{"byte_count":161},"phase":0,"source":{"id":223,"type":5},"time":"1250432154","type":63}, -{"phase":2,"source":{"id":213,"type":1},"time":"1250432154","type":215}, -{"params":{"headers":["HTTP/1.1 200 OK","Server: wptdriver","Cache: no-cache","Pragma: no-cache","Content-Type: application/json","Content-Length: 36"]},"phase":0,"source":{"id":213,"type":1},"time":"1250432154","type":135}, -{"phase":2,"source":{"id":213,"type":1},"time":"1250432154","type":134}, -{"phase":1,"source":{"id":213,"type":1},"time":"1250432154","type":93}, -{"phase":2,"source":{"id":213,"type":1},"time":"1250432154","type":93}, -{"phase":2,"source":{"id":213,"type":1},"time":"1250432154","type":91}, -{"phase":1,"source":{"id":213,"type":1},"time":"1250432155","type":93}, -{"phase":2,"source":{"id":213,"type":1},"time":"1250432155","type":93}, -{"phase":1,"source":{"id":213,"type":1},"time":"1250432155","type":136}, -{"phase":2,"source":{"id":213,"type":1},"time":"1250432155","type":136}, -{"phase":1,"source":{"id":213,"type":1},"time":"1250432155","type":136}, -{"phase":2,"source":{"id":223,"type":5},"time":"1250432155","type":38}, -{"phase":0,"source":{"id":223,"type":5},"time":"1250432155","type":67}, -{"phase":2,"source":{"id":223,"type":5},"time":"1250432155","type":34}, -{"phase":2,"source":{"id":213,"type":1},"time":"1250432155","type":136}, -{"phase":2,"source":{"id":213,"type":1},"time":"1250432155","type":2}, -{"phase":1,"source":{"id":224,"type":1},"time":"1250432183","type":2}, -{"phase":1,"source":{"id":224,"type":1},"time":"1250432183","type":93}, -{"phase":2,"source":{"id":224,"type":1},"time":"1250432184","type":93}, -{"params":{"load_flags":131328,"method":"POST","priority":"LOW","upload_id":"0","url":"http://127.0.0.1:8888/event/request_data"},"phase":1,"source":{"id":224,"type":1},"time":"1250432184","type":91}, -{"phase":1,"source":{"id":224,"type":1},"time":"1250432184","type":93}, -{"phase":2,"source":{"id":224,"type":1},"time":"1250432184","type":93}, -{"phase":1,"source":{"id":224,"type":1},"time":"1250432184","type":99}, -{"phase":2,"source":{"id":224,"type":1},"time":"1250432184","type":99}, -{"phase":1,"source":{"id":224,"type":1},"time":"1250432184","type":93}, -{"phase":2,"source":{"id":224,"type":1},"time":"1250432184","type":93}, -{"phase":1,"source":{"id":224,"type":1},"time":"1250432184","type":120}, -{"params":{"original_url":"http://127.0.0.1:8888/","priority":"LOW","url":"http://127.0.0.1:8888/"},"phase":1,"source":{"id":226,"type":12},"time":"1250432184","type":121}, -{"phase":1,"source":{"id":226,"type":12},"time":"1250432184","type":24}, -{"params":{"pac_string":"DIRECT"},"phase":0,"source":{"id":226,"type":12},"time":"1250432184","type":26}, -{"phase":2,"source":{"id":226,"type":12},"time":"1250432184","type":24}, -{"params":{"source_dependency":{"id":227,"type":8}},"phase":1,"source":{"id":226,"type":12},"time":"1250432184","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":226,"type":12}},"phase":1,"source":{"id":227,"type":8},"time":"1250432184","type":4}, -{"params":{"source_dependency":{"id":227,"type":8}},"phase":1,"source":{"id":228,"type":20},"time":"1250432184","type":303}, -{"params":{"source_dependency":{"id":228,"type":20}},"phase":1,"source":{"id":229,"type":14},"time":"1250432184","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":229,"type":14},"time":"1250432184","type":71}, -{"phase":2,"source":{"id":229,"type":14},"time":"1250432185","type":71}, -{"params":{"address":"[::ffff:2001:0]:53442"},"phase":0,"source":{"id":229,"type":14},"time":"1250432185","type":72}, -{"phase":2,"source":{"id":229,"type":14},"time":"1250432185","type":34}, -{"phase":2,"source":{"id":228,"type":20},"time":"1250432185","type":303}, -{"phase":0,"source":{"id":227,"type":8},"time":"1250432185","type":5}, -{"phase":2,"source":{"id":227,"type":8},"time":"1250432185","type":4}, -{"phase":2,"source":{"id":226,"type":12},"time":"1250432185","type":3}, -{"params":{"host_and_port":"127.0.0.1:8888"},"phase":0,"source":{"id":226,"type":12},"time":"1250432185","type":85}, -{"phase":1,"source":{"id":226,"type":12},"time":"1250432185","type":81}, -{"params":{"group_name":"127.0.0.1:8888"},"phase":1,"source":{"id":230,"type":4},"time":"1250432185","type":77}, -{"phase":1,"source":{"id":230,"type":4},"time":"1250432185","type":78}, -{"params":{"source_dependency":{"id":231,"type":8}},"phase":1,"source":{"id":230,"type":4},"time":"1250432185","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":230,"type":4}},"phase":1,"source":{"id":231,"type":8},"time":"1250432185","type":4}, -{"params":{"source_dependency":{"id":231,"type":8}},"phase":1,"source":{"id":232,"type":20},"time":"1250432185","type":303}, -{"params":{"source_dependency":{"id":232,"type":20}},"phase":1,"source":{"id":233,"type":14},"time":"1250432185","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":233,"type":14},"time":"1250432185","type":71}, -{"phase":2,"source":{"id":233,"type":14},"time":"1250432185","type":71}, -{"params":{"address":"[::ffff:2001:0]:53443"},"phase":0,"source":{"id":233,"type":14},"time":"1250432185","type":72}, -{"phase":2,"source":{"id":233,"type":14},"time":"1250432185","type":34}, -{"phase":2,"source":{"id":232,"type":20},"time":"1250432185","type":303}, -{"phase":0,"source":{"id":231,"type":8},"time":"1250432185","type":5}, -{"phase":2,"source":{"id":231,"type":8},"time":"1250432185","type":4}, -{"phase":2,"source":{"id":230,"type":4},"time":"1250432185","type":3}, -{"params":{"source_dependency":{"id":230,"type":4}},"phase":1,"source":{"id":234,"type":5},"time":"1250432185","type":34}, -{"params":{"address_list":["127.0.0.1:8888"]},"phase":1,"source":{"id":234,"type":5},"time":"1250432185","type":35}, -{"params":{"address":"127.0.0.1:8888"},"phase":1,"source":{"id":234,"type":5},"time":"1250432185","type":36}, -{"phase":2,"source":{"id":234,"type":5},"time":"1250432187","type":36}, -{"params":{"source_address":"127.0.0.1:50994"},"phase":2,"source":{"id":234,"type":5},"time":"1250432187","type":35}, -{"params":{"source_dependency":{"id":234,"type":5}},"phase":0,"source":{"id":230,"type":4},"time":"1250432187","type":79}, -{"phase":2,"source":{"id":230,"type":4},"time":"1250432187","type":78}, -{"phase":2,"source":{"id":230,"type":4},"time":"1250432187","type":77}, -{"params":{"source_dependency":{"id":230,"type":4}},"phase":0,"source":{"id":226,"type":12},"time":"1250432187","type":88}, -{"params":{"source_dependency":{"id":234,"type":5}},"phase":0,"source":{"id":226,"type":12},"time":"1250432187","type":89}, -{"phase":2,"source":{"id":226,"type":12},"time":"1250432187","type":81}, -{"params":{"source_dependency":{"id":226,"type":12}},"phase":1,"source":{"id":234,"type":5},"time":"1250432187","type":38}, -{"params":{"source_dependency":{"id":226,"type":12}},"phase":0,"source":{"id":224,"type":1},"time":"1250432187","type":122}, -{"params":{"source_dependency":{"id":224,"type":1}},"phase":0,"source":{"id":226,"type":12},"time":"1250432187","type":123}, -{"phase":2,"source":{"id":224,"type":1},"time":"1250432187","type":120}, -{"phase":2,"source":{"id":226,"type":12},"time":"1250432187","type":121}, -{"phase":1,"source":{"id":224,"type":1},"time":"1250432187","type":129}, -{"params":{"headers":["Host: 127.0.0.1:8888","Connection: keep-alive","Content-Length: 1184","User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36","Origin: chrome-extension://ejfgipfkkpdadoidbhfedneaabgolbno","Content-Type: text/plain;charset=UTF-8","Accept: */*","Accept-Encoding: gzip,deflate","Accept-Language: en-US,en;q=0.8"],"line":"POST /event/request_data HTTP/1.1\r\n"},"phase":0,"source":{"id":224,"type":1},"time":"1250432187","type":130}, -{"params":{"byte_count":399},"phase":0,"source":{"id":234,"type":5},"time":"1250432187","type":61}, -{"params":{"did_merge":false,"is_chunked":false,"length":1184},"phase":0,"source":{"id":224,"type":1},"time":"1250432187","type":131}, -{"params":{"byte_count":1184},"phase":0,"source":{"id":234,"type":5},"time":"1250432187","type":61}, -{"phase":2,"source":{"id":224,"type":1},"time":"1250432187","type":129}, -{"phase":1,"source":{"id":224,"type":1},"time":"1250432187","type":134}, -{"phase":1,"source":{"id":224,"type":1},"time":"1250432187","type":215}, -{"params":{"byte_count":161},"phase":0,"source":{"id":234,"type":5},"time":"1250432199","type":63}, -{"phase":2,"source":{"id":224,"type":1},"time":"1250432200","type":215}, -{"params":{"headers":["HTTP/1.1 200 OK","Server: wptdriver","Cache: no-cache","Pragma: no-cache","Content-Type: application/json","Content-Length: 36"]},"phase":0,"source":{"id":224,"type":1},"time":"1250432200","type":135}, -{"phase":2,"source":{"id":224,"type":1},"time":"1250432200","type":134}, -{"phase":1,"source":{"id":224,"type":1},"time":"1250432200","type":93}, -{"phase":2,"source":{"id":224,"type":1},"time":"1250432200","type":93}, -{"phase":2,"source":{"id":224,"type":1},"time":"1250432200","type":91}, -{"phase":1,"source":{"id":224,"type":1},"time":"1250432200","type":93}, -{"phase":2,"source":{"id":224,"type":1},"time":"1250432200","type":93}, -{"phase":1,"source":{"id":224,"type":1},"time":"1250432200","type":136}, -{"phase":2,"source":{"id":224,"type":1},"time":"1250432200","type":136}, -{"phase":1,"source":{"id":224,"type":1},"time":"1250432200","type":136}, -{"phase":2,"source":{"id":234,"type":5},"time":"1250432200","type":38}, -{"phase":0,"source":{"id":234,"type":5},"time":"1250432200","type":67}, -{"phase":2,"source":{"id":234,"type":5},"time":"1250432200","type":34}, -{"phase":2,"source":{"id":224,"type":1},"time":"1250432200","type":136}, -{"phase":2,"source":{"id":224,"type":1},"time":"1250432200","type":2}, -{"phase":1,"source":{"id":235,"type":1},"time":"1250432209","type":2}, -{"phase":1,"source":{"id":235,"type":1},"time":"1250432209","type":93}, -{"phase":2,"source":{"id":235,"type":1},"time":"1250432209","type":93}, -{"params":{"load_flags":131328,"method":"POST","priority":"LOW","url":"http://127.0.0.1:8888/event/load?timestamp=319.00000013411045&fixedViewport=1"},"phase":1,"source":{"id":235,"type":1},"time":"1250432209","type":91}, -{"phase":1,"source":{"id":235,"type":1},"time":"1250432209","type":93}, -{"phase":2,"source":{"id":235,"type":1},"time":"1250432209","type":93}, -{"phase":1,"source":{"id":235,"type":1},"time":"1250432210","type":99}, -{"phase":2,"source":{"id":235,"type":1},"time":"1250432210","type":99}, -{"phase":1,"source":{"id":235,"type":1},"time":"1250432210","type":93}, -{"phase":2,"source":{"id":235,"type":1},"time":"1250432210","type":93}, -{"phase":1,"source":{"id":235,"type":1},"time":"1250432210","type":120}, -{"params":{"original_url":"http://127.0.0.1:8888/","priority":"LOW","url":"http://127.0.0.1:8888/"},"phase":1,"source":{"id":236,"type":12},"time":"1250432210","type":121}, -{"phase":1,"source":{"id":236,"type":12},"time":"1250432210","type":24}, -{"params":{"pac_string":"DIRECT"},"phase":0,"source":{"id":236,"type":12},"time":"1250432210","type":26}, -{"phase":2,"source":{"id":236,"type":12},"time":"1250432210","type":24}, -{"params":{"source_dependency":{"id":237,"type":8}},"phase":1,"source":{"id":236,"type":12},"time":"1250432210","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":236,"type":12}},"phase":1,"source":{"id":237,"type":8},"time":"1250432210","type":4}, -{"params":{"source_dependency":{"id":237,"type":8}},"phase":1,"source":{"id":238,"type":20},"time":"1250432210","type":303}, -{"params":{"source_dependency":{"id":238,"type":20}},"phase":1,"source":{"id":239,"type":14},"time":"1250432210","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":239,"type":14},"time":"1250432210","type":71}, -{"phase":2,"source":{"id":239,"type":14},"time":"1250432210","type":71}, -{"params":{"address":"[::ffff:2001:0]:53444"},"phase":0,"source":{"id":239,"type":14},"time":"1250432210","type":72}, -{"phase":2,"source":{"id":239,"type":14},"time":"1250432210","type":34}, -{"phase":2,"source":{"id":238,"type":20},"time":"1250432210","type":303}, -{"phase":0,"source":{"id":237,"type":8},"time":"1250432210","type":5}, -{"phase":2,"source":{"id":237,"type":8},"time":"1250432210","type":4}, -{"phase":2,"source":{"id":236,"type":12},"time":"1250432210","type":3}, -{"params":{"host_and_port":"127.0.0.1:8888"},"phase":0,"source":{"id":236,"type":12},"time":"1250432210","type":85}, -{"phase":1,"source":{"id":236,"type":12},"time":"1250432210","type":81}, -{"params":{"group_name":"127.0.0.1:8888"},"phase":1,"source":{"id":240,"type":4},"time":"1250432210","type":77}, -{"phase":1,"source":{"id":240,"type":4},"time":"1250432210","type":78}, -{"params":{"source_dependency":{"id":241,"type":8}},"phase":1,"source":{"id":240,"type":4},"time":"1250432210","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":240,"type":4}},"phase":1,"source":{"id":241,"type":8},"time":"1250432210","type":4}, -{"params":{"source_dependency":{"id":241,"type":8}},"phase":1,"source":{"id":242,"type":20},"time":"1250432210","type":303}, -{"params":{"source_dependency":{"id":242,"type":20}},"phase":1,"source":{"id":243,"type":14},"time":"1250432210","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":243,"type":14},"time":"1250432210","type":71}, -{"phase":2,"source":{"id":243,"type":14},"time":"1250432210","type":71}, -{"params":{"address":"[::ffff:2001:0]:53445"},"phase":0,"source":{"id":243,"type":14},"time":"1250432210","type":72}, -{"phase":2,"source":{"id":243,"type":14},"time":"1250432210","type":34}, -{"phase":2,"source":{"id":242,"type":20},"time":"1250432210","type":303}, -{"phase":0,"source":{"id":241,"type":8},"time":"1250432210","type":5}, -{"phase":2,"source":{"id":241,"type":8},"time":"1250432210","type":4}, -{"phase":2,"source":{"id":240,"type":4},"time":"1250432210","type":3}, -{"params":{"source_dependency":{"id":240,"type":4}},"phase":1,"source":{"id":244,"type":5},"time":"1250432210","type":34}, -{"params":{"address_list":["127.0.0.1:8888"]},"phase":1,"source":{"id":244,"type":5},"time":"1250432211","type":35}, -{"params":{"address":"127.0.0.1:8888"},"phase":1,"source":{"id":244,"type":5},"time":"1250432211","type":36}, -{"phase":2,"source":{"id":244,"type":5},"time":"1250432211","type":36}, -{"params":{"source_address":"127.0.0.1:50995"},"phase":2,"source":{"id":244,"type":5},"time":"1250432211","type":35}, -{"params":{"source_dependency":{"id":244,"type":5}},"phase":0,"source":{"id":240,"type":4},"time":"1250432211","type":79}, -{"phase":2,"source":{"id":240,"type":4},"time":"1250432211","type":78}, -{"phase":2,"source":{"id":240,"type":4},"time":"1250432211","type":77}, -{"params":{"source_dependency":{"id":240,"type":4}},"phase":0,"source":{"id":236,"type":12},"time":"1250432211","type":88}, -{"params":{"source_dependency":{"id":244,"type":5}},"phase":0,"source":{"id":236,"type":12},"time":"1250432211","type":89}, -{"phase":2,"source":{"id":236,"type":12},"time":"1250432211","type":81}, -{"params":{"source_dependency":{"id":236,"type":12}},"phase":1,"source":{"id":244,"type":5},"time":"1250432211","type":38}, -{"params":{"source_dependency":{"id":236,"type":12}},"phase":0,"source":{"id":235,"type":1},"time":"1250432211","type":122}, -{"params":{"source_dependency":{"id":235,"type":1}},"phase":0,"source":{"id":236,"type":12},"time":"1250432211","type":123}, -{"phase":2,"source":{"id":235,"type":1},"time":"1250432211","type":120}, -{"phase":2,"source":{"id":236,"type":12},"time":"1250432211","type":121}, -{"phase":1,"source":{"id":235,"type":1},"time":"1250432211","type":129}, -{"params":{"headers":["Host: 127.0.0.1:8888","Connection: keep-alive","Content-Length: 0","User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36","Origin: chrome-extension://ejfgipfkkpdadoidbhfedneaabgolbno","Accept: */*","Accept-Encoding: gzip,deflate","Accept-Language: en-US,en;q=0.8"],"line":"POST /event/load?timestamp=319.00000013411045&fixedViewport=1 HTTP/1.1\r\n"},"phase":0,"source":{"id":235,"type":1},"time":"1250432211","type":130}, -{"params":{"byte_count":393},"phase":0,"source":{"id":244,"type":5},"time":"1250432212","type":61}, -{"phase":2,"source":{"id":235,"type":1},"time":"1250432212","type":129}, -{"phase":1,"source":{"id":235,"type":1},"time":"1250432212","type":134}, -{"phase":1,"source":{"id":235,"type":1},"time":"1250432212","type":215}, -{"params":{"byte_count":161},"phase":0,"source":{"id":244,"type":5},"time":"1250432214","type":63}, -{"phase":2,"source":{"id":235,"type":1},"time":"1250432214","type":215}, -{"params":{"headers":["HTTP/1.1 200 OK","Server: wptdriver","Cache: no-cache","Pragma: no-cache","Content-Type: application/json","Content-Length: 36"]},"phase":0,"source":{"id":235,"type":1},"time":"1250432214","type":135}, -{"phase":2,"source":{"id":235,"type":1},"time":"1250432214","type":134}, -{"phase":1,"source":{"id":235,"type":1},"time":"1250432214","type":93}, -{"phase":2,"source":{"id":235,"type":1},"time":"1250432214","type":93}, -{"phase":2,"source":{"id":235,"type":1},"time":"1250432214","type":91}, -{"phase":1,"source":{"id":235,"type":1},"time":"1250432214","type":93}, -{"phase":2,"source":{"id":235,"type":1},"time":"1250432214","type":93}, -{"phase":1,"source":{"id":235,"type":1},"time":"1250432214","type":136}, -{"phase":2,"source":{"id":235,"type":1},"time":"1250432214","type":136}, -{"phase":1,"source":{"id":235,"type":1},"time":"1250432214","type":136}, -{"phase":2,"source":{"id":244,"type":5},"time":"1250432214","type":38}, -{"phase":0,"source":{"id":244,"type":5},"time":"1250432214","type":67}, -{"phase":2,"source":{"id":244,"type":5},"time":"1250432214","type":34}, -{"phase":2,"source":{"id":235,"type":1},"time":"1250432214","type":136}, -{"phase":2,"source":{"id":235,"type":1},"time":"1250432215","type":2}, -{"phase":1,"source":{"id":245,"type":1},"time":"1250432241","type":2}, -{"phase":1,"source":{"id":245,"type":1},"time":"1250432242","type":93}, -{"phase":2,"source":{"id":245,"type":1},"time":"1250432242","type":93}, -{"params":{"load_flags":131328,"method":"POST","priority":"LOW","url":"http://127.0.0.1:8888/event/complete"},"phase":1,"source":{"id":245,"type":1},"time":"1250432242","type":91}, -{"phase":1,"source":{"id":245,"type":1},"time":"1250432242","type":93}, -{"phase":2,"source":{"id":245,"type":1},"time":"1250432242","type":93}, -{"phase":1,"source":{"id":245,"type":1},"time":"1250432242","type":99}, -{"phase":2,"source":{"id":245,"type":1},"time":"1250432242","type":99}, -{"phase":1,"source":{"id":245,"type":1},"time":"1250432242","type":93}, -{"phase":2,"source":{"id":245,"type":1},"time":"1250432242","type":93}, -{"phase":1,"source":{"id":245,"type":1},"time":"1250432242","type":120}, -{"params":{"original_url":"http://127.0.0.1:8888/","priority":"LOW","url":"http://127.0.0.1:8888/"},"phase":1,"source":{"id":247,"type":12},"time":"1250432242","type":121}, -{"phase":1,"source":{"id":247,"type":12},"time":"1250432242","type":24}, -{"params":{"pac_string":"DIRECT"},"phase":0,"source":{"id":247,"type":12},"time":"1250432242","type":26}, -{"phase":2,"source":{"id":247,"type":12},"time":"1250432242","type":24}, -{"params":{"source_dependency":{"id":248,"type":8}},"phase":1,"source":{"id":247,"type":12},"time":"1250432242","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":247,"type":12}},"phase":1,"source":{"id":248,"type":8},"time":"1250432242","type":4}, -{"params":{"source_dependency":{"id":248,"type":8}},"phase":1,"source":{"id":249,"type":20},"time":"1250432242","type":303}, -{"params":{"source_dependency":{"id":249,"type":20}},"phase":1,"source":{"id":250,"type":14},"time":"1250432242","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":250,"type":14},"time":"1250432242","type":71}, -{"phase":2,"source":{"id":250,"type":14},"time":"1250432243","type":71}, -{"params":{"address":"[::ffff:2001:0]:53446"},"phase":0,"source":{"id":250,"type":14},"time":"1250432243","type":72}, -{"phase":2,"source":{"id":250,"type":14},"time":"1250432243","type":34}, -{"phase":2,"source":{"id":249,"type":20},"time":"1250432243","type":303}, -{"phase":0,"source":{"id":248,"type":8},"time":"1250432243","type":5}, -{"phase":2,"source":{"id":248,"type":8},"time":"1250432243","type":4}, -{"phase":2,"source":{"id":247,"type":12},"time":"1250432243","type":3}, -{"params":{"host_and_port":"127.0.0.1:8888"},"phase":0,"source":{"id":247,"type":12},"time":"1250432243","type":85}, -{"phase":1,"source":{"id":247,"type":12},"time":"1250432243","type":81}, -{"params":{"group_name":"127.0.0.1:8888"},"phase":1,"source":{"id":251,"type":4},"time":"1250432243","type":77}, -{"phase":1,"source":{"id":251,"type":4},"time":"1250432243","type":78}, -{"params":{"source_dependency":{"id":252,"type":8}},"phase":1,"source":{"id":251,"type":4},"time":"1250432243","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":251,"type":4}},"phase":1,"source":{"id":252,"type":8},"time":"1250432243","type":4}, -{"params":{"source_dependency":{"id":252,"type":8}},"phase":1,"source":{"id":253,"type":20},"time":"1250432243","type":303}, -{"params":{"source_dependency":{"id":253,"type":20}},"phase":1,"source":{"id":254,"type":14},"time":"1250432243","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":254,"type":14},"time":"1250432243","type":71}, -{"phase":2,"source":{"id":254,"type":14},"time":"1250432243","type":71}, -{"params":{"address":"[::ffff:2001:0]:53447"},"phase":0,"source":{"id":254,"type":14},"time":"1250432243","type":72}, -{"phase":2,"source":{"id":254,"type":14},"time":"1250432243","type":34}, -{"phase":2,"source":{"id":253,"type":20},"time":"1250432243","type":303}, -{"phase":0,"source":{"id":252,"type":8},"time":"1250432243","type":5}, -{"phase":2,"source":{"id":252,"type":8},"time":"1250432243","type":4}, -{"phase":2,"source":{"id":251,"type":4},"time":"1250432243","type":3}, -{"params":{"source_dependency":{"id":251,"type":4}},"phase":1,"source":{"id":255,"type":5},"time":"1250432243","type":34}, -{"params":{"address_list":["127.0.0.1:8888"]},"phase":1,"source":{"id":255,"type":5},"time":"1250432243","type":35}, -{"params":{"address":"127.0.0.1:8888"},"phase":1,"source":{"id":255,"type":5},"time":"1250432243","type":36}, -{"phase":2,"source":{"id":255,"type":5},"time":"1250432246","type":36}, -{"params":{"source_address":"127.0.0.1:50996"},"phase":2,"source":{"id":255,"type":5},"time":"1250432246","type":35}, -{"params":{"source_dependency":{"id":255,"type":5}},"phase":0,"source":{"id":251,"type":4},"time":"1250432246","type":79}, -{"phase":2,"source":{"id":251,"type":4},"time":"1250432246","type":78}, -{"phase":2,"source":{"id":251,"type":4},"time":"1250432246","type":77}, -{"params":{"source_dependency":{"id":251,"type":4}},"phase":0,"source":{"id":247,"type":12},"time":"1250432246","type":88}, -{"params":{"source_dependency":{"id":255,"type":5}},"phase":0,"source":{"id":247,"type":12},"time":"1250432246","type":89}, -{"phase":2,"source":{"id":247,"type":12},"time":"1250432246","type":81}, -{"params":{"source_dependency":{"id":247,"type":12}},"phase":1,"source":{"id":255,"type":5},"time":"1250432246","type":38}, -{"params":{"source_dependency":{"id":247,"type":12}},"phase":0,"source":{"id":245,"type":1},"time":"1250432246","type":122}, -{"params":{"source_dependency":{"id":245,"type":1}},"phase":0,"source":{"id":247,"type":12},"time":"1250432246","type":123}, -{"phase":2,"source":{"id":245,"type":1},"time":"1250432246","type":120}, -{"phase":2,"source":{"id":247,"type":12},"time":"1250432246","type":121}, -{"phase":1,"source":{"id":245,"type":1},"time":"1250432246","type":129}, -{"params":{"headers":["Host: 127.0.0.1:8888","Connection: keep-alive","Content-Length: 0","User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36","Origin: chrome-extension://ejfgipfkkpdadoidbhfedneaabgolbno","Accept: */*","Accept-Encoding: gzip,deflate","Accept-Language: en-US,en;q=0.8"],"line":"POST /event/complete HTTP/1.1\r\n"},"phase":0,"source":{"id":245,"type":1},"time":"1250432246","type":130}, -{"params":{"byte_count":352},"phase":0,"source":{"id":255,"type":5},"time":"1250432247","type":61}, -{"phase":2,"source":{"id":245,"type":1},"time":"1250432247","type":129}, -{"phase":1,"source":{"id":245,"type":1},"time":"1250432247","type":134}, -{"phase":1,"source":{"id":245,"type":1},"time":"1250432247","type":215}, -{"params":{"byte_count":161},"phase":0,"source":{"id":255,"type":5},"time":"1250432247","type":63}, -{"phase":2,"source":{"id":245,"type":1},"time":"1250432247","type":215}, -{"params":{"headers":["HTTP/1.1 200 OK","Server: wptdriver","Cache: no-cache","Pragma: no-cache","Content-Type: application/json","Content-Length: 36"]},"phase":0,"source":{"id":245,"type":1},"time":"1250432247","type":135}, -{"phase":2,"source":{"id":245,"type":1},"time":"1250432247","type":134}, -{"phase":1,"source":{"id":245,"type":1},"time":"1250432247","type":93}, -{"phase":2,"source":{"id":245,"type":1},"time":"1250432247","type":93}, -{"phase":2,"source":{"id":245,"type":1},"time":"1250432247","type":91}, -{"phase":1,"source":{"id":245,"type":1},"time":"1250432247","type":93}, -{"phase":2,"source":{"id":245,"type":1},"time":"1250432247","type":93}, -{"phase":1,"source":{"id":245,"type":1},"time":"1250432247","type":136}, -{"phase":2,"source":{"id":245,"type":1},"time":"1250432247","type":136}, -{"phase":1,"source":{"id":245,"type":1},"time":"1250432247","type":136}, -{"phase":2,"source":{"id":255,"type":5},"time":"1250432247","type":38}, -{"phase":0,"source":{"id":255,"type":5},"time":"1250432247","type":67}, -{"phase":2,"source":{"id":255,"type":5},"time":"1250432247","type":34}, -{"phase":2,"source":{"id":245,"type":1},"time":"1250432247","type":136}, -{"phase":2,"source":{"id":245,"type":1},"time":"1250432248","type":2}, -{"phase":1,"source":{"id":256,"type":1},"time":"1250432266","type":2}, -{"phase":1,"source":{"id":256,"type":1},"time":"1250432266","type":93}, -{"phase":2,"source":{"id":256,"type":1},"time":"1250432266","type":93}, -{"params":{"load_flags":67240192,"method":"GET","priority":"LOWEST","url":"http://marcelduran.com/favicon.ico"},"phase":1,"source":{"id":256,"type":1},"time":"1250432266","type":91}, -{"phase":1,"source":{"id":256,"type":1},"time":"1250432267","type":93}, -{"phase":2,"source":{"id":256,"type":1},"time":"1250432267","type":93}, -{"phase":1,"source":{"id":256,"type":1},"time":"1250432267","type":99}, -{"phase":2,"source":{"id":256,"type":1},"time":"1250432267","type":99}, -{"phase":1,"source":{"id":256,"type":1},"time":"1250432267","type":100}, -{"params":{"net_error":-2},"phase":2,"source":{"id":256,"type":1},"time":"1250432267","type":100}, -{"phase":1,"source":{"id":256,"type":1},"time":"1250432267","type":101}, -{"params":{"created":true,"key":"http://marcelduran.com/favicon.ico"},"phase":1,"source":{"id":258,"type":10},"time":"1250432267","type":108}, -{"phase":2,"source":{"id":256,"type":1},"time":"1250432267","type":101}, -{"phase":1,"source":{"id":256,"type":1},"time":"1250432267","type":102}, -{"phase":2,"source":{"id":256,"type":1},"time":"1250432267","type":102}, -{"phase":1,"source":{"id":256,"type":1},"time":"1250432267","type":93}, -{"phase":2,"source":{"id":256,"type":1},"time":"1250432267","type":93}, -{"phase":1,"source":{"id":256,"type":1},"time":"1250432267","type":120}, -{"params":{"original_url":"http://marcelduran.com/","priority":"LOWEST","url":"http://marcelduran.com/"},"phase":1,"source":{"id":259,"type":12},"time":"1250432267","type":121}, -{"phase":1,"source":{"id":259,"type":12},"time":"1250432267","type":24}, -{"params":{"pac_string":"DIRECT"},"phase":0,"source":{"id":259,"type":12},"time":"1250432267","type":26}, -{"phase":2,"source":{"id":259,"type":12},"time":"1250432267","type":24}, -{"params":{"source_dependency":{"id":260,"type":8}},"phase":1,"source":{"id":259,"type":12},"time":"1250432267","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"marcelduran.com:80","is_speculative":false,"source_dependency":{"id":259,"type":12}},"phase":1,"source":{"id":260,"type":8},"time":"1250432267","type":4}, -{"params":{"source_dependency":{"id":260,"type":8}},"phase":1,"source":{"id":261,"type":20},"time":"1250432267","type":303}, -{"params":{"source_dependency":{"id":261,"type":20}},"phase":1,"source":{"id":262,"type":14},"time":"1250432267","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":262,"type":14},"time":"1250432267","type":71}, -{"phase":2,"source":{"id":262,"type":14},"time":"1250432268","type":71}, -{"params":{"address":"[::ffff:2001:0]:53448"},"phase":0,"source":{"id":262,"type":14},"time":"1250432268","type":72}, -{"phase":2,"source":{"id":262,"type":14},"time":"1250432268","type":34}, -{"phase":2,"source":{"id":261,"type":20},"time":"1250432268","type":303}, -{"phase":0,"source":{"id":260,"type":8},"time":"1250432268","type":5}, -{"phase":0,"source":{"id":260,"type":8},"time":"1250432268","type":6}, -{"phase":2,"source":{"id":260,"type":8},"time":"1250432268","type":4}, -{"phase":2,"source":{"id":259,"type":12},"time":"1250432268","type":3}, -{"params":{"host_and_port":"marcelduran.com:80"},"phase":0,"source":{"id":259,"type":12},"time":"1250432268","type":85}, -{"phase":1,"source":{"id":259,"type":12},"time":"1250432268","type":81}, -{"params":{"source_dependency":{"id":201,"type":5}},"phase":0,"source":{"id":259,"type":12},"time":"1250432268","type":89}, -{"phase":2,"source":{"id":259,"type":12},"time":"1250432268","type":81}, -{"params":{"source_dependency":{"id":259,"type":12}},"phase":1,"source":{"id":201,"type":5},"time":"1250432268","type":38}, -{"params":{"source_dependency":{"id":259,"type":12}},"phase":0,"source":{"id":256,"type":1},"time":"1250432268","type":122}, -{"params":{"source_dependency":{"id":256,"type":1}},"phase":0,"source":{"id":259,"type":12},"time":"1250432268","type":123}, -{"phase":2,"source":{"id":256,"type":1},"time":"1250432268","type":120}, -{"phase":2,"source":{"id":259,"type":12},"time":"1250432268","type":121}, -{"phase":1,"source":{"id":256,"type":1},"time":"1250432268","type":129}, -{"params":{"headers":["Host: marcelduran.com","Connection: keep-alive","Accept: */*","User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36","Accept-Encoding: gzip,deflate,sdch","Accept-Language: en-US,en;q=0.8"],"line":"GET /favicon.ico HTTP/1.1\r\n"},"phase":0,"source":{"id":256,"type":1},"time":"1250432268","type":130}, -{"params":{"byte_count":274},"phase":0,"source":{"id":201,"type":5},"time":"1250432268","type":61}, -{"phase":2,"source":{"id":256,"type":1},"time":"1250432268","type":129}, -{"phase":1,"source":{"id":256,"type":1},"time":"1250432268","type":134}, -{"phase":1,"source":{"id":256,"type":1},"time":"1250432268","type":215}, -{"params":{"byte_count":1104},"phase":0,"source":{"id":201,"type":5},"time":"1250432305","type":63}, -{"phase":2,"source":{"id":256,"type":1},"time":"1250432305","type":215}, -{"params":{"headers":["HTTP/1.1 200 OK","Server: GitHub.com","Date: Fri, 26 Sep 2014 19:42:01 GMT","Content-Type: image/x-icon","Content-Length: 801","Last-Modified: Tue, 13 Aug 2013 23:46:37 GMT","Connection: close","Expires: Fri, 26 Sep 2014 19:52:01 GMT","Cache-Control: max-age=600","Vary: Accept-Encoding","Accept-Ranges: bytes"]},"phase":0,"source":{"id":256,"type":1},"time":"1250432305","type":135}, -{"phase":2,"source":{"id":256,"type":1},"time":"1250432305","type":134}, -{"phase":1,"source":{"id":256,"type":1},"time":"1250432305","type":105}, -{"params":{"buf_len":348,"index":0,"offset":0,"truncate":true},"phase":1,"source":{"id":258,"type":10},"time":"1250432305","type":111}, -{"params":{"bytes_copied":348},"phase":2,"source":{"id":258,"type":10},"time":"1250432305","type":111}, -{"phase":2,"source":{"id":256,"type":1},"time":"1250432305","type":105}, -{"phase":1,"source":{"id":256,"type":1},"time":"1250432305","type":107}, -{"params":{"buf_len":0,"index":1,"offset":0,"truncate":true},"phase":1,"source":{"id":258,"type":10},"time":"1250432305","type":111}, -{"params":{"bytes_copied":0},"phase":2,"source":{"id":258,"type":10},"time":"1250432305","type":111}, -{"phase":2,"source":{"id":256,"type":1},"time":"1250432305","type":107}, -{"phase":1,"source":{"id":256,"type":1},"time":"1250432305","type":105}, -{"params":{"buf_len":0,"index":2,"offset":0,"truncate":true},"phase":1,"source":{"id":258,"type":10},"time":"1250432305","type":111}, -{"params":{"bytes_copied":0},"phase":2,"source":{"id":258,"type":10},"time":"1250432306","type":111}, -{"phase":2,"source":{"id":256,"type":1},"time":"1250432306","type":105}, -{"phase":1,"source":{"id":256,"type":1},"time":"1250432306","type":93}, -{"phase":2,"source":{"id":256,"type":1},"time":"1250432306","type":93}, -{"phase":2,"source":{"id":256,"type":1},"time":"1250432306","type":91}, -{"phase":1,"source":{"id":256,"type":1},"time":"1250432306","type":93}, -{"phase":2,"source":{"id":256,"type":1},"time":"1250432306","type":93}, -{"phase":1,"source":{"id":256,"type":1},"time":"1250432306","type":136}, -{"phase":2,"source":{"id":256,"type":1},"time":"1250432306","type":136}, -{"phase":1,"source":{"id":256,"type":1},"time":"1250432306","type":107}, -{"params":{"buf_len":801,"index":1,"offset":0,"truncate":true},"phase":1,"source":{"id":258,"type":10},"time":"1250432306","type":111}, -{"params":{"bytes_copied":801},"phase":2,"source":{"id":258,"type":10},"time":"1250432306","type":111}, -{"phase":2,"source":{"id":256,"type":1},"time":"1250432306","type":107}, -{"phase":1,"source":{"id":256,"type":1},"time":"1250432306","type":136}, -{"phase":0,"source":{"id":201,"type":5},"time":"1250432306","type":67}, -{"phase":2,"source":{"id":201,"type":5},"time":"1250432306","type":38}, -{"phase":2,"source":{"id":201,"type":5},"time":"1250432306","type":34}, -{"phase":2,"source":{"id":256,"type":1},"time":"1250432306","type":136}, -{"phase":1,"source":{"id":256,"type":1},"time":"1250432306","type":107}, -{"phase":2,"source":{"id":256,"type":1},"time":"1250432306","type":107}, -{"phase":2,"source":{"id":256,"type":1},"time":"1250432306","type":2}, -{"phase":0,"source":{"id":258,"type":10},"time":"1250432306","type":118}, -{"phase":2,"source":{"id":258,"type":10},"time":"1250432306","type":108}, -{"phase":1,"source":{"id":263,"type":1},"time":"1250432841","type":2}, -{"phase":1,"source":{"id":263,"type":1},"time":"1250432841","type":93}, -{"phase":2,"source":{"id":263,"type":1},"time":"1250432841","type":93}, -{"params":{"load_flags":131328,"method":"GET","priority":"LOW","url":"http://127.0.0.1:8888/task"},"phase":1,"source":{"id":263,"type":1},"time":"1250432841","type":91}, -{"phase":1,"source":{"id":263,"type":1},"time":"1250432842","type":93}, -{"phase":2,"source":{"id":263,"type":1},"time":"1250432842","type":93}, -{"phase":1,"source":{"id":263,"type":1},"time":"1250432842","type":99}, -{"phase":2,"source":{"id":263,"type":1},"time":"1250432842","type":99}, -{"phase":1,"source":{"id":263,"type":1},"time":"1250432842","type":100}, -{"params":{"created":false,"key":"http://127.0.0.1:8888/task"},"phase":1,"source":{"id":264,"type":10},"time":"1250432842","type":108}, -{"phase":2,"source":{"id":263,"type":1},"time":"1250432842","type":100}, -{"phase":1,"source":{"id":263,"type":1},"time":"1250432842","type":102}, -{"phase":2,"source":{"id":263,"type":1},"time":"1250432842","type":102}, -{"phase":1,"source":{"id":263,"type":1},"time":"1250432842","type":104}, -{"params":{"buf_len":172,"index":0,"offset":0},"phase":1,"source":{"id":264,"type":10},"time":"1250432842","type":110}, -{"params":{"bytes_copied":172},"phase":2,"source":{"id":264,"type":10},"time":"1250432842","type":110}, -{"phase":2,"source":{"id":263,"type":1},"time":"1250432842","type":104}, -{"phase":1,"source":{"id":263,"type":1},"time":"1250432842","type":93}, -{"phase":2,"source":{"id":263,"type":1},"time":"1250432842","type":93}, -{"phase":1,"source":{"id":263,"type":1},"time":"1250432842","type":120}, -{"params":{"original_url":"http://127.0.0.1:8888/","priority":"LOW","url":"http://127.0.0.1:8888/"},"phase":1,"source":{"id":265,"type":12},"time":"1250432842","type":121}, -{"phase":1,"source":{"id":265,"type":12},"time":"1250432842","type":24}, -{"params":{"pac_string":"DIRECT"},"phase":0,"source":{"id":265,"type":12},"time":"1250432842","type":26}, -{"phase":2,"source":{"id":265,"type":12},"time":"1250432842","type":24}, -{"params":{"source_dependency":{"id":266,"type":8}},"phase":1,"source":{"id":265,"type":12},"time":"1250432842","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":265,"type":12}},"phase":1,"source":{"id":266,"type":8},"time":"1250432842","type":4}, -{"params":{"source_dependency":{"id":266,"type":8}},"phase":1,"source":{"id":267,"type":20},"time":"1250432842","type":303}, -{"params":{"source_dependency":{"id":267,"type":20}},"phase":1,"source":{"id":268,"type":14},"time":"1250432842","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":268,"type":14},"time":"1250432842","type":71}, -{"phase":2,"source":{"id":268,"type":14},"time":"1250432843","type":71}, -{"params":{"address":"[::ffff:2001:0]:53449"},"phase":0,"source":{"id":268,"type":14},"time":"1250432843","type":72}, -{"phase":2,"source":{"id":268,"type":14},"time":"1250432843","type":34}, -{"phase":2,"source":{"id":267,"type":20},"time":"1250432843","type":303}, -{"phase":0,"source":{"id":266,"type":8},"time":"1250432843","type":5}, -{"phase":2,"source":{"id":266,"type":8},"time":"1250432843","type":4}, -{"phase":2,"source":{"id":265,"type":12},"time":"1250432843","type":3}, -{"params":{"host_and_port":"127.0.0.1:8888"},"phase":0,"source":{"id":265,"type":12},"time":"1250432843","type":85}, -{"phase":1,"source":{"id":265,"type":12},"time":"1250432843","type":81}, -{"params":{"group_name":"127.0.0.1:8888"},"phase":1,"source":{"id":269,"type":4},"time":"1250432843","type":77}, -{"phase":1,"source":{"id":269,"type":4},"time":"1250432843","type":78}, -{"params":{"source_dependency":{"id":270,"type":8}},"phase":1,"source":{"id":269,"type":4},"time":"1250432843","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":269,"type":4}},"phase":1,"source":{"id":270,"type":8},"time":"1250432843","type":4}, -{"params":{"source_dependency":{"id":270,"type":8}},"phase":1,"source":{"id":271,"type":20},"time":"1250432843","type":303}, -{"params":{"source_dependency":{"id":271,"type":20}},"phase":1,"source":{"id":272,"type":14},"time":"1250432843","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":272,"type":14},"time":"1250432843","type":71}, -{"phase":2,"source":{"id":272,"type":14},"time":"1250432843","type":71}, -{"params":{"address":"[::ffff:2001:0]:53450"},"phase":0,"source":{"id":272,"type":14},"time":"1250432843","type":72}, -{"phase":2,"source":{"id":272,"type":14},"time":"1250432843","type":34}, -{"phase":2,"source":{"id":271,"type":20},"time":"1250432843","type":303}, -{"phase":0,"source":{"id":270,"type":8},"time":"1250432843","type":5}, -{"phase":2,"source":{"id":270,"type":8},"time":"1250432843","type":4}, -{"phase":2,"source":{"id":269,"type":4},"time":"1250432843","type":3}, -{"params":{"source_dependency":{"id":269,"type":4}},"phase":1,"source":{"id":273,"type":5},"time":"1250432843","type":34}, -{"params":{"address_list":["127.0.0.1:8888"]},"phase":1,"source":{"id":273,"type":5},"time":"1250432843","type":35}, -{"params":{"address":"127.0.0.1:8888"},"phase":1,"source":{"id":273,"type":5},"time":"1250432843","type":36}, -{"phase":2,"source":{"id":273,"type":5},"time":"1250432846","type":36}, -{"params":{"source_address":"127.0.0.1:50997"},"phase":2,"source":{"id":273,"type":5},"time":"1250432846","type":35}, -{"params":{"source_dependency":{"id":273,"type":5}},"phase":0,"source":{"id":269,"type":4},"time":"1250432846","type":79}, -{"phase":2,"source":{"id":269,"type":4},"time":"1250432846","type":78}, -{"phase":2,"source":{"id":269,"type":4},"time":"1250432846","type":77}, -{"params":{"source_dependency":{"id":269,"type":4}},"phase":0,"source":{"id":265,"type":12},"time":"1250432846","type":88}, -{"params":{"source_dependency":{"id":273,"type":5}},"phase":0,"source":{"id":265,"type":12},"time":"1250432846","type":89}, -{"phase":2,"source":{"id":265,"type":12},"time":"1250432846","type":81}, -{"params":{"source_dependency":{"id":265,"type":12}},"phase":1,"source":{"id":273,"type":5},"time":"1250432846","type":38}, -{"params":{"source_dependency":{"id":265,"type":12}},"phase":0,"source":{"id":263,"type":1},"time":"1250432846","type":122}, -{"params":{"source_dependency":{"id":263,"type":1}},"phase":0,"source":{"id":265,"type":12},"time":"1250432846","type":123}, -{"phase":2,"source":{"id":263,"type":1},"time":"1250432846","type":120}, -{"phase":2,"source":{"id":265,"type":12},"time":"1250432846","type":121}, -{"phase":1,"source":{"id":263,"type":1},"time":"1250432847","type":129}, -{"params":{"headers":["Host: 127.0.0.1:8888","Connection: keep-alive","User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36","Accept: */*","Accept-Encoding: gzip,deflate,sdch","Accept-Language: en-US,en;q=0.8"],"line":"GET /task HTTP/1.1\r\n"},"phase":0,"source":{"id":263,"type":1},"time":"1250432847","type":130}, -{"params":{"byte_count":266},"phase":0,"source":{"id":273,"type":5},"time":"1250432847","type":61}, -{"phase":2,"source":{"id":263,"type":1},"time":"1250432847","type":129}, -{"phase":1,"source":{"id":263,"type":1},"time":"1250432847","type":134}, -{"phase":1,"source":{"id":263,"type":1},"time":"1250432847","type":215}, -{"params":{"byte_count":161},"phase":0,"source":{"id":273,"type":5},"time":"1250432847","type":63}, -{"phase":2,"source":{"id":263,"type":1},"time":"1250432847","type":215}, -{"params":{"headers":["HTTP/1.1 200 OK","Server: wptdriver","Cache: no-cache","Pragma: no-cache","Content-Type: application/json","Content-Length: 36"]},"phase":0,"source":{"id":263,"type":1},"time":"1250432847","type":135}, -{"phase":2,"source":{"id":263,"type":1},"time":"1250432847","type":134}, -{"phase":1,"source":{"id":263,"type":1},"time":"1250432847","type":105}, -{"params":{"buf_len":172,"index":0,"offset":0,"truncate":true},"phase":1,"source":{"id":264,"type":10},"time":"1250432847","type":111}, -{"params":{"bytes_copied":172},"phase":2,"source":{"id":264,"type":10},"time":"1250432847","type":111}, -{"phase":2,"source":{"id":263,"type":1},"time":"1250432847","type":105}, -{"phase":1,"source":{"id":263,"type":1},"time":"1250432847","type":107}, -{"params":{"buf_len":0,"index":1,"offset":0,"truncate":true},"phase":1,"source":{"id":264,"type":10},"time":"1250432848","type":111}, -{"params":{"bytes_copied":0},"phase":2,"source":{"id":264,"type":10},"time":"1250432848","type":111}, -{"phase":2,"source":{"id":263,"type":1},"time":"1250432848","type":107}, -{"phase":1,"source":{"id":263,"type":1},"time":"1250432848","type":105}, -{"params":{"buf_len":0,"index":2,"offset":0,"truncate":true},"phase":1,"source":{"id":264,"type":10},"time":"1250432848","type":111}, -{"params":{"bytes_copied":0},"phase":2,"source":{"id":264,"type":10},"time":"1250432848","type":111}, -{"phase":2,"source":{"id":263,"type":1},"time":"1250432848","type":105}, -{"phase":1,"source":{"id":263,"type":1},"time":"1250432848","type":93}, -{"phase":2,"source":{"id":263,"type":1},"time":"1250432848","type":93}, -{"phase":2,"source":{"id":263,"type":1},"time":"1250432848","type":91}, -{"phase":1,"source":{"id":263,"type":1},"time":"1250432848","type":93}, -{"phase":2,"source":{"id":263,"type":1},"time":"1250432848","type":93}, -{"phase":1,"source":{"id":263,"type":1},"time":"1250432848","type":136}, -{"phase":2,"source":{"id":263,"type":1},"time":"1250432848","type":136}, -{"phase":1,"source":{"id":263,"type":1},"time":"1250432848","type":107}, -{"params":{"buf_len":36,"index":1,"offset":0,"truncate":true},"phase":1,"source":{"id":264,"type":10},"time":"1250432848","type":111}, -{"params":{"bytes_copied":36},"phase":2,"source":{"id":264,"type":10},"time":"1250432848","type":111}, -{"phase":2,"source":{"id":263,"type":1},"time":"1250432848","type":107}, -{"phase":1,"source":{"id":263,"type":1},"time":"1250432848","type":136}, -{"phase":2,"source":{"id":273,"type":5},"time":"1250432848","type":38}, -{"phase":0,"source":{"id":273,"type":5},"time":"1250432848","type":67}, -{"phase":2,"source":{"id":273,"type":5},"time":"1250432848","type":34}, -{"phase":2,"source":{"id":263,"type":1},"time":"1250432848","type":136}, -{"phase":1,"source":{"id":263,"type":1},"time":"1250432848","type":107}, -{"phase":2,"source":{"id":263,"type":1},"time":"1250432848","type":107}, -{"phase":2,"source":{"id":263,"type":1},"time":"1250432849","type":2}, -{"phase":0,"source":{"id":264,"type":10},"time":"1250432849","type":118}, -{"phase":2,"source":{"id":264,"type":10},"time":"1250432849","type":108}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250433840","type":2}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250433840","type":93}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250433840","type":93}, -{"params":{"load_flags":64,"method":"GET","priority":"LOWEST","url":"https://ssl.gstatic.com/safebrowsing/csd/client_model_v5.pb"},"phase":1,"source":{"id":275,"type":1},"time":"1250433840","type":91}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250433850","type":93}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250433850","type":93}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250433850","type":93}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250433850","type":93}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250433850","type":120}, -{"params":{"original_url":"https://ssl.gstatic.com/","priority":"LOWEST","url":"https://ssl.gstatic.com/"},"phase":1,"source":{"id":276,"type":12},"time":"1250433851","type":121}, -{"phase":1,"source":{"id":276,"type":12},"time":"1250433851","type":24}, -{"params":{"new_config":{"source":"UNKNOWN"}},"phase":0,"source":{"id":277,"type":0},"time":"1250433851","type":27}, -{"params":{"pac_string":"DIRECT"},"phase":0,"source":{"id":276,"type":12},"time":"1250433851","type":26}, -{"phase":2,"source":{"id":276,"type":12},"time":"1250433851","type":24}, -{"params":{"source_dependency":{"id":278,"type":8}},"phase":1,"source":{"id":276,"type":12},"time":"1250433851","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"ssl.gstatic.com:443","is_speculative":false,"source_dependency":{"id":276,"type":12}},"phase":1,"source":{"id":278,"type":8},"time":"1250433851","type":4}, -{"params":{"source_dependency":{"id":278,"type":8}},"phase":1,"source":{"id":279,"type":20},"time":"1250433851","type":303}, -{"params":{"source_dependency":{"id":279,"type":20}},"phase":1,"source":{"id":280,"type":14},"time":"1250433851","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":280,"type":14},"time":"1250433851","type":71}, -{"phase":2,"source":{"id":280,"type":14},"time":"1250433851","type":71}, -{"params":{"address":"[::ffff:2001:0]:53451"},"phase":0,"source":{"id":280,"type":14},"time":"1250433851","type":72}, -{"phase":2,"source":{"id":280,"type":14},"time":"1250433851","type":34}, -{"phase":2,"source":{"id":279,"type":20},"time":"1250433851","type":303}, -{"phase":0,"source":{"id":278,"type":8},"time":"1250433851","type":5}, -{"params":{"net_error":-804},"phase":2,"source":{"id":278,"type":8},"time":"1250433851","type":4}, -{"phase":2,"source":{"id":276,"type":12},"time":"1250433851","type":3}, -{"phase":1,"source":{"id":276,"type":12},"time":"1250433851","type":81}, -{"params":{"group_name":"ssl/ssl.gstatic.com:443"},"phase":1,"source":{"id":281,"type":4},"time":"1250433851","type":77}, -{"phase":1,"source":{"id":281,"type":4},"time":"1250433851","type":78}, -{"params":{"host_and_port":"ssl.gstatic.com:443"},"phase":0,"source":{"id":281,"type":4},"time":"1250433851","type":85}, -{"phase":1,"source":{"id":281,"type":4},"time":"1250433851","type":81}, -{"params":{"group_name":"ssl/ssl.gstatic.com:443"},"phase":1,"source":{"id":282,"type":4},"time":"1250433851","type":77}, -{"phase":1,"source":{"id":282,"type":4},"time":"1250433851","type":78}, -{"params":{"source_dependency":{"id":283,"type":8}},"phase":1,"source":{"id":282,"type":4},"time":"1250433851","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"ssl.gstatic.com:443","is_speculative":false,"source_dependency":{"id":282,"type":4}},"phase":1,"source":{"id":283,"type":8},"time":"1250433851","type":4}, -{"params":{"source_dependency":{"id":283,"type":8}},"phase":1,"source":{"id":284,"type":20},"time":"1250433851","type":303}, -{"params":{"source_dependency":{"id":284,"type":20}},"phase":1,"source":{"id":285,"type":14},"time":"1250433851","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":285,"type":14},"time":"1250433851","type":71}, -{"phase":2,"source":{"id":285,"type":14},"time":"1250433851","type":71}, -{"params":{"address":"[::ffff:2001:0]:53452"},"phase":0,"source":{"id":285,"type":14},"time":"1250433851","type":72}, -{"phase":2,"source":{"id":285,"type":14},"time":"1250433851","type":34}, -{"phase":2,"source":{"id":284,"type":20},"time":"1250433851","type":303}, -{"phase":0,"source":{"id":283,"type":8},"time":"1250433851","type":5}, -{"phase":0,"source":{"id":283,"type":8},"time":"1250433851","type":8}, -{"params":{"host":"ssl.gstatic.com","source_dependency":{"id":283,"type":8}},"phase":1,"source":{"id":286,"type":9},"time":"1250433851","type":9}, -{"phase":0,"source":{"id":286,"type":9},"time":"1250433851","type":11}, -{"phase":1,"source":{"id":286,"type":9},"time":"1250433851","type":17}, -{"params":{"attempt_number":1},"phase":0,"source":{"id":286,"type":9},"time":"1250433851","type":12}, -{"params":{"source_dependency":{"id":286,"type":9}},"phase":0,"source":{"id":283,"type":8},"time":"1250433851","type":14}, -{"params":{"priority":"LOWEST","source_dependency":{"id":283,"type":8}},"phase":0,"source":{"id":286,"type":9},"time":"1250433851","type":15}, -{"phase":1,"source":{"id":287,"type":1},"time":"1250433870","type":2}, -{"phase":1,"source":{"id":287,"type":1},"time":"1250433870","type":93}, -{"phase":2,"source":{"id":287,"type":1},"time":"1250433870","type":93}, -{"params":{"load_flags":131328,"method":"GET","priority":"LOW","url":"http://127.0.0.1:8888/task"},"phase":1,"source":{"id":287,"type":1},"time":"1250433870","type":91}, -{"phase":1,"source":{"id":287,"type":1},"time":"1250433870","type":93}, -{"phase":2,"source":{"id":287,"type":1},"time":"1250433870","type":93}, -{"phase":1,"source":{"id":287,"type":1},"time":"1250433870","type":99}, -{"phase":2,"source":{"id":287,"type":1},"time":"1250433870","type":99}, -{"phase":1,"source":{"id":287,"type":1},"time":"1250433870","type":100}, -{"params":{"created":false,"key":"http://127.0.0.1:8888/task"},"phase":1,"source":{"id":288,"type":10},"time":"1250433870","type":108}, -{"phase":2,"source":{"id":287,"type":1},"time":"1250433870","type":100}, -{"phase":1,"source":{"id":287,"type":1},"time":"1250433870","type":102}, -{"phase":2,"source":{"id":287,"type":1},"time":"1250433870","type":102}, -{"phase":1,"source":{"id":287,"type":1},"time":"1250433870","type":104}, -{"params":{"buf_len":172,"index":0,"offset":0},"phase":1,"source":{"id":288,"type":10},"time":"1250433870","type":110}, -{"params":{"bytes_copied":172},"phase":2,"source":{"id":288,"type":10},"time":"1250433870","type":110}, -{"phase":2,"source":{"id":287,"type":1},"time":"1250433870","type":104}, -{"phase":1,"source":{"id":287,"type":1},"time":"1250433870","type":93}, -{"phase":2,"source":{"id":287,"type":1},"time":"1250433870","type":93}, -{"phase":1,"source":{"id":287,"type":1},"time":"1250433870","type":120}, -{"params":{"original_url":"http://127.0.0.1:8888/","priority":"LOW","url":"http://127.0.0.1:8888/"},"phase":1,"source":{"id":289,"type":12},"time":"1250433870","type":121}, -{"phase":1,"source":{"id":289,"type":12},"time":"1250433870","type":24}, -{"params":{"pac_string":"DIRECT"},"phase":0,"source":{"id":289,"type":12},"time":"1250433870","type":26}, -{"phase":2,"source":{"id":289,"type":12},"time":"1250433870","type":24}, -{"params":{"source_dependency":{"id":290,"type":8}},"phase":1,"source":{"id":289,"type":12},"time":"1250433870","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":289,"type":12}},"phase":1,"source":{"id":290,"type":8},"time":"1250433870","type":4}, -{"params":{"source_dependency":{"id":290,"type":8}},"phase":1,"source":{"id":291,"type":20},"time":"1250433870","type":303}, -{"params":{"source_dependency":{"id":291,"type":20}},"phase":1,"source":{"id":292,"type":14},"time":"1250433870","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":292,"type":14},"time":"1250433870","type":71}, -{"phase":2,"source":{"id":292,"type":14},"time":"1250433871","type":71}, -{"params":{"address":"[::ffff:2001:0]:57789"},"phase":0,"source":{"id":292,"type":14},"time":"1250433871","type":72}, -{"phase":2,"source":{"id":292,"type":14},"time":"1250433871","type":34}, -{"phase":2,"source":{"id":291,"type":20},"time":"1250433871","type":303}, -{"phase":0,"source":{"id":290,"type":8},"time":"1250433871","type":5}, -{"phase":2,"source":{"id":290,"type":8},"time":"1250433871","type":4}, -{"phase":2,"source":{"id":289,"type":12},"time":"1250433871","type":3}, -{"params":{"host_and_port":"127.0.0.1:8888"},"phase":0,"source":{"id":289,"type":12},"time":"1250433871","type":85}, -{"phase":1,"source":{"id":289,"type":12},"time":"1250433871","type":81}, -{"params":{"group_name":"127.0.0.1:8888"},"phase":1,"source":{"id":293,"type":4},"time":"1250433871","type":77}, -{"phase":1,"source":{"id":293,"type":4},"time":"1250433871","type":78}, -{"params":{"source_dependency":{"id":294,"type":8}},"phase":1,"source":{"id":293,"type":4},"time":"1250433871","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":293,"type":4}},"phase":1,"source":{"id":294,"type":8},"time":"1250433871","type":4}, -{"params":{"source_dependency":{"id":294,"type":8}},"phase":1,"source":{"id":295,"type":20},"time":"1250433871","type":303}, -{"params":{"source_dependency":{"id":295,"type":20}},"phase":1,"source":{"id":296,"type":14},"time":"1250433871","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":296,"type":14},"time":"1250433871","type":71}, -{"phase":2,"source":{"id":296,"type":14},"time":"1250433871","type":71}, -{"params":{"address":"[::ffff:2001:0]:57790"},"phase":0,"source":{"id":296,"type":14},"time":"1250433871","type":72}, -{"phase":2,"source":{"id":296,"type":14},"time":"1250433871","type":34}, -{"phase":2,"source":{"id":295,"type":20},"time":"1250433871","type":303}, -{"phase":0,"source":{"id":294,"type":8},"time":"1250433871","type":5}, -{"phase":2,"source":{"id":294,"type":8},"time":"1250433871","type":4}, -{"phase":2,"source":{"id":293,"type":4},"time":"1250433871","type":3}, -{"params":{"source_dependency":{"id":293,"type":4}},"phase":1,"source":{"id":297,"type":5},"time":"1250433871","type":34}, -{"params":{"address_list":["127.0.0.1:8888"]},"phase":1,"source":{"id":297,"type":5},"time":"1250433871","type":35}, -{"params":{"address":"127.0.0.1:8888"},"phase":1,"source":{"id":297,"type":5},"time":"1250433871","type":36}, -{"phase":2,"source":{"id":297,"type":5},"time":"1250433871","type":36}, -{"params":{"source_address":"127.0.0.1:50998"},"phase":2,"source":{"id":297,"type":5},"time":"1250433871","type":35}, -{"params":{"source_dependency":{"id":297,"type":5}},"phase":0,"source":{"id":293,"type":4},"time":"1250433871","type":79}, -{"phase":2,"source":{"id":293,"type":4},"time":"1250433871","type":78}, -{"phase":2,"source":{"id":293,"type":4},"time":"1250433871","type":77}, -{"params":{"source_dependency":{"id":293,"type":4}},"phase":0,"source":{"id":289,"type":12},"time":"1250433871","type":88}, -{"params":{"source_dependency":{"id":297,"type":5}},"phase":0,"source":{"id":289,"type":12},"time":"1250433871","type":89}, -{"phase":2,"source":{"id":289,"type":12},"time":"1250433871","type":81}, -{"params":{"source_dependency":{"id":289,"type":12}},"phase":1,"source":{"id":297,"type":5},"time":"1250433871","type":38}, -{"params":{"source_dependency":{"id":289,"type":12}},"phase":0,"source":{"id":287,"type":1},"time":"1250433872","type":122}, -{"params":{"source_dependency":{"id":287,"type":1}},"phase":0,"source":{"id":289,"type":12},"time":"1250433872","type":123}, -{"phase":2,"source":{"id":287,"type":1},"time":"1250433872","type":120}, -{"phase":2,"source":{"id":289,"type":12},"time":"1250433872","type":121}, -{"phase":1,"source":{"id":287,"type":1},"time":"1250433872","type":129}, -{"params":{"headers":["Host: 127.0.0.1:8888","Connection: keep-alive","User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36","Accept: */*","Accept-Encoding: gzip,deflate,sdch","Accept-Language: en-US,en;q=0.8"],"line":"GET /task HTTP/1.1\r\n"},"phase":0,"source":{"id":287,"type":1},"time":"1250433872","type":130}, -{"params":{"byte_count":266},"phase":0,"source":{"id":297,"type":5},"time":"1250433872","type":61}, -{"phase":2,"source":{"id":287,"type":1},"time":"1250433872","type":129}, -{"phase":1,"source":{"id":287,"type":1},"time":"1250433872","type":134}, -{"phase":1,"source":{"id":287,"type":1},"time":"1250433872","type":215}, -{"params":{"byte_count":161},"phase":0,"source":{"id":297,"type":5},"time":"1250433872","type":63}, -{"phase":2,"source":{"id":287,"type":1},"time":"1250433872","type":215}, -{"params":{"headers":["HTTP/1.1 200 OK","Server: wptdriver","Cache: no-cache","Pragma: no-cache","Content-Type: application/json","Content-Length: 36"]},"phase":0,"source":{"id":287,"type":1},"time":"1250433872","type":135}, -{"phase":2,"source":{"id":287,"type":1},"time":"1250433872","type":134}, -{"phase":1,"source":{"id":287,"type":1},"time":"1250433872","type":105}, -{"params":{"buf_len":172,"index":0,"offset":0,"truncate":true},"phase":1,"source":{"id":288,"type":10},"time":"1250433872","type":111}, -{"params":{"bytes_copied":172},"phase":2,"source":{"id":288,"type":10},"time":"1250433872","type":111}, -{"phase":2,"source":{"id":287,"type":1},"time":"1250433872","type":105}, -{"phase":1,"source":{"id":287,"type":1},"time":"1250433872","type":107}, -{"params":{"buf_len":0,"index":1,"offset":0,"truncate":true},"phase":1,"source":{"id":288,"type":10},"time":"1250433872","type":111}, -{"params":{"bytes_copied":0},"phase":2,"source":{"id":288,"type":10},"time":"1250433872","type":111}, -{"phase":2,"source":{"id":287,"type":1},"time":"1250433872","type":107}, -{"phase":1,"source":{"id":287,"type":1},"time":"1250433872","type":105}, -{"params":{"buf_len":0,"index":2,"offset":0,"truncate":true},"phase":1,"source":{"id":288,"type":10},"time":"1250433872","type":111}, -{"params":{"bytes_copied":0},"phase":2,"source":{"id":288,"type":10},"time":"1250433872","type":111}, -{"phase":2,"source":{"id":287,"type":1},"time":"1250433872","type":105}, -{"phase":1,"source":{"id":287,"type":1},"time":"1250433872","type":93}, -{"phase":2,"source":{"id":287,"type":1},"time":"1250433872","type":93}, -{"phase":2,"source":{"id":287,"type":1},"time":"1250433872","type":91}, -{"phase":1,"source":{"id":287,"type":1},"time":"1250433872","type":93}, -{"phase":2,"source":{"id":287,"type":1},"time":"1250433872","type":93}, -{"phase":1,"source":{"id":287,"type":1},"time":"1250433872","type":136}, -{"phase":2,"source":{"id":287,"type":1},"time":"1250433872","type":136}, -{"phase":1,"source":{"id":287,"type":1},"time":"1250433872","type":107}, -{"params":{"buf_len":36,"index":1,"offset":0,"truncate":true},"phase":1,"source":{"id":288,"type":10},"time":"1250433872","type":111}, -{"params":{"bytes_copied":36},"phase":2,"source":{"id":288,"type":10},"time":"1250433873","type":111}, -{"phase":2,"source":{"id":287,"type":1},"time":"1250433873","type":107}, -{"phase":1,"source":{"id":287,"type":1},"time":"1250433873","type":136}, -{"phase":2,"source":{"id":297,"type":5},"time":"1250433873","type":38}, -{"phase":0,"source":{"id":297,"type":5},"time":"1250433873","type":67}, -{"phase":2,"source":{"id":297,"type":5},"time":"1250433873","type":34}, -{"phase":2,"source":{"id":287,"type":1},"time":"1250433873","type":136}, -{"phase":1,"source":{"id":287,"type":1},"time":"1250433873","type":107}, -{"phase":2,"source":{"id":287,"type":1},"time":"1250433873","type":107}, -{"phase":2,"source":{"id":287,"type":1},"time":"1250433873","type":2}, -{"phase":0,"source":{"id":288,"type":10},"time":"1250433873","type":118}, -{"phase":2,"source":{"id":288,"type":10},"time":"1250433873","type":108}, -{"params":{"attempt_number":1},"phase":0,"source":{"id":286,"type":9},"time":"1250433890","type":13}, -{"params":{"address_list":["173.194.121.24:0","173.194.121.31:0","173.194.121.15:0","173.194.121.23:0"]},"phase":2,"source":{"id":286,"type":9},"time":"1250433890","type":17}, -{"phase":2,"source":{"id":286,"type":9},"time":"1250433890","type":9}, -{"phase":2,"source":{"id":283,"type":8},"time":"1250433890","type":4}, -{"phase":2,"source":{"id":282,"type":4},"time":"1250433890","type":3}, -{"params":{"source_dependency":{"id":298,"type":8}},"phase":1,"source":{"id":282,"type":4},"time":"1250433890","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"ssl.gstatic.com:443","is_speculative":false,"source_dependency":{"id":282,"type":4}},"phase":1,"source":{"id":298,"type":8},"time":"1250433890","type":4}, -{"params":{"source_dependency":{"id":298,"type":8}},"phase":1,"source":{"id":299,"type":20},"time":"1250433890","type":303}, -{"params":{"source_dependency":{"id":299,"type":20}},"phase":1,"source":{"id":300,"type":14},"time":"1250433890","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":300,"type":14},"time":"1250433890","type":71}, -{"phase":2,"source":{"id":300,"type":14},"time":"1250433890","type":71}, -{"params":{"address":"[::ffff:2001:0]:57791"},"phase":0,"source":{"id":300,"type":14},"time":"1250433890","type":72}, -{"phase":2,"source":{"id":300,"type":14},"time":"1250433890","type":34}, -{"phase":2,"source":{"id":299,"type":20},"time":"1250433890","type":303}, -{"phase":0,"source":{"id":298,"type":8},"time":"1250433890","type":5}, -{"phase":0,"source":{"id":298,"type":8},"time":"1250433890","type":6}, -{"phase":2,"source":{"id":298,"type":8},"time":"1250433890","type":4}, -{"phase":2,"source":{"id":282,"type":4},"time":"1250433890","type":3}, -{"params":{"source_dependency":{"id":282,"type":4}},"phase":1,"source":{"id":301,"type":5},"time":"1250433890","type":34}, -{"params":{"address_list":["173.194.121.24:443","173.194.121.31:443","173.194.121.15:443","173.194.121.23:443"]},"phase":1,"source":{"id":301,"type":5},"time":"1250433890","type":35}, -{"params":{"address":"173.194.121.24:443"},"phase":1,"source":{"id":301,"type":5},"time":"1250433890","type":36}, -{"phase":2,"source":{"id":301,"type":5},"time":"1250433927","type":36}, -{"params":{"source_address":"192.168.102.82:50999"},"phase":2,"source":{"id":301,"type":5},"time":"1250433927","type":35}, -{"params":{"source_dependency":{"id":301,"type":5}},"phase":0,"source":{"id":282,"type":4},"time":"1250433927","type":79}, -{"phase":2,"source":{"id":282,"type":4},"time":"1250433927","type":78}, -{"phase":2,"source":{"id":282,"type":4},"time":"1250433927","type":77}, -{"params":{"source_dependency":{"id":282,"type":4}},"phase":0,"source":{"id":281,"type":4},"time":"1250433927","type":88}, -{"params":{"source_dependency":{"id":301,"type":5}},"phase":0,"source":{"id":281,"type":4},"time":"1250433927","type":89}, -{"phase":2,"source":{"id":281,"type":4},"time":"1250433927","type":81}, -{"params":{"source_dependency":{"id":281,"type":4}},"phase":1,"source":{"id":301,"type":5},"time":"1250433927","type":38}, -{"phase":1,"source":{"id":301,"type":5},"time":"1250433927","type":48}, -{"params":{"byte_count":215},"phase":0,"source":{"id":301,"type":5},"time":"1250433928","type":61}, -{"params":{"byte_count":3896},"phase":0,"source":{"id":301,"type":5},"time":"1250433969","type":63}, -{"phase":0,"source":{"id":301,"type":5},"time":"1250433969","type":52}, -{"phase":1,"source":{"id":301,"type":5},"time":"1250433969","type":51}, -{"phase":2,"source":{"id":301,"type":5},"time":"1250433975","type":51}, -{"phase":0,"source":{"id":301,"type":5},"time":"1250433975","type":53}, -{"params":{"certificates":["-----BEGIN CERTIFICATE-----\nMIIGrzCCBZegAwIBAgIId3X9Tn29Wk4wDQYJKoZIhvcNAQEFBQAwSTELMAkGA1UE\nBhMCVVMxEzARBgNVBAoTCkdvb2dsZSBJbmMxJTAjBgNVBAMTHEdvb2dsZSBJbnRl\ncm5ldCBBdXRob3JpdHkgRzIwHhcNMTQwOTEwMTMzMTQ1WhcNMTQxMjA5MDAwMDAw\nWjBmMQswCQYDVQQGEwJVUzETMBEGA1UECAwKQ2FsaWZvcm5pYTEWMBQGA1UEBwwN\nTW91bnRhaW4gVmlldzETMBEGA1UECgwKR29vZ2xlIEluYzEVMBMGA1UEAwwMKi5n\nb29nbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEs0l2VnP+s/x9vpxg\nGU/Gph+htOAjGVjzmfL86IJog64QuYRJduLGXCrOvXl0IDtblcjpnqNNOSXIIZ/Y\n8/SpxKOCBEcwggRDMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjCCAxAG\nA1UdEQSCAwcwggMDggwqLmdvb2dsZS5jb22CDSouYW5kcm9pZC5jb22CFiouYXBw\nZW5naW5lLmdvb2dsZS5jb22CEiouY2xvdWQuZ29vZ2xlLmNvbYIWKi5nb29nbGUt\nYW5hbHl0aWNzLmNvbYILKi5nb29nbGUuY2GCCyouZ29vZ2xlLmNsgg4qLmdvb2ds\nZS5jby5pboIOKi5nb29nbGUuY28uanCCDiouZ29vZ2xlLmNvLnVrgg8qLmdvb2ds\nZS5jb20uYXKCDyouZ29vZ2xlLmNvbS5hdYIPKi5nb29nbGUuY29tLmJygg8qLmdv\nb2dsZS5jb20uY2+CDyouZ29vZ2xlLmNvbS5teIIPKi5nb29nbGUuY29tLnRygg8q\nLmdvb2dsZS5jb20udm6CCyouZ29vZ2xlLmRlggsqLmdvb2dsZS5lc4ILKi5nb29n\nbGUuZnKCCyouZ29vZ2xlLmh1ggsqLmdvb2dsZS5pdIILKi5nb29nbGUubmyCCyou\nZ29vZ2xlLnBsggsqLmdvb2dsZS5wdIISKi5nb29nbGVhZGFwaXMuY29tgg8qLmdv\nb2dsZWFwaXMuY26CFCouZ29vZ2xlY29tbWVyY2UuY29tghEqLmdvb2dsZXZpZGVv\nLmNvbYIMKi5nc3RhdGljLmNugg0qLmdzdGF0aWMuY29tggoqLmd2dDEuY29tggoq\nLmd2dDIuY29tggwqLnVyY2hpbi5jb22CECoudXJsLmdvb2dsZS5jb22CFioueW91\ndHViZS1ub2Nvb2tpZS5jb22CDSoueW91dHViZS5jb22CFioueW91dHViZWVkdWNh\ndGlvbi5jb22CCyoueXRpbWcuY29tggthbmRyb2lkLmNvbYIEZy5jb4IGZ29vLmds\nghRnb29nbGUtYW5hbHl0aWNzLmNvbYIKZ29vZ2xlLmNvbYISZ29vZ2xlY29tbWVy\nY2UuY29tggp1cmNoaW4uY29tggh5b3V0dS5iZYILeW91dHViZS5jb22CFHlvdXR1\nYmVlZHVjYXRpb24uY29tMAsGA1UdDwQEAwIHgDBoBggrBgEFBQcBAQRcMFowKwYI\nKwYBBQUHMAKGH2h0dHA6Ly9wa2kuZ29vZ2xlLmNvbS9HSUFHMi5jcnQwKwYIKwYB\nBQUHMAGGH2h0dHA6Ly9jbGllbnRzMS5nb29nbGUuY29tL29jc3AwHQYDVR0OBBYE\nFEf0J4rvoWtxDt0WHpSOWAiKZvviMAwGA1UdEwEB/wQCMAAwHwYDVR0jBBgwFoAU\nSt0GFhu89mi1dvWBtrtiGrpagS8wFwYDVR0gBBAwDjAMBgorBgEEAdZ5AgUBMDAG\nA1UdHwQpMCcwJaAjoCGGH2h0dHA6Ly9wa2kuZ29vZ2xlLmNvbS9HSUFHMi5jcmww\nDQYJKoZIhvcNAQEFBQADggEBAGIjdi4mWuMB/E1rTZ4+1hBiwvC7zeHPldFHSQ+X\nMYWDD3Nu2AWILzpyNmNPWMj1F4Kbfnnfhnqzesb5Wx37vvUrbN0JtlEVgF7Lp831\nHMm4/kcehWvHpdriDK0xuV3iDQnkCYbxoxf9gYLi3f5LOPmmEsMD4mfrFFq/Lqi6\nle2OqQXcJ8YQilUymsKtSNGo6AfmoLbQAMcadTcEUVeTgyu2CTcpAvMYnbk89jWg\nnBOADE7uiZkz0LazVhJm9kRztnIcltb0S7Y9bKFUBGrHE+jQmuaMFzRtkgMcDUN7\n/bZdSv8bOm+FyW47cmqTn3FJIWatzoZXBpo+5v/ecVM0RUw=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIID8DCCAtigAwIBAgIDAjp2MA0GCSqGSIb3DQEBBQUAMEIxCzAJBgNVBAYTAlVT\nMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMRswGQYDVQQDExJHZW9UcnVzdCBHbG9i\nYWwgQ0EwHhcNMTMwNDA1MTUxNTU1WhcNMTYxMjMxMjM1OTU5WjBJMQswCQYDVQQG\nEwJVUzETMBEGA1UEChMKR29vZ2xlIEluYzElMCMGA1UEAxMcR29vZ2xlIEludGVy\nbmV0IEF1dGhvcml0eSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB\nAJwqBHdc2FCROgajguDYUEi8iT/xGXAaiEZ+4I/F8YnOIe5a/mENtzJEiaB0C1NP\nVaTOgmKV7utZX8bhBYASxF6UP7xbSDj0U/ck5vuR6RXEz/RTDfRK/J9U3n2+oGtv\nh8DQUB8oMANA2ghzUWx//zo8pzcGjr1LEQTrfSTe5vn8MXH7lNVg8y5Kr0LSy+rE\nahqyzFPdFUuLH8gZYR/Nnag+YyuENWllhMgZxUYi+FOVvuOAShDGKuy6lyARxzmZ\nEASg8GF6lSWMTlJ14rbtCMoU/M4iarNOz0YDl5cDfsCx3nuvRTPPuj5xt970JSXC\nDTWJnZ37DhF5iR43xa+OcmkCAwEAAaOB5zCB5DAfBgNVHSMEGDAWgBTAephojYn7\nqwVkDBF9qn1luMrMTjAdBgNVHQ4EFgQUSt0GFhu89mi1dvWBtrtiGrpagS8wEgYD\nVR0TAQH/BAgwBgEB/wIBADAOBgNVHQ8BAf8EBAMCAQYwNQYDVR0fBC4wLDAqoCig\nJoYkaHR0cDovL2cuc3ltY2IuY29tL2NybHMvZ3RnbG9iYWwuY3JsMC4GCCsGAQUF\nBwEBBCIwIDAeBggrBgEFBQcwAYYSaHR0cDovL2cuc3ltY2QuY29tMBcGA1UdIAQQ\nMA4wDAYKKwYBBAHWeQIFATANBgkqhkiG9w0BAQUFAAOCAQEAJ4zP6cc7vsBv6JaE\n+5xcXZDkd9uLMmCbZdiFJrW6nx7eZE4fxsggWwmfq6ngCTRFomUlNz1/Wm8gzPn6\n8R2PEAwCOsTJAXaWvpv5Fdg50cUDR3a4iowx1mDV5I/b+jzG1Zgo+ByPF5E0y8tS\netH7OiDk4Yax2BgPvtaHZI3FCiVCUe+yOLjgHdDh/Ob0r0a678C/xbQF9ZR1DP6i\nvgK66oZb+TWzZvXFjYWhGiN3GhkXVBNgnwvhtJwoKvmuAjRtJZOcgqgXe/GFsNMP\nWOH7sf6coaPo/ck/9Ndx3L2MpBngISMjVROPpBYCCX65r+7bU2S9cS+5Oc4wt7S8\nVOBHBw==\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIDfTCCAuagAwIBAgIDErvmMA0GCSqGSIb3DQEBBQUAME4xCzAJBgNVBAYTAlVT\nMRAwDgYDVQQKEwdFcXVpZmF4MS0wKwYDVQQLEyRFcXVpZmF4IFNlY3VyZSBDZXJ0\naWZpY2F0ZSBBdXRob3JpdHkwHhcNMDIwNTIxMDQwMDAwWhcNMTgwODIxMDQwMDAw\nWjBCMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEbMBkGA1UE\nAxMSR2VvVHJ1c3QgR2xvYmFsIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\nCgKCAQEA2swYYzD99BcjGlZ+W988bDjkcbd4kdS8odhM+KhDtgPpTSEHCIjaWC9m\nOSm9BXiLnTjoBbdqfnGk5sRgprDvgOSJKA+eJdbtg/OtppHHmMlCGDUUna2YRpIu\nT8rxh0PBFpVXLVDviS2Aelet8u5fa9IAjbkU+BQVNdnARqN7csiRv8lVK83Qlz6c\nJmTM386DGXHKTubU1XupGc1V3sjs0l44U+VcT4wt/lAjNvxm5suOpDkZALeVAjmR\nCw7+OC7RHQWa9k0+bw8HHa8sHo9gOeL6NlMTOdReJivbPagUvTLrGAMoUgRx5asz\nPeE4uwc2hGKceeoWMPRfwCvocWvk+QIDAQABo4HwMIHtMB8GA1UdIwQYMBaAFEjm\naPkr0rKV10fYIyAQTzOYkJ/UMB0GA1UdDgQWBBTAephojYn7qwVkDBF9qn1luMrM\nTjAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjA6BgNVHR8EMzAxMC+g\nLaArhilodHRwOi8vY3JsLmdlb3RydXN0LmNvbS9jcmxzL3NlY3VyZWNhLmNybDBO\nBgNVHSAERzBFMEMGBFUdIAAwOzA5BggrBgEFBQcCARYtaHR0cHM6Ly93d3cuZ2Vv\ndHJ1c3QuY29tL3Jlc291cmNlcy9yZXBvc2l0b3J5MA0GCSqGSIb3DQEBBQUAA4GB\nAHbhEm5OSxYShjAGsoEIz/AIx8dxfmbuwu3UOx//8PDITtZDOLC5MH0Y0FWDomrL\nNhGc6Ehmo21/uBPUR/6LWlxz/K7ZGzIZOKuXNBSqltLroxwUCEm2u+WR74M26x1W\nb8ravHNjkOR/ez4iyz0H7V84dJzjA1BOoa+Y7mHyhD8S\n-----END CERTIFICATE-----\n"]},"phase":0,"source":{"id":301,"type":5},"time":"1250433984","type":68}, -{"params":{"byte_count":254},"phase":0,"source":{"id":301,"type":5},"time":"1250433984","type":61}, -{"params":{"certificates":["-----BEGIN CERTIFICATE-----\nMIIGrzCCBZegAwIBAgIId3X9Tn29Wk4wDQYJKoZIhvcNAQEFBQAwSTELMAkGA1UE\nBhMCVVMxEzARBgNVBAoTCkdvb2dsZSBJbmMxJTAjBgNVBAMTHEdvb2dsZSBJbnRl\ncm5ldCBBdXRob3JpdHkgRzIwHhcNMTQwOTEwMTMzMTQ1WhcNMTQxMjA5MDAwMDAw\nWjBmMQswCQYDVQQGEwJVUzETMBEGA1UECAwKQ2FsaWZvcm5pYTEWMBQGA1UEBwwN\nTW91bnRhaW4gVmlldzETMBEGA1UECgwKR29vZ2xlIEluYzEVMBMGA1UEAwwMKi5n\nb29nbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEs0l2VnP+s/x9vpxg\nGU/Gph+htOAjGVjzmfL86IJog64QuYRJduLGXCrOvXl0IDtblcjpnqNNOSXIIZ/Y\n8/SpxKOCBEcwggRDMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjCCAxAG\nA1UdEQSCAwcwggMDggwqLmdvb2dsZS5jb22CDSouYW5kcm9pZC5jb22CFiouYXBw\nZW5naW5lLmdvb2dsZS5jb22CEiouY2xvdWQuZ29vZ2xlLmNvbYIWKi5nb29nbGUt\nYW5hbHl0aWNzLmNvbYILKi5nb29nbGUuY2GCCyouZ29vZ2xlLmNsgg4qLmdvb2ds\nZS5jby5pboIOKi5nb29nbGUuY28uanCCDiouZ29vZ2xlLmNvLnVrgg8qLmdvb2ds\nZS5jb20uYXKCDyouZ29vZ2xlLmNvbS5hdYIPKi5nb29nbGUuY29tLmJygg8qLmdv\nb2dsZS5jb20uY2+CDyouZ29vZ2xlLmNvbS5teIIPKi5nb29nbGUuY29tLnRygg8q\nLmdvb2dsZS5jb20udm6CCyouZ29vZ2xlLmRlggsqLmdvb2dsZS5lc4ILKi5nb29n\nbGUuZnKCCyouZ29vZ2xlLmh1ggsqLmdvb2dsZS5pdIILKi5nb29nbGUubmyCCyou\nZ29vZ2xlLnBsggsqLmdvb2dsZS5wdIISKi5nb29nbGVhZGFwaXMuY29tgg8qLmdv\nb2dsZWFwaXMuY26CFCouZ29vZ2xlY29tbWVyY2UuY29tghEqLmdvb2dsZXZpZGVv\nLmNvbYIMKi5nc3RhdGljLmNugg0qLmdzdGF0aWMuY29tggoqLmd2dDEuY29tggoq\nLmd2dDIuY29tggwqLnVyY2hpbi5jb22CECoudXJsLmdvb2dsZS5jb22CFioueW91\ndHViZS1ub2Nvb2tpZS5jb22CDSoueW91dHViZS5jb22CFioueW91dHViZWVkdWNh\ndGlvbi5jb22CCyoueXRpbWcuY29tggthbmRyb2lkLmNvbYIEZy5jb4IGZ29vLmds\nghRnb29nbGUtYW5hbHl0aWNzLmNvbYIKZ29vZ2xlLmNvbYISZ29vZ2xlY29tbWVy\nY2UuY29tggp1cmNoaW4uY29tggh5b3V0dS5iZYILeW91dHViZS5jb22CFHlvdXR1\nYmVlZHVjYXRpb24uY29tMAsGA1UdDwQEAwIHgDBoBggrBgEFBQcBAQRcMFowKwYI\nKwYBBQUHMAKGH2h0dHA6Ly9wa2kuZ29vZ2xlLmNvbS9HSUFHMi5jcnQwKwYIKwYB\nBQUHMAGGH2h0dHA6Ly9jbGllbnRzMS5nb29nbGUuY29tL29jc3AwHQYDVR0OBBYE\nFEf0J4rvoWtxDt0WHpSOWAiKZvviMAwGA1UdEwEB/wQCMAAwHwYDVR0jBBgwFoAU\nSt0GFhu89mi1dvWBtrtiGrpagS8wFwYDVR0gBBAwDjAMBgorBgEEAdZ5AgUBMDAG\nA1UdHwQpMCcwJaAjoCGGH2h0dHA6Ly9wa2kuZ29vZ2xlLmNvbS9HSUFHMi5jcmww\nDQYJKoZIhvcNAQEFBQADggEBAGIjdi4mWuMB/E1rTZ4+1hBiwvC7zeHPldFHSQ+X\nMYWDD3Nu2AWILzpyNmNPWMj1F4Kbfnnfhnqzesb5Wx37vvUrbN0JtlEVgF7Lp831\nHMm4/kcehWvHpdriDK0xuV3iDQnkCYbxoxf9gYLi3f5LOPmmEsMD4mfrFFq/Lqi6\nle2OqQXcJ8YQilUymsKtSNGo6AfmoLbQAMcadTcEUVeTgyu2CTcpAvMYnbk89jWg\nnBOADE7uiZkz0LazVhJm9kRztnIcltb0S7Y9bKFUBGrHE+jQmuaMFzRtkgMcDUN7\n/bZdSv8bOm+FyW47cmqTn3FJIWatzoZXBpo+5v/ecVM0RUw=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIID8DCCAtigAwIBAgIDAjp2MA0GCSqGSIb3DQEBBQUAMEIxCzAJBgNVBAYTAlVT\nMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMRswGQYDVQQDExJHZW9UcnVzdCBHbG9i\nYWwgQ0EwHhcNMTMwNDA1MTUxNTU1WhcNMTYxMjMxMjM1OTU5WjBJMQswCQYDVQQG\nEwJVUzETMBEGA1UEChMKR29vZ2xlIEluYzElMCMGA1UEAxMcR29vZ2xlIEludGVy\nbmV0IEF1dGhvcml0eSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB\nAJwqBHdc2FCROgajguDYUEi8iT/xGXAaiEZ+4I/F8YnOIe5a/mENtzJEiaB0C1NP\nVaTOgmKV7utZX8bhBYASxF6UP7xbSDj0U/ck5vuR6RXEz/RTDfRK/J9U3n2+oGtv\nh8DQUB8oMANA2ghzUWx//zo8pzcGjr1LEQTrfSTe5vn8MXH7lNVg8y5Kr0LSy+rE\nahqyzFPdFUuLH8gZYR/Nnag+YyuENWllhMgZxUYi+FOVvuOAShDGKuy6lyARxzmZ\nEASg8GF6lSWMTlJ14rbtCMoU/M4iarNOz0YDl5cDfsCx3nuvRTPPuj5xt970JSXC\nDTWJnZ37DhF5iR43xa+OcmkCAwEAAaOB5zCB5DAfBgNVHSMEGDAWgBTAephojYn7\nqwVkDBF9qn1luMrMTjAdBgNVHQ4EFgQUSt0GFhu89mi1dvWBtrtiGrpagS8wEgYD\nVR0TAQH/BAgwBgEB/wIBADAOBgNVHQ8BAf8EBAMCAQYwNQYDVR0fBC4wLDAqoCig\nJoYkaHR0cDovL2cuc3ltY2IuY29tL2NybHMvZ3RnbG9iYWwuY3JsMC4GCCsGAQUF\nBwEBBCIwIDAeBggrBgEFBQcwAYYSaHR0cDovL2cuc3ltY2QuY29tMBcGA1UdIAQQ\nMA4wDAYKKwYBBAHWeQIFATANBgkqhkiG9w0BAQUFAAOCAQEAJ4zP6cc7vsBv6JaE\n+5xcXZDkd9uLMmCbZdiFJrW6nx7eZE4fxsggWwmfq6ngCTRFomUlNz1/Wm8gzPn6\n8R2PEAwCOsTJAXaWvpv5Fdg50cUDR3a4iowx1mDV5I/b+jzG1Zgo+ByPF5E0y8tS\netH7OiDk4Yax2BgPvtaHZI3FCiVCUe+yOLjgHdDh/Ob0r0a678C/xbQF9ZR1DP6i\nvgK66oZb+TWzZvXFjYWhGiN3GhkXVBNgnwvhtJwoKvmuAjRtJZOcgqgXe/GFsNMP\nWOH7sf6coaPo/ck/9Ndx3L2MpBngISMjVROPpBYCCX65r+7bU2S9cS+5Oc4wt7S8\nVOBHBw==\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIDfTCCAuagAwIBAgIDErvmMA0GCSqGSIb3DQEBBQUAME4xCzAJBgNVBAYTAlVT\nMRAwDgYDVQQKEwdFcXVpZmF4MS0wKwYDVQQLEyRFcXVpZmF4IFNlY3VyZSBDZXJ0\naWZpY2F0ZSBBdXRob3JpdHkwHhcNMDIwNTIxMDQwMDAwWhcNMTgwODIxMDQwMDAw\nWjBCMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEbMBkGA1UE\nAxMSR2VvVHJ1c3QgR2xvYmFsIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\nCgKCAQEA2swYYzD99BcjGlZ+W988bDjkcbd4kdS8odhM+KhDtgPpTSEHCIjaWC9m\nOSm9BXiLnTjoBbdqfnGk5sRgprDvgOSJKA+eJdbtg/OtppHHmMlCGDUUna2YRpIu\nT8rxh0PBFpVXLVDviS2Aelet8u5fa9IAjbkU+BQVNdnARqN7csiRv8lVK83Qlz6c\nJmTM386DGXHKTubU1XupGc1V3sjs0l44U+VcT4wt/lAjNvxm5suOpDkZALeVAjmR\nCw7+OC7RHQWa9k0+bw8HHa8sHo9gOeL6NlMTOdReJivbPagUvTLrGAMoUgRx5asz\nPeE4uwc2hGKceeoWMPRfwCvocWvk+QIDAQABo4HwMIHtMB8GA1UdIwQYMBaAFEjm\naPkr0rKV10fYIyAQTzOYkJ/UMB0GA1UdDgQWBBTAephojYn7qwVkDBF9qn1luMrM\nTjAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjA6BgNVHR8EMzAxMC+g\nLaArhilodHRwOi8vY3JsLmdlb3RydXN0LmNvbS9jcmxzL3NlY3VyZWNhLmNybDBO\nBgNVHSAERzBFMEMGBFUdIAAwOzA5BggrBgEFBQcCARYtaHR0cHM6Ly93d3cuZ2Vv\ndHJ1c3QuY29tL3Jlc291cmNlcy9yZXBvc2l0b3J5MA0GCSqGSIb3DQEBBQUAA4GB\nAHbhEm5OSxYShjAGsoEIz/AIx8dxfmbuwu3UOx//8PDITtZDOLC5MH0Y0FWDomrL\nNhGc6Ehmo21/uBPUR/6LWlxz/K7ZGzIZOKuXNBSqltLroxwUCEm2u+WR74M26x1W\nb8ravHNjkOR/ez4iyz0H7V84dJzjA1BOoa+Y7mHyhD8S\n-----END CERTIFICATE-----\n"]},"phase":1,"source":{"id":302,"type":15},"time":"1250433984","type":249}, -{"phase":1,"source":{"id":301,"type":5},"time":"1250433985","type":248}, -{"params":{"source_dependency":{"id":302,"type":15}},"phase":0,"source":{"id":301,"type":5},"time":"1250433985","type":250}, -{"params":{"cert_status":0,"common_name_fallback_used":false,"has_md2":false,"has_md4":false,"has_md5":false,"is_issued_by_additional_trust_anchor":false,"is_issued_by_known_root":true,"public_key_hashes":["sha1/b4GUo5kKhrJ35Pdtf5unLt3svgg=","sha256/ygxFHu/R7bnx8DDBUj3OlAjdvrzShiu6rP4Rl0aSiWg=","sha1/Q9rWMO5T+KmAym79hfRqo3mQ4Oo=","sha256/7HIpactkIAq2Y49orFOOQKurWxmmSFZhBCoQYcRhJ3Y=","sha1/wHqYaI2J+6sFZAwRfap9ZbjKzE4=","sha256/h6801m+z8v3zbgkRHpq6L29Esgfzhj89C1SyUCOQmqU="],"verified_cert":{"certificates":["-----BEGIN CERTIFICATE-----\nMIIGrzCCBZegAwIBAgIId3X9Tn29Wk4wDQYJKoZIhvcNAQEFBQAwSTELMAkGA1UE\nBhMCVVMxEzARBgNVBAoTCkdvb2dsZSBJbmMxJTAjBgNVBAMTHEdvb2dsZSBJbnRl\ncm5ldCBBdXRob3JpdHkgRzIwHhcNMTQwOTEwMTMzMTQ1WhcNMTQxMjA5MDAwMDAw\nWjBmMQswCQYDVQQGEwJVUzETMBEGA1UECAwKQ2FsaWZvcm5pYTEWMBQGA1UEBwwN\nTW91bnRhaW4gVmlldzETMBEGA1UECgwKR29vZ2xlIEluYzEVMBMGA1UEAwwMKi5n\nb29nbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEs0l2VnP+s/x9vpxg\nGU/Gph+htOAjGVjzmfL86IJog64QuYRJduLGXCrOvXl0IDtblcjpnqNNOSXIIZ/Y\n8/SpxKOCBEcwggRDMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjCCAxAG\nA1UdEQSCAwcwggMDggwqLmdvb2dsZS5jb22CDSouYW5kcm9pZC5jb22CFiouYXBw\nZW5naW5lLmdvb2dsZS5jb22CEiouY2xvdWQuZ29vZ2xlLmNvbYIWKi5nb29nbGUt\nYW5hbHl0aWNzLmNvbYILKi5nb29nbGUuY2GCCyouZ29vZ2xlLmNsgg4qLmdvb2ds\nZS5jby5pboIOKi5nb29nbGUuY28uanCCDiouZ29vZ2xlLmNvLnVrgg8qLmdvb2ds\nZS5jb20uYXKCDyouZ29vZ2xlLmNvbS5hdYIPKi5nb29nbGUuY29tLmJygg8qLmdv\nb2dsZS5jb20uY2+CDyouZ29vZ2xlLmNvbS5teIIPKi5nb29nbGUuY29tLnRygg8q\nLmdvb2dsZS5jb20udm6CCyouZ29vZ2xlLmRlggsqLmdvb2dsZS5lc4ILKi5nb29n\nbGUuZnKCCyouZ29vZ2xlLmh1ggsqLmdvb2dsZS5pdIILKi5nb29nbGUubmyCCyou\nZ29vZ2xlLnBsggsqLmdvb2dsZS5wdIISKi5nb29nbGVhZGFwaXMuY29tgg8qLmdv\nb2dsZWFwaXMuY26CFCouZ29vZ2xlY29tbWVyY2UuY29tghEqLmdvb2dsZXZpZGVv\nLmNvbYIMKi5nc3RhdGljLmNugg0qLmdzdGF0aWMuY29tggoqLmd2dDEuY29tggoq\nLmd2dDIuY29tggwqLnVyY2hpbi5jb22CECoudXJsLmdvb2dsZS5jb22CFioueW91\ndHViZS1ub2Nvb2tpZS5jb22CDSoueW91dHViZS5jb22CFioueW91dHViZWVkdWNh\ndGlvbi5jb22CCyoueXRpbWcuY29tggthbmRyb2lkLmNvbYIEZy5jb4IGZ29vLmds\nghRnb29nbGUtYW5hbHl0aWNzLmNvbYIKZ29vZ2xlLmNvbYISZ29vZ2xlY29tbWVy\nY2UuY29tggp1cmNoaW4uY29tggh5b3V0dS5iZYILeW91dHViZS5jb22CFHlvdXR1\nYmVlZHVjYXRpb24uY29tMAsGA1UdDwQEAwIHgDBoBggrBgEFBQcBAQRcMFowKwYI\nKwYBBQUHMAKGH2h0dHA6Ly9wa2kuZ29vZ2xlLmNvbS9HSUFHMi5jcnQwKwYIKwYB\nBQUHMAGGH2h0dHA6Ly9jbGllbnRzMS5nb29nbGUuY29tL29jc3AwHQYDVR0OBBYE\nFEf0J4rvoWtxDt0WHpSOWAiKZvviMAwGA1UdEwEB/wQCMAAwHwYDVR0jBBgwFoAU\nSt0GFhu89mi1dvWBtrtiGrpagS8wFwYDVR0gBBAwDjAMBgorBgEEAdZ5AgUBMDAG\nA1UdHwQpMCcwJaAjoCGGH2h0dHA6Ly9wa2kuZ29vZ2xlLmNvbS9HSUFHMi5jcmww\nDQYJKoZIhvcNAQEFBQADggEBAGIjdi4mWuMB/E1rTZ4+1hBiwvC7zeHPldFHSQ+X\nMYWDD3Nu2AWILzpyNmNPWMj1F4Kbfnnfhnqzesb5Wx37vvUrbN0JtlEVgF7Lp831\nHMm4/kcehWvHpdriDK0xuV3iDQnkCYbxoxf9gYLi3f5LOPmmEsMD4mfrFFq/Lqi6\nle2OqQXcJ8YQilUymsKtSNGo6AfmoLbQAMcadTcEUVeTgyu2CTcpAvMYnbk89jWg\nnBOADE7uiZkz0LazVhJm9kRztnIcltb0S7Y9bKFUBGrHE+jQmuaMFzRtkgMcDUN7\n/bZdSv8bOm+FyW47cmqTn3FJIWatzoZXBpo+5v/ecVM0RUw=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIID8DCCAtigAwIBAgIDAjp2MA0GCSqGSIb3DQEBBQUAMEIxCzAJBgNVBAYTAlVT\nMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMRswGQYDVQQDExJHZW9UcnVzdCBHbG9i\nYWwgQ0EwHhcNMTMwNDA1MTUxNTU1WhcNMTYxMjMxMjM1OTU5WjBJMQswCQYDVQQG\nEwJVUzETMBEGA1UEChMKR29vZ2xlIEluYzElMCMGA1UEAxMcR29vZ2xlIEludGVy\nbmV0IEF1dGhvcml0eSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB\nAJwqBHdc2FCROgajguDYUEi8iT/xGXAaiEZ+4I/F8YnOIe5a/mENtzJEiaB0C1NP\nVaTOgmKV7utZX8bhBYASxF6UP7xbSDj0U/ck5vuR6RXEz/RTDfRK/J9U3n2+oGtv\nh8DQUB8oMANA2ghzUWx//zo8pzcGjr1LEQTrfSTe5vn8MXH7lNVg8y5Kr0LSy+rE\nahqyzFPdFUuLH8gZYR/Nnag+YyuENWllhMgZxUYi+FOVvuOAShDGKuy6lyARxzmZ\nEASg8GF6lSWMTlJ14rbtCMoU/M4iarNOz0YDl5cDfsCx3nuvRTPPuj5xt970JSXC\nDTWJnZ37DhF5iR43xa+OcmkCAwEAAaOB5zCB5DAfBgNVHSMEGDAWgBTAephojYn7\nqwVkDBF9qn1luMrMTjAdBgNVHQ4EFgQUSt0GFhu89mi1dvWBtrtiGrpagS8wEgYD\nVR0TAQH/BAgwBgEB/wIBADAOBgNVHQ8BAf8EBAMCAQYwNQYDVR0fBC4wLDAqoCig\nJoYkaHR0cDovL2cuc3ltY2IuY29tL2NybHMvZ3RnbG9iYWwuY3JsMC4GCCsGAQUF\nBwEBBCIwIDAeBggrBgEFBQcwAYYSaHR0cDovL2cuc3ltY2QuY29tMBcGA1UdIAQQ\nMA4wDAYKKwYBBAHWeQIFATANBgkqhkiG9w0BAQUFAAOCAQEAJ4zP6cc7vsBv6JaE\n+5xcXZDkd9uLMmCbZdiFJrW6nx7eZE4fxsggWwmfq6ngCTRFomUlNz1/Wm8gzPn6\n8R2PEAwCOsTJAXaWvpv5Fdg50cUDR3a4iowx1mDV5I/b+jzG1Zgo+ByPF5E0y8tS\netH7OiDk4Yax2BgPvtaHZI3FCiVCUe+yOLjgHdDh/Ob0r0a678C/xbQF9ZR1DP6i\nvgK66oZb+TWzZvXFjYWhGiN3GhkXVBNgnwvhtJwoKvmuAjRtJZOcgqgXe/GFsNMP\nWOH7sf6coaPo/ck/9Ndx3L2MpBngISMjVROPpBYCCX65r+7bU2S9cS+5Oc4wt7S8\nVOBHBw==\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIDVDCCAjygAwIBAgIDAjRWMA0GCSqGSIb3DQEBBQUAMEIxCzAJBgNVBAYTAlVT\nMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMRswGQYDVQQDExJHZW9UcnVzdCBHbG9i\nYWwgQ0EwHhcNMDIwNTIxMDQwMDAwWhcNMjIwNTIxMDQwMDAwWjBCMQswCQYDVQQG\nEwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEbMBkGA1UEAxMSR2VvVHJ1c3Qg\nR2xvYmFsIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2swYYzD9\n9BcjGlZ+W988bDjkcbd4kdS8odhM+KhDtgPpTSEHCIjaWC9mOSm9BXiLnTjoBbdq\nfnGk5sRgprDvgOSJKA+eJdbtg/OtppHHmMlCGDUUna2YRpIuT8rxh0PBFpVXLVDv\niS2Aelet8u5fa9IAjbkU+BQVNdnARqN7csiRv8lVK83Qlz6cJmTM386DGXHKTubU\n1XupGc1V3sjs0l44U+VcT4wt/lAjNvxm5suOpDkZALeVAjmRCw7+OC7RHQWa9k0+\nbw8HHa8sHo9gOeL6NlMTOdReJivbPagUvTLrGAMoUgRx5aszPeE4uwc2hGKceeoW\nMPRfwCvocWvk+QIDAQABo1MwUTAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTA\nephojYn7qwVkDBF9qn1luMrMTjAfBgNVHSMEGDAWgBTAephojYn7qwVkDBF9qn1l\nuMrMTjANBgkqhkiG9w0BAQUFAAOCAQEANeMpauUvXVSOKVCUn5kaFOSPeCpilKIn\nZ57QzxpeR+nBsqTP3UEaBU6bS+5Kb1VSsyShNwrrZHYqLizz/Tt1kL/6cdjHPTfS\ntQWVYrmm3ok9Nns4d0iXrKYgjy6myQzCsplFAMfOEVEiIuCl6rYVSAlk6l5PdPcF\nPseKUgzbFbS9bZvlxrFUaKnjaZC2mqUPuLk/IH2uSrW4nOQdtqvmlKXBx4Ot2/Un\nhw4EbNX/3aBd7YdStysVAq45pmp06drE57xNNB6pXE0zX5IJL4hmXXeXxx12E6nV\n5fEWCRE11azbJHFwLJhWC9kXtNHjUStedejV0NxPNO3CBWaAocvmMw==\n-----END CERTIFICATE-----\n"]}},"phase":2,"source":{"id":302,"type":15},"time":"1250434015","type":249}, -{"phase":2,"source":{"id":301,"type":5},"time":"1250434015","type":248}, -{"phase":2,"source":{"id":301,"type":5},"time":"1250434015","type":48}, -{"params":{"source_dependency":{"id":301,"type":5}},"phase":0,"source":{"id":281,"type":4},"time":"1250434015","type":79}, -{"phase":2,"source":{"id":281,"type":4},"time":"1250434015","type":78}, -{"phase":2,"source":{"id":281,"type":4},"time":"1250434015","type":77}, -{"params":{"source_dependency":{"id":281,"type":4}},"phase":0,"source":{"id":276,"type":12},"time":"1250434015","type":88}, -{"params":{"source_dependency":{"id":301,"type":5}},"phase":0,"source":{"id":276,"type":12},"time":"1250434015","type":89}, -{"phase":2,"source":{"id":276,"type":12},"time":"1250434015","type":81}, -{"params":{"source_dependency":{"id":276,"type":12}},"phase":1,"source":{"id":301,"type":5},"time":"1250434015","type":38}, -{"params":{"next_proto_status":"negotiated","proto":"spdy/3.1","server_protos":""},"phase":0,"source":{"id":276,"type":12},"time":"1250434015","type":124}, -{"params":{"source_dependency":{"id":303,"type":8}},"phase":1,"source":{"id":276,"type":12},"time":"1250434015","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"ssl.gstatic.com:443","is_speculative":false,"source_dependency":{"id":276,"type":12}},"phase":1,"source":{"id":303,"type":8},"time":"1250434015","type":4}, -{"params":{"source_dependency":{"id":303,"type":8}},"phase":1,"source":{"id":304,"type":20},"time":"1250434015","type":303}, -{"params":{"source_dependency":{"id":304,"type":20}},"phase":1,"source":{"id":305,"type":14},"time":"1250434015","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":305,"type":14},"time":"1250434015","type":71}, -{"phase":2,"source":{"id":305,"type":14},"time":"1250434016","type":71}, -{"params":{"address":"[::ffff:2001:0]:57792"},"phase":0,"source":{"id":305,"type":14},"time":"1250434016","type":72}, -{"phase":2,"source":{"id":305,"type":14},"time":"1250434016","type":34}, -{"phase":2,"source":{"id":304,"type":20},"time":"1250434016","type":303}, -{"phase":0,"source":{"id":303,"type":8},"time":"1250434016","type":5}, -{"phase":0,"source":{"id":303,"type":8},"time":"1250434016","type":6}, -{"phase":2,"source":{"id":303,"type":8},"time":"1250434016","type":4}, -{"phase":2,"source":{"id":276,"type":12},"time":"1250434016","type":3}, -{"params":{"host":"ssl.gstatic.com:443","proxy":"DIRECT"},"phase":1,"source":{"id":306,"type":6},"time":"1250434016","type":139}, -{"params":{"source_dependency":{"id":301,"type":5}},"phase":0,"source":{"id":306,"type":6},"time":"1250434016","type":140}, -{"params":{"settings":["[id:4 flags:0 value:1000]","[id:7 flags:0 value:10485760]"]},"phase":0,"source":{"id":306,"type":6},"time":"1250434016","type":146}, -{"params":{"delta":10420224,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434016","type":177}, -{"params":{"delta":10420224,"stream_id":0},"phase":0,"source":{"id":306,"type":6},"time":"1250434016","type":154}, -{"params":{"source_dependency":{"id":306,"type":6}},"phase":0,"source":{"id":276,"type":12},"time":"1250434016","type":171}, -{"params":{"byte_count":28},"phase":0,"source":{"id":301,"type":5},"time":"1250434016","type":62}, -{"params":{"byte_count":49},"phase":0,"source":{"id":301,"type":5},"time":"1250434016","type":61}, -{"params":{"byte_count":16},"phase":0,"source":{"id":301,"type":5},"time":"1250434016","type":62}, -{"params":{"byte_count":37},"phase":0,"source":{"id":301,"type":5},"time":"1250434016","type":61}, -{"params":{"source_dependency":{"id":276,"type":12}},"phase":0,"source":{"id":275,"type":1},"time":"1250434016","type":122}, -{"params":{"source_dependency":{"id":275,"type":1}},"phase":0,"source":{"id":276,"type":12},"time":"1250434016","type":123}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434016","type":120}, -{"phase":2,"source":{"id":276,"type":12},"time":"1250434016","type":121}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434016","type":129}, -{"params":{"headers":{":host":"ssl.gstatic.com",":method":"GET",":path":"/safebrowsing/csd/client_model_v5.pb",":scheme":"https",":version":"HTTP/1.1","accept-encoding":"gzip,deflate","user-agent":"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36"}},"phase":0,"source":{"id":275,"type":1},"time":"1250434016","type":132}, -{"params":{"fin":true,"headers":[":host: ssl.gstatic.com",":method: GET",":path: /safebrowsing/csd/client_model_v5.pb",":scheme: https",":version: HTTP/1.1","accept-encoding: gzip,deflate","user-agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36"],"spdy_priority":3,"stream_id":1,"unidirectional":false},"phase":0,"source":{"id":306,"type":6},"time":"1250434016","type":141}, -{"params":{"byte_count":233},"phase":0,"source":{"id":301,"type":5},"time":"1250434016","type":62}, -{"params":{"byte_count":254},"phase":0,"source":{"id":301,"type":5},"time":"1250434016","type":61}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434016","type":129}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434017","type":134}, -{"params":{"byte_count":270},"phase":0,"source":{"id":301,"type":5},"time":"1250434029","type":63}, -{"params":{"byte_count":86},"phase":0,"source":{"id":301,"type":5},"time":"1250434030","type":63}, -{"params":{"byte_count":44},"phase":0,"source":{"id":301,"type":5},"time":"1250434030","type":64}, -{"params":{"clear_persisted":false,"host":"ssl.gstatic.com:443"},"phase":0,"source":{"id":306,"type":6},"time":"1250434030","type":147}, -{"params":{"flags":1,"id":4,"value":100},"phase":0,"source":{"id":306,"type":6},"time":"1250434030","type":148}, -{"params":{"delta_window_size":0},"phase":0,"source":{"id":306,"type":6},"time":"1250434030","type":167}, -{"params":{"flags":0,"id":7,"value":65536},"phase":0,"source":{"id":306,"type":6},"time":"1250434030","type":148}, -{"params":{"delta":983040,"stream_id":0},"phase":0,"source":{"id":306,"type":6},"time":"1250434030","type":153}, -{"params":{"delta":983040,"window_size":1048576},"phase":0,"source":{"id":306,"type":6},"time":"1250434030","type":155}, -{"params":{"byte_count":258},"phase":0,"source":{"id":301,"type":5},"time":"1250434055","type":63}, -{"params":{"byte_count":237},"phase":0,"source":{"id":301,"type":5},"time":"1250434055","type":64}, -{"params":{"fin":false,"headers":[":status: 200 OK",":version: HTTP/1.1","age: 110872","alternate-protocol: 443:quic,p=0.002","cache-control: public, max-age=691200","content-length: 77984","content-type: application/octet-stream","date: Thu, 25 Sep 2014 12:54:11 GMT","expires: Fri, 03 Oct 2014 12:54:11 GMT","last-modified: Fri, 01 Nov 2013 02:26:35 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"],"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434055","type":145}, -{"params":{"headers":["HTTP/1.1 200 OK","status: 200 OK","version: HTTP/1.1","age: 110872","alternate-protocol: 443:quic,p=0.002","cache-control: public, max-age=691200","content-length: 77984","content-type: application/octet-stream","date: Thu, 25 Sep 2014 12:54:11 GMT","expires: Fri, 03 Oct 2014 12:54:11 GMT","last-modified: Fri, 01 Nov 2013 02:26:35 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"phase":0,"source":{"id":275,"type":1},"time":"1250434056","type":135}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434056","type":134}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434056","type":93}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434056","type":93}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434056","type":91}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434056","type":93}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434056","type":93}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434056","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434056","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434056","type":64}, -{"params":{"fin":false,"size":1401,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434056","type":159}, -{"params":{"delta":-1401,"window_size":10484359},"phase":0,"source":{"id":306,"type":6},"time":"1250434056","type":156}, -{"params":{"delta":-1401,"stream_id":1,"window_size":10484359},"phase":0,"source":{"id":275,"type":1},"time":"1250434056","type":177}, -{"params":{"delta":1401,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434057","type":177}, -{"params":{"delta":1401,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434057","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434057","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434057","type":136}, -{"params":{"byte_count":4290},"phase":0,"source":{"id":301,"type":5},"time":"1250434059","type":63}, -{"params":{"byte_count":4227},"phase":0,"source":{"id":301,"type":5},"time":"1250434059","type":64}, -{"params":{"fin":false,"size":4227,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434059","type":159}, -{"params":{"delta":-4227,"window_size":10481533},"phase":0,"source":{"id":306,"type":6},"time":"1250434059","type":156}, -{"params":{"delta":-4227,"stream_id":1,"window_size":10481533},"phase":0,"source":{"id":275,"type":1},"time":"1250434059","type":177}, -{"params":{"delta":4096,"window_size":10485629},"phase":0,"source":{"id":306,"type":6},"time":"1250434060","type":177}, -{"params":{"delta":4096,"stream_id":1,"window_size":10485629},"phase":0,"source":{"id":275,"type":1},"time":"1250434060","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434060","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434060","type":136}, -{"params":{"delta":131,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434060","type":177}, -{"params":{"delta":131,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434060","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434060","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434060","type":136}, -{"params":{"byte_count":5720},"phase":0,"source":{"id":301,"type":5},"time":"1250434060","type":63}, -{"params":{"byte_count":5636},"phase":0,"source":{"id":301,"type":5},"time":"1250434060","type":64}, -{"params":{"fin":false,"size":5636,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434061","type":159}, -{"params":{"delta":-5636,"window_size":10480124},"phase":0,"source":{"id":306,"type":6},"time":"1250434061","type":156}, -{"params":{"delta":-5636,"stream_id":1,"window_size":10480124},"phase":0,"source":{"id":275,"type":1},"time":"1250434061","type":177}, -{"params":{"delta":4096,"window_size":10484220},"phase":0,"source":{"id":306,"type":6},"time":"1250434062","type":177}, -{"params":{"delta":4096,"stream_id":1,"window_size":10484220},"phase":0,"source":{"id":275,"type":1},"time":"1250434062","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434062","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434062","type":136}, -{"params":{"delta":1540,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434062","type":177}, -{"params":{"delta":1540,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434062","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434062","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434062","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434062","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434062","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434062","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434062","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434062","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434063","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434063","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434063","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434063","type":136}, -{"params":{"byte_count":28},"phase":0,"source":{"id":301,"type":5},"time":"1250434064","type":63}, -{"params":{"byte_count":1402},"phase":0,"source":{"id":301,"type":5},"time":"1250434064","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434064","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434064","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434064","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434064","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434065","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434065","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434065","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434065","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434066","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434066","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434066","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434066","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434066","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434067","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434067","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434067","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434067","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434069","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434069","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434069","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434069","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434069","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434070","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434070","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434070","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434070","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434071","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434071","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434071","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434071","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434071","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434072","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434072","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434072","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434072","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434074","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434074","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434074","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434074","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434074","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434075","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434075","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434075","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434075","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434076","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434076","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434076","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434076","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434076","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434077","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434077","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434077","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434077","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434078","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434078","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434078","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434078","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434078","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434079","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434079","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434079","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434079","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434081","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434081","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434081","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434081","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434081","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434082","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434082","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434082","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434082","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434083","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434083","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434083","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434083","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434083","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434084","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434084","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434084","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434084","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434085","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434085","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434085","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434085","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434085","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434086","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434086","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434086","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434086","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434088","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434088","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434088","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434088","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434088","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434089","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434089","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434089","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434089","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434090","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434090","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434090","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434090","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434090","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434091","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434091","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434091","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434091","type":136}, -{"params":{"byte_count":276},"phase":0,"source":{"id":301,"type":5},"time":"1250434092","type":63}, -{"params":{"byte_count":1154},"phase":0,"source":{"id":301,"type":5},"time":"1250434092","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434092","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434092","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434092","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434092","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434093","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434093","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434093","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434093","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434095","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434095","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434095","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434095","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434095","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434096","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434096","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434096","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434096","type":136}, -{"params":{"byte_count":390},"phase":0,"source":{"id":301,"type":5},"time":"1250434097","type":63}, -{"params":{"byte_count":369},"phase":0,"source":{"id":301,"type":5},"time":"1250434097","type":64}, -{"params":{"fin":false,"size":369,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434097","type":159}, -{"params":{"delta":-369,"window_size":10485391},"phase":0,"source":{"id":306,"type":6},"time":"1250434097","type":156}, -{"params":{"delta":-369,"stream_id":1,"window_size":10485391},"phase":0,"source":{"id":275,"type":1},"time":"1250434097","type":177}, -{"params":{"delta":369,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434098","type":177}, -{"params":{"delta":369,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434098","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434098","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434098","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434098","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434098","type":64}, -{"params":{"fin":false,"size":1401,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434098","type":159}, -{"params":{"delta":-1401,"window_size":10484359},"phase":0,"source":{"id":306,"type":6},"time":"1250434098","type":156}, -{"params":{"delta":-1401,"stream_id":1,"window_size":10484359},"phase":0,"source":{"id":275,"type":1},"time":"1250434098","type":177}, -{"params":{"delta":1401,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434099","type":177}, -{"params":{"delta":34169,"stream_id":0},"phase":0,"source":{"id":306,"type":6},"time":"1250434099","type":154}, -{"params":{"delta":1401,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434099","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434099","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434099","type":136}, -{"params":{"byte_count":16},"phase":0,"source":{"id":301,"type":5},"time":"1250434099","type":62}, -{"params":{"byte_count":37},"phase":0,"source":{"id":301,"type":5},"time":"1250434099","type":61}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434100","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434100","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434100","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434100","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434100","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434101","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434101","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434101","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434101","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434102","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434102","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434102","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434102","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434102","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434103","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434103","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434103","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434103","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434105","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434105","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434105","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434105","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434105","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434106","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434106","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434106","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434106","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434107","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434107","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434107","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434107","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434107","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434108","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434108","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434108","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434108","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434110","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434110","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434110","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434110","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434110","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434111","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434111","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434111","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434111","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434112","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434112","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434112","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434112","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434112","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434113","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434113","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434113","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434113","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434114","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434114","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434114","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434114","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434114","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434115","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434115","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434115","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434115","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434117","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434117","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434117","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434117","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434117","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434118","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434118","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434118","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434118","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434119","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434119","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434119","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434119","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434119","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434120","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434120","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434120","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434120","type":136}, -{"params":{"byte_count":134},"phase":0,"source":{"id":301,"type":5},"time":"1250434121","type":63}, -{"params":{"byte_count":1296},"phase":0,"source":{"id":301,"type":5},"time":"1250434121","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434121","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434121","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434121","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434121","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434122","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434122","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434122","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434122","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434124","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434124","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434124","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434124","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434124","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434125","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434125","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434125","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434125","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434126","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434126","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434126","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434126","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434126","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434127","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434127","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434127","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434127","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434128","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434128","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434128","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434128","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434128","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434129","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434129","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434129","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434129","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434131","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434131","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434131","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434131","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434131","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434132","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434132","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434132","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434132","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434133","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434133","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434133","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434133","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434133","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434134","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434134","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434134","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434134","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434135","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434135","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434135","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434135","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434135","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434136","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434136","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434136","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434136","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434138","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434138","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434138","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434138","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434138","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434139","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434139","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434139","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434139","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434140","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434140","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434140","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434140","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434140","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434141","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434141","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434141","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434141","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434142","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434142","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434142","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434142","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434142","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434143","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434143","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434143","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434143","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434145","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434145","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434145","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434145","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434145","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434146","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434146","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434146","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434146","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434147","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434147","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434147","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434147","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434147","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434148","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434148","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434148","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434148","type":136}, -{"params":{"byte_count":382},"phase":0,"source":{"id":301,"type":5},"time":"1250434150","type":63}, -{"params":{"byte_count":1048},"phase":0,"source":{"id":301,"type":5},"time":"1250434150","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434150","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434150","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434150","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434150","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434151","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434151","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434151","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434151","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434152","type":63}, -{"params":{"byte_count":369},"phase":0,"source":{"id":301,"type":5},"time":"1250434152","type":64}, -{"params":{"fin":false,"size":369,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434152","type":159}, -{"params":{"delta":-369,"window_size":10485391},"phase":0,"source":{"id":306,"type":6},"time":"1250434152","type":156}, -{"params":{"delta":-369,"stream_id":1,"window_size":10485391},"phase":0,"source":{"id":275,"type":1},"time":"1250434152","type":177}, -{"params":{"delta":369,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434153","type":177}, -{"params":{"delta":369,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434153","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434153","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434153","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434154","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434154","type":64}, -{"params":{"fin":false,"size":1401,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434154","type":159}, -{"params":{"delta":-1401,"window_size":10484359},"phase":0,"source":{"id":306,"type":6},"time":"1250434154","type":156}, -{"params":{"delta":-1401,"stream_id":1,"window_size":10484359},"phase":0,"source":{"id":275,"type":1},"time":"1250434154","type":177}, -{"params":{"delta":1401,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434155","type":177}, -{"params":{"delta":1401,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434155","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434155","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434155","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434157","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434157","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434157","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434157","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434157","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434158","type":177}, -{"params":{"delta":34177,"stream_id":0},"phase":0,"source":{"id":306,"type":6},"time":"1250434158","type":154}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434158","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434158","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434158","type":136}, -{"params":{"byte_count":16},"phase":0,"source":{"id":301,"type":5},"time":"1250434158","type":62}, -{"params":{"byte_count":37},"phase":0,"source":{"id":301,"type":5},"time":"1250434158","type":61}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434159","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434159","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434159","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434159","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434159","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434160","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434160","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434160","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434160","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434161","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434161","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434161","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434161","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434161","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434162","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434162","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434162","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434162","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434164","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434164","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434164","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434164","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434164","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434165","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434165","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434165","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434165","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434166","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434166","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434166","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434166","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434166","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434167","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434167","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434167","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434167","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434168","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434168","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434168","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434168","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434168","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434169","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434169","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434169","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434169","type":136}, -{"params":{"byte_count":1430},"phase":0,"source":{"id":301,"type":5},"time":"1250434171","type":63}, -{"params":{"byte_count":1409},"phase":0,"source":{"id":301,"type":5},"time":"1250434171","type":64}, -{"params":{"fin":false,"size":1409,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434171","type":159}, -{"params":{"delta":-1409,"window_size":10484351},"phase":0,"source":{"id":306,"type":6},"time":"1250434171","type":156}, -{"params":{"delta":-1409,"stream_id":1,"window_size":10484351},"phase":0,"source":{"id":275,"type":1},"time":"1250434171","type":177}, -{"params":{"delta":1409,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434172","type":177}, -{"params":{"delta":1409,"stream_id":1,"window_size":10485760},"phase":0,"source":{"id":275,"type":1},"time":"1250434172","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434172","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434172","type":136}, -{"params":{"byte_count":198},"phase":0,"source":{"id":301,"type":5},"time":"1250434173","type":63}, -{"params":{"byte_count":1196},"phase":0,"source":{"id":301,"type":5},"time":"1250434173","type":64}, -{"params":{"fin":false,"size":1184,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434173","type":159}, -{"params":{"delta":-1184,"window_size":10484576},"phase":0,"source":{"id":306,"type":6},"time":"1250434173","type":156}, -{"params":{"delta":-1184,"stream_id":1,"window_size":10484576},"phase":0,"source":{"id":275,"type":1},"time":"1250434173","type":177}, -{"params":{"fin":true,"size":0,"stream_id":1},"phase":0,"source":{"id":306,"type":6},"time":"1250434173","type":159}, -{"params":{"delta":1184,"window_size":10485760},"phase":0,"source":{"id":306,"type":6},"time":"1250434173","type":177}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434173","type":136}, -{"phase":1,"source":{"id":275,"type":1},"time":"1250434173","type":136}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434173","type":136}, -{"phase":2,"source":{"id":275,"type":1},"time":"1250434173","type":2}, -{"params":{"is_ack":false,"type":"received","unique_id":0},"phase":0,"source":{"id":306,"type":6},"time":"1250434174","type":151}, -{"params":{"is_ack":true,"type":"sent","unique_id":0},"phase":0,"source":{"id":306,"type":6},"time":"1250434174","type":151}, -{"params":{"byte_count":12},"phase":0,"source":{"id":301,"type":5},"time":"1250434174","type":62}, -{"params":{"byte_count":33},"phase":0,"source":{"id":301,"type":5},"time":"1250434174","type":61}, -{"phase":1,"source":{"id":307,"type":1},"time":"1250434858","type":2}, -{"phase":1,"source":{"id":307,"type":1},"time":"1250434858","type":93}, -{"phase":2,"source":{"id":307,"type":1},"time":"1250434858","type":93}, -{"params":{"load_flags":131328,"method":"GET","priority":"LOW","url":"http://127.0.0.1:8888/task"},"phase":1,"source":{"id":307,"type":1},"time":"1250434858","type":91}, -{"phase":1,"source":{"id":307,"type":1},"time":"1250434859","type":93}, -{"phase":2,"source":{"id":307,"type":1},"time":"1250434859","type":93}, -{"phase":1,"source":{"id":307,"type":1},"time":"1250434859","type":99}, -{"phase":2,"source":{"id":307,"type":1},"time":"1250434859","type":99}, -{"phase":1,"source":{"id":307,"type":1},"time":"1250434859","type":100}, -{"params":{"created":false,"key":"http://127.0.0.1:8888/task"},"phase":1,"source":{"id":308,"type":10},"time":"1250434859","type":108}, -{"phase":2,"source":{"id":307,"type":1},"time":"1250434859","type":100}, -{"phase":1,"source":{"id":307,"type":1},"time":"1250434859","type":102}, -{"phase":2,"source":{"id":307,"type":1},"time":"1250434859","type":102}, -{"phase":1,"source":{"id":307,"type":1},"time":"1250434859","type":104}, -{"params":{"buf_len":172,"index":0,"offset":0},"phase":1,"source":{"id":308,"type":10},"time":"1250434859","type":110}, -{"params":{"bytes_copied":172},"phase":2,"source":{"id":308,"type":10},"time":"1250434859","type":110}, -{"phase":2,"source":{"id":307,"type":1},"time":"1250434859","type":104}, -{"phase":1,"source":{"id":307,"type":1},"time":"1250434859","type":93}, -{"phase":2,"source":{"id":307,"type":1},"time":"1250434859","type":93}, -{"phase":1,"source":{"id":307,"type":1},"time":"1250434859","type":120}, -{"params":{"original_url":"http://127.0.0.1:8888/","priority":"LOW","url":"http://127.0.0.1:8888/"},"phase":1,"source":{"id":309,"type":12},"time":"1250434859","type":121}, -{"phase":1,"source":{"id":309,"type":12},"time":"1250434859","type":24}, -{"params":{"pac_string":"DIRECT"},"phase":0,"source":{"id":309,"type":12},"time":"1250434859","type":26}, -{"phase":2,"source":{"id":309,"type":12},"time":"1250434859","type":24}, -{"params":{"source_dependency":{"id":310,"type":8}},"phase":1,"source":{"id":309,"type":12},"time":"1250434859","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":309,"type":12}},"phase":1,"source":{"id":310,"type":8},"time":"1250434859","type":4}, -{"params":{"source_dependency":{"id":310,"type":8}},"phase":1,"source":{"id":311,"type":20},"time":"1250434859","type":303}, -{"params":{"source_dependency":{"id":311,"type":20}},"phase":1,"source":{"id":312,"type":14},"time":"1250434859","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":312,"type":14},"time":"1250434859","type":71}, -{"phase":2,"source":{"id":312,"type":14},"time":"1250434859","type":71}, -{"params":{"address":"[::ffff:2001:0]:57793"},"phase":0,"source":{"id":312,"type":14},"time":"1250434859","type":72}, -{"phase":2,"source":{"id":312,"type":14},"time":"1250434859","type":34}, -{"phase":2,"source":{"id":311,"type":20},"time":"1250434860","type":303}, -{"phase":0,"source":{"id":310,"type":8},"time":"1250434860","type":5}, -{"phase":2,"source":{"id":310,"type":8},"time":"1250434860","type":4}, -{"phase":2,"source":{"id":309,"type":12},"time":"1250434860","type":3}, -{"params":{"host_and_port":"127.0.0.1:8888"},"phase":0,"source":{"id":309,"type":12},"time":"1250434860","type":85}, -{"phase":1,"source":{"id":309,"type":12},"time":"1250434860","type":81}, -{"params":{"group_name":"127.0.0.1:8888"},"phase":1,"source":{"id":313,"type":4},"time":"1250434860","type":77}, -{"phase":1,"source":{"id":313,"type":4},"time":"1250434860","type":78}, -{"params":{"source_dependency":{"id":314,"type":8}},"phase":1,"source":{"id":313,"type":4},"time":"1250434860","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":313,"type":4}},"phase":1,"source":{"id":314,"type":8},"time":"1250434860","type":4}, -{"params":{"source_dependency":{"id":314,"type":8}},"phase":1,"source":{"id":315,"type":20},"time":"1250434860","type":303}, -{"params":{"source_dependency":{"id":315,"type":20}},"phase":1,"source":{"id":316,"type":14},"time":"1250434860","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":316,"type":14},"time":"1250434860","type":71}, -{"phase":2,"source":{"id":316,"type":14},"time":"1250434860","type":71}, -{"params":{"address":"[::ffff:2001:0]:57794"},"phase":0,"source":{"id":316,"type":14},"time":"1250434860","type":72}, -{"phase":2,"source":{"id":316,"type":14},"time":"1250434860","type":34}, -{"phase":2,"source":{"id":315,"type":20},"time":"1250434860","type":303}, -{"phase":0,"source":{"id":314,"type":8},"time":"1250434860","type":5}, -{"phase":2,"source":{"id":314,"type":8},"time":"1250434860","type":4}, -{"phase":2,"source":{"id":313,"type":4},"time":"1250434860","type":3}, -{"params":{"source_dependency":{"id":313,"type":4}},"phase":1,"source":{"id":317,"type":5},"time":"1250434860","type":34}, -{"params":{"address_list":["127.0.0.1:8888"]},"phase":1,"source":{"id":317,"type":5},"time":"1250434860","type":35}, -{"params":{"address":"127.0.0.1:8888"},"phase":1,"source":{"id":317,"type":5},"time":"1250434860","type":36}, -{"phase":2,"source":{"id":317,"type":5},"time":"1250434860","type":36}, -{"params":{"source_address":"127.0.0.1:51000"},"phase":2,"source":{"id":317,"type":5},"time":"1250434860","type":35}, -{"params":{"source_dependency":{"id":317,"type":5}},"phase":0,"source":{"id":313,"type":4},"time":"1250434860","type":79}, -{"phase":2,"source":{"id":313,"type":4},"time":"1250434860","type":78}, -{"phase":2,"source":{"id":313,"type":4},"time":"1250434860","type":77}, -{"params":{"source_dependency":{"id":313,"type":4}},"phase":0,"source":{"id":309,"type":12},"time":"1250434860","type":88}, -{"params":{"source_dependency":{"id":317,"type":5}},"phase":0,"source":{"id":309,"type":12},"time":"1250434860","type":89}, -{"phase":2,"source":{"id":309,"type":12},"time":"1250434861","type":81}, -{"params":{"source_dependency":{"id":309,"type":12}},"phase":1,"source":{"id":317,"type":5},"time":"1250434861","type":38}, -{"params":{"source_dependency":{"id":309,"type":12}},"phase":0,"source":{"id":307,"type":1},"time":"1250434861","type":122}, -{"params":{"source_dependency":{"id":307,"type":1}},"phase":0,"source":{"id":309,"type":12},"time":"1250434861","type":123}, -{"phase":2,"source":{"id":307,"type":1},"time":"1250434861","type":120}, -{"phase":2,"source":{"id":309,"type":12},"time":"1250434861","type":121}, -{"phase":1,"source":{"id":307,"type":1},"time":"1250434861","type":129}, -{"params":{"headers":["Host: 127.0.0.1:8888","Connection: keep-alive","User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36","Accept: */*","Accept-Encoding: gzip,deflate,sdch","Accept-Language: en-US,en;q=0.8"],"line":"GET /task HTTP/1.1\r\n"},"phase":0,"source":{"id":307,"type":1},"time":"1250434861","type":130}, -{"params":{"byte_count":266},"phase":0,"source":{"id":317,"type":5},"time":"1250434861","type":61}, -{"phase":2,"source":{"id":307,"type":1},"time":"1250434861","type":129}, -{"phase":1,"source":{"id":307,"type":1},"time":"1250434861","type":134}, -{"phase":1,"source":{"id":307,"type":1},"time":"1250434861","type":215}, -{"params":{"byte_count":161},"phase":0,"source":{"id":317,"type":5},"time":"1250434861","type":63}, -{"phase":2,"source":{"id":307,"type":1},"time":"1250434861","type":215}, -{"params":{"headers":["HTTP/1.1 200 OK","Server: wptdriver","Cache: no-cache","Pragma: no-cache","Content-Type: application/json","Content-Length: 36"]},"phase":0,"source":{"id":307,"type":1},"time":"1250434861","type":135}, -{"phase":2,"source":{"id":307,"type":1},"time":"1250434861","type":134}, -{"phase":1,"source":{"id":307,"type":1},"time":"1250434861","type":105}, -{"params":{"buf_len":172,"index":0,"offset":0,"truncate":true},"phase":1,"source":{"id":308,"type":10},"time":"1250434861","type":111}, -{"params":{"bytes_copied":172},"phase":2,"source":{"id":308,"type":10},"time":"1250434861","type":111}, -{"phase":2,"source":{"id":307,"type":1},"time":"1250434861","type":105}, -{"phase":1,"source":{"id":307,"type":1},"time":"1250434861","type":107}, -{"params":{"buf_len":0,"index":1,"offset":0,"truncate":true},"phase":1,"source":{"id":308,"type":10},"time":"1250434861","type":111}, -{"params":{"bytes_copied":0},"phase":2,"source":{"id":308,"type":10},"time":"1250434861","type":111}, -{"phase":2,"source":{"id":307,"type":1},"time":"1250434861","type":107}, -{"phase":1,"source":{"id":307,"type":1},"time":"1250434861","type":105}, -{"params":{"buf_len":0,"index":2,"offset":0,"truncate":true},"phase":1,"source":{"id":308,"type":10},"time":"1250434861","type":111}, -{"params":{"bytes_copied":0},"phase":2,"source":{"id":308,"type":10},"time":"1250434861","type":111}, -{"phase":2,"source":{"id":307,"type":1},"time":"1250434861","type":105}, -{"phase":1,"source":{"id":307,"type":1},"time":"1250434861","type":93}, -{"phase":2,"source":{"id":307,"type":1},"time":"1250434861","type":93}, -{"phase":2,"source":{"id":307,"type":1},"time":"1250434861","type":91}, -{"phase":1,"source":{"id":307,"type":1},"time":"1250434861","type":93}, -{"phase":2,"source":{"id":307,"type":1},"time":"1250434862","type":93}, -{"phase":1,"source":{"id":307,"type":1},"time":"1250434862","type":136}, -{"phase":2,"source":{"id":307,"type":1},"time":"1250434862","type":136}, -{"phase":1,"source":{"id":307,"type":1},"time":"1250434862","type":107}, -{"params":{"buf_len":36,"index":1,"offset":0,"truncate":true},"phase":1,"source":{"id":308,"type":10},"time":"1250434862","type":111}, -{"params":{"bytes_copied":36},"phase":2,"source":{"id":308,"type":10},"time":"1250434862","type":111}, -{"phase":2,"source":{"id":307,"type":1},"time":"1250434862","type":107}, -{"phase":1,"source":{"id":307,"type":1},"time":"1250434862","type":136}, -{"phase":2,"source":{"id":317,"type":5},"time":"1250434862","type":38}, -{"phase":0,"source":{"id":317,"type":5},"time":"1250434862","type":67}, -{"phase":2,"source":{"id":317,"type":5},"time":"1250434862","type":34}, -{"phase":2,"source":{"id":307,"type":1},"time":"1250434862","type":136}, -{"phase":1,"source":{"id":307,"type":1},"time":"1250434862","type":107}, -{"phase":2,"source":{"id":307,"type":1},"time":"1250434862","type":107}, -{"phase":2,"source":{"id":307,"type":1},"time":"1250434862","type":2}, -{"phase":0,"source":{"id":308,"type":10},"time":"1250434862","type":118}, -{"phase":2,"source":{"id":308,"type":10},"time":"1250434862","type":108}, -{"phase":1,"source":{"id":318,"type":1},"time":"1250435860","type":2}, -{"phase":1,"source":{"id":318,"type":1},"time":"1250435860","type":93}, -{"phase":2,"source":{"id":318,"type":1},"time":"1250435860","type":93}, -{"params":{"load_flags":131328,"method":"GET","priority":"LOW","url":"http://127.0.0.1:8888/task"},"phase":1,"source":{"id":318,"type":1},"time":"1250435861","type":91}, -{"phase":1,"source":{"id":318,"type":1},"time":"1250435861","type":93}, -{"phase":2,"source":{"id":318,"type":1},"time":"1250435861","type":93}, -{"phase":1,"source":{"id":318,"type":1},"time":"1250435861","type":99}, -{"phase":2,"source":{"id":318,"type":1},"time":"1250435861","type":99}, -{"phase":1,"source":{"id":318,"type":1},"time":"1250435861","type":100}, -{"params":{"created":false,"key":"http://127.0.0.1:8888/task"},"phase":1,"source":{"id":319,"type":10},"time":"1250435861","type":108}, -{"phase":2,"source":{"id":318,"type":1},"time":"1250435861","type":100}, -{"phase":1,"source":{"id":318,"type":1},"time":"1250435861","type":102}, -{"phase":2,"source":{"id":318,"type":1},"time":"1250435861","type":102}, -{"phase":1,"source":{"id":318,"type":1},"time":"1250435861","type":104}, -{"params":{"buf_len":172,"index":0,"offset":0},"phase":1,"source":{"id":319,"type":10},"time":"1250435861","type":110}, -{"params":{"bytes_copied":172},"phase":2,"source":{"id":319,"type":10},"time":"1250435861","type":110}, -{"phase":2,"source":{"id":318,"type":1},"time":"1250435861","type":104}, -{"phase":1,"source":{"id":318,"type":1},"time":"1250435861","type":93}, -{"phase":2,"source":{"id":318,"type":1},"time":"1250435861","type":93}, -{"phase":1,"source":{"id":318,"type":1},"time":"1250435861","type":120}, -{"params":{"original_url":"http://127.0.0.1:8888/","priority":"LOW","url":"http://127.0.0.1:8888/"},"phase":1,"source":{"id":320,"type":12},"time":"1250435861","type":121}, -{"phase":1,"source":{"id":320,"type":12},"time":"1250435861","type":24}, -{"params":{"pac_string":"DIRECT"},"phase":0,"source":{"id":320,"type":12},"time":"1250435861","type":26}, -{"phase":2,"source":{"id":320,"type":12},"time":"1250435861","type":24}, -{"params":{"source_dependency":{"id":321,"type":8}},"phase":1,"source":{"id":320,"type":12},"time":"1250435861","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":320,"type":12}},"phase":1,"source":{"id":321,"type":8},"time":"1250435861","type":4}, -{"params":{"source_dependency":{"id":321,"type":8}},"phase":1,"source":{"id":322,"type":20},"time":"1250435861","type":303}, -{"params":{"source_dependency":{"id":322,"type":20}},"phase":1,"source":{"id":323,"type":14},"time":"1250435861","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":323,"type":14},"time":"1250435862","type":71}, -{"phase":2,"source":{"id":323,"type":14},"time":"1250435862","type":71}, -{"params":{"address":"[::ffff:2001:0]:57795"},"phase":0,"source":{"id":323,"type":14},"time":"1250435862","type":72}, -{"phase":2,"source":{"id":323,"type":14},"time":"1250435862","type":34}, -{"phase":2,"source":{"id":322,"type":20},"time":"1250435862","type":303}, -{"phase":0,"source":{"id":321,"type":8},"time":"1250435862","type":5}, -{"phase":2,"source":{"id":321,"type":8},"time":"1250435862","type":4}, -{"phase":2,"source":{"id":320,"type":12},"time":"1250435862","type":3}, -{"params":{"host_and_port":"127.0.0.1:8888"},"phase":0,"source":{"id":320,"type":12},"time":"1250435862","type":85}, -{"phase":1,"source":{"id":320,"type":12},"time":"1250435862","type":81}, -{"params":{"group_name":"127.0.0.1:8888"},"phase":1,"source":{"id":324,"type":4},"time":"1250435862","type":77}, -{"phase":1,"source":{"id":324,"type":4},"time":"1250435862","type":78}, -{"params":{"source_dependency":{"id":325,"type":8}},"phase":1,"source":{"id":324,"type":4},"time":"1250435862","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":324,"type":4}},"phase":1,"source":{"id":325,"type":8},"time":"1250435862","type":4}, -{"params":{"source_dependency":{"id":325,"type":8}},"phase":1,"source":{"id":326,"type":20},"time":"1250435862","type":303}, -{"params":{"source_dependency":{"id":326,"type":20}},"phase":1,"source":{"id":327,"type":14},"time":"1250435862","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":327,"type":14},"time":"1250435862","type":71}, -{"phase":2,"source":{"id":327,"type":14},"time":"1250435862","type":71}, -{"params":{"address":"[::ffff:2001:0]:57796"},"phase":0,"source":{"id":327,"type":14},"time":"1250435862","type":72}, -{"phase":2,"source":{"id":327,"type":14},"time":"1250435862","type":34}, -{"phase":2,"source":{"id":326,"type":20},"time":"1250435862","type":303}, -{"phase":0,"source":{"id":325,"type":8},"time":"1250435862","type":5}, -{"phase":2,"source":{"id":325,"type":8},"time":"1250435862","type":4}, -{"phase":2,"source":{"id":324,"type":4},"time":"1250435862","type":3}, -{"params":{"source_dependency":{"id":324,"type":4}},"phase":1,"source":{"id":328,"type":5},"time":"1250435862","type":34}, -{"params":{"address_list":["127.0.0.1:8888"]},"phase":1,"source":{"id":328,"type":5},"time":"1250435862","type":35}, -{"params":{"address":"127.0.0.1:8888"},"phase":1,"source":{"id":328,"type":5},"time":"1250435862","type":36}, -{"phase":2,"source":{"id":328,"type":5},"time":"1250435862","type":36}, -{"params":{"source_address":"127.0.0.1:51001"},"phase":2,"source":{"id":328,"type":5},"time":"1250435862","type":35}, -{"params":{"source_dependency":{"id":328,"type":5}},"phase":0,"source":{"id":324,"type":4},"time":"1250435862","type":79}, -{"phase":2,"source":{"id":324,"type":4},"time":"1250435863","type":78}, -{"phase":2,"source":{"id":324,"type":4},"time":"1250435863","type":77}, -{"params":{"source_dependency":{"id":324,"type":4}},"phase":0,"source":{"id":320,"type":12},"time":"1250435863","type":88}, -{"params":{"source_dependency":{"id":328,"type":5}},"phase":0,"source":{"id":320,"type":12},"time":"1250435863","type":89}, -{"phase":2,"source":{"id":320,"type":12},"time":"1250435863","type":81}, -{"params":{"source_dependency":{"id":320,"type":12}},"phase":1,"source":{"id":328,"type":5},"time":"1250435863","type":38}, -{"params":{"source_dependency":{"id":320,"type":12}},"phase":0,"source":{"id":318,"type":1},"time":"1250435863","type":122}, -{"params":{"source_dependency":{"id":318,"type":1}},"phase":0,"source":{"id":320,"type":12},"time":"1250435863","type":123}, -{"phase":2,"source":{"id":318,"type":1},"time":"1250435863","type":120}, -{"phase":2,"source":{"id":320,"type":12},"time":"1250435863","type":121}, -{"phase":1,"source":{"id":318,"type":1},"time":"1250435863","type":129}, -{"params":{"headers":["Host: 127.0.0.1:8888","Connection: keep-alive","User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36","Accept: */*","Accept-Encoding: gzip,deflate,sdch","Accept-Language: en-US,en;q=0.8"],"line":"GET /task HTTP/1.1\r\n"},"phase":0,"source":{"id":318,"type":1},"time":"1250435863","type":130}, -{"params":{"byte_count":266},"phase":0,"source":{"id":328,"type":5},"time":"1250435863","type":61}, -{"phase":2,"source":{"id":318,"type":1},"time":"1250435863","type":129}, -{"phase":1,"source":{"id":318,"type":1},"time":"1250435863","type":134}, -{"phase":1,"source":{"id":318,"type":1},"time":"1250435863","type":215}, -{"params":{"byte_count":161},"phase":0,"source":{"id":328,"type":5},"time":"1250435863","type":63}, -{"phase":2,"source":{"id":318,"type":1},"time":"1250435863","type":215}, -{"params":{"headers":["HTTP/1.1 200 OK","Server: wptdriver","Cache: no-cache","Pragma: no-cache","Content-Type: application/json","Content-Length: 36"]},"phase":0,"source":{"id":318,"type":1},"time":"1250435863","type":135}, -{"phase":2,"source":{"id":318,"type":1},"time":"1250435863","type":134}, -{"phase":1,"source":{"id":318,"type":1},"time":"1250435863","type":105}, -{"params":{"buf_len":172,"index":0,"offset":0,"truncate":true},"phase":1,"source":{"id":319,"type":10},"time":"1250435863","type":111}, -{"params":{"bytes_copied":172},"phase":2,"source":{"id":319,"type":10},"time":"1250435863","type":111}, -{"phase":2,"source":{"id":318,"type":1},"time":"1250435863","type":105}, -{"phase":1,"source":{"id":318,"type":1},"time":"1250435863","type":107}, -{"params":{"buf_len":0,"index":1,"offset":0,"truncate":true},"phase":1,"source":{"id":319,"type":10},"time":"1250435863","type":111}, -{"params":{"bytes_copied":0},"phase":2,"source":{"id":319,"type":10},"time":"1250435863","type":111}, -{"phase":2,"source":{"id":318,"type":1},"time":"1250435863","type":107}, -{"phase":1,"source":{"id":318,"type":1},"time":"1250435863","type":105}, -{"params":{"buf_len":0,"index":2,"offset":0,"truncate":true},"phase":1,"source":{"id":319,"type":10},"time":"1250435863","type":111}, -{"params":{"bytes_copied":0},"phase":2,"source":{"id":319,"type":10},"time":"1250435863","type":111}, -{"phase":2,"source":{"id":318,"type":1},"time":"1250435863","type":105}, -{"phase":1,"source":{"id":318,"type":1},"time":"1250435863","type":93}, -{"phase":2,"source":{"id":318,"type":1},"time":"1250435863","type":93}, -{"phase":2,"source":{"id":318,"type":1},"time":"1250435863","type":91}, -{"phase":1,"source":{"id":318,"type":1},"time":"1250435863","type":93}, -{"phase":2,"source":{"id":318,"type":1},"time":"1250435863","type":93}, -{"phase":1,"source":{"id":318,"type":1},"time":"1250435863","type":136}, -{"phase":2,"source":{"id":318,"type":1},"time":"1250435864","type":136}, -{"phase":1,"source":{"id":318,"type":1},"time":"1250435864","type":107}, -{"params":{"buf_len":36,"index":1,"offset":0,"truncate":true},"phase":1,"source":{"id":319,"type":10},"time":"1250435864","type":111}, -{"params":{"bytes_copied":36},"phase":2,"source":{"id":319,"type":10},"time":"1250435864","type":111}, -{"phase":2,"source":{"id":318,"type":1},"time":"1250435864","type":107}, -{"phase":1,"source":{"id":318,"type":1},"time":"1250435864","type":136}, -{"phase":2,"source":{"id":328,"type":5},"time":"1250435864","type":38}, -{"phase":0,"source":{"id":328,"type":5},"time":"1250435864","type":67}, -{"phase":2,"source":{"id":328,"type":5},"time":"1250435864","type":34}, -{"phase":2,"source":{"id":318,"type":1},"time":"1250435864","type":136}, -{"phase":1,"source":{"id":318,"type":1},"time":"1250435864","type":107}, -{"phase":2,"source":{"id":318,"type":1},"time":"1250435864","type":107}, -{"phase":2,"source":{"id":318,"type":1},"time":"1250435864","type":2}, -{"phase":0,"source":{"id":319,"type":10},"time":"1250435864","type":118}, -{"phase":2,"source":{"id":319,"type":10},"time":"1250435864","type":108}, -{"phase":1,"source":{"id":329,"type":1},"time":"1250436861","type":2}, -{"phase":1,"source":{"id":329,"type":1},"time":"1250436861","type":93}, -{"phase":2,"source":{"id":329,"type":1},"time":"1250436862","type":93}, -{"params":{"load_flags":131328,"method":"GET","priority":"LOW","url":"http://127.0.0.1:8888/task"},"phase":1,"source":{"id":329,"type":1},"time":"1250436862","type":91}, -{"phase":1,"source":{"id":329,"type":1},"time":"1250436862","type":93}, -{"phase":2,"source":{"id":329,"type":1},"time":"1250436862","type":93}, -{"phase":1,"source":{"id":329,"type":1},"time":"1250436862","type":99}, -{"phase":2,"source":{"id":329,"type":1},"time":"1250436862","type":99}, -{"phase":1,"source":{"id":329,"type":1},"time":"1250436862","type":100}, -{"params":{"created":false,"key":"http://127.0.0.1:8888/task"},"phase":1,"source":{"id":330,"type":10},"time":"1250436862","type":108}, -{"phase":2,"source":{"id":329,"type":1},"time":"1250436862","type":100}, -{"phase":1,"source":{"id":329,"type":1},"time":"1250436862","type":102}, -{"phase":2,"source":{"id":329,"type":1},"time":"1250436862","type":102}, -{"phase":1,"source":{"id":329,"type":1},"time":"1250436862","type":104}, -{"params":{"buf_len":172,"index":0,"offset":0},"phase":1,"source":{"id":330,"type":10},"time":"1250436862","type":110}, -{"params":{"bytes_copied":172},"phase":2,"source":{"id":330,"type":10},"time":"1250436862","type":110}, -{"phase":2,"source":{"id":329,"type":1},"time":"1250436862","type":104}, -{"phase":1,"source":{"id":329,"type":1},"time":"1250436862","type":93}, -{"phase":2,"source":{"id":329,"type":1},"time":"1250436862","type":93}, -{"phase":1,"source":{"id":329,"type":1},"time":"1250436862","type":120}, -{"params":{"original_url":"http://127.0.0.1:8888/","priority":"LOW","url":"http://127.0.0.1:8888/"},"phase":1,"source":{"id":331,"type":12},"time":"1250436862","type":121}, -{"phase":1,"source":{"id":331,"type":12},"time":"1250436862","type":24}, -{"params":{"pac_string":"DIRECT"},"phase":0,"source":{"id":331,"type":12},"time":"1250436862","type":26}, -{"phase":2,"source":{"id":331,"type":12},"time":"1250436862","type":24}, -{"params":{"source_dependency":{"id":332,"type":8}},"phase":1,"source":{"id":331,"type":12},"time":"1250436862","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":331,"type":12}},"phase":1,"source":{"id":332,"type":8},"time":"1250436862","type":4}, -{"params":{"source_dependency":{"id":332,"type":8}},"phase":1,"source":{"id":333,"type":20},"time":"1250436862","type":303}, -{"params":{"source_dependency":{"id":333,"type":20}},"phase":1,"source":{"id":334,"type":14},"time":"1250436862","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":334,"type":14},"time":"1250436862","type":71}, -{"phase":2,"source":{"id":334,"type":14},"time":"1250436863","type":71}, -{"params":{"address":"[::ffff:2001:0]:57797"},"phase":0,"source":{"id":334,"type":14},"time":"1250436863","type":72}, -{"phase":2,"source":{"id":334,"type":14},"time":"1250436863","type":34}, -{"phase":2,"source":{"id":333,"type":20},"time":"1250436863","type":303}, -{"phase":0,"source":{"id":332,"type":8},"time":"1250436863","type":5}, -{"phase":2,"source":{"id":332,"type":8},"time":"1250436863","type":4}, -{"phase":2,"source":{"id":331,"type":12},"time":"1250436863","type":3}, -{"params":{"host_and_port":"127.0.0.1:8888"},"phase":0,"source":{"id":331,"type":12},"time":"1250436863","type":85}, -{"phase":1,"source":{"id":331,"type":12},"time":"1250436863","type":81}, -{"params":{"group_name":"127.0.0.1:8888"},"phase":1,"source":{"id":335,"type":4},"time":"1250436863","type":77}, -{"phase":1,"source":{"id":335,"type":4},"time":"1250436863","type":78}, -{"params":{"source_dependency":{"id":336,"type":8}},"phase":1,"source":{"id":335,"type":4},"time":"1250436863","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":335,"type":4}},"phase":1,"source":{"id":336,"type":8},"time":"1250436863","type":4}, -{"params":{"source_dependency":{"id":336,"type":8}},"phase":1,"source":{"id":337,"type":20},"time":"1250436863","type":303}, -{"params":{"source_dependency":{"id":337,"type":20}},"phase":1,"source":{"id":338,"type":14},"time":"1250436863","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":338,"type":14},"time":"1250436863","type":71}, -{"phase":2,"source":{"id":338,"type":14},"time":"1250436863","type":71}, -{"params":{"address":"[::ffff:2001:0]:57798"},"phase":0,"source":{"id":338,"type":14},"time":"1250436863","type":72}, -{"phase":2,"source":{"id":338,"type":14},"time":"1250436863","type":34}, -{"phase":2,"source":{"id":337,"type":20},"time":"1250436863","type":303}, -{"phase":0,"source":{"id":336,"type":8},"time":"1250436863","type":5}, -{"phase":2,"source":{"id":336,"type":8},"time":"1250436863","type":4}, -{"phase":2,"source":{"id":335,"type":4},"time":"1250436863","type":3}, -{"params":{"source_dependency":{"id":335,"type":4}},"phase":1,"source":{"id":339,"type":5},"time":"1250436863","type":34}, -{"params":{"address_list":["127.0.0.1:8888"]},"phase":1,"source":{"id":339,"type":5},"time":"1250436863","type":35}, -{"params":{"address":"127.0.0.1:8888"},"phase":1,"source":{"id":339,"type":5},"time":"1250436863","type":36}, -{"phase":2,"source":{"id":339,"type":5},"time":"1250436863","type":36}, -{"params":{"source_address":"127.0.0.1:51002"},"phase":2,"source":{"id":339,"type":5},"time":"1250436863","type":35}, -{"params":{"source_dependency":{"id":339,"type":5}},"phase":0,"source":{"id":335,"type":4},"time":"1250436863","type":79}, -{"phase":2,"source":{"id":335,"type":4},"time":"1250436863","type":78}, -{"phase":2,"source":{"id":335,"type":4},"time":"1250436863","type":77}, -{"params":{"source_dependency":{"id":335,"type":4}},"phase":0,"source":{"id":331,"type":12},"time":"1250436863","type":88}, -{"params":{"source_dependency":{"id":339,"type":5}},"phase":0,"source":{"id":331,"type":12},"time":"1250436863","type":89}, -{"phase":2,"source":{"id":331,"type":12},"time":"1250436863","type":81}, -{"params":{"source_dependency":{"id":331,"type":12}},"phase":1,"source":{"id":339,"type":5},"time":"1250436863","type":38}, -{"params":{"source_dependency":{"id":331,"type":12}},"phase":0,"source":{"id":329,"type":1},"time":"1250436863","type":122}, -{"params":{"source_dependency":{"id":329,"type":1}},"phase":0,"source":{"id":331,"type":12},"time":"1250436863","type":123}, -{"phase":2,"source":{"id":329,"type":1},"time":"1250436863","type":120}, -{"phase":2,"source":{"id":331,"type":12},"time":"1250436863","type":121}, -{"phase":1,"source":{"id":329,"type":1},"time":"1250436863","type":129}, -{"params":{"headers":["Host: 127.0.0.1:8888","Connection: keep-alive","User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36","Accept: */*","Accept-Encoding: gzip,deflate,sdch","Accept-Language: en-US,en;q=0.8"],"line":"GET /task HTTP/1.1\r\n"},"phase":0,"source":{"id":329,"type":1},"time":"1250436864","type":130}, -{"params":{"byte_count":266},"phase":0,"source":{"id":339,"type":5},"time":"1250436864","type":61}, -{"phase":2,"source":{"id":329,"type":1},"time":"1250436864","type":129}, -{"phase":1,"source":{"id":329,"type":1},"time":"1250436864","type":134}, -{"phase":1,"source":{"id":329,"type":1},"time":"1250436864","type":215}, -{"params":{"byte_count":209},"phase":0,"source":{"id":339,"type":5},"time":"1250436864","type":63}, -{"phase":2,"source":{"id":329,"type":1},"time":"1250436864","type":215}, -{"params":{"headers":["HTTP/1.1 200 OK","Server: wptdriver","Cache: no-cache","Pragma: no-cache","Content-Type: application/json","Content-Length: 84"]},"phase":0,"source":{"id":329,"type":1},"time":"1250436864","type":135}, -{"phase":2,"source":{"id":329,"type":1},"time":"1250436864","type":134}, -{"phase":1,"source":{"id":329,"type":1},"time":"1250436864","type":105}, -{"params":{"buf_len":172,"index":0,"offset":0,"truncate":true},"phase":1,"source":{"id":330,"type":10},"time":"1250436864","type":111}, -{"params":{"bytes_copied":172},"phase":2,"source":{"id":330,"type":10},"time":"1250436864","type":111}, -{"phase":2,"source":{"id":329,"type":1},"time":"1250436864","type":105}, -{"phase":1,"source":{"id":329,"type":1},"time":"1250436864","type":107}, -{"params":{"buf_len":0,"index":1,"offset":0,"truncate":true},"phase":1,"source":{"id":330,"type":10},"time":"1250436864","type":111}, -{"params":{"bytes_copied":0},"phase":2,"source":{"id":330,"type":10},"time":"1250436864","type":111}, -{"phase":2,"source":{"id":329,"type":1},"time":"1250436864","type":107}, -{"phase":1,"source":{"id":329,"type":1},"time":"1250436864","type":105}, -{"params":{"buf_len":0,"index":2,"offset":0,"truncate":true},"phase":1,"source":{"id":330,"type":10},"time":"1250436864","type":111}, -{"params":{"bytes_copied":0},"phase":2,"source":{"id":330,"type":10},"time":"1250436864","type":111}, -{"phase":2,"source":{"id":329,"type":1},"time":"1250436864","type":105}, -{"phase":1,"source":{"id":329,"type":1},"time":"1250436864","type":93}, -{"phase":2,"source":{"id":329,"type":1},"time":"1250436864","type":93}, -{"phase":2,"source":{"id":329,"type":1},"time":"1250436864","type":91}, -{"phase":1,"source":{"id":329,"type":1},"time":"1250436864","type":93}, -{"phase":2,"source":{"id":329,"type":1},"time":"1250436864","type":93}, -{"phase":1,"source":{"id":329,"type":1},"time":"1250436864","type":136}, -{"phase":2,"source":{"id":329,"type":1},"time":"1250436864","type":136}, -{"phase":1,"source":{"id":329,"type":1},"time":"1250436864","type":107}, -{"params":{"buf_len":84,"index":1,"offset":0,"truncate":true},"phase":1,"source":{"id":330,"type":10},"time":"1250436864","type":111}, -{"params":{"bytes_copied":84},"phase":2,"source":{"id":330,"type":10},"time":"1250436865","type":111}, -{"phase":2,"source":{"id":329,"type":1},"time":"1250436865","type":107}, -{"phase":1,"source":{"id":329,"type":1},"time":"1250436865","type":136}, -{"phase":2,"source":{"id":339,"type":5},"time":"1250436865","type":38}, -{"phase":0,"source":{"id":339,"type":5},"time":"1250436865","type":67}, -{"phase":2,"source":{"id":339,"type":5},"time":"1250436865","type":34}, -{"phase":2,"source":{"id":329,"type":1},"time":"1250436865","type":136}, -{"phase":1,"source":{"id":329,"type":1},"time":"1250436865","type":107}, -{"phase":2,"source":{"id":329,"type":1},"time":"1250436865","type":107}, -{"phase":2,"source":{"id":329,"type":1},"time":"1250436865","type":2}, -{"phase":0,"source":{"id":330,"type":10},"time":"1250436865","type":118}, -{"phase":2,"source":{"id":330,"type":10},"time":"1250436865","type":108}, -{"phase":1,"source":{"id":340,"type":1},"time":"1250436880","type":2}, -{"phase":1,"source":{"id":340,"type":1},"time":"1250436880","type":93}, -{"phase":2,"source":{"id":340,"type":1},"time":"1250436880","type":93}, -{"params":{"load_flags":131328,"method":"POST","priority":"LOW","url":"http://127.0.0.1:8888/event/stats?domCount=10"},"phase":1,"source":{"id":340,"type":1},"time":"1250436880","type":91}, -{"phase":1,"source":{"id":340,"type":1},"time":"1250436881","type":93}, -{"phase":2,"source":{"id":340,"type":1},"time":"1250436881","type":93}, -{"phase":1,"source":{"id":340,"type":1},"time":"1250436881","type":99}, -{"phase":2,"source":{"id":340,"type":1},"time":"1250436881","type":99}, -{"phase":1,"source":{"id":340,"type":1},"time":"1250436881","type":93}, -{"phase":2,"source":{"id":340,"type":1},"time":"1250436881","type":93}, -{"phase":1,"source":{"id":340,"type":1},"time":"1250436881","type":120}, -{"params":{"original_url":"http://127.0.0.1:8888/","priority":"LOW","url":"http://127.0.0.1:8888/"},"phase":1,"source":{"id":342,"type":12},"time":"1250436881","type":121}, -{"phase":1,"source":{"id":342,"type":12},"time":"1250436881","type":24}, -{"params":{"pac_string":"DIRECT"},"phase":0,"source":{"id":342,"type":12},"time":"1250436881","type":26}, -{"phase":2,"source":{"id":342,"type":12},"time":"1250436881","type":24}, -{"params":{"source_dependency":{"id":343,"type":8}},"phase":1,"source":{"id":342,"type":12},"time":"1250436881","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":342,"type":12}},"phase":1,"source":{"id":343,"type":8},"time":"1250436881","type":4}, -{"params":{"source_dependency":{"id":343,"type":8}},"phase":1,"source":{"id":344,"type":20},"time":"1250436881","type":303}, -{"params":{"source_dependency":{"id":344,"type":20}},"phase":1,"source":{"id":345,"type":14},"time":"1250436881","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":345,"type":14},"time":"1250436881","type":71}, -{"phase":2,"source":{"id":345,"type":14},"time":"1250436881","type":71}, -{"params":{"address":"[::ffff:2001:0]:57799"},"phase":0,"source":{"id":345,"type":14},"time":"1250436881","type":72}, -{"phase":2,"source":{"id":345,"type":14},"time":"1250436881","type":34}, -{"phase":2,"source":{"id":344,"type":20},"time":"1250436881","type":303}, -{"phase":0,"source":{"id":343,"type":8},"time":"1250436881","type":5}, -{"phase":2,"source":{"id":343,"type":8},"time":"1250436881","type":4}, -{"phase":2,"source":{"id":342,"type":12},"time":"1250436881","type":3}, -{"params":{"host_and_port":"127.0.0.1:8888"},"phase":0,"source":{"id":342,"type":12},"time":"1250436881","type":85}, -{"phase":1,"source":{"id":342,"type":12},"time":"1250436881","type":81}, -{"params":{"group_name":"127.0.0.1:8888"},"phase":1,"source":{"id":346,"type":4},"time":"1250436881","type":77}, -{"phase":1,"source":{"id":346,"type":4},"time":"1250436881","type":78}, -{"params":{"source_dependency":{"id":347,"type":8}},"phase":1,"source":{"id":346,"type":4},"time":"1250436881","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":346,"type":4}},"phase":1,"source":{"id":347,"type":8},"time":"1250436881","type":4}, -{"params":{"source_dependency":{"id":347,"type":8}},"phase":1,"source":{"id":348,"type":20},"time":"1250436881","type":303}, -{"params":{"source_dependency":{"id":348,"type":20}},"phase":1,"source":{"id":349,"type":14},"time":"1250436881","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":349,"type":14},"time":"1250436881","type":71}, -{"phase":2,"source":{"id":349,"type":14},"time":"1250436881","type":71}, -{"params":{"address":"[::ffff:2001:0]:57800"},"phase":0,"source":{"id":349,"type":14},"time":"1250436881","type":72}, -{"phase":2,"source":{"id":349,"type":14},"time":"1250436881","type":34}, -{"phase":2,"source":{"id":348,"type":20},"time":"1250436881","type":303}, -{"phase":0,"source":{"id":347,"type":8},"time":"1250436881","type":5}, -{"phase":2,"source":{"id":347,"type":8},"time":"1250436881","type":4}, -{"phase":2,"source":{"id":346,"type":4},"time":"1250436881","type":3}, -{"params":{"source_dependency":{"id":346,"type":4}},"phase":1,"source":{"id":350,"type":5},"time":"1250436881","type":34}, -{"params":{"address_list":["127.0.0.1:8888"]},"phase":1,"source":{"id":350,"type":5},"time":"1250436881","type":35}, -{"params":{"address":"127.0.0.1:8888"},"phase":1,"source":{"id":350,"type":5},"time":"1250436881","type":36}, -{"phase":2,"source":{"id":350,"type":5},"time":"1250436882","type":36}, -{"params":{"source_address":"127.0.0.1:51003"},"phase":2,"source":{"id":350,"type":5},"time":"1250436882","type":35}, -{"params":{"source_dependency":{"id":350,"type":5}},"phase":0,"source":{"id":346,"type":4},"time":"1250436882","type":79}, -{"phase":2,"source":{"id":346,"type":4},"time":"1250436882","type":78}, -{"phase":2,"source":{"id":346,"type":4},"time":"1250436882","type":77}, -{"params":{"source_dependency":{"id":346,"type":4}},"phase":0,"source":{"id":342,"type":12},"time":"1250436882","type":88}, -{"params":{"source_dependency":{"id":350,"type":5}},"phase":0,"source":{"id":342,"type":12},"time":"1250436882","type":89}, -{"phase":2,"source":{"id":342,"type":12},"time":"1250436882","type":81}, -{"params":{"source_dependency":{"id":342,"type":12}},"phase":1,"source":{"id":350,"type":5},"time":"1250436882","type":38}, -{"params":{"source_dependency":{"id":342,"type":12}},"phase":0,"source":{"id":340,"type":1},"time":"1250436882","type":122}, -{"params":{"source_dependency":{"id":340,"type":1}},"phase":0,"source":{"id":342,"type":12},"time":"1250436882","type":123}, -{"phase":2,"source":{"id":340,"type":1},"time":"1250436882","type":120}, -{"phase":2,"source":{"id":342,"type":12},"time":"1250436882","type":121}, -{"phase":1,"source":{"id":340,"type":1},"time":"1250436882","type":129}, -{"params":{"headers":["Host: 127.0.0.1:8888","Connection: keep-alive","Content-Length: 0","User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36","Origin: chrome-extension://ejfgipfkkpdadoidbhfedneaabgolbno","Accept: */*","Accept-Encoding: gzip,deflate","Accept-Language: en-US,en;q=0.8"],"line":"POST /event/stats?domCount=10 HTTP/1.1\r\n"},"phase":0,"source":{"id":340,"type":1},"time":"1250436882","type":130}, -{"params":{"byte_count":361},"phase":0,"source":{"id":350,"type":5},"time":"1250436882","type":61}, -{"phase":2,"source":{"id":340,"type":1},"time":"1250436882","type":129}, -{"phase":1,"source":{"id":340,"type":1},"time":"1250436882","type":134}, -{"phase":1,"source":{"id":340,"type":1},"time":"1250436882","type":215}, -{"params":{"byte_count":161},"phase":0,"source":{"id":350,"type":5},"time":"1250436882","type":63}, -{"phase":2,"source":{"id":340,"type":1},"time":"1250436882","type":215}, -{"params":{"headers":["HTTP/1.1 200 OK","Server: wptdriver","Cache: no-cache","Pragma: no-cache","Content-Type: application/json","Content-Length: 36"]},"phase":0,"source":{"id":340,"type":1},"time":"1250436882","type":135}, -{"phase":2,"source":{"id":340,"type":1},"time":"1250436882","type":134}, -{"phase":1,"source":{"id":340,"type":1},"time":"1250436882","type":93}, -{"phase":2,"source":{"id":340,"type":1},"time":"1250436882","type":93}, -{"phase":2,"source":{"id":340,"type":1},"time":"1250436882","type":91}, -{"phase":1,"source":{"id":340,"type":1},"time":"1250436882","type":93}, -{"phase":2,"source":{"id":340,"type":1},"time":"1250436883","type":93}, -{"phase":1,"source":{"id":340,"type":1},"time":"1250436883","type":136}, -{"phase":2,"source":{"id":340,"type":1},"time":"1250436883","type":136}, -{"phase":1,"source":{"id":340,"type":1},"time":"1250436883","type":136}, -{"phase":2,"source":{"id":350,"type":5},"time":"1250436883","type":38}, -{"phase":0,"source":{"id":350,"type":5},"time":"1250436883","type":67}, -{"phase":2,"source":{"id":350,"type":5},"time":"1250436883","type":34}, -{"phase":2,"source":{"id":340,"type":1},"time":"1250436883","type":136}, -{"phase":2,"source":{"id":340,"type":1},"time":"1250436883","type":2}, -{"phase":1,"source":{"id":351,"type":1},"time":"1250436888","type":2}, -{"phase":1,"source":{"id":351,"type":1},"time":"1250436888","type":93}, -{"phase":2,"source":{"id":351,"type":1},"time":"1250436888","type":93}, -{"params":{"load_flags":131328,"method":"POST","priority":"LOW","url":"http://127.0.0.1:8888/event/window_timing?domContentLoadedEventStart=318&domContentLoadedEventEnd=318&loadEventStart=319&loadEventEnd=342&msFirstPaint=414.5359992980957"},"phase":1,"source":{"id":351,"type":1},"time":"1250436888","type":91}, -{"phase":1,"source":{"id":351,"type":1},"time":"1250436888","type":93}, -{"phase":2,"source":{"id":351,"type":1},"time":"1250436888","type":93}, -{"phase":1,"source":{"id":351,"type":1},"time":"1250436888","type":99}, -{"phase":2,"source":{"id":351,"type":1},"time":"1250436888","type":99}, -{"phase":1,"source":{"id":351,"type":1},"time":"1250436888","type":93}, -{"phase":2,"source":{"id":351,"type":1},"time":"1250436888","type":93}, -{"phase":1,"source":{"id":351,"type":1},"time":"1250436888","type":120}, -{"params":{"original_url":"http://127.0.0.1:8888/","priority":"LOW","url":"http://127.0.0.1:8888/"},"phase":1,"source":{"id":353,"type":12},"time":"1250436888","type":121}, -{"phase":1,"source":{"id":353,"type":12},"time":"1250436889","type":24}, -{"params":{"pac_string":"DIRECT"},"phase":0,"source":{"id":353,"type":12},"time":"1250436889","type":26}, -{"phase":2,"source":{"id":353,"type":12},"time":"1250436889","type":24}, -{"params":{"source_dependency":{"id":354,"type":8}},"phase":1,"source":{"id":353,"type":12},"time":"1250436889","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":353,"type":12}},"phase":1,"source":{"id":354,"type":8},"time":"1250436889","type":4}, -{"params":{"source_dependency":{"id":354,"type":8}},"phase":1,"source":{"id":355,"type":20},"time":"1250436889","type":303}, -{"params":{"source_dependency":{"id":355,"type":20}},"phase":1,"source":{"id":356,"type":14},"time":"1250436889","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":356,"type":14},"time":"1250436889","type":71}, -{"phase":2,"source":{"id":356,"type":14},"time":"1250436889","type":71}, -{"params":{"address":"[::ffff:2001:0]:57801"},"phase":0,"source":{"id":356,"type":14},"time":"1250436889","type":72}, -{"phase":2,"source":{"id":356,"type":14},"time":"1250436889","type":34}, -{"phase":2,"source":{"id":355,"type":20},"time":"1250436889","type":303}, -{"phase":0,"source":{"id":354,"type":8},"time":"1250436889","type":5}, -{"phase":2,"source":{"id":354,"type":8},"time":"1250436889","type":4}, -{"phase":2,"source":{"id":353,"type":12},"time":"1250436889","type":3}, -{"params":{"host_and_port":"127.0.0.1:8888"},"phase":0,"source":{"id":353,"type":12},"time":"1250436889","type":85}, -{"phase":1,"source":{"id":353,"type":12},"time":"1250436889","type":81}, -{"params":{"group_name":"127.0.0.1:8888"},"phase":1,"source":{"id":357,"type":4},"time":"1250436889","type":77}, -{"phase":1,"source":{"id":357,"type":4},"time":"1250436889","type":78}, -{"params":{"source_dependency":{"id":358,"type":8}},"phase":1,"source":{"id":357,"type":4},"time":"1250436889","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":357,"type":4}},"phase":1,"source":{"id":358,"type":8},"time":"1250436889","type":4}, -{"params":{"source_dependency":{"id":358,"type":8}},"phase":1,"source":{"id":359,"type":20},"time":"1250436889","type":303}, -{"params":{"source_dependency":{"id":359,"type":20}},"phase":1,"source":{"id":360,"type":14},"time":"1250436889","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":360,"type":14},"time":"1250436889","type":71}, -{"phase":2,"source":{"id":360,"type":14},"time":"1250436889","type":71}, -{"params":{"address":"[::ffff:2001:0]:57802"},"phase":0,"source":{"id":360,"type":14},"time":"1250436889","type":72}, -{"phase":2,"source":{"id":360,"type":14},"time":"1250436889","type":34}, -{"phase":2,"source":{"id":359,"type":20},"time":"1250436889","type":303}, -{"phase":0,"source":{"id":358,"type":8},"time":"1250436889","type":5}, -{"phase":2,"source":{"id":358,"type":8},"time":"1250436889","type":4}, -{"phase":2,"source":{"id":357,"type":4},"time":"1250436889","type":3}, -{"params":{"source_dependency":{"id":357,"type":4}},"phase":1,"source":{"id":361,"type":5},"time":"1250436889","type":34}, -{"params":{"address_list":["127.0.0.1:8888"]},"phase":1,"source":{"id":361,"type":5},"time":"1250436889","type":35}, -{"params":{"address":"127.0.0.1:8888"},"phase":1,"source":{"id":361,"type":5},"time":"1250436889","type":36}, -{"phase":2,"source":{"id":361,"type":5},"time":"1250436890","type":36}, -{"params":{"source_address":"127.0.0.1:51004"},"phase":2,"source":{"id":361,"type":5},"time":"1250436890","type":35}, -{"params":{"source_dependency":{"id":361,"type":5}},"phase":0,"source":{"id":357,"type":4},"time":"1250436890","type":79}, -{"phase":2,"source":{"id":357,"type":4},"time":"1250436890","type":78}, -{"phase":2,"source":{"id":357,"type":4},"time":"1250436890","type":77}, -{"params":{"source_dependency":{"id":357,"type":4}},"phase":0,"source":{"id":353,"type":12},"time":"1250436890","type":88}, -{"params":{"source_dependency":{"id":361,"type":5}},"phase":0,"source":{"id":353,"type":12},"time":"1250436890","type":89}, -{"phase":2,"source":{"id":353,"type":12},"time":"1250436890","type":81}, -{"params":{"source_dependency":{"id":353,"type":12}},"phase":1,"source":{"id":361,"type":5},"time":"1250436890","type":38}, -{"params":{"source_dependency":{"id":353,"type":12}},"phase":0,"source":{"id":351,"type":1},"time":"1250436890","type":122}, -{"params":{"source_dependency":{"id":351,"type":1}},"phase":0,"source":{"id":353,"type":12},"time":"1250436890","type":123}, -{"phase":2,"source":{"id":351,"type":1},"time":"1250436890","type":120}, -{"phase":2,"source":{"id":353,"type":12},"time":"1250436890","type":121}, -{"phase":1,"source":{"id":351,"type":1},"time":"1250436890","type":129}, -{"params":{"headers":["Host: 127.0.0.1:8888","Connection: keep-alive","Content-Length: 0","User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36","Origin: chrome-extension://ejfgipfkkpdadoidbhfedneaabgolbno","Accept: */*","Accept-Encoding: gzip,deflate","Accept-Language: en-US,en;q=0.8"],"line":"POST /event/window_timing?domContentLoadedEventStart=318&domContentLoadedEventEnd=318&loadEventStart=319&loadEventEnd=342&msFirstPaint=414.5359992980957 HTTP/1.1\r\n"},"phase":0,"source":{"id":351,"type":1},"time":"1250436890","type":130}, -{"params":{"byte_count":484},"phase":0,"source":{"id":361,"type":5},"time":"1250436890","type":61}, -{"phase":2,"source":{"id":351,"type":1},"time":"1250436890","type":129}, -{"phase":1,"source":{"id":351,"type":1},"time":"1250436890","type":134}, -{"phase":1,"source":{"id":351,"type":1},"time":"1250436890","type":215}, -{"params":{"byte_count":161},"phase":0,"source":{"id":361,"type":5},"time":"1250436890","type":63}, -{"phase":2,"source":{"id":351,"type":1},"time":"1250436890","type":215}, -{"params":{"headers":["HTTP/1.1 200 OK","Server: wptdriver","Cache: no-cache","Pragma: no-cache","Content-Type: application/json","Content-Length: 36"]},"phase":0,"source":{"id":351,"type":1},"time":"1250436890","type":135}, -{"phase":2,"source":{"id":351,"type":1},"time":"1250436891","type":134}, -{"phase":1,"source":{"id":351,"type":1},"time":"1250436891","type":93}, -{"phase":2,"source":{"id":351,"type":1},"time":"1250436891","type":93}, -{"phase":2,"source":{"id":351,"type":1},"time":"1250436891","type":91}, -{"phase":1,"source":{"id":351,"type":1},"time":"1250436891","type":93}, -{"phase":2,"source":{"id":351,"type":1},"time":"1250436891","type":93}, -{"phase":1,"source":{"id":351,"type":1},"time":"1250436891","type":136}, -{"phase":2,"source":{"id":351,"type":1},"time":"1250436891","type":136}, -{"phase":1,"source":{"id":351,"type":1},"time":"1250436891","type":136}, -{"phase":2,"source":{"id":361,"type":5},"time":"1250436891","type":38}, -{"phase":0,"source":{"id":361,"type":5},"time":"1250436891","type":67}, -{"phase":2,"source":{"id":361,"type":5},"time":"1250436891","type":34}, -{"phase":2,"source":{"id":351,"type":1},"time":"1250436891","type":136}, -{"phase":2,"source":{"id":351,"type":1},"time":"1250436891","type":2}, -{"phase":1,"source":{"id":362,"type":1},"time":"1250436896","type":2}, -{"phase":1,"source":{"id":362,"type":1},"time":"1250436896","type":93}, -{"phase":2,"source":{"id":362,"type":1},"time":"1250436896","type":93}, -{"params":{"load_flags":131328,"method":"GET","priority":"LOW","url":"http://127.0.0.1:8888/task"},"phase":1,"source":{"id":362,"type":1},"time":"1250436896","type":91}, -{"phase":1,"source":{"id":362,"type":1},"time":"1250436896","type":93}, -{"phase":2,"source":{"id":362,"type":1},"time":"1250436896","type":93}, -{"phase":1,"source":{"id":362,"type":1},"time":"1250436896","type":99}, -{"phase":2,"source":{"id":362,"type":1},"time":"1250436896","type":99}, -{"phase":1,"source":{"id":362,"type":1},"time":"1250436896","type":100}, -{"params":{"created":false,"key":"http://127.0.0.1:8888/task"},"phase":1,"source":{"id":363,"type":10},"time":"1250436896","type":108}, -{"phase":2,"source":{"id":362,"type":1},"time":"1250436897","type":100}, -{"phase":1,"source":{"id":362,"type":1},"time":"1250436897","type":102}, -{"phase":2,"source":{"id":362,"type":1},"time":"1250436897","type":102}, -{"phase":1,"source":{"id":362,"type":1},"time":"1250436897","type":104}, -{"params":{"buf_len":172,"index":0,"offset":0},"phase":1,"source":{"id":363,"type":10},"time":"1250436897","type":110}, -{"params":{"bytes_copied":172},"phase":2,"source":{"id":363,"type":10},"time":"1250436897","type":110}, -{"phase":2,"source":{"id":362,"type":1},"time":"1250436897","type":104}, -{"phase":1,"source":{"id":362,"type":1},"time":"1250436897","type":93}, -{"phase":2,"source":{"id":362,"type":1},"time":"1250436897","type":93}, -{"phase":1,"source":{"id":362,"type":1},"time":"1250436897","type":120}, -{"params":{"original_url":"http://127.0.0.1:8888/","priority":"LOW","url":"http://127.0.0.1:8888/"},"phase":1,"source":{"id":364,"type":12},"time":"1250436897","type":121}, -{"phase":1,"source":{"id":364,"type":12},"time":"1250436897","type":24}, -{"params":{"pac_string":"DIRECT"},"phase":0,"source":{"id":364,"type":12},"time":"1250436897","type":26}, -{"phase":2,"source":{"id":364,"type":12},"time":"1250436897","type":24}, -{"params":{"source_dependency":{"id":365,"type":8}},"phase":1,"source":{"id":364,"type":12},"time":"1250436897","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":364,"type":12}},"phase":1,"source":{"id":365,"type":8},"time":"1250436897","type":4}, -{"params":{"source_dependency":{"id":365,"type":8}},"phase":1,"source":{"id":366,"type":20},"time":"1250436897","type":303}, -{"params":{"source_dependency":{"id":366,"type":20}},"phase":1,"source":{"id":367,"type":14},"time":"1250436897","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":367,"type":14},"time":"1250436897","type":71}, -{"phase":2,"source":{"id":367,"type":14},"time":"1250436897","type":71}, -{"params":{"address":"[::ffff:2001:0]:57803"},"phase":0,"source":{"id":367,"type":14},"time":"1250436897","type":72}, -{"phase":2,"source":{"id":367,"type":14},"time":"1250436897","type":34}, -{"phase":2,"source":{"id":366,"type":20},"time":"1250436897","type":303}, -{"phase":0,"source":{"id":365,"type":8},"time":"1250436897","type":5}, -{"phase":2,"source":{"id":365,"type":8},"time":"1250436897","type":4}, -{"phase":2,"source":{"id":364,"type":12},"time":"1250436897","type":3}, -{"params":{"host_and_port":"127.0.0.1:8888"},"phase":0,"source":{"id":364,"type":12},"time":"1250436897","type":85}, -{"phase":1,"source":{"id":364,"type":12},"time":"1250436897","type":81}, -{"params":{"group_name":"127.0.0.1:8888"},"phase":1,"source":{"id":368,"type":4},"time":"1250436897","type":77}, -{"phase":1,"source":{"id":368,"type":4},"time":"1250436897","type":78}, -{"params":{"source_dependency":{"id":369,"type":8}},"phase":1,"source":{"id":368,"type":4},"time":"1250436897","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":368,"type":4}},"phase":1,"source":{"id":369,"type":8},"time":"1250436897","type":4}, -{"params":{"source_dependency":{"id":369,"type":8}},"phase":1,"source":{"id":370,"type":20},"time":"1250436897","type":303}, -{"params":{"source_dependency":{"id":370,"type":20}},"phase":1,"source":{"id":371,"type":14},"time":"1250436897","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":371,"type":14},"time":"1250436897","type":71}, -{"phase":2,"source":{"id":371,"type":14},"time":"1250436897","type":71}, -{"params":{"address":"[::ffff:2001:0]:57804"},"phase":0,"source":{"id":371,"type":14},"time":"1250436897","type":72}, -{"phase":2,"source":{"id":371,"type":14},"time":"1250436897","type":34}, -{"phase":2,"source":{"id":370,"type":20},"time":"1250436897","type":303}, -{"phase":0,"source":{"id":369,"type":8},"time":"1250436897","type":5}, -{"phase":2,"source":{"id":369,"type":8},"time":"1250436897","type":4}, -{"phase":2,"source":{"id":368,"type":4},"time":"1250436897","type":3}, -{"params":{"source_dependency":{"id":368,"type":4}},"phase":1,"source":{"id":372,"type":5},"time":"1250436897","type":34}, -{"params":{"address_list":["127.0.0.1:8888"]},"phase":1,"source":{"id":372,"type":5},"time":"1250436897","type":35}, -{"params":{"address":"127.0.0.1:8888"},"phase":1,"source":{"id":372,"type":5},"time":"1250436897","type":36}, -{"phase":2,"source":{"id":372,"type":5},"time":"1250436898","type":36}, -{"params":{"source_address":"127.0.0.1:51005"},"phase":2,"source":{"id":372,"type":5},"time":"1250436898","type":35}, -{"params":{"source_dependency":{"id":372,"type":5}},"phase":0,"source":{"id":368,"type":4},"time":"1250436898","type":79}, -{"phase":2,"source":{"id":368,"type":4},"time":"1250436898","type":78}, -{"phase":2,"source":{"id":368,"type":4},"time":"1250436898","type":77}, -{"params":{"source_dependency":{"id":368,"type":4}},"phase":0,"source":{"id":364,"type":12},"time":"1250436898","type":88}, -{"params":{"source_dependency":{"id":372,"type":5}},"phase":0,"source":{"id":364,"type":12},"time":"1250436898","type":89}, -{"phase":2,"source":{"id":364,"type":12},"time":"1250436898","type":81}, -{"params":{"source_dependency":{"id":364,"type":12}},"phase":1,"source":{"id":372,"type":5},"time":"1250436898","type":38}, -{"params":{"source_dependency":{"id":364,"type":12}},"phase":0,"source":{"id":362,"type":1},"time":"1250436898","type":122}, -{"params":{"source_dependency":{"id":362,"type":1}},"phase":0,"source":{"id":364,"type":12},"time":"1250436898","type":123}, -{"phase":2,"source":{"id":362,"type":1},"time":"1250436898","type":120}, -{"phase":2,"source":{"id":364,"type":12},"time":"1250436898","type":121}, -{"phase":1,"source":{"id":362,"type":1},"time":"1250436898","type":129}, -{"params":{"headers":["Host: 127.0.0.1:8888","Connection: keep-alive","User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36","Accept: */*","Accept-Encoding: gzip,deflate,sdch","Accept-Language: en-US,en;q=0.8"],"line":"GET /task HTTP/1.1\r\n"},"phase":0,"source":{"id":362,"type":1},"time":"1250436898","type":130}, -{"params":{"byte_count":266},"phase":0,"source":{"id":372,"type":5},"time":"1250436898","type":61}, -{"phase":2,"source":{"id":362,"type":1},"time":"1250436898","type":129}, -{"phase":1,"source":{"id":362,"type":1},"time":"1250436898","type":134}, -{"phase":1,"source":{"id":362,"type":1},"time":"1250436898","type":215}, -{"params":{"byte_count":207},"phase":0,"source":{"id":372,"type":5},"time":"1250436901","type":63}, -{"phase":2,"source":{"id":362,"type":1},"time":"1250436901","type":215}, -{"params":{"headers":["HTTP/1.1 200 OK","Server: wptdriver","Cache: no-cache","Pragma: no-cache","Content-Type: application/json","Content-Length: 82"]},"phase":0,"source":{"id":362,"type":1},"time":"1250436901","type":135}, -{"phase":2,"source":{"id":362,"type":1},"time":"1250436901","type":134}, -{"phase":1,"source":{"id":362,"type":1},"time":"1250436901","type":105}, -{"params":{"buf_len":172,"index":0,"offset":0,"truncate":true},"phase":1,"source":{"id":363,"type":10},"time":"1250436901","type":111}, -{"params":{"bytes_copied":172},"phase":2,"source":{"id":363,"type":10},"time":"1250436901","type":111}, -{"phase":2,"source":{"id":362,"type":1},"time":"1250436901","type":105}, -{"phase":1,"source":{"id":362,"type":1},"time":"1250436901","type":107}, -{"params":{"buf_len":0,"index":1,"offset":0,"truncate":true},"phase":1,"source":{"id":363,"type":10},"time":"1250436901","type":111}, -{"params":{"bytes_copied":0},"phase":2,"source":{"id":363,"type":10},"time":"1250436901","type":111}, -{"phase":2,"source":{"id":362,"type":1},"time":"1250436901","type":107}, -{"phase":1,"source":{"id":362,"type":1},"time":"1250436901","type":105}, -{"params":{"buf_len":0,"index":2,"offset":0,"truncate":true},"phase":1,"source":{"id":363,"type":10},"time":"1250436901","type":111}, -{"params":{"bytes_copied":0},"phase":2,"source":{"id":363,"type":10},"time":"1250436901","type":111}, -{"phase":2,"source":{"id":362,"type":1},"time":"1250436901","type":105}, -{"phase":1,"source":{"id":362,"type":1},"time":"1250436901","type":93}, -{"phase":2,"source":{"id":362,"type":1},"time":"1250436901","type":93}, -{"phase":2,"source":{"id":362,"type":1},"time":"1250436901","type":91}, -{"phase":1,"source":{"id":362,"type":1},"time":"1250436901","type":93}, -{"phase":2,"source":{"id":362,"type":1},"time":"1250436901","type":93}, -{"phase":1,"source":{"id":362,"type":1},"time":"1250436901","type":136}, -{"phase":2,"source":{"id":362,"type":1},"time":"1250436901","type":136}, -{"phase":1,"source":{"id":362,"type":1},"time":"1250436901","type":107}, -{"params":{"buf_len":82,"index":1,"offset":0,"truncate":true},"phase":1,"source":{"id":363,"type":10},"time":"1250436901","type":111}, -{"params":{"bytes_copied":82},"phase":2,"source":{"id":363,"type":10},"time":"1250436901","type":111}, -{"phase":2,"source":{"id":362,"type":1},"time":"1250436901","type":107}, -{"phase":1,"source":{"id":362,"type":1},"time":"1250436901","type":136}, -{"phase":2,"source":{"id":372,"type":5},"time":"1250436901","type":38}, -{"phase":0,"source":{"id":372,"type":5},"time":"1250436901","type":67}, -{"phase":2,"source":{"id":372,"type":5},"time":"1250436902","type":34}, -{"phase":2,"source":{"id":362,"type":1},"time":"1250436902","type":136}, -{"phase":1,"source":{"id":362,"type":1},"time":"1250436902","type":107}, -{"phase":2,"source":{"id":362,"type":1},"time":"1250436902","type":107}, -{"phase":2,"source":{"id":362,"type":1},"time":"1250436902","type":2}, -{"phase":0,"source":{"id":363,"type":10},"time":"1250436902","type":118}, -{"phase":2,"source":{"id":363,"type":10},"time":"1250436902","type":108}, -{"phase":1,"source":{"id":373,"type":1},"time":"1250436909","type":2}, -{"phase":1,"source":{"id":373,"type":1},"time":"1250436909","type":93}, -{"phase":2,"source":{"id":373,"type":1},"time":"1250436909","type":93}, -{"params":{"load_flags":131328,"method":"GET","priority":"LOW","url":"http://127.0.0.1:8888/task"},"phase":1,"source":{"id":373,"type":1},"time":"1250436909","type":91}, -{"phase":1,"source":{"id":373,"type":1},"time":"1250436909","type":93}, -{"phase":2,"source":{"id":373,"type":1},"time":"1250436909","type":93}, -{"phase":1,"source":{"id":373,"type":1},"time":"1250436909","type":99}, -{"phase":2,"source":{"id":373,"type":1},"time":"1250436909","type":99}, -{"phase":1,"source":{"id":373,"type":1},"time":"1250436909","type":100}, -{"params":{"created":false,"key":"http://127.0.0.1:8888/task"},"phase":1,"source":{"id":374,"type":10},"time":"1250436910","type":108}, -{"phase":2,"source":{"id":373,"type":1},"time":"1250436910","type":100}, -{"phase":1,"source":{"id":373,"type":1},"time":"1250436910","type":102}, -{"phase":2,"source":{"id":373,"type":1},"time":"1250436910","type":102}, -{"phase":1,"source":{"id":373,"type":1},"time":"1250436910","type":104}, -{"params":{"buf_len":172,"index":0,"offset":0},"phase":1,"source":{"id":374,"type":10},"time":"1250436910","type":110}, -{"params":{"bytes_copied":172},"phase":2,"source":{"id":374,"type":10},"time":"1250436910","type":110}, -{"phase":2,"source":{"id":373,"type":1},"time":"1250436910","type":104}, -{"phase":1,"source":{"id":373,"type":1},"time":"1250436910","type":93}, -{"phase":2,"source":{"id":373,"type":1},"time":"1250436910","type":93}, -{"phase":1,"source":{"id":373,"type":1},"time":"1250436910","type":120}, -{"params":{"original_url":"http://127.0.0.1:8888/","priority":"LOW","url":"http://127.0.0.1:8888/"},"phase":1,"source":{"id":375,"type":12},"time":"1250436910","type":121}, -{"phase":1,"source":{"id":375,"type":12},"time":"1250436910","type":24}, -{"params":{"pac_string":"DIRECT"},"phase":0,"source":{"id":375,"type":12},"time":"1250436910","type":26}, -{"phase":2,"source":{"id":375,"type":12},"time":"1250436910","type":24}, -{"params":{"source_dependency":{"id":376,"type":8}},"phase":1,"source":{"id":375,"type":12},"time":"1250436910","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":375,"type":12}},"phase":1,"source":{"id":376,"type":8},"time":"1250436910","type":4}, -{"params":{"source_dependency":{"id":376,"type":8}},"phase":1,"source":{"id":377,"type":20},"time":"1250436910","type":303}, -{"params":{"source_dependency":{"id":377,"type":20}},"phase":1,"source":{"id":378,"type":14},"time":"1250436910","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":378,"type":14},"time":"1250436910","type":71}, -{"phase":2,"source":{"id":378,"type":14},"time":"1250436910","type":71}, -{"params":{"address":"[::ffff:2001:0]:57805"},"phase":0,"source":{"id":378,"type":14},"time":"1250436910","type":72}, -{"phase":2,"source":{"id":378,"type":14},"time":"1250436910","type":34}, -{"phase":2,"source":{"id":377,"type":20},"time":"1250436910","type":303}, -{"phase":0,"source":{"id":376,"type":8},"time":"1250436910","type":5}, -{"phase":2,"source":{"id":376,"type":8},"time":"1250436910","type":4}, -{"phase":2,"source":{"id":375,"type":12},"time":"1250436910","type":3}, -{"params":{"host_and_port":"127.0.0.1:8888"},"phase":0,"source":{"id":375,"type":12},"time":"1250436910","type":85}, -{"phase":1,"source":{"id":375,"type":12},"time":"1250436910","type":81}, -{"params":{"group_name":"127.0.0.1:8888"},"phase":1,"source":{"id":379,"type":4},"time":"1250436910","type":77}, -{"phase":1,"source":{"id":379,"type":4},"time":"1250436910","type":78}, -{"params":{"source_dependency":{"id":380,"type":8}},"phase":1,"source":{"id":379,"type":4},"time":"1250436910","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":379,"type":4}},"phase":1,"source":{"id":380,"type":8},"time":"1250436910","type":4}, -{"params":{"source_dependency":{"id":380,"type":8}},"phase":1,"source":{"id":381,"type":20},"time":"1250436910","type":303}, -{"params":{"source_dependency":{"id":381,"type":20}},"phase":1,"source":{"id":382,"type":14},"time":"1250436910","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":382,"type":14},"time":"1250436910","type":71}, -{"phase":2,"source":{"id":382,"type":14},"time":"1250436910","type":71}, -{"params":{"address":"[::ffff:2001:0]:57806"},"phase":0,"source":{"id":382,"type":14},"time":"1250436910","type":72}, -{"phase":2,"source":{"id":382,"type":14},"time":"1250436910","type":34}, -{"phase":2,"source":{"id":381,"type":20},"time":"1250436910","type":303}, -{"phase":0,"source":{"id":380,"type":8},"time":"1250436910","type":5}, -{"phase":2,"source":{"id":380,"type":8},"time":"1250436910","type":4}, -{"phase":2,"source":{"id":379,"type":4},"time":"1250436910","type":3}, -{"params":{"source_dependency":{"id":379,"type":4}},"phase":1,"source":{"id":383,"type":5},"time":"1250436910","type":34}, -{"params":{"address_list":["127.0.0.1:8888"]},"phase":1,"source":{"id":383,"type":5},"time":"1250436910","type":35}, -{"params":{"address":"127.0.0.1:8888"},"phase":1,"source":{"id":383,"type":5},"time":"1250436910","type":36}, -{"phase":2,"source":{"id":383,"type":5},"time":"1250436911","type":36}, -{"params":{"source_address":"127.0.0.1:51006"},"phase":2,"source":{"id":383,"type":5},"time":"1250436911","type":35}, -{"params":{"source_dependency":{"id":383,"type":5}},"phase":0,"source":{"id":379,"type":4},"time":"1250436911","type":79}, -{"phase":2,"source":{"id":379,"type":4},"time":"1250436911","type":78}, -{"phase":2,"source":{"id":379,"type":4},"time":"1250436911","type":77}, -{"params":{"source_dependency":{"id":379,"type":4}},"phase":0,"source":{"id":375,"type":12},"time":"1250436911","type":88}, -{"params":{"source_dependency":{"id":383,"type":5}},"phase":0,"source":{"id":375,"type":12},"time":"1250436911","type":89}, -{"phase":2,"source":{"id":375,"type":12},"time":"1250436911","type":81}, -{"params":{"source_dependency":{"id":375,"type":12}},"phase":1,"source":{"id":383,"type":5},"time":"1250436911","type":38}, -{"params":{"source_dependency":{"id":375,"type":12}},"phase":0,"source":{"id":373,"type":1},"time":"1250436911","type":122}, -{"params":{"source_dependency":{"id":373,"type":1}},"phase":0,"source":{"id":375,"type":12},"time":"1250436911","type":123}, -{"phase":2,"source":{"id":373,"type":1},"time":"1250436911","type":120}, -{"phase":2,"source":{"id":375,"type":12},"time":"1250436911","type":121}, -{"phase":1,"source":{"id":373,"type":1},"time":"1250436911","type":129}, -{"params":{"headers":["Host: 127.0.0.1:8888","Connection: keep-alive","User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36","Accept: */*","Accept-Encoding: gzip,deflate,sdch","Accept-Language: en-US,en;q=0.8"],"line":"GET /task HTTP/1.1\r\n"},"phase":0,"source":{"id":373,"type":1},"time":"1250436911","type":130}, -{"params":{"byte_count":266},"phase":0,"source":{"id":383,"type":5},"time":"1250436911","type":61}, -{"phase":2,"source":{"id":373,"type":1},"time":"1250436911","type":129}, -{"phase":1,"source":{"id":373,"type":1},"time":"1250436911","type":134}, -{"phase":1,"source":{"id":373,"type":1},"time":"1250436911","type":215}, -{"params":{"byte_count":161},"phase":0,"source":{"id":383,"type":5},"time":"1250436911","type":63}, -{"phase":2,"source":{"id":373,"type":1},"time":"1250436911","type":215}, -{"params":{"headers":["HTTP/1.1 200 OK","Server: wptdriver","Cache: no-cache","Pragma: no-cache","Content-Type: application/json","Content-Length: 36"]},"phase":0,"source":{"id":373,"type":1},"time":"1250436911","type":135}, -{"phase":2,"source":{"id":373,"type":1},"time":"1250436911","type":134}, -{"phase":1,"source":{"id":373,"type":1},"time":"1250436911","type":105}, -{"params":{"buf_len":172,"index":0,"offset":0,"truncate":true},"phase":1,"source":{"id":374,"type":10},"time":"1250436911","type":111}, -{"params":{"bytes_copied":172},"phase":2,"source":{"id":374,"type":10},"time":"1250436911","type":111}, -{"phase":2,"source":{"id":373,"type":1},"time":"1250436911","type":105}, -{"phase":1,"source":{"id":373,"type":1},"time":"1250436911","type":107}, -{"params":{"buf_len":0,"index":1,"offset":0,"truncate":true},"phase":1,"source":{"id":374,"type":10},"time":"1250436911","type":111}, -{"params":{"bytes_copied":0},"phase":2,"source":{"id":374,"type":10},"time":"1250436912","type":111}, -{"phase":2,"source":{"id":373,"type":1},"time":"1250436912","type":107}, -{"phase":1,"source":{"id":373,"type":1},"time":"1250436912","type":105}, -{"params":{"buf_len":0,"index":2,"offset":0,"truncate":true},"phase":1,"source":{"id":374,"type":10},"time":"1250436912","type":111}, -{"params":{"bytes_copied":0},"phase":2,"source":{"id":374,"type":10},"time":"1250436912","type":111}, -{"phase":2,"source":{"id":373,"type":1},"time":"1250436912","type":105}, -{"phase":1,"source":{"id":373,"type":1},"time":"1250436912","type":93}, -{"phase":2,"source":{"id":373,"type":1},"time":"1250436912","type":93}, -{"phase":2,"source":{"id":373,"type":1},"time":"1250436912","type":91}, -{"phase":1,"source":{"id":373,"type":1},"time":"1250436912","type":93}, -{"phase":2,"source":{"id":373,"type":1},"time":"1250436912","type":93}, -{"phase":1,"source":{"id":373,"type":1},"time":"1250436912","type":136}, -{"phase":2,"source":{"id":373,"type":1},"time":"1250436912","type":136}, -{"phase":1,"source":{"id":373,"type":1},"time":"1250436912","type":107}, -{"params":{"buf_len":36,"index":1,"offset":0,"truncate":true},"phase":1,"source":{"id":374,"type":10},"time":"1250436912","type":111}, -{"params":{"bytes_copied":36},"phase":2,"source":{"id":374,"type":10},"time":"1250436912","type":111}, -{"phase":2,"source":{"id":373,"type":1},"time":"1250436912","type":107}, -{"phase":1,"source":{"id":373,"type":1},"time":"1250436912","type":136}, -{"phase":2,"source":{"id":383,"type":5},"time":"1250436912","type":38}, -{"phase":0,"source":{"id":383,"type":5},"time":"1250436912","type":67}, -{"phase":2,"source":{"id":383,"type":5},"time":"1250436912","type":34}, -{"phase":2,"source":{"id":373,"type":1},"time":"1250436912","type":136}, -{"phase":1,"source":{"id":373,"type":1},"time":"1250436912","type":107}, -{"phase":2,"source":{"id":373,"type":1},"time":"1250436912","type":107}, -{"phase":2,"source":{"id":373,"type":1},"time":"1250436912","type":2}, -{"phase":0,"source":{"id":374,"type":10},"time":"1250436912","type":118}, -{"phase":2,"source":{"id":374,"type":10},"time":"1250436912","type":108}, -{"phase":1,"source":{"id":384,"type":1},"time":"1250437861","type":2}, -{"phase":1,"source":{"id":384,"type":1},"time":"1250437861","type":93}, -{"phase":2,"source":{"id":384,"type":1},"time":"1250437861","type":93}, -{"params":{"load_flags":131328,"method":"GET","priority":"LOW","url":"http://127.0.0.1:8888/task"},"phase":1,"source":{"id":384,"type":1},"time":"1250437861","type":91}, -{"phase":1,"source":{"id":384,"type":1},"time":"1250437861","type":93}, -{"phase":2,"source":{"id":384,"type":1},"time":"1250437861","type":93}, -{"phase":1,"source":{"id":384,"type":1},"time":"1250437861","type":99}, -{"phase":2,"source":{"id":384,"type":1},"time":"1250437861","type":99}, -{"phase":1,"source":{"id":384,"type":1},"time":"1250437862","type":100}, -{"params":{"created":false,"key":"http://127.0.0.1:8888/task"},"phase":1,"source":{"id":385,"type":10},"time":"1250437862","type":108}, -{"phase":2,"source":{"id":384,"type":1},"time":"1250437862","type":100}, -{"phase":1,"source":{"id":384,"type":1},"time":"1250437862","type":102}, -{"phase":2,"source":{"id":384,"type":1},"time":"1250437862","type":102}, -{"phase":1,"source":{"id":384,"type":1},"time":"1250437862","type":104}, -{"params":{"buf_len":172,"index":0,"offset":0},"phase":1,"source":{"id":385,"type":10},"time":"1250437862","type":110}, -{"params":{"bytes_copied":172},"phase":2,"source":{"id":385,"type":10},"time":"1250437862","type":110}, -{"phase":2,"source":{"id":384,"type":1},"time":"1250437862","type":104}, -{"phase":1,"source":{"id":384,"type":1},"time":"1250437862","type":93}, -{"phase":2,"source":{"id":384,"type":1},"time":"1250437862","type":93}, -{"phase":1,"source":{"id":384,"type":1},"time":"1250437862","type":120}, -{"params":{"original_url":"http://127.0.0.1:8888/","priority":"LOW","url":"http://127.0.0.1:8888/"},"phase":1,"source":{"id":386,"type":12},"time":"1250437862","type":121}, -{"phase":1,"source":{"id":386,"type":12},"time":"1250437862","type":24}, -{"params":{"pac_string":"DIRECT"},"phase":0,"source":{"id":386,"type":12},"time":"1250437862","type":26}, -{"phase":2,"source":{"id":386,"type":12},"time":"1250437862","type":24}, -{"params":{"source_dependency":{"id":387,"type":8}},"phase":1,"source":{"id":386,"type":12},"time":"1250437862","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":386,"type":12}},"phase":1,"source":{"id":387,"type":8},"time":"1250437862","type":4}, -{"params":{"source_dependency":{"id":387,"type":8}},"phase":1,"source":{"id":388,"type":20},"time":"1250437862","type":303}, -{"params":{"source_dependency":{"id":388,"type":20}},"phase":1,"source":{"id":389,"type":14},"time":"1250437862","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":389,"type":14},"time":"1250437862","type":71}, -{"phase":2,"source":{"id":389,"type":14},"time":"1250437862","type":71}, -{"params":{"address":"[::ffff:2001:0]:57807"},"phase":0,"source":{"id":389,"type":14},"time":"1250437862","type":72}, -{"phase":2,"source":{"id":389,"type":14},"time":"1250437862","type":34}, -{"phase":2,"source":{"id":388,"type":20},"time":"1250437863","type":303}, -{"phase":0,"source":{"id":387,"type":8},"time":"1250437863","type":5}, -{"phase":2,"source":{"id":387,"type":8},"time":"1250437863","type":4}, -{"phase":2,"source":{"id":386,"type":12},"time":"1250437863","type":3}, -{"params":{"host_and_port":"127.0.0.1:8888"},"phase":0,"source":{"id":386,"type":12},"time":"1250437863","type":85}, -{"phase":1,"source":{"id":386,"type":12},"time":"1250437863","type":81}, -{"params":{"group_name":"127.0.0.1:8888"},"phase":1,"source":{"id":390,"type":4},"time":"1250437863","type":77}, -{"phase":1,"source":{"id":390,"type":4},"time":"1250437863","type":78}, -{"params":{"source_dependency":{"id":391,"type":8}},"phase":1,"source":{"id":390,"type":4},"time":"1250437863","type":3}, -{"params":{"address_family":0,"allow_cached_response":true,"host":"127.0.0.1:8888","is_speculative":false,"source_dependency":{"id":390,"type":4}},"phase":1,"source":{"id":391,"type":8},"time":"1250437863","type":4}, -{"params":{"source_dependency":{"id":391,"type":8}},"phase":1,"source":{"id":392,"type":20},"time":"1250437863","type":303}, -{"params":{"source_dependency":{"id":392,"type":20}},"phase":1,"source":{"id":393,"type":14},"time":"1250437863","type":34}, -{"params":{"address":"[2001:4860:4860::8888]:53"},"phase":1,"source":{"id":393,"type":14},"time":"1250437863","type":71}, -{"phase":2,"source":{"id":393,"type":14},"time":"1250437863","type":71}, -{"params":{"address":"[::ffff:2001:0]:57808"},"phase":0,"source":{"id":393,"type":14},"time":"1250437863","type":72}, -{"phase":2,"source":{"id":393,"type":14},"time":"1250437863","type":34}, -{"phase":2,"source":{"id":392,"type":20},"time":"1250437863","type":303}, -{"phase":0,"source":{"id":391,"type":8},"time":"1250437863","type":5}, -{"phase":2,"source":{"id":391,"type":8},"time":"1250437863","type":4}, -{"phase":2,"source":{"id":390,"type":4},"time":"1250437863","type":3}, -{"params":{"source_dependency":{"id":390,"type":4}},"phase":1,"source":{"id":394,"type":5},"time":"1250437863","type":34}, -{"params":{"address_list":["127.0.0.1:8888"]},"phase":1,"source":{"id":394,"type":5},"time":"1250437863","type":35}, -{"params":{"address":"127.0.0.1:8888"},"phase":1,"source":{"id":394,"type":5},"time":"1250437863","type":36}, -{"phase":0,"source":{"id":384,"type":1},"time":"1250437871","type":0}, -{"phase":2,"source":{"id":384,"type":1},"time":"1250437871","type":120}, -{"phase":2,"source":{"id":386,"type":12},"time":"1250437871","type":121}, -{"phase":0,"source":{"id":386,"type":12},"time":"1250437871","type":0}, -{"phase":2,"source":{"id":386,"type":12},"time":"1250437871","type":81}, -{"phase":2,"source":{"id":384,"type":1},"time":"1250437871","type":2}, -{"phase":2,"source":{"id":394,"type":5},"time":"1250437873","type":36}, -{"params":{"source_address":"127.0.0.1:51007"},"phase":2,"source":{"id":394,"type":5},"time":"1250437873","type":35}, -{"params":{"source_dependency":{"id":394,"type":5}},"phase":0,"source":{"id":390,"type":4},"time":"1250437873","type":79}, -{"phase":2,"source":{"id":390,"type":4},"time":"1250437873","type":78}, -{"phase":2,"source":{"id":390,"type":4},"time":"1250437873","type":77}, -{"phase":0,"source":{"id":385,"type":10},"time":"1250437878","type":119}, -{"phase":2,"source":{"id":385,"type":10},"time":"1250437879","type":108}, -{"phase":0,"source":{"id":394,"type":5},"time":"1250438096","type":67}, -{"phase":2,"source":{"id":394,"type":5},"time":"1250438097","type":34}, -{"params":{"description":"Closing all sessions.","net_error":-3},"phase":0,"source":{"id":306,"type":6},"time":"1250438142","type":163}, -{"params":{"source_dependency":{"id":306,"type":6}},"phase":0,"source":{"id":306,"type":6},"time":"1250438142","type":172}, -{"phase":0,"source":{"id":301,"type":5},"time":"1250438142","type":67}, -{"phase":2,"source":{"id":306,"type":6},"time":"1250438142","type":139}, -{"phase":2,"source":{"id":301,"type":5},"time":"1250438142","type":38}, -{"phase":2,"source":{"id":301,"type":5},"time":"1250438142","type":38}, -{"phase":2,"source":{"id":301,"type":5},"time":"1250438142","type":34}]} \ No newline at end of file diff --git a/test/fixtures/responses/pageSpeed.json b/test/fixtures/responses/pageSpeed.json deleted file mode 100644 index 5794a36..0000000 --- a/test/fixtures/responses/pageSpeed.json +++ /dev/null @@ -1 +0,0 @@ -{"locale":"en_US","rule_results":[{"localized_rule_name":"Avoid bad requests","rule_impact":0.0,"rule_name":"AvoidBadRequests","rule_score":100},{"localized_rule_name":"Avoid CSS @import","rule_impact":0.0,"rule_name":"AvoidCssImport","rule_score":100},{"localized_rule_name":"Defer parsing of JavaScript","rule_impact":0.0,"rule_name":"DeferParsingJavaScript","rule_score":100},{"localized_rule_name":"Enable compression","rule_impact":0.0,"rule_name":"EnableGzipCompression","rule_score":100},{"localized_rule_name":"Enable Keep-Alive","rule_impact":0.0,"rule_name":"EnableKeepAlive","rule_score":100},{"localized_rule_name":"Inline Small CSS","rule_impact":0.0,"rule_name":"InlineSmallCss","rule_score":100},{"localized_rule_name":"Inline Small JavaScript","rule_impact":0.0,"rule_name":"InlineSmallJavaScript","rule_score":100},{"localized_rule_name":"Leverage browser caching","rule_impact":0.4642857142857143,"rule_name":"LeverageBrowserCaching","rule_score":96,"url_blocks":[{"header":{"format":"The following cacheable resources have a short freshness lifetime. Specify an expiration at least one week in the future for the following resources:"},"urls":[{"result":{"args":[{"localized_value":"http://www.google-analytics.com/ga.js","string_value":"http://www.google-analytics.com/ga.js","type":"url"},{"int_value":43200000,"localized_value":"12 hours","type":"duration"}],"format":"$1 ($2)"}}]}]},{"localized_rule_name":"Make landing page redirects cacheable","rule_impact":0.0,"rule_name":"MakeLandingPageRedirectsCacheable","rule_score":100},{"localized_rule_name":"Minify CSS","rule_impact":0.0,"rule_name":"MinifyCss","rule_score":100},{"localized_rule_name":"Minify HTML","rule_impact":0.1986,"rule_name":"MinifyHTML","rule_score":98,"url_blocks":[{"header":{"args":[{"int_value":1986,"localized_value":"1.9KiB","type":"bytes"},{"int_value":2,"localized_value":"2%","type":"percentage"}],"format":"Minifying the following HTML resources could reduce their size by $1 ($2 reduction)."},"urls":[{"result":{"args":[{"localized_value":"http://twitter.com/marcelduran","string_value":"http://twitter.com/marcelduran","type":"url"},{"int_value":1894,"localized_value":"1.8KiB","type":"bytes"},{"int_value":1,"localized_value":"1%","type":"percentage"}],"format":"Minifying $1 could save $2 ($3 reduction) after compression."}},{"result":{"args":[{"localized_value":"http://twitter.com/","string_value":"http://twitter.com/","type":"url"},{"int_value":92,"localized_value":"92B","type":"bytes"},{"int_value":9,"localized_value":"9%","type":"percentage"}],"format":"Minifying $1 could save $2 ($3 reduction) after compression."}}]}]},{"localized_rule_name":"Minify JavaScript","rule_impact":0.2146,"rule_name":"MinifyJavaScript","rule_score":98,"url_blocks":[{"header":{"args":[{"int_value":2146,"localized_value":"2.1KiB","type":"bytes"},{"int_value":1,"localized_value":"1%","type":"percentage"}],"format":"Minifying the following JavaScript resources could reduce their size by $1 ($2 reduction)."},"urls":[{"result":{"args":[{"localized_value":"http://a0.twimg.com/c/swift/en/bundle/core.3b3c10dad7d2b9eea1cccd19f285ab122a631927.js","string_value":"http://a0.twimg.com/c/swift/en/bundle/core.3b3c10dad7d2b9eea1cccd19f285ab122a631927.js","type":"url"},{"int_value":1209,"localized_value":"1.2KiB","type":"bytes"},{"int_value":1,"localized_value":"1%","type":"percentage"}],"format":"Minifying $1 could save $2 ($3 reduction) after compression."}},{"result":{"args":[{"localized_value":"http://a0.twimg.com/c/swift/en/bundle/profiles.7ebe3919d4e2d9059c327f10097df4a70cb565e5.js","string_value":"http://a0.twimg.com/c/swift/en/bundle/profiles.7ebe3919d4e2d9059c327f10097df4a70cb565e5.js","type":"url"},{"int_value":738,"localized_value":"738B","type":"bytes"},{"int_value":1,"localized_value":"1%","type":"percentage"}],"format":"Minifying $1 could save $2 ($3 reduction) after compression."}},{"result":{"args":[{"localized_value":"http://a0.twimg.com/c/swift/prereqs.4644886017c33e40374df1af2ab5f5d61c520eaa.js","string_value":"http://a0.twimg.com/c/swift/prereqs.4644886017c33e40374df1af2ab5f5d61c520eaa.js","type":"url"},{"int_value":103,"localized_value":"103B","type":"bytes"},{"int_value":1,"localized_value":"1%","type":"percentage"}],"format":"Minifying $1 could save $2 ($3 reduction) after compression."}},{"result":{"args":[{"localized_value":"http://www.google-analytics.com/ga.js","string_value":"http://www.google-analytics.com/ga.js","type":"url"},{"int_value":96,"localized_value":"96B","type":"bytes"},{"int_value":1,"localized_value":"1%","type":"percentage"}],"format":"Minifying $1 could save $2 ($3 reduction) after compression."}}]}]},{"localized_rule_name":"Minimize redirects","rule_impact":0.0,"rule_name":"MinimizeRedirects","rule_score":100},{"localized_rule_name":"Minimize request size","rule_impact":0.0,"rule_name":"MinimizeRequestSize","rule_score":100},{"localized_rule_name":"Optimize images","rule_impact":4.2093,"rule_name":"OptimizeImages","rule_score":35,"url_blocks":[{"header":{"args":[{"int_value":42093,"localized_value":"41.1KiB","type":"bytes"},{"int_value":73,"localized_value":"73%","type":"percentage"}],"format":"Optimizing the following images could reduce their size by $1 ($2 reduction)."},"urls":[{"result":{"args":[{"localized_value":"http://a0.twimg.com/profile_images/1565307797/me-july2011-700px_normal.jpg","string_value":"http://a0.twimg.com/profile_images/1565307797/me-july2011-700px_normal.jpg","type":"url"},{"int_value":31634,"localized_value":"30.9KiB","type":"bytes"},{"int_value":86,"localized_value":"86%","type":"percentage"}],"format":"Losslessly compressing $1 could save $2 ($3 reduction)."}},{"result":{"args":[{"localized_value":"http://a0.twimg.com/profile_images/1893021490/legojslogo_normal.png","string_value":"http://a0.twimg.com/profile_images/1893021490/legojslogo_normal.png","type":"url"},{"int_value":4054,"localized_value":"4.0KiB","type":"bytes"},{"int_value":38,"localized_value":"38%","type":"percentage"}],"format":"Losslessly compressing $1 could save $2 ($3 reduction)."}},{"result":{"args":[{"localized_value":"http://a0.twimg.com/profile_images/1164735503/Jed_Schmidt_normal.jpeg","string_value":"http://a0.twimg.com/profile_images/1164735503/Jed_Schmidt_normal.jpeg","type":"url"},{"int_value":2810,"localized_value":"2.7KiB","type":"bytes"},{"int_value":64,"localized_value":"64%","type":"percentage"}],"format":"Losslessly compressing $1 could save $2 ($3 reduction)."}},{"result":{"args":[{"localized_value":"http://a0.twimg.com/profile_images/1612265539/304370_10150765342675029_833515028_20487612_6975164_n_normal.jpg","string_value":"http://a0.twimg.com/profile_images/1612265539/304370_10150765342675029_833515028_20487612_6975164_n_normal.jpg","type":"url"},{"int_value":2752,"localized_value":"2.7KiB","type":"bytes"},{"int_value":66,"localized_value":"66%","type":"percentage"}],"format":"Losslessly compressing $1 could save $2 ($3 reduction)."}},{"result":{"args":[{"localized_value":"http://a0.twimg.com/a/1344923934/t1/img/wash-white-30.png","string_value":"http://a0.twimg.com/a/1344923934/t1/img/wash-white-30.png","type":"url"},{"int_value":843,"localized_value":"843B","type":"bytes"},{"int_value":89,"localized_value":"89%","type":"percentage"}],"format":"Losslessly compressing $1 could save $2 ($3 reduction)."}}]}]},{"localized_rule_name":"Optimize the order of styles and scripts","rule_impact":0.0,"rule_name":"OptimizeTheOrderOfStylesAndScripts","rule_score":100},{"localized_rule_name":"Put CSS in the document head","rule_impact":0.0,"rule_name":"PutCssInTheDocumentHead","rule_score":100},{"localized_rule_name":"Remove query strings from static resources","rule_impact":0.0,"rule_name":"RemoveQueryStringsFromStaticResources","rule_score":100},{"localized_rule_name":"Serve resources from a consistent URL","rule_impact":0.0,"rule_name":"ServeResourcesFromAConsistentUrl","rule_score":100},{"localized_rule_name":"Serve scaled images","rule_impact":1.7575000000000003,"rule_name":"ServeScaledImages","rule_score":95,"url_blocks":[{"header":{"args":[{"int_value":17575,"localized_value":"17.2KiB","type":"bytes"},{"int_value":80,"localized_value":"80%","type":"percentage"}],"format":"The following images are resized in HTML or CSS. Serving scaled images could save $1 ($2 reduction)."},"urls":[{"result":{"args":[{"localized_value":"http://p.twimg.com/AzYrCT8CUAApo8u.png:thumb","string_value":"http://p.twimg.com/AzYrCT8CUAApo8u.png:thumb","type":"url"},{"int_value":150,"localized_value":"150","type":"int"},{"int_value":150,"localized_value":"150","type":"int"},{"int_value":66,"localized_value":"66","type":"int"},{"int_value":66,"localized_value":"66","type":"int"},{"int_value":7303,"localized_value":"7.1KiB","type":"bytes"},{"int_value":80,"localized_value":"80%","type":"percentage"}],"format":"$1 is resized in HTML or CSS from $2x$3 to $4x$5. Serving a scaled image could save $6 ($7 reduction)."}},{"result":{"args":[{"localized_value":"http://p.twimg.com/AzbObgECUAAwUPJ.jpg:thumb","string_value":"http://p.twimg.com/AzbObgECUAAwUPJ.jpg:thumb","type":"url"},{"int_value":150,"localized_value":"150","type":"int"},{"int_value":150,"localized_value":"150","type":"int"},{"int_value":66,"localized_value":"66","type":"int"},{"int_value":66,"localized_value":"66","type":"int"},{"int_value":3771,"localized_value":"3.7KiB","type":"bytes"},{"int_value":80,"localized_value":"80%","type":"percentage"}],"format":"$1 is resized in HTML or CSS from $2x$3 to $4x$5. Serving a scaled image could save $6 ($7 reduction)."}},{"result":{"args":[{"localized_value":"http://p.twimg.com/Ay6JHXWCcAA6zfo.jpg:thumb","string_value":"http://p.twimg.com/Ay6JHXWCcAA6zfo.jpg:thumb","type":"url"},{"int_value":150,"localized_value":"150","type":"int"},{"int_value":150,"localized_value":"150","type":"int"},{"int_value":66,"localized_value":"66","type":"int"},{"int_value":66,"localized_value":"66","type":"int"},{"int_value":3510,"localized_value":"3.4KiB","type":"bytes"},{"int_value":80,"localized_value":"80%","type":"percentage"}],"format":"$1 is resized in HTML or CSS from $2x$3 to $4x$5. Serving a scaled image could save $6 ($7 reduction)."}},{"result":{"args":[{"localized_value":"http://p.twimg.com/AzUt9DoCMAAPg-u.jpg:thumb","string_value":"http://p.twimg.com/AzUt9DoCMAAPg-u.jpg:thumb","type":"url"},{"int_value":150,"localized_value":"150","type":"int"},{"int_value":150,"localized_value":"150","type":"int"},{"int_value":66,"localized_value":"66","type":"int"},{"int_value":66,"localized_value":"66","type":"int"},{"int_value":2991,"localized_value":"2.9KiB","type":"bytes"},{"int_value":80,"localized_value":"80%","type":"percentage"}],"format":"$1 is resized in HTML or CSS from $2x$3 to $4x$5. Serving a scaled image could save $6 ($7 reduction)."}}]}]},{"localized_rule_name":"Specify a cache validator","rule_impact":0.0,"rule_name":"SpecifyACacheValidator","rule_score":100},{"localized_rule_name":"Specify a Vary: Accept-Encoding header","rule_impact":0.0,"rule_name":"SpecifyAVaryAcceptEncodingHeader","rule_score":100},{"localized_rule_name":"Specify a character set","rule_impact":0.0,"rule_name":"SpecifyCharsetEarly","rule_score":100},{"localized_rule_name":"Specify image dimensions","rule_impact":0.0,"rule_name":"SpecifyImageDimensions","rule_score":100},{"localized_rule_name":"Combine images into CSS sprites","rule_impact":0.0,"rule_name":"SpriteImages","rule_score":100},{"localized_rule_name":"Prefer asynchronous resources","rule_impact":0.0,"rule_name":"PreferAsyncResources","rule_score":100}],"score":96} \ No newline at end of file diff --git a/test/fixtures/responses/request.txt b/test/fixtures/responses/request.txt deleted file mode 100644 index 1f24abe..0000000 --- a/test/fixtures/responses/request.txt +++ /dev/null @@ -1,37 +0,0 @@ -8/16/2012 18:27:29 GET twitter.com / 200 1491 1347 994 180 1454 0 Tue, 31 Mar 1981 05:00:00 GMT no-cache, no-store, must-revalidate, pre-check=0, post-check=0 text/html gzip 3 0 2485 1 -1 -1 100 -1 100 -1 -1 -1 -1 -1 0 1 -1 -1 -1 1454 0 0 0 0 0 -1 0 0 0 0 0 0 0 -8/16/2012 18:27:29 GET si0.twimg.com /a/1345133470/t1/css/t1_core.bundle.css 200 740 594 2432 390 506 0 Thu, 15 Aug 2013 18:27:31 GMT private, max-age=31449600 text/css gzip 3 563 3172 2 100 100 100 -1 100 -1 -1 -1 -1 -1 0 1 -1 -1 -1 506 0 0 0 0 0 31449600 0 Cotendo CDN 0 0 2432 2601 2601 2902 https://twitter.com/ 80 -8/16/2012 18:27:29 GET si0.twimg.com /profile_images/2505588755/fo9wp35195hierdes2f5_normal.png 200 705 671 3189 394 457 0 Thu, 23 Aug 2012 18:27:32 GMT private, max-age=604800 image/png 3 614 3894 3 100 100 -1 -1 100 -1 -1 -1 -1 -1 0 1 -1 -1 -1 0 0 0 0 0 0 604800 0 Cotendo CDN 0 0 3197 3696 0 0 https://twitter.com/ 510 -8/16/2012 18:27:29 GET si0.twimg.com /profile_images/1804416058/43776868-4e4e-45cc-b91c-7ec1b6f350aa_normal.png 200 784 681 3190 410 457 0 Thu, 23 Aug 2012 18:27:32 GMT private, max-age=604800 image/png 3 650 3974 4 100 100 -1 -1 100 -1 -1 -1 -1 -1 0 1 -1 -1 -1 0 0 0 0 0 0 604800 0 Cotendo CDN 0 0 3199 3719 0 0 https://twitter.com/ 644 -8/16/2012 18:27:29 GET si0.twimg.com /profile_images/2466871092/image_normal.jpg 200 765 765 3191 379 458 0 Thu, 23 Aug 2012 18:27:32 GMT private, max-age=604800 image/jpeg 3 641 3956 5 100 100 -1 -1 100 -1 -1 -1 -1 -1 0 1 -1 -1 -1 0 0 0 0 0 0 604800 0 Cotendo CDN 0 0 3201 3811 0 0 https://twitter.com/ 1154 -8/16/2012 18:27:29 GET si0.twimg.com /sticky/default_profile_images/default_profile_2_normal.png 200 507 505 3192 395 457 0 Thu, 23 Aug 2012 18:27:32 GMT private, max-age=604800 image/png 3 614 3699 6 100 100 -1 -1 100 -1 -1 -1 -1 -1 0 1 -1 -1 -1 0 0 0 0 0 0 604800 0 Cotendo CDN 0 0 3198 3315 3315 3443 https://twitter.com/ 324 -8/16/2012 18:27:29 GET si0.twimg.com /a/1345133470/t1/img/twitter_web_sprite_bgs.png 200 621 506 3192 383 457 0 Thu, 23 Aug 2012 18:27:32 GMT private, max-age=604800 image/png 3 641 3813 7 100 100 -1 -1 100 -1 -1 -1 -1 -1 0 1 -1 -1 -1 0 0 0 0 0 0 604800 0 Cotendo CDN 0 0 3193 3316 3316 3442 https://twitter.com/ 274 -8/16/2012 18:27:29 GET si0.twimg.com /a/1345133470/t1/img/twitter_web_sprite_icons.png 200 1659 515 3198 385 458 0 Thu, 23 Aug 2012 18:27:32 GMT private, max-age=604800 image/png 3 623 4857 8 100 100 -1 -1 100 -1 -1 -1 -1 -1 0 1 -1 -1 -1 0 0 0 0 0 0 604800 0 Cotendo CDN 0 0 3202 3321 3321 3447 https://twitter.com/ 280 -8/16/2012 18:27:29 GET si0.twimg.com /a/1345133470/t1/img/wash-white-30.png 200 532 532 3209 374 456 0 Thu, 23 Aug 2012 18:27:32 GMT private, max-age=604800 image/png 3 650 3741 9 100 100 -1 -1 100 -1 -1 -1 -1 -1 0 1 -1 -1 -1 0 0 0 0 0 0 604800 0 Cotendo CDN 0 0 3216 3333 3333 3485 https://twitter.com/ 408 -8/16/2012 18:27:29 GET api.twitter.com /receiver.html 200 374 370 3294 271 305 0 Thu, 16 Aug 2012 18:32:32 GMT max-age=300 text/html gzip 3 668 3668 10 0 -1 100 -1 100 -1 -1 -1 -1 -1 0 1 -1 -1 -1 305 0 0 0 0 0 300 0 0 0 3294 3353 3353 3581 https://twitter.com/ 3208 6318 -8/16/2012 18:27:29 GET si0.twimg.com /c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js 200 2792 396 3380 408 521 0 Thu, 15 Aug 2013 18:27:32 GMT private, max-age=31449600 application/javascript gzip 3 632 6172 11 100 100 100 -1 100 -1 -1 -1 -1 -1 0 1 -1 -1 -1 521 0 0 0 0 0 31449600 0 Cotendo CDN 0 0 3380 3392 3392 3517 https://twitter.com/ 3188 4072 -8/16/2012 18:27:29 GET si0.twimg.com /profile_background_images/594970743/ht90irx2ejrvh0xqpjjb.jpeg 200 9012 123 3550 398 460 0 Thu, 23 Aug 2012 18:27:31 GMT private, max-age=604800 image/jpeg 3 563 12562 12 100 100 -1 -1 100 -1 -1 -1 -1 -1 0 1 -1 -1 -1 0 0 0 0 0 0 604800 0 Cotendo CDN 0 0 3551 3551 0 0 https://twitter.com/ 250 -8/16/2012 18:27:29 GET api.twitter.com /1/saved_searches.json 200 251 252 6385 326 1672 0 Tue, 31 Mar 1981 05:00:00 GMT no-cache, no-store, must-revalidate, pre-check=0, post-check=0 application/json gzip 3 0 6636 13 -1 -1 100 -1 100 -1 -1 -1 -1 -1 0 1 -1 -1 -1 1672 0 0 0 0 0 -1 0 0 0 0 0 0 0 https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js 20 38041 -8/16/2012 18:27:29 GET si0.twimg.com /a/1345133470/t1/img/loader.gif 200 181 156 6643 367 459 0 Thu, 15 Aug 2013 18:27:35 GMT private, max-age=31449600 image/gif 3 623 6824 14 100 100 -1 -1 100 -1 -1 -1 -1 -1 0 1 -1 -1 -1 0 0 0 0 0 0 31449600 0 Cotendo CDN 0 0 6648 6648 0 0 https://twitter.com/ 3228 -8/16/2012 18:27:29 GET api.twitter.com /1/promoted_content/27/log.png?impression_id=18585a97d622a74b 200 138 128 6644 245 1340 0 Tue, 31 Mar 1981 05:00:00 GMT no-cache, no-store, must-revalidate, pre-check=0, post-check=0 image/png 3 0 6782 15 -1 -1 -1 -1 100 -1 -1 -1 -1 -1 0 1 -1 -1 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js 20 162936 -8/16/2012 18:27:29 GET si0.twimg.com /c/phoenix/pt/bundle/t1-more.7cc751ba2c21e9a6c6b2303739b6c255dbd458a7.js 200 4412 171 6646 408 521 0 Thu, 15 Aug 2013 18:27:35 GMT private, max-age=31449600 application/javascript gzip 3 632 11058 16 100 100 100 -1 100 -1 -1 -1 -1 -1 0 1 -1 -1 -1 521 0 0 0 0 0 31449600 0 Cotendo CDN 0 0 6650 6650 0 0 https://twitter.com/ 3188 4072 -8/16/2012 18:27:29 GET si0.twimg.com /a/1345133470/t1/css/t1_more.bundle.css 200 481 139 11410 390 506 0 Thu, 15 Aug 2013 18:27:40 GMT private, max-age=31449600 text/css gzip 3 632 11891 17 100 100 100 -1 100 -1 -1 -1 -1 -1 0 1 -1 -1 -1 506 0 0 0 0 0 31449600 0 Cotendo CDN 0 0 11413 11413 0 0 https://si0.twimg.com/c/phoenix/pt/bundle/t1-more.7cc751ba2c21e9a6c6b2303739b6c255dbd458a7.js 23 19802 -8/16/2012 18:27:29 GET api.twitter.com /1/direct_messages.json?count=50&include_entities=true 200 221 221 12358 358 1549 0 Tue, 31 Mar 1981 05:00:00 GMT no-cache, no-store, must-revalidate, pre-check=0, post-check=0 application/json gzip 3 0 12579 18 -1 -1 100 -1 100 -1 -1 -1 -1 -1 0 1 -1 -1 -1 1549 0 0 0 0 0 -1 0 0 0 0 0 0 0 https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js 20 38041 -8/16/2012 18:27:29 GET api.twitter.com /1/direct_messages/sent.json?count=50&include_entities=true 200 221 221 12363 363 1545 0 Tue, 31 Mar 1981 05:00:00 GMT no-cache, no-store, must-revalidate, pre-check=0, post-check=0 application/json gzip 3 0 12584 19 -1 -1 100 -1 100 -1 -1 -1 -1 -1 0 1 -1 -1 -1 1545 0 0 0 0 0 -1 0 0 0 0 0 0 0 https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js 20 38041 -8/16/2012 18:27:29 GET api.twitter.com /1/saved_searches.json 200 189 189 12392 326 1528 0 Tue, 31 Mar 1981 05:00:00 GMT no-cache, no-store, must-revalidate, pre-check=0, post-check=0 application/json gzip 3 0 12581 20 -1 -1 100 -1 100 -1 -1 -1 -1 -1 0 1 -1 -1 -1 1528 0 0 0 0 0 -1 0 0 0 0 0 0 0 https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js 20 38041 -8/16/2012 18:27:29 GET api.twitter.com /i/search/typeahead.json?count=2500&prefetch=true&result_type=users&post_authenticity_token=bf49bcdf4afb91a0627cacfdd4dfdc09540c736e 200 386 282 12411 436 549 0 Tue, 31 Mar 1981 05:00:00 GMT no-cache, no-store, must-revalidate, pre-check=0, post-check=0 application/json gzip 3 0 12797 21 -1 -1 100 -1 100 -1 -1 -1 -1 -1 0 1 -1 -1 -1 549 0 0 0 0 0 -1 0 0 0 0 0 0 0 https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js 20 38041 -8/16/2012 18:27:29 GET api.twitter.com /1/trends/available.json?lang=pt 200 402 394 12412 336 1516 0 Tue, 31 Mar 1981 05:00:00 GMT max-age=2592000, must-revalidate application/json gzip 3 0 12814 22 -1 -1 100 -1 100 -1 -1 -1 -1 -1 0 1 -1 -1 -1 1516 0 0 0 0 0 -1 0 0 0 0 0 0 0 https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js 20 38041 -8/16/2012 18:27:29 GET twitter.com /images/spinner.gif 200 158 158 12429 199 325 0 Sun, 14 Aug 2022 18:27:41 GMT max-age=315360000 image/gif 3 0 12587 23 100 0 -1 -1 100 -1 -1 -1 -1 -1 0 1 -1 -1 -1 0 0 0 0 0 0 315360000 0 0 0 0 0 0 0 https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js 20 24928 -8/16/2012 18:27:29 GET api.twitter.com /1/users/recommendations.json?limit=3&excluded=&display_location=wtf-component&pc=true&connections=true&algorithm=null&force_new_signup=false 200 548 525 12475 445 1490 0 Thu, 16 Aug 2012 18:29:41 GMT private, max-age=120 application/json gzip 3 0 13023 24 0 -1 100 -1 100 -1 -1 -1 -1 -1 0 1 -1 -1 -1 1490 0 0 0 0 0 120 0 0 0 0 0 0 0 https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js 20 38041 -8/16/2012 18:27:29 GET api.twitter.com /1/users/recommendations.json?limit=3&excluded=&display_location=wtf-component&pc=true&connections=true&algorithm=null&force_new_signup=true 200 577 577 12503 444 1490 0 Thu, 16 Aug 2012 18:29:41 GMT private, max-age=120 application/json gzip 3 0 13080 25 0 -1 100 -1 100 -1 -1 -1 -1 -1 0 1 -1 -1 -1 1490 0 0 0 0 0 120 0 0 0 0 0 0 0 https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js 20 38041 -8/16/2012 18:27:29 GET ssl.google-analytics.com /ga.js 200 426 307 12599 212 411 0 Fri, 17 Aug 2012 01:06:52 GMT max-age=43200, public text/javascript gzip 3 955 13025 26 50 100 100 -1 100 -1 -1 -1 -1 -1 0 1 -1 -1 -1 411 0 0 0 0 0 43200 0 Google 0 0 12609 12732 12732 12809 https://twitter.com/ 246 416 -8/16/2012 18:27:29 GET api.twitter.com /1/blocks/blocking.json 200 120 120 12807 327 1544 0 Tue, 31 Mar 1981 05:00:00 GMT no-cache, no-store, must-revalidate, pre-check=0, post-check=0 application/json gzip 3 0 12927 27 -1 -1 100 -1 100 -1 -1 -1 -1 -1 0 1 -1 -1 -1 1544 0 0 0 0 0 -1 0 0 0 0 0 0 0 https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js 20 38041 -8/16/2012 18:27:29 GET api.twitter.com /1/trends/1.json?pc=true&post_authenticity_token=bf49bcdf4afb91a0627cacfdd4dfdc09540c736e 200 159 159 12827 393 1515 0 Tue, 31 Mar 1981 05:00:00 GMT max-age=300, must-revalidate application/json gzip 3 0 12986 28 -1 -1 100 -1 100 -1 -1 -1 -1 -1 0 1 -1 -1 -1 1515 0 0 0 0 0 -1 0 0 0 0 0 0 0 https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js 20 38041 -8/16/2012 18:27:29 GET api.twitter.com /1/promoted_content/i/log.png?promoted_trend_id=5288 200 116 117 13014 236 1340 0 Tue, 31 Mar 1981 05:00:00 GMT no-cache, no-store, must-revalidate, pre-check=0, post-check=0 image/png 3 0 13130 29 -1 -1 -1 -1 100 -1 -1 -1 -1 -1 0 1 -1 -1 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js 20 162936 -8/16/2012 18:27:29 GET ssl.google-analytics.com /__utm.gif?utmwv=5.3.4&utms=2&utmn=869617103&utmhn=twitter.com&utmcs=UTF-8&utmsr=1024x768&utmvp=997x614&utmsc=32-bit&utmul=en-us&utmje=1&utmfl=11.3%20r31&utmdt=Twitter%20%2F%20In%C3%ADcio&utmhid=775368836&utmr=0&utmp=%2F&utmac=UA-30775-6&utmcc=__utma%3D43838368.159264585.1345141647.1345141647.1345141647.1%3B%2B__utmz%3D43838368.1345141647.1.1.utmcsr%3D(direct)%7Cutmccn%3D(direct)%7Cutmcmd%3D(none)%3B&utmu=q~ 200 68 68 13064 604 375 0 Wed, 19 Apr 2000 11:43:00 GMT private, no-cache, no-cache=Set-Cookie, proxy-revalidate image/gif 3 0 13132 30 -1 -1 -1 -1 100 -1 -1 -1 -1 -1 0 1 -1 -1 -1 0 0 0 0 0 0 -1 0 0 0 0 0 0 0 https://ssl.google-analytics.com/ga.js 52 512 -8/16/2012 18:27:29 GET si0.twimg.com /profile_images/1409530731/bbm__1308837078033_normal.tmp 200 118 117 13092 392 459 0 Thu, 15 Aug 2013 18:27:41 GMT private, max-age=31449600 image/jpeg 3 563 13210 31 100 100 -1 -1 100 -1 -1 -1 -1 -1 0 1 -1 -1 -1 0 0 0 0 0 0 31449600 0 Cotendo CDN 0 0 13094 13094 0 0 https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js 20 24928 -8/16/2012 18:27:29 GET si0.twimg.com /profile_images/1583722973/tweter_normal.jpg 200 404 131 13100 380 459 0 Thu, 23 Aug 2012 18:27:41 GMT private, max-age=604800 image/jpeg 3 632 13504 32 100 100 -1 -1 100 -1 -1 -1 -1 -1 0 1 -1 -1 -1 0 0 0 0 0 0 604800 0 Cotendo CDN 0 0 13102 13102 0 0 https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js 20 24928 -8/16/2012 18:27:29 GET si0.twimg.com /profile_images/1727300915/image_normal.jpg 200 139 139 13102 379 458 0 Thu, 23 Aug 2012 18:27:41 GMT private, max-age=604800 image/jpeg 3 623 13241 33 100 100 -1 -1 100 -1 -1 -1 -1 -1 0 1 -1 -1 -1 0 0 0 0 0 0 604800 0 Cotendo CDN 0 0 13104 13104 0 0 https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js 20 24928 -8/16/2012 18:27:29 GET api.twitter.com /1/statuses/friends.json?cursor=-1&user_id=401133413 200 189 173 13125 356 1550 0 Tue, 31 Mar 1981 05:00:00 GMT no-cache, no-store, must-revalidate, pre-check=0, post-check=0 application/json gzip 3 0 13314 34 -1 -1 100 -1 100 -1 -1 -1 -1 -1 0 1 -1 -1 -1 1550 0 0 0 0 0 -1 0 0 0 0 0 0 0 https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js 20 38041 -8/16/2012 18:27:29 GET si0.twimg.com /profile_images/1910328549/image_reasonably_small.jpg 200 548 507 13133 389 458 0 Thu, 23 Aug 2012 18:27:41 GMT private, max-age=604800 image/jpeg 3 650 13681 35 100 100 -1 -1 100 -1 -1 -1 -1 -1 0 1 -1 -1 -1 0 0 0 0 0 0 604800 0 Cotendo CDN 0 0 13137 13137 0 0 https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js 20 24928 -8/16/2012 18:27:29 GET si0.twimg.com /profile_images/2325704772/wrrmef61i6jl91kwkmzq_reasonably_small.png 200 472 162 13136 404 458 0 Thu, 23 Aug 2012 18:27:41 GMT private, max-age=604800 image/png 3 614 13608 36 100 100 -1 -1 100 -1 -1 -1 -1 -1 0 1 -1 -1 -1 0 0 0 0 0 0 604800 0 Cotendo CDN 0 0 13140 13140 0 0 https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js 20 24928 -8/16/2012 18:27:29 GET si0.twimg.com /profile_images/2258914696/sq_reasonably_small.jpg 200 561 143 13136 386 459 0 Thu, 23 Aug 2012 18:27:41 GMT private, max-age=604800 image/jpeg 3 641 13697 37 100 100 -1 -1 100 -1 -1 -1 -1 -1 0 1 -1 -1 -1 0 0 0 0 0 0 604800 0 Cotendo CDN 0 0 13139 13139 0 0 https://si0.twimg.com/c/phoenix/pt/bundle/t1-core.58472064d67922acd62317f7f8027582c7d0cdbd.js 20 24928 diff --git a/test/fixtures/responses/response.txt b/test/fixtures/responses/response.txt deleted file mode 100644 index 323fae0..0000000 --- a/test/fixtures/responses/response.txt +++ /dev/null @@ -1 +0,0 @@ -foobar diff --git a/test/fixtures/responses/restart.json b/test/fixtures/responses/restart.json deleted file mode 100644 index e0cc21b..0000000 --- a/test/fixtures/responses/restart.json +++ /dev/null @@ -1 +0,0 @@ -{"testId":"120817_V2_2"} diff --git a/test/fixtures/responses/runTest.json b/test/fixtures/responses/runTest.json deleted file mode 100644 index b2ba55e..0000000 --- a/test/fixtures/responses/runTest.json +++ /dev/null @@ -1 +0,0 @@ -{"statusCode":200,"statusText":"Ok","data":{"testId":"120816_V2_2","ownerKey":"a7c32f43d2fcc75a13f558c0e4b31499d270f267","jsonUrl":"http:\/\/www.example.com\/results.php?test=120816_V2_2&f=json","xmlUrl":"http:\/\/www.example.com\/xmlResult.php?test=120816_V2_2","userUrl":"http:\/\/www.example.com\/results.php?test=120816_V2_2","summaryCSV":"http:\/\/www.example.com\/csv.php?test=120816_V2_2","detailCSV":"http:\/\/www.example.com\/csv.php?test=120816_V2_2&requests=1"}} diff --git a/test/fixtures/responses/runTestInvalid.json b/test/fixtures/responses/runTestInvalid.json deleted file mode 100644 index a924f5f..0000000 --- a/test/fixtures/responses/runTestInvalid.json +++ /dev/null @@ -1 +0,0 @@ -{"statusCode":400,"statusText":"Invalid URL, please try submitting your test request again."} \ No newline at end of file diff --git a/test/fixtures/responses/runTestInvalidAPIKey.json b/test/fixtures/responses/runTestInvalidAPIKey.json deleted file mode 100644 index be9d352..0000000 --- a/test/fixtures/responses/runTestInvalidAPIKey.json +++ /dev/null @@ -1 +0,0 @@ -{"statusCode":400,"statusText":"Invalid API Key"} \ No newline at end of file diff --git a/test/fixtures/responses/runTestMultiRuns.json b/test/fixtures/responses/runTestMultiRuns.json deleted file mode 100644 index 13bf136..0000000 --- a/test/fixtures/responses/runTestMultiRuns.json +++ /dev/null @@ -1 +0,0 @@ -{"statusCode":200,"statusText":"Ok","data":{"testId":"141106_TM_ZFM","ownerKey":"a7c32f43d2fcc75a13f558c0e4b31499d270f267","jsonUrl":"http:\/\/www.example.com\/results.php?test=141106_TM_ZFM&f=json","xmlUrl":"http:\/\/www.example.com\/xmlResult.php?test=141106_TM_ZFM","userUrl":"http:\/\/www.example.com\/results.php?test=141106_TM_ZFM","summaryCSV":"http:\/\/www.example.com\/csv.php?test=141106_TM_ZFM","detailCSV":"http:\/\/www.example.com\/csv.php?test=141106_TM_ZFM&requests=1"}} diff --git a/test/fixtures/responses/runTestNoAPIKey.json b/test/fixtures/responses/runTestNoAPIKey.json deleted file mode 100644 index b8c48f2..0000000 --- a/test/fixtures/responses/runTestNoAPIKey.json +++ /dev/null @@ -1 +0,0 @@ -{"statusCode":400,"statusText":"An error occurred processing your request. Please reload the testing page and try submitting your test request again. (missing API key)"} \ No newline at end of file diff --git a/test/fixtures/responses/screenshot.jpg b/test/fixtures/responses/screenshot.jpg deleted file mode 100644 index 7736f26..0000000 Binary files a/test/fixtures/responses/screenshot.jpg and /dev/null differ diff --git a/test/fixtures/responses/screenshotFullResolution.png b/test/fixtures/responses/screenshotFullResolution.png deleted file mode 100644 index 16030a6..0000000 Binary files a/test/fixtures/responses/screenshotFullResolution.png and /dev/null differ diff --git a/test/fixtures/responses/screenshotThumbnail.jpg b/test/fixtures/responses/screenshotThumbnail.jpg deleted file mode 100644 index 33721d2..0000000 Binary files a/test/fixtures/responses/screenshotThumbnail.jpg and /dev/null differ diff --git a/test/fixtures/responses/testInfo.json b/test/fixtures/responses/testInfo.json deleted file mode 100644 index 9eb153b..0000000 --- a/test/fixtures/responses/testInfo.json +++ /dev/null @@ -1 +0,0 @@ -{"url":"http:\/\/twitter.com","domElement":"","login":"","password":"","runs":3,"fvonly":1,"connections":0,"private":0,"web10":0,"ignoreSSL":0,"script":"logData\t0\r\nnavigate\thttp:\/\/twitter.com\r\nlogData\t1\r\nsetValue\tname=session[username_or_email]\tfoo_baz\r\nsetValue\tname=session[password]\t5p1k397T\r\nsubmitForm\taction=https:\/\/twitter.com\/sessions\r\n","block":null,"authType":0,"notify":"","video":null,"label":"","industry":"","industry_page":"","median_video":0,"ip":"::1","uid":null,"user":null,"priority":5,"bwIn":1500,"bwOut":384,"latency":50,"testLatency":50,"plr":"0","callback":"http:\/\/localhost\/foo","agent":null,"aft":0,"aftEarlyCutoff":"45","aftMinChanges":0,"tcpdump":0,"timeline":0,"netlog":0,"blockads":0,"sensitive":0,"type":"","noopt":"","noimages":"","noheaders":"","view":"","discard":0,"queue_limit":0,"pngss":0,"iq":0,"bodies":0,"time":0,"clear_rv":0,"keepua":0,"benchmark":null,"max_retries":0,"location":"Local_Firefox_Chrome","browser":"Chrome","batch":0,"owner":"90d8b49d2c27233bb4661a8762a1e530a7927fd2","vd":null,"vh":null,"key":null,"locationText":"Local VM - Chrome<\/b> - DSL<\/b>","workdir":".\/work\/jobs\/Local_Firefox_Chrome","remoteUrl":null,"remoteLocation":null,"connectivity":"DSL","path":".\/results\/12\/08\/16\/V2\/2","job":"120816_V2_2.p5","work_dir":".\/work\/jobs\/Local_Firefox_Chrome","job_file":".\/work\/jobs\/Local_Firefox_Chrome\/120816_V2_2.p5","tester":"IE7","started":1345141634,"last_updated":1345141732,"retries":0,"completed":1345141732,"medianRun":3} \ No newline at end of file diff --git a/test/fixtures/responses/testResults.json b/test/fixtures/responses/testResults.json deleted file mode 100644 index 27a6e6f..0000000 --- a/test/fixtures/responses/testResults.json +++ /dev/null @@ -1 +0,0 @@ -{"data":{"id":"141106_8N_ZRC","url":"https:\/\/google.com","summary":"http:\/\/www.webpagetest.org\/results.php?test=141106_8N_ZRC","testUrl":"https:\/\/google.com","location":"Dulles:Chrome","from":"Dulles, VA - Chrome<\/b> - Cable<\/b>","connectivity":"Cable","bwDown":5000,"bwUp":1000,"latency":28,"plr":"0","completed":1415299577,"tester":"IE9302-192.168.103.92","testerDNS":"192.168.103.1,192.168.0.1","runs":{"1":{"firstView":{"URL":"https:\/\/google.com","loadTime":1529,"TTFB":503,"bytesOut":9808,"bytesOutDoc":7942,"bytesIn":501267,"bytesInDoc":398930,"connections":5,"requests":[{"method":"GET","host":"google.com","url":"\/","responseCode":"301","load_ms":"66","ttfb_ms":"64","load_start":"183","bytesOut":"323","bytesIn":"595","objectSize":"0","expires":"Sat, 06 Dec 2014 18:46:01 GMT","cacheControl":"public, max-age=2592000","contentType":"text\/html","type":"3","socket":"192","score_cache":"100","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":36,"ssl_ms":96,"gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"2592000","dns_start":"0","dns_end":"50","connect_start":"50","connect_end":"86","ssl_start":"86","ssl_end":"182","server_count":"11","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/google.com\/","score_progressive_jpeg":-1,"load_end":249,"ttfb_start":"183","ttfb_end":247,"download_start":247,"download_end":249,"download_ms":2,"all_start":"50","all_end":249,"all_ms":198,"headers":{"request":["GET \/ HTTP\/1.1","Host: google.com","Accept: text\/html,application\/xhtml+xml,application\/xml;q=0.9,image\/webp,*\/*;q=0.8","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 301 Moved Permanently","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=2592000","content-length: 220","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:46:01 GMT","expires: Sat, 06 Dec 2014 18:46:01 GMT","location: https:\/\/www.google.com\/","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":0,"number":1},{"method":"GET","host":"www.google.com","url":"\/","responseCode":"200","load_ms":"203","ttfb_ms":"151","load_start":"352","bytesOut":"243","bytesIn":"63244","objectSize":"0","expires":"-1","cacheControl":"private, max-age=0","contentType":"text\/html","contentEncoding":"gzip","type":"3","socket":"208","score_cache":"-1","score_cdn":"-1","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":0,"connect_ms":33,"ssl_ms":63,"gzip_total":"780","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"-1","cdn_provider":"Google","dns_start":"256","dns_end":"256","connect_start":"256","connect_end":"289","ssl_start":"289","ssl_end":"352","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/","score_progressive_jpeg":-1,"load_end":555,"ttfb_start":"352","ttfb_end":503,"download_start":503,"download_end":555,"download_ms":52,"all_start":"256","all_end":555,"all_ms":299,"headers":{"request":["GET \/ HTTP\/1.1","Host: www.google.com","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=0","content-encoding: gzip","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:46:01 GMT","expires: -1","p3p: CP=\"This is not a P3P policy! See http:\/\/www.google.com\/support\/accounts\/bin\/answer.py?hl=en&answer=151657 for more info.\"","server: gws","set-cookie: PREF=ID=d47034f5653867b9:FF=0:TM=1415299561:LM=1415299561:S=_Lnze49gy_eLNTCT; expires=Sat, 05-Nov-2016 18:46:01 GMT; path=\/; domain=.google.com","NID=67=CypCtBv6uDyjo-YeQv5XdLwuaJ_DTDUM-7trjlCcT8WURKXHoVuV_UXxT1QME9wNaKE6LqvWqhUZFoO9_V4K9mbPvC_r79XHktUlFu7m8ovfiM1vXxsot7jWrWsNqeXO; expires=Fri, 08-May-2015 18:46:01 GMT; path=\/; domain=.google.com; HttpOnly","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":1,"number":2},{"method":"GET","host":"www.google.com","url":"\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","responseCode":"200","load_ms":"288","ttfb_ms":"43","load_start":"679","bytesOut":"443","bytesIn":"139553","objectSize":"0","expires":"Fri, 06 Nov 2015 11:15:49 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"208","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"429","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/","initiator_line":"94","initiator_column":"17237","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","score_progressive_jpeg":-1,"load_end":967,"ttfb_start":"679","ttfb_end":722,"download_start":722,"download_end":967,"download_ms":245,"all_start":"679","all_end":967,"all_ms":"288","headers":{"request":["GET \/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP\/1.1","Host: www.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 200 OK","age: 27012","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 130931","content-type: text\/javascript; charset=UTF-8","date: Thu, 06 Nov 2014 11:15:49 GMT","expires: Fri, 06 Nov 2015 11:15:49 GMT","last-modified: Tue, 04 Nov 2014 19:30:26 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":2,"number":3},{"method":"GET","host":"www.google.com","url":"\/images\/srpr\/logo11w.png","responseCode":"200","load_ms":"477","ttfb_ms":"476","load_start":"679","bytesOut":"330","bytesIn":"14113","objectSize":"0","expires":"Thu, 06 Nov 2014 18:46:02 GMT","cacheControl":"private, max-age=31536000","contentType":"image\/png","type":"3","socket":"208","score_cache":"0","score_cdn":"100","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/","initiator_line":"28","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/images\/srpr\/logo11w.png","score_progressive_jpeg":-1,"load_end":1156,"ttfb_start":"679","ttfb_end":1155,"download_start":1155,"download_end":1156,"download_ms":1,"all_start":"679","all_end":1156,"all_ms":"477","headers":{"request":["GET \/images\/srpr\/logo11w.png HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=31536000","content-length: 14022","content-type: image\/png","date: Thu, 06 Nov 2014 18:46:02 GMT","expires: Thu, 06 Nov 2014 18:46:02 GMT","last-modified: Wed, 09 Oct 2013 01:35:39 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":3,"number":4},{"method":"GET","host":"ssl.gstatic.com","url":"\/gb\/images\/i1_71651352.png","responseCode":"200","load_ms":"80","ttfb_ms":"41","load_start":"807","bytesOut":"333","bytesIn":"14286","objectSize":"0","expires":"Thu, 05 Nov 2015 13:04:25 GMT","cacheControl":"public, max-age=31536000","contentType":"image\/png","type":"3","socket":"293","score_cache":"100","score_cdn":"0","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":27,"connect_ms":37,"ssl_ms":63,"gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","dns_start":"679","dns_end":"706","connect_start":"706","connect_end":"743","ssl_start":"743","ssl_end":"806","initiator":"https:\/\/www.google.com\/","initiator_line":"76","initiator_column":"35","server_count":"4","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/ssl.gstatic.com\/gb\/images\/i1_71651352.png","score_progressive_jpeg":-1,"load_end":887,"ttfb_start":"807","ttfb_end":848,"download_start":848,"download_end":887,"download_ms":39,"all_start":"679","all_end":887,"all_ms":207,"headers":{"request":["GET \/gb\/images\/i1_71651352.png HTTP\/1.1","Host: ssl.gstatic.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 200 OK","age: 106897","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-length: 14055","content-type: image\/png","date: Wed, 05 Nov 2014 13:04:25 GMT","expires: Thu, 05 Nov 2015 13:04:25 GMT","last-modified: Thu, 16 Oct 2014 18:20:30 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":4,"number":5},{"method":"GET","host":"www.gstatic.com","url":"\/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w","responseCode":"200","load_ms":"167","ttfb_ms":"164","load_start":"992","bytesOut":"392","bytesIn":"184144","objectSize":"0","expires":"Wed, 04 Nov 2015 21:10:54 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"325","score_cache":"100","score_cdn":"0","score_gzip":"100","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":50,"connect_ms":40,"ssl_ms":50,"gzip_total":"429","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","dns_start":"851","dns_end":"901","connect_start":"901","connect_end":"941","ssl_start":"941","ssl_end":"991","initiator":"https:\/\/www.google.com\/","initiator_line":"57","initiator_column":"143","server_count":"4","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.gstatic.com\/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w","score_progressive_jpeg":-1,"load_end":1159,"ttfb_start":"992","ttfb_end":1156,"download_start":1156,"download_end":1159,"download_ms":3,"all_start":"851","all_end":1159,"all_ms":307,"headers":{"request":["GET \/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w HTTP\/1.1","Host: www.gstatic.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 200 OK","age: 164108","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 55207","content-type: text\/javascript; charset=UTF-8","date: Tue, 04 Nov 2014 21:10:54 GMT","expires: Wed, 04 Nov 2015 21:10:54 GMT","last-modified: Mon, 03 Nov 2014 17:56:31 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":5,"number":6},{"method":"GET","host":"www.google.com","url":"\/extern_chrome\/854094c746d4c9a.js?bav=on.2,or.r_qf.","responseCode":"200","load_ms":"100","ttfb_ms":"88","load_start":"1154","bytesOut":"340","bytesIn":"13943","objectSize":"0","expires":"Thu, 05 Nov 2015 00:00:00 GMT","cacheControl":"private","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"208","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"422","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31382038","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","initiator_line":"1187","initiator_column":"181","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/extern_chrome\/854094c746d4c9a.js?bav=on.2,or.r_qf.","score_progressive_jpeg":-1,"load_end":1254,"ttfb_start":"1154","ttfb_end":1242,"download_start":1242,"download_end":1254,"download_ms":12,"all_start":"1154","all_end":1254,"all_ms":"100","headers":{"request":["GET \/extern_chrome\/854094c746d4c9a.js?bav=on.2,or.r_qf. HTTP\/1.1","Host: www.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private","content-disposition: attachment; filename=\"f.txt\"","content-encoding: gzip","content-length: 13825","content-type: text\/javascript; charset=UTF-8","date: Thu, 06 Nov 2014 18:46:02 GMT","expires: Thu, 05 Nov 2015 00:00:00 GMT","last-modified: Thu, 07 Nov 2013 00:00:00 GMT","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":6,"number":7},{"method":"GET","host":"www.google.com","url":"\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=0\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","responseCode":"200","load_ms":"121","ttfb_ms":"41","load_start":"1223","bytesOut":"682","bytesIn":"48768","objectSize":"0","expires":"Fri, 06 Nov 2015 04:39:44 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"208","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"428","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","initiator_line":"101","initiator_column":"112","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=0\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","score_progressive_jpeg":-1,"load_end":1344,"ttfb_start":"1223","ttfb_end":1264,"download_start":1264,"download_end":1344,"download_ms":80,"all_start":"1223","all_end":1344,"all_ms":"121","headers":{"request":["GET \/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=0\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP\/1.1","Host: www.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 200 OK","age: 50778","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 48157","content-type: text\/javascript; charset=UTF-8","date: Thu, 06 Nov 2014 04:39:44 GMT","expires: Fri, 06 Nov 2015 04:39:44 GMT","last-modified: Tue, 04 Nov 2014 19:30:26 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":7,"number":8},{"method":"GET","host":"www.google.com","url":"\/textinputassistant\/tia.png","responseCode":"200","load_ms":"167","ttfb_ms":"164","load_start":"1224","bytesOut":"333","bytesIn":"479","objectSize":"0","expires":"Thu, 05 Nov 2015 04:43:41 GMT","cacheControl":"public, max-age=31536000","contentType":"image\/png","type":"3","socket":"208","score_cache":"100","score_cdn":"100","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/","initiator_line":"1","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/textinputassistant\/tia.png","score_progressive_jpeg":-1,"load_end":1391,"ttfb_start":"1224","ttfb_end":1388,"download_start":1388,"download_end":1391,"download_ms":3,"all_start":"1224","all_end":1391,"all_ms":"167","headers":{"request":["GET \/textinputassistant\/tia.png HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 200 OK","age: 136941","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-length: 387","content-type: image\/png","date: Wed, 05 Nov 2014 04:43:41 GMT","expires: Thu, 05 Nov 2015 04:43:41 GMT","last-modified: Mon, 02 Apr 2012 02:13:37 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":8,"number":9},{"method":"GET","host":"apis.google.com","url":"\/_\/scs\/abc-static\/_\/js\/k=gapi.gapi.en.3_mJ9Wvc9FU.O\/m=gapi_iframes,googleapis_client,plusone\/rt=j\/sv=1\/d=1\/ed=1\/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg\/cb=gapi.loaded_0","responseCode":"200","load_ms":"123","ttfb_ms":"48","load_start":"1338","bytesOut":"456","bytesIn":"49179","objectSize":"0","expires":"Thu, 05 Nov 2015 15:23:35 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"400","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":26,"connect_ms":37,"ssl_ms":54,"gzip_total":"428","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"1221","dns_end":"1247","connect_start":"1247","connect_end":"1284","ssl_start":"1284","ssl_end":"1338","initiator":"https:\/\/www.gstatic.com\/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w","initiator_line":"138","initiator_column":"381","server_count":"11","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/apis.google.com\/_\/scs\/abc-static\/_\/js\/k=gapi.gapi.en.3_mJ9Wvc9FU.O\/m=gapi_iframes,googleapis_client,plusone\/rt=j\/sv=1\/d=1\/ed=1\/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg\/cb=gapi.loaded_0","score_progressive_jpeg":-1,"load_end":1461,"ttfb_start":"1338","ttfb_end":1386,"download_start":1386,"download_end":1461,"download_ms":75,"all_start":"1221","all_end":1461,"all_ms":240,"headers":{"request":["GET \/_\/scs\/abc-static\/_\/js\/k=gapi.gapi.en.3_mJ9Wvc9FU.O\/m=gapi_iframes,googleapis_client,plusone\/rt=j\/sv=1\/d=1\/ed=1\/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg\/cb=gapi.loaded_0 HTTP\/1.1","Host: apis.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 200 OK","age: 98547","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 48911","content-type: text\/javascript; charset=UTF-8","date: Wed, 05 Nov 2014 15:23:35 GMT","expires: Thu, 05 Nov 2015 15:23:35 GMT","last-modified: Thu, 16 Oct 2014 07:30:29 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":9,"number":10},{"method":"GET","host":"www.google.com","url":"\/images\/nav_logo195.png","responseCode":"200","load_ms":"68","ttfb_ms":"53","load_start":"1539","bytesOut":"329","bytesIn":"16296","objectSize":"0","expires":"Thu, 06 Nov 2014 18:46:02 GMT","cacheControl":"private, max-age=31536000","contentType":"image\/png","type":"3","socket":"208","score_cache":"0","score_cdn":"100","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/images\/nav_logo195.png","score_progressive_jpeg":-1,"load_end":1607,"ttfb_start":"1539","ttfb_end":1592,"download_start":1592,"download_end":1607,"download_ms":15,"all_start":"1539","all_end":1607,"all_ms":"68","headers":{"request":["GET \/images\/nav_logo195.png HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=31536000","content-length: 16214","content-type: image\/png","date: Thu, 06 Nov 2014 18:46:02 GMT","expires: Thu, 06 Nov 2014 18:46:02 GMT","last-modified: Wed, 21 May 2014 00:02:44 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":10,"number":11},{"method":"GET","host":"www.google.com","url":"\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=6cFbVJTsJ63CsATV04D4Dw&e=18167,4003510,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020562,4020666,4020921,4021073,4021416,4022073,4022318,4022495,4022688,4022919,4023367,4023567,4023709,4023971,4024702,4024731,4024797,4024905,8500272,8500325,8500393,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.61.28.sb.36.p.10.spch.5.ifl.2.foot.1&action=&srt=588&p=s&npn=1&rt=xjsls.27,prt.28,xjses.447,xjsee.551,xjs.568,ol.935,iml.583,wsrt.588,cst.95,dnst.0,rqst.203,rspt.52","responseCode":"204","load_ms":"72","ttfb_ms":"69","load_start":"1540","bytesOut":"857","bytesIn":"251","objectSize":"0","contentType":"text\/html","type":"3","socket":"208","score_cache":"0","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=6cFbVJTsJ63CsATV04D4Dw&e=18167,4003510,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020562,4020666,4020921,4021073,4021416,4022073,4022318,4022495,4022688,4022919,4023367,4023567,4023709,4023971,4024702,4024731,4024797,4024905,8500272,8500325,8500393,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.61.28.sb.36.p.10.spch.5.ifl.2.foot.1&action=&srt=588&p=s&npn=1&rt=xjsls.27,prt.28,xjses.447,xjsee.551,xjs.568,ol.935,iml.583,wsrt.588,cst.95,dnst.0,rqst.203,rspt.52","score_progressive_jpeg":-1,"load_end":1612,"ttfb_start":"1540","ttfb_end":1609,"download_start":1609,"download_end":1612,"download_ms":3,"all_start":"1540","all_end":1612,"all_ms":"72","headers":{"request":["GET \/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=6cFbVJTsJ63CsATV04D4Dw&e=18167,4003510,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020562,4020666,4020921,4021073,4021416,4022073,4022318,4022495,4022688,4022919,4023367,4023567,4023709,4023971,4024702,4024731,4024797,4024905,8500272,8500325,8500393,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.61.28.sb.36.p.10.spch.5.ifl.2.foot.1&action=&srt=588&p=s&npn=1&rt=xjsls.27,prt.28,xjses.447,xjsee.551,xjs.568,ol.935,iml.583,wsrt.588,cst.95,dnst.0,rqst.203,rspt.52 HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 204 No Content","alternate-protocol: 443:quic,p=0.01","content-length: 0","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:46:02 GMT","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":11,"number":12}],"requestsDoc":10,"responses_200":10,"responses_404":0,"responses_other":1,"result":0,"render":690,"fullyLoaded":1612,"cached":0,"docTime":1529,"domTime":0,"score_cache":72,"score_cdn":77,"score_gzip":100,"score_cookies":-1,"score_keep-alive":100,"score_minify":-1,"score_combine":100,"score_compress":-1,"score_etags":-1,"gzip_total":2916,"gzip_savings":0,"minify_total":0,"minify_savings":0,"image_total":0,"image_savings":0,"optimization_checked":1,"aft":0,"domElements":287,"pageSpeedVersion":"1.9","title":"Google","titleTime":689,"loadEventStart":1521,"loadEventEnd":1526,"domContentLoadedEventStart":616,"domContentLoadedEventEnd":650,"lastVisualChange":0,"browser_name":"Google Chrome","browser_version":"38.0.2125.111","server_count":5,"server_rtt":0,"base_page_cdn":"Google","adult_site":0,"fixed_viewport":0,"score_progressive_jpeg":-1,"firstPaint":679,"docCPUms":873.606,"fullyLoadedCPUms":1092.007,"docCPUpct":57,"fullyLoadedCPUpct":25,"isResponsive":-1,"date":1415299553,"CSI":["v","s","imc","imn","imp","ei","e","atyp","adh","xjs","action","srt","p","npn","rt","xjsls","prt","xjses","xjsee","ol","iml","wsrt","cst","dnst","rqst","rspt"],"CSI.v":3,"CSI.s":"webhp","CSI.imc":1,"CSI.imn":1,"CSI.imp":1,"CSI.ei":"6cFbVJTsJ63CsATV04D4Dw","CSI.e":"18167,4003510,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020562,4020666,4020921,4021073,4021416,4022073,4022318,4022495,4022688,4022919,4023367,4023567,4023709,4023971,4024702,4024731,4024797,4024905,8500272,8500325,8500393,8500700,10200083,10200716,10200743","CSI.atyp":"csi","CSI.adh":"","CSI.xjs":568,"CSI.action":"","CSI.srt":588,"CSI.p":"s","CSI.npn":1,"CSI.rt":"xjsls.27,prt.28,xjses.447,xjsee.551,xjs.568,ol.935,iml.583,wsrt.588,cst.95,dnst.0,rqst.203,rspt.52","CSI.xjsls":27,"CSI.prt":28,"CSI.xjses":447,"CSI.xjsee":551,"CSI.ol":935,"CSI.iml":583,"CSI.wsrt":588,"CSI.cst":95,"CSI.dnst":0,"CSI.rqst":203,"CSI.rspt":52,"SpeedIndex":0,"visualComplete":0,"run":1,"effectiveBps":451999,"effectiveBpsDoc":388820,"tester":"IE9302-192.168.103.92","pages":{"details":"http:\/\/www.webpagetest.org\/details.php?test=141106_8N_ZRC&run=1&cached=0","checklist":"http:\/\/www.webpagetest.org\/performance_optimization.php?test=141106_8N_ZRC&run=1&cached=0","breakdown":"http:\/\/www.webpagetest.org\/breakdown.php?test=141106_8N_ZRC&run=1&cached=0","domains":"http:\/\/www.webpagetest.org\/domains.php?test=141106_8N_ZRC&run=1&cached=0","screenShot":"http:\/\/www.webpagetest.org\/screen_shot.php?test=141106_8N_ZRC&run=1&cached=0"},"thumbnails":{"waterfall":"http:\/\/www.webpagetest.org\/result\/141106_8N_ZRC\/1_waterfall_thumb.png","checklist":"http:\/\/www.webpagetest.org\/result\/141106_8N_ZRC\/1_optimization_thumb.png","screenShot":"http:\/\/www.webpagetest.org\/result\/141106_8N_ZRC\/1_screen_thumb.png"},"images":{"waterfall":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_waterfall.png","connectionView":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_connection.png","checklist":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_optimization.png","screenShot":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_screen.jpg"},"rawData":{"headers":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_report.txt","pageData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_IEWPG.txt","requestsData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_IEWTR.txt","utilization":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_progress.csv"},"videoFrames":[{"time":0,"image":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/video_1\/frame_0000.jpg","VisuallyComplete":100}],"domains":{"moc.elgoog":{"bytes":595,"requests":1,"connections":1},"moc.elgoog.www":{"bytes":296647,"requests":8,"connections":1},"moc.citatsg.lss":{"bytes":14286,"requests":1,"connections":1},"moc.citatsg.www":{"bytes":184144,"requests":1,"connections":1},"moc.elgoog.sipa":{"bytes":49179,"requests":1,"connections":1}},"breakdown":{"html":{"color":[130,181,252],"bytes":64090,"requests":3},"js":{"color":[254,197,132],"bytes":435587,"requests":5},"css":{"color":[178,234,148],"bytes":0,"requests":0},"image":{"color":[196,154,232],"bytes":45174,"requests":4},"flash":{"color":[45,183,193],"bytes":0,"requests":0},"font":{"color":[255,82,62],"bytes":0,"requests":0},"other":{"color":[196,196,196],"bytes":0,"requests":0}}},"repeatView":{"URL":"https:\/\/google.com","loadTime":905,"TTFB":362,"bytesOut":10427,"bytesOutDoc":9618,"bytesIn":86869,"bytesInDoc":86708,"connections":2,"requests":[{"method":"GET","host":"google.com","url":"\/","responseCode":"301","load_ms":"64","ttfb_ms":"63","load_start":"129","bytesOut":"323","bytesIn":"595","objectSize":"0","expires":"Sat, 06 Dec 2014 18:46:12 GMT","cacheControl":"public, max-age=2592000","contentType":"text\/html","type":"3","socket":"135","score_cache":"100","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":97,"gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"2592000","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"31","ssl_start":"31","ssl_end":"128","server_count":"11","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/google.com\/","score_progressive_jpeg":-1,"load_end":193,"ttfb_start":"129","ttfb_end":192,"download_start":192,"download_end":193,"download_ms":1,"all_start":"31","all_end":193,"all_ms":161,"headers":{"request":["GET \/ HTTP\/1.1","Host: google.com","Accept: text\/html,application\/xhtml+xml,application\/xml;q=0.9,image\/webp,*\/*;q=0.8","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A3DA6AEA-1B20-4879-B6F3-31BD12123EF3"],"response":["HTTP\/1.1 301 Moved Permanently","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=2592000","content-length: 220","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:46:12 GMT","expires: Sat, 06 Dec 2014 18:46:12 GMT","location: https:\/\/www.google.com\/","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":0,"number":1},{"method":"GET","host":"www.google.com","url":"\/","responseCode":"200","load_ms":"205","ttfb_ms":"154","load_start":"208","bytesOut":"243","bytesIn":"91126","objectSize":"0","expires":"-1","cacheControl":"private, max-age=0","contentType":"text\/html","contentEncoding":"gzip","type":"3","socket":"145","score_cache":"-1","score_cdn":"-1","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":0,"connect_ms":0,"ssl_ms":0,"gzip_total":"456","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"-1","cdn_provider":"Google","dns_start":"199","dns_end":"199","connect_start":"199","connect_end":"199","ssl_start":"199","ssl_end":"199","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/","score_progressive_jpeg":-1,"load_end":413,"ttfb_start":"208","ttfb_end":362,"download_start":362,"download_end":413,"download_ms":51,"all_start":"208","all_end":413,"all_ms":"205","headers":{"request":["GET \/ HTTP\/1.1","Host: www.google.com","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A3DA6AEA-1B20-4879-B6F3-31BD12123EF3"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=0","content-encoding: gzip","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:46:12 GMT","expires: -1","server: gws","set-cookie: PREF=ID=d47034f5653867b9:U=bdb7999b3c37ff3c:FF=0:TM=1415299561:LM=1415299572:S=y1TEqCJe7cEmheqN; expires=Sat, 05-Nov-2016 18:46:12 GMT; path=\/; domain=.google.com","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":1,"number":2},{"method":"GET","host":"www.google.com","url":"\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=9MFbVJSWMajasATZ0ICQCg&e=18168,3700318,3700349,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021083,4021089,4021415,4022074,4022318,4022489,4022495,4023367,4023567,4023709,4023971,4024102,4024692,8500272,8500394,10200083,10200526,10200716&atyp=csi&adh=&xjs=init.61.28.sb.40.p.9.spch.4.fpe.1.async.1&action=&srt=453&p=s&npn=1&rt=xjsls.22,prt.23,xjses.151,xjsee.270,xjs.292,ol.485,iml.106,wsrt.453,cst.0,dnst.0,rqst.205,rspt.51","responseCode":"204","load_ms":"60","ttfb_ms":"58","load_start":"931","bytesOut":"848","bytesIn":"251","objectSize":"0","contentType":"text\/html","type":"3","socket":"145","score_cache":"0","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=9MFbVJSWMajasATZ0ICQCg&e=18168,3700318,3700349,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021083,4021089,4021415,4022074,4022318,4022489,4022495,4023367,4023567,4023709,4023971,4024102,4024692,8500272,8500394,10200083,10200526,10200716&atyp=csi&adh=&xjs=init.61.28.sb.40.p.9.spch.4.fpe.1.async.1&action=&srt=453&p=s&npn=1&rt=xjsls.22,prt.23,xjses.151,xjsee.270,xjs.292,ol.485,iml.106,wsrt.453,cst.0,dnst.0,rqst.205,rspt.51","score_progressive_jpeg":-1,"load_end":991,"ttfb_start":"931","ttfb_end":989,"download_start":989,"download_end":991,"download_ms":2,"all_start":"931","all_end":991,"all_ms":"60","headers":{"request":["GET \/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=9MFbVJSWMajasATZ0ICQCg&e=18168,3700318,3700349,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021083,4021089,4021415,4022074,4022318,4022489,4022495,4023367,4023567,4023709,4023971,4024102,4024692,8500272,8500394,10200083,10200526,10200716&atyp=csi&adh=&xjs=init.61.28.sb.40.p.9.spch.4.fpe.1.async.1&action=&srt=453&p=s&npn=1&rt=xjsls.22,prt.23,xjses.151,xjsee.270,xjs.292,ol.485,iml.106,wsrt.453,cst.0,dnst.0,rqst.205,rspt.51 HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A3DA6AEA-1B20-4879-B6F3-31BD12123EF3"],"response":["HTTP\/1.1 204 No Content","alternate-protocol: 443:quic,p=0.01","content-length: 0","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:46:13 GMT","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":2,"number":3}],"requestsDoc":2,"responses_200":1,"responses_404":0,"responses_other":1,"result":0,"render":570,"fullyLoaded":991,"cached":1,"docTime":905,"domTime":0,"score_cache":50,"score_cdn":-1,"score_gzip":100,"score_cookies":-1,"score_keep-alive":100,"score_minify":-1,"score_combine":100,"score_compress":-1,"score_etags":-1,"gzip_total":456,"gzip_savings":0,"minify_total":0,"minify_savings":0,"image_total":0,"image_savings":0,"optimization_checked":1,"aft":0,"domElements":287,"pageSpeedVersion":"1.9","title":"Google","titleTime":669,"loadEventStart":923,"loadEventEnd":946,"domContentLoadedEventStart":476,"domContentLoadedEventEnd":511,"lastVisualChange":0,"browser_name":"Google Chrome","browser_version":"38.0.2125.111","server_count":5,"server_rtt":0,"base_page_cdn":"Google","adult_site":0,"fixed_viewport":0,"score_progressive_jpeg":-1,"firstPaint":542,"docCPUms":748.805,"fullyLoadedCPUms":858.005,"docCPUpct":79,"fullyLoadedCPUpct":28,"isResponsive":-1,"date":1415299564,"CSI":["v","s","imc","imn","imp","ei","e","atyp","adh","xjs","action","srt","p","npn","rt","xjsls","prt","xjses","xjsee","ol","iml","wsrt","cst","dnst","rqst","rspt"],"CSI.v":3,"CSI.s":"webhp","CSI.imc":1,"CSI.imn":1,"CSI.imp":1,"CSI.ei":"9MFbVJSWMajasATZ0ICQCg","CSI.e":"18168,3700318,3700349,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021083,4021089,4021415,4022074,4022318,4022489,4022495,4023367,4023567,4023709,4023971,4024102,4024692,8500272,8500394,10200083,10200526,10200716","CSI.atyp":"csi","CSI.adh":"","CSI.xjs":292,"CSI.action":"","CSI.srt":453,"CSI.p":"s","CSI.npn":1,"CSI.rt":"xjsls.22,prt.23,xjses.151,xjsee.270,xjs.292,ol.485,iml.106,wsrt.453,cst.0,dnst.0,rqst.205,rspt.51","CSI.xjsls":22,"CSI.prt":23,"CSI.xjses":151,"CSI.xjsee":270,"CSI.ol":485,"CSI.iml":106,"CSI.wsrt":453,"CSI.cst":0,"CSI.dnst":0,"CSI.rqst":205,"CSI.rspt":51,"SpeedIndex":0,"visualComplete":0,"run":1,"effectiveBps":138106,"effectiveBpsDoc":159683,"tester":"IE9302-192.168.103.92","pages":{"details":"http:\/\/www.webpagetest.org\/details.php?test=141106_8N_ZRC&run=1&cached=1","checklist":"http:\/\/www.webpagetest.org\/performance_optimization.php?test=141106_8N_ZRC&run=1&cached=1","breakdown":"http:\/\/www.webpagetest.org\/breakdown.php?test=141106_8N_ZRC&run=1&cached=1","domains":"http:\/\/www.webpagetest.org\/domains.php?test=141106_8N_ZRC&run=1&cached=1","screenShot":"http:\/\/www.webpagetest.org\/screen_shot.php?test=141106_8N_ZRC&run=1&cached=1"},"thumbnails":{"waterfall":"http:\/\/www.webpagetest.org\/result\/141106_8N_ZRC\/1_Cached_waterfall_thumb.png","checklist":"http:\/\/www.webpagetest.org\/result\/141106_8N_ZRC\/1_Cached_optimization_thumb.png","screenShot":"http:\/\/www.webpagetest.org\/result\/141106_8N_ZRC\/1_Cached_screen_thumb.png"},"images":{"waterfall":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_Cached_waterfall.png","connectionView":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_Cached_connection.png","checklist":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_Cached_optimization.png","screenShot":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_Cached_screen.jpg"},"rawData":{"headers":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_Cached_report.txt","pageData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_Cached_IEWPG.txt","requestsData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_Cached_IEWTR.txt","utilization":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_Cached_progress.csv"},"videoFrames":[{"time":0,"image":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/video_1_cached\/frame_0000.jpg","VisuallyComplete":100}],"domains":{"moc.elgoog":{"bytes":595,"requests":1,"connections":1},"moc.elgoog.www":{"bytes":91377,"requests":2,"connections":1}},"breakdown":{"html":{"color":[130,181,252],"bytes":91972,"requests":3},"js":{"color":[254,197,132],"bytes":0,"requests":0},"css":{"color":[178,234,148],"bytes":0,"requests":0},"image":{"color":[196,154,232],"bytes":0,"requests":0},"flash":{"color":[45,183,193],"bytes":0,"requests":0},"font":{"color":[255,82,62],"bytes":0,"requests":0},"other":{"color":[196,196,196],"bytes":0,"requests":0}}}}},"fvonly":false,"successfulFVRuns":1,"successfulRVRuns":1,"average":{"firstView":{"loadTime":1529,"TTFB":503,"bytesOut":9808,"bytesOutDoc":7942,"bytesIn":501267,"bytesInDoc":398930,"connections":5,"requests":12,"requestsDoc":10,"responses_200":10,"responses_404":0,"responses_other":1,"result":0,"render":690,"fullyLoaded":1612,"cached":0,"docTime":1529,"domTime":0,"score_cache":72,"score_cdn":77,"score_gzip":100,"score_cookies":-1,"score_keep-alive":100,"score_minify":-1,"score_combine":100,"score_compress":-1,"score_etags":-1,"gzip_total":2916,"gzip_savings":0,"minify_total":0,"minify_savings":0,"image_total":0,"image_savings":0,"optimization_checked":1,"aft":0,"domElements":287,"pageSpeedVersion":1.9,"titleTime":689,"loadEventStart":1521,"loadEventEnd":1526,"domContentLoadedEventStart":616,"domContentLoadedEventEnd":650,"lastVisualChange":0,"server_count":5,"server_rtt":0,"adult_site":0,"fixed_viewport":0,"score_progressive_jpeg":-1,"firstPaint":679,"docCPUms":873.606,"fullyLoadedCPUms":1092.007,"docCPUpct":57,"fullyLoadedCPUpct":25,"isResponsive":-1,"date":1415299553,"CSI.v":3,"CSI.imc":1,"CSI.imn":1,"CSI.imp":1,"CSI.xjs":568,"CSI.srt":588,"CSI.npn":1,"CSI.xjsls":27,"CSI.prt":28,"CSI.xjses":447,"CSI.xjsee":551,"CSI.ol":935,"CSI.iml":583,"CSI.wsrt":588,"CSI.cst":95,"CSI.dnst":0,"CSI.rqst":203,"CSI.rspt":52,"SpeedIndex":0,"visualComplete":0,"run":1,"effectiveBps":451999,"effectiveBpsDoc":388820,"avgRun":1},"repeatView":{"loadTime":905,"TTFB":362,"bytesOut":10427,"bytesOutDoc":9618,"bytesIn":86869,"bytesInDoc":86708,"connections":2,"requests":3,"requestsDoc":2,"responses_200":1,"responses_404":0,"responses_other":1,"result":0,"render":570,"fullyLoaded":991,"cached":1,"docTime":905,"domTime":0,"score_cache":50,"score_cdn":-1,"score_gzip":100,"score_cookies":-1,"score_keep-alive":100,"score_minify":-1,"score_combine":100,"score_compress":-1,"score_etags":-1,"gzip_total":456,"gzip_savings":0,"minify_total":0,"minify_savings":0,"image_total":0,"image_savings":0,"optimization_checked":1,"aft":0,"domElements":287,"pageSpeedVersion":1.9,"titleTime":669,"loadEventStart":923,"loadEventEnd":946,"domContentLoadedEventStart":476,"domContentLoadedEventEnd":511,"lastVisualChange":0,"server_count":5,"server_rtt":0,"adult_site":0,"fixed_viewport":0,"score_progressive_jpeg":-1,"firstPaint":542,"docCPUms":748.805,"fullyLoadedCPUms":858.005,"docCPUpct":79,"fullyLoadedCPUpct":28,"isResponsive":-1,"date":1415299564,"CSI.v":3,"CSI.imc":1,"CSI.imn":1,"CSI.imp":1,"CSI.xjs":292,"CSI.srt":453,"CSI.npn":1,"CSI.xjsls":22,"CSI.prt":23,"CSI.xjses":151,"CSI.xjsee":270,"CSI.ol":485,"CSI.iml":106,"CSI.wsrt":453,"CSI.cst":0,"CSI.dnst":0,"CSI.rqst":205,"CSI.rspt":51,"SpeedIndex":0,"visualComplete":0,"run":1,"effectiveBps":138106,"effectiveBpsDoc":159683,"avgRun":1}},"standardDeviation":{"firstView":{"loadTime":0,"TTFB":0,"bytesOut":0,"bytesOutDoc":0,"bytesIn":0,"bytesInDoc":0,"connections":0,"requests":0,"requestsDoc":0,"responses_200":0,"responses_404":0,"responses_other":0,"result":0,"render":0,"fullyLoaded":0,"cached":0,"docTime":0,"domTime":0,"score_cache":0,"score_cdn":0,"score_gzip":0,"score_cookies":0,"score_keep-alive":0,"score_minify":0,"score_combine":0,"score_compress":0,"score_etags":0,"gzip_total":0,"gzip_savings":0,"minify_total":0,"minify_savings":0,"image_total":0,"image_savings":0,"optimization_checked":0,"aft":0,"domElements":0,"pageSpeedVersion":0,"titleTime":0,"loadEventStart":0,"loadEventEnd":0,"domContentLoadedEventStart":0,"domContentLoadedEventEnd":0,"lastVisualChange":0,"server_count":0,"server_rtt":0,"adult_site":0,"fixed_viewport":0,"score_progressive_jpeg":0,"firstPaint":0,"docCPUms":0,"fullyLoadedCPUms":0,"docCPUpct":0,"fullyLoadedCPUpct":0,"isResponsive":0,"date":0,"CSI.v":0,"CSI.imc":0,"CSI.imn":0,"CSI.imp":0,"CSI.xjs":0,"CSI.srt":0,"CSI.npn":0,"CSI.xjsls":0,"CSI.prt":0,"CSI.xjses":0,"CSI.xjsee":0,"CSI.ol":0,"CSI.iml":0,"CSI.wsrt":0,"CSI.cst":0,"CSI.dnst":0,"CSI.rqst":0,"CSI.rspt":0,"SpeedIndex":0,"visualComplete":0,"run":0,"effectiveBps":0,"effectiveBpsDoc":0,"avgRun":null},"repeatView":{"loadTime":0,"TTFB":0,"bytesOut":0,"bytesOutDoc":0,"bytesIn":0,"bytesInDoc":0,"connections":0,"requests":0,"requestsDoc":0,"responses_200":0,"responses_404":0,"responses_other":0,"result":0,"render":0,"fullyLoaded":0,"cached":0,"docTime":0,"domTime":0,"score_cache":0,"score_cdn":0,"score_gzip":0,"score_cookies":0,"score_keep-alive":0,"score_minify":0,"score_combine":0,"score_compress":0,"score_etags":0,"gzip_total":0,"gzip_savings":0,"minify_total":0,"minify_savings":0,"image_total":0,"image_savings":0,"optimization_checked":0,"aft":0,"domElements":0,"pageSpeedVersion":0,"titleTime":0,"loadEventStart":0,"loadEventEnd":0,"domContentLoadedEventStart":0,"domContentLoadedEventEnd":0,"lastVisualChange":0,"server_count":0,"server_rtt":0,"adult_site":0,"fixed_viewport":0,"score_progressive_jpeg":0,"firstPaint":0,"docCPUms":0,"fullyLoadedCPUms":0,"docCPUpct":0,"fullyLoadedCPUpct":0,"isResponsive":0,"date":0,"CSI.v":0,"CSI.imc":0,"CSI.imn":0,"CSI.imp":0,"CSI.xjs":0,"CSI.srt":0,"CSI.npn":0,"CSI.xjsls":0,"CSI.prt":0,"CSI.xjses":0,"CSI.xjsee":0,"CSI.ol":0,"CSI.iml":0,"CSI.wsrt":0,"CSI.cst":0,"CSI.dnst":0,"CSI.rqst":0,"CSI.rspt":0,"SpeedIndex":0,"visualComplete":0,"run":0,"effectiveBps":0,"effectiveBpsDoc":0,"avgRun":null}},"median":{"firstView":{"URL":"https:\/\/google.com","loadTime":1529,"TTFB":503,"bytesOut":9808,"bytesOutDoc":7942,"bytesIn":501267,"bytesInDoc":398930,"connections":5,"requests":[{"method":"GET","host":"google.com","url":"\/","responseCode":"301","load_ms":"66","ttfb_ms":"64","load_start":"183","bytesOut":"323","bytesIn":"595","objectSize":"0","expires":"Sat, 06 Dec 2014 18:46:01 GMT","cacheControl":"public, max-age=2592000","contentType":"text\/html","type":"3","socket":"192","score_cache":"100","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":36,"ssl_ms":96,"gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"2592000","dns_start":"0","dns_end":"50","connect_start":"50","connect_end":"86","ssl_start":"86","ssl_end":"182","server_count":"11","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/google.com\/","score_progressive_jpeg":-1,"load_end":249,"ttfb_start":"183","ttfb_end":247,"download_start":247,"download_end":249,"download_ms":2,"all_start":"50","all_end":249,"all_ms":198,"headers":{"request":["GET \/ HTTP\/1.1","Host: google.com","Accept: text\/html,application\/xhtml+xml,application\/xml;q=0.9,image\/webp,*\/*;q=0.8","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 301 Moved Permanently","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=2592000","content-length: 220","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:46:01 GMT","expires: Sat, 06 Dec 2014 18:46:01 GMT","location: https:\/\/www.google.com\/","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":0,"number":1},{"method":"GET","host":"www.google.com","url":"\/","responseCode":"200","load_ms":"203","ttfb_ms":"151","load_start":"352","bytesOut":"243","bytesIn":"63244","objectSize":"0","expires":"-1","cacheControl":"private, max-age=0","contentType":"text\/html","contentEncoding":"gzip","type":"3","socket":"208","score_cache":"-1","score_cdn":"-1","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":0,"connect_ms":33,"ssl_ms":63,"gzip_total":"780","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"-1","cdn_provider":"Google","dns_start":"256","dns_end":"256","connect_start":"256","connect_end":"289","ssl_start":"289","ssl_end":"352","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/","score_progressive_jpeg":-1,"load_end":555,"ttfb_start":"352","ttfb_end":503,"download_start":503,"download_end":555,"download_ms":52,"all_start":"256","all_end":555,"all_ms":299,"headers":{"request":["GET \/ HTTP\/1.1","Host: www.google.com","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=0","content-encoding: gzip","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:46:01 GMT","expires: -1","p3p: CP=\"This is not a P3P policy! See http:\/\/www.google.com\/support\/accounts\/bin\/answer.py?hl=en&answer=151657 for more info.\"","server: gws","set-cookie: PREF=ID=d47034f5653867b9:FF=0:TM=1415299561:LM=1415299561:S=_Lnze49gy_eLNTCT; expires=Sat, 05-Nov-2016 18:46:01 GMT; path=\/; domain=.google.com","NID=67=CypCtBv6uDyjo-YeQv5XdLwuaJ_DTDUM-7trjlCcT8WURKXHoVuV_UXxT1QME9wNaKE6LqvWqhUZFoO9_V4K9mbPvC_r79XHktUlFu7m8ovfiM1vXxsot7jWrWsNqeXO; expires=Fri, 08-May-2015 18:46:01 GMT; path=\/; domain=.google.com; HttpOnly","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":1,"number":2},{"method":"GET","host":"www.google.com","url":"\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","responseCode":"200","load_ms":"288","ttfb_ms":"43","load_start":"679","bytesOut":"443","bytesIn":"139553","objectSize":"0","expires":"Fri, 06 Nov 2015 11:15:49 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"208","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"429","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/","initiator_line":"94","initiator_column":"17237","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","score_progressive_jpeg":-1,"load_end":967,"ttfb_start":"679","ttfb_end":722,"download_start":722,"download_end":967,"download_ms":245,"all_start":"679","all_end":967,"all_ms":"288","headers":{"request":["GET \/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP\/1.1","Host: www.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 200 OK","age: 27012","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 130931","content-type: text\/javascript; charset=UTF-8","date: Thu, 06 Nov 2014 11:15:49 GMT","expires: Fri, 06 Nov 2015 11:15:49 GMT","last-modified: Tue, 04 Nov 2014 19:30:26 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":2,"number":3},{"method":"GET","host":"www.google.com","url":"\/images\/srpr\/logo11w.png","responseCode":"200","load_ms":"477","ttfb_ms":"476","load_start":"679","bytesOut":"330","bytesIn":"14113","objectSize":"0","expires":"Thu, 06 Nov 2014 18:46:02 GMT","cacheControl":"private, max-age=31536000","contentType":"image\/png","type":"3","socket":"208","score_cache":"0","score_cdn":"100","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/","initiator_line":"28","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/images\/srpr\/logo11w.png","score_progressive_jpeg":-1,"load_end":1156,"ttfb_start":"679","ttfb_end":1155,"download_start":1155,"download_end":1156,"download_ms":1,"all_start":"679","all_end":1156,"all_ms":"477","headers":{"request":["GET \/images\/srpr\/logo11w.png HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=31536000","content-length: 14022","content-type: image\/png","date: Thu, 06 Nov 2014 18:46:02 GMT","expires: Thu, 06 Nov 2014 18:46:02 GMT","last-modified: Wed, 09 Oct 2013 01:35:39 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":3,"number":4},{"method":"GET","host":"ssl.gstatic.com","url":"\/gb\/images\/i1_71651352.png","responseCode":"200","load_ms":"80","ttfb_ms":"41","load_start":"807","bytesOut":"333","bytesIn":"14286","objectSize":"0","expires":"Thu, 05 Nov 2015 13:04:25 GMT","cacheControl":"public, max-age=31536000","contentType":"image\/png","type":"3","socket":"293","score_cache":"100","score_cdn":"0","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":27,"connect_ms":37,"ssl_ms":63,"gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","dns_start":"679","dns_end":"706","connect_start":"706","connect_end":"743","ssl_start":"743","ssl_end":"806","initiator":"https:\/\/www.google.com\/","initiator_line":"76","initiator_column":"35","server_count":"4","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/ssl.gstatic.com\/gb\/images\/i1_71651352.png","score_progressive_jpeg":-1,"load_end":887,"ttfb_start":"807","ttfb_end":848,"download_start":848,"download_end":887,"download_ms":39,"all_start":"679","all_end":887,"all_ms":207,"headers":{"request":["GET \/gb\/images\/i1_71651352.png HTTP\/1.1","Host: ssl.gstatic.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 200 OK","age: 106897","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-length: 14055","content-type: image\/png","date: Wed, 05 Nov 2014 13:04:25 GMT","expires: Thu, 05 Nov 2015 13:04:25 GMT","last-modified: Thu, 16 Oct 2014 18:20:30 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":4,"number":5},{"method":"GET","host":"www.gstatic.com","url":"\/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w","responseCode":"200","load_ms":"167","ttfb_ms":"164","load_start":"992","bytesOut":"392","bytesIn":"184144","objectSize":"0","expires":"Wed, 04 Nov 2015 21:10:54 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"325","score_cache":"100","score_cdn":"0","score_gzip":"100","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":50,"connect_ms":40,"ssl_ms":50,"gzip_total":"429","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","dns_start":"851","dns_end":"901","connect_start":"901","connect_end":"941","ssl_start":"941","ssl_end":"991","initiator":"https:\/\/www.google.com\/","initiator_line":"57","initiator_column":"143","server_count":"4","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.gstatic.com\/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w","score_progressive_jpeg":-1,"load_end":1159,"ttfb_start":"992","ttfb_end":1156,"download_start":1156,"download_end":1159,"download_ms":3,"all_start":"851","all_end":1159,"all_ms":307,"headers":{"request":["GET \/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w HTTP\/1.1","Host: www.gstatic.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 200 OK","age: 164108","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 55207","content-type: text\/javascript; charset=UTF-8","date: Tue, 04 Nov 2014 21:10:54 GMT","expires: Wed, 04 Nov 2015 21:10:54 GMT","last-modified: Mon, 03 Nov 2014 17:56:31 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":5,"number":6},{"method":"GET","host":"www.google.com","url":"\/extern_chrome\/854094c746d4c9a.js?bav=on.2,or.r_qf.","responseCode":"200","load_ms":"100","ttfb_ms":"88","load_start":"1154","bytesOut":"340","bytesIn":"13943","objectSize":"0","expires":"Thu, 05 Nov 2015 00:00:00 GMT","cacheControl":"private","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"208","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"422","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31382038","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","initiator_line":"1187","initiator_column":"181","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/extern_chrome\/854094c746d4c9a.js?bav=on.2,or.r_qf.","score_progressive_jpeg":-1,"load_end":1254,"ttfb_start":"1154","ttfb_end":1242,"download_start":1242,"download_end":1254,"download_ms":12,"all_start":"1154","all_end":1254,"all_ms":"100","headers":{"request":["GET \/extern_chrome\/854094c746d4c9a.js?bav=on.2,or.r_qf. HTTP\/1.1","Host: www.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private","content-disposition: attachment; filename=\"f.txt\"","content-encoding: gzip","content-length: 13825","content-type: text\/javascript; charset=UTF-8","date: Thu, 06 Nov 2014 18:46:02 GMT","expires: Thu, 05 Nov 2015 00:00:00 GMT","last-modified: Thu, 07 Nov 2013 00:00:00 GMT","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":6,"number":7},{"method":"GET","host":"www.google.com","url":"\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=0\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","responseCode":"200","load_ms":"121","ttfb_ms":"41","load_start":"1223","bytesOut":"682","bytesIn":"48768","objectSize":"0","expires":"Fri, 06 Nov 2015 04:39:44 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"208","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"428","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","initiator_line":"101","initiator_column":"112","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=0\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","score_progressive_jpeg":-1,"load_end":1344,"ttfb_start":"1223","ttfb_end":1264,"download_start":1264,"download_end":1344,"download_ms":80,"all_start":"1223","all_end":1344,"all_ms":"121","headers":{"request":["GET \/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=0\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP\/1.1","Host: www.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 200 OK","age: 50778","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 48157","content-type: text\/javascript; charset=UTF-8","date: Thu, 06 Nov 2014 04:39:44 GMT","expires: Fri, 06 Nov 2015 04:39:44 GMT","last-modified: Tue, 04 Nov 2014 19:30:26 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":7,"number":8},{"method":"GET","host":"www.google.com","url":"\/textinputassistant\/tia.png","responseCode":"200","load_ms":"167","ttfb_ms":"164","load_start":"1224","bytesOut":"333","bytesIn":"479","objectSize":"0","expires":"Thu, 05 Nov 2015 04:43:41 GMT","cacheControl":"public, max-age=31536000","contentType":"image\/png","type":"3","socket":"208","score_cache":"100","score_cdn":"100","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/","initiator_line":"1","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/textinputassistant\/tia.png","score_progressive_jpeg":-1,"load_end":1391,"ttfb_start":"1224","ttfb_end":1388,"download_start":1388,"download_end":1391,"download_ms":3,"all_start":"1224","all_end":1391,"all_ms":"167","headers":{"request":["GET \/textinputassistant\/tia.png HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 200 OK","age: 136941","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-length: 387","content-type: image\/png","date: Wed, 05 Nov 2014 04:43:41 GMT","expires: Thu, 05 Nov 2015 04:43:41 GMT","last-modified: Mon, 02 Apr 2012 02:13:37 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":8,"number":9},{"method":"GET","host":"apis.google.com","url":"\/_\/scs\/abc-static\/_\/js\/k=gapi.gapi.en.3_mJ9Wvc9FU.O\/m=gapi_iframes,googleapis_client,plusone\/rt=j\/sv=1\/d=1\/ed=1\/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg\/cb=gapi.loaded_0","responseCode":"200","load_ms":"123","ttfb_ms":"48","load_start":"1338","bytesOut":"456","bytesIn":"49179","objectSize":"0","expires":"Thu, 05 Nov 2015 15:23:35 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"400","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":26,"connect_ms":37,"ssl_ms":54,"gzip_total":"428","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"1221","dns_end":"1247","connect_start":"1247","connect_end":"1284","ssl_start":"1284","ssl_end":"1338","initiator":"https:\/\/www.gstatic.com\/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w","initiator_line":"138","initiator_column":"381","server_count":"11","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/apis.google.com\/_\/scs\/abc-static\/_\/js\/k=gapi.gapi.en.3_mJ9Wvc9FU.O\/m=gapi_iframes,googleapis_client,plusone\/rt=j\/sv=1\/d=1\/ed=1\/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg\/cb=gapi.loaded_0","score_progressive_jpeg":-1,"load_end":1461,"ttfb_start":"1338","ttfb_end":1386,"download_start":1386,"download_end":1461,"download_ms":75,"all_start":"1221","all_end":1461,"all_ms":240,"headers":{"request":["GET \/_\/scs\/abc-static\/_\/js\/k=gapi.gapi.en.3_mJ9Wvc9FU.O\/m=gapi_iframes,googleapis_client,plusone\/rt=j\/sv=1\/d=1\/ed=1\/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg\/cb=gapi.loaded_0 HTTP\/1.1","Host: apis.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 200 OK","age: 98547","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 48911","content-type: text\/javascript; charset=UTF-8","date: Wed, 05 Nov 2014 15:23:35 GMT","expires: Thu, 05 Nov 2015 15:23:35 GMT","last-modified: Thu, 16 Oct 2014 07:30:29 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":9,"number":10},{"method":"GET","host":"www.google.com","url":"\/images\/nav_logo195.png","responseCode":"200","load_ms":"68","ttfb_ms":"53","load_start":"1539","bytesOut":"329","bytesIn":"16296","objectSize":"0","expires":"Thu, 06 Nov 2014 18:46:02 GMT","cacheControl":"private, max-age=31536000","contentType":"image\/png","type":"3","socket":"208","score_cache":"0","score_cdn":"100","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/images\/nav_logo195.png","score_progressive_jpeg":-1,"load_end":1607,"ttfb_start":"1539","ttfb_end":1592,"download_start":1592,"download_end":1607,"download_ms":15,"all_start":"1539","all_end":1607,"all_ms":"68","headers":{"request":["GET \/images\/nav_logo195.png HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=31536000","content-length: 16214","content-type: image\/png","date: Thu, 06 Nov 2014 18:46:02 GMT","expires: Thu, 06 Nov 2014 18:46:02 GMT","last-modified: Wed, 21 May 2014 00:02:44 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":10,"number":11},{"method":"GET","host":"www.google.com","url":"\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=6cFbVJTsJ63CsATV04D4Dw&e=18167,4003510,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020562,4020666,4020921,4021073,4021416,4022073,4022318,4022495,4022688,4022919,4023367,4023567,4023709,4023971,4024702,4024731,4024797,4024905,8500272,8500325,8500393,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.61.28.sb.36.p.10.spch.5.ifl.2.foot.1&action=&srt=588&p=s&npn=1&rt=xjsls.27,prt.28,xjses.447,xjsee.551,xjs.568,ol.935,iml.583,wsrt.588,cst.95,dnst.0,rqst.203,rspt.52","responseCode":"204","load_ms":"72","ttfb_ms":"69","load_start":"1540","bytesOut":"857","bytesIn":"251","objectSize":"0","contentType":"text\/html","type":"3","socket":"208","score_cache":"0","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=6cFbVJTsJ63CsATV04D4Dw&e=18167,4003510,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020562,4020666,4020921,4021073,4021416,4022073,4022318,4022495,4022688,4022919,4023367,4023567,4023709,4023971,4024702,4024731,4024797,4024905,8500272,8500325,8500393,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.61.28.sb.36.p.10.spch.5.ifl.2.foot.1&action=&srt=588&p=s&npn=1&rt=xjsls.27,prt.28,xjses.447,xjsee.551,xjs.568,ol.935,iml.583,wsrt.588,cst.95,dnst.0,rqst.203,rspt.52","score_progressive_jpeg":-1,"load_end":1612,"ttfb_start":"1540","ttfb_end":1609,"download_start":1609,"download_end":1612,"download_ms":3,"all_start":"1540","all_end":1612,"all_ms":"72","headers":{"request":["GET \/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=6cFbVJTsJ63CsATV04D4Dw&e=18167,4003510,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020562,4020666,4020921,4021073,4021416,4022073,4022318,4022495,4022688,4022919,4023367,4023567,4023709,4023971,4024702,4024731,4024797,4024905,8500272,8500325,8500393,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.61.28.sb.36.p.10.spch.5.ifl.2.foot.1&action=&srt=588&p=s&npn=1&rt=xjsls.27,prt.28,xjses.447,xjsee.551,xjs.568,ol.935,iml.583,wsrt.588,cst.95,dnst.0,rqst.203,rspt.52 HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 204 No Content","alternate-protocol: 443:quic,p=0.01","content-length: 0","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:46:02 GMT","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":11,"number":12}],"requestsDoc":10,"responses_200":10,"responses_404":0,"responses_other":1,"result":0,"render":690,"fullyLoaded":1612,"cached":0,"docTime":1529,"domTime":0,"score_cache":72,"score_cdn":77,"score_gzip":100,"score_cookies":-1,"score_keep-alive":100,"score_minify":-1,"score_combine":100,"score_compress":-1,"score_etags":-1,"gzip_total":2916,"gzip_savings":0,"minify_total":0,"minify_savings":0,"image_total":0,"image_savings":0,"optimization_checked":1,"aft":0,"domElements":287,"pageSpeedVersion":"1.9","title":"Google","titleTime":689,"loadEventStart":1521,"loadEventEnd":1526,"domContentLoadedEventStart":616,"domContentLoadedEventEnd":650,"lastVisualChange":0,"browser_name":"Google Chrome","browser_version":"38.0.2125.111","server_count":5,"server_rtt":0,"base_page_cdn":"Google","adult_site":0,"fixed_viewport":0,"score_progressive_jpeg":-1,"firstPaint":679,"docCPUms":873.606,"fullyLoadedCPUms":1092.007,"docCPUpct":57,"fullyLoadedCPUpct":25,"isResponsive":-1,"date":1415299553,"CSI":["v","s","imc","imn","imp","ei","e","atyp","adh","xjs","action","srt","p","npn","rt","xjsls","prt","xjses","xjsee","ol","iml","wsrt","cst","dnst","rqst","rspt"],"CSI.v":3,"CSI.s":"webhp","CSI.imc":1,"CSI.imn":1,"CSI.imp":1,"CSI.ei":"6cFbVJTsJ63CsATV04D4Dw","CSI.e":"18167,4003510,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020562,4020666,4020921,4021073,4021416,4022073,4022318,4022495,4022688,4022919,4023367,4023567,4023709,4023971,4024702,4024731,4024797,4024905,8500272,8500325,8500393,8500700,10200083,10200716,10200743","CSI.atyp":"csi","CSI.adh":"","CSI.xjs":568,"CSI.action":"","CSI.srt":588,"CSI.p":"s","CSI.npn":1,"CSI.rt":"xjsls.27,prt.28,xjses.447,xjsee.551,xjs.568,ol.935,iml.583,wsrt.588,cst.95,dnst.0,rqst.203,rspt.52","CSI.xjsls":27,"CSI.prt":28,"CSI.xjses":447,"CSI.xjsee":551,"CSI.ol":935,"CSI.iml":583,"CSI.wsrt":588,"CSI.cst":95,"CSI.dnst":0,"CSI.rqst":203,"CSI.rspt":52,"SpeedIndex":0,"visualComplete":0,"run":1,"effectiveBps":451999,"effectiveBpsDoc":388820,"tester":"IE9302-192.168.103.92","pages":{"details":"http:\/\/www.webpagetest.org\/details.php?test=141106_8N_ZRC&run=1&cached=0","checklist":"http:\/\/www.webpagetest.org\/performance_optimization.php?test=141106_8N_ZRC&run=1&cached=0","breakdown":"http:\/\/www.webpagetest.org\/breakdown.php?test=141106_8N_ZRC&run=1&cached=0","domains":"http:\/\/www.webpagetest.org\/domains.php?test=141106_8N_ZRC&run=1&cached=0","screenShot":"http:\/\/www.webpagetest.org\/screen_shot.php?test=141106_8N_ZRC&run=1&cached=0"},"thumbnails":{"waterfall":"http:\/\/www.webpagetest.org\/result\/141106_8N_ZRC\/1_waterfall_thumb.png","checklist":"http:\/\/www.webpagetest.org\/result\/141106_8N_ZRC\/1_optimization_thumb.png","screenShot":"http:\/\/www.webpagetest.org\/result\/141106_8N_ZRC\/1_screen_thumb.png"},"images":{"waterfall":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_waterfall.png","connectionView":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_connection.png","checklist":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_optimization.png","screenShot":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_screen.jpg"},"rawData":{"headers":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_report.txt","pageData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_IEWPG.txt","requestsData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_IEWTR.txt","utilization":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_progress.csv"},"videoFrames":[{"time":0,"image":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/video_1\/frame_0000.jpg","VisuallyComplete":100}],"domains":{"moc.elgoog":{"bytes":595,"requests":1,"connections":1},"moc.elgoog.www":{"bytes":296647,"requests":8,"connections":1},"moc.citatsg.lss":{"bytes":14286,"requests":1,"connections":1},"moc.citatsg.www":{"bytes":184144,"requests":1,"connections":1},"moc.elgoog.sipa":{"bytes":49179,"requests":1,"connections":1}},"breakdown":{"html":{"color":[130,181,252],"bytes":64090,"requests":3},"js":{"color":[254,197,132],"bytes":435587,"requests":5},"css":{"color":[178,234,148],"bytes":0,"requests":0},"image":{"color":[196,154,232],"bytes":45174,"requests":4},"flash":{"color":[45,183,193],"bytes":0,"requests":0},"font":{"color":[255,82,62],"bytes":0,"requests":0},"other":{"color":[196,196,196],"bytes":0,"requests":0}}},"repeatView":{"URL":"https:\/\/google.com","loadTime":905,"TTFB":362,"bytesOut":10427,"bytesOutDoc":9618,"bytesIn":86869,"bytesInDoc":86708,"connections":2,"requests":[{"method":"GET","host":"google.com","url":"\/","responseCode":"301","load_ms":"64","ttfb_ms":"63","load_start":"129","bytesOut":"323","bytesIn":"595","objectSize":"0","expires":"Sat, 06 Dec 2014 18:46:12 GMT","cacheControl":"public, max-age=2592000","contentType":"text\/html","type":"3","socket":"135","score_cache":"100","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":97,"gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"2592000","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"31","ssl_start":"31","ssl_end":"128","server_count":"11","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/google.com\/","score_progressive_jpeg":-1,"load_end":193,"ttfb_start":"129","ttfb_end":192,"download_start":192,"download_end":193,"download_ms":1,"all_start":"31","all_end":193,"all_ms":161,"headers":{"request":["GET \/ HTTP\/1.1","Host: google.com","Accept: text\/html,application\/xhtml+xml,application\/xml;q=0.9,image\/webp,*\/*;q=0.8","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A3DA6AEA-1B20-4879-B6F3-31BD12123EF3"],"response":["HTTP\/1.1 301 Moved Permanently","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=2592000","content-length: 220","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:46:12 GMT","expires: Sat, 06 Dec 2014 18:46:12 GMT","location: https:\/\/www.google.com\/","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":0,"number":1},{"method":"GET","host":"www.google.com","url":"\/","responseCode":"200","load_ms":"205","ttfb_ms":"154","load_start":"208","bytesOut":"243","bytesIn":"91126","objectSize":"0","expires":"-1","cacheControl":"private, max-age=0","contentType":"text\/html","contentEncoding":"gzip","type":"3","socket":"145","score_cache":"-1","score_cdn":"-1","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":0,"connect_ms":0,"ssl_ms":0,"gzip_total":"456","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"-1","cdn_provider":"Google","dns_start":"199","dns_end":"199","connect_start":"199","connect_end":"199","ssl_start":"199","ssl_end":"199","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/","score_progressive_jpeg":-1,"load_end":413,"ttfb_start":"208","ttfb_end":362,"download_start":362,"download_end":413,"download_ms":51,"all_start":"208","all_end":413,"all_ms":"205","headers":{"request":["GET \/ HTTP\/1.1","Host: www.google.com","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A3DA6AEA-1B20-4879-B6F3-31BD12123EF3"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=0","content-encoding: gzip","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:46:12 GMT","expires: -1","server: gws","set-cookie: PREF=ID=d47034f5653867b9:U=bdb7999b3c37ff3c:FF=0:TM=1415299561:LM=1415299572:S=y1TEqCJe7cEmheqN; expires=Sat, 05-Nov-2016 18:46:12 GMT; path=\/; domain=.google.com","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":1,"number":2},{"method":"GET","host":"www.google.com","url":"\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=9MFbVJSWMajasATZ0ICQCg&e=18168,3700318,3700349,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021083,4021089,4021415,4022074,4022318,4022489,4022495,4023367,4023567,4023709,4023971,4024102,4024692,8500272,8500394,10200083,10200526,10200716&atyp=csi&adh=&xjs=init.61.28.sb.40.p.9.spch.4.fpe.1.async.1&action=&srt=453&p=s&npn=1&rt=xjsls.22,prt.23,xjses.151,xjsee.270,xjs.292,ol.485,iml.106,wsrt.453,cst.0,dnst.0,rqst.205,rspt.51","responseCode":"204","load_ms":"60","ttfb_ms":"58","load_start":"931","bytesOut":"848","bytesIn":"251","objectSize":"0","contentType":"text\/html","type":"3","socket":"145","score_cache":"0","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=9MFbVJSWMajasATZ0ICQCg&e=18168,3700318,3700349,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021083,4021089,4021415,4022074,4022318,4022489,4022495,4023367,4023567,4023709,4023971,4024102,4024692,8500272,8500394,10200083,10200526,10200716&atyp=csi&adh=&xjs=init.61.28.sb.40.p.9.spch.4.fpe.1.async.1&action=&srt=453&p=s&npn=1&rt=xjsls.22,prt.23,xjses.151,xjsee.270,xjs.292,ol.485,iml.106,wsrt.453,cst.0,dnst.0,rqst.205,rspt.51","score_progressive_jpeg":-1,"load_end":991,"ttfb_start":"931","ttfb_end":989,"download_start":989,"download_end":991,"download_ms":2,"all_start":"931","all_end":991,"all_ms":"60","headers":{"request":["GET \/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=9MFbVJSWMajasATZ0ICQCg&e=18168,3700318,3700349,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021083,4021089,4021415,4022074,4022318,4022489,4022495,4023367,4023567,4023709,4023971,4024102,4024692,8500272,8500394,10200083,10200526,10200716&atyp=csi&adh=&xjs=init.61.28.sb.40.p.9.spch.4.fpe.1.async.1&action=&srt=453&p=s&npn=1&rt=xjsls.22,prt.23,xjses.151,xjsee.270,xjs.292,ol.485,iml.106,wsrt.453,cst.0,dnst.0,rqst.205,rspt.51 HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A3DA6AEA-1B20-4879-B6F3-31BD12123EF3"],"response":["HTTP\/1.1 204 No Content","alternate-protocol: 443:quic,p=0.01","content-length: 0","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:46:13 GMT","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":2,"number":3}],"requestsDoc":2,"responses_200":1,"responses_404":0,"responses_other":1,"result":0,"render":570,"fullyLoaded":991,"cached":1,"docTime":905,"domTime":0,"score_cache":50,"score_cdn":-1,"score_gzip":100,"score_cookies":-1,"score_keep-alive":100,"score_minify":-1,"score_combine":100,"score_compress":-1,"score_etags":-1,"gzip_total":456,"gzip_savings":0,"minify_total":0,"minify_savings":0,"image_total":0,"image_savings":0,"optimization_checked":1,"aft":0,"domElements":287,"pageSpeedVersion":"1.9","title":"Google","titleTime":669,"loadEventStart":923,"loadEventEnd":946,"domContentLoadedEventStart":476,"domContentLoadedEventEnd":511,"lastVisualChange":0,"browser_name":"Google Chrome","browser_version":"38.0.2125.111","server_count":5,"server_rtt":0,"base_page_cdn":"Google","adult_site":0,"fixed_viewport":0,"score_progressive_jpeg":-1,"firstPaint":542,"docCPUms":748.805,"fullyLoadedCPUms":858.005,"docCPUpct":79,"fullyLoadedCPUpct":28,"isResponsive":-1,"date":1415299564,"CSI":["v","s","imc","imn","imp","ei","e","atyp","adh","xjs","action","srt","p","npn","rt","xjsls","prt","xjses","xjsee","ol","iml","wsrt","cst","dnst","rqst","rspt"],"CSI.v":3,"CSI.s":"webhp","CSI.imc":1,"CSI.imn":1,"CSI.imp":1,"CSI.ei":"9MFbVJSWMajasATZ0ICQCg","CSI.e":"18168,3700318,3700349,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021083,4021089,4021415,4022074,4022318,4022489,4022495,4023367,4023567,4023709,4023971,4024102,4024692,8500272,8500394,10200083,10200526,10200716","CSI.atyp":"csi","CSI.adh":"","CSI.xjs":292,"CSI.action":"","CSI.srt":453,"CSI.p":"s","CSI.npn":1,"CSI.rt":"xjsls.22,prt.23,xjses.151,xjsee.270,xjs.292,ol.485,iml.106,wsrt.453,cst.0,dnst.0,rqst.205,rspt.51","CSI.xjsls":22,"CSI.prt":23,"CSI.xjses":151,"CSI.xjsee":270,"CSI.ol":485,"CSI.iml":106,"CSI.wsrt":453,"CSI.cst":0,"CSI.dnst":0,"CSI.rqst":205,"CSI.rspt":51,"SpeedIndex":0,"visualComplete":0,"run":1,"effectiveBps":138106,"effectiveBpsDoc":159683,"tester":"IE9302-192.168.103.92","pages":{"details":"http:\/\/www.webpagetest.org\/details.php?test=141106_8N_ZRC&run=1&cached=1","checklist":"http:\/\/www.webpagetest.org\/performance_optimization.php?test=141106_8N_ZRC&run=1&cached=1","breakdown":"http:\/\/www.webpagetest.org\/breakdown.php?test=141106_8N_ZRC&run=1&cached=1","domains":"http:\/\/www.webpagetest.org\/domains.php?test=141106_8N_ZRC&run=1&cached=1","screenShot":"http:\/\/www.webpagetest.org\/screen_shot.php?test=141106_8N_ZRC&run=1&cached=1"},"thumbnails":{"waterfall":"http:\/\/www.webpagetest.org\/result\/141106_8N_ZRC\/1_Cached_waterfall_thumb.png","checklist":"http:\/\/www.webpagetest.org\/result\/141106_8N_ZRC\/1_Cached_optimization_thumb.png","screenShot":"http:\/\/www.webpagetest.org\/result\/141106_8N_ZRC\/1_Cached_screen_thumb.png"},"images":{"waterfall":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_Cached_waterfall.png","connectionView":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_Cached_connection.png","checklist":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_Cached_optimization.png","screenShot":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_Cached_screen.jpg"},"rawData":{"headers":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_Cached_report.txt","pageData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_Cached_IEWPG.txt","requestsData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_Cached_IEWTR.txt","utilization":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_Cached_progress.csv"},"videoFrames":[{"time":0,"image":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/video_1_cached\/frame_0000.jpg","VisuallyComplete":100}],"domains":{"moc.elgoog":{"bytes":595,"requests":1,"connections":1},"moc.elgoog.www":{"bytes":91377,"requests":2,"connections":1}},"breakdown":{"html":{"color":[130,181,252],"bytes":91972,"requests":3},"js":{"color":[254,197,132],"bytes":0,"requests":0},"css":{"color":[178,234,148],"bytes":0,"requests":0},"image":{"color":[196,154,232],"bytes":0,"requests":0},"flash":{"color":[45,183,193],"bytes":0,"requests":0},"font":{"color":[255,82,62],"bytes":0,"requests":0},"other":{"color":[196,196,196],"bytes":0,"requests":0}}}}},"statusCode":200,"statusText":"Test Complete"} \ No newline at end of file diff --git a/test/fixtures/responses/testResultsExtraData.json b/test/fixtures/responses/testResultsExtraData.json deleted file mode 100644 index 27a6e6f..0000000 --- a/test/fixtures/responses/testResultsExtraData.json +++ /dev/null @@ -1 +0,0 @@ -{"data":{"id":"141106_8N_ZRC","url":"https:\/\/google.com","summary":"http:\/\/www.webpagetest.org\/results.php?test=141106_8N_ZRC","testUrl":"https:\/\/google.com","location":"Dulles:Chrome","from":"Dulles, VA - Chrome<\/b> - Cable<\/b>","connectivity":"Cable","bwDown":5000,"bwUp":1000,"latency":28,"plr":"0","completed":1415299577,"tester":"IE9302-192.168.103.92","testerDNS":"192.168.103.1,192.168.0.1","runs":{"1":{"firstView":{"URL":"https:\/\/google.com","loadTime":1529,"TTFB":503,"bytesOut":9808,"bytesOutDoc":7942,"bytesIn":501267,"bytesInDoc":398930,"connections":5,"requests":[{"method":"GET","host":"google.com","url":"\/","responseCode":"301","load_ms":"66","ttfb_ms":"64","load_start":"183","bytesOut":"323","bytesIn":"595","objectSize":"0","expires":"Sat, 06 Dec 2014 18:46:01 GMT","cacheControl":"public, max-age=2592000","contentType":"text\/html","type":"3","socket":"192","score_cache":"100","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":36,"ssl_ms":96,"gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"2592000","dns_start":"0","dns_end":"50","connect_start":"50","connect_end":"86","ssl_start":"86","ssl_end":"182","server_count":"11","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/google.com\/","score_progressive_jpeg":-1,"load_end":249,"ttfb_start":"183","ttfb_end":247,"download_start":247,"download_end":249,"download_ms":2,"all_start":"50","all_end":249,"all_ms":198,"headers":{"request":["GET \/ HTTP\/1.1","Host: google.com","Accept: text\/html,application\/xhtml+xml,application\/xml;q=0.9,image\/webp,*\/*;q=0.8","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 301 Moved Permanently","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=2592000","content-length: 220","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:46:01 GMT","expires: Sat, 06 Dec 2014 18:46:01 GMT","location: https:\/\/www.google.com\/","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":0,"number":1},{"method":"GET","host":"www.google.com","url":"\/","responseCode":"200","load_ms":"203","ttfb_ms":"151","load_start":"352","bytesOut":"243","bytesIn":"63244","objectSize":"0","expires":"-1","cacheControl":"private, max-age=0","contentType":"text\/html","contentEncoding":"gzip","type":"3","socket":"208","score_cache":"-1","score_cdn":"-1","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":0,"connect_ms":33,"ssl_ms":63,"gzip_total":"780","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"-1","cdn_provider":"Google","dns_start":"256","dns_end":"256","connect_start":"256","connect_end":"289","ssl_start":"289","ssl_end":"352","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/","score_progressive_jpeg":-1,"load_end":555,"ttfb_start":"352","ttfb_end":503,"download_start":503,"download_end":555,"download_ms":52,"all_start":"256","all_end":555,"all_ms":299,"headers":{"request":["GET \/ HTTP\/1.1","Host: www.google.com","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=0","content-encoding: gzip","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:46:01 GMT","expires: -1","p3p: CP=\"This is not a P3P policy! See http:\/\/www.google.com\/support\/accounts\/bin\/answer.py?hl=en&answer=151657 for more info.\"","server: gws","set-cookie: PREF=ID=d47034f5653867b9:FF=0:TM=1415299561:LM=1415299561:S=_Lnze49gy_eLNTCT; expires=Sat, 05-Nov-2016 18:46:01 GMT; path=\/; domain=.google.com","NID=67=CypCtBv6uDyjo-YeQv5XdLwuaJ_DTDUM-7trjlCcT8WURKXHoVuV_UXxT1QME9wNaKE6LqvWqhUZFoO9_V4K9mbPvC_r79XHktUlFu7m8ovfiM1vXxsot7jWrWsNqeXO; expires=Fri, 08-May-2015 18:46:01 GMT; path=\/; domain=.google.com; HttpOnly","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":1,"number":2},{"method":"GET","host":"www.google.com","url":"\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","responseCode":"200","load_ms":"288","ttfb_ms":"43","load_start":"679","bytesOut":"443","bytesIn":"139553","objectSize":"0","expires":"Fri, 06 Nov 2015 11:15:49 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"208","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"429","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/","initiator_line":"94","initiator_column":"17237","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","score_progressive_jpeg":-1,"load_end":967,"ttfb_start":"679","ttfb_end":722,"download_start":722,"download_end":967,"download_ms":245,"all_start":"679","all_end":967,"all_ms":"288","headers":{"request":["GET \/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP\/1.1","Host: www.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 200 OK","age: 27012","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 130931","content-type: text\/javascript; charset=UTF-8","date: Thu, 06 Nov 2014 11:15:49 GMT","expires: Fri, 06 Nov 2015 11:15:49 GMT","last-modified: Tue, 04 Nov 2014 19:30:26 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":2,"number":3},{"method":"GET","host":"www.google.com","url":"\/images\/srpr\/logo11w.png","responseCode":"200","load_ms":"477","ttfb_ms":"476","load_start":"679","bytesOut":"330","bytesIn":"14113","objectSize":"0","expires":"Thu, 06 Nov 2014 18:46:02 GMT","cacheControl":"private, max-age=31536000","contentType":"image\/png","type":"3","socket":"208","score_cache":"0","score_cdn":"100","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/","initiator_line":"28","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/images\/srpr\/logo11w.png","score_progressive_jpeg":-1,"load_end":1156,"ttfb_start":"679","ttfb_end":1155,"download_start":1155,"download_end":1156,"download_ms":1,"all_start":"679","all_end":1156,"all_ms":"477","headers":{"request":["GET \/images\/srpr\/logo11w.png HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=31536000","content-length: 14022","content-type: image\/png","date: Thu, 06 Nov 2014 18:46:02 GMT","expires: Thu, 06 Nov 2014 18:46:02 GMT","last-modified: Wed, 09 Oct 2013 01:35:39 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":3,"number":4},{"method":"GET","host":"ssl.gstatic.com","url":"\/gb\/images\/i1_71651352.png","responseCode":"200","load_ms":"80","ttfb_ms":"41","load_start":"807","bytesOut":"333","bytesIn":"14286","objectSize":"0","expires":"Thu, 05 Nov 2015 13:04:25 GMT","cacheControl":"public, max-age=31536000","contentType":"image\/png","type":"3","socket":"293","score_cache":"100","score_cdn":"0","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":27,"connect_ms":37,"ssl_ms":63,"gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","dns_start":"679","dns_end":"706","connect_start":"706","connect_end":"743","ssl_start":"743","ssl_end":"806","initiator":"https:\/\/www.google.com\/","initiator_line":"76","initiator_column":"35","server_count":"4","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/ssl.gstatic.com\/gb\/images\/i1_71651352.png","score_progressive_jpeg":-1,"load_end":887,"ttfb_start":"807","ttfb_end":848,"download_start":848,"download_end":887,"download_ms":39,"all_start":"679","all_end":887,"all_ms":207,"headers":{"request":["GET \/gb\/images\/i1_71651352.png HTTP\/1.1","Host: ssl.gstatic.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 200 OK","age: 106897","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-length: 14055","content-type: image\/png","date: Wed, 05 Nov 2014 13:04:25 GMT","expires: Thu, 05 Nov 2015 13:04:25 GMT","last-modified: Thu, 16 Oct 2014 18:20:30 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":4,"number":5},{"method":"GET","host":"www.gstatic.com","url":"\/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w","responseCode":"200","load_ms":"167","ttfb_ms":"164","load_start":"992","bytesOut":"392","bytesIn":"184144","objectSize":"0","expires":"Wed, 04 Nov 2015 21:10:54 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"325","score_cache":"100","score_cdn":"0","score_gzip":"100","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":50,"connect_ms":40,"ssl_ms":50,"gzip_total":"429","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","dns_start":"851","dns_end":"901","connect_start":"901","connect_end":"941","ssl_start":"941","ssl_end":"991","initiator":"https:\/\/www.google.com\/","initiator_line":"57","initiator_column":"143","server_count":"4","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.gstatic.com\/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w","score_progressive_jpeg":-1,"load_end":1159,"ttfb_start":"992","ttfb_end":1156,"download_start":1156,"download_end":1159,"download_ms":3,"all_start":"851","all_end":1159,"all_ms":307,"headers":{"request":["GET \/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w HTTP\/1.1","Host: www.gstatic.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 200 OK","age: 164108","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 55207","content-type: text\/javascript; charset=UTF-8","date: Tue, 04 Nov 2014 21:10:54 GMT","expires: Wed, 04 Nov 2015 21:10:54 GMT","last-modified: Mon, 03 Nov 2014 17:56:31 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":5,"number":6},{"method":"GET","host":"www.google.com","url":"\/extern_chrome\/854094c746d4c9a.js?bav=on.2,or.r_qf.","responseCode":"200","load_ms":"100","ttfb_ms":"88","load_start":"1154","bytesOut":"340","bytesIn":"13943","objectSize":"0","expires":"Thu, 05 Nov 2015 00:00:00 GMT","cacheControl":"private","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"208","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"422","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31382038","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","initiator_line":"1187","initiator_column":"181","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/extern_chrome\/854094c746d4c9a.js?bav=on.2,or.r_qf.","score_progressive_jpeg":-1,"load_end":1254,"ttfb_start":"1154","ttfb_end":1242,"download_start":1242,"download_end":1254,"download_ms":12,"all_start":"1154","all_end":1254,"all_ms":"100","headers":{"request":["GET \/extern_chrome\/854094c746d4c9a.js?bav=on.2,or.r_qf. HTTP\/1.1","Host: www.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private","content-disposition: attachment; filename=\"f.txt\"","content-encoding: gzip","content-length: 13825","content-type: text\/javascript; charset=UTF-8","date: Thu, 06 Nov 2014 18:46:02 GMT","expires: Thu, 05 Nov 2015 00:00:00 GMT","last-modified: Thu, 07 Nov 2013 00:00:00 GMT","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":6,"number":7},{"method":"GET","host":"www.google.com","url":"\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=0\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","responseCode":"200","load_ms":"121","ttfb_ms":"41","load_start":"1223","bytesOut":"682","bytesIn":"48768","objectSize":"0","expires":"Fri, 06 Nov 2015 04:39:44 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"208","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"428","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","initiator_line":"101","initiator_column":"112","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=0\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","score_progressive_jpeg":-1,"load_end":1344,"ttfb_start":"1223","ttfb_end":1264,"download_start":1264,"download_end":1344,"download_ms":80,"all_start":"1223","all_end":1344,"all_ms":"121","headers":{"request":["GET \/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=0\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP\/1.1","Host: www.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 200 OK","age: 50778","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 48157","content-type: text\/javascript; charset=UTF-8","date: Thu, 06 Nov 2014 04:39:44 GMT","expires: Fri, 06 Nov 2015 04:39:44 GMT","last-modified: Tue, 04 Nov 2014 19:30:26 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":7,"number":8},{"method":"GET","host":"www.google.com","url":"\/textinputassistant\/tia.png","responseCode":"200","load_ms":"167","ttfb_ms":"164","load_start":"1224","bytesOut":"333","bytesIn":"479","objectSize":"0","expires":"Thu, 05 Nov 2015 04:43:41 GMT","cacheControl":"public, max-age=31536000","contentType":"image\/png","type":"3","socket":"208","score_cache":"100","score_cdn":"100","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/","initiator_line":"1","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/textinputassistant\/tia.png","score_progressive_jpeg":-1,"load_end":1391,"ttfb_start":"1224","ttfb_end":1388,"download_start":1388,"download_end":1391,"download_ms":3,"all_start":"1224","all_end":1391,"all_ms":"167","headers":{"request":["GET \/textinputassistant\/tia.png HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 200 OK","age: 136941","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-length: 387","content-type: image\/png","date: Wed, 05 Nov 2014 04:43:41 GMT","expires: Thu, 05 Nov 2015 04:43:41 GMT","last-modified: Mon, 02 Apr 2012 02:13:37 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":8,"number":9},{"method":"GET","host":"apis.google.com","url":"\/_\/scs\/abc-static\/_\/js\/k=gapi.gapi.en.3_mJ9Wvc9FU.O\/m=gapi_iframes,googleapis_client,plusone\/rt=j\/sv=1\/d=1\/ed=1\/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg\/cb=gapi.loaded_0","responseCode":"200","load_ms":"123","ttfb_ms":"48","load_start":"1338","bytesOut":"456","bytesIn":"49179","objectSize":"0","expires":"Thu, 05 Nov 2015 15:23:35 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"400","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":26,"connect_ms":37,"ssl_ms":54,"gzip_total":"428","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"1221","dns_end":"1247","connect_start":"1247","connect_end":"1284","ssl_start":"1284","ssl_end":"1338","initiator":"https:\/\/www.gstatic.com\/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w","initiator_line":"138","initiator_column":"381","server_count":"11","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/apis.google.com\/_\/scs\/abc-static\/_\/js\/k=gapi.gapi.en.3_mJ9Wvc9FU.O\/m=gapi_iframes,googleapis_client,plusone\/rt=j\/sv=1\/d=1\/ed=1\/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg\/cb=gapi.loaded_0","score_progressive_jpeg":-1,"load_end":1461,"ttfb_start":"1338","ttfb_end":1386,"download_start":1386,"download_end":1461,"download_ms":75,"all_start":"1221","all_end":1461,"all_ms":240,"headers":{"request":["GET \/_\/scs\/abc-static\/_\/js\/k=gapi.gapi.en.3_mJ9Wvc9FU.O\/m=gapi_iframes,googleapis_client,plusone\/rt=j\/sv=1\/d=1\/ed=1\/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg\/cb=gapi.loaded_0 HTTP\/1.1","Host: apis.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 200 OK","age: 98547","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 48911","content-type: text\/javascript; charset=UTF-8","date: Wed, 05 Nov 2014 15:23:35 GMT","expires: Thu, 05 Nov 2015 15:23:35 GMT","last-modified: Thu, 16 Oct 2014 07:30:29 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":9,"number":10},{"method":"GET","host":"www.google.com","url":"\/images\/nav_logo195.png","responseCode":"200","load_ms":"68","ttfb_ms":"53","load_start":"1539","bytesOut":"329","bytesIn":"16296","objectSize":"0","expires":"Thu, 06 Nov 2014 18:46:02 GMT","cacheControl":"private, max-age=31536000","contentType":"image\/png","type":"3","socket":"208","score_cache":"0","score_cdn":"100","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/images\/nav_logo195.png","score_progressive_jpeg":-1,"load_end":1607,"ttfb_start":"1539","ttfb_end":1592,"download_start":1592,"download_end":1607,"download_ms":15,"all_start":"1539","all_end":1607,"all_ms":"68","headers":{"request":["GET \/images\/nav_logo195.png HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=31536000","content-length: 16214","content-type: image\/png","date: Thu, 06 Nov 2014 18:46:02 GMT","expires: Thu, 06 Nov 2014 18:46:02 GMT","last-modified: Wed, 21 May 2014 00:02:44 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":10,"number":11},{"method":"GET","host":"www.google.com","url":"\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=6cFbVJTsJ63CsATV04D4Dw&e=18167,4003510,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020562,4020666,4020921,4021073,4021416,4022073,4022318,4022495,4022688,4022919,4023367,4023567,4023709,4023971,4024702,4024731,4024797,4024905,8500272,8500325,8500393,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.61.28.sb.36.p.10.spch.5.ifl.2.foot.1&action=&srt=588&p=s&npn=1&rt=xjsls.27,prt.28,xjses.447,xjsee.551,xjs.568,ol.935,iml.583,wsrt.588,cst.95,dnst.0,rqst.203,rspt.52","responseCode":"204","load_ms":"72","ttfb_ms":"69","load_start":"1540","bytesOut":"857","bytesIn":"251","objectSize":"0","contentType":"text\/html","type":"3","socket":"208","score_cache":"0","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=6cFbVJTsJ63CsATV04D4Dw&e=18167,4003510,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020562,4020666,4020921,4021073,4021416,4022073,4022318,4022495,4022688,4022919,4023367,4023567,4023709,4023971,4024702,4024731,4024797,4024905,8500272,8500325,8500393,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.61.28.sb.36.p.10.spch.5.ifl.2.foot.1&action=&srt=588&p=s&npn=1&rt=xjsls.27,prt.28,xjses.447,xjsee.551,xjs.568,ol.935,iml.583,wsrt.588,cst.95,dnst.0,rqst.203,rspt.52","score_progressive_jpeg":-1,"load_end":1612,"ttfb_start":"1540","ttfb_end":1609,"download_start":1609,"download_end":1612,"download_ms":3,"all_start":"1540","all_end":1612,"all_ms":"72","headers":{"request":["GET \/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=6cFbVJTsJ63CsATV04D4Dw&e=18167,4003510,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020562,4020666,4020921,4021073,4021416,4022073,4022318,4022495,4022688,4022919,4023367,4023567,4023709,4023971,4024702,4024731,4024797,4024905,8500272,8500325,8500393,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.61.28.sb.36.p.10.spch.5.ifl.2.foot.1&action=&srt=588&p=s&npn=1&rt=xjsls.27,prt.28,xjses.447,xjsee.551,xjs.568,ol.935,iml.583,wsrt.588,cst.95,dnst.0,rqst.203,rspt.52 HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 204 No Content","alternate-protocol: 443:quic,p=0.01","content-length: 0","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:46:02 GMT","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":11,"number":12}],"requestsDoc":10,"responses_200":10,"responses_404":0,"responses_other":1,"result":0,"render":690,"fullyLoaded":1612,"cached":0,"docTime":1529,"domTime":0,"score_cache":72,"score_cdn":77,"score_gzip":100,"score_cookies":-1,"score_keep-alive":100,"score_minify":-1,"score_combine":100,"score_compress":-1,"score_etags":-1,"gzip_total":2916,"gzip_savings":0,"minify_total":0,"minify_savings":0,"image_total":0,"image_savings":0,"optimization_checked":1,"aft":0,"domElements":287,"pageSpeedVersion":"1.9","title":"Google","titleTime":689,"loadEventStart":1521,"loadEventEnd":1526,"domContentLoadedEventStart":616,"domContentLoadedEventEnd":650,"lastVisualChange":0,"browser_name":"Google Chrome","browser_version":"38.0.2125.111","server_count":5,"server_rtt":0,"base_page_cdn":"Google","adult_site":0,"fixed_viewport":0,"score_progressive_jpeg":-1,"firstPaint":679,"docCPUms":873.606,"fullyLoadedCPUms":1092.007,"docCPUpct":57,"fullyLoadedCPUpct":25,"isResponsive":-1,"date":1415299553,"CSI":["v","s","imc","imn","imp","ei","e","atyp","adh","xjs","action","srt","p","npn","rt","xjsls","prt","xjses","xjsee","ol","iml","wsrt","cst","dnst","rqst","rspt"],"CSI.v":3,"CSI.s":"webhp","CSI.imc":1,"CSI.imn":1,"CSI.imp":1,"CSI.ei":"6cFbVJTsJ63CsATV04D4Dw","CSI.e":"18167,4003510,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020562,4020666,4020921,4021073,4021416,4022073,4022318,4022495,4022688,4022919,4023367,4023567,4023709,4023971,4024702,4024731,4024797,4024905,8500272,8500325,8500393,8500700,10200083,10200716,10200743","CSI.atyp":"csi","CSI.adh":"","CSI.xjs":568,"CSI.action":"","CSI.srt":588,"CSI.p":"s","CSI.npn":1,"CSI.rt":"xjsls.27,prt.28,xjses.447,xjsee.551,xjs.568,ol.935,iml.583,wsrt.588,cst.95,dnst.0,rqst.203,rspt.52","CSI.xjsls":27,"CSI.prt":28,"CSI.xjses":447,"CSI.xjsee":551,"CSI.ol":935,"CSI.iml":583,"CSI.wsrt":588,"CSI.cst":95,"CSI.dnst":0,"CSI.rqst":203,"CSI.rspt":52,"SpeedIndex":0,"visualComplete":0,"run":1,"effectiveBps":451999,"effectiveBpsDoc":388820,"tester":"IE9302-192.168.103.92","pages":{"details":"http:\/\/www.webpagetest.org\/details.php?test=141106_8N_ZRC&run=1&cached=0","checklist":"http:\/\/www.webpagetest.org\/performance_optimization.php?test=141106_8N_ZRC&run=1&cached=0","breakdown":"http:\/\/www.webpagetest.org\/breakdown.php?test=141106_8N_ZRC&run=1&cached=0","domains":"http:\/\/www.webpagetest.org\/domains.php?test=141106_8N_ZRC&run=1&cached=0","screenShot":"http:\/\/www.webpagetest.org\/screen_shot.php?test=141106_8N_ZRC&run=1&cached=0"},"thumbnails":{"waterfall":"http:\/\/www.webpagetest.org\/result\/141106_8N_ZRC\/1_waterfall_thumb.png","checklist":"http:\/\/www.webpagetest.org\/result\/141106_8N_ZRC\/1_optimization_thumb.png","screenShot":"http:\/\/www.webpagetest.org\/result\/141106_8N_ZRC\/1_screen_thumb.png"},"images":{"waterfall":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_waterfall.png","connectionView":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_connection.png","checklist":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_optimization.png","screenShot":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_screen.jpg"},"rawData":{"headers":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_report.txt","pageData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_IEWPG.txt","requestsData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_IEWTR.txt","utilization":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_progress.csv"},"videoFrames":[{"time":0,"image":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/video_1\/frame_0000.jpg","VisuallyComplete":100}],"domains":{"moc.elgoog":{"bytes":595,"requests":1,"connections":1},"moc.elgoog.www":{"bytes":296647,"requests":8,"connections":1},"moc.citatsg.lss":{"bytes":14286,"requests":1,"connections":1},"moc.citatsg.www":{"bytes":184144,"requests":1,"connections":1},"moc.elgoog.sipa":{"bytes":49179,"requests":1,"connections":1}},"breakdown":{"html":{"color":[130,181,252],"bytes":64090,"requests":3},"js":{"color":[254,197,132],"bytes":435587,"requests":5},"css":{"color":[178,234,148],"bytes":0,"requests":0},"image":{"color":[196,154,232],"bytes":45174,"requests":4},"flash":{"color":[45,183,193],"bytes":0,"requests":0},"font":{"color":[255,82,62],"bytes":0,"requests":0},"other":{"color":[196,196,196],"bytes":0,"requests":0}}},"repeatView":{"URL":"https:\/\/google.com","loadTime":905,"TTFB":362,"bytesOut":10427,"bytesOutDoc":9618,"bytesIn":86869,"bytesInDoc":86708,"connections":2,"requests":[{"method":"GET","host":"google.com","url":"\/","responseCode":"301","load_ms":"64","ttfb_ms":"63","load_start":"129","bytesOut":"323","bytesIn":"595","objectSize":"0","expires":"Sat, 06 Dec 2014 18:46:12 GMT","cacheControl":"public, max-age=2592000","contentType":"text\/html","type":"3","socket":"135","score_cache":"100","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":97,"gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"2592000","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"31","ssl_start":"31","ssl_end":"128","server_count":"11","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/google.com\/","score_progressive_jpeg":-1,"load_end":193,"ttfb_start":"129","ttfb_end":192,"download_start":192,"download_end":193,"download_ms":1,"all_start":"31","all_end":193,"all_ms":161,"headers":{"request":["GET \/ HTTP\/1.1","Host: google.com","Accept: text\/html,application\/xhtml+xml,application\/xml;q=0.9,image\/webp,*\/*;q=0.8","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A3DA6AEA-1B20-4879-B6F3-31BD12123EF3"],"response":["HTTP\/1.1 301 Moved Permanently","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=2592000","content-length: 220","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:46:12 GMT","expires: Sat, 06 Dec 2014 18:46:12 GMT","location: https:\/\/www.google.com\/","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":0,"number":1},{"method":"GET","host":"www.google.com","url":"\/","responseCode":"200","load_ms":"205","ttfb_ms":"154","load_start":"208","bytesOut":"243","bytesIn":"91126","objectSize":"0","expires":"-1","cacheControl":"private, max-age=0","contentType":"text\/html","contentEncoding":"gzip","type":"3","socket":"145","score_cache":"-1","score_cdn":"-1","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":0,"connect_ms":0,"ssl_ms":0,"gzip_total":"456","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"-1","cdn_provider":"Google","dns_start":"199","dns_end":"199","connect_start":"199","connect_end":"199","ssl_start":"199","ssl_end":"199","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/","score_progressive_jpeg":-1,"load_end":413,"ttfb_start":"208","ttfb_end":362,"download_start":362,"download_end":413,"download_ms":51,"all_start":"208","all_end":413,"all_ms":"205","headers":{"request":["GET \/ HTTP\/1.1","Host: www.google.com","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A3DA6AEA-1B20-4879-B6F3-31BD12123EF3"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=0","content-encoding: gzip","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:46:12 GMT","expires: -1","server: gws","set-cookie: PREF=ID=d47034f5653867b9:U=bdb7999b3c37ff3c:FF=0:TM=1415299561:LM=1415299572:S=y1TEqCJe7cEmheqN; expires=Sat, 05-Nov-2016 18:46:12 GMT; path=\/; domain=.google.com","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":1,"number":2},{"method":"GET","host":"www.google.com","url":"\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=9MFbVJSWMajasATZ0ICQCg&e=18168,3700318,3700349,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021083,4021089,4021415,4022074,4022318,4022489,4022495,4023367,4023567,4023709,4023971,4024102,4024692,8500272,8500394,10200083,10200526,10200716&atyp=csi&adh=&xjs=init.61.28.sb.40.p.9.spch.4.fpe.1.async.1&action=&srt=453&p=s&npn=1&rt=xjsls.22,prt.23,xjses.151,xjsee.270,xjs.292,ol.485,iml.106,wsrt.453,cst.0,dnst.0,rqst.205,rspt.51","responseCode":"204","load_ms":"60","ttfb_ms":"58","load_start":"931","bytesOut":"848","bytesIn":"251","objectSize":"0","contentType":"text\/html","type":"3","socket":"145","score_cache":"0","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=9MFbVJSWMajasATZ0ICQCg&e=18168,3700318,3700349,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021083,4021089,4021415,4022074,4022318,4022489,4022495,4023367,4023567,4023709,4023971,4024102,4024692,8500272,8500394,10200083,10200526,10200716&atyp=csi&adh=&xjs=init.61.28.sb.40.p.9.spch.4.fpe.1.async.1&action=&srt=453&p=s&npn=1&rt=xjsls.22,prt.23,xjses.151,xjsee.270,xjs.292,ol.485,iml.106,wsrt.453,cst.0,dnst.0,rqst.205,rspt.51","score_progressive_jpeg":-1,"load_end":991,"ttfb_start":"931","ttfb_end":989,"download_start":989,"download_end":991,"download_ms":2,"all_start":"931","all_end":991,"all_ms":"60","headers":{"request":["GET \/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=9MFbVJSWMajasATZ0ICQCg&e=18168,3700318,3700349,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021083,4021089,4021415,4022074,4022318,4022489,4022495,4023367,4023567,4023709,4023971,4024102,4024692,8500272,8500394,10200083,10200526,10200716&atyp=csi&adh=&xjs=init.61.28.sb.40.p.9.spch.4.fpe.1.async.1&action=&srt=453&p=s&npn=1&rt=xjsls.22,prt.23,xjses.151,xjsee.270,xjs.292,ol.485,iml.106,wsrt.453,cst.0,dnst.0,rqst.205,rspt.51 HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A3DA6AEA-1B20-4879-B6F3-31BD12123EF3"],"response":["HTTP\/1.1 204 No Content","alternate-protocol: 443:quic,p=0.01","content-length: 0","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:46:13 GMT","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":2,"number":3}],"requestsDoc":2,"responses_200":1,"responses_404":0,"responses_other":1,"result":0,"render":570,"fullyLoaded":991,"cached":1,"docTime":905,"domTime":0,"score_cache":50,"score_cdn":-1,"score_gzip":100,"score_cookies":-1,"score_keep-alive":100,"score_minify":-1,"score_combine":100,"score_compress":-1,"score_etags":-1,"gzip_total":456,"gzip_savings":0,"minify_total":0,"minify_savings":0,"image_total":0,"image_savings":0,"optimization_checked":1,"aft":0,"domElements":287,"pageSpeedVersion":"1.9","title":"Google","titleTime":669,"loadEventStart":923,"loadEventEnd":946,"domContentLoadedEventStart":476,"domContentLoadedEventEnd":511,"lastVisualChange":0,"browser_name":"Google Chrome","browser_version":"38.0.2125.111","server_count":5,"server_rtt":0,"base_page_cdn":"Google","adult_site":0,"fixed_viewport":0,"score_progressive_jpeg":-1,"firstPaint":542,"docCPUms":748.805,"fullyLoadedCPUms":858.005,"docCPUpct":79,"fullyLoadedCPUpct":28,"isResponsive":-1,"date":1415299564,"CSI":["v","s","imc","imn","imp","ei","e","atyp","adh","xjs","action","srt","p","npn","rt","xjsls","prt","xjses","xjsee","ol","iml","wsrt","cst","dnst","rqst","rspt"],"CSI.v":3,"CSI.s":"webhp","CSI.imc":1,"CSI.imn":1,"CSI.imp":1,"CSI.ei":"9MFbVJSWMajasATZ0ICQCg","CSI.e":"18168,3700318,3700349,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021083,4021089,4021415,4022074,4022318,4022489,4022495,4023367,4023567,4023709,4023971,4024102,4024692,8500272,8500394,10200083,10200526,10200716","CSI.atyp":"csi","CSI.adh":"","CSI.xjs":292,"CSI.action":"","CSI.srt":453,"CSI.p":"s","CSI.npn":1,"CSI.rt":"xjsls.22,prt.23,xjses.151,xjsee.270,xjs.292,ol.485,iml.106,wsrt.453,cst.0,dnst.0,rqst.205,rspt.51","CSI.xjsls":22,"CSI.prt":23,"CSI.xjses":151,"CSI.xjsee":270,"CSI.ol":485,"CSI.iml":106,"CSI.wsrt":453,"CSI.cst":0,"CSI.dnst":0,"CSI.rqst":205,"CSI.rspt":51,"SpeedIndex":0,"visualComplete":0,"run":1,"effectiveBps":138106,"effectiveBpsDoc":159683,"tester":"IE9302-192.168.103.92","pages":{"details":"http:\/\/www.webpagetest.org\/details.php?test=141106_8N_ZRC&run=1&cached=1","checklist":"http:\/\/www.webpagetest.org\/performance_optimization.php?test=141106_8N_ZRC&run=1&cached=1","breakdown":"http:\/\/www.webpagetest.org\/breakdown.php?test=141106_8N_ZRC&run=1&cached=1","domains":"http:\/\/www.webpagetest.org\/domains.php?test=141106_8N_ZRC&run=1&cached=1","screenShot":"http:\/\/www.webpagetest.org\/screen_shot.php?test=141106_8N_ZRC&run=1&cached=1"},"thumbnails":{"waterfall":"http:\/\/www.webpagetest.org\/result\/141106_8N_ZRC\/1_Cached_waterfall_thumb.png","checklist":"http:\/\/www.webpagetest.org\/result\/141106_8N_ZRC\/1_Cached_optimization_thumb.png","screenShot":"http:\/\/www.webpagetest.org\/result\/141106_8N_ZRC\/1_Cached_screen_thumb.png"},"images":{"waterfall":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_Cached_waterfall.png","connectionView":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_Cached_connection.png","checklist":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_Cached_optimization.png","screenShot":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_Cached_screen.jpg"},"rawData":{"headers":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_Cached_report.txt","pageData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_Cached_IEWPG.txt","requestsData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_Cached_IEWTR.txt","utilization":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_Cached_progress.csv"},"videoFrames":[{"time":0,"image":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/video_1_cached\/frame_0000.jpg","VisuallyComplete":100}],"domains":{"moc.elgoog":{"bytes":595,"requests":1,"connections":1},"moc.elgoog.www":{"bytes":91377,"requests":2,"connections":1}},"breakdown":{"html":{"color":[130,181,252],"bytes":91972,"requests":3},"js":{"color":[254,197,132],"bytes":0,"requests":0},"css":{"color":[178,234,148],"bytes":0,"requests":0},"image":{"color":[196,154,232],"bytes":0,"requests":0},"flash":{"color":[45,183,193],"bytes":0,"requests":0},"font":{"color":[255,82,62],"bytes":0,"requests":0},"other":{"color":[196,196,196],"bytes":0,"requests":0}}}}},"fvonly":false,"successfulFVRuns":1,"successfulRVRuns":1,"average":{"firstView":{"loadTime":1529,"TTFB":503,"bytesOut":9808,"bytesOutDoc":7942,"bytesIn":501267,"bytesInDoc":398930,"connections":5,"requests":12,"requestsDoc":10,"responses_200":10,"responses_404":0,"responses_other":1,"result":0,"render":690,"fullyLoaded":1612,"cached":0,"docTime":1529,"domTime":0,"score_cache":72,"score_cdn":77,"score_gzip":100,"score_cookies":-1,"score_keep-alive":100,"score_minify":-1,"score_combine":100,"score_compress":-1,"score_etags":-1,"gzip_total":2916,"gzip_savings":0,"minify_total":0,"minify_savings":0,"image_total":0,"image_savings":0,"optimization_checked":1,"aft":0,"domElements":287,"pageSpeedVersion":1.9,"titleTime":689,"loadEventStart":1521,"loadEventEnd":1526,"domContentLoadedEventStart":616,"domContentLoadedEventEnd":650,"lastVisualChange":0,"server_count":5,"server_rtt":0,"adult_site":0,"fixed_viewport":0,"score_progressive_jpeg":-1,"firstPaint":679,"docCPUms":873.606,"fullyLoadedCPUms":1092.007,"docCPUpct":57,"fullyLoadedCPUpct":25,"isResponsive":-1,"date":1415299553,"CSI.v":3,"CSI.imc":1,"CSI.imn":1,"CSI.imp":1,"CSI.xjs":568,"CSI.srt":588,"CSI.npn":1,"CSI.xjsls":27,"CSI.prt":28,"CSI.xjses":447,"CSI.xjsee":551,"CSI.ol":935,"CSI.iml":583,"CSI.wsrt":588,"CSI.cst":95,"CSI.dnst":0,"CSI.rqst":203,"CSI.rspt":52,"SpeedIndex":0,"visualComplete":0,"run":1,"effectiveBps":451999,"effectiveBpsDoc":388820,"avgRun":1},"repeatView":{"loadTime":905,"TTFB":362,"bytesOut":10427,"bytesOutDoc":9618,"bytesIn":86869,"bytesInDoc":86708,"connections":2,"requests":3,"requestsDoc":2,"responses_200":1,"responses_404":0,"responses_other":1,"result":0,"render":570,"fullyLoaded":991,"cached":1,"docTime":905,"domTime":0,"score_cache":50,"score_cdn":-1,"score_gzip":100,"score_cookies":-1,"score_keep-alive":100,"score_minify":-1,"score_combine":100,"score_compress":-1,"score_etags":-1,"gzip_total":456,"gzip_savings":0,"minify_total":0,"minify_savings":0,"image_total":0,"image_savings":0,"optimization_checked":1,"aft":0,"domElements":287,"pageSpeedVersion":1.9,"titleTime":669,"loadEventStart":923,"loadEventEnd":946,"domContentLoadedEventStart":476,"domContentLoadedEventEnd":511,"lastVisualChange":0,"server_count":5,"server_rtt":0,"adult_site":0,"fixed_viewport":0,"score_progressive_jpeg":-1,"firstPaint":542,"docCPUms":748.805,"fullyLoadedCPUms":858.005,"docCPUpct":79,"fullyLoadedCPUpct":28,"isResponsive":-1,"date":1415299564,"CSI.v":3,"CSI.imc":1,"CSI.imn":1,"CSI.imp":1,"CSI.xjs":292,"CSI.srt":453,"CSI.npn":1,"CSI.xjsls":22,"CSI.prt":23,"CSI.xjses":151,"CSI.xjsee":270,"CSI.ol":485,"CSI.iml":106,"CSI.wsrt":453,"CSI.cst":0,"CSI.dnst":0,"CSI.rqst":205,"CSI.rspt":51,"SpeedIndex":0,"visualComplete":0,"run":1,"effectiveBps":138106,"effectiveBpsDoc":159683,"avgRun":1}},"standardDeviation":{"firstView":{"loadTime":0,"TTFB":0,"bytesOut":0,"bytesOutDoc":0,"bytesIn":0,"bytesInDoc":0,"connections":0,"requests":0,"requestsDoc":0,"responses_200":0,"responses_404":0,"responses_other":0,"result":0,"render":0,"fullyLoaded":0,"cached":0,"docTime":0,"domTime":0,"score_cache":0,"score_cdn":0,"score_gzip":0,"score_cookies":0,"score_keep-alive":0,"score_minify":0,"score_combine":0,"score_compress":0,"score_etags":0,"gzip_total":0,"gzip_savings":0,"minify_total":0,"minify_savings":0,"image_total":0,"image_savings":0,"optimization_checked":0,"aft":0,"domElements":0,"pageSpeedVersion":0,"titleTime":0,"loadEventStart":0,"loadEventEnd":0,"domContentLoadedEventStart":0,"domContentLoadedEventEnd":0,"lastVisualChange":0,"server_count":0,"server_rtt":0,"adult_site":0,"fixed_viewport":0,"score_progressive_jpeg":0,"firstPaint":0,"docCPUms":0,"fullyLoadedCPUms":0,"docCPUpct":0,"fullyLoadedCPUpct":0,"isResponsive":0,"date":0,"CSI.v":0,"CSI.imc":0,"CSI.imn":0,"CSI.imp":0,"CSI.xjs":0,"CSI.srt":0,"CSI.npn":0,"CSI.xjsls":0,"CSI.prt":0,"CSI.xjses":0,"CSI.xjsee":0,"CSI.ol":0,"CSI.iml":0,"CSI.wsrt":0,"CSI.cst":0,"CSI.dnst":0,"CSI.rqst":0,"CSI.rspt":0,"SpeedIndex":0,"visualComplete":0,"run":0,"effectiveBps":0,"effectiveBpsDoc":0,"avgRun":null},"repeatView":{"loadTime":0,"TTFB":0,"bytesOut":0,"bytesOutDoc":0,"bytesIn":0,"bytesInDoc":0,"connections":0,"requests":0,"requestsDoc":0,"responses_200":0,"responses_404":0,"responses_other":0,"result":0,"render":0,"fullyLoaded":0,"cached":0,"docTime":0,"domTime":0,"score_cache":0,"score_cdn":0,"score_gzip":0,"score_cookies":0,"score_keep-alive":0,"score_minify":0,"score_combine":0,"score_compress":0,"score_etags":0,"gzip_total":0,"gzip_savings":0,"minify_total":0,"minify_savings":0,"image_total":0,"image_savings":0,"optimization_checked":0,"aft":0,"domElements":0,"pageSpeedVersion":0,"titleTime":0,"loadEventStart":0,"loadEventEnd":0,"domContentLoadedEventStart":0,"domContentLoadedEventEnd":0,"lastVisualChange":0,"server_count":0,"server_rtt":0,"adult_site":0,"fixed_viewport":0,"score_progressive_jpeg":0,"firstPaint":0,"docCPUms":0,"fullyLoadedCPUms":0,"docCPUpct":0,"fullyLoadedCPUpct":0,"isResponsive":0,"date":0,"CSI.v":0,"CSI.imc":0,"CSI.imn":0,"CSI.imp":0,"CSI.xjs":0,"CSI.srt":0,"CSI.npn":0,"CSI.xjsls":0,"CSI.prt":0,"CSI.xjses":0,"CSI.xjsee":0,"CSI.ol":0,"CSI.iml":0,"CSI.wsrt":0,"CSI.cst":0,"CSI.dnst":0,"CSI.rqst":0,"CSI.rspt":0,"SpeedIndex":0,"visualComplete":0,"run":0,"effectiveBps":0,"effectiveBpsDoc":0,"avgRun":null}},"median":{"firstView":{"URL":"https:\/\/google.com","loadTime":1529,"TTFB":503,"bytesOut":9808,"bytesOutDoc":7942,"bytesIn":501267,"bytesInDoc":398930,"connections":5,"requests":[{"method":"GET","host":"google.com","url":"\/","responseCode":"301","load_ms":"66","ttfb_ms":"64","load_start":"183","bytesOut":"323","bytesIn":"595","objectSize":"0","expires":"Sat, 06 Dec 2014 18:46:01 GMT","cacheControl":"public, max-age=2592000","contentType":"text\/html","type":"3","socket":"192","score_cache":"100","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":36,"ssl_ms":96,"gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"2592000","dns_start":"0","dns_end":"50","connect_start":"50","connect_end":"86","ssl_start":"86","ssl_end":"182","server_count":"11","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/google.com\/","score_progressive_jpeg":-1,"load_end":249,"ttfb_start":"183","ttfb_end":247,"download_start":247,"download_end":249,"download_ms":2,"all_start":"50","all_end":249,"all_ms":198,"headers":{"request":["GET \/ HTTP\/1.1","Host: google.com","Accept: text\/html,application\/xhtml+xml,application\/xml;q=0.9,image\/webp,*\/*;q=0.8","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 301 Moved Permanently","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=2592000","content-length: 220","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:46:01 GMT","expires: Sat, 06 Dec 2014 18:46:01 GMT","location: https:\/\/www.google.com\/","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":0,"number":1},{"method":"GET","host":"www.google.com","url":"\/","responseCode":"200","load_ms":"203","ttfb_ms":"151","load_start":"352","bytesOut":"243","bytesIn":"63244","objectSize":"0","expires":"-1","cacheControl":"private, max-age=0","contentType":"text\/html","contentEncoding":"gzip","type":"3","socket":"208","score_cache":"-1","score_cdn":"-1","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":0,"connect_ms":33,"ssl_ms":63,"gzip_total":"780","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"-1","cdn_provider":"Google","dns_start":"256","dns_end":"256","connect_start":"256","connect_end":"289","ssl_start":"289","ssl_end":"352","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/","score_progressive_jpeg":-1,"load_end":555,"ttfb_start":"352","ttfb_end":503,"download_start":503,"download_end":555,"download_ms":52,"all_start":"256","all_end":555,"all_ms":299,"headers":{"request":["GET \/ HTTP\/1.1","Host: www.google.com","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=0","content-encoding: gzip","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:46:01 GMT","expires: -1","p3p: CP=\"This is not a P3P policy! See http:\/\/www.google.com\/support\/accounts\/bin\/answer.py?hl=en&answer=151657 for more info.\"","server: gws","set-cookie: PREF=ID=d47034f5653867b9:FF=0:TM=1415299561:LM=1415299561:S=_Lnze49gy_eLNTCT; expires=Sat, 05-Nov-2016 18:46:01 GMT; path=\/; domain=.google.com","NID=67=CypCtBv6uDyjo-YeQv5XdLwuaJ_DTDUM-7trjlCcT8WURKXHoVuV_UXxT1QME9wNaKE6LqvWqhUZFoO9_V4K9mbPvC_r79XHktUlFu7m8ovfiM1vXxsot7jWrWsNqeXO; expires=Fri, 08-May-2015 18:46:01 GMT; path=\/; domain=.google.com; HttpOnly","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":1,"number":2},{"method":"GET","host":"www.google.com","url":"\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","responseCode":"200","load_ms":"288","ttfb_ms":"43","load_start":"679","bytesOut":"443","bytesIn":"139553","objectSize":"0","expires":"Fri, 06 Nov 2015 11:15:49 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"208","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"429","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/","initiator_line":"94","initiator_column":"17237","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","score_progressive_jpeg":-1,"load_end":967,"ttfb_start":"679","ttfb_end":722,"download_start":722,"download_end":967,"download_ms":245,"all_start":"679","all_end":967,"all_ms":"288","headers":{"request":["GET \/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP\/1.1","Host: www.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 200 OK","age: 27012","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 130931","content-type: text\/javascript; charset=UTF-8","date: Thu, 06 Nov 2014 11:15:49 GMT","expires: Fri, 06 Nov 2015 11:15:49 GMT","last-modified: Tue, 04 Nov 2014 19:30:26 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":2,"number":3},{"method":"GET","host":"www.google.com","url":"\/images\/srpr\/logo11w.png","responseCode":"200","load_ms":"477","ttfb_ms":"476","load_start":"679","bytesOut":"330","bytesIn":"14113","objectSize":"0","expires":"Thu, 06 Nov 2014 18:46:02 GMT","cacheControl":"private, max-age=31536000","contentType":"image\/png","type":"3","socket":"208","score_cache":"0","score_cdn":"100","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/","initiator_line":"28","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/images\/srpr\/logo11w.png","score_progressive_jpeg":-1,"load_end":1156,"ttfb_start":"679","ttfb_end":1155,"download_start":1155,"download_end":1156,"download_ms":1,"all_start":"679","all_end":1156,"all_ms":"477","headers":{"request":["GET \/images\/srpr\/logo11w.png HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=31536000","content-length: 14022","content-type: image\/png","date: Thu, 06 Nov 2014 18:46:02 GMT","expires: Thu, 06 Nov 2014 18:46:02 GMT","last-modified: Wed, 09 Oct 2013 01:35:39 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":3,"number":4},{"method":"GET","host":"ssl.gstatic.com","url":"\/gb\/images\/i1_71651352.png","responseCode":"200","load_ms":"80","ttfb_ms":"41","load_start":"807","bytesOut":"333","bytesIn":"14286","objectSize":"0","expires":"Thu, 05 Nov 2015 13:04:25 GMT","cacheControl":"public, max-age=31536000","contentType":"image\/png","type":"3","socket":"293","score_cache":"100","score_cdn":"0","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":27,"connect_ms":37,"ssl_ms":63,"gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","dns_start":"679","dns_end":"706","connect_start":"706","connect_end":"743","ssl_start":"743","ssl_end":"806","initiator":"https:\/\/www.google.com\/","initiator_line":"76","initiator_column":"35","server_count":"4","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/ssl.gstatic.com\/gb\/images\/i1_71651352.png","score_progressive_jpeg":-1,"load_end":887,"ttfb_start":"807","ttfb_end":848,"download_start":848,"download_end":887,"download_ms":39,"all_start":"679","all_end":887,"all_ms":207,"headers":{"request":["GET \/gb\/images\/i1_71651352.png HTTP\/1.1","Host: ssl.gstatic.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 200 OK","age: 106897","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-length: 14055","content-type: image\/png","date: Wed, 05 Nov 2014 13:04:25 GMT","expires: Thu, 05 Nov 2015 13:04:25 GMT","last-modified: Thu, 16 Oct 2014 18:20:30 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":4,"number":5},{"method":"GET","host":"www.gstatic.com","url":"\/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w","responseCode":"200","load_ms":"167","ttfb_ms":"164","load_start":"992","bytesOut":"392","bytesIn":"184144","objectSize":"0","expires":"Wed, 04 Nov 2015 21:10:54 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"325","score_cache":"100","score_cdn":"0","score_gzip":"100","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":50,"connect_ms":40,"ssl_ms":50,"gzip_total":"429","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","dns_start":"851","dns_end":"901","connect_start":"901","connect_end":"941","ssl_start":"941","ssl_end":"991","initiator":"https:\/\/www.google.com\/","initiator_line":"57","initiator_column":"143","server_count":"4","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.gstatic.com\/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w","score_progressive_jpeg":-1,"load_end":1159,"ttfb_start":"992","ttfb_end":1156,"download_start":1156,"download_end":1159,"download_ms":3,"all_start":"851","all_end":1159,"all_ms":307,"headers":{"request":["GET \/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w HTTP\/1.1","Host: www.gstatic.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 200 OK","age: 164108","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 55207","content-type: text\/javascript; charset=UTF-8","date: Tue, 04 Nov 2014 21:10:54 GMT","expires: Wed, 04 Nov 2015 21:10:54 GMT","last-modified: Mon, 03 Nov 2014 17:56:31 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":5,"number":6},{"method":"GET","host":"www.google.com","url":"\/extern_chrome\/854094c746d4c9a.js?bav=on.2,or.r_qf.","responseCode":"200","load_ms":"100","ttfb_ms":"88","load_start":"1154","bytesOut":"340","bytesIn":"13943","objectSize":"0","expires":"Thu, 05 Nov 2015 00:00:00 GMT","cacheControl":"private","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"208","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"422","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31382038","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","initiator_line":"1187","initiator_column":"181","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/extern_chrome\/854094c746d4c9a.js?bav=on.2,or.r_qf.","score_progressive_jpeg":-1,"load_end":1254,"ttfb_start":"1154","ttfb_end":1242,"download_start":1242,"download_end":1254,"download_ms":12,"all_start":"1154","all_end":1254,"all_ms":"100","headers":{"request":["GET \/extern_chrome\/854094c746d4c9a.js?bav=on.2,or.r_qf. HTTP\/1.1","Host: www.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private","content-disposition: attachment; filename=\"f.txt\"","content-encoding: gzip","content-length: 13825","content-type: text\/javascript; charset=UTF-8","date: Thu, 06 Nov 2014 18:46:02 GMT","expires: Thu, 05 Nov 2015 00:00:00 GMT","last-modified: Thu, 07 Nov 2013 00:00:00 GMT","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":6,"number":7},{"method":"GET","host":"www.google.com","url":"\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=0\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","responseCode":"200","load_ms":"121","ttfb_ms":"41","load_start":"1223","bytesOut":"682","bytesIn":"48768","objectSize":"0","expires":"Fri, 06 Nov 2015 04:39:44 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"208","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"428","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","initiator_line":"101","initiator_column":"112","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=0\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","score_progressive_jpeg":-1,"load_end":1344,"ttfb_start":"1223","ttfb_end":1264,"download_start":1264,"download_end":1344,"download_ms":80,"all_start":"1223","all_end":1344,"all_ms":"121","headers":{"request":["GET \/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=0\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP\/1.1","Host: www.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 200 OK","age: 50778","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 48157","content-type: text\/javascript; charset=UTF-8","date: Thu, 06 Nov 2014 04:39:44 GMT","expires: Fri, 06 Nov 2015 04:39:44 GMT","last-modified: Tue, 04 Nov 2014 19:30:26 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":7,"number":8},{"method":"GET","host":"www.google.com","url":"\/textinputassistant\/tia.png","responseCode":"200","load_ms":"167","ttfb_ms":"164","load_start":"1224","bytesOut":"333","bytesIn":"479","objectSize":"0","expires":"Thu, 05 Nov 2015 04:43:41 GMT","cacheControl":"public, max-age=31536000","contentType":"image\/png","type":"3","socket":"208","score_cache":"100","score_cdn":"100","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/","initiator_line":"1","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/textinputassistant\/tia.png","score_progressive_jpeg":-1,"load_end":1391,"ttfb_start":"1224","ttfb_end":1388,"download_start":1388,"download_end":1391,"download_ms":3,"all_start":"1224","all_end":1391,"all_ms":"167","headers":{"request":["GET \/textinputassistant\/tia.png HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 200 OK","age: 136941","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-length: 387","content-type: image\/png","date: Wed, 05 Nov 2014 04:43:41 GMT","expires: Thu, 05 Nov 2015 04:43:41 GMT","last-modified: Mon, 02 Apr 2012 02:13:37 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":8,"number":9},{"method":"GET","host":"apis.google.com","url":"\/_\/scs\/abc-static\/_\/js\/k=gapi.gapi.en.3_mJ9Wvc9FU.O\/m=gapi_iframes,googleapis_client,plusone\/rt=j\/sv=1\/d=1\/ed=1\/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg\/cb=gapi.loaded_0","responseCode":"200","load_ms":"123","ttfb_ms":"48","load_start":"1338","bytesOut":"456","bytesIn":"49179","objectSize":"0","expires":"Thu, 05 Nov 2015 15:23:35 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"400","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":26,"connect_ms":37,"ssl_ms":54,"gzip_total":"428","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"1221","dns_end":"1247","connect_start":"1247","connect_end":"1284","ssl_start":"1284","ssl_end":"1338","initiator":"https:\/\/www.gstatic.com\/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w","initiator_line":"138","initiator_column":"381","server_count":"11","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/apis.google.com\/_\/scs\/abc-static\/_\/js\/k=gapi.gapi.en.3_mJ9Wvc9FU.O\/m=gapi_iframes,googleapis_client,plusone\/rt=j\/sv=1\/d=1\/ed=1\/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg\/cb=gapi.loaded_0","score_progressive_jpeg":-1,"load_end":1461,"ttfb_start":"1338","ttfb_end":1386,"download_start":1386,"download_end":1461,"download_ms":75,"all_start":"1221","all_end":1461,"all_ms":240,"headers":{"request":["GET \/_\/scs\/abc-static\/_\/js\/k=gapi.gapi.en.3_mJ9Wvc9FU.O\/m=gapi_iframes,googleapis_client,plusone\/rt=j\/sv=1\/d=1\/ed=1\/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg\/cb=gapi.loaded_0 HTTP\/1.1","Host: apis.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 200 OK","age: 98547","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 48911","content-type: text\/javascript; charset=UTF-8","date: Wed, 05 Nov 2014 15:23:35 GMT","expires: Thu, 05 Nov 2015 15:23:35 GMT","last-modified: Thu, 16 Oct 2014 07:30:29 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":9,"number":10},{"method":"GET","host":"www.google.com","url":"\/images\/nav_logo195.png","responseCode":"200","load_ms":"68","ttfb_ms":"53","load_start":"1539","bytesOut":"329","bytesIn":"16296","objectSize":"0","expires":"Thu, 06 Nov 2014 18:46:02 GMT","cacheControl":"private, max-age=31536000","contentType":"image\/png","type":"3","socket":"208","score_cache":"0","score_cdn":"100","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/images\/nav_logo195.png","score_progressive_jpeg":-1,"load_end":1607,"ttfb_start":"1539","ttfb_end":1592,"download_start":1592,"download_end":1607,"download_ms":15,"all_start":"1539","all_end":1607,"all_ms":"68","headers":{"request":["GET \/images\/nav_logo195.png HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=31536000","content-length: 16214","content-type: image\/png","date: Thu, 06 Nov 2014 18:46:02 GMT","expires: Thu, 06 Nov 2014 18:46:02 GMT","last-modified: Wed, 21 May 2014 00:02:44 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":10,"number":11},{"method":"GET","host":"www.google.com","url":"\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=6cFbVJTsJ63CsATV04D4Dw&e=18167,4003510,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020562,4020666,4020921,4021073,4021416,4022073,4022318,4022495,4022688,4022919,4023367,4023567,4023709,4023971,4024702,4024731,4024797,4024905,8500272,8500325,8500393,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.61.28.sb.36.p.10.spch.5.ifl.2.foot.1&action=&srt=588&p=s&npn=1&rt=xjsls.27,prt.28,xjses.447,xjsee.551,xjs.568,ol.935,iml.583,wsrt.588,cst.95,dnst.0,rqst.203,rspt.52","responseCode":"204","load_ms":"72","ttfb_ms":"69","load_start":"1540","bytesOut":"857","bytesIn":"251","objectSize":"0","contentType":"text\/html","type":"3","socket":"208","score_cache":"0","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=6cFbVJTsJ63CsATV04D4Dw&e=18167,4003510,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020562,4020666,4020921,4021073,4021416,4022073,4022318,4022495,4022688,4022919,4023367,4023567,4023709,4023971,4024702,4024731,4024797,4024905,8500272,8500325,8500393,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.61.28.sb.36.p.10.spch.5.ifl.2.foot.1&action=&srt=588&p=s&npn=1&rt=xjsls.27,prt.28,xjses.447,xjsee.551,xjs.568,ol.935,iml.583,wsrt.588,cst.95,dnst.0,rqst.203,rspt.52","score_progressive_jpeg":-1,"load_end":1612,"ttfb_start":"1540","ttfb_end":1609,"download_start":1609,"download_end":1612,"download_ms":3,"all_start":"1540","all_end":1612,"all_ms":"72","headers":{"request":["GET \/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=6cFbVJTsJ63CsATV04D4Dw&e=18167,4003510,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020562,4020666,4020921,4021073,4021416,4022073,4022318,4022495,4022688,4022919,4023367,4023567,4023709,4023971,4024702,4024731,4024797,4024905,8500272,8500325,8500393,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.61.28.sb.36.p.10.spch.5.ifl.2.foot.1&action=&srt=588&p=s&npn=1&rt=xjsls.27,prt.28,xjses.447,xjsee.551,xjs.568,ol.935,iml.583,wsrt.588,cst.95,dnst.0,rqst.203,rspt.52 HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: B6F61C47-1705-4BA5-9972-D4131C2B06E9"],"response":["HTTP\/1.1 204 No Content","alternate-protocol: 443:quic,p=0.01","content-length: 0","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:46:02 GMT","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":11,"number":12}],"requestsDoc":10,"responses_200":10,"responses_404":0,"responses_other":1,"result":0,"render":690,"fullyLoaded":1612,"cached":0,"docTime":1529,"domTime":0,"score_cache":72,"score_cdn":77,"score_gzip":100,"score_cookies":-1,"score_keep-alive":100,"score_minify":-1,"score_combine":100,"score_compress":-1,"score_etags":-1,"gzip_total":2916,"gzip_savings":0,"minify_total":0,"minify_savings":0,"image_total":0,"image_savings":0,"optimization_checked":1,"aft":0,"domElements":287,"pageSpeedVersion":"1.9","title":"Google","titleTime":689,"loadEventStart":1521,"loadEventEnd":1526,"domContentLoadedEventStart":616,"domContentLoadedEventEnd":650,"lastVisualChange":0,"browser_name":"Google Chrome","browser_version":"38.0.2125.111","server_count":5,"server_rtt":0,"base_page_cdn":"Google","adult_site":0,"fixed_viewport":0,"score_progressive_jpeg":-1,"firstPaint":679,"docCPUms":873.606,"fullyLoadedCPUms":1092.007,"docCPUpct":57,"fullyLoadedCPUpct":25,"isResponsive":-1,"date":1415299553,"CSI":["v","s","imc","imn","imp","ei","e","atyp","adh","xjs","action","srt","p","npn","rt","xjsls","prt","xjses","xjsee","ol","iml","wsrt","cst","dnst","rqst","rspt"],"CSI.v":3,"CSI.s":"webhp","CSI.imc":1,"CSI.imn":1,"CSI.imp":1,"CSI.ei":"6cFbVJTsJ63CsATV04D4Dw","CSI.e":"18167,4003510,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020562,4020666,4020921,4021073,4021416,4022073,4022318,4022495,4022688,4022919,4023367,4023567,4023709,4023971,4024702,4024731,4024797,4024905,8500272,8500325,8500393,8500700,10200083,10200716,10200743","CSI.atyp":"csi","CSI.adh":"","CSI.xjs":568,"CSI.action":"","CSI.srt":588,"CSI.p":"s","CSI.npn":1,"CSI.rt":"xjsls.27,prt.28,xjses.447,xjsee.551,xjs.568,ol.935,iml.583,wsrt.588,cst.95,dnst.0,rqst.203,rspt.52","CSI.xjsls":27,"CSI.prt":28,"CSI.xjses":447,"CSI.xjsee":551,"CSI.ol":935,"CSI.iml":583,"CSI.wsrt":588,"CSI.cst":95,"CSI.dnst":0,"CSI.rqst":203,"CSI.rspt":52,"SpeedIndex":0,"visualComplete":0,"run":1,"effectiveBps":451999,"effectiveBpsDoc":388820,"tester":"IE9302-192.168.103.92","pages":{"details":"http:\/\/www.webpagetest.org\/details.php?test=141106_8N_ZRC&run=1&cached=0","checklist":"http:\/\/www.webpagetest.org\/performance_optimization.php?test=141106_8N_ZRC&run=1&cached=0","breakdown":"http:\/\/www.webpagetest.org\/breakdown.php?test=141106_8N_ZRC&run=1&cached=0","domains":"http:\/\/www.webpagetest.org\/domains.php?test=141106_8N_ZRC&run=1&cached=0","screenShot":"http:\/\/www.webpagetest.org\/screen_shot.php?test=141106_8N_ZRC&run=1&cached=0"},"thumbnails":{"waterfall":"http:\/\/www.webpagetest.org\/result\/141106_8N_ZRC\/1_waterfall_thumb.png","checklist":"http:\/\/www.webpagetest.org\/result\/141106_8N_ZRC\/1_optimization_thumb.png","screenShot":"http:\/\/www.webpagetest.org\/result\/141106_8N_ZRC\/1_screen_thumb.png"},"images":{"waterfall":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_waterfall.png","connectionView":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_connection.png","checklist":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_optimization.png","screenShot":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_screen.jpg"},"rawData":{"headers":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_report.txt","pageData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_IEWPG.txt","requestsData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_IEWTR.txt","utilization":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_progress.csv"},"videoFrames":[{"time":0,"image":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/video_1\/frame_0000.jpg","VisuallyComplete":100}],"domains":{"moc.elgoog":{"bytes":595,"requests":1,"connections":1},"moc.elgoog.www":{"bytes":296647,"requests":8,"connections":1},"moc.citatsg.lss":{"bytes":14286,"requests":1,"connections":1},"moc.citatsg.www":{"bytes":184144,"requests":1,"connections":1},"moc.elgoog.sipa":{"bytes":49179,"requests":1,"connections":1}},"breakdown":{"html":{"color":[130,181,252],"bytes":64090,"requests":3},"js":{"color":[254,197,132],"bytes":435587,"requests":5},"css":{"color":[178,234,148],"bytes":0,"requests":0},"image":{"color":[196,154,232],"bytes":45174,"requests":4},"flash":{"color":[45,183,193],"bytes":0,"requests":0},"font":{"color":[255,82,62],"bytes":0,"requests":0},"other":{"color":[196,196,196],"bytes":0,"requests":0}}},"repeatView":{"URL":"https:\/\/google.com","loadTime":905,"TTFB":362,"bytesOut":10427,"bytesOutDoc":9618,"bytesIn":86869,"bytesInDoc":86708,"connections":2,"requests":[{"method":"GET","host":"google.com","url":"\/","responseCode":"301","load_ms":"64","ttfb_ms":"63","load_start":"129","bytesOut":"323","bytesIn":"595","objectSize":"0","expires":"Sat, 06 Dec 2014 18:46:12 GMT","cacheControl":"public, max-age=2592000","contentType":"text\/html","type":"3","socket":"135","score_cache":"100","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":97,"gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"2592000","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"31","ssl_start":"31","ssl_end":"128","server_count":"11","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/google.com\/","score_progressive_jpeg":-1,"load_end":193,"ttfb_start":"129","ttfb_end":192,"download_start":192,"download_end":193,"download_ms":1,"all_start":"31","all_end":193,"all_ms":161,"headers":{"request":["GET \/ HTTP\/1.1","Host: google.com","Accept: text\/html,application\/xhtml+xml,application\/xml;q=0.9,image\/webp,*\/*;q=0.8","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A3DA6AEA-1B20-4879-B6F3-31BD12123EF3"],"response":["HTTP\/1.1 301 Moved Permanently","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=2592000","content-length: 220","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:46:12 GMT","expires: Sat, 06 Dec 2014 18:46:12 GMT","location: https:\/\/www.google.com\/","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":0,"number":1},{"method":"GET","host":"www.google.com","url":"\/","responseCode":"200","load_ms":"205","ttfb_ms":"154","load_start":"208","bytesOut":"243","bytesIn":"91126","objectSize":"0","expires":"-1","cacheControl":"private, max-age=0","contentType":"text\/html","contentEncoding":"gzip","type":"3","socket":"145","score_cache":"-1","score_cdn":"-1","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":0,"connect_ms":0,"ssl_ms":0,"gzip_total":"456","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"-1","cdn_provider":"Google","dns_start":"199","dns_end":"199","connect_start":"199","connect_end":"199","ssl_start":"199","ssl_end":"199","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/","score_progressive_jpeg":-1,"load_end":413,"ttfb_start":"208","ttfb_end":362,"download_start":362,"download_end":413,"download_ms":51,"all_start":"208","all_end":413,"all_ms":"205","headers":{"request":["GET \/ HTTP\/1.1","Host: www.google.com","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A3DA6AEA-1B20-4879-B6F3-31BD12123EF3"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=0","content-encoding: gzip","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:46:12 GMT","expires: -1","server: gws","set-cookie: PREF=ID=d47034f5653867b9:U=bdb7999b3c37ff3c:FF=0:TM=1415299561:LM=1415299572:S=y1TEqCJe7cEmheqN; expires=Sat, 05-Nov-2016 18:46:12 GMT; path=\/; domain=.google.com","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":1,"number":2},{"method":"GET","host":"www.google.com","url":"\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=9MFbVJSWMajasATZ0ICQCg&e=18168,3700318,3700349,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021083,4021089,4021415,4022074,4022318,4022489,4022495,4023367,4023567,4023709,4023971,4024102,4024692,8500272,8500394,10200083,10200526,10200716&atyp=csi&adh=&xjs=init.61.28.sb.40.p.9.spch.4.fpe.1.async.1&action=&srt=453&p=s&npn=1&rt=xjsls.22,prt.23,xjses.151,xjsee.270,xjs.292,ol.485,iml.106,wsrt.453,cst.0,dnst.0,rqst.205,rspt.51","responseCode":"204","load_ms":"60","ttfb_ms":"58","load_start":"931","bytesOut":"848","bytesIn":"251","objectSize":"0","contentType":"text\/html","type":"3","socket":"145","score_cache":"0","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=9MFbVJSWMajasATZ0ICQCg&e=18168,3700318,3700349,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021083,4021089,4021415,4022074,4022318,4022489,4022495,4023367,4023567,4023709,4023971,4024102,4024692,8500272,8500394,10200083,10200526,10200716&atyp=csi&adh=&xjs=init.61.28.sb.40.p.9.spch.4.fpe.1.async.1&action=&srt=453&p=s&npn=1&rt=xjsls.22,prt.23,xjses.151,xjsee.270,xjs.292,ol.485,iml.106,wsrt.453,cst.0,dnst.0,rqst.205,rspt.51","score_progressive_jpeg":-1,"load_end":991,"ttfb_start":"931","ttfb_end":989,"download_start":989,"download_end":991,"download_ms":2,"all_start":"931","all_end":991,"all_ms":"60","headers":{"request":["GET \/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=9MFbVJSWMajasATZ0ICQCg&e=18168,3700318,3700349,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021083,4021089,4021415,4022074,4022318,4022489,4022495,4023367,4023567,4023709,4023971,4024102,4024692,8500272,8500394,10200083,10200526,10200716&atyp=csi&adh=&xjs=init.61.28.sb.40.p.9.spch.4.fpe.1.async.1&action=&srt=453&p=s&npn=1&rt=xjsls.22,prt.23,xjses.151,xjsee.270,xjs.292,ol.485,iml.106,wsrt.453,cst.0,dnst.0,rqst.205,rspt.51 HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A3DA6AEA-1B20-4879-B6F3-31BD12123EF3"],"response":["HTTP\/1.1 204 No Content","alternate-protocol: 443:quic,p=0.01","content-length: 0","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:46:13 GMT","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":2,"number":3}],"requestsDoc":2,"responses_200":1,"responses_404":0,"responses_other":1,"result":0,"render":570,"fullyLoaded":991,"cached":1,"docTime":905,"domTime":0,"score_cache":50,"score_cdn":-1,"score_gzip":100,"score_cookies":-1,"score_keep-alive":100,"score_minify":-1,"score_combine":100,"score_compress":-1,"score_etags":-1,"gzip_total":456,"gzip_savings":0,"minify_total":0,"minify_savings":0,"image_total":0,"image_savings":0,"optimization_checked":1,"aft":0,"domElements":287,"pageSpeedVersion":"1.9","title":"Google","titleTime":669,"loadEventStart":923,"loadEventEnd":946,"domContentLoadedEventStart":476,"domContentLoadedEventEnd":511,"lastVisualChange":0,"browser_name":"Google Chrome","browser_version":"38.0.2125.111","server_count":5,"server_rtt":0,"base_page_cdn":"Google","adult_site":0,"fixed_viewport":0,"score_progressive_jpeg":-1,"firstPaint":542,"docCPUms":748.805,"fullyLoadedCPUms":858.005,"docCPUpct":79,"fullyLoadedCPUpct":28,"isResponsive":-1,"date":1415299564,"CSI":["v","s","imc","imn","imp","ei","e","atyp","adh","xjs","action","srt","p","npn","rt","xjsls","prt","xjses","xjsee","ol","iml","wsrt","cst","dnst","rqst","rspt"],"CSI.v":3,"CSI.s":"webhp","CSI.imc":1,"CSI.imn":1,"CSI.imp":1,"CSI.ei":"9MFbVJSWMajasATZ0ICQCg","CSI.e":"18168,3700318,3700349,4011550,4011551,4011557,4011558,4011559,4014789,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021083,4021089,4021415,4022074,4022318,4022489,4022495,4023367,4023567,4023709,4023971,4024102,4024692,8500272,8500394,10200083,10200526,10200716","CSI.atyp":"csi","CSI.adh":"","CSI.xjs":292,"CSI.action":"","CSI.srt":453,"CSI.p":"s","CSI.npn":1,"CSI.rt":"xjsls.22,prt.23,xjses.151,xjsee.270,xjs.292,ol.485,iml.106,wsrt.453,cst.0,dnst.0,rqst.205,rspt.51","CSI.xjsls":22,"CSI.prt":23,"CSI.xjses":151,"CSI.xjsee":270,"CSI.ol":485,"CSI.iml":106,"CSI.wsrt":453,"CSI.cst":0,"CSI.dnst":0,"CSI.rqst":205,"CSI.rspt":51,"SpeedIndex":0,"visualComplete":0,"run":1,"effectiveBps":138106,"effectiveBpsDoc":159683,"tester":"IE9302-192.168.103.92","pages":{"details":"http:\/\/www.webpagetest.org\/details.php?test=141106_8N_ZRC&run=1&cached=1","checklist":"http:\/\/www.webpagetest.org\/performance_optimization.php?test=141106_8N_ZRC&run=1&cached=1","breakdown":"http:\/\/www.webpagetest.org\/breakdown.php?test=141106_8N_ZRC&run=1&cached=1","domains":"http:\/\/www.webpagetest.org\/domains.php?test=141106_8N_ZRC&run=1&cached=1","screenShot":"http:\/\/www.webpagetest.org\/screen_shot.php?test=141106_8N_ZRC&run=1&cached=1"},"thumbnails":{"waterfall":"http:\/\/www.webpagetest.org\/result\/141106_8N_ZRC\/1_Cached_waterfall_thumb.png","checklist":"http:\/\/www.webpagetest.org\/result\/141106_8N_ZRC\/1_Cached_optimization_thumb.png","screenShot":"http:\/\/www.webpagetest.org\/result\/141106_8N_ZRC\/1_Cached_screen_thumb.png"},"images":{"waterfall":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_Cached_waterfall.png","connectionView":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_Cached_connection.png","checklist":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_Cached_optimization.png","screenShot":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_Cached_screen.jpg"},"rawData":{"headers":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_Cached_report.txt","pageData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_Cached_IEWPG.txt","requestsData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_Cached_IEWTR.txt","utilization":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/1_Cached_progress.csv"},"videoFrames":[{"time":0,"image":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/8N\/ZRC\/video_1_cached\/frame_0000.jpg","VisuallyComplete":100}],"domains":{"moc.elgoog":{"bytes":595,"requests":1,"connections":1},"moc.elgoog.www":{"bytes":91377,"requests":2,"connections":1}},"breakdown":{"html":{"color":[130,181,252],"bytes":91972,"requests":3},"js":{"color":[254,197,132],"bytes":0,"requests":0},"css":{"color":[178,234,148],"bytes":0,"requests":0},"image":{"color":[196,154,232],"bytes":0,"requests":0},"flash":{"color":[45,183,193],"bytes":0,"requests":0},"font":{"color":[255,82,62],"bytes":0,"requests":0},"other":{"color":[196,196,196],"bytes":0,"requests":0}}}}},"statusCode":200,"statusText":"Test Complete"} \ No newline at end of file diff --git a/test/fixtures/responses/testResultsMultiRunsDefaultMedianMetric.json b/test/fixtures/responses/testResultsMultiRunsDefaultMedianMetric.json deleted file mode 100644 index ca50428..0000000 --- a/test/fixtures/responses/testResultsMultiRunsDefaultMedianMetric.json +++ /dev/null @@ -1 +0,0 @@ -{"data":{"id":"141106_TM_ZFM","url":"http:\/\/www.google.com","summary":"http:\/\/www.webpagetest.org\/results.php?test=141106_TM_ZFM","testUrl":"http:\/\/www.google.com","location":"Dulles:Chrome","from":"Dulles, VA - Chrome<\/b> - Cable<\/b>","connectivity":"Cable","bwDown":5000,"bwUp":1000,"latency":28,"plr":"0","completed":1415298930,"tester":"IE9104-192.168.101.94","testerDNS":"192.168.101.1,192.168.0.1","runs":{"1":{"firstView":{"URL":"http:\/\/www.google.com","loadTime":2194,"TTFB":749,"bytesOut":7722,"bytesOutDoc":6845,"bytesIn":406739,"bytesInDoc":388800,"connections":5,"requests":[{"ip_addr":"74.125.225.81","method":"GET","host":"www.google.com","url":"\/","responseCode":"302","load_ms":"117","ttfb_ms":"117","load_start":"49","bytesOut":"342","bytesIn":"1044","objectSize":"231","cacheControl":"private","contentType":"text\/html","type":"3","socket":"25","score_cache":"0","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"0","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"49","ssl_start":"0","ssl_end":"0","server_count":"5","server_rtt":"49","client_port":"64165","jpeg_scan_count":"0","full_url":"http:\/\/www.google.com\/","score_progressive_jpeg":-1,"load_end":166,"ttfb_start":"49","ttfb_end":166,"download_start":166,"download_end":166,"download_ms":0,"all_start":"49","all_end":166,"all_ms":"117","headers":{"request":["GET \/ HTTP\/1.1","Host: www.google.com","Connection: keep-alive","Accept: text\/html,application\/xhtml+xml,application\/xml;q=0.9,image\/webp,*\/*;q=0.8","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36 PTST\/191","Accept-Encoding: gzip,deflate,sdch","Accept-Language: en-US,en;q=0.8"],"response":["HTTP\/1.1 302 Found","Location: https:\/\/www.google.com\/?gws_rd=ssl","Cache-Control: private","Content-Type: text\/html; charset=UTF-8","Set-Cookie: PREF=ID=b728500ce0ca065c:FF=0:TM=1415298912:LM=1415298912:S=zh8V8B9SxIDho86-; expires=Sat, 05-Nov-2016 18:35:12 GMT; path=\/; domain=.google.com","Set-Cookie: NID=67=hig1z6hORww_j-ZirykxFzF_QOsE5U-cSRBt-4Z9KlUACPm1wi_4daX4WSVBI-NvWrtsBV-sBmZ9nQFBVzooWg545tAJDZybR5D6RRNI3-AsppdAXhKMas9gxZI96dhQ; expires=Fri, 08-May-2015 18:35:12 GMT; path=\/; domain=.google.com; HttpOnly","P3P: CP=\"This is not a P3P policy! See http:\/\/www.google.com\/support\/accounts\/bin\/answer.py?hl=en&answer=151657 for more info.\"","Date: Thu, 06 Nov 2014 18:35:12 GMT","Server: gws","Content-Length: 231","X-XSS-Protection: 1; mode=block","X-Frame-Options: SAMEORIGIN","Alternate-Protocol: 80:quic,p=0.01"]},"index":0,"number":1},{"method":"GET","host":"www.google.com","url":"\/?gws_rd=ssl","responseCode":"200","load_ms":"460","ttfb_ms":"383","load_start":"366","bytesOut":"254","bytesIn":"57605","objectSize":"0","expires":"-1","cacheControl":"private, max-age=0","contentType":"text\/html","contentEncoding":"gzip","type":"3","socket":"261","score_cache":"-1","score_cdn":"-1","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":0,"connect_ms":36,"ssl_ms":127,"gzip_total":"799","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"-1","cdn_provider":"Google","dns_start":"202","dns_end":"202","connect_start":"202","connect_end":"238","ssl_start":"238","ssl_end":"365","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/?gws_rd=ssl","score_progressive_jpeg":-1,"load_end":826,"ttfb_start":"366","ttfb_end":749,"download_start":749,"download_end":826,"download_ms":77,"all_start":"202","all_end":826,"all_ms":623,"headers":{"request":["GET \/?gws_rd=ssl HTTP\/1.1","Host: www.google.com","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=0","content-encoding: gzip","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:35:12 GMT","expires: -1","p3p: CP=\"This is not a P3P policy! See http:\/\/www.google.com\/support\/accounts\/bin\/answer.py?hl=en&answer=151657 for more info.\"","server: gws","set-cookie: PREF=ID=b728500ce0ca065c:U=ffc0fb4c40c98be0:FF=0:TM=1415298912:LM=1415298912:S=OZ50oqzyGSXCcI0w; expires=Sat, 05-Nov-2016 18:35:12 GMT; path=\/; domain=.google.com","NID=67=mGg_6DOdS_TuKOXz3CFTdCqjkNEP5o91Wbh0WdZ_JxJcHjw-kkoHDdpMAR57vwg4sPriwQXK1O5K-_Zy3S4KOUtOCmqwvgLA0eh_VuulzoWlmaWFu6DQaafCJsJAk7ka; expires=Fri, 08-May-2015 18:35:12 GMT; path=\/; domain=.google.com; HttpOnly","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":1,"number":2},{"method":"GET","host":"www.google.com","url":"\/images\/srpr\/logo11w.png","responseCode":"200","load_ms":"117","ttfb_ms":"70","load_start":"998","bytesOut":"330","bytesIn":"16919","objectSize":"0","expires":"Thu, 06 Nov 2014 18:35:13 GMT","cacheControl":"private, max-age=31536000","contentType":"image\/png","type":"3","socket":"261","score_cache":"0","score_cdn":"100","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/?gws_rd=ssl","initiator_line":"28","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/images\/srpr\/logo11w.png","score_progressive_jpeg":-1,"load_end":1115,"ttfb_start":"998","ttfb_end":1068,"download_start":1068,"download_end":1115,"download_ms":47,"all_start":"998","all_end":1115,"all_ms":"117","headers":{"request":["GET \/images\/srpr\/logo11w.png HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=31536000","content-length: 14022","content-type: image\/png","date: Thu, 06 Nov 2014 18:35:13 GMT","expires: Thu, 06 Nov 2014 18:35:13 GMT","last-modified: Wed, 09 Oct 2013 01:35:39 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":2,"number":3},{"method":"GET","host":"ssl.gstatic.com","url":"\/gb\/images\/i1_71651352.png","responseCode":"200","load_ms":"81","ttfb_ms":"45","load_start":"1097","bytesOut":"333","bytesIn":"14285","objectSize":"0","expires":"Thu, 05 Nov 2015 15:23:35 GMT","cacheControl":"public, max-age=31536000","contentType":"image\/png","type":"3","socket":"336","score_cache":"100","score_cdn":"0","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":0,"connect_ms":37,"ssl_ms":66,"gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","dns_start":"993","dns_end":"993","connect_start":"993","connect_end":"1030","ssl_start":"1030","ssl_end":"1096","initiator":"https:\/\/www.google.com\/?gws_rd=ssl","initiator_line":"76","initiator_column":"35","server_count":"4","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/ssl.gstatic.com\/gb\/images\/i1_71651352.png","score_progressive_jpeg":-1,"load_end":1178,"ttfb_start":"1097","ttfb_end":1142,"download_start":1142,"download_end":1178,"download_ms":36,"all_start":"993","all_end":1178,"all_ms":184,"headers":{"request":["GET \/gb\/images\/i1_71651352.png HTTP\/1.1","Host: ssl.gstatic.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F"],"response":["HTTP\/1.1 200 OK","age: 97898","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-length: 14055","content-type: image\/png","date: Wed, 05 Nov 2014 15:23:35 GMT","expires: Thu, 05 Nov 2015 15:23:35 GMT","last-modified: Thu, 16 Oct 2014 18:20:30 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":3,"number":4},{"method":"GET","host":"www.google.com","url":"\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","responseCode":"200","load_ms":"346","ttfb_ms":"99","load_start":"1123","bytesOut":"443","bytesIn":"180939","objectSize":"0","expires":"Fri, 06 Nov 2015 11:13:26 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"261","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"429","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/?gws_rd=ssl","initiator_line":"94","initiator_column":"17237","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","score_progressive_jpeg":-1,"load_end":1469,"ttfb_start":"1123","ttfb_end":1222,"download_start":1222,"download_end":1469,"download_ms":247,"all_start":"1123","all_end":1469,"all_ms":"346","headers":{"request":["GET \/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP\/1.1","Host: www.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F"],"response":["HTTP\/1.1 200 OK","age: 26507","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 130931","content-type: text\/javascript; charset=UTF-8","date: Thu, 06 Nov 2014 11:13:26 GMT","expires: Fri, 06 Nov 2015 11:13:26 GMT","last-modified: Tue, 04 Nov 2014 19:30:26 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":4,"number":5},{"method":"GET","host":"www.gstatic.com","url":"\/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w","responseCode":"200","load_ms":"317","ttfb_ms":"316","load_start":"1310","bytesOut":"392","bytesIn":"184146","objectSize":"0","expires":"Thu, 05 Nov 2015 13:04:24 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"392","score_cache":"100","score_cdn":"0","score_gzip":"100","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":57,"connect_ms":39,"ssl_ms":64,"gzip_total":"429","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","dns_start":"1149","dns_end":"1206","connect_start":"1206","connect_end":"1245","ssl_start":"1245","ssl_end":"1309","initiator":"https:\/\/www.google.com\/?gws_rd=ssl","initiator_line":"57","initiator_column":"143","server_count":"4","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.gstatic.com\/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w","score_progressive_jpeg":-1,"load_end":1627,"ttfb_start":"1310","ttfb_end":1626,"download_start":1626,"download_end":1627,"download_ms":1,"all_start":"1149","all_end":1627,"all_ms":477,"headers":{"request":["GET \/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w HTTP\/1.1","Host: www.gstatic.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F"],"response":["HTTP\/1.1 200 OK","age: 106249","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 55207","content-type: text\/javascript; charset=UTF-8","date: Wed, 05 Nov 2014 13:04:24 GMT","expires: Thu, 05 Nov 2015 13:04:24 GMT","last-modified: Tue, 04 Nov 2014 01:19:09 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":5,"number":6},{"method":"GET","host":"www.google.com","url":"\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=0\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","responseCode":"200","load_ms":"130","ttfb_ms":"57","load_start":"1618","bytesOut":"682","bytesIn":"58844","objectSize":"0","expires":"Fri, 06 Nov 2015 12:08:37 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"261","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"428","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","initiator_line":"101","initiator_column":"112","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=0\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","score_progressive_jpeg":-1,"load_end":1748,"ttfb_start":"1618","ttfb_end":1675,"download_start":1675,"download_end":1748,"download_ms":73,"all_start":"1618","all_end":1748,"all_ms":"130","headers":{"request":["GET \/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=0\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP\/1.1","Host: www.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F"],"response":["HTTP\/1.1 200 OK","age: 23196","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 48157","content-type: text\/javascript; charset=UTF-8","date: Thu, 06 Nov 2014 12:08:37 GMT","expires: Fri, 06 Nov 2015 12:08:37 GMT","last-modified: Tue, 04 Nov 2014 19:30:26 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":6,"number":7},{"method":"GET","host":"www.google.com","url":"\/textinputassistant\/tia.png","responseCode":"200","load_ms":"231","ttfb_ms":"224","load_start":"1620","bytesOut":"333","bytesIn":"485","objectSize":"0","expires":"Thu, 05 Nov 2015 06:57:32 GMT","cacheControl":"public, max-age=31536000","contentType":"image\/png","type":"3","socket":"261","score_cache":"100","score_cdn":"100","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/?gws_rd=ssl","initiator_line":"1","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/textinputassistant\/tia.png","score_progressive_jpeg":-1,"load_end":1851,"ttfb_start":"1620","ttfb_end":1844,"download_start":1844,"download_end":1851,"download_ms":7,"all_start":"1620","all_end":1851,"all_ms":"231","headers":{"request":["GET \/textinputassistant\/tia.png HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F"],"response":["HTTP\/1.1 200 OK","age: 128261","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-length: 387","content-type: image\/png","date: Wed, 05 Nov 2014 06:57:32 GMT","expires: Thu, 05 Nov 2015 06:57:32 GMT","last-modified: Mon, 02 Apr 2012 02:13:37 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":7,"number":8},{"method":"GET","host":"www.google.com","url":"\/extern_chrome\/854094c746d4c9a.js?bav=on.2,or.r_qf.","responseCode":"200","load_ms":"230","ttfb_ms":"227","load_start":"1622","bytesOut":"340","bytesIn":"36586","objectSize":"0","expires":"Thu, 05 Nov 2015 00:00:00 GMT","cacheControl":"private","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"261","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"422","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31382687","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","initiator_line":"1187","initiator_column":"181","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/extern_chrome\/854094c746d4c9a.js?bav=on.2,or.r_qf.","score_progressive_jpeg":-1,"load_end":1852,"ttfb_start":"1622","ttfb_end":1849,"download_start":1849,"download_end":1852,"download_ms":3,"all_start":"1622","all_end":1852,"all_ms":"230","headers":{"request":["GET \/extern_chrome\/854094c746d4c9a.js?bav=on.2,or.r_qf. HTTP\/1.1","Host: www.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private","content-disposition: attachment; filename=\"f.txt\"","content-encoding: gzip","content-length: 13825","content-type: text\/javascript; charset=UTF-8","date: Thu, 06 Nov 2014 18:35:13 GMT","expires: Thu, 05 Nov 2015 00:00:00 GMT","last-modified: Thu, 07 Nov 2013 00:00:00 GMT","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":8,"number":9},{"method":"GET","host":"apis.google.com","url":"\/_\/scs\/abc-static\/_\/js\/k=gapi.gapi.en.3_mJ9Wvc9FU.O\/m=gapi_iframes,googleapis_client,plusone\/rt=j\/sv=1\/d=1\/ed=1\/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg\/cb=gapi.loaded_0","responseCode":"200","load_ms":"113","ttfb_ms":"49","load_start":"1981","bytesOut":"456","bytesIn":"49179","objectSize":"0","expires":"Thu, 05 Nov 2015 15:23:35 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"476","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":32,"connect_ms":36,"ssl_ms":62,"gzip_total":"428","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"1851","dns_end":"1883","connect_start":"1883","connect_end":"1919","ssl_start":"1919","ssl_end":"1981","initiator":"https:\/\/www.gstatic.com\/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w","initiator_line":"138","initiator_column":"381","server_count":"11","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/apis.google.com\/_\/scs\/abc-static\/_\/js\/k=gapi.gapi.en.3_mJ9Wvc9FU.O\/m=gapi_iframes,googleapis_client,plusone\/rt=j\/sv=1\/d=1\/ed=1\/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg\/cb=gapi.loaded_0","score_progressive_jpeg":-1,"load_end":2094,"ttfb_start":"1981","ttfb_end":2030,"download_start":2030,"download_end":2094,"download_ms":64,"all_start":"1851","all_end":2094,"all_ms":243,"headers":{"request":["GET \/_\/scs\/abc-static\/_\/js\/k=gapi.gapi.en.3_mJ9Wvc9FU.O\/m=gapi_iframes,googleapis_client,plusone\/rt=j\/sv=1\/d=1\/ed=1\/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg\/cb=gapi.loaded_0 HTTP\/1.1","Host: apis.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F"],"response":["HTTP\/1.1 200 OK","age: 97899","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 48911","content-type: text\/javascript; charset=UTF-8","date: Wed, 05 Nov 2014 15:23:35 GMT","expires: Thu, 05 Nov 2015 15:23:35 GMT","last-modified: Thu, 16 Oct 2014 07:30:29 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":9,"number":10},{"method":"GET","host":"www.google.com","url":"\/images\/nav_logo195.png","responseCode":"200","load_ms":"86","ttfb_ms":"70","load_start":"2214","bytesOut":"329","bytesIn":"16300","objectSize":"0","expires":"Thu, 06 Nov 2014 18:35:14 GMT","cacheControl":"private, max-age=31536000","contentType":"image\/png","type":"3","socket":"261","score_cache":"0","score_cdn":"100","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/images\/nav_logo195.png","score_progressive_jpeg":-1,"load_end":2300,"ttfb_start":"2214","ttfb_end":2284,"download_start":2284,"download_end":2300,"download_ms":16,"all_start":"2214","all_end":2300,"all_ms":"86","headers":{"request":["GET \/images\/nav_logo195.png HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=31536000","content-length: 16214","content-type: image\/png","date: Thu, 06 Nov 2014 18:35:14 GMT","expires: Thu, 06 Nov 2014 18:35:14 GMT","last-modified: Wed, 21 May 2014 00:02:44 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":10,"number":11},{"method":"GET","host":"www.google.com","url":"\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=YL9bVP6qJ5DuoAS6x4KwCg&e=3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.83.28.sb.49.p.12.m.8.spch.6.imap.2&action=&srt=3895&p=s&npn=1&rt=xjsls.34,prt.35,xjses.575,xjsee.725,xjs.764,ol.1332,iml.258,wsrt.857,cst.163,dnst.0,rqst.460,rspt.77","responseCode":"204","load_ms":"119","ttfb_ms":"118","load_start":"2217","bytesOut":"844","bytesIn":"251","objectSize":"0","contentType":"text\/html","type":"3","socket":"261","score_cache":"0","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=YL9bVP6qJ5DuoAS6x4KwCg&e=3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.83.28.sb.49.p.12.m.8.spch.6.imap.2&action=&srt=3895&p=s&npn=1&rt=xjsls.34,prt.35,xjses.575,xjsee.725,xjs.764,ol.1332,iml.258,wsrt.857,cst.163,dnst.0,rqst.460,rspt.77","score_progressive_jpeg":-1,"load_end":2336,"ttfb_start":"2217","ttfb_end":2335,"download_start":2335,"download_end":2336,"download_ms":1,"all_start":"2217","all_end":2336,"all_ms":"119","headers":{"request":["GET \/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=YL9bVP6qJ5DuoAS6x4KwCg&e=3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.83.28.sb.49.p.12.m.8.spch.6.imap.2&action=&srt=3895&p=s&npn=1&rt=xjsls.34,prt.35,xjses.575,xjsee.725,xjs.764,ol.1332,iml.258,wsrt.857,cst.163,dnst.0,rqst.460,rspt.77 HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F"],"response":["HTTP\/1.1 204 No Content","alternate-protocol: 443:quic,p=0.01","content-length: 0","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:35:14 GMT","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":11,"number":12}],"requestsDoc":10,"responses_200":10,"responses_404":0,"responses_other":1,"result":0,"render":1097,"fullyLoaded":2336,"cached":0,"docTime":2194,"domTime":0,"score_cache":63,"score_cdn":77,"score_gzip":100,"score_cookies":-1,"score_keep-alive":100,"score_minify":-1,"score_combine":100,"score_compress":-1,"score_etags":-1,"gzip_total":2935,"gzip_savings":0,"minify_total":0,"minify_savings":0,"image_total":0,"image_savings":0,"optimization_checked":1,"aft":0,"domElements":288,"pageSpeedVersion":"1.9","title":"Google","titleTime":1096,"loadEventStart":2185,"loadEventEnd":2193,"domContentLoadedEventStart":892,"domContentLoadedEventEnd":945,"lastVisualChange":0,"browser_name":"Google Chrome","browser_version":"38.0.2125.111","server_count":5,"server_rtt":0,"base_page_cdn":"Google","adult_site":0,"fixed_viewport":0,"score_progressive_jpeg":-1,"firstPaint":0,"docCPUms":1528.81,"fullyLoadedCPUms":2074.813,"docCPUpct":69,"fullyLoadedCPUpct":47,"isResponsive":-1,"date":1415298675,"CSI":["v","s","imc","imn","imp","ei","e","atyp","adh","xjs","action","srt","p","npn","rt","xjsls","prt","xjses","xjsee","ol","iml","wsrt","cst","dnst","rqst","rspt"],"CSI.v":3,"CSI.s":"webhp","CSI.imc":1,"CSI.imn":1,"CSI.imp":1,"CSI.ei":"YL9bVP6qJ5DuoAS6x4KwCg","CSI.e":"3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743","CSI.atyp":"csi","CSI.adh":"","CSI.xjs":764,"CSI.action":"","CSI.srt":3895,"CSI.p":"s","CSI.npn":1,"CSI.rt":"xjsls.34,prt.35,xjses.575,xjsee.725,xjs.764,ol.1332,iml.258,wsrt.857,cst.163,dnst.0,rqst.460,rspt.77","CSI.xjsls":34,"CSI.prt":35,"CSI.xjses":575,"CSI.xjsee":725,"CSI.ol":1332,"CSI.iml":258,"CSI.wsrt":857,"CSI.cst":163,"CSI.dnst":0,"CSI.rqst":460,"CSI.rspt":77,"SpeedIndex":0,"visualComplete":0,"run":1,"effectiveBps":256294,"effectiveBpsDoc":269065,"tester":"IE9104-192.168.101.94","pages":{"details":"http:\/\/www.webpagetest.org\/details.php?test=141106_TM_ZFM&run=1&cached=0","checklist":"http:\/\/www.webpagetest.org\/performance_optimization.php?test=141106_TM_ZFM&run=1&cached=0","breakdown":"http:\/\/www.webpagetest.org\/breakdown.php?test=141106_TM_ZFM&run=1&cached=0","domains":"http:\/\/www.webpagetest.org\/domains.php?test=141106_TM_ZFM&run=1&cached=0","screenShot":"http:\/\/www.webpagetest.org\/screen_shot.php?test=141106_TM_ZFM&run=1&cached=0"},"thumbnails":{"waterfall":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/1_waterfall_thumb.png","checklist":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/1_optimization_thumb.png","screenShot":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/1_screen_thumb.png"},"images":{"waterfall":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_waterfall.png","connectionView":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_connection.png","checklist":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_optimization.png","screenShot":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_screen.jpg"},"rawData":{"headers":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_report.txt","pageData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_IEWPG.txt","requestsData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_IEWTR.txt","utilization":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_progress.csv"},"videoFrames":[{"time":0,"image":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/video_1\/frame_0000.jpg","VisuallyComplete":100}],"domains":{"moc.elgoog.www":{"bytes":368973,"requests":9,"connections":2},"moc.citatsg.lss":{"bytes":14285,"requests":1,"connections":1},"moc.citatsg.www":{"bytes":184146,"requests":1,"connections":1},"moc.elgoog.sipa":{"bytes":49179,"requests":1,"connections":1}},"breakdown":{"html":{"color":[130,181,252],"bytes":58900,"requests":3},"js":{"color":[254,197,132],"bytes":509694,"requests":5},"css":{"color":[178,234,148],"bytes":0,"requests":0},"image":{"color":[196,154,232],"bytes":47989,"requests":4},"flash":{"color":[45,183,193],"bytes":0,"requests":0},"font":{"color":[255,82,62],"bytes":0,"requests":0},"other":{"color":[196,196,196],"bytes":0,"requests":0}}},"repeatView":{"URL":"http:\/\/www.google.com","loadTime":1352,"TTFB":505,"bytesOut":9302,"bytesOutDoc":8740,"bytesIn":85557,"bytesInDoc":85430,"connections":2,"requests":[{"ip_addr":"74.125.225.81","method":"GET","host":"www.google.com","url":"\/","responseCode":"302","load_ms":"156","ttfb_ms":"156","load_start":"62","bytesOut":"584","bytesIn":"532","objectSize":"231","cacheControl":"private","contentType":"text\/html","type":"3","socket":"15","score_cache":"0","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"0","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"61","ssl_start":"0","ssl_end":"0","server_count":"5","server_rtt":"60","client_port":"64227","jpeg_scan_count":"0","full_url":"http:\/\/www.google.com\/","score_progressive_jpeg":-1,"load_end":218,"ttfb_start":"62","ttfb_end":218,"download_start":218,"download_end":218,"download_ms":0,"all_start":"62","all_end":218,"all_ms":"156","headers":{"request":["GET \/ HTTP\/1.1","Host: www.google.com","Connection: keep-alive","Accept: text\/html,application\/xhtml+xml,application\/xml;q=0.9,image\/webp,*\/*;q=0.8","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36 PTST\/191","Accept-Encoding: gzip,deflate,sdch","Accept-Language: en-US,en;q=0.8","Cookie: PREF=ID=b728500ce0ca065c:U=ffc0fb4c40c98be0:FF=0:TM=1415298912:LM=1415298912:S=OZ50oqzyGSXCcI0w; NID=67=mGg_6DOdS_TuKOXz3CFTdCqjkNEP5o91Wbh0WdZ_JxJcHjw-kkoHDdpMAR57vwg4sPriwQXK1O5K-_Zy3S4KOUtOCmqwvgLA0eh_VuulzoWlmaWFu6DQaafCJsJAk7ka"],"response":["HTTP\/1.1 302 Found","Location: https:\/\/www.google.com\/?gws_rd=ssl","Cache-Control: private","Content-Type: text\/html; charset=UTF-8","Date: Thu, 06 Nov 2014 18:35:24 GMT","Server: gws","Content-Length: 231","X-XSS-Protection: 1; mode=block","X-Frame-Options: SAMEORIGIN","Alternate-Protocol: 80:quic,p=0.01"]},"index":0,"number":1},{"method":"GET","host":"www.google.com","url":"\/?gws_rd=ssl","responseCode":"200","load_ms":"265","ttfb_ms":"190","load_start":"315","bytesOut":"254","bytesIn":"63195","objectSize":"0","expires":"-1","cacheControl":"private, max-age=0","contentType":"text\/html","contentEncoding":"gzip","type":"3","socket":"149","score_cache":"-1","score_cdn":"-1","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":0,"connect_ms":0,"ssl_ms":55,"gzip_total":"280","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"-1","cdn_provider":"Google","dns_start":"259","dns_end":"259","connect_start":"259","connect_end":"259","ssl_start":"259","ssl_end":"314","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/?gws_rd=ssl","score_progressive_jpeg":-1,"load_end":580,"ttfb_start":"315","ttfb_end":505,"download_start":505,"download_end":580,"download_ms":75,"all_start":"259","all_end":580,"all_ms":320,"headers":{"request":["GET \/?gws_rd=ssl HTTP\/1.1","Host: www.google.com","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 67027B33-8010-4675-92E8-A02F9E86437E"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=0","content-encoding: gzip","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:35:24 GMT","expires: -1","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":1,"number":2},{"method":"GET","host":"www.google.com","url":"\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=bL9bVJrPJcP8oQSom4LwBg&e=3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.73.28.sb.45.p.12.spch.6.imap.2.m.2&action=&srt=3646&p=s&npn=1&rt=xjsls.39,prt.40,xjses.237,xjsee.420,xjs.470,ol.764,iml.172,wsrt.605,cst.55,dnst.0,rqst.265,rspt.74","responseCode":"204","load_ms":"108","ttfb_ms":"105","load_start":"1383","bytesOut":"842","bytesIn":"251","objectSize":"0","contentType":"text\/html","type":"3","socket":"149","score_cache":"0","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=bL9bVJrPJcP8oQSom4LwBg&e=3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.73.28.sb.45.p.12.spch.6.imap.2.m.2&action=&srt=3646&p=s&npn=1&rt=xjsls.39,prt.40,xjses.237,xjsee.420,xjs.470,ol.764,iml.172,wsrt.605,cst.55,dnst.0,rqst.265,rspt.74","score_progressive_jpeg":-1,"load_end":1491,"ttfb_start":"1383","ttfb_end":1488,"download_start":1488,"download_end":1491,"download_ms":3,"all_start":"1383","all_end":1491,"all_ms":"108","headers":{"request":["GET \/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=bL9bVJrPJcP8oQSom4LwBg&e=3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.73.28.sb.45.p.12.spch.6.imap.2.m.2&action=&srt=3646&p=s&npn=1&rt=xjsls.39,prt.40,xjses.237,xjsee.420,xjs.470,ol.764,iml.172,wsrt.605,cst.55,dnst.0,rqst.265,rspt.74 HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 67027B33-8010-4675-92E8-A02F9E86437E"],"response":["HTTP\/1.1 204 No Content","alternate-protocol: 443:quic,p=0.01","content-length: 0","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:35:25 GMT","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":2,"number":3}],"requestsDoc":2,"responses_200":1,"responses_404":0,"responses_other":1,"result":0,"render":792,"fullyLoaded":1491,"cached":1,"docTime":1352,"domTime":0,"score_cache":0,"score_cdn":-1,"score_gzip":100,"score_cookies":-1,"score_keep-alive":100,"score_minify":-1,"score_combine":100,"score_compress":-1,"score_etags":-1,"gzip_total":280,"gzip_savings":0,"minify_total":0,"minify_savings":0,"image_total":0,"image_savings":0,"optimization_checked":1,"aft":0,"domElements":288,"pageSpeedVersion":"1.9","title":"Google","titleTime":691,"loadEventStart":1347,"loadEventEnd":1378,"domContentLoadedEventStart":646,"domContentLoadedEventEnd":700,"lastVisualChange":0,"browser_name":"Google Chrome","browser_version":"38.0.2125.111","server_count":5,"server_rtt":0,"base_page_cdn":"Google","adult_site":0,"fixed_viewport":0,"score_progressive_jpeg":-1,"firstPaint":0,"docCPUms":1185.608,"fullyLoadedCPUms":1638.011,"docCPUpct":87,"fullyLoadedCPUpct":45,"isResponsive":-1,"date":1415298687,"CSI":["v","s","imc","imn","imp","ei","e","atyp","adh","xjs","action","srt","p","npn","rt","xjsls","prt","xjses","xjsee","ol","iml","wsrt","cst","dnst","rqst","rspt"],"CSI.v":3,"CSI.s":"webhp","CSI.imc":1,"CSI.imn":1,"CSI.imp":1,"CSI.ei":"bL9bVJrPJcP8oQSom4LwBg","CSI.e":"3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743","CSI.atyp":"csi","CSI.adh":"","CSI.xjs":470,"CSI.action":"","CSI.srt":3646,"CSI.p":"s","CSI.npn":1,"CSI.rt":"xjsls.39,prt.40,xjses.237,xjsee.420,xjs.470,ol.764,iml.172,wsrt.605,cst.55,dnst.0,rqst.265,rspt.74","CSI.xjsls":39,"CSI.prt":40,"CSI.xjses":237,"CSI.xjsee":420,"CSI.ol":764,"CSI.iml":172,"CSI.wsrt":605,"CSI.cst":55,"CSI.dnst":0,"CSI.rqst":265,"CSI.rspt":74,"SpeedIndex":0,"visualComplete":0,"run":1,"effectiveBps":86771,"effectiveBpsDoc":100861,"tester":"IE9104-192.168.101.94","pages":{"details":"http:\/\/www.webpagetest.org\/details.php?test=141106_TM_ZFM&run=1&cached=1","checklist":"http:\/\/www.webpagetest.org\/performance_optimization.php?test=141106_TM_ZFM&run=1&cached=1","breakdown":"http:\/\/www.webpagetest.org\/breakdown.php?test=141106_TM_ZFM&run=1&cached=1","domains":"http:\/\/www.webpagetest.org\/domains.php?test=141106_TM_ZFM&run=1&cached=1","screenShot":"http:\/\/www.webpagetest.org\/screen_shot.php?test=141106_TM_ZFM&run=1&cached=1"},"thumbnails":{"waterfall":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/1_Cached_waterfall_thumb.png","checklist":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/1_Cached_optimization_thumb.png","screenShot":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/1_Cached_screen_thumb.png"},"images":{"waterfall":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_Cached_waterfall.png","connectionView":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_Cached_connection.png","checklist":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_Cached_optimization.png","screenShot":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_Cached_screen.jpg"},"rawData":{"headers":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_Cached_report.txt","pageData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_Cached_IEWPG.txt","requestsData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_Cached_IEWTR.txt","utilization":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_Cached_progress.csv"},"videoFrames":[{"time":0,"image":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/video_1_cached\/frame_0000.jpg","VisuallyComplete":100}],"domains":{"moc.elgoog.www":{"bytes":63978,"requests":3,"connections":2}},"breakdown":{"html":{"color":[130,181,252],"bytes":63978,"requests":3},"js":{"color":[254,197,132],"bytes":0,"requests":0},"css":{"color":[178,234,148],"bytes":0,"requests":0},"image":{"color":[196,154,232],"bytes":0,"requests":0},"flash":{"color":[45,183,193],"bytes":0,"requests":0},"font":{"color":[255,82,62],"bytes":0,"requests":0},"other":{"color":[196,196,196],"bytes":0,"requests":0}}}},"2":{"firstView":{"URL":"http:\/\/www.google.com","loadTime":2406,"TTFB":513,"bytesOut":7009,"bytesOutDoc":6145,"bytesIn":402324,"bytesInDoc":384415,"connections":4,"requests":[{"ip_addr":"74.125.225.80","method":"GET","host":"www.google.com","url":"\/","responseCode":"302","load_ms":"110","ttfb_ms":"110","load_start":"49","bytesOut":"342","bytesIn":"1044","objectSize":"231","cacheControl":"private","contentType":"text\/html","type":"3","socket":"25","score_cache":"0","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"0","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"49","ssl_start":"0","ssl_end":"0","server_count":"5","server_rtt":"49","client_port":"51813","jpeg_scan_count":"0","full_url":"http:\/\/www.google.com\/","score_progressive_jpeg":-1,"load_end":159,"ttfb_start":"49","ttfb_end":159,"download_start":159,"download_end":159,"download_ms":0,"all_start":"49","all_end":159,"all_ms":"110","headers":{"request":["GET \/ HTTP\/1.1","Host: www.google.com","Connection: keep-alive","Accept: text\/html,application\/xhtml+xml,application\/xml;q=0.9,image\/webp,*\/*;q=0.8","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36 PTST\/191","Accept-Encoding: gzip,deflate,sdch","Accept-Language: en-US,en;q=0.8"],"response":["HTTP\/1.1 302 Found","Location: https:\/\/www.google.com\/?gws_rd=ssl","Cache-Control: private","Content-Type: text\/html; charset=UTF-8","Set-Cookie: PREF=ID=475c491cad4e86aa:FF=0:TM=1415298912:LM=1415298912:S=IZkg6dGDCBeFDHPq; expires=Sat, 05-Nov-2016 18:35:12 GMT; path=\/; domain=.google.com","Set-Cookie: NID=67=gngiSsHmIvn3lnlMq8_ilS4bsTML-5ZdRj_phVjTIBUS1_uruYjC56tX9cfsIEtsm5aP1A6Oa5AqErk6SQsRFoEoR7SyAbecF76SRDBOarjoyJSNeOruCIShiVA4PUz9; expires=Fri, 08-May-2015 18:35:12 GMT; path=\/; domain=.google.com; HttpOnly","P3P: CP=\"This is not a P3P policy! See http:\/\/www.google.com\/support\/accounts\/bin\/answer.py?hl=en&answer=151657 for more info.\"","Date: Thu, 06 Nov 2014 18:35:12 GMT","Server: gws","Content-Length: 231","X-XSS-Protection: 1; mode=block","X-Frame-Options: SAMEORIGIN","Alternate-Protocol: 80:quic,p=0.01"]},"index":0,"number":1},{"method":"GET","host":"www.google.com","url":"\/?gws_rd=ssl","responseCode":"200","load_ms":"305","ttfb_ms":"181","load_start":"332","bytesOut":"254","bytesIn":"52324","objectSize":"0","expires":"-1","cacheControl":"private, max-age=0","contentType":"text\/html","contentEncoding":"gzip","type":"3","socket":"255","score_cache":"-1","score_cdn":"-1","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":0,"connect_ms":43,"ssl_ms":99,"gzip_total":"799","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"-1","cdn_provider":"Google","dns_start":"190","dns_end":"190","connect_start":"190","connect_end":"233","ssl_start":"233","ssl_end":"332","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/?gws_rd=ssl","score_progressive_jpeg":-1,"load_end":637,"ttfb_start":"332","ttfb_end":513,"download_start":513,"download_end":637,"download_ms":124,"all_start":"190","all_end":637,"all_ms":447,"headers":{"request":["GET \/?gws_rd=ssl HTTP\/1.1","Host: www.google.com","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=0","content-encoding: gzip","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:35:12 GMT","expires: -1","p3p: CP=\"This is not a P3P policy! See http:\/\/www.google.com\/support\/accounts\/bin\/answer.py?hl=en&answer=151657 for more info.\"","server: gws","set-cookie: PREF=ID=475c491cad4e86aa:U=d2f3b954c35bcd9b:FF=0:TM=1415298912:LM=1415298912:S=lV95Ue2bqUmiPbk5; expires=Sat, 05-Nov-2016 18:35:12 GMT; path=\/; domain=.google.com","NID=67=FxZ3TVYsJlTtvVnmerGAmxHaZlZTz5A31FZWPSd1rO1IWsQQNoRhmBSazKHgNuIyFbSiyrYFhW6OHLe3wfVvB_ZYIKQjZ5yH_Zis-NxQXljm2qIsyFUvNKKpsqhKOv-p; expires=Fri, 08-May-2015 18:35:12 GMT; path=\/; domain=.google.com; HttpOnly","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":1,"number":2},{"method":"GET","host":"www.google.com","url":"\/images\/srpr\/logo11w.png","responseCode":"200","load_ms":"675","ttfb_ms":"674","load_start":"943","bytesOut":"330","bytesIn":"14111","objectSize":"0","expires":"Thu, 06 Nov 2014 18:35:13 GMT","cacheControl":"private, max-age=31536000","contentType":"image\/png","type":"3","socket":"255","score_cache":"0","score_cdn":"100","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/?gws_rd=ssl","initiator_line":"28","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/images\/srpr\/logo11w.png","score_progressive_jpeg":-1,"load_end":1618,"ttfb_start":"943","ttfb_end":1617,"download_start":1617,"download_end":1618,"download_ms":1,"all_start":"943","all_end":1618,"all_ms":"675","headers":{"request":["GET \/images\/srpr\/logo11w.png HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=31536000","content-length: 14022","content-type: image\/png","date: Thu, 06 Nov 2014 18:35:13 GMT","expires: Thu, 06 Nov 2014 18:35:13 GMT","last-modified: Wed, 09 Oct 2013 01:35:39 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":2,"number":3},{"method":"GET","host":"ssl.gstatic.com","url":"\/gb\/images\/i1_71651352.png","responseCode":"200","load_ms":"92","ttfb_ms":"47","load_start":"1029","bytesOut":"333","bytesIn":"14285","objectSize":"0","expires":"Thu, 05 Nov 2015 15:23:35 GMT","cacheControl":"public, max-age=31536000","contentType":"image\/png","type":"3","socket":"335","score_cache":"100","score_cdn":"0","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":1,"connect_ms":40,"ssl_ms":77,"gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","dns_start":"910","dns_end":"911","connect_start":"911","connect_end":"951","ssl_start":"951","ssl_end":"1028","initiator":"https:\/\/www.google.com\/?gws_rd=ssl","initiator_line":"76","initiator_column":"35","server_count":"4","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/ssl.gstatic.com\/gb\/images\/i1_71651352.png","score_progressive_jpeg":-1,"load_end":1121,"ttfb_start":"1029","ttfb_end":1076,"download_start":1076,"download_end":1121,"download_ms":45,"all_start":"910","all_end":1121,"all_ms":210,"headers":{"request":["GET \/gb\/images\/i1_71651352.png HTTP\/1.1","Host: ssl.gstatic.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0"],"response":["HTTP\/1.1 200 OK","age: 97898","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-length: 14055","content-type: image\/png","date: Wed, 05 Nov 2014 15:23:35 GMT","expires: Thu, 05 Nov 2015 15:23:35 GMT","last-modified: Thu, 16 Oct 2014 18:20:30 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":3,"number":4},{"method":"GET","host":"www.google.com","url":"\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","responseCode":"200","load_ms":"418","ttfb_ms":"53","load_start":"1095","bytesOut":"443","bytesIn":"205963","objectSize":"0","expires":"Fri, 06 Nov 2015 11:13:26 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"255","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"429","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/?gws_rd=ssl","initiator_line":"94","initiator_column":"17237","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","score_progressive_jpeg":-1,"load_end":1513,"ttfb_start":"1095","ttfb_end":1148,"download_start":1148,"download_end":1513,"download_ms":365,"all_start":"1095","all_end":1513,"all_ms":"418","headers":{"request":["GET \/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP\/1.1","Host: www.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0"],"response":["HTTP\/1.1 200 OK","age: 26507","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 130931","content-type: text\/javascript; charset=UTF-8","date: Thu, 06 Nov 2014 11:13:26 GMT","expires: Fri, 06 Nov 2015 11:13:26 GMT","last-modified: Tue, 04 Nov 2014 19:30:26 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":4,"number":5},{"method":"GET","host":"www.gstatic.com","url":"\/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w","responseCode":"200","load_ms":"496","ttfb_ms":"48","load_start":"1121","bytesOut":"392","bytesIn":"59283","objectSize":"0","expires":"Thu, 05 Nov 2015 15:23:34 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"335","score_cache":"100","score_cdn":"0","score_gzip":"100","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"428","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/?gws_rd=ssl","initiator_line":"57","initiator_column":"143","server_count":"4","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.gstatic.com\/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w","score_progressive_jpeg":-1,"load_end":1617,"ttfb_start":"1121","ttfb_end":1169,"download_start":1169,"download_end":1617,"download_ms":448,"all_start":"1121","all_end":1617,"all_ms":"496","headers":{"request":["GET \/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w HTTP\/1.1","Host: www.gstatic.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0"],"response":["HTTP\/1.1 200 OK","age: 97899","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 55207","content-type: text\/javascript; charset=UTF-8","date: Wed, 05 Nov 2014 15:23:34 GMT","expires: Thu, 05 Nov 2015 15:23:34 GMT","last-modified: Tue, 04 Nov 2014 01:19:09 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":5,"number":6},{"method":"GET","host":"www.google.com","url":"\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=0\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","responseCode":"200","load_ms":"196","ttfb_ms":"57","load_start":"1841","bytesOut":"682","bytesIn":"48334","objectSize":"0","expires":"Fri, 06 Nov 2015 12:08:37 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"255","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"428","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","initiator_line":"101","initiator_column":"112","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=0\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","score_progressive_jpeg":-1,"load_end":2037,"ttfb_start":"1841","ttfb_end":1898,"download_start":1898,"download_end":2037,"download_ms":139,"all_start":"1841","all_end":2037,"all_ms":"196","headers":{"request":["GET \/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=0\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP\/1.1","Host: www.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0"],"response":["HTTP\/1.1 200 OK","age: 23197","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 48157","content-type: text\/javascript; charset=UTF-8","date: Thu, 06 Nov 2014 12:08:37 GMT","expires: Fri, 06 Nov 2015 12:08:37 GMT","last-modified: Tue, 04 Nov 2014 19:30:26 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":6,"number":7},{"method":"GET","host":"www.google.com","url":"\/textinputassistant\/tia.png","responseCode":"200","load_ms":"399","ttfb_ms":"317","load_start":"1846","bytesOut":"333","bytesIn":"484","objectSize":"0","expires":"Thu, 05 Nov 2015 06:57:32 GMT","cacheControl":"public, max-age=31536000","contentType":"image\/png","type":"3","socket":"255","score_cache":"100","score_cdn":"100","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/?gws_rd=ssl","initiator_line":"1","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/textinputassistant\/tia.png","score_progressive_jpeg":-1,"load_end":2245,"ttfb_start":"1846","ttfb_end":2163,"download_start":2163,"download_end":2245,"download_ms":82,"all_start":"1846","all_end":2245,"all_ms":"399","headers":{"request":["GET \/textinputassistant\/tia.png HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0"],"response":["HTTP\/1.1 200 OK","age: 128262","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-length: 387","content-type: image\/png","date: Wed, 05 Nov 2014 06:57:32 GMT","expires: Thu, 05 Nov 2015 06:57:32 GMT","last-modified: Mon, 02 Apr 2012 02:13:37 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":7,"number":8},{"method":"GET","host":"www.google.com","url":"\/extern_chrome\/854094c746d4c9a.js?bav=on.2,or.r_qf.","responseCode":"200","load_ms":"365","ttfb_ms":"361","load_start":"1881","bytesOut":"340","bytesIn":"36579","objectSize":"0","expires":"Thu, 05 Nov 2015 00:00:00 GMT","cacheControl":"private","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"255","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"422","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31382686","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","initiator_line":"1187","initiator_column":"181","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/extern_chrome\/854094c746d4c9a.js?bav=on.2,or.r_qf.","score_progressive_jpeg":-1,"load_end":2246,"ttfb_start":"1881","ttfb_end":2242,"download_start":2242,"download_end":2246,"download_ms":4,"all_start":"1881","all_end":2246,"all_ms":"365","headers":{"request":["GET \/extern_chrome\/854094c746d4c9a.js?bav=on.2,or.r_qf. HTTP\/1.1","Host: www.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private","content-disposition: attachment; filename=\"f.txt\"","content-encoding: gzip","content-length: 13825","content-type: text\/javascript; charset=UTF-8","date: Thu, 06 Nov 2014 18:35:14 GMT","expires: Thu, 05 Nov 2015 00:00:00 GMT","last-modified: Thu, 07 Nov 2013 00:00:00 GMT","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":8,"number":9},{"method":"GET","host":"apis.google.com","url":"\/_\/scs\/abc-static\/_\/js\/k=gapi.gapi.en.3_mJ9Wvc9FU.O\/m=gapi_iframes,googleapis_client,plusone\/rt=j\/sv=1\/d=1\/ed=1\/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg\/cb=gapi.loaded_0","responseCode":"200","load_ms":"184","ttfb_ms":"123","load_start":"2067","bytesOut":"456","bytesIn":"156500","objectSize":"0","expires":"Thu, 05 Nov 2015 15:23:35 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"440","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":51,"connect_ms":40,"ssl_ms":61,"gzip_total":"428","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"1914","dns_end":"1965","connect_start":"1965","connect_end":"2005","ssl_start":"2005","ssl_end":"2066","initiator":"https:\/\/www.gstatic.com\/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w","initiator_line":"138","initiator_column":"381","server_count":"11","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/apis.google.com\/_\/scs\/abc-static\/_\/js\/k=gapi.gapi.en.3_mJ9Wvc9FU.O\/m=gapi_iframes,googleapis_client,plusone\/rt=j\/sv=1\/d=1\/ed=1\/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg\/cb=gapi.loaded_0","score_progressive_jpeg":-1,"load_end":2251,"ttfb_start":"2067","ttfb_end":2190,"download_start":2190,"download_end":2251,"download_ms":61,"all_start":"1914","all_end":2251,"all_ms":336,"headers":{"request":["GET \/_\/scs\/abc-static\/_\/js\/k=gapi.gapi.en.3_mJ9Wvc9FU.O\/m=gapi_iframes,googleapis_client,plusone\/rt=j\/sv=1\/d=1\/ed=1\/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg\/cb=gapi.loaded_0 HTTP\/1.1","Host: apis.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0"],"response":["HTTP\/1.1 200 OK","age: 97899","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 48911","content-type: text\/javascript; charset=UTF-8","date: Wed, 05 Nov 2014 15:23:35 GMT","expires: Thu, 05 Nov 2015 15:23:35 GMT","last-modified: Thu, 16 Oct 2014 07:30:29 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":9,"number":10},{"method":"GET","host":"www.google.com","url":"\/images\/nav_logo195.png","responseCode":"200","load_ms":"85","ttfb_ms":"70","load_start":"2493","bytesOut":"329","bytesIn":"16288","objectSize":"0","expires":"Thu, 06 Nov 2014 18:35:14 GMT","cacheControl":"private, max-age=31536000","contentType":"image\/png","type":"3","socket":"255","score_cache":"0","score_cdn":"100","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/images\/nav_logo195.png","score_progressive_jpeg":-1,"load_end":2578,"ttfb_start":"2493","ttfb_end":2563,"download_start":2563,"download_end":2578,"download_ms":15,"all_start":"2493","all_end":2578,"all_ms":"85","headers":{"request":["GET \/images\/nav_logo195.png HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=31536000","content-length: 16214","content-type: image\/png","date: Thu, 06 Nov 2014 18:35:14 GMT","expires: Thu, 06 Nov 2014 18:35:14 GMT","last-modified: Wed, 21 May 2014 00:02:44 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":10,"number":11},{"method":"GET","host":"www.google.com","url":"\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=YL9bVNOzJpCzoQTWgoDQDA&e=3700259,4011550,4011551,4011557,4011558,4011559,4013605,4014789,4016469,4016824,4017981,4019181,4020347,4020562,4020921,4021073,4022074,4022318,4022495,4022686,4023367,4023567,4023678,4023709,4023972,4024007,4025080,8500272,8500393,10200044,10200083,10200716&atyp=csi&adh=&xjs=init.140.28.sb.94.p.20.spch.10.m.4.ifl.2&action=&srt=5225&p=s&npn=1&rt=xjsls.53,prt.54,xjses.768,xjsee.1033,xjs.1065,ol.1719,iml.1315,wsrt.678,cst.141,dnst.0,rqst.305,rspt.124","responseCode":"204","load_ms":"114","ttfb_ms":"112","load_start":"2500","bytesOut":"825","bytesIn":"251","objectSize":"0","contentType":"text\/html","type":"3","socket":"255","score_cache":"0","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=YL9bVNOzJpCzoQTWgoDQDA&e=3700259,4011550,4011551,4011557,4011558,4011559,4013605,4014789,4016469,4016824,4017981,4019181,4020347,4020562,4020921,4021073,4022074,4022318,4022495,4022686,4023367,4023567,4023678,4023709,4023972,4024007,4025080,8500272,8500393,10200044,10200083,10200716&atyp=csi&adh=&xjs=init.140.28.sb.94.p.20.spch.10.m.4.ifl.2&action=&srt=5225&p=s&npn=1&rt=xjsls.53,prt.54,xjses.768,xjsee.1033,xjs.1065,ol.1719,iml.1315,wsrt.678,cst.141,dnst.0,rqst.305,rspt.124","score_progressive_jpeg":-1,"load_end":2614,"ttfb_start":"2500","ttfb_end":2612,"download_start":2612,"download_end":2614,"download_ms":2,"all_start":"2500","all_end":2614,"all_ms":"114","headers":{"request":["GET \/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=YL9bVNOzJpCzoQTWgoDQDA&e=3700259,4011550,4011551,4011557,4011558,4011559,4013605,4014789,4016469,4016824,4017981,4019181,4020347,4020562,4020921,4021073,4022074,4022318,4022495,4022686,4023367,4023567,4023678,4023709,4023972,4024007,4025080,8500272,8500393,10200044,10200083,10200716&atyp=csi&adh=&xjs=init.140.28.sb.94.p.20.spch.10.m.4.ifl.2&action=&srt=5225&p=s&npn=1&rt=xjsls.53,prt.54,xjses.768,xjsee.1033,xjs.1065,ol.1719,iml.1315,wsrt.678,cst.141,dnst.0,rqst.305,rspt.124 HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0"],"response":["HTTP\/1.1 204 No Content","alternate-protocol: 443:quic,p=0.01","content-length: 0","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:35:14 GMT","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":11,"number":12}],"requestsDoc":10,"responses_200":10,"responses_404":0,"responses_other":1,"result":0,"render":982,"fullyLoaded":2614,"cached":0,"docTime":2406,"domTime":0,"score_cache":63,"score_cdn":77,"score_gzip":100,"score_cookies":-1,"score_keep-alive":100,"score_minify":-1,"score_combine":100,"score_compress":-1,"score_etags":-1,"gzip_total":2934,"gzip_savings":0,"minify_total":0,"minify_savings":0,"image_total":0,"image_savings":0,"optimization_checked":1,"aft":0,"domElements":288,"pageSpeedVersion":"1.9","title":"Google","titleTime":883,"loadEventStart":2392,"loadEventEnd":2402,"domContentLoadedEventStart":733,"domContentLoadedEventEnd":803,"lastVisualChange":0,"browser_name":"Google Chrome","browser_version":"38.0.2125.111","server_count":5,"server_rtt":0,"base_page_cdn":"Google","adult_site":0,"fixed_viewport":0,"score_progressive_jpeg":-1,"firstPaint":0,"docCPUms":1965.613,"fullyLoadedCPUms":2542.816,"docCPUpct":81,"fullyLoadedCPUpct":54,"isResponsive":-1,"date":1415298900,"CSI":["v","s","imc","imn","imp","ei","e","atyp","adh","xjs","action","srt","p","npn","rt","xjsls","prt","xjses","xjsee","ol","iml","wsrt","cst","dnst","rqst","rspt"],"CSI.v":3,"CSI.s":"webhp","CSI.imc":1,"CSI.imn":1,"CSI.imp":1,"CSI.ei":"YL9bVNOzJpCzoQTWgoDQDA","CSI.e":"3700259,4011550,4011551,4011557,4011558,4011559,4013605,4014789,4016469,4016824,4017981,4019181,4020347,4020562,4020921,4021073,4022074,4022318,4022495,4022686,4023367,4023567,4023678,4023709,4023972,4024007,4025080,8500272,8500393,10200044,10200083,10200716","CSI.atyp":"csi","CSI.adh":"","CSI.xjs":1065,"CSI.action":"","CSI.srt":5225,"CSI.p":"s","CSI.npn":1,"CSI.rt":"xjsls.53,prt.54,xjses.768,xjsee.1033,xjs.1065,ol.1719,iml.1315,wsrt.678,cst.141,dnst.0,rqst.305,rspt.124","CSI.xjsls":53,"CSI.prt":54,"CSI.xjses":768,"CSI.xjsee":1033,"CSI.ol":1719,"CSI.iml":1315,"CSI.wsrt":678,"CSI.cst":141,"CSI.dnst":0,"CSI.rqst":305,"CSI.rspt":124,"SpeedIndex":0,"visualComplete":0,"run":2,"effectiveBps":191491,"effectiveBpsDoc":203071,"tester":"IE9204-192.168.102.94","pages":{"details":"http:\/\/www.webpagetest.org\/details.php?test=141106_TM_ZFM&run=2&cached=0","checklist":"http:\/\/www.webpagetest.org\/performance_optimization.php?test=141106_TM_ZFM&run=2&cached=0","breakdown":"http:\/\/www.webpagetest.org\/breakdown.php?test=141106_TM_ZFM&run=2&cached=0","domains":"http:\/\/www.webpagetest.org\/domains.php?test=141106_TM_ZFM&run=2&cached=0","screenShot":"http:\/\/www.webpagetest.org\/screen_shot.php?test=141106_TM_ZFM&run=2&cached=0"},"thumbnails":{"waterfall":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/2_waterfall_thumb.png","checklist":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/2_optimization_thumb.png","screenShot":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/2_screen_thumb.png"},"images":{"waterfall":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/2_waterfall.png","connectionView":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/2_connection.png","checklist":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/2_optimization.png","screenShot":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/2_screen.jpg"},"rawData":{"headers":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/2_report.txt","pageData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/2_IEWPG.txt","requestsData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/2_IEWTR.txt","utilization":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/2_progress.csv"},"videoFrames":[{"time":0,"image":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/video_2\/frame_0000.jpg","VisuallyComplete":100}],"domains":{"moc.elgoog.www":{"bytes":375378,"requests":9,"connections":2},"moc.citatsg.lss":{"bytes":14285,"requests":1,"connections":1},"moc.citatsg.www":{"bytes":59283,"requests":1,"connections":1},"moc.elgoog.sipa":{"bytes":156500,"requests":1,"connections":1}},"breakdown":{"html":{"color":[130,181,252],"bytes":53619,"requests":3},"js":{"color":[254,197,132],"bytes":506659,"requests":5},"css":{"color":[178,234,148],"bytes":0,"requests":0},"image":{"color":[196,154,232],"bytes":45168,"requests":4},"flash":{"color":[45,183,193],"bytes":0,"requests":0},"font":{"color":[255,82,62],"bytes":0,"requests":0},"other":{"color":[196,196,196],"bytes":0,"requests":0}}},"repeatView":{"URL":"http:\/\/www.google.com","loadTime":1372,"TTFB":458,"bytesOut":9283,"bytesOutDoc":8735,"bytesIn":85486,"bytesInDoc":85359,"connections":2,"requests":[{"ip_addr":"74.125.225.80","method":"GET","host":"www.google.com","url":"\/","responseCode":"302","load_ms":"122","ttfb_ms":"122","load_start":"50","bytesOut":"584","bytesIn":"532","objectSize":"231","cacheControl":"private","contentType":"text\/html","type":"3","socket":"15","score_cache":"0","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"0","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"49","ssl_start":"0","ssl_end":"0","server_count":"5","server_rtt":"49","client_port":"51852","jpeg_scan_count":"0","full_url":"http:\/\/www.google.com\/","score_progressive_jpeg":-1,"load_end":172,"ttfb_start":"50","ttfb_end":172,"download_start":172,"download_end":172,"download_ms":0,"all_start":"50","all_end":172,"all_ms":"122","headers":{"request":["GET \/ HTTP\/1.1","Host: www.google.com","Connection: keep-alive","Accept: text\/html,application\/xhtml+xml,application\/xml;q=0.9,image\/webp,*\/*;q=0.8","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36 PTST\/191","Accept-Encoding: gzip,deflate,sdch","Accept-Language: en-US,en;q=0.8","Cookie: PREF=ID=475c491cad4e86aa:U=d2f3b954c35bcd9b:FF=0:TM=1415298912:LM=1415298912:S=lV95Ue2bqUmiPbk5; NID=67=FxZ3TVYsJlTtvVnmerGAmxHaZlZTz5A31FZWPSd1rO1IWsQQNoRhmBSazKHgNuIyFbSiyrYFhW6OHLe3wfVvB_ZYIKQjZ5yH_Zis-NxQXljm2qIsyFUvNKKpsqhKOv-p"],"response":["HTTP\/1.1 302 Found","Location: https:\/\/www.google.com\/?gws_rd=ssl","Cache-Control: private","Content-Type: text\/html; charset=UTF-8","Date: Thu, 06 Nov 2014 18:35:24 GMT","Server: gws","Content-Length: 231","X-XSS-Protection: 1; mode=block","X-Frame-Options: SAMEORIGIN","Alternate-Protocol: 80:quic,p=0.01"]},"index":0,"number":1},{"method":"GET","host":"www.google.com","url":"\/?gws_rd=ssl","responseCode":"200","load_ms":"290","ttfb_ms":"197","load_start":"261","bytesOut":"254","bytesIn":"61974","objectSize":"0","expires":"-1","cacheControl":"private, max-age=0","contentType":"text\/html","contentEncoding":"gzip","type":"3","socket":"161","score_cache":"-1","score_cdn":"-1","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":0,"connect_ms":0,"ssl_ms":57,"gzip_total":"280","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"-1","cdn_provider":"Google","dns_start":"203","dns_end":"203","connect_start":"203","connect_end":"203","ssl_start":"203","ssl_end":"260","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/?gws_rd=ssl","score_progressive_jpeg":-1,"load_end":551,"ttfb_start":"261","ttfb_end":458,"download_start":458,"download_end":551,"download_ms":93,"all_start":"203","all_end":551,"all_ms":347,"headers":{"request":["GET \/?gws_rd=ssl HTTP\/1.1","Host: www.google.com","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A87ED523-8779-4935-A86C-D91B13E86886"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=0","content-encoding: gzip","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:35:25 GMT","expires: -1","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":1,"number":2},{"method":"GET","host":"www.google.com","url":"\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=bb9bVMmPC4z9oQSY8YG4DQ&e=3700259,4011550,4011551,4011557,4011558,4011559,4013605,4014789,4016469,4016824,4017981,4019181,4020347,4020562,4020921,4021073,4022074,4022318,4022495,4022686,4023367,4023567,4023678,4023709,4023972,4024007,4025080,8500272,8500393,10200044,10200083,10200716&atyp=csi&adh=&xjs=init.86.28.sb.52.p.12.spch.7.jsa.5.ifl.2&action=&srt=5139&p=s&npn=1&rt=xjsls.44,prt.46,xjses.264,xjsee.470,xjs.503,ol.775,iml.166,wsrt.584,cst.57,dnst.0,rqst.290,rspt.93","responseCode":"204","load_ms":"121","ttfb_ms":"107","load_start":"1388","bytesOut":"819","bytesIn":"251","objectSize":"0","contentType":"text\/html","type":"3","socket":"161","score_cache":"0","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=bb9bVMmPC4z9oQSY8YG4DQ&e=3700259,4011550,4011551,4011557,4011558,4011559,4013605,4014789,4016469,4016824,4017981,4019181,4020347,4020562,4020921,4021073,4022074,4022318,4022495,4022686,4023367,4023567,4023678,4023709,4023972,4024007,4025080,8500272,8500393,10200044,10200083,10200716&atyp=csi&adh=&xjs=init.86.28.sb.52.p.12.spch.7.jsa.5.ifl.2&action=&srt=5139&p=s&npn=1&rt=xjsls.44,prt.46,xjses.264,xjsee.470,xjs.503,ol.775,iml.166,wsrt.584,cst.57,dnst.0,rqst.290,rspt.93","score_progressive_jpeg":-1,"load_end":1509,"ttfb_start":"1388","ttfb_end":1495,"download_start":1495,"download_end":1509,"download_ms":14,"all_start":"1388","all_end":1509,"all_ms":"121","headers":{"request":["GET \/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=bb9bVMmPC4z9oQSY8YG4DQ&e=3700259,4011550,4011551,4011557,4011558,4011559,4013605,4014789,4016469,4016824,4017981,4019181,4020347,4020562,4020921,4021073,4022074,4022318,4022495,4022686,4023367,4023567,4023678,4023709,4023972,4024007,4025080,8500272,8500393,10200044,10200083,10200716&atyp=csi&adh=&xjs=init.86.28.sb.52.p.12.spch.7.jsa.5.ifl.2&action=&srt=5139&p=s&npn=1&rt=xjsls.44,prt.46,xjses.264,xjsee.470,xjs.503,ol.775,iml.166,wsrt.584,cst.57,dnst.0,rqst.290,rspt.93 HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A87ED523-8779-4935-A86C-D91B13E86886"],"response":["HTTP\/1.1 204 No Content","alternate-protocol: 443:quic,p=0.01","content-length: 0","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:35:26 GMT","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":2,"number":3}],"requestsDoc":2,"responses_200":1,"responses_404":0,"responses_other":1,"result":0,"render":895,"fullyLoaded":1509,"cached":1,"docTime":1372,"domTime":0,"score_cache":0,"score_cdn":-1,"score_gzip":100,"score_cookies":-1,"score_keep-alive":100,"score_minify":-1,"score_combine":100,"score_compress":-1,"score_etags":-1,"gzip_total":280,"gzip_savings":0,"minify_total":0,"minify_savings":0,"image_total":0,"image_savings":0,"optimization_checked":1,"aft":0,"domElements":288,"pageSpeedVersion":"1.9","title":"Google","titleTime":692,"loadEventStart":1354,"loadEventEnd":1363,"domContentLoadedEventStart":630,"domContentLoadedEventEnd":677,"lastVisualChange":0,"browser_name":"Google Chrome","browser_version":"38.0.2125.111","server_count":5,"server_rtt":0,"base_page_cdn":"Google","adult_site":0,"fixed_viewport":0,"score_progressive_jpeg":-1,"firstPaint":0,"docCPUms":1248.008,"fullyLoadedCPUms":1716.011,"docCPUpct":90,"fullyLoadedCPUpct":47,"isResponsive":-1,"date":1415298913,"CSI":["v","s","imc","imn","imp","ei","e","atyp","adh","xjs","action","srt","p","npn","rt","xjsls","prt","xjses","xjsee","ol","iml","wsrt","cst","dnst","rqst","rspt"],"CSI.v":3,"CSI.s":"webhp","CSI.imc":1,"CSI.imn":1,"CSI.imp":1,"CSI.ei":"bb9bVMmPC4z9oQSY8YG4DQ","CSI.e":"3700259,4011550,4011551,4011557,4011558,4011559,4013605,4014789,4016469,4016824,4017981,4019181,4020347,4020562,4020921,4021073,4022074,4022318,4022495,4022686,4023367,4023567,4023678,4023709,4023972,4024007,4025080,8500272,8500393,10200044,10200083,10200716","CSI.atyp":"csi","CSI.adh":"","CSI.xjs":503,"CSI.action":"","CSI.srt":5139,"CSI.p":"s","CSI.npn":1,"CSI.rt":"xjsls.44,prt.46,xjses.264,xjsee.470,xjs.503,ol.775,iml.166,wsrt.584,cst.57,dnst.0,rqst.290,rspt.93","CSI.xjsls":44,"CSI.prt":46,"CSI.xjses":264,"CSI.xjsee":470,"CSI.ol":775,"CSI.iml":166,"CSI.wsrt":584,"CSI.cst":57,"CSI.dnst":0,"CSI.rqst":290,"CSI.rspt":93,"SpeedIndex":0,"visualComplete":0,"run":2,"effectiveBps":81337,"effectiveBpsDoc":93390,"tester":"IE9204-192.168.102.94","pages":{"details":"http:\/\/www.webpagetest.org\/details.php?test=141106_TM_ZFM&run=2&cached=1","checklist":"http:\/\/www.webpagetest.org\/performance_optimization.php?test=141106_TM_ZFM&run=2&cached=1","breakdown":"http:\/\/www.webpagetest.org\/breakdown.php?test=141106_TM_ZFM&run=2&cached=1","domains":"http:\/\/www.webpagetest.org\/domains.php?test=141106_TM_ZFM&run=2&cached=1","screenShot":"http:\/\/www.webpagetest.org\/screen_shot.php?test=141106_TM_ZFM&run=2&cached=1"},"thumbnails":{"waterfall":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/2_Cached_waterfall_thumb.png","checklist":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/2_Cached_optimization_thumb.png","screenShot":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/2_Cached_screen_thumb.png"},"images":{"waterfall":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/2_Cached_waterfall.png","connectionView":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/2_Cached_connection.png","checklist":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/2_Cached_optimization.png","screenShot":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/2_Cached_screen.jpg"},"rawData":{"headers":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/2_Cached_report.txt","pageData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/2_Cached_IEWPG.txt","requestsData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/2_Cached_IEWTR.txt","utilization":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/2_Cached_progress.csv"},"videoFrames":[{"time":0,"image":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/video_2_cached\/frame_0000.jpg","VisuallyComplete":100}],"domains":{"moc.elgoog.www":{"bytes":62757,"requests":3,"connections":2}},"breakdown":{"html":{"color":[130,181,252],"bytes":62757,"requests":3},"js":{"color":[254,197,132],"bytes":0,"requests":0},"css":{"color":[178,234,148],"bytes":0,"requests":0},"image":{"color":[196,154,232],"bytes":0,"requests":0},"flash":{"color":[45,183,193],"bytes":0,"requests":0},"font":{"color":[255,82,62],"bytes":0,"requests":0},"other":{"color":[196,196,196],"bytes":0,"requests":0}}}},"3":{"firstView":{"URL":"http:\/\/www.google.com","loadTime":1859,"TTFB":527,"bytesOut":7732,"bytesOutDoc":6849,"bytesIn":406795,"bytesInDoc":388881,"connections":5,"requests":[{"ip_addr":"74.125.225.80","method":"GET","host":"www.google.com","url":"\/","responseCode":"302","load_ms":"118","ttfb_ms":"118","load_start":"51","bytesOut":"342","bytesIn":"1044","objectSize":"231","cacheControl":"private","contentType":"text\/html","type":"3","socket":"21","score_cache":"0","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"0","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"50","ssl_start":"0","ssl_end":"0","server_count":"5","server_rtt":"50","client_port":"57503","jpeg_scan_count":"0","full_url":"http:\/\/www.google.com\/","score_progressive_jpeg":-1,"load_end":169,"ttfb_start":"51","ttfb_end":169,"download_start":169,"download_end":169,"download_ms":0,"all_start":"51","all_end":169,"all_ms":"118","headers":{"request":["GET \/ HTTP\/1.1","Host: www.google.com","Connection: keep-alive","Accept: text\/html,application\/xhtml+xml,application\/xml;q=0.9,image\/webp,*\/*;q=0.8","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36 PTST\/191","Accept-Encoding: gzip,deflate,sdch","Accept-Language: en-US,en;q=0.8"],"response":["HTTP\/1.1 302 Found","Location: https:\/\/www.google.com\/?gws_rd=ssl","Cache-Control: private","Content-Type: text\/html; charset=UTF-8","Set-Cookie: PREF=ID=c8ae0fd9a35b560a:FF=0:TM=1415298911:LM=1415298911:S=wGBHegrYkFIl74OM; expires=Sat, 05-Nov-2016 18:35:11 GMT; path=\/; domain=.google.com","Set-Cookie: NID=67=A8rzWOkZhV5ph-wUG0ek5x-MFtIRDWOSW0DZYZy6dEV1D64v0M7VJTy8w_P4IB5OQNncxH3kkpmAskYeeLkP2oojzK796UCb3uS2cjlc3xQnx-PoH7WcYIwKFzjF_j6Z; expires=Fri, 08-May-2015 18:35:11 GMT; path=\/; domain=.google.com; HttpOnly","P3P: CP=\"This is not a P3P policy! See http:\/\/www.google.com\/support\/accounts\/bin\/answer.py?hl=en&answer=151657 for more info.\"","Date: Thu, 06 Nov 2014 18:35:11 GMT","Server: gws","Content-Length: 231","X-XSS-Protection: 1; mode=block","X-Frame-Options: SAMEORIGIN","Alternate-Protocol: 80:quic,p=0.01"]},"index":0,"number":1},{"method":"GET","host":"www.google.com","url":"\/?gws_rd=ssl","responseCode":"200","load_ms":"272","ttfb_ms":"181","load_start":"346","bytesOut":"254","bytesIn":"59402","objectSize":"0","expires":"-1","cacheControl":"private, max-age=0","contentType":"text\/html","contentEncoding":"gzip","type":"3","socket":"233","score_cache":"-1","score_cdn":"-1","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":0,"connect_ms":48,"ssl_ms":99,"gzip_total":"799","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"-1","cdn_provider":"Google","dns_start":"199","dns_end":"199","connect_start":"199","connect_end":"247","ssl_start":"247","ssl_end":"346","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/?gws_rd=ssl","score_progressive_jpeg":-1,"load_end":618,"ttfb_start":"346","ttfb_end":527,"download_start":527,"download_end":618,"download_ms":91,"all_start":"199","all_end":618,"all_ms":419,"headers":{"request":["GET \/?gws_rd=ssl HTTP\/1.1","Host: www.google.com","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=0","content-encoding: gzip","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:35:11 GMT","expires: -1","p3p: CP=\"This is not a P3P policy! See http:\/\/www.google.com\/support\/accounts\/bin\/answer.py?hl=en&answer=151657 for more info.\"","server: gws","set-cookie: PREF=ID=c8ae0fd9a35b560a:U=13a3a6adb0b5baae:FF=0:TM=1415298911:LM=1415298911:S=6_qwKnH9qWTEeuXk; expires=Sat, 05-Nov-2016 18:35:11 GMT; path=\/; domain=.google.com","NID=67=Ue_d0qHMhmOdhZ9A50DYfvJhQQK0WV2c_RfwRbKG_3tCN8L0CV7FpvqilrK7El69DX146S0_ZqFG02sKFXcT-lgtI9XtRP1fWtZhQ15VPcdvLLjuUjMt1_Dt9d1C9gfk; expires=Fri, 08-May-2015 18:35:11 GMT; path=\/; domain=.google.com; HttpOnly","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":1,"number":2},{"method":"GET","host":"www.google.com","url":"\/images\/srpr\/logo11w.png","responseCode":"200","load_ms":"572","ttfb_ms":"571","load_start":"815","bytesOut":"330","bytesIn":"14111","objectSize":"0","expires":"Thu, 06 Nov 2014 18:35:12 GMT","cacheControl":"private, max-age=31536000","contentType":"image\/png","type":"3","socket":"233","score_cache":"0","score_cdn":"100","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/?gws_rd=ssl","initiator_line":"28","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/images\/srpr\/logo11w.png","score_progressive_jpeg":-1,"load_end":1387,"ttfb_start":"815","ttfb_end":1386,"download_start":1386,"download_end":1387,"download_ms":1,"all_start":"815","all_end":1387,"all_ms":"572","headers":{"request":["GET \/images\/srpr\/logo11w.png HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=31536000","content-length: 14022","content-type: image\/png","date: Thu, 06 Nov 2014 18:35:12 GMT","expires: Thu, 06 Nov 2014 18:35:12 GMT","last-modified: Wed, 09 Oct 2013 01:35:39 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":2,"number":3},{"method":"GET","host":"ssl.gstatic.com","url":"\/gb\/images\/i1_71651352.png","responseCode":"200","load_ms":"77","ttfb_ms":"42","load_start":"881","bytesOut":"333","bytesIn":"14285","objectSize":"0","expires":"Thu, 05 Nov 2015 15:23:35 GMT","cacheControl":"public, max-age=31536000","contentType":"image\/png","type":"3","socket":"315","score_cache":"100","score_cdn":"0","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":0,"connect_ms":39,"ssl_ms":89,"gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","dns_start":"752","dns_end":"752","connect_start":"752","connect_end":"791","ssl_start":"791","ssl_end":"880","initiator":"https:\/\/www.google.com\/?gws_rd=ssl","initiator_line":"76","initiator_column":"35","server_count":"4","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/ssl.gstatic.com\/gb\/images\/i1_71651352.png","score_progressive_jpeg":-1,"load_end":958,"ttfb_start":"881","ttfb_end":923,"download_start":923,"download_end":958,"download_ms":35,"all_start":"752","all_end":958,"all_ms":205,"headers":{"request":["GET \/gb\/images\/i1_71651352.png HTTP\/1.1","Host: ssl.gstatic.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF"],"response":["HTTP\/1.1 200 OK","age: 97897","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-length: 14055","content-type: image\/png","date: Wed, 05 Nov 2014 15:23:35 GMT","expires: Thu, 05 Nov 2015 15:23:35 GMT","last-modified: Thu, 16 Oct 2014 18:20:30 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":3,"number":4},{"method":"GET","host":"www.google.com","url":"\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","responseCode":"200","load_ms":"333","ttfb_ms":"54","load_start":"884","bytesOut":"443","bytesIn":"233315","objectSize":"0","expires":"Fri, 06 Nov 2015 11:13:26 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"233","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"429","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/?gws_rd=ssl","initiator_line":"94","initiator_column":"17237","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","score_progressive_jpeg":-1,"load_end":1217,"ttfb_start":"884","ttfb_end":938,"download_start":938,"download_end":1217,"download_ms":279,"all_start":"884","all_end":1217,"all_ms":"333","headers":{"request":["GET \/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP\/1.1","Host: www.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF"],"response":["HTTP\/1.1 200 OK","age: 26506","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 130931","content-type: text\/javascript; charset=UTF-8","date: Thu, 06 Nov 2014 11:13:26 GMT","expires: Fri, 06 Nov 2015 11:13:26 GMT","last-modified: Tue, 04 Nov 2014 19:30:26 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":4,"number":5},{"method":"GET","host":"www.gstatic.com","url":"\/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w","responseCode":"200","load_ms":"247","ttfb_ms":"245","load_start":"1073","bytesOut":"392","bytesIn":"184146","objectSize":"0","expires":"Thu, 05 Nov 2015 13:04:24 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"339","score_cache":"100","score_cdn":"0","score_gzip":"100","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":32,"connect_ms":40,"ssl_ms":82,"gzip_total":"429","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","dns_start":"918","dns_end":"950","connect_start":"950","connect_end":"990","ssl_start":"990","ssl_end":"1072","initiator":"https:\/\/www.google.com\/?gws_rd=ssl","initiator_line":"57","initiator_column":"143","server_count":"4","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.gstatic.com\/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w","score_progressive_jpeg":-1,"load_end":1320,"ttfb_start":"1073","ttfb_end":1318,"download_start":1318,"download_end":1320,"download_ms":2,"all_start":"918","all_end":1320,"all_ms":401,"headers":{"request":["GET \/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w HTTP\/1.1","Host: www.gstatic.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF"],"response":["HTTP\/1.1 200 OK","age: 106248","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 55207","content-type: text\/javascript; charset=UTF-8","date: Wed, 05 Nov 2014 13:04:24 GMT","expires: Thu, 05 Nov 2015 13:04:24 GMT","last-modified: Tue, 04 Nov 2014 01:19:09 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":5,"number":6},{"method":"GET","host":"www.google.com","url":"\/extern_chrome\/854094c746d4c9a.js?bav=on.2,or.r_qf.","responseCode":"200","load_ms":"170","ttfb_ms":"168","load_start":"1316","bytesOut":"340","bytesIn":"36559","objectSize":"0","expires":"Thu, 05 Nov 2015 00:00:00 GMT","cacheControl":"private","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"233","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"422","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31382688","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","initiator_line":"1187","initiator_column":"181","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/extern_chrome\/854094c746d4c9a.js?bav=on.2,or.r_qf.","score_progressive_jpeg":-1,"load_end":1486,"ttfb_start":"1316","ttfb_end":1484,"download_start":1484,"download_end":1486,"download_ms":2,"all_start":"1316","all_end":1486,"all_ms":"170","headers":{"request":["GET \/extern_chrome\/854094c746d4c9a.js?bav=on.2,or.r_qf. HTTP\/1.1","Host: www.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private","content-disposition: attachment; filename=\"f.txt\"","content-encoding: gzip","content-length: 13825","content-type: text\/javascript; charset=UTF-8","date: Thu, 06 Nov 2014 18:35:12 GMT","expires: Thu, 05 Nov 2015 00:00:00 GMT","last-modified: Thu, 07 Nov 2013 00:00:00 GMT","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":6,"number":7},{"method":"GET","host":"www.google.com","url":"\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=0\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","responseCode":"200","load_ms":"121","ttfb_ms":"51","load_start":"1483","bytesOut":"682","bytesIn":"52270","objectSize":"0","expires":"Fri, 06 Nov 2015 12:08:37 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"233","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"428","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","initiator_line":"101","initiator_column":"112","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=0\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","score_progressive_jpeg":-1,"load_end":1604,"ttfb_start":"1483","ttfb_end":1534,"download_start":1534,"download_end":1604,"download_ms":70,"all_start":"1483","all_end":1604,"all_ms":"121","headers":{"request":["GET \/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=0\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP\/1.1","Host: www.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF"],"response":["HTTP\/1.1 200 OK","age: 23195","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 48157","content-type: text\/javascript; charset=UTF-8","date: Thu, 06 Nov 2014 12:08:37 GMT","expires: Fri, 06 Nov 2015 12:08:37 GMT","last-modified: Tue, 04 Nov 2014 19:30:26 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":7,"number":8},{"method":"GET","host":"www.google.com","url":"\/textinputassistant\/tia.png","responseCode":"200","load_ms":"200","ttfb_ms":"199","load_start":"1484","bytesOut":"333","bytesIn":"481","objectSize":"0","expires":"Thu, 05 Nov 2015 06:57:32 GMT","cacheControl":"public, max-age=31536000","contentType":"image\/png","type":"3","socket":"233","score_cache":"100","score_cdn":"100","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/?gws_rd=ssl","initiator_line":"1","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/textinputassistant\/tia.png","score_progressive_jpeg":-1,"load_end":1684,"ttfb_start":"1484","ttfb_end":1683,"download_start":1683,"download_end":1684,"download_ms":1,"all_start":"1484","all_end":1684,"all_ms":"200","headers":{"request":["GET \/textinputassistant\/tia.png HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF"],"response":["HTTP\/1.1 200 OK","age: 128260","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-length: 387","content-type: image\/png","date: Wed, 05 Nov 2014 06:57:32 GMT","expires: Thu, 05 Nov 2015 06:57:32 GMT","last-modified: Mon, 02 Apr 2012 02:13:37 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":8,"number":9},{"method":"GET","host":"apis.google.com","url":"\/_\/scs\/abc-static\/_\/js\/k=gapi.gapi.en.3_mJ9Wvc9FU.O\/m=gapi_iframes,googleapis_client,plusone\/rt=j\/sv=1\/d=1\/ed=1\/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg\/cb=gapi.loaded_0","responseCode":"200","load_ms":"114","ttfb_ms":"46","load_start":"1665","bytesOut":"456","bytesIn":"49927","objectSize":"0","expires":"Thu, 05 Nov 2015 15:23:35 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"434","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":34,"connect_ms":40,"ssl_ms":74,"gzip_total":"428","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"1517","dns_end":"1551","connect_start":"1551","connect_end":"1591","ssl_start":"1591","ssl_end":"1665","initiator":"https:\/\/www.gstatic.com\/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w","initiator_line":"138","initiator_column":"381","server_count":"11","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/apis.google.com\/_\/scs\/abc-static\/_\/js\/k=gapi.gapi.en.3_mJ9Wvc9FU.O\/m=gapi_iframes,googleapis_client,plusone\/rt=j\/sv=1\/d=1\/ed=1\/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg\/cb=gapi.loaded_0","score_progressive_jpeg":-1,"load_end":1779,"ttfb_start":"1665","ttfb_end":1711,"download_start":1711,"download_end":1779,"download_ms":68,"all_start":"1517","all_end":1779,"all_ms":262,"headers":{"request":["GET \/_\/scs\/abc-static\/_\/js\/k=gapi.gapi.en.3_mJ9Wvc9FU.O\/m=gapi_iframes,googleapis_client,plusone\/rt=j\/sv=1\/d=1\/ed=1\/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg\/cb=gapi.loaded_0 HTTP\/1.1","Host: apis.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF"],"response":["HTTP\/1.1 200 OK","age: 97898","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 48911","content-type: text\/javascript; charset=UTF-8","date: Wed, 05 Nov 2014 15:23:35 GMT","expires: Thu, 05 Nov 2015 15:23:35 GMT","last-modified: Thu, 16 Oct 2014 07:30:29 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":9,"number":10},{"method":"GET","host":"www.google.com","url":"\/images\/nav_logo195.png","responseCode":"200","load_ms":"84","ttfb_ms":"68","load_start":"1874","bytesOut":"329","bytesIn":"16300","objectSize":"0","expires":"Thu, 06 Nov 2014 18:35:13 GMT","cacheControl":"private, max-age=31536000","contentType":"image\/png","type":"3","socket":"233","score_cache":"0","score_cdn":"100","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/images\/nav_logo195.png","score_progressive_jpeg":-1,"load_end":1958,"ttfb_start":"1874","ttfb_end":1942,"download_start":1942,"download_end":1958,"download_ms":16,"all_start":"1874","all_end":1958,"all_ms":"84","headers":{"request":["GET \/images\/nav_logo195.png HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=31536000","content-length: 16214","content-type: image\/png","date: Thu, 06 Nov 2014 18:35:13 GMT","expires: Thu, 06 Nov 2014 18:35:13 GMT","last-modified: Wed, 21 May 2014 00:02:44 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":10,"number":11},{"method":"GET","host":"www.google.com","url":"\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=X79bVJ_KLYi2oQSrr4DwDA&e=3700261,4011550,4011551,4011557,4011558,4011559,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021341,4021532,4021597,4022074,4022318,4022495,4022688,4023367,4023566,4023709,4023972,4023979,4024625,4024691,4024905,4024932,8500272,8500394,8500699,8500755,10200083,10200716,10200744,10200766&atyp=csi&adh=&xjs=init.119.28.sb.65.m.28.p.12.spch.6.foot.1&action=&srt=642&p=s&npn=1&rt=xjsls.26,prt.27,xjses.520,xjsee.706,xjs.760,ol.1207,iml.761,wsrt.642,cst.146,dnst.0,rqst.272,rspt.91","responseCode":"204","load_ms":"111","ttfb_ms":"110","load_start":"1876","bytesOut":"878","bytesIn":"251","objectSize":"0","contentType":"text\/html","type":"3","socket":"233","score_cache":"0","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=X79bVJ_KLYi2oQSrr4DwDA&e=3700261,4011550,4011551,4011557,4011558,4011559,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021341,4021532,4021597,4022074,4022318,4022495,4022688,4023367,4023566,4023709,4023972,4023979,4024625,4024691,4024905,4024932,8500272,8500394,8500699,8500755,10200083,10200716,10200744,10200766&atyp=csi&adh=&xjs=init.119.28.sb.65.m.28.p.12.spch.6.foot.1&action=&srt=642&p=s&npn=1&rt=xjsls.26,prt.27,xjses.520,xjsee.706,xjs.760,ol.1207,iml.761,wsrt.642,cst.146,dnst.0,rqst.272,rspt.91","score_progressive_jpeg":-1,"load_end":1987,"ttfb_start":"1876","ttfb_end":1986,"download_start":1986,"download_end":1987,"download_ms":1,"all_start":"1876","all_end":1987,"all_ms":"111","headers":{"request":["GET \/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=X79bVJ_KLYi2oQSrr4DwDA&e=3700261,4011550,4011551,4011557,4011558,4011559,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021341,4021532,4021597,4022074,4022318,4022495,4022688,4023367,4023566,4023709,4023972,4023979,4024625,4024691,4024905,4024932,8500272,8500394,8500699,8500755,10200083,10200716,10200744,10200766&atyp=csi&adh=&xjs=init.119.28.sb.65.m.28.p.12.spch.6.foot.1&action=&srt=642&p=s&npn=1&rt=xjsls.26,prt.27,xjses.520,xjsee.706,xjs.760,ol.1207,iml.761,wsrt.642,cst.146,dnst.0,rqst.272,rspt.91 HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF"],"response":["HTTP\/1.1 204 No Content","alternate-protocol: 443:quic,p=0.01","content-length: 0","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:35:13 GMT","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":11,"number":12}],"requestsDoc":10,"responses_200":10,"responses_404":0,"responses_other":1,"result":0,"render":793,"fullyLoaded":1987,"cached":0,"docTime":1859,"domTime":0,"score_cache":63,"score_cdn":77,"score_gzip":100,"score_cookies":-1,"score_keep-alive":100,"score_minify":-1,"score_combine":100,"score_compress":-1,"score_etags":-1,"gzip_total":2935,"gzip_savings":0,"minify_total":0,"minify_savings":0,"image_total":0,"image_savings":0,"optimization_checked":1,"aft":0,"domElements":288,"pageSpeedVersion":"1.9","title":"Google","titleTime":891,"loadEventStart":1845,"loadEventEnd":1851,"domContentLoadedEventStart":669,"domContentLoadedEventEnd":714,"lastVisualChange":0,"browser_name":"Google Chrome","browser_version":"38.0.2125.111","server_count":5,"server_rtt":0,"base_page_cdn":"Google","adult_site":0,"fixed_viewport":0,"score_progressive_jpeg":-1,"firstPaint":747,"docCPUms":1201.208,"fullyLoadedCPUms":1372.809,"docCPUpct":64,"fullyLoadedCPUpct":34,"isResponsive":-1,"date":1415298674,"CSI":["v","s","imc","imn","imp","ei","e","atyp","adh","xjs","action","srt","p","npn","rt","xjsls","prt","xjses","xjsee","ol","iml","wsrt","cst","dnst","rqst","rspt"],"CSI.v":3,"CSI.s":"webhp","CSI.imc":1,"CSI.imn":1,"CSI.imp":1,"CSI.ei":"X79bVJ_KLYi2oQSrr4DwDA","CSI.e":"3700261,4011550,4011551,4011557,4011558,4011559,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021341,4021532,4021597,4022074,4022318,4022495,4022688,4023367,4023566,4023709,4023972,4023979,4024625,4024691,4024905,4024932,8500272,8500394,8500699,8500755,10200083,10200716,10200744,10200766","CSI.atyp":"csi","CSI.adh":"","CSI.xjs":760,"CSI.action":"","CSI.srt":642,"CSI.p":"s","CSI.npn":1,"CSI.rt":"xjsls.26,prt.27,xjses.520,xjsee.706,xjs.760,ol.1207,iml.761,wsrt.642,cst.146,dnst.0,rqst.272,rspt.91","CSI.xjsls":26,"CSI.prt":27,"CSI.xjses":520,"CSI.xjsee":706,"CSI.ol":1207,"CSI.iml":761,"CSI.wsrt":642,"CSI.cst":146,"CSI.dnst":0,"CSI.rqst":272,"CSI.rspt":91,"SpeedIndex":0,"visualComplete":0,"run":3,"effectiveBps":278626,"effectiveBpsDoc":291952,"tester":"IE9103-192.168.101.93","pages":{"details":"http:\/\/www.webpagetest.org\/details.php?test=141106_TM_ZFM&run=3&cached=0","checklist":"http:\/\/www.webpagetest.org\/performance_optimization.php?test=141106_TM_ZFM&run=3&cached=0","breakdown":"http:\/\/www.webpagetest.org\/breakdown.php?test=141106_TM_ZFM&run=3&cached=0","domains":"http:\/\/www.webpagetest.org\/domains.php?test=141106_TM_ZFM&run=3&cached=0","screenShot":"http:\/\/www.webpagetest.org\/screen_shot.php?test=141106_TM_ZFM&run=3&cached=0"},"thumbnails":{"waterfall":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/3_waterfall_thumb.png","checklist":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/3_optimization_thumb.png","screenShot":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/3_screen_thumb.png"},"images":{"waterfall":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/3_waterfall.png","connectionView":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/3_connection.png","checklist":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/3_optimization.png","screenShot":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/3_screen.jpg"},"rawData":{"headers":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/3_report.txt","pageData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/3_IEWPG.txt","requestsData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/3_IEWTR.txt","utilization":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/3_progress.csv"},"videoFrames":[{"time":0,"image":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/video_3\/frame_0000.jpg","VisuallyComplete":100}],"domains":{"moc.elgoog.www":{"bytes":413733,"requests":9,"connections":2},"moc.citatsg.lss":{"bytes":14285,"requests":1,"connections":1},"moc.citatsg.www":{"bytes":184146,"requests":1,"connections":1},"moc.elgoog.sipa":{"bytes":49927,"requests":1,"connections":1}},"breakdown":{"html":{"color":[130,181,252],"bytes":60697,"requests":3},"js":{"color":[254,197,132],"bytes":556217,"requests":5},"css":{"color":[178,234,148],"bytes":0,"requests":0},"image":{"color":[196,154,232],"bytes":45177,"requests":4},"flash":{"color":[45,183,193],"bytes":0,"requests":0},"font":{"color":[255,82,62],"bytes":0,"requests":0},"other":{"color":[196,196,196],"bytes":0,"requests":0}}},"repeatView":{"URL":"http:\/\/www.google.com","loadTime":1103,"TTFB":418,"bytesOut":9310,"bytesOutDoc":8740,"bytesIn":85510,"bytesInDoc":85383,"connections":2,"requests":[{"ip_addr":"74.125.225.80","method":"GET","host":"www.google.com","url":"\/","responseCode":"302","load_ms":"126","ttfb_ms":"126","load_start":"49","bytesOut":"584","bytesIn":"532","objectSize":"231","cacheControl":"private","contentType":"text\/html","type":"3","socket":"15","score_cache":"0","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"0","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"49","ssl_start":"0","ssl_end":"0","server_count":"5","server_rtt":"49","client_port":"57544","jpeg_scan_count":"0","full_url":"http:\/\/www.google.com\/","score_progressive_jpeg":-1,"load_end":175,"ttfb_start":"49","ttfb_end":175,"download_start":175,"download_end":175,"download_ms":0,"all_start":"49","all_end":175,"all_ms":"126","headers":{"request":["GET \/ HTTP\/1.1","Host: www.google.com","Connection: keep-alive","Accept: text\/html,application\/xhtml+xml,application\/xml;q=0.9,image\/webp,*\/*;q=0.8","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36 PTST\/191","Accept-Encoding: gzip,deflate,sdch","Accept-Language: en-US,en;q=0.8","Cookie: PREF=ID=c8ae0fd9a35b560a:U=13a3a6adb0b5baae:FF=0:TM=1415298911:LM=1415298911:S=6_qwKnH9qWTEeuXk; NID=67=Ue_d0qHMhmOdhZ9A50DYfvJhQQK0WV2c_RfwRbKG_3tCN8L0CV7FpvqilrK7El69DX146S0_ZqFG02sKFXcT-lgtI9XtRP1fWtZhQ15VPcdvLLjuUjMt1_Dt9d1C9gfk"],"response":["HTTP\/1.1 302 Found","Location: https:\/\/www.google.com\/?gws_rd=ssl","Cache-Control: private","Content-Type: text\/html; charset=UTF-8","Date: Thu, 06 Nov 2014 18:35:23 GMT","Server: gws","Content-Length: 231","X-XSS-Protection: 1; mode=block","X-Frame-Options: SAMEORIGIN","Alternate-Protocol: 80:quic,p=0.01"]},"index":0,"number":1},{"method":"GET","host":"www.google.com","url":"\/?gws_rd=ssl","responseCode":"200","load_ms":"267","ttfb_ms":"205","load_start":"213","bytesOut":"254","bytesIn":"52844","objectSize":"0","expires":"-1","cacheControl":"private, max-age=0","contentType":"text\/html","contentEncoding":"gzip","type":"3","socket":"155","score_cache":"-1","score_cdn":"-1","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":0,"connect_ms":0,"ssl_ms":0,"gzip_total":"280","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"-1","cdn_provider":"Google","dns_start":"199","dns_end":"199","connect_start":"199","connect_end":"199","ssl_start":"199","ssl_end":"199","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/?gws_rd=ssl","score_progressive_jpeg":-1,"load_end":480,"ttfb_start":"213","ttfb_end":418,"download_start":418,"download_end":480,"download_ms":62,"all_start":"213","all_end":480,"all_ms":"267","headers":{"request":["GET \/?gws_rd=ssl HTTP\/1.1","Host: www.google.com","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 05225A0A-144B-44A2-A94B-364C8B987AB1"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=0","content-encoding: gzip","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:35:23 GMT","expires: -1","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":1,"number":2},{"method":"GET","host":"www.google.com","url":"\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=a79bVPW5FZPnoAS_rYIY&e=3700261,4011550,4011551,4011557,4011558,4011559,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021341,4021532,4021597,4022074,4022318,4022495,4022688,4023367,4023566,4023709,4023972,4023979,4024625,4024691,4024905,4024932,8500272,8500394,8500699,8500755,10200083,10200716,10200744,10200766&atyp=csi&adh=&xjs=init.71.28.sb.42.p.12.spch.6.imap.2.m.2&action=&srt=503&p=s&npn=1&rt=xjsls.25,prt.26,xjses.186,xjsee.330,xjs.378,ol.594,iml.127,wsrt.503,cst.0,dnst.0,rqst.268,rspt.62","responseCode":"204","load_ms":"110","ttfb_ms":"109","load_start":"1130","bytesOut":"871","bytesIn":"251","objectSize":"0","contentType":"text\/html","type":"3","socket":"155","score_cache":"0","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=a79bVPW5FZPnoAS_rYIY&e=3700261,4011550,4011551,4011557,4011558,4011559,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021341,4021532,4021597,4022074,4022318,4022495,4022688,4023367,4023566,4023709,4023972,4023979,4024625,4024691,4024905,4024932,8500272,8500394,8500699,8500755,10200083,10200716,10200744,10200766&atyp=csi&adh=&xjs=init.71.28.sb.42.p.12.spch.6.imap.2.m.2&action=&srt=503&p=s&npn=1&rt=xjsls.25,prt.26,xjses.186,xjsee.330,xjs.378,ol.594,iml.127,wsrt.503,cst.0,dnst.0,rqst.268,rspt.62","score_progressive_jpeg":-1,"load_end":1240,"ttfb_start":"1130","ttfb_end":1239,"download_start":1239,"download_end":1240,"download_ms":1,"all_start":"1130","all_end":1240,"all_ms":"110","headers":{"request":["GET \/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=a79bVPW5FZPnoAS_rYIY&e=3700261,4011550,4011551,4011557,4011558,4011559,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021341,4021532,4021597,4022074,4022318,4022495,4022688,4023367,4023566,4023709,4023972,4023979,4024625,4024691,4024905,4024932,8500272,8500394,8500699,8500755,10200083,10200716,10200744,10200766&atyp=csi&adh=&xjs=init.71.28.sb.42.p.12.spch.6.imap.2.m.2&action=&srt=503&p=s&npn=1&rt=xjsls.25,prt.26,xjses.186,xjsee.330,xjs.378,ol.594,iml.127,wsrt.503,cst.0,dnst.0,rqst.268,rspt.62 HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 05225A0A-144B-44A2-A94B-364C8B987AB1"],"response":["HTTP\/1.1 204 No Content","alternate-protocol: 443:quic,p=0.01","content-length: 0","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:35:24 GMT","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":2,"number":3}],"requestsDoc":2,"responses_200":1,"responses_404":0,"responses_other":1,"result":0,"render":693,"fullyLoaded":1240,"cached":1,"docTime":1103,"domTime":0,"score_cache":0,"score_cdn":-1,"score_gzip":100,"score_cookies":-1,"score_keep-alive":100,"score_minify":-1,"score_combine":100,"score_compress":-1,"score_etags":-1,"gzip_total":280,"gzip_savings":0,"minify_total":0,"minify_savings":0,"image_total":0,"image_savings":0,"optimization_checked":1,"aft":0,"domElements":288,"pageSpeedVersion":"1.9","title":"Google","titleTime":691,"loadEventStart":1090,"loadEventEnd":1100,"domContentLoadedEventStart":529,"domContentLoadedEventEnd":572,"lastVisualChange":0,"browser_name":"Google Chrome","browser_version":"38.0.2125.111","server_count":5,"server_rtt":0,"base_page_cdn":"Google","adult_site":0,"fixed_viewport":0,"score_progressive_jpeg":-1,"firstPaint":609,"docCPUms":982.806,"fullyLoadedCPUms":1092.007,"docCPUpct":87,"fullyLoadedCPUpct":33,"isResponsive":-1,"date":1415298686,"CSI":["v","s","imc","imn","imp","ei","e","atyp","adh","xjs","action","srt","p","npn","rt","xjsls","prt","xjses","xjsee","ol","iml","wsrt","cst","dnst","rqst","rspt"],"CSI.v":3,"CSI.s":"webhp","CSI.imc":1,"CSI.imn":1,"CSI.imp":1,"CSI.ei":"a79bVPW5FZPnoAS_rYIY","CSI.e":"3700261,4011550,4011551,4011557,4011558,4011559,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021341,4021532,4021597,4022074,4022318,4022495,4022688,4023367,4023566,4023709,4023972,4023979,4024625,4024691,4024905,4024932,8500272,8500394,8500699,8500755,10200083,10200716,10200744,10200766","CSI.atyp":"csi","CSI.adh":"","CSI.xjs":378,"CSI.action":"","CSI.srt":503,"CSI.p":"s","CSI.npn":1,"CSI.rt":"xjsls.25,prt.26,xjses.186,xjsee.330,xjs.378,ol.594,iml.127,wsrt.503,cst.0,dnst.0,rqst.268,rspt.62","CSI.xjsls":25,"CSI.prt":26,"CSI.xjses":186,"CSI.xjsee":330,"CSI.ol":594,"CSI.iml":127,"CSI.wsrt":503,"CSI.cst":0,"CSI.dnst":0,"CSI.rqst":268,"CSI.rspt":62,"SpeedIndex":0,"visualComplete":0,"run":3,"effectiveBps":104026,"effectiveBpsDoc":124646,"tester":"IE9103-192.168.101.93","pages":{"details":"http:\/\/www.webpagetest.org\/details.php?test=141106_TM_ZFM&run=3&cached=1","checklist":"http:\/\/www.webpagetest.org\/performance_optimization.php?test=141106_TM_ZFM&run=3&cached=1","breakdown":"http:\/\/www.webpagetest.org\/breakdown.php?test=141106_TM_ZFM&run=3&cached=1","domains":"http:\/\/www.webpagetest.org\/domains.php?test=141106_TM_ZFM&run=3&cached=1","screenShot":"http:\/\/www.webpagetest.org\/screen_shot.php?test=141106_TM_ZFM&run=3&cached=1"},"thumbnails":{"waterfall":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/3_Cached_waterfall_thumb.png","checklist":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/3_Cached_optimization_thumb.png","screenShot":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/3_Cached_screen_thumb.png"},"images":{"waterfall":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/3_Cached_waterfall.png","connectionView":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/3_Cached_connection.png","checklist":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/3_Cached_optimization.png","screenShot":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/3_Cached_screen.jpg"},"rawData":{"headers":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/3_Cached_report.txt","pageData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/3_Cached_IEWPG.txt","requestsData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/3_Cached_IEWTR.txt","utilization":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/3_Cached_progress.csv"},"videoFrames":[{"time":0,"image":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/video_3_cached\/frame_0000.jpg","VisuallyComplete":100}],"domains":{"moc.elgoog.www":{"bytes":53627,"requests":3,"connections":2}},"breakdown":{"html":{"color":[130,181,252],"bytes":53627,"requests":3},"js":{"color":[254,197,132],"bytes":0,"requests":0},"css":{"color":[178,234,148],"bytes":0,"requests":0},"image":{"color":[196,154,232],"bytes":0,"requests":0},"flash":{"color":[45,183,193],"bytes":0,"requests":0},"font":{"color":[255,82,62],"bytes":0,"requests":0},"other":{"color":[196,196,196],"bytes":0,"requests":0}}}}},"fvonly":false,"successfulFVRuns":3,"successfulRVRuns":3,"average":{"firstView":{"loadTime":2153,"TTFB":596.33333333333,"bytesOut":7487.6666666667,"bytesOutDoc":6613,"bytesIn":405286,"bytesInDoc":387365.33333333,"connections":4.6666666666667,"requests":12,"requestsDoc":10,"responses_200":10,"responses_404":0,"responses_other":1,"result":0,"render":957.33333333333,"fullyLoaded":2312.3333333333,"cached":0,"docTime":2153,"domTime":0,"score_cache":63,"score_cdn":77,"score_gzip":100,"score_cookies":-1,"score_keep-alive":100,"score_minify":-1,"score_combine":100,"score_compress":-1,"score_etags":-1,"gzip_total":2934.6666666667,"gzip_savings":0,"minify_total":0,"minify_savings":0,"image_total":0,"image_savings":0,"optimization_checked":1,"aft":0,"domElements":288,"pageSpeedVersion":1.9,"titleTime":956.66666666667,"loadEventStart":2140.6666666667,"loadEventEnd":2148.6666666667,"domContentLoadedEventStart":764.66666666667,"domContentLoadedEventEnd":820.66666666667,"lastVisualChange":0,"server_count":5,"server_rtt":0,"adult_site":0,"fixed_viewport":0,"score_progressive_jpeg":-1,"firstPaint":249,"docCPUms":1565.2103333333,"fullyLoadedCPUms":1996.8126666667,"docCPUpct":71.333333333333,"fullyLoadedCPUpct":45,"isResponsive":-1,"date":1415298749.6667,"CSI.v":3,"CSI.imc":1,"CSI.imn":1,"CSI.imp":1,"CSI.xjs":863,"CSI.srt":3254,"CSI.npn":1,"CSI.xjsls":37.666666666667,"CSI.prt":38.666666666667,"CSI.xjses":621,"CSI.xjsee":821.33333333333,"CSI.ol":1419.3333333333,"CSI.iml":778,"CSI.wsrt":725.66666666667,"CSI.cst":150,"CSI.dnst":0,"CSI.rqst":345.66666666667,"CSI.rspt":97.333333333333,"SpeedIndex":0,"visualComplete":0,"run":2,"effectiveBps":242137,"effectiveBpsDoc":254696,"avgRun":1},"repeatView":{"loadTime":1275.6666666667,"TTFB":460.33333333333,"bytesOut":9298.3333333333,"bytesOutDoc":8738.3333333333,"bytesIn":85517.666666667,"bytesInDoc":85390.666666667,"connections":2,"requests":3,"requestsDoc":2,"responses_200":1,"responses_404":0,"responses_other":1,"result":0,"render":793.33333333333,"fullyLoaded":1413.3333333333,"cached":1,"docTime":1275.6666666667,"domTime":0,"score_cache":0,"score_cdn":-1,"score_gzip":100,"score_cookies":-1,"score_keep-alive":100,"score_minify":-1,"score_combine":100,"score_compress":-1,"score_etags":-1,"gzip_total":280,"gzip_savings":0,"minify_total":0,"minify_savings":0,"image_total":0,"image_savings":0,"optimization_checked":1,"aft":0,"domElements":288,"pageSpeedVersion":1.9,"titleTime":691.33333333333,"loadEventStart":1263.6666666667,"loadEventEnd":1280.3333333333,"domContentLoadedEventStart":601.66666666667,"domContentLoadedEventEnd":649.66666666667,"lastVisualChange":0,"server_count":5,"server_rtt":0,"adult_site":0,"fixed_viewport":0,"score_progressive_jpeg":-1,"firstPaint":203,"docCPUms":1138.8073333333,"fullyLoadedCPUms":1482.0096666667,"docCPUpct":88,"fullyLoadedCPUpct":41.666666666667,"isResponsive":-1,"date":1415298762,"CSI.v":3,"CSI.imc":1,"CSI.imn":1,"CSI.imp":1,"CSI.xjs":450.33333333333,"CSI.srt":3096,"CSI.npn":1,"CSI.xjsls":36,"CSI.prt":37.333333333333,"CSI.xjses":229,"CSI.xjsee":406.66666666667,"CSI.ol":711,"CSI.iml":155,"CSI.wsrt":564,"CSI.cst":37.333333333333,"CSI.dnst":0,"CSI.rqst":274.33333333333,"CSI.rspt":76.333333333333,"SpeedIndex":0,"visualComplete":0,"run":2,"effectiveBps":90711.333333333,"effectiveBpsDoc":106299,"avgRun":1}},"standardDeviation":{"firstView":{"loadTime":225,"TTFB":108,"bytesOut":338,"bytesOutDoc":330,"bytesIn":2094,"bytesInDoc":2086,"connections":0,"requests":0,"requestsDoc":0,"responses_200":0,"responses_404":0,"responses_other":0,"result":0,"render":125,"fullyLoaded":256,"cached":0,"docTime":225,"domTime":0,"score_cache":0,"score_cdn":0,"score_gzip":0,"score_cookies":0,"score_keep-alive":0,"score_minify":0,"score_combine":0,"score_compress":0,"score_etags":0,"gzip_total":0,"gzip_savings":0,"minify_total":0,"minify_savings":0,"image_total":0,"image_savings":0,"optimization_checked":0,"aft":0,"domElements":0,"pageSpeedVersion":0,"titleTime":98,"loadEventStart":225,"loadEventEnd":227,"domContentLoadedEventStart":93,"domContentLoadedEventEnd":95,"lastVisualChange":0,"server_count":0,"server_rtt":0,"adult_site":0,"fixed_viewport":0,"score_progressive_jpeg":0,"firstPaint":352,"docCPUms":313,"fullyLoadedCPUms":480,"docCPUpct":7,"fullyLoadedCPUpct":8,"isResponsive":0,"date":106,"CSI.v":0,"CSI.imc":0,"CSI.imn":0,"CSI.imp":0,"CSI.xjs":142,"CSI.srt":1925,"CSI.npn":0,"CSI.xjsls":11,"CSI.prt":11,"CSI.xjses":106,"CSI.xjsee":149,"CSI.ol":217,"CSI.iml":431,"CSI.wsrt":94,"CSI.cst":9,"CSI.dnst":0,"CSI.rqst":81,"CSI.rspt":19,"SpeedIndex":0,"visualComplete":0,"run":0,"effectiveBps":36954,"effectiveBpsDoc":37681,"avgRun":null},"repeatView":{"loadTime":122,"TTFB":35,"bytesOut":11,"bytesOutDoc":2,"bytesIn":29,"bytesInDoc":29,"connections":0,"requests":0,"requestsDoc":0,"responses_200":0,"responses_404":0,"responses_other":0,"result":0,"render":82,"fullyLoaded":122,"cached":0,"docTime":122,"domTime":0,"score_cache":0,"score_cdn":0,"score_gzip":0,"score_cookies":0,"score_keep-alive":0,"score_minify":0,"score_combine":0,"score_compress":0,"score_etags":0,"gzip_total":0,"gzip_savings":0,"minify_total":0,"minify_savings":0,"image_total":0,"image_savings":0,"optimization_checked":0,"aft":0,"domElements":0,"pageSpeedVersion":0,"titleTime":0,"loadEventStart":122,"loadEventEnd":127,"domContentLoadedEventStart":51,"domContentLoadedEventEnd":55,"lastVisualChange":0,"server_count":0,"server_rtt":0,"adult_site":0,"fixed_viewport":0,"score_progressive_jpeg":0,"firstPaint":287,"docCPUms":113,"fullyLoadedCPUms":277,"docCPUpct":1,"fullyLoadedCPUpct":6,"isResponsive":0,"date":106,"CSI.v":0,"CSI.imc":0,"CSI.imn":0,"CSI.imp":0,"CSI.xjs":52,"CSI.srt":1932,"CSI.npn":0,"CSI.xjsls":8,"CSI.prt":8,"CSI.xjses":32,"CSI.xjsee":57,"CSI.ol":82,"CSI.iml":19,"CSI.wsrt":43,"CSI.cst":26,"CSI.dnst":0,"CSI.rqst":11,"CSI.rspt":12,"SpeedIndex":0,"visualComplete":0,"run":0,"effectiveBps":9672,"effectiveBpsDoc":13326,"avgRun":null}},"median":{"firstView":{"URL":"http:\/\/www.google.com","loadTime":2194,"TTFB":749,"bytesOut":7722,"bytesOutDoc":6845,"bytesIn":406739,"bytesInDoc":388800,"connections":5,"requests":[{"ip_addr":"74.125.225.81","method":"GET","host":"www.google.com","url":"\/","responseCode":"302","load_ms":"117","ttfb_ms":"117","load_start":"49","bytesOut":"342","bytesIn":"1044","objectSize":"231","cacheControl":"private","contentType":"text\/html","type":"3","socket":"25","score_cache":"0","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"0","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"49","ssl_start":"0","ssl_end":"0","server_count":"5","server_rtt":"49","client_port":"64165","jpeg_scan_count":"0","full_url":"http:\/\/www.google.com\/","score_progressive_jpeg":-1,"load_end":166,"ttfb_start":"49","ttfb_end":166,"download_start":166,"download_end":166,"download_ms":0,"all_start":"49","all_end":166,"all_ms":"117","headers":{"request":["GET \/ HTTP\/1.1","Host: www.google.com","Connection: keep-alive","Accept: text\/html,application\/xhtml+xml,application\/xml;q=0.9,image\/webp,*\/*;q=0.8","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36 PTST\/191","Accept-Encoding: gzip,deflate,sdch","Accept-Language: en-US,en;q=0.8"],"response":["HTTP\/1.1 302 Found","Location: https:\/\/www.google.com\/?gws_rd=ssl","Cache-Control: private","Content-Type: text\/html; charset=UTF-8","Set-Cookie: PREF=ID=b728500ce0ca065c:FF=0:TM=1415298912:LM=1415298912:S=zh8V8B9SxIDho86-; expires=Sat, 05-Nov-2016 18:35:12 GMT; path=\/; domain=.google.com","Set-Cookie: NID=67=hig1z6hORww_j-ZirykxFzF_QOsE5U-cSRBt-4Z9KlUACPm1wi_4daX4WSVBI-NvWrtsBV-sBmZ9nQFBVzooWg545tAJDZybR5D6RRNI3-AsppdAXhKMas9gxZI96dhQ; expires=Fri, 08-May-2015 18:35:12 GMT; path=\/; domain=.google.com; HttpOnly","P3P: CP=\"This is not a P3P policy! See http:\/\/www.google.com\/support\/accounts\/bin\/answer.py?hl=en&answer=151657 for more info.\"","Date: Thu, 06 Nov 2014 18:35:12 GMT","Server: gws","Content-Length: 231","X-XSS-Protection: 1; mode=block","X-Frame-Options: SAMEORIGIN","Alternate-Protocol: 80:quic,p=0.01"]},"index":0,"number":1},{"method":"GET","host":"www.google.com","url":"\/?gws_rd=ssl","responseCode":"200","load_ms":"460","ttfb_ms":"383","load_start":"366","bytesOut":"254","bytesIn":"57605","objectSize":"0","expires":"-1","cacheControl":"private, max-age=0","contentType":"text\/html","contentEncoding":"gzip","type":"3","socket":"261","score_cache":"-1","score_cdn":"-1","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":0,"connect_ms":36,"ssl_ms":127,"gzip_total":"799","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"-1","cdn_provider":"Google","dns_start":"202","dns_end":"202","connect_start":"202","connect_end":"238","ssl_start":"238","ssl_end":"365","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/?gws_rd=ssl","score_progressive_jpeg":-1,"load_end":826,"ttfb_start":"366","ttfb_end":749,"download_start":749,"download_end":826,"download_ms":77,"all_start":"202","all_end":826,"all_ms":623,"headers":{"request":["GET \/?gws_rd=ssl HTTP\/1.1","Host: www.google.com","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=0","content-encoding: gzip","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:35:12 GMT","expires: -1","p3p: CP=\"This is not a P3P policy! See http:\/\/www.google.com\/support\/accounts\/bin\/answer.py?hl=en&answer=151657 for more info.\"","server: gws","set-cookie: PREF=ID=b728500ce0ca065c:U=ffc0fb4c40c98be0:FF=0:TM=1415298912:LM=1415298912:S=OZ50oqzyGSXCcI0w; expires=Sat, 05-Nov-2016 18:35:12 GMT; path=\/; domain=.google.com","NID=67=mGg_6DOdS_TuKOXz3CFTdCqjkNEP5o91Wbh0WdZ_JxJcHjw-kkoHDdpMAR57vwg4sPriwQXK1O5K-_Zy3S4KOUtOCmqwvgLA0eh_VuulzoWlmaWFu6DQaafCJsJAk7ka; expires=Fri, 08-May-2015 18:35:12 GMT; path=\/; domain=.google.com; HttpOnly","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":1,"number":2},{"method":"GET","host":"www.google.com","url":"\/images\/srpr\/logo11w.png","responseCode":"200","load_ms":"117","ttfb_ms":"70","load_start":"998","bytesOut":"330","bytesIn":"16919","objectSize":"0","expires":"Thu, 06 Nov 2014 18:35:13 GMT","cacheControl":"private, max-age=31536000","contentType":"image\/png","type":"3","socket":"261","score_cache":"0","score_cdn":"100","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/?gws_rd=ssl","initiator_line":"28","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/images\/srpr\/logo11w.png","score_progressive_jpeg":-1,"load_end":1115,"ttfb_start":"998","ttfb_end":1068,"download_start":1068,"download_end":1115,"download_ms":47,"all_start":"998","all_end":1115,"all_ms":"117","headers":{"request":["GET \/images\/srpr\/logo11w.png HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=31536000","content-length: 14022","content-type: image\/png","date: Thu, 06 Nov 2014 18:35:13 GMT","expires: Thu, 06 Nov 2014 18:35:13 GMT","last-modified: Wed, 09 Oct 2013 01:35:39 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":2,"number":3},{"method":"GET","host":"ssl.gstatic.com","url":"\/gb\/images\/i1_71651352.png","responseCode":"200","load_ms":"81","ttfb_ms":"45","load_start":"1097","bytesOut":"333","bytesIn":"14285","objectSize":"0","expires":"Thu, 05 Nov 2015 15:23:35 GMT","cacheControl":"public, max-age=31536000","contentType":"image\/png","type":"3","socket":"336","score_cache":"100","score_cdn":"0","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":0,"connect_ms":37,"ssl_ms":66,"gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","dns_start":"993","dns_end":"993","connect_start":"993","connect_end":"1030","ssl_start":"1030","ssl_end":"1096","initiator":"https:\/\/www.google.com\/?gws_rd=ssl","initiator_line":"76","initiator_column":"35","server_count":"4","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/ssl.gstatic.com\/gb\/images\/i1_71651352.png","score_progressive_jpeg":-1,"load_end":1178,"ttfb_start":"1097","ttfb_end":1142,"download_start":1142,"download_end":1178,"download_ms":36,"all_start":"993","all_end":1178,"all_ms":184,"headers":{"request":["GET \/gb\/images\/i1_71651352.png HTTP\/1.1","Host: ssl.gstatic.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F"],"response":["HTTP\/1.1 200 OK","age: 97898","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-length: 14055","content-type: image\/png","date: Wed, 05 Nov 2014 15:23:35 GMT","expires: Thu, 05 Nov 2015 15:23:35 GMT","last-modified: Thu, 16 Oct 2014 18:20:30 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":3,"number":4},{"method":"GET","host":"www.google.com","url":"\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","responseCode":"200","load_ms":"346","ttfb_ms":"99","load_start":"1123","bytesOut":"443","bytesIn":"180939","objectSize":"0","expires":"Fri, 06 Nov 2015 11:13:26 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"261","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"429","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/?gws_rd=ssl","initiator_line":"94","initiator_column":"17237","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","score_progressive_jpeg":-1,"load_end":1469,"ttfb_start":"1123","ttfb_end":1222,"download_start":1222,"download_end":1469,"download_ms":247,"all_start":"1123","all_end":1469,"all_ms":"346","headers":{"request":["GET \/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP\/1.1","Host: www.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F"],"response":["HTTP\/1.1 200 OK","age: 26507","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 130931","content-type: text\/javascript; charset=UTF-8","date: Thu, 06 Nov 2014 11:13:26 GMT","expires: Fri, 06 Nov 2015 11:13:26 GMT","last-modified: Tue, 04 Nov 2014 19:30:26 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":4,"number":5},{"method":"GET","host":"www.gstatic.com","url":"\/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w","responseCode":"200","load_ms":"317","ttfb_ms":"316","load_start":"1310","bytesOut":"392","bytesIn":"184146","objectSize":"0","expires":"Thu, 05 Nov 2015 13:04:24 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"392","score_cache":"100","score_cdn":"0","score_gzip":"100","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":57,"connect_ms":39,"ssl_ms":64,"gzip_total":"429","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","dns_start":"1149","dns_end":"1206","connect_start":"1206","connect_end":"1245","ssl_start":"1245","ssl_end":"1309","initiator":"https:\/\/www.google.com\/?gws_rd=ssl","initiator_line":"57","initiator_column":"143","server_count":"4","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.gstatic.com\/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w","score_progressive_jpeg":-1,"load_end":1627,"ttfb_start":"1310","ttfb_end":1626,"download_start":1626,"download_end":1627,"download_ms":1,"all_start":"1149","all_end":1627,"all_ms":477,"headers":{"request":["GET \/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w HTTP\/1.1","Host: www.gstatic.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F"],"response":["HTTP\/1.1 200 OK","age: 106249","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 55207","content-type: text\/javascript; charset=UTF-8","date: Wed, 05 Nov 2014 13:04:24 GMT","expires: Thu, 05 Nov 2015 13:04:24 GMT","last-modified: Tue, 04 Nov 2014 01:19:09 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":5,"number":6},{"method":"GET","host":"www.google.com","url":"\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=0\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","responseCode":"200","load_ms":"130","ttfb_ms":"57","load_start":"1618","bytesOut":"682","bytesIn":"58844","objectSize":"0","expires":"Fri, 06 Nov 2015 12:08:37 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"261","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"428","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","initiator_line":"101","initiator_column":"112","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=0\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","score_progressive_jpeg":-1,"load_end":1748,"ttfb_start":"1618","ttfb_end":1675,"download_start":1675,"download_end":1748,"download_ms":73,"all_start":"1618","all_end":1748,"all_ms":"130","headers":{"request":["GET \/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=0\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP\/1.1","Host: www.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F"],"response":["HTTP\/1.1 200 OK","age: 23196","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 48157","content-type: text\/javascript; charset=UTF-8","date: Thu, 06 Nov 2014 12:08:37 GMT","expires: Fri, 06 Nov 2015 12:08:37 GMT","last-modified: Tue, 04 Nov 2014 19:30:26 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":6,"number":7},{"method":"GET","host":"www.google.com","url":"\/textinputassistant\/tia.png","responseCode":"200","load_ms":"231","ttfb_ms":"224","load_start":"1620","bytesOut":"333","bytesIn":"485","objectSize":"0","expires":"Thu, 05 Nov 2015 06:57:32 GMT","cacheControl":"public, max-age=31536000","contentType":"image\/png","type":"3","socket":"261","score_cache":"100","score_cdn":"100","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/?gws_rd=ssl","initiator_line":"1","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/textinputassistant\/tia.png","score_progressive_jpeg":-1,"load_end":1851,"ttfb_start":"1620","ttfb_end":1844,"download_start":1844,"download_end":1851,"download_ms":7,"all_start":"1620","all_end":1851,"all_ms":"231","headers":{"request":["GET \/textinputassistant\/tia.png HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F"],"response":["HTTP\/1.1 200 OK","age: 128261","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-length: 387","content-type: image\/png","date: Wed, 05 Nov 2014 06:57:32 GMT","expires: Thu, 05 Nov 2015 06:57:32 GMT","last-modified: Mon, 02 Apr 2012 02:13:37 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":7,"number":8},{"method":"GET","host":"www.google.com","url":"\/extern_chrome\/854094c746d4c9a.js?bav=on.2,or.r_qf.","responseCode":"200","load_ms":"230","ttfb_ms":"227","load_start":"1622","bytesOut":"340","bytesIn":"36586","objectSize":"0","expires":"Thu, 05 Nov 2015 00:00:00 GMT","cacheControl":"private","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"261","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"422","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31382687","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","initiator_line":"1187","initiator_column":"181","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/extern_chrome\/854094c746d4c9a.js?bav=on.2,or.r_qf.","score_progressive_jpeg":-1,"load_end":1852,"ttfb_start":"1622","ttfb_end":1849,"download_start":1849,"download_end":1852,"download_ms":3,"all_start":"1622","all_end":1852,"all_ms":"230","headers":{"request":["GET \/extern_chrome\/854094c746d4c9a.js?bav=on.2,or.r_qf. HTTP\/1.1","Host: www.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private","content-disposition: attachment; filename=\"f.txt\"","content-encoding: gzip","content-length: 13825","content-type: text\/javascript; charset=UTF-8","date: Thu, 06 Nov 2014 18:35:13 GMT","expires: Thu, 05 Nov 2015 00:00:00 GMT","last-modified: Thu, 07 Nov 2013 00:00:00 GMT","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":8,"number":9},{"method":"GET","host":"apis.google.com","url":"\/_\/scs\/abc-static\/_\/js\/k=gapi.gapi.en.3_mJ9Wvc9FU.O\/m=gapi_iframes,googleapis_client,plusone\/rt=j\/sv=1\/d=1\/ed=1\/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg\/cb=gapi.loaded_0","responseCode":"200","load_ms":"113","ttfb_ms":"49","load_start":"1981","bytesOut":"456","bytesIn":"49179","objectSize":"0","expires":"Thu, 05 Nov 2015 15:23:35 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"476","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":32,"connect_ms":36,"ssl_ms":62,"gzip_total":"428","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"1851","dns_end":"1883","connect_start":"1883","connect_end":"1919","ssl_start":"1919","ssl_end":"1981","initiator":"https:\/\/www.gstatic.com\/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w","initiator_line":"138","initiator_column":"381","server_count":"11","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/apis.google.com\/_\/scs\/abc-static\/_\/js\/k=gapi.gapi.en.3_mJ9Wvc9FU.O\/m=gapi_iframes,googleapis_client,plusone\/rt=j\/sv=1\/d=1\/ed=1\/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg\/cb=gapi.loaded_0","score_progressive_jpeg":-1,"load_end":2094,"ttfb_start":"1981","ttfb_end":2030,"download_start":2030,"download_end":2094,"download_ms":64,"all_start":"1851","all_end":2094,"all_ms":243,"headers":{"request":["GET \/_\/scs\/abc-static\/_\/js\/k=gapi.gapi.en.3_mJ9Wvc9FU.O\/m=gapi_iframes,googleapis_client,plusone\/rt=j\/sv=1\/d=1\/ed=1\/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg\/cb=gapi.loaded_0 HTTP\/1.1","Host: apis.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F"],"response":["HTTP\/1.1 200 OK","age: 97899","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 48911","content-type: text\/javascript; charset=UTF-8","date: Wed, 05 Nov 2014 15:23:35 GMT","expires: Thu, 05 Nov 2015 15:23:35 GMT","last-modified: Thu, 16 Oct 2014 07:30:29 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":9,"number":10},{"method":"GET","host":"www.google.com","url":"\/images\/nav_logo195.png","responseCode":"200","load_ms":"86","ttfb_ms":"70","load_start":"2214","bytesOut":"329","bytesIn":"16300","objectSize":"0","expires":"Thu, 06 Nov 2014 18:35:14 GMT","cacheControl":"private, max-age=31536000","contentType":"image\/png","type":"3","socket":"261","score_cache":"0","score_cdn":"100","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/images\/nav_logo195.png","score_progressive_jpeg":-1,"load_end":2300,"ttfb_start":"2214","ttfb_end":2284,"download_start":2284,"download_end":2300,"download_ms":16,"all_start":"2214","all_end":2300,"all_ms":"86","headers":{"request":["GET \/images\/nav_logo195.png HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=31536000","content-length: 16214","content-type: image\/png","date: Thu, 06 Nov 2014 18:35:14 GMT","expires: Thu, 06 Nov 2014 18:35:14 GMT","last-modified: Wed, 21 May 2014 00:02:44 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":10,"number":11},{"method":"GET","host":"www.google.com","url":"\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=YL9bVP6qJ5DuoAS6x4KwCg&e=3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.83.28.sb.49.p.12.m.8.spch.6.imap.2&action=&srt=3895&p=s&npn=1&rt=xjsls.34,prt.35,xjses.575,xjsee.725,xjs.764,ol.1332,iml.258,wsrt.857,cst.163,dnst.0,rqst.460,rspt.77","responseCode":"204","load_ms":"119","ttfb_ms":"118","load_start":"2217","bytesOut":"844","bytesIn":"251","objectSize":"0","contentType":"text\/html","type":"3","socket":"261","score_cache":"0","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=YL9bVP6qJ5DuoAS6x4KwCg&e=3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.83.28.sb.49.p.12.m.8.spch.6.imap.2&action=&srt=3895&p=s&npn=1&rt=xjsls.34,prt.35,xjses.575,xjsee.725,xjs.764,ol.1332,iml.258,wsrt.857,cst.163,dnst.0,rqst.460,rspt.77","score_progressive_jpeg":-1,"load_end":2336,"ttfb_start":"2217","ttfb_end":2335,"download_start":2335,"download_end":2336,"download_ms":1,"all_start":"2217","all_end":2336,"all_ms":"119","headers":{"request":["GET \/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=YL9bVP6qJ5DuoAS6x4KwCg&e=3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.83.28.sb.49.p.12.m.8.spch.6.imap.2&action=&srt=3895&p=s&npn=1&rt=xjsls.34,prt.35,xjses.575,xjsee.725,xjs.764,ol.1332,iml.258,wsrt.857,cst.163,dnst.0,rqst.460,rspt.77 HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F"],"response":["HTTP\/1.1 204 No Content","alternate-protocol: 443:quic,p=0.01","content-length: 0","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:35:14 GMT","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":11,"number":12}],"requestsDoc":10,"responses_200":10,"responses_404":0,"responses_other":1,"result":0,"render":1097,"fullyLoaded":2336,"cached":0,"docTime":2194,"domTime":0,"score_cache":63,"score_cdn":77,"score_gzip":100,"score_cookies":-1,"score_keep-alive":100,"score_minify":-1,"score_combine":100,"score_compress":-1,"score_etags":-1,"gzip_total":2935,"gzip_savings":0,"minify_total":0,"minify_savings":0,"image_total":0,"image_savings":0,"optimization_checked":1,"aft":0,"domElements":288,"pageSpeedVersion":"1.9","title":"Google","titleTime":1096,"loadEventStart":2185,"loadEventEnd":2193,"domContentLoadedEventStart":892,"domContentLoadedEventEnd":945,"lastVisualChange":0,"browser_name":"Google Chrome","browser_version":"38.0.2125.111","server_count":5,"server_rtt":0,"base_page_cdn":"Google","adult_site":0,"fixed_viewport":0,"score_progressive_jpeg":-1,"firstPaint":0,"docCPUms":1528.81,"fullyLoadedCPUms":2074.813,"docCPUpct":69,"fullyLoadedCPUpct":47,"isResponsive":-1,"date":1415298675,"CSI":["v","s","imc","imn","imp","ei","e","atyp","adh","xjs","action","srt","p","npn","rt","xjsls","prt","xjses","xjsee","ol","iml","wsrt","cst","dnst","rqst","rspt"],"CSI.v":3,"CSI.s":"webhp","CSI.imc":1,"CSI.imn":1,"CSI.imp":1,"CSI.ei":"YL9bVP6qJ5DuoAS6x4KwCg","CSI.e":"3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743","CSI.atyp":"csi","CSI.adh":"","CSI.xjs":764,"CSI.action":"","CSI.srt":3895,"CSI.p":"s","CSI.npn":1,"CSI.rt":"xjsls.34,prt.35,xjses.575,xjsee.725,xjs.764,ol.1332,iml.258,wsrt.857,cst.163,dnst.0,rqst.460,rspt.77","CSI.xjsls":34,"CSI.prt":35,"CSI.xjses":575,"CSI.xjsee":725,"CSI.ol":1332,"CSI.iml":258,"CSI.wsrt":857,"CSI.cst":163,"CSI.dnst":0,"CSI.rqst":460,"CSI.rspt":77,"SpeedIndex":0,"visualComplete":0,"run":1,"effectiveBps":256294,"effectiveBpsDoc":269065,"tester":"IE9104-192.168.101.94","pages":{"details":"http:\/\/www.webpagetest.org\/details.php?test=141106_TM_ZFM&run=1&cached=0","checklist":"http:\/\/www.webpagetest.org\/performance_optimization.php?test=141106_TM_ZFM&run=1&cached=0","breakdown":"http:\/\/www.webpagetest.org\/breakdown.php?test=141106_TM_ZFM&run=1&cached=0","domains":"http:\/\/www.webpagetest.org\/domains.php?test=141106_TM_ZFM&run=1&cached=0","screenShot":"http:\/\/www.webpagetest.org\/screen_shot.php?test=141106_TM_ZFM&run=1&cached=0"},"thumbnails":{"waterfall":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/1_waterfall_thumb.png","checklist":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/1_optimization_thumb.png","screenShot":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/1_screen_thumb.png"},"images":{"waterfall":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_waterfall.png","connectionView":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_connection.png","checklist":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_optimization.png","screenShot":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_screen.jpg"},"rawData":{"headers":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_report.txt","pageData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_IEWPG.txt","requestsData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_IEWTR.txt","utilization":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_progress.csv"},"videoFrames":[{"time":0,"image":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/video_1\/frame_0000.jpg","VisuallyComplete":100}],"domains":{"moc.elgoog.www":{"bytes":368973,"requests":9,"connections":2},"moc.citatsg.lss":{"bytes":14285,"requests":1,"connections":1},"moc.citatsg.www":{"bytes":184146,"requests":1,"connections":1},"moc.elgoog.sipa":{"bytes":49179,"requests":1,"connections":1}},"breakdown":{"html":{"color":[130,181,252],"bytes":58900,"requests":3},"js":{"color":[254,197,132],"bytes":509694,"requests":5},"css":{"color":[178,234,148],"bytes":0,"requests":0},"image":{"color":[196,154,232],"bytes":47989,"requests":4},"flash":{"color":[45,183,193],"bytes":0,"requests":0},"font":{"color":[255,82,62],"bytes":0,"requests":0},"other":{"color":[196,196,196],"bytes":0,"requests":0}}},"repeatView":{"URL":"http:\/\/www.google.com","loadTime":1352,"TTFB":505,"bytesOut":9302,"bytesOutDoc":8740,"bytesIn":85557,"bytesInDoc":85430,"connections":2,"requests":[{"ip_addr":"74.125.225.81","method":"GET","host":"www.google.com","url":"\/","responseCode":"302","load_ms":"156","ttfb_ms":"156","load_start":"62","bytesOut":"584","bytesIn":"532","objectSize":"231","cacheControl":"private","contentType":"text\/html","type":"3","socket":"15","score_cache":"0","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"0","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"61","ssl_start":"0","ssl_end":"0","server_count":"5","server_rtt":"60","client_port":"64227","jpeg_scan_count":"0","full_url":"http:\/\/www.google.com\/","score_progressive_jpeg":-1,"load_end":218,"ttfb_start":"62","ttfb_end":218,"download_start":218,"download_end":218,"download_ms":0,"all_start":"62","all_end":218,"all_ms":"156","headers":{"request":["GET \/ HTTP\/1.1","Host: www.google.com","Connection: keep-alive","Accept: text\/html,application\/xhtml+xml,application\/xml;q=0.9,image\/webp,*\/*;q=0.8","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36 PTST\/191","Accept-Encoding: gzip,deflate,sdch","Accept-Language: en-US,en;q=0.8","Cookie: PREF=ID=b728500ce0ca065c:U=ffc0fb4c40c98be0:FF=0:TM=1415298912:LM=1415298912:S=OZ50oqzyGSXCcI0w; NID=67=mGg_6DOdS_TuKOXz3CFTdCqjkNEP5o91Wbh0WdZ_JxJcHjw-kkoHDdpMAR57vwg4sPriwQXK1O5K-_Zy3S4KOUtOCmqwvgLA0eh_VuulzoWlmaWFu6DQaafCJsJAk7ka"],"response":["HTTP\/1.1 302 Found","Location: https:\/\/www.google.com\/?gws_rd=ssl","Cache-Control: private","Content-Type: text\/html; charset=UTF-8","Date: Thu, 06 Nov 2014 18:35:24 GMT","Server: gws","Content-Length: 231","X-XSS-Protection: 1; mode=block","X-Frame-Options: SAMEORIGIN","Alternate-Protocol: 80:quic,p=0.01"]},"index":0,"number":1},{"method":"GET","host":"www.google.com","url":"\/?gws_rd=ssl","responseCode":"200","load_ms":"265","ttfb_ms":"190","load_start":"315","bytesOut":"254","bytesIn":"63195","objectSize":"0","expires":"-1","cacheControl":"private, max-age=0","contentType":"text\/html","contentEncoding":"gzip","type":"3","socket":"149","score_cache":"-1","score_cdn":"-1","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":0,"connect_ms":0,"ssl_ms":55,"gzip_total":"280","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"-1","cdn_provider":"Google","dns_start":"259","dns_end":"259","connect_start":"259","connect_end":"259","ssl_start":"259","ssl_end":"314","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/?gws_rd=ssl","score_progressive_jpeg":-1,"load_end":580,"ttfb_start":"315","ttfb_end":505,"download_start":505,"download_end":580,"download_ms":75,"all_start":"259","all_end":580,"all_ms":320,"headers":{"request":["GET \/?gws_rd=ssl HTTP\/1.1","Host: www.google.com","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 67027B33-8010-4675-92E8-A02F9E86437E"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=0","content-encoding: gzip","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:35:24 GMT","expires: -1","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":1,"number":2},{"method":"GET","host":"www.google.com","url":"\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=bL9bVJrPJcP8oQSom4LwBg&e=3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.73.28.sb.45.p.12.spch.6.imap.2.m.2&action=&srt=3646&p=s&npn=1&rt=xjsls.39,prt.40,xjses.237,xjsee.420,xjs.470,ol.764,iml.172,wsrt.605,cst.55,dnst.0,rqst.265,rspt.74","responseCode":"204","load_ms":"108","ttfb_ms":"105","load_start":"1383","bytesOut":"842","bytesIn":"251","objectSize":"0","contentType":"text\/html","type":"3","socket":"149","score_cache":"0","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=bL9bVJrPJcP8oQSom4LwBg&e=3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.73.28.sb.45.p.12.spch.6.imap.2.m.2&action=&srt=3646&p=s&npn=1&rt=xjsls.39,prt.40,xjses.237,xjsee.420,xjs.470,ol.764,iml.172,wsrt.605,cst.55,dnst.0,rqst.265,rspt.74","score_progressive_jpeg":-1,"load_end":1491,"ttfb_start":"1383","ttfb_end":1488,"download_start":1488,"download_end":1491,"download_ms":3,"all_start":"1383","all_end":1491,"all_ms":"108","headers":{"request":["GET \/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=bL9bVJrPJcP8oQSom4LwBg&e=3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.73.28.sb.45.p.12.spch.6.imap.2.m.2&action=&srt=3646&p=s&npn=1&rt=xjsls.39,prt.40,xjses.237,xjsee.420,xjs.470,ol.764,iml.172,wsrt.605,cst.55,dnst.0,rqst.265,rspt.74 HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 67027B33-8010-4675-92E8-A02F9E86437E"],"response":["HTTP\/1.1 204 No Content","alternate-protocol: 443:quic,p=0.01","content-length: 0","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:35:25 GMT","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":2,"number":3}],"requestsDoc":2,"responses_200":1,"responses_404":0,"responses_other":1,"result":0,"render":792,"fullyLoaded":1491,"cached":1,"docTime":1352,"domTime":0,"score_cache":0,"score_cdn":-1,"score_gzip":100,"score_cookies":-1,"score_keep-alive":100,"score_minify":-1,"score_combine":100,"score_compress":-1,"score_etags":-1,"gzip_total":280,"gzip_savings":0,"minify_total":0,"minify_savings":0,"image_total":0,"image_savings":0,"optimization_checked":1,"aft":0,"domElements":288,"pageSpeedVersion":"1.9","title":"Google","titleTime":691,"loadEventStart":1347,"loadEventEnd":1378,"domContentLoadedEventStart":646,"domContentLoadedEventEnd":700,"lastVisualChange":0,"browser_name":"Google Chrome","browser_version":"38.0.2125.111","server_count":5,"server_rtt":0,"base_page_cdn":"Google","adult_site":0,"fixed_viewport":0,"score_progressive_jpeg":-1,"firstPaint":0,"docCPUms":1185.608,"fullyLoadedCPUms":1638.011,"docCPUpct":87,"fullyLoadedCPUpct":45,"isResponsive":-1,"date":1415298687,"CSI":["v","s","imc","imn","imp","ei","e","atyp","adh","xjs","action","srt","p","npn","rt","xjsls","prt","xjses","xjsee","ol","iml","wsrt","cst","dnst","rqst","rspt"],"CSI.v":3,"CSI.s":"webhp","CSI.imc":1,"CSI.imn":1,"CSI.imp":1,"CSI.ei":"bL9bVJrPJcP8oQSom4LwBg","CSI.e":"3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743","CSI.atyp":"csi","CSI.adh":"","CSI.xjs":470,"CSI.action":"","CSI.srt":3646,"CSI.p":"s","CSI.npn":1,"CSI.rt":"xjsls.39,prt.40,xjses.237,xjsee.420,xjs.470,ol.764,iml.172,wsrt.605,cst.55,dnst.0,rqst.265,rspt.74","CSI.xjsls":39,"CSI.prt":40,"CSI.xjses":237,"CSI.xjsee":420,"CSI.ol":764,"CSI.iml":172,"CSI.wsrt":605,"CSI.cst":55,"CSI.dnst":0,"CSI.rqst":265,"CSI.rspt":74,"SpeedIndex":0,"visualComplete":0,"run":1,"effectiveBps":86771,"effectiveBpsDoc":100861,"tester":"IE9104-192.168.101.94","pages":{"details":"http:\/\/www.webpagetest.org\/details.php?test=141106_TM_ZFM&run=1&cached=1","checklist":"http:\/\/www.webpagetest.org\/performance_optimization.php?test=141106_TM_ZFM&run=1&cached=1","breakdown":"http:\/\/www.webpagetest.org\/breakdown.php?test=141106_TM_ZFM&run=1&cached=1","domains":"http:\/\/www.webpagetest.org\/domains.php?test=141106_TM_ZFM&run=1&cached=1","screenShot":"http:\/\/www.webpagetest.org\/screen_shot.php?test=141106_TM_ZFM&run=1&cached=1"},"thumbnails":{"waterfall":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/1_Cached_waterfall_thumb.png","checklist":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/1_Cached_optimization_thumb.png","screenShot":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/1_Cached_screen_thumb.png"},"images":{"waterfall":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_Cached_waterfall.png","connectionView":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_Cached_connection.png","checklist":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_Cached_optimization.png","screenShot":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_Cached_screen.jpg"},"rawData":{"headers":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_Cached_report.txt","pageData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_Cached_IEWPG.txt","requestsData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_Cached_IEWTR.txt","utilization":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_Cached_progress.csv"},"videoFrames":[{"time":0,"image":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/video_1_cached\/frame_0000.jpg","VisuallyComplete":100}],"domains":{"moc.elgoog.www":{"bytes":63978,"requests":3,"connections":2}},"breakdown":{"html":{"color":[130,181,252],"bytes":63978,"requests":3},"js":{"color":[254,197,132],"bytes":0,"requests":0},"css":{"color":[178,234,148],"bytes":0,"requests":0},"image":{"color":[196,154,232],"bytes":0,"requests":0},"flash":{"color":[45,183,193],"bytes":0,"requests":0},"font":{"color":[255,82,62],"bytes":0,"requests":0},"other":{"color":[196,196,196],"bytes":0,"requests":0}}}}},"statusCode":200,"statusText":"Test Complete"} \ No newline at end of file diff --git a/test/fixtures/responses/testResultsMultiRunsTTFBMedianMetric.json b/test/fixtures/responses/testResultsMultiRunsTTFBMedianMetric.json deleted file mode 100644 index f113f44..0000000 --- a/test/fixtures/responses/testResultsMultiRunsTTFBMedianMetric.json +++ /dev/null @@ -1 +0,0 @@ -{"data":{"id":"141106_TM_ZFM","url":"http:\/\/www.google.com","summary":"http:\/\/www.webpagetest.org\/results.php?test=141106_TM_ZFM","testUrl":"http:\/\/www.google.com","location":"Dulles:Chrome","from":"Dulles, VA - Chrome<\/b> - Cable<\/b>","connectivity":"Cable","bwDown":5000,"bwUp":1000,"latency":28,"plr":"0","completed":1415298930,"tester":"IE9104-192.168.101.94","testerDNS":"192.168.101.1,192.168.0.1","runs":{"1":{"firstView":{"URL":"http:\/\/www.google.com","loadTime":2194,"TTFB":749,"bytesOut":7722,"bytesOutDoc":6845,"bytesIn":406739,"bytesInDoc":388800,"connections":5,"requests":[{"ip_addr":"74.125.225.81","method":"GET","host":"www.google.com","url":"\/","responseCode":"302","load_ms":"117","ttfb_ms":"117","load_start":"49","bytesOut":"342","bytesIn":"1044","objectSize":"231","cacheControl":"private","contentType":"text\/html","type":"3","socket":"25","score_cache":"0","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"0","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"49","ssl_start":"0","ssl_end":"0","server_count":"5","server_rtt":"49","client_port":"64165","jpeg_scan_count":"0","full_url":"http:\/\/www.google.com\/","score_progressive_jpeg":-1,"load_end":166,"ttfb_start":"49","ttfb_end":166,"download_start":166,"download_end":166,"download_ms":0,"all_start":"49","all_end":166,"all_ms":"117","headers":{"request":["GET \/ HTTP\/1.1","Host: www.google.com","Connection: keep-alive","Accept: text\/html,application\/xhtml+xml,application\/xml;q=0.9,image\/webp,*\/*;q=0.8","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36 PTST\/191","Accept-Encoding: gzip,deflate,sdch","Accept-Language: en-US,en;q=0.8"],"response":["HTTP\/1.1 302 Found","Location: https:\/\/www.google.com\/?gws_rd=ssl","Cache-Control: private","Content-Type: text\/html; charset=UTF-8","Set-Cookie: PREF=ID=b728500ce0ca065c:FF=0:TM=1415298912:LM=1415298912:S=zh8V8B9SxIDho86-; expires=Sat, 05-Nov-2016 18:35:12 GMT; path=\/; domain=.google.com","Set-Cookie: NID=67=hig1z6hORww_j-ZirykxFzF_QOsE5U-cSRBt-4Z9KlUACPm1wi_4daX4WSVBI-NvWrtsBV-sBmZ9nQFBVzooWg545tAJDZybR5D6RRNI3-AsppdAXhKMas9gxZI96dhQ; expires=Fri, 08-May-2015 18:35:12 GMT; path=\/; domain=.google.com; HttpOnly","P3P: CP=\"This is not a P3P policy! See http:\/\/www.google.com\/support\/accounts\/bin\/answer.py?hl=en&answer=151657 for more info.\"","Date: Thu, 06 Nov 2014 18:35:12 GMT","Server: gws","Content-Length: 231","X-XSS-Protection: 1; mode=block","X-Frame-Options: SAMEORIGIN","Alternate-Protocol: 80:quic,p=0.01"]},"index":0,"number":1},{"method":"GET","host":"www.google.com","url":"\/?gws_rd=ssl","responseCode":"200","load_ms":"460","ttfb_ms":"383","load_start":"366","bytesOut":"254","bytesIn":"57605","objectSize":"0","expires":"-1","cacheControl":"private, max-age=0","contentType":"text\/html","contentEncoding":"gzip","type":"3","socket":"261","score_cache":"-1","score_cdn":"-1","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":0,"connect_ms":36,"ssl_ms":127,"gzip_total":"799","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"-1","cdn_provider":"Google","dns_start":"202","dns_end":"202","connect_start":"202","connect_end":"238","ssl_start":"238","ssl_end":"365","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/?gws_rd=ssl","score_progressive_jpeg":-1,"load_end":826,"ttfb_start":"366","ttfb_end":749,"download_start":749,"download_end":826,"download_ms":77,"all_start":"202","all_end":826,"all_ms":623,"headers":{"request":["GET \/?gws_rd=ssl HTTP\/1.1","Host: www.google.com","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=0","content-encoding: gzip","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:35:12 GMT","expires: -1","p3p: CP=\"This is not a P3P policy! See http:\/\/www.google.com\/support\/accounts\/bin\/answer.py?hl=en&answer=151657 for more info.\"","server: gws","set-cookie: PREF=ID=b728500ce0ca065c:U=ffc0fb4c40c98be0:FF=0:TM=1415298912:LM=1415298912:S=OZ50oqzyGSXCcI0w; expires=Sat, 05-Nov-2016 18:35:12 GMT; path=\/; domain=.google.com","NID=67=mGg_6DOdS_TuKOXz3CFTdCqjkNEP5o91Wbh0WdZ_JxJcHjw-kkoHDdpMAR57vwg4sPriwQXK1O5K-_Zy3S4KOUtOCmqwvgLA0eh_VuulzoWlmaWFu6DQaafCJsJAk7ka; expires=Fri, 08-May-2015 18:35:12 GMT; path=\/; domain=.google.com; HttpOnly","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":1,"number":2},{"method":"GET","host":"www.google.com","url":"\/images\/srpr\/logo11w.png","responseCode":"200","load_ms":"117","ttfb_ms":"70","load_start":"998","bytesOut":"330","bytesIn":"16919","objectSize":"0","expires":"Thu, 06 Nov 2014 18:35:13 GMT","cacheControl":"private, max-age=31536000","contentType":"image\/png","type":"3","socket":"261","score_cache":"0","score_cdn":"100","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/?gws_rd=ssl","initiator_line":"28","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/images\/srpr\/logo11w.png","score_progressive_jpeg":-1,"load_end":1115,"ttfb_start":"998","ttfb_end":1068,"download_start":1068,"download_end":1115,"download_ms":47,"all_start":"998","all_end":1115,"all_ms":"117","headers":{"request":["GET \/images\/srpr\/logo11w.png HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=31536000","content-length: 14022","content-type: image\/png","date: Thu, 06 Nov 2014 18:35:13 GMT","expires: Thu, 06 Nov 2014 18:35:13 GMT","last-modified: Wed, 09 Oct 2013 01:35:39 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":2,"number":3},{"method":"GET","host":"ssl.gstatic.com","url":"\/gb\/images\/i1_71651352.png","responseCode":"200","load_ms":"81","ttfb_ms":"45","load_start":"1097","bytesOut":"333","bytesIn":"14285","objectSize":"0","expires":"Thu, 05 Nov 2015 15:23:35 GMT","cacheControl":"public, max-age=31536000","contentType":"image\/png","type":"3","socket":"336","score_cache":"100","score_cdn":"0","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":0,"connect_ms":37,"ssl_ms":66,"gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","dns_start":"993","dns_end":"993","connect_start":"993","connect_end":"1030","ssl_start":"1030","ssl_end":"1096","initiator":"https:\/\/www.google.com\/?gws_rd=ssl","initiator_line":"76","initiator_column":"35","server_count":"4","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/ssl.gstatic.com\/gb\/images\/i1_71651352.png","score_progressive_jpeg":-1,"load_end":1178,"ttfb_start":"1097","ttfb_end":1142,"download_start":1142,"download_end":1178,"download_ms":36,"all_start":"993","all_end":1178,"all_ms":184,"headers":{"request":["GET \/gb\/images\/i1_71651352.png HTTP\/1.1","Host: ssl.gstatic.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F"],"response":["HTTP\/1.1 200 OK","age: 97898","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-length: 14055","content-type: image\/png","date: Wed, 05 Nov 2014 15:23:35 GMT","expires: Thu, 05 Nov 2015 15:23:35 GMT","last-modified: Thu, 16 Oct 2014 18:20:30 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":3,"number":4},{"method":"GET","host":"www.google.com","url":"\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","responseCode":"200","load_ms":"346","ttfb_ms":"99","load_start":"1123","bytesOut":"443","bytesIn":"180939","objectSize":"0","expires":"Fri, 06 Nov 2015 11:13:26 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"261","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"429","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/?gws_rd=ssl","initiator_line":"94","initiator_column":"17237","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","score_progressive_jpeg":-1,"load_end":1469,"ttfb_start":"1123","ttfb_end":1222,"download_start":1222,"download_end":1469,"download_ms":247,"all_start":"1123","all_end":1469,"all_ms":"346","headers":{"request":["GET \/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP\/1.1","Host: www.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F"],"response":["HTTP\/1.1 200 OK","age: 26507","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 130931","content-type: text\/javascript; charset=UTF-8","date: Thu, 06 Nov 2014 11:13:26 GMT","expires: Fri, 06 Nov 2015 11:13:26 GMT","last-modified: Tue, 04 Nov 2014 19:30:26 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":4,"number":5},{"method":"GET","host":"www.gstatic.com","url":"\/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w","responseCode":"200","load_ms":"317","ttfb_ms":"316","load_start":"1310","bytesOut":"392","bytesIn":"184146","objectSize":"0","expires":"Thu, 05 Nov 2015 13:04:24 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"392","score_cache":"100","score_cdn":"0","score_gzip":"100","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":57,"connect_ms":39,"ssl_ms":64,"gzip_total":"429","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","dns_start":"1149","dns_end":"1206","connect_start":"1206","connect_end":"1245","ssl_start":"1245","ssl_end":"1309","initiator":"https:\/\/www.google.com\/?gws_rd=ssl","initiator_line":"57","initiator_column":"143","server_count":"4","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.gstatic.com\/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w","score_progressive_jpeg":-1,"load_end":1627,"ttfb_start":"1310","ttfb_end":1626,"download_start":1626,"download_end":1627,"download_ms":1,"all_start":"1149","all_end":1627,"all_ms":477,"headers":{"request":["GET \/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w HTTP\/1.1","Host: www.gstatic.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F"],"response":["HTTP\/1.1 200 OK","age: 106249","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 55207","content-type: text\/javascript; charset=UTF-8","date: Wed, 05 Nov 2014 13:04:24 GMT","expires: Thu, 05 Nov 2015 13:04:24 GMT","last-modified: Tue, 04 Nov 2014 01:19:09 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":5,"number":6},{"method":"GET","host":"www.google.com","url":"\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=0\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","responseCode":"200","load_ms":"130","ttfb_ms":"57","load_start":"1618","bytesOut":"682","bytesIn":"58844","objectSize":"0","expires":"Fri, 06 Nov 2015 12:08:37 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"261","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"428","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","initiator_line":"101","initiator_column":"112","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=0\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","score_progressive_jpeg":-1,"load_end":1748,"ttfb_start":"1618","ttfb_end":1675,"download_start":1675,"download_end":1748,"download_ms":73,"all_start":"1618","all_end":1748,"all_ms":"130","headers":{"request":["GET \/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=0\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP\/1.1","Host: www.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F"],"response":["HTTP\/1.1 200 OK","age: 23196","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 48157","content-type: text\/javascript; charset=UTF-8","date: Thu, 06 Nov 2014 12:08:37 GMT","expires: Fri, 06 Nov 2015 12:08:37 GMT","last-modified: Tue, 04 Nov 2014 19:30:26 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":6,"number":7},{"method":"GET","host":"www.google.com","url":"\/textinputassistant\/tia.png","responseCode":"200","load_ms":"231","ttfb_ms":"224","load_start":"1620","bytesOut":"333","bytesIn":"485","objectSize":"0","expires":"Thu, 05 Nov 2015 06:57:32 GMT","cacheControl":"public, max-age=31536000","contentType":"image\/png","type":"3","socket":"261","score_cache":"100","score_cdn":"100","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/?gws_rd=ssl","initiator_line":"1","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/textinputassistant\/tia.png","score_progressive_jpeg":-1,"load_end":1851,"ttfb_start":"1620","ttfb_end":1844,"download_start":1844,"download_end":1851,"download_ms":7,"all_start":"1620","all_end":1851,"all_ms":"231","headers":{"request":["GET \/textinputassistant\/tia.png HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F"],"response":["HTTP\/1.1 200 OK","age: 128261","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-length: 387","content-type: image\/png","date: Wed, 05 Nov 2014 06:57:32 GMT","expires: Thu, 05 Nov 2015 06:57:32 GMT","last-modified: Mon, 02 Apr 2012 02:13:37 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":7,"number":8},{"method":"GET","host":"www.google.com","url":"\/extern_chrome\/854094c746d4c9a.js?bav=on.2,or.r_qf.","responseCode":"200","load_ms":"230","ttfb_ms":"227","load_start":"1622","bytesOut":"340","bytesIn":"36586","objectSize":"0","expires":"Thu, 05 Nov 2015 00:00:00 GMT","cacheControl":"private","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"261","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"422","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31382687","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","initiator_line":"1187","initiator_column":"181","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/extern_chrome\/854094c746d4c9a.js?bav=on.2,or.r_qf.","score_progressive_jpeg":-1,"load_end":1852,"ttfb_start":"1622","ttfb_end":1849,"download_start":1849,"download_end":1852,"download_ms":3,"all_start":"1622","all_end":1852,"all_ms":"230","headers":{"request":["GET \/extern_chrome\/854094c746d4c9a.js?bav=on.2,or.r_qf. HTTP\/1.1","Host: www.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private","content-disposition: attachment; filename=\"f.txt\"","content-encoding: gzip","content-length: 13825","content-type: text\/javascript; charset=UTF-8","date: Thu, 06 Nov 2014 18:35:13 GMT","expires: Thu, 05 Nov 2015 00:00:00 GMT","last-modified: Thu, 07 Nov 2013 00:00:00 GMT","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":8,"number":9},{"method":"GET","host":"apis.google.com","url":"\/_\/scs\/abc-static\/_\/js\/k=gapi.gapi.en.3_mJ9Wvc9FU.O\/m=gapi_iframes,googleapis_client,plusone\/rt=j\/sv=1\/d=1\/ed=1\/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg\/cb=gapi.loaded_0","responseCode":"200","load_ms":"113","ttfb_ms":"49","load_start":"1981","bytesOut":"456","bytesIn":"49179","objectSize":"0","expires":"Thu, 05 Nov 2015 15:23:35 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"476","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":32,"connect_ms":36,"ssl_ms":62,"gzip_total":"428","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"1851","dns_end":"1883","connect_start":"1883","connect_end":"1919","ssl_start":"1919","ssl_end":"1981","initiator":"https:\/\/www.gstatic.com\/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w","initiator_line":"138","initiator_column":"381","server_count":"11","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/apis.google.com\/_\/scs\/abc-static\/_\/js\/k=gapi.gapi.en.3_mJ9Wvc9FU.O\/m=gapi_iframes,googleapis_client,plusone\/rt=j\/sv=1\/d=1\/ed=1\/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg\/cb=gapi.loaded_0","score_progressive_jpeg":-1,"load_end":2094,"ttfb_start":"1981","ttfb_end":2030,"download_start":2030,"download_end":2094,"download_ms":64,"all_start":"1851","all_end":2094,"all_ms":243,"headers":{"request":["GET \/_\/scs\/abc-static\/_\/js\/k=gapi.gapi.en.3_mJ9Wvc9FU.O\/m=gapi_iframes,googleapis_client,plusone\/rt=j\/sv=1\/d=1\/ed=1\/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg\/cb=gapi.loaded_0 HTTP\/1.1","Host: apis.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F"],"response":["HTTP\/1.1 200 OK","age: 97899","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 48911","content-type: text\/javascript; charset=UTF-8","date: Wed, 05 Nov 2014 15:23:35 GMT","expires: Thu, 05 Nov 2015 15:23:35 GMT","last-modified: Thu, 16 Oct 2014 07:30:29 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":9,"number":10},{"method":"GET","host":"www.google.com","url":"\/images\/nav_logo195.png","responseCode":"200","load_ms":"86","ttfb_ms":"70","load_start":"2214","bytesOut":"329","bytesIn":"16300","objectSize":"0","expires":"Thu, 06 Nov 2014 18:35:14 GMT","cacheControl":"private, max-age=31536000","contentType":"image\/png","type":"3","socket":"261","score_cache":"0","score_cdn":"100","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/images\/nav_logo195.png","score_progressive_jpeg":-1,"load_end":2300,"ttfb_start":"2214","ttfb_end":2284,"download_start":2284,"download_end":2300,"download_ms":16,"all_start":"2214","all_end":2300,"all_ms":"86","headers":{"request":["GET \/images\/nav_logo195.png HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=31536000","content-length: 16214","content-type: image\/png","date: Thu, 06 Nov 2014 18:35:14 GMT","expires: Thu, 06 Nov 2014 18:35:14 GMT","last-modified: Wed, 21 May 2014 00:02:44 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":10,"number":11},{"method":"GET","host":"www.google.com","url":"\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=YL9bVP6qJ5DuoAS6x4KwCg&e=3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.83.28.sb.49.p.12.m.8.spch.6.imap.2&action=&srt=3895&p=s&npn=1&rt=xjsls.34,prt.35,xjses.575,xjsee.725,xjs.764,ol.1332,iml.258,wsrt.857,cst.163,dnst.0,rqst.460,rspt.77","responseCode":"204","load_ms":"119","ttfb_ms":"118","load_start":"2217","bytesOut":"844","bytesIn":"251","objectSize":"0","contentType":"text\/html","type":"3","socket":"261","score_cache":"0","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=YL9bVP6qJ5DuoAS6x4KwCg&e=3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.83.28.sb.49.p.12.m.8.spch.6.imap.2&action=&srt=3895&p=s&npn=1&rt=xjsls.34,prt.35,xjses.575,xjsee.725,xjs.764,ol.1332,iml.258,wsrt.857,cst.163,dnst.0,rqst.460,rspt.77","score_progressive_jpeg":-1,"load_end":2336,"ttfb_start":"2217","ttfb_end":2335,"download_start":2335,"download_end":2336,"download_ms":1,"all_start":"2217","all_end":2336,"all_ms":"119","headers":{"request":["GET \/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=YL9bVP6qJ5DuoAS6x4KwCg&e=3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.83.28.sb.49.p.12.m.8.spch.6.imap.2&action=&srt=3895&p=s&npn=1&rt=xjsls.34,prt.35,xjses.575,xjsee.725,xjs.764,ol.1332,iml.258,wsrt.857,cst.163,dnst.0,rqst.460,rspt.77 HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A9EEF717-0CD0-48C3-AD5A-FDE88C78BC9F"],"response":["HTTP\/1.1 204 No Content","alternate-protocol: 443:quic,p=0.01","content-length: 0","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:35:14 GMT","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":11,"number":12}],"requestsDoc":10,"responses_200":10,"responses_404":0,"responses_other":1,"result":0,"render":1097,"fullyLoaded":2336,"cached":0,"docTime":2194,"domTime":0,"score_cache":63,"score_cdn":77,"score_gzip":100,"score_cookies":-1,"score_keep-alive":100,"score_minify":-1,"score_combine":100,"score_compress":-1,"score_etags":-1,"gzip_total":2935,"gzip_savings":0,"minify_total":0,"minify_savings":0,"image_total":0,"image_savings":0,"optimization_checked":1,"aft":0,"domElements":288,"pageSpeedVersion":"1.9","title":"Google","titleTime":1096,"loadEventStart":2185,"loadEventEnd":2193,"domContentLoadedEventStart":892,"domContentLoadedEventEnd":945,"lastVisualChange":0,"browser_name":"Google Chrome","browser_version":"38.0.2125.111","server_count":5,"server_rtt":0,"base_page_cdn":"Google","adult_site":0,"fixed_viewport":0,"score_progressive_jpeg":-1,"firstPaint":0,"docCPUms":1528.81,"fullyLoadedCPUms":2074.813,"docCPUpct":69,"fullyLoadedCPUpct":47,"isResponsive":-1,"date":1415298675,"CSI":["v","s","imc","imn","imp","ei","e","atyp","adh","xjs","action","srt","p","npn","rt","xjsls","prt","xjses","xjsee","ol","iml","wsrt","cst","dnst","rqst","rspt"],"CSI.v":3,"CSI.s":"webhp","CSI.imc":1,"CSI.imn":1,"CSI.imp":1,"CSI.ei":"YL9bVP6qJ5DuoAS6x4KwCg","CSI.e":"3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743","CSI.atyp":"csi","CSI.adh":"","CSI.xjs":764,"CSI.action":"","CSI.srt":3895,"CSI.p":"s","CSI.npn":1,"CSI.rt":"xjsls.34,prt.35,xjses.575,xjsee.725,xjs.764,ol.1332,iml.258,wsrt.857,cst.163,dnst.0,rqst.460,rspt.77","CSI.xjsls":34,"CSI.prt":35,"CSI.xjses":575,"CSI.xjsee":725,"CSI.ol":1332,"CSI.iml":258,"CSI.wsrt":857,"CSI.cst":163,"CSI.dnst":0,"CSI.rqst":460,"CSI.rspt":77,"SpeedIndex":0,"visualComplete":0,"run":1,"effectiveBps":256294,"effectiveBpsDoc":269065,"tester":"IE9104-192.168.101.94","pages":{"details":"http:\/\/www.webpagetest.org\/details.php?test=141106_TM_ZFM&run=1&cached=0","checklist":"http:\/\/www.webpagetest.org\/performance_optimization.php?test=141106_TM_ZFM&run=1&cached=0","breakdown":"http:\/\/www.webpagetest.org\/breakdown.php?test=141106_TM_ZFM&run=1&cached=0","domains":"http:\/\/www.webpagetest.org\/domains.php?test=141106_TM_ZFM&run=1&cached=0","screenShot":"http:\/\/www.webpagetest.org\/screen_shot.php?test=141106_TM_ZFM&run=1&cached=0"},"thumbnails":{"waterfall":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/1_waterfall_thumb.png","checklist":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/1_optimization_thumb.png","screenShot":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/1_screen_thumb.png"},"images":{"waterfall":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_waterfall.png","connectionView":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_connection.png","checklist":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_optimization.png","screenShot":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_screen.jpg"},"rawData":{"headers":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_report.txt","pageData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_IEWPG.txt","requestsData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_IEWTR.txt","utilization":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_progress.csv"},"videoFrames":[{"time":0,"image":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/video_1\/frame_0000.jpg","VisuallyComplete":100}],"domains":{"moc.elgoog.www":{"bytes":368973,"requests":9,"connections":2},"moc.citatsg.lss":{"bytes":14285,"requests":1,"connections":1},"moc.citatsg.www":{"bytes":184146,"requests":1,"connections":1},"moc.elgoog.sipa":{"bytes":49179,"requests":1,"connections":1}},"breakdown":{"html":{"color":[130,181,252],"bytes":58900,"requests":3},"js":{"color":[254,197,132],"bytes":509694,"requests":5},"css":{"color":[178,234,148],"bytes":0,"requests":0},"image":{"color":[196,154,232],"bytes":47989,"requests":4},"flash":{"color":[45,183,193],"bytes":0,"requests":0},"font":{"color":[255,82,62],"bytes":0,"requests":0},"other":{"color":[196,196,196],"bytes":0,"requests":0}}},"repeatView":{"URL":"http:\/\/www.google.com","loadTime":1352,"TTFB":505,"bytesOut":9302,"bytesOutDoc":8740,"bytesIn":85557,"bytesInDoc":85430,"connections":2,"requests":[{"ip_addr":"74.125.225.81","method":"GET","host":"www.google.com","url":"\/","responseCode":"302","load_ms":"156","ttfb_ms":"156","load_start":"62","bytesOut":"584","bytesIn":"532","objectSize":"231","cacheControl":"private","contentType":"text\/html","type":"3","socket":"15","score_cache":"0","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"0","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"61","ssl_start":"0","ssl_end":"0","server_count":"5","server_rtt":"60","client_port":"64227","jpeg_scan_count":"0","full_url":"http:\/\/www.google.com\/","score_progressive_jpeg":-1,"load_end":218,"ttfb_start":"62","ttfb_end":218,"download_start":218,"download_end":218,"download_ms":0,"all_start":"62","all_end":218,"all_ms":"156","headers":{"request":["GET \/ HTTP\/1.1","Host: www.google.com","Connection: keep-alive","Accept: text\/html,application\/xhtml+xml,application\/xml;q=0.9,image\/webp,*\/*;q=0.8","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36 PTST\/191","Accept-Encoding: gzip,deflate,sdch","Accept-Language: en-US,en;q=0.8","Cookie: PREF=ID=b728500ce0ca065c:U=ffc0fb4c40c98be0:FF=0:TM=1415298912:LM=1415298912:S=OZ50oqzyGSXCcI0w; NID=67=mGg_6DOdS_TuKOXz3CFTdCqjkNEP5o91Wbh0WdZ_JxJcHjw-kkoHDdpMAR57vwg4sPriwQXK1O5K-_Zy3S4KOUtOCmqwvgLA0eh_VuulzoWlmaWFu6DQaafCJsJAk7ka"],"response":["HTTP\/1.1 302 Found","Location: https:\/\/www.google.com\/?gws_rd=ssl","Cache-Control: private","Content-Type: text\/html; charset=UTF-8","Date: Thu, 06 Nov 2014 18:35:24 GMT","Server: gws","Content-Length: 231","X-XSS-Protection: 1; mode=block","X-Frame-Options: SAMEORIGIN","Alternate-Protocol: 80:quic,p=0.01"]},"index":0,"number":1},{"method":"GET","host":"www.google.com","url":"\/?gws_rd=ssl","responseCode":"200","load_ms":"265","ttfb_ms":"190","load_start":"315","bytesOut":"254","bytesIn":"63195","objectSize":"0","expires":"-1","cacheControl":"private, max-age=0","contentType":"text\/html","contentEncoding":"gzip","type":"3","socket":"149","score_cache":"-1","score_cdn":"-1","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":0,"connect_ms":0,"ssl_ms":55,"gzip_total":"280","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"-1","cdn_provider":"Google","dns_start":"259","dns_end":"259","connect_start":"259","connect_end":"259","ssl_start":"259","ssl_end":"314","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/?gws_rd=ssl","score_progressive_jpeg":-1,"load_end":580,"ttfb_start":"315","ttfb_end":505,"download_start":505,"download_end":580,"download_ms":75,"all_start":"259","all_end":580,"all_ms":320,"headers":{"request":["GET \/?gws_rd=ssl HTTP\/1.1","Host: www.google.com","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 67027B33-8010-4675-92E8-A02F9E86437E"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=0","content-encoding: gzip","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:35:24 GMT","expires: -1","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":1,"number":2},{"method":"GET","host":"www.google.com","url":"\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=bL9bVJrPJcP8oQSom4LwBg&e=3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.73.28.sb.45.p.12.spch.6.imap.2.m.2&action=&srt=3646&p=s&npn=1&rt=xjsls.39,prt.40,xjses.237,xjsee.420,xjs.470,ol.764,iml.172,wsrt.605,cst.55,dnst.0,rqst.265,rspt.74","responseCode":"204","load_ms":"108","ttfb_ms":"105","load_start":"1383","bytesOut":"842","bytesIn":"251","objectSize":"0","contentType":"text\/html","type":"3","socket":"149","score_cache":"0","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=bL9bVJrPJcP8oQSom4LwBg&e=3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.73.28.sb.45.p.12.spch.6.imap.2.m.2&action=&srt=3646&p=s&npn=1&rt=xjsls.39,prt.40,xjses.237,xjsee.420,xjs.470,ol.764,iml.172,wsrt.605,cst.55,dnst.0,rqst.265,rspt.74","score_progressive_jpeg":-1,"load_end":1491,"ttfb_start":"1383","ttfb_end":1488,"download_start":1488,"download_end":1491,"download_ms":3,"all_start":"1383","all_end":1491,"all_ms":"108","headers":{"request":["GET \/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=bL9bVJrPJcP8oQSom4LwBg&e=3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743&atyp=csi&adh=&xjs=init.73.28.sb.45.p.12.spch.6.imap.2.m.2&action=&srt=3646&p=s&npn=1&rt=xjsls.39,prt.40,xjses.237,xjsee.420,xjs.470,ol.764,iml.172,wsrt.605,cst.55,dnst.0,rqst.265,rspt.74 HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 67027B33-8010-4675-92E8-A02F9E86437E"],"response":["HTTP\/1.1 204 No Content","alternate-protocol: 443:quic,p=0.01","content-length: 0","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:35:25 GMT","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":2,"number":3}],"requestsDoc":2,"responses_200":1,"responses_404":0,"responses_other":1,"result":0,"render":792,"fullyLoaded":1491,"cached":1,"docTime":1352,"domTime":0,"score_cache":0,"score_cdn":-1,"score_gzip":100,"score_cookies":-1,"score_keep-alive":100,"score_minify":-1,"score_combine":100,"score_compress":-1,"score_etags":-1,"gzip_total":280,"gzip_savings":0,"minify_total":0,"minify_savings":0,"image_total":0,"image_savings":0,"optimization_checked":1,"aft":0,"domElements":288,"pageSpeedVersion":"1.9","title":"Google","titleTime":691,"loadEventStart":1347,"loadEventEnd":1378,"domContentLoadedEventStart":646,"domContentLoadedEventEnd":700,"lastVisualChange":0,"browser_name":"Google Chrome","browser_version":"38.0.2125.111","server_count":5,"server_rtt":0,"base_page_cdn":"Google","adult_site":0,"fixed_viewport":0,"score_progressive_jpeg":-1,"firstPaint":0,"docCPUms":1185.608,"fullyLoadedCPUms":1638.011,"docCPUpct":87,"fullyLoadedCPUpct":45,"isResponsive":-1,"date":1415298687,"CSI":["v","s","imc","imn","imp","ei","e","atyp","adh","xjs","action","srt","p","npn","rt","xjsls","prt","xjses","xjsee","ol","iml","wsrt","cst","dnst","rqst","rspt"],"CSI.v":3,"CSI.s":"webhp","CSI.imc":1,"CSI.imn":1,"CSI.imp":1,"CSI.ei":"bL9bVJrPJcP8oQSom4LwBg","CSI.e":"3700327,4010074,4011550,4011551,4011557,4011558,4011559,4013920,4016468,4016824,4017980,4019182,4020347,4020562,4020921,4021073,4021415,4021983,4022073,4022318,4022495,4022687,4023373,4023566,4023678,4023709,4023971,4024007,4025080,8500271,8500394,8500700,10200083,10200716,10200743","CSI.atyp":"csi","CSI.adh":"","CSI.xjs":470,"CSI.action":"","CSI.srt":3646,"CSI.p":"s","CSI.npn":1,"CSI.rt":"xjsls.39,prt.40,xjses.237,xjsee.420,xjs.470,ol.764,iml.172,wsrt.605,cst.55,dnst.0,rqst.265,rspt.74","CSI.xjsls":39,"CSI.prt":40,"CSI.xjses":237,"CSI.xjsee":420,"CSI.ol":764,"CSI.iml":172,"CSI.wsrt":605,"CSI.cst":55,"CSI.dnst":0,"CSI.rqst":265,"CSI.rspt":74,"SpeedIndex":0,"visualComplete":0,"run":1,"effectiveBps":86771,"effectiveBpsDoc":100861,"tester":"IE9104-192.168.101.94","pages":{"details":"http:\/\/www.webpagetest.org\/details.php?test=141106_TM_ZFM&run=1&cached=1","checklist":"http:\/\/www.webpagetest.org\/performance_optimization.php?test=141106_TM_ZFM&run=1&cached=1","breakdown":"http:\/\/www.webpagetest.org\/breakdown.php?test=141106_TM_ZFM&run=1&cached=1","domains":"http:\/\/www.webpagetest.org\/domains.php?test=141106_TM_ZFM&run=1&cached=1","screenShot":"http:\/\/www.webpagetest.org\/screen_shot.php?test=141106_TM_ZFM&run=1&cached=1"},"thumbnails":{"waterfall":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/1_Cached_waterfall_thumb.png","checklist":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/1_Cached_optimization_thumb.png","screenShot":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/1_Cached_screen_thumb.png"},"images":{"waterfall":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_Cached_waterfall.png","connectionView":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_Cached_connection.png","checklist":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_Cached_optimization.png","screenShot":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_Cached_screen.jpg"},"rawData":{"headers":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_Cached_report.txt","pageData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_Cached_IEWPG.txt","requestsData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_Cached_IEWTR.txt","utilization":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/1_Cached_progress.csv"},"videoFrames":[{"time":0,"image":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/video_1_cached\/frame_0000.jpg","VisuallyComplete":100}],"domains":{"moc.elgoog.www":{"bytes":63978,"requests":3,"connections":2}},"breakdown":{"html":{"color":[130,181,252],"bytes":63978,"requests":3},"js":{"color":[254,197,132],"bytes":0,"requests":0},"css":{"color":[178,234,148],"bytes":0,"requests":0},"image":{"color":[196,154,232],"bytes":0,"requests":0},"flash":{"color":[45,183,193],"bytes":0,"requests":0},"font":{"color":[255,82,62],"bytes":0,"requests":0},"other":{"color":[196,196,196],"bytes":0,"requests":0}}}},"2":{"firstView":{"URL":"http:\/\/www.google.com","loadTime":2406,"TTFB":513,"bytesOut":7009,"bytesOutDoc":6145,"bytesIn":402324,"bytesInDoc":384415,"connections":4,"requests":[{"ip_addr":"74.125.225.80","method":"GET","host":"www.google.com","url":"\/","responseCode":"302","load_ms":"110","ttfb_ms":"110","load_start":"49","bytesOut":"342","bytesIn":"1044","objectSize":"231","cacheControl":"private","contentType":"text\/html","type":"3","socket":"25","score_cache":"0","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"0","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"49","ssl_start":"0","ssl_end":"0","server_count":"5","server_rtt":"49","client_port":"51813","jpeg_scan_count":"0","full_url":"http:\/\/www.google.com\/","score_progressive_jpeg":-1,"load_end":159,"ttfb_start":"49","ttfb_end":159,"download_start":159,"download_end":159,"download_ms":0,"all_start":"49","all_end":159,"all_ms":"110","headers":{"request":["GET \/ HTTP\/1.1","Host: www.google.com","Connection: keep-alive","Accept: text\/html,application\/xhtml+xml,application\/xml;q=0.9,image\/webp,*\/*;q=0.8","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36 PTST\/191","Accept-Encoding: gzip,deflate,sdch","Accept-Language: en-US,en;q=0.8"],"response":["HTTP\/1.1 302 Found","Location: https:\/\/www.google.com\/?gws_rd=ssl","Cache-Control: private","Content-Type: text\/html; charset=UTF-8","Set-Cookie: PREF=ID=475c491cad4e86aa:FF=0:TM=1415298912:LM=1415298912:S=IZkg6dGDCBeFDHPq; expires=Sat, 05-Nov-2016 18:35:12 GMT; path=\/; domain=.google.com","Set-Cookie: NID=67=gngiSsHmIvn3lnlMq8_ilS4bsTML-5ZdRj_phVjTIBUS1_uruYjC56tX9cfsIEtsm5aP1A6Oa5AqErk6SQsRFoEoR7SyAbecF76SRDBOarjoyJSNeOruCIShiVA4PUz9; expires=Fri, 08-May-2015 18:35:12 GMT; path=\/; domain=.google.com; HttpOnly","P3P: CP=\"This is not a P3P policy! See http:\/\/www.google.com\/support\/accounts\/bin\/answer.py?hl=en&answer=151657 for more info.\"","Date: Thu, 06 Nov 2014 18:35:12 GMT","Server: gws","Content-Length: 231","X-XSS-Protection: 1; mode=block","X-Frame-Options: SAMEORIGIN","Alternate-Protocol: 80:quic,p=0.01"]},"index":0,"number":1},{"method":"GET","host":"www.google.com","url":"\/?gws_rd=ssl","responseCode":"200","load_ms":"305","ttfb_ms":"181","load_start":"332","bytesOut":"254","bytesIn":"52324","objectSize":"0","expires":"-1","cacheControl":"private, max-age=0","contentType":"text\/html","contentEncoding":"gzip","type":"3","socket":"255","score_cache":"-1","score_cdn":"-1","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":0,"connect_ms":43,"ssl_ms":99,"gzip_total":"799","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"-1","cdn_provider":"Google","dns_start":"190","dns_end":"190","connect_start":"190","connect_end":"233","ssl_start":"233","ssl_end":"332","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/?gws_rd=ssl","score_progressive_jpeg":-1,"load_end":637,"ttfb_start":"332","ttfb_end":513,"download_start":513,"download_end":637,"download_ms":124,"all_start":"190","all_end":637,"all_ms":447,"headers":{"request":["GET \/?gws_rd=ssl HTTP\/1.1","Host: www.google.com","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=0","content-encoding: gzip","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:35:12 GMT","expires: -1","p3p: CP=\"This is not a P3P policy! See http:\/\/www.google.com\/support\/accounts\/bin\/answer.py?hl=en&answer=151657 for more info.\"","server: gws","set-cookie: PREF=ID=475c491cad4e86aa:U=d2f3b954c35bcd9b:FF=0:TM=1415298912:LM=1415298912:S=lV95Ue2bqUmiPbk5; expires=Sat, 05-Nov-2016 18:35:12 GMT; path=\/; domain=.google.com","NID=67=FxZ3TVYsJlTtvVnmerGAmxHaZlZTz5A31FZWPSd1rO1IWsQQNoRhmBSazKHgNuIyFbSiyrYFhW6OHLe3wfVvB_ZYIKQjZ5yH_Zis-NxQXljm2qIsyFUvNKKpsqhKOv-p; expires=Fri, 08-May-2015 18:35:12 GMT; path=\/; domain=.google.com; HttpOnly","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":1,"number":2},{"method":"GET","host":"www.google.com","url":"\/images\/srpr\/logo11w.png","responseCode":"200","load_ms":"675","ttfb_ms":"674","load_start":"943","bytesOut":"330","bytesIn":"14111","objectSize":"0","expires":"Thu, 06 Nov 2014 18:35:13 GMT","cacheControl":"private, max-age=31536000","contentType":"image\/png","type":"3","socket":"255","score_cache":"0","score_cdn":"100","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/?gws_rd=ssl","initiator_line":"28","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/images\/srpr\/logo11w.png","score_progressive_jpeg":-1,"load_end":1618,"ttfb_start":"943","ttfb_end":1617,"download_start":1617,"download_end":1618,"download_ms":1,"all_start":"943","all_end":1618,"all_ms":"675","headers":{"request":["GET \/images\/srpr\/logo11w.png HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=31536000","content-length: 14022","content-type: image\/png","date: Thu, 06 Nov 2014 18:35:13 GMT","expires: Thu, 06 Nov 2014 18:35:13 GMT","last-modified: Wed, 09 Oct 2013 01:35:39 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":2,"number":3},{"method":"GET","host":"ssl.gstatic.com","url":"\/gb\/images\/i1_71651352.png","responseCode":"200","load_ms":"92","ttfb_ms":"47","load_start":"1029","bytesOut":"333","bytesIn":"14285","objectSize":"0","expires":"Thu, 05 Nov 2015 15:23:35 GMT","cacheControl":"public, max-age=31536000","contentType":"image\/png","type":"3","socket":"335","score_cache":"100","score_cdn":"0","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":1,"connect_ms":40,"ssl_ms":77,"gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","dns_start":"910","dns_end":"911","connect_start":"911","connect_end":"951","ssl_start":"951","ssl_end":"1028","initiator":"https:\/\/www.google.com\/?gws_rd=ssl","initiator_line":"76","initiator_column":"35","server_count":"4","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/ssl.gstatic.com\/gb\/images\/i1_71651352.png","score_progressive_jpeg":-1,"load_end":1121,"ttfb_start":"1029","ttfb_end":1076,"download_start":1076,"download_end":1121,"download_ms":45,"all_start":"910","all_end":1121,"all_ms":210,"headers":{"request":["GET \/gb\/images\/i1_71651352.png HTTP\/1.1","Host: ssl.gstatic.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0"],"response":["HTTP\/1.1 200 OK","age: 97898","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-length: 14055","content-type: image\/png","date: Wed, 05 Nov 2014 15:23:35 GMT","expires: Thu, 05 Nov 2015 15:23:35 GMT","last-modified: Thu, 16 Oct 2014 18:20:30 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":3,"number":4},{"method":"GET","host":"www.google.com","url":"\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","responseCode":"200","load_ms":"418","ttfb_ms":"53","load_start":"1095","bytesOut":"443","bytesIn":"205963","objectSize":"0","expires":"Fri, 06 Nov 2015 11:13:26 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"255","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"429","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/?gws_rd=ssl","initiator_line":"94","initiator_column":"17237","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","score_progressive_jpeg":-1,"load_end":1513,"ttfb_start":"1095","ttfb_end":1148,"download_start":1148,"download_end":1513,"download_ms":365,"all_start":"1095","all_end":1513,"all_ms":"418","headers":{"request":["GET \/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP\/1.1","Host: www.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0"],"response":["HTTP\/1.1 200 OK","age: 26507","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 130931","content-type: text\/javascript; charset=UTF-8","date: Thu, 06 Nov 2014 11:13:26 GMT","expires: Fri, 06 Nov 2015 11:13:26 GMT","last-modified: Tue, 04 Nov 2014 19:30:26 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":4,"number":5},{"method":"GET","host":"www.gstatic.com","url":"\/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w","responseCode":"200","load_ms":"496","ttfb_ms":"48","load_start":"1121","bytesOut":"392","bytesIn":"59283","objectSize":"0","expires":"Thu, 05 Nov 2015 15:23:34 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"335","score_cache":"100","score_cdn":"0","score_gzip":"100","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"428","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/?gws_rd=ssl","initiator_line":"57","initiator_column":"143","server_count":"4","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.gstatic.com\/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w","score_progressive_jpeg":-1,"load_end":1617,"ttfb_start":"1121","ttfb_end":1169,"download_start":1169,"download_end":1617,"download_ms":448,"all_start":"1121","all_end":1617,"all_ms":"496","headers":{"request":["GET \/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w HTTP\/1.1","Host: www.gstatic.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0"],"response":["HTTP\/1.1 200 OK","age: 97899","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 55207","content-type: text\/javascript; charset=UTF-8","date: Wed, 05 Nov 2014 15:23:34 GMT","expires: Thu, 05 Nov 2015 15:23:34 GMT","last-modified: Tue, 04 Nov 2014 01:19:09 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":5,"number":6},{"method":"GET","host":"www.google.com","url":"\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=0\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","responseCode":"200","load_ms":"196","ttfb_ms":"57","load_start":"1841","bytesOut":"682","bytesIn":"48334","objectSize":"0","expires":"Fri, 06 Nov 2015 12:08:37 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"255","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"428","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","initiator_line":"101","initiator_column":"112","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=0\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","score_progressive_jpeg":-1,"load_end":2037,"ttfb_start":"1841","ttfb_end":1898,"download_start":1898,"download_end":2037,"download_ms":139,"all_start":"1841","all_end":2037,"all_ms":"196","headers":{"request":["GET \/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=0\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP\/1.1","Host: www.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0"],"response":["HTTP\/1.1 200 OK","age: 23197","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 48157","content-type: text\/javascript; charset=UTF-8","date: Thu, 06 Nov 2014 12:08:37 GMT","expires: Fri, 06 Nov 2015 12:08:37 GMT","last-modified: Tue, 04 Nov 2014 19:30:26 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":6,"number":7},{"method":"GET","host":"www.google.com","url":"\/textinputassistant\/tia.png","responseCode":"200","load_ms":"399","ttfb_ms":"317","load_start":"1846","bytesOut":"333","bytesIn":"484","objectSize":"0","expires":"Thu, 05 Nov 2015 06:57:32 GMT","cacheControl":"public, max-age=31536000","contentType":"image\/png","type":"3","socket":"255","score_cache":"100","score_cdn":"100","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/?gws_rd=ssl","initiator_line":"1","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/textinputassistant\/tia.png","score_progressive_jpeg":-1,"load_end":2245,"ttfb_start":"1846","ttfb_end":2163,"download_start":2163,"download_end":2245,"download_ms":82,"all_start":"1846","all_end":2245,"all_ms":"399","headers":{"request":["GET \/textinputassistant\/tia.png HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0"],"response":["HTTP\/1.1 200 OK","age: 128262","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-length: 387","content-type: image\/png","date: Wed, 05 Nov 2014 06:57:32 GMT","expires: Thu, 05 Nov 2015 06:57:32 GMT","last-modified: Mon, 02 Apr 2012 02:13:37 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":7,"number":8},{"method":"GET","host":"www.google.com","url":"\/extern_chrome\/854094c746d4c9a.js?bav=on.2,or.r_qf.","responseCode":"200","load_ms":"365","ttfb_ms":"361","load_start":"1881","bytesOut":"340","bytesIn":"36579","objectSize":"0","expires":"Thu, 05 Nov 2015 00:00:00 GMT","cacheControl":"private","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"255","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"422","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31382686","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","initiator_line":"1187","initiator_column":"181","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/extern_chrome\/854094c746d4c9a.js?bav=on.2,or.r_qf.","score_progressive_jpeg":-1,"load_end":2246,"ttfb_start":"1881","ttfb_end":2242,"download_start":2242,"download_end":2246,"download_ms":4,"all_start":"1881","all_end":2246,"all_ms":"365","headers":{"request":["GET \/extern_chrome\/854094c746d4c9a.js?bav=on.2,or.r_qf. HTTP\/1.1","Host: www.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private","content-disposition: attachment; filename=\"f.txt\"","content-encoding: gzip","content-length: 13825","content-type: text\/javascript; charset=UTF-8","date: Thu, 06 Nov 2014 18:35:14 GMT","expires: Thu, 05 Nov 2015 00:00:00 GMT","last-modified: Thu, 07 Nov 2013 00:00:00 GMT","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":8,"number":9},{"method":"GET","host":"apis.google.com","url":"\/_\/scs\/abc-static\/_\/js\/k=gapi.gapi.en.3_mJ9Wvc9FU.O\/m=gapi_iframes,googleapis_client,plusone\/rt=j\/sv=1\/d=1\/ed=1\/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg\/cb=gapi.loaded_0","responseCode":"200","load_ms":"184","ttfb_ms":"123","load_start":"2067","bytesOut":"456","bytesIn":"156500","objectSize":"0","expires":"Thu, 05 Nov 2015 15:23:35 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"440","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":51,"connect_ms":40,"ssl_ms":61,"gzip_total":"428","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"1914","dns_end":"1965","connect_start":"1965","connect_end":"2005","ssl_start":"2005","ssl_end":"2066","initiator":"https:\/\/www.gstatic.com\/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w","initiator_line":"138","initiator_column":"381","server_count":"11","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/apis.google.com\/_\/scs\/abc-static\/_\/js\/k=gapi.gapi.en.3_mJ9Wvc9FU.O\/m=gapi_iframes,googleapis_client,plusone\/rt=j\/sv=1\/d=1\/ed=1\/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg\/cb=gapi.loaded_0","score_progressive_jpeg":-1,"load_end":2251,"ttfb_start":"2067","ttfb_end":2190,"download_start":2190,"download_end":2251,"download_ms":61,"all_start":"1914","all_end":2251,"all_ms":336,"headers":{"request":["GET \/_\/scs\/abc-static\/_\/js\/k=gapi.gapi.en.3_mJ9Wvc9FU.O\/m=gapi_iframes,googleapis_client,plusone\/rt=j\/sv=1\/d=1\/ed=1\/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg\/cb=gapi.loaded_0 HTTP\/1.1","Host: apis.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0"],"response":["HTTP\/1.1 200 OK","age: 97899","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 48911","content-type: text\/javascript; charset=UTF-8","date: Wed, 05 Nov 2014 15:23:35 GMT","expires: Thu, 05 Nov 2015 15:23:35 GMT","last-modified: Thu, 16 Oct 2014 07:30:29 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":9,"number":10},{"method":"GET","host":"www.google.com","url":"\/images\/nav_logo195.png","responseCode":"200","load_ms":"85","ttfb_ms":"70","load_start":"2493","bytesOut":"329","bytesIn":"16288","objectSize":"0","expires":"Thu, 06 Nov 2014 18:35:14 GMT","cacheControl":"private, max-age=31536000","contentType":"image\/png","type":"3","socket":"255","score_cache":"0","score_cdn":"100","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/images\/nav_logo195.png","score_progressive_jpeg":-1,"load_end":2578,"ttfb_start":"2493","ttfb_end":2563,"download_start":2563,"download_end":2578,"download_ms":15,"all_start":"2493","all_end":2578,"all_ms":"85","headers":{"request":["GET \/images\/nav_logo195.png HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=31536000","content-length: 16214","content-type: image\/png","date: Thu, 06 Nov 2014 18:35:14 GMT","expires: Thu, 06 Nov 2014 18:35:14 GMT","last-modified: Wed, 21 May 2014 00:02:44 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":10,"number":11},{"method":"GET","host":"www.google.com","url":"\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=YL9bVNOzJpCzoQTWgoDQDA&e=3700259,4011550,4011551,4011557,4011558,4011559,4013605,4014789,4016469,4016824,4017981,4019181,4020347,4020562,4020921,4021073,4022074,4022318,4022495,4022686,4023367,4023567,4023678,4023709,4023972,4024007,4025080,8500272,8500393,10200044,10200083,10200716&atyp=csi&adh=&xjs=init.140.28.sb.94.p.20.spch.10.m.4.ifl.2&action=&srt=5225&p=s&npn=1&rt=xjsls.53,prt.54,xjses.768,xjsee.1033,xjs.1065,ol.1719,iml.1315,wsrt.678,cst.141,dnst.0,rqst.305,rspt.124","responseCode":"204","load_ms":"114","ttfb_ms":"112","load_start":"2500","bytesOut":"825","bytesIn":"251","objectSize":"0","contentType":"text\/html","type":"3","socket":"255","score_cache":"0","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=YL9bVNOzJpCzoQTWgoDQDA&e=3700259,4011550,4011551,4011557,4011558,4011559,4013605,4014789,4016469,4016824,4017981,4019181,4020347,4020562,4020921,4021073,4022074,4022318,4022495,4022686,4023367,4023567,4023678,4023709,4023972,4024007,4025080,8500272,8500393,10200044,10200083,10200716&atyp=csi&adh=&xjs=init.140.28.sb.94.p.20.spch.10.m.4.ifl.2&action=&srt=5225&p=s&npn=1&rt=xjsls.53,prt.54,xjses.768,xjsee.1033,xjs.1065,ol.1719,iml.1315,wsrt.678,cst.141,dnst.0,rqst.305,rspt.124","score_progressive_jpeg":-1,"load_end":2614,"ttfb_start":"2500","ttfb_end":2612,"download_start":2612,"download_end":2614,"download_ms":2,"all_start":"2500","all_end":2614,"all_ms":"114","headers":{"request":["GET \/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=YL9bVNOzJpCzoQTWgoDQDA&e=3700259,4011550,4011551,4011557,4011558,4011559,4013605,4014789,4016469,4016824,4017981,4019181,4020347,4020562,4020921,4021073,4022074,4022318,4022495,4022686,4023367,4023567,4023678,4023709,4023972,4024007,4025080,8500272,8500393,10200044,10200083,10200716&atyp=csi&adh=&xjs=init.140.28.sb.94.p.20.spch.10.m.4.ifl.2&action=&srt=5225&p=s&npn=1&rt=xjsls.53,prt.54,xjses.768,xjsee.1033,xjs.1065,ol.1719,iml.1315,wsrt.678,cst.141,dnst.0,rqst.305,rspt.124 HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2190A3B5-5110-4B83-9F26-85A0220151F0"],"response":["HTTP\/1.1 204 No Content","alternate-protocol: 443:quic,p=0.01","content-length: 0","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:35:14 GMT","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":11,"number":12}],"requestsDoc":10,"responses_200":10,"responses_404":0,"responses_other":1,"result":0,"render":982,"fullyLoaded":2614,"cached":0,"docTime":2406,"domTime":0,"score_cache":63,"score_cdn":77,"score_gzip":100,"score_cookies":-1,"score_keep-alive":100,"score_minify":-1,"score_combine":100,"score_compress":-1,"score_etags":-1,"gzip_total":2934,"gzip_savings":0,"minify_total":0,"minify_savings":0,"image_total":0,"image_savings":0,"optimization_checked":1,"aft":0,"domElements":288,"pageSpeedVersion":"1.9","title":"Google","titleTime":883,"loadEventStart":2392,"loadEventEnd":2402,"domContentLoadedEventStart":733,"domContentLoadedEventEnd":803,"lastVisualChange":0,"browser_name":"Google Chrome","browser_version":"38.0.2125.111","server_count":5,"server_rtt":0,"base_page_cdn":"Google","adult_site":0,"fixed_viewport":0,"score_progressive_jpeg":-1,"firstPaint":0,"docCPUms":1965.613,"fullyLoadedCPUms":2542.816,"docCPUpct":81,"fullyLoadedCPUpct":54,"isResponsive":-1,"date":1415298900,"CSI":["v","s","imc","imn","imp","ei","e","atyp","adh","xjs","action","srt","p","npn","rt","xjsls","prt","xjses","xjsee","ol","iml","wsrt","cst","dnst","rqst","rspt"],"CSI.v":3,"CSI.s":"webhp","CSI.imc":1,"CSI.imn":1,"CSI.imp":1,"CSI.ei":"YL9bVNOzJpCzoQTWgoDQDA","CSI.e":"3700259,4011550,4011551,4011557,4011558,4011559,4013605,4014789,4016469,4016824,4017981,4019181,4020347,4020562,4020921,4021073,4022074,4022318,4022495,4022686,4023367,4023567,4023678,4023709,4023972,4024007,4025080,8500272,8500393,10200044,10200083,10200716","CSI.atyp":"csi","CSI.adh":"","CSI.xjs":1065,"CSI.action":"","CSI.srt":5225,"CSI.p":"s","CSI.npn":1,"CSI.rt":"xjsls.53,prt.54,xjses.768,xjsee.1033,xjs.1065,ol.1719,iml.1315,wsrt.678,cst.141,dnst.0,rqst.305,rspt.124","CSI.xjsls":53,"CSI.prt":54,"CSI.xjses":768,"CSI.xjsee":1033,"CSI.ol":1719,"CSI.iml":1315,"CSI.wsrt":678,"CSI.cst":141,"CSI.dnst":0,"CSI.rqst":305,"CSI.rspt":124,"SpeedIndex":0,"visualComplete":0,"run":2,"effectiveBps":191491,"effectiveBpsDoc":203071,"tester":"IE9204-192.168.102.94","pages":{"details":"http:\/\/www.webpagetest.org\/details.php?test=141106_TM_ZFM&run=2&cached=0","checklist":"http:\/\/www.webpagetest.org\/performance_optimization.php?test=141106_TM_ZFM&run=2&cached=0","breakdown":"http:\/\/www.webpagetest.org\/breakdown.php?test=141106_TM_ZFM&run=2&cached=0","domains":"http:\/\/www.webpagetest.org\/domains.php?test=141106_TM_ZFM&run=2&cached=0","screenShot":"http:\/\/www.webpagetest.org\/screen_shot.php?test=141106_TM_ZFM&run=2&cached=0"},"thumbnails":{"waterfall":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/2_waterfall_thumb.png","checklist":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/2_optimization_thumb.png","screenShot":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/2_screen_thumb.png"},"images":{"waterfall":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/2_waterfall.png","connectionView":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/2_connection.png","checklist":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/2_optimization.png","screenShot":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/2_screen.jpg"},"rawData":{"headers":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/2_report.txt","pageData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/2_IEWPG.txt","requestsData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/2_IEWTR.txt","utilization":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/2_progress.csv"},"videoFrames":[{"time":0,"image":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/video_2\/frame_0000.jpg","VisuallyComplete":100}],"domains":{"moc.elgoog.www":{"bytes":375378,"requests":9,"connections":2},"moc.citatsg.lss":{"bytes":14285,"requests":1,"connections":1},"moc.citatsg.www":{"bytes":59283,"requests":1,"connections":1},"moc.elgoog.sipa":{"bytes":156500,"requests":1,"connections":1}},"breakdown":{"html":{"color":[130,181,252],"bytes":53619,"requests":3},"js":{"color":[254,197,132],"bytes":506659,"requests":5},"css":{"color":[178,234,148],"bytes":0,"requests":0},"image":{"color":[196,154,232],"bytes":45168,"requests":4},"flash":{"color":[45,183,193],"bytes":0,"requests":0},"font":{"color":[255,82,62],"bytes":0,"requests":0},"other":{"color":[196,196,196],"bytes":0,"requests":0}}},"repeatView":{"URL":"http:\/\/www.google.com","loadTime":1372,"TTFB":458,"bytesOut":9283,"bytesOutDoc":8735,"bytesIn":85486,"bytesInDoc":85359,"connections":2,"requests":[{"ip_addr":"74.125.225.80","method":"GET","host":"www.google.com","url":"\/","responseCode":"302","load_ms":"122","ttfb_ms":"122","load_start":"50","bytesOut":"584","bytesIn":"532","objectSize":"231","cacheControl":"private","contentType":"text\/html","type":"3","socket":"15","score_cache":"0","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"0","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"49","ssl_start":"0","ssl_end":"0","server_count":"5","server_rtt":"49","client_port":"51852","jpeg_scan_count":"0","full_url":"http:\/\/www.google.com\/","score_progressive_jpeg":-1,"load_end":172,"ttfb_start":"50","ttfb_end":172,"download_start":172,"download_end":172,"download_ms":0,"all_start":"50","all_end":172,"all_ms":"122","headers":{"request":["GET \/ HTTP\/1.1","Host: www.google.com","Connection: keep-alive","Accept: text\/html,application\/xhtml+xml,application\/xml;q=0.9,image\/webp,*\/*;q=0.8","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36 PTST\/191","Accept-Encoding: gzip,deflate,sdch","Accept-Language: en-US,en;q=0.8","Cookie: PREF=ID=475c491cad4e86aa:U=d2f3b954c35bcd9b:FF=0:TM=1415298912:LM=1415298912:S=lV95Ue2bqUmiPbk5; NID=67=FxZ3TVYsJlTtvVnmerGAmxHaZlZTz5A31FZWPSd1rO1IWsQQNoRhmBSazKHgNuIyFbSiyrYFhW6OHLe3wfVvB_ZYIKQjZ5yH_Zis-NxQXljm2qIsyFUvNKKpsqhKOv-p"],"response":["HTTP\/1.1 302 Found","Location: https:\/\/www.google.com\/?gws_rd=ssl","Cache-Control: private","Content-Type: text\/html; charset=UTF-8","Date: Thu, 06 Nov 2014 18:35:24 GMT","Server: gws","Content-Length: 231","X-XSS-Protection: 1; mode=block","X-Frame-Options: SAMEORIGIN","Alternate-Protocol: 80:quic,p=0.01"]},"index":0,"number":1},{"method":"GET","host":"www.google.com","url":"\/?gws_rd=ssl","responseCode":"200","load_ms":"290","ttfb_ms":"197","load_start":"261","bytesOut":"254","bytesIn":"61974","objectSize":"0","expires":"-1","cacheControl":"private, max-age=0","contentType":"text\/html","contentEncoding":"gzip","type":"3","socket":"161","score_cache":"-1","score_cdn":"-1","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":0,"connect_ms":0,"ssl_ms":57,"gzip_total":"280","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"-1","cdn_provider":"Google","dns_start":"203","dns_end":"203","connect_start":"203","connect_end":"203","ssl_start":"203","ssl_end":"260","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/?gws_rd=ssl","score_progressive_jpeg":-1,"load_end":551,"ttfb_start":"261","ttfb_end":458,"download_start":458,"download_end":551,"download_ms":93,"all_start":"203","all_end":551,"all_ms":347,"headers":{"request":["GET \/?gws_rd=ssl HTTP\/1.1","Host: www.google.com","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A87ED523-8779-4935-A86C-D91B13E86886"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=0","content-encoding: gzip","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:35:25 GMT","expires: -1","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":1,"number":2},{"method":"GET","host":"www.google.com","url":"\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=bb9bVMmPC4z9oQSY8YG4DQ&e=3700259,4011550,4011551,4011557,4011558,4011559,4013605,4014789,4016469,4016824,4017981,4019181,4020347,4020562,4020921,4021073,4022074,4022318,4022495,4022686,4023367,4023567,4023678,4023709,4023972,4024007,4025080,8500272,8500393,10200044,10200083,10200716&atyp=csi&adh=&xjs=init.86.28.sb.52.p.12.spch.7.jsa.5.ifl.2&action=&srt=5139&p=s&npn=1&rt=xjsls.44,prt.46,xjses.264,xjsee.470,xjs.503,ol.775,iml.166,wsrt.584,cst.57,dnst.0,rqst.290,rspt.93","responseCode":"204","load_ms":"121","ttfb_ms":"107","load_start":"1388","bytesOut":"819","bytesIn":"251","objectSize":"0","contentType":"text\/html","type":"3","socket":"161","score_cache":"0","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=bb9bVMmPC4z9oQSY8YG4DQ&e=3700259,4011550,4011551,4011557,4011558,4011559,4013605,4014789,4016469,4016824,4017981,4019181,4020347,4020562,4020921,4021073,4022074,4022318,4022495,4022686,4023367,4023567,4023678,4023709,4023972,4024007,4025080,8500272,8500393,10200044,10200083,10200716&atyp=csi&adh=&xjs=init.86.28.sb.52.p.12.spch.7.jsa.5.ifl.2&action=&srt=5139&p=s&npn=1&rt=xjsls.44,prt.46,xjses.264,xjsee.470,xjs.503,ol.775,iml.166,wsrt.584,cst.57,dnst.0,rqst.290,rspt.93","score_progressive_jpeg":-1,"load_end":1509,"ttfb_start":"1388","ttfb_end":1495,"download_start":1495,"download_end":1509,"download_ms":14,"all_start":"1388","all_end":1509,"all_ms":"121","headers":{"request":["GET \/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=bb9bVMmPC4z9oQSY8YG4DQ&e=3700259,4011550,4011551,4011557,4011558,4011559,4013605,4014789,4016469,4016824,4017981,4019181,4020347,4020562,4020921,4021073,4022074,4022318,4022495,4022686,4023367,4023567,4023678,4023709,4023972,4024007,4025080,8500272,8500393,10200044,10200083,10200716&atyp=csi&adh=&xjs=init.86.28.sb.52.p.12.spch.7.jsa.5.ifl.2&action=&srt=5139&p=s&npn=1&rt=xjsls.44,prt.46,xjses.264,xjsee.470,xjs.503,ol.775,iml.166,wsrt.584,cst.57,dnst.0,rqst.290,rspt.93 HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A87ED523-8779-4935-A86C-D91B13E86886"],"response":["HTTP\/1.1 204 No Content","alternate-protocol: 443:quic,p=0.01","content-length: 0","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:35:26 GMT","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":2,"number":3}],"requestsDoc":2,"responses_200":1,"responses_404":0,"responses_other":1,"result":0,"render":895,"fullyLoaded":1509,"cached":1,"docTime":1372,"domTime":0,"score_cache":0,"score_cdn":-1,"score_gzip":100,"score_cookies":-1,"score_keep-alive":100,"score_minify":-1,"score_combine":100,"score_compress":-1,"score_etags":-1,"gzip_total":280,"gzip_savings":0,"minify_total":0,"minify_savings":0,"image_total":0,"image_savings":0,"optimization_checked":1,"aft":0,"domElements":288,"pageSpeedVersion":"1.9","title":"Google","titleTime":692,"loadEventStart":1354,"loadEventEnd":1363,"domContentLoadedEventStart":630,"domContentLoadedEventEnd":677,"lastVisualChange":0,"browser_name":"Google Chrome","browser_version":"38.0.2125.111","server_count":5,"server_rtt":0,"base_page_cdn":"Google","adult_site":0,"fixed_viewport":0,"score_progressive_jpeg":-1,"firstPaint":0,"docCPUms":1248.008,"fullyLoadedCPUms":1716.011,"docCPUpct":90,"fullyLoadedCPUpct":47,"isResponsive":-1,"date":1415298913,"CSI":["v","s","imc","imn","imp","ei","e","atyp","adh","xjs","action","srt","p","npn","rt","xjsls","prt","xjses","xjsee","ol","iml","wsrt","cst","dnst","rqst","rspt"],"CSI.v":3,"CSI.s":"webhp","CSI.imc":1,"CSI.imn":1,"CSI.imp":1,"CSI.ei":"bb9bVMmPC4z9oQSY8YG4DQ","CSI.e":"3700259,4011550,4011551,4011557,4011558,4011559,4013605,4014789,4016469,4016824,4017981,4019181,4020347,4020562,4020921,4021073,4022074,4022318,4022495,4022686,4023367,4023567,4023678,4023709,4023972,4024007,4025080,8500272,8500393,10200044,10200083,10200716","CSI.atyp":"csi","CSI.adh":"","CSI.xjs":503,"CSI.action":"","CSI.srt":5139,"CSI.p":"s","CSI.npn":1,"CSI.rt":"xjsls.44,prt.46,xjses.264,xjsee.470,xjs.503,ol.775,iml.166,wsrt.584,cst.57,dnst.0,rqst.290,rspt.93","CSI.xjsls":44,"CSI.prt":46,"CSI.xjses":264,"CSI.xjsee":470,"CSI.ol":775,"CSI.iml":166,"CSI.wsrt":584,"CSI.cst":57,"CSI.dnst":0,"CSI.rqst":290,"CSI.rspt":93,"SpeedIndex":0,"visualComplete":0,"run":2,"effectiveBps":81337,"effectiveBpsDoc":93390,"tester":"IE9204-192.168.102.94","pages":{"details":"http:\/\/www.webpagetest.org\/details.php?test=141106_TM_ZFM&run=2&cached=1","checklist":"http:\/\/www.webpagetest.org\/performance_optimization.php?test=141106_TM_ZFM&run=2&cached=1","breakdown":"http:\/\/www.webpagetest.org\/breakdown.php?test=141106_TM_ZFM&run=2&cached=1","domains":"http:\/\/www.webpagetest.org\/domains.php?test=141106_TM_ZFM&run=2&cached=1","screenShot":"http:\/\/www.webpagetest.org\/screen_shot.php?test=141106_TM_ZFM&run=2&cached=1"},"thumbnails":{"waterfall":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/2_Cached_waterfall_thumb.png","checklist":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/2_Cached_optimization_thumb.png","screenShot":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/2_Cached_screen_thumb.png"},"images":{"waterfall":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/2_Cached_waterfall.png","connectionView":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/2_Cached_connection.png","checklist":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/2_Cached_optimization.png","screenShot":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/2_Cached_screen.jpg"},"rawData":{"headers":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/2_Cached_report.txt","pageData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/2_Cached_IEWPG.txt","requestsData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/2_Cached_IEWTR.txt","utilization":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/2_Cached_progress.csv"},"videoFrames":[{"time":0,"image":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/video_2_cached\/frame_0000.jpg","VisuallyComplete":100}],"domains":{"moc.elgoog.www":{"bytes":62757,"requests":3,"connections":2}},"breakdown":{"html":{"color":[130,181,252],"bytes":62757,"requests":3},"js":{"color":[254,197,132],"bytes":0,"requests":0},"css":{"color":[178,234,148],"bytes":0,"requests":0},"image":{"color":[196,154,232],"bytes":0,"requests":0},"flash":{"color":[45,183,193],"bytes":0,"requests":0},"font":{"color":[255,82,62],"bytes":0,"requests":0},"other":{"color":[196,196,196],"bytes":0,"requests":0}}}},"3":{"firstView":{"URL":"http:\/\/www.google.com","loadTime":1859,"TTFB":527,"bytesOut":7732,"bytesOutDoc":6849,"bytesIn":406795,"bytesInDoc":388881,"connections":5,"requests":[{"ip_addr":"74.125.225.80","method":"GET","host":"www.google.com","url":"\/","responseCode":"302","load_ms":"118","ttfb_ms":"118","load_start":"51","bytesOut":"342","bytesIn":"1044","objectSize":"231","cacheControl":"private","contentType":"text\/html","type":"3","socket":"21","score_cache":"0","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"0","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"50","ssl_start":"0","ssl_end":"0","server_count":"5","server_rtt":"50","client_port":"57503","jpeg_scan_count":"0","full_url":"http:\/\/www.google.com\/","score_progressive_jpeg":-1,"load_end":169,"ttfb_start":"51","ttfb_end":169,"download_start":169,"download_end":169,"download_ms":0,"all_start":"51","all_end":169,"all_ms":"118","headers":{"request":["GET \/ HTTP\/1.1","Host: www.google.com","Connection: keep-alive","Accept: text\/html,application\/xhtml+xml,application\/xml;q=0.9,image\/webp,*\/*;q=0.8","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36 PTST\/191","Accept-Encoding: gzip,deflate,sdch","Accept-Language: en-US,en;q=0.8"],"response":["HTTP\/1.1 302 Found","Location: https:\/\/www.google.com\/?gws_rd=ssl","Cache-Control: private","Content-Type: text\/html; charset=UTF-8","Set-Cookie: PREF=ID=c8ae0fd9a35b560a:FF=0:TM=1415298911:LM=1415298911:S=wGBHegrYkFIl74OM; expires=Sat, 05-Nov-2016 18:35:11 GMT; path=\/; domain=.google.com","Set-Cookie: NID=67=A8rzWOkZhV5ph-wUG0ek5x-MFtIRDWOSW0DZYZy6dEV1D64v0M7VJTy8w_P4IB5OQNncxH3kkpmAskYeeLkP2oojzK796UCb3uS2cjlc3xQnx-PoH7WcYIwKFzjF_j6Z; expires=Fri, 08-May-2015 18:35:11 GMT; path=\/; domain=.google.com; HttpOnly","P3P: CP=\"This is not a P3P policy! See http:\/\/www.google.com\/support\/accounts\/bin\/answer.py?hl=en&answer=151657 for more info.\"","Date: Thu, 06 Nov 2014 18:35:11 GMT","Server: gws","Content-Length: 231","X-XSS-Protection: 1; mode=block","X-Frame-Options: SAMEORIGIN","Alternate-Protocol: 80:quic,p=0.01"]},"index":0,"number":1},{"method":"GET","host":"www.google.com","url":"\/?gws_rd=ssl","responseCode":"200","load_ms":"272","ttfb_ms":"181","load_start":"346","bytesOut":"254","bytesIn":"59402","objectSize":"0","expires":"-1","cacheControl":"private, max-age=0","contentType":"text\/html","contentEncoding":"gzip","type":"3","socket":"233","score_cache":"-1","score_cdn":"-1","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":0,"connect_ms":48,"ssl_ms":99,"gzip_total":"799","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"-1","cdn_provider":"Google","dns_start":"199","dns_end":"199","connect_start":"199","connect_end":"247","ssl_start":"247","ssl_end":"346","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/?gws_rd=ssl","score_progressive_jpeg":-1,"load_end":618,"ttfb_start":"346","ttfb_end":527,"download_start":527,"download_end":618,"download_ms":91,"all_start":"199","all_end":618,"all_ms":419,"headers":{"request":["GET \/?gws_rd=ssl HTTP\/1.1","Host: www.google.com","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=0","content-encoding: gzip","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:35:11 GMT","expires: -1","p3p: CP=\"This is not a P3P policy! See http:\/\/www.google.com\/support\/accounts\/bin\/answer.py?hl=en&answer=151657 for more info.\"","server: gws","set-cookie: PREF=ID=c8ae0fd9a35b560a:U=13a3a6adb0b5baae:FF=0:TM=1415298911:LM=1415298911:S=6_qwKnH9qWTEeuXk; expires=Sat, 05-Nov-2016 18:35:11 GMT; path=\/; domain=.google.com","NID=67=Ue_d0qHMhmOdhZ9A50DYfvJhQQK0WV2c_RfwRbKG_3tCN8L0CV7FpvqilrK7El69DX146S0_ZqFG02sKFXcT-lgtI9XtRP1fWtZhQ15VPcdvLLjuUjMt1_Dt9d1C9gfk; expires=Fri, 08-May-2015 18:35:11 GMT; path=\/; domain=.google.com; HttpOnly","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":1,"number":2},{"method":"GET","host":"www.google.com","url":"\/images\/srpr\/logo11w.png","responseCode":"200","load_ms":"572","ttfb_ms":"571","load_start":"815","bytesOut":"330","bytesIn":"14111","objectSize":"0","expires":"Thu, 06 Nov 2014 18:35:12 GMT","cacheControl":"private, max-age=31536000","contentType":"image\/png","type":"3","socket":"233","score_cache":"0","score_cdn":"100","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/?gws_rd=ssl","initiator_line":"28","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/images\/srpr\/logo11w.png","score_progressive_jpeg":-1,"load_end":1387,"ttfb_start":"815","ttfb_end":1386,"download_start":1386,"download_end":1387,"download_ms":1,"all_start":"815","all_end":1387,"all_ms":"572","headers":{"request":["GET \/images\/srpr\/logo11w.png HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=31536000","content-length: 14022","content-type: image\/png","date: Thu, 06 Nov 2014 18:35:12 GMT","expires: Thu, 06 Nov 2014 18:35:12 GMT","last-modified: Wed, 09 Oct 2013 01:35:39 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":2,"number":3},{"method":"GET","host":"ssl.gstatic.com","url":"\/gb\/images\/i1_71651352.png","responseCode":"200","load_ms":"77","ttfb_ms":"42","load_start":"881","bytesOut":"333","bytesIn":"14285","objectSize":"0","expires":"Thu, 05 Nov 2015 15:23:35 GMT","cacheControl":"public, max-age=31536000","contentType":"image\/png","type":"3","socket":"315","score_cache":"100","score_cdn":"0","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":0,"connect_ms":39,"ssl_ms":89,"gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","dns_start":"752","dns_end":"752","connect_start":"752","connect_end":"791","ssl_start":"791","ssl_end":"880","initiator":"https:\/\/www.google.com\/?gws_rd=ssl","initiator_line":"76","initiator_column":"35","server_count":"4","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/ssl.gstatic.com\/gb\/images\/i1_71651352.png","score_progressive_jpeg":-1,"load_end":958,"ttfb_start":"881","ttfb_end":923,"download_start":923,"download_end":958,"download_ms":35,"all_start":"752","all_end":958,"all_ms":205,"headers":{"request":["GET \/gb\/images\/i1_71651352.png HTTP\/1.1","Host: ssl.gstatic.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF"],"response":["HTTP\/1.1 200 OK","age: 97897","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-length: 14055","content-type: image\/png","date: Wed, 05 Nov 2014 15:23:35 GMT","expires: Thu, 05 Nov 2015 15:23:35 GMT","last-modified: Thu, 16 Oct 2014 18:20:30 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":3,"number":4},{"method":"GET","host":"www.google.com","url":"\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","responseCode":"200","load_ms":"333","ttfb_ms":"54","load_start":"884","bytesOut":"443","bytesIn":"233315","objectSize":"0","expires":"Fri, 06 Nov 2015 11:13:26 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"233","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"429","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/?gws_rd=ssl","initiator_line":"94","initiator_column":"17237","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","score_progressive_jpeg":-1,"load_end":1217,"ttfb_start":"884","ttfb_end":938,"download_start":938,"download_end":1217,"download_ms":279,"all_start":"884","all_end":1217,"all_ms":"333","headers":{"request":["GET \/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP\/1.1","Host: www.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF"],"response":["HTTP\/1.1 200 OK","age: 26506","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 130931","content-type: text\/javascript; charset=UTF-8","date: Thu, 06 Nov 2014 11:13:26 GMT","expires: Fri, 06 Nov 2015 11:13:26 GMT","last-modified: Tue, 04 Nov 2014 19:30:26 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":4,"number":5},{"method":"GET","host":"www.gstatic.com","url":"\/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w","responseCode":"200","load_ms":"247","ttfb_ms":"245","load_start":"1073","bytesOut":"392","bytesIn":"184146","objectSize":"0","expires":"Thu, 05 Nov 2015 13:04:24 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"339","score_cache":"100","score_cdn":"0","score_gzip":"100","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":32,"connect_ms":40,"ssl_ms":82,"gzip_total":"429","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","dns_start":"918","dns_end":"950","connect_start":"950","connect_end":"990","ssl_start":"990","ssl_end":"1072","initiator":"https:\/\/www.google.com\/?gws_rd=ssl","initiator_line":"57","initiator_column":"143","server_count":"4","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.gstatic.com\/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w","score_progressive_jpeg":-1,"load_end":1320,"ttfb_start":"1073","ttfb_end":1318,"download_start":1318,"download_end":1320,"download_ms":2,"all_start":"918","all_end":1320,"all_ms":401,"headers":{"request":["GET \/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w HTTP\/1.1","Host: www.gstatic.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF"],"response":["HTTP\/1.1 200 OK","age: 106248","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 55207","content-type: text\/javascript; charset=UTF-8","date: Wed, 05 Nov 2014 13:04:24 GMT","expires: Thu, 05 Nov 2015 13:04:24 GMT","last-modified: Tue, 04 Nov 2014 01:19:09 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":5,"number":6},{"method":"GET","host":"www.google.com","url":"\/extern_chrome\/854094c746d4c9a.js?bav=on.2,or.r_qf.","responseCode":"200","load_ms":"170","ttfb_ms":"168","load_start":"1316","bytesOut":"340","bytesIn":"36559","objectSize":"0","expires":"Thu, 05 Nov 2015 00:00:00 GMT","cacheControl":"private","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"233","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"422","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31382688","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","initiator_line":"1187","initiator_column":"181","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/extern_chrome\/854094c746d4c9a.js?bav=on.2,or.r_qf.","score_progressive_jpeg":-1,"load_end":1486,"ttfb_start":"1316","ttfb_end":1484,"download_start":1484,"download_end":1486,"download_ms":2,"all_start":"1316","all_end":1486,"all_ms":"170","headers":{"request":["GET \/extern_chrome\/854094c746d4c9a.js?bav=on.2,or.r_qf. HTTP\/1.1","Host: www.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private","content-disposition: attachment; filename=\"f.txt\"","content-encoding: gzip","content-length: 13825","content-type: text\/javascript; charset=UTF-8","date: Thu, 06 Nov 2014 18:35:12 GMT","expires: Thu, 05 Nov 2015 00:00:00 GMT","last-modified: Thu, 07 Nov 2013 00:00:00 GMT","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":6,"number":7},{"method":"GET","host":"www.google.com","url":"\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=0\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","responseCode":"200","load_ms":"121","ttfb_ms":"51","load_start":"1483","bytesOut":"682","bytesIn":"52270","objectSize":"0","expires":"Fri, 06 Nov 2015 12:08:37 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"233","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"428","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","initiator_line":"101","initiator_column":"112","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=0\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","score_progressive_jpeg":-1,"load_end":1604,"ttfb_start":"1483","ttfb_end":1534,"download_start":1534,"download_end":1604,"download_ms":70,"all_start":"1483","all_end":1604,"all_ms":"121","headers":{"request":["GET \/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=0\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP\/1.1","Host: www.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF"],"response":["HTTP\/1.1 200 OK","age: 23195","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 48157","content-type: text\/javascript; charset=UTF-8","date: Thu, 06 Nov 2014 12:08:37 GMT","expires: Fri, 06 Nov 2015 12:08:37 GMT","last-modified: Tue, 04 Nov 2014 19:30:26 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":7,"number":8},{"method":"GET","host":"www.google.com","url":"\/textinputassistant\/tia.png","responseCode":"200","load_ms":"200","ttfb_ms":"199","load_start":"1484","bytesOut":"333","bytesIn":"481","objectSize":"0","expires":"Thu, 05 Nov 2015 06:57:32 GMT","cacheControl":"public, max-age=31536000","contentType":"image\/png","type":"3","socket":"233","score_cache":"100","score_cdn":"100","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/?gws_rd=ssl","initiator_line":"1","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/textinputassistant\/tia.png","score_progressive_jpeg":-1,"load_end":1684,"ttfb_start":"1484","ttfb_end":1683,"download_start":1683,"download_end":1684,"download_ms":1,"all_start":"1484","all_end":1684,"all_ms":"200","headers":{"request":["GET \/textinputassistant\/tia.png HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF"],"response":["HTTP\/1.1 200 OK","age: 128260","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-length: 387","content-type: image\/png","date: Wed, 05 Nov 2014 06:57:32 GMT","expires: Thu, 05 Nov 2015 06:57:32 GMT","last-modified: Mon, 02 Apr 2012 02:13:37 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":8,"number":9},{"method":"GET","host":"apis.google.com","url":"\/_\/scs\/abc-static\/_\/js\/k=gapi.gapi.en.3_mJ9Wvc9FU.O\/m=gapi_iframes,googleapis_client,plusone\/rt=j\/sv=1\/d=1\/ed=1\/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg\/cb=gapi.loaded_0","responseCode":"200","load_ms":"114","ttfb_ms":"46","load_start":"1665","bytesOut":"456","bytesIn":"49927","objectSize":"0","expires":"Thu, 05 Nov 2015 15:23:35 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"434","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":34,"connect_ms":40,"ssl_ms":74,"gzip_total":"428","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"1517","dns_end":"1551","connect_start":"1551","connect_end":"1591","ssl_start":"1591","ssl_end":"1665","initiator":"https:\/\/www.gstatic.com\/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w","initiator_line":"138","initiator_column":"381","server_count":"11","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/apis.google.com\/_\/scs\/abc-static\/_\/js\/k=gapi.gapi.en.3_mJ9Wvc9FU.O\/m=gapi_iframes,googleapis_client,plusone\/rt=j\/sv=1\/d=1\/ed=1\/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg\/cb=gapi.loaded_0","score_progressive_jpeg":-1,"load_end":1779,"ttfb_start":"1665","ttfb_end":1711,"download_start":1711,"download_end":1779,"download_ms":68,"all_start":"1517","all_end":1779,"all_ms":262,"headers":{"request":["GET \/_\/scs\/abc-static\/_\/js\/k=gapi.gapi.en.3_mJ9Wvc9FU.O\/m=gapi_iframes,googleapis_client,plusone\/rt=j\/sv=1\/d=1\/ed=1\/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg\/cb=gapi.loaded_0 HTTP\/1.1","Host: apis.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF"],"response":["HTTP\/1.1 200 OK","age: 97898","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 48911","content-type: text\/javascript; charset=UTF-8","date: Wed, 05 Nov 2014 15:23:35 GMT","expires: Thu, 05 Nov 2015 15:23:35 GMT","last-modified: Thu, 16 Oct 2014 07:30:29 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":9,"number":10},{"method":"GET","host":"www.google.com","url":"\/images\/nav_logo195.png","responseCode":"200","load_ms":"84","ttfb_ms":"68","load_start":"1874","bytesOut":"329","bytesIn":"16300","objectSize":"0","expires":"Thu, 06 Nov 2014 18:35:13 GMT","cacheControl":"private, max-age=31536000","contentType":"image\/png","type":"3","socket":"233","score_cache":"0","score_cdn":"100","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/images\/nav_logo195.png","score_progressive_jpeg":-1,"load_end":1958,"ttfb_start":"1874","ttfb_end":1942,"download_start":1942,"download_end":1958,"download_ms":16,"all_start":"1874","all_end":1958,"all_ms":"84","headers":{"request":["GET \/images\/nav_logo195.png HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=31536000","content-length: 16214","content-type: image\/png","date: Thu, 06 Nov 2014 18:35:13 GMT","expires: Thu, 06 Nov 2014 18:35:13 GMT","last-modified: Wed, 21 May 2014 00:02:44 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":10,"number":11},{"method":"GET","host":"www.google.com","url":"\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=X79bVJ_KLYi2oQSrr4DwDA&e=3700261,4011550,4011551,4011557,4011558,4011559,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021341,4021532,4021597,4022074,4022318,4022495,4022688,4023367,4023566,4023709,4023972,4023979,4024625,4024691,4024905,4024932,8500272,8500394,8500699,8500755,10200083,10200716,10200744,10200766&atyp=csi&adh=&xjs=init.119.28.sb.65.m.28.p.12.spch.6.foot.1&action=&srt=642&p=s&npn=1&rt=xjsls.26,prt.27,xjses.520,xjsee.706,xjs.760,ol.1207,iml.761,wsrt.642,cst.146,dnst.0,rqst.272,rspt.91","responseCode":"204","load_ms":"111","ttfb_ms":"110","load_start":"1876","bytesOut":"878","bytesIn":"251","objectSize":"0","contentType":"text\/html","type":"3","socket":"233","score_cache":"0","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=X79bVJ_KLYi2oQSrr4DwDA&e=3700261,4011550,4011551,4011557,4011558,4011559,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021341,4021532,4021597,4022074,4022318,4022495,4022688,4023367,4023566,4023709,4023972,4023979,4024625,4024691,4024905,4024932,8500272,8500394,8500699,8500755,10200083,10200716,10200744,10200766&atyp=csi&adh=&xjs=init.119.28.sb.65.m.28.p.12.spch.6.foot.1&action=&srt=642&p=s&npn=1&rt=xjsls.26,prt.27,xjses.520,xjsee.706,xjs.760,ol.1207,iml.761,wsrt.642,cst.146,dnst.0,rqst.272,rspt.91","score_progressive_jpeg":-1,"load_end":1987,"ttfb_start":"1876","ttfb_end":1986,"download_start":1986,"download_end":1987,"download_ms":1,"all_start":"1876","all_end":1987,"all_ms":"111","headers":{"request":["GET \/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=X79bVJ_KLYi2oQSrr4DwDA&e=3700261,4011550,4011551,4011557,4011558,4011559,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021341,4021532,4021597,4022074,4022318,4022495,4022688,4023367,4023566,4023709,4023972,4023979,4024625,4024691,4024905,4024932,8500272,8500394,8500699,8500755,10200083,10200716,10200744,10200766&atyp=csi&adh=&xjs=init.119.28.sb.65.m.28.p.12.spch.6.foot.1&action=&srt=642&p=s&npn=1&rt=xjsls.26,prt.27,xjses.520,xjsee.706,xjs.760,ol.1207,iml.761,wsrt.642,cst.146,dnst.0,rqst.272,rspt.91 HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF"],"response":["HTTP\/1.1 204 No Content","alternate-protocol: 443:quic,p=0.01","content-length: 0","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:35:13 GMT","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":11,"number":12}],"requestsDoc":10,"responses_200":10,"responses_404":0,"responses_other":1,"result":0,"render":793,"fullyLoaded":1987,"cached":0,"docTime":1859,"domTime":0,"score_cache":63,"score_cdn":77,"score_gzip":100,"score_cookies":-1,"score_keep-alive":100,"score_minify":-1,"score_combine":100,"score_compress":-1,"score_etags":-1,"gzip_total":2935,"gzip_savings":0,"minify_total":0,"minify_savings":0,"image_total":0,"image_savings":0,"optimization_checked":1,"aft":0,"domElements":288,"pageSpeedVersion":"1.9","title":"Google","titleTime":891,"loadEventStart":1845,"loadEventEnd":1851,"domContentLoadedEventStart":669,"domContentLoadedEventEnd":714,"lastVisualChange":0,"browser_name":"Google Chrome","browser_version":"38.0.2125.111","server_count":5,"server_rtt":0,"base_page_cdn":"Google","adult_site":0,"fixed_viewport":0,"score_progressive_jpeg":-1,"firstPaint":747,"docCPUms":1201.208,"fullyLoadedCPUms":1372.809,"docCPUpct":64,"fullyLoadedCPUpct":34,"isResponsive":-1,"date":1415298674,"CSI":["v","s","imc","imn","imp","ei","e","atyp","adh","xjs","action","srt","p","npn","rt","xjsls","prt","xjses","xjsee","ol","iml","wsrt","cst","dnst","rqst","rspt"],"CSI.v":3,"CSI.s":"webhp","CSI.imc":1,"CSI.imn":1,"CSI.imp":1,"CSI.ei":"X79bVJ_KLYi2oQSrr4DwDA","CSI.e":"3700261,4011550,4011551,4011557,4011558,4011559,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021341,4021532,4021597,4022074,4022318,4022495,4022688,4023367,4023566,4023709,4023972,4023979,4024625,4024691,4024905,4024932,8500272,8500394,8500699,8500755,10200083,10200716,10200744,10200766","CSI.atyp":"csi","CSI.adh":"","CSI.xjs":760,"CSI.action":"","CSI.srt":642,"CSI.p":"s","CSI.npn":1,"CSI.rt":"xjsls.26,prt.27,xjses.520,xjsee.706,xjs.760,ol.1207,iml.761,wsrt.642,cst.146,dnst.0,rqst.272,rspt.91","CSI.xjsls":26,"CSI.prt":27,"CSI.xjses":520,"CSI.xjsee":706,"CSI.ol":1207,"CSI.iml":761,"CSI.wsrt":642,"CSI.cst":146,"CSI.dnst":0,"CSI.rqst":272,"CSI.rspt":91,"SpeedIndex":0,"visualComplete":0,"run":3,"effectiveBps":278626,"effectiveBpsDoc":291952,"tester":"IE9103-192.168.101.93","pages":{"details":"http:\/\/www.webpagetest.org\/details.php?test=141106_TM_ZFM&run=3&cached=0","checklist":"http:\/\/www.webpagetest.org\/performance_optimization.php?test=141106_TM_ZFM&run=3&cached=0","breakdown":"http:\/\/www.webpagetest.org\/breakdown.php?test=141106_TM_ZFM&run=3&cached=0","domains":"http:\/\/www.webpagetest.org\/domains.php?test=141106_TM_ZFM&run=3&cached=0","screenShot":"http:\/\/www.webpagetest.org\/screen_shot.php?test=141106_TM_ZFM&run=3&cached=0"},"thumbnails":{"waterfall":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/3_waterfall_thumb.png","checklist":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/3_optimization_thumb.png","screenShot":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/3_screen_thumb.png"},"images":{"waterfall":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/3_waterfall.png","connectionView":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/3_connection.png","checklist":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/3_optimization.png","screenShot":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/3_screen.jpg"},"rawData":{"headers":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/3_report.txt","pageData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/3_IEWPG.txt","requestsData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/3_IEWTR.txt","utilization":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/3_progress.csv"},"videoFrames":[{"time":0,"image":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/video_3\/frame_0000.jpg","VisuallyComplete":100}],"domains":{"moc.elgoog.www":{"bytes":413733,"requests":9,"connections":2},"moc.citatsg.lss":{"bytes":14285,"requests":1,"connections":1},"moc.citatsg.www":{"bytes":184146,"requests":1,"connections":1},"moc.elgoog.sipa":{"bytes":49927,"requests":1,"connections":1}},"breakdown":{"html":{"color":[130,181,252],"bytes":60697,"requests":3},"js":{"color":[254,197,132],"bytes":556217,"requests":5},"css":{"color":[178,234,148],"bytes":0,"requests":0},"image":{"color":[196,154,232],"bytes":45177,"requests":4},"flash":{"color":[45,183,193],"bytes":0,"requests":0},"font":{"color":[255,82,62],"bytes":0,"requests":0},"other":{"color":[196,196,196],"bytes":0,"requests":0}}},"repeatView":{"URL":"http:\/\/www.google.com","loadTime":1103,"TTFB":418,"bytesOut":9310,"bytesOutDoc":8740,"bytesIn":85510,"bytesInDoc":85383,"connections":2,"requests":[{"ip_addr":"74.125.225.80","method":"GET","host":"www.google.com","url":"\/","responseCode":"302","load_ms":"126","ttfb_ms":"126","load_start":"49","bytesOut":"584","bytesIn":"532","objectSize":"231","cacheControl":"private","contentType":"text\/html","type":"3","socket":"15","score_cache":"0","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"0","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"49","ssl_start":"0","ssl_end":"0","server_count":"5","server_rtt":"49","client_port":"57544","jpeg_scan_count":"0","full_url":"http:\/\/www.google.com\/","score_progressive_jpeg":-1,"load_end":175,"ttfb_start":"49","ttfb_end":175,"download_start":175,"download_end":175,"download_ms":0,"all_start":"49","all_end":175,"all_ms":"126","headers":{"request":["GET \/ HTTP\/1.1","Host: www.google.com","Connection: keep-alive","Accept: text\/html,application\/xhtml+xml,application\/xml;q=0.9,image\/webp,*\/*;q=0.8","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36 PTST\/191","Accept-Encoding: gzip,deflate,sdch","Accept-Language: en-US,en;q=0.8","Cookie: PREF=ID=c8ae0fd9a35b560a:U=13a3a6adb0b5baae:FF=0:TM=1415298911:LM=1415298911:S=6_qwKnH9qWTEeuXk; NID=67=Ue_d0qHMhmOdhZ9A50DYfvJhQQK0WV2c_RfwRbKG_3tCN8L0CV7FpvqilrK7El69DX146S0_ZqFG02sKFXcT-lgtI9XtRP1fWtZhQ15VPcdvLLjuUjMt1_Dt9d1C9gfk"],"response":["HTTP\/1.1 302 Found","Location: https:\/\/www.google.com\/?gws_rd=ssl","Cache-Control: private","Content-Type: text\/html; charset=UTF-8","Date: Thu, 06 Nov 2014 18:35:23 GMT","Server: gws","Content-Length: 231","X-XSS-Protection: 1; mode=block","X-Frame-Options: SAMEORIGIN","Alternate-Protocol: 80:quic,p=0.01"]},"index":0,"number":1},{"method":"GET","host":"www.google.com","url":"\/?gws_rd=ssl","responseCode":"200","load_ms":"267","ttfb_ms":"205","load_start":"213","bytesOut":"254","bytesIn":"52844","objectSize":"0","expires":"-1","cacheControl":"private, max-age=0","contentType":"text\/html","contentEncoding":"gzip","type":"3","socket":"155","score_cache":"-1","score_cdn":"-1","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":0,"connect_ms":0,"ssl_ms":0,"gzip_total":"280","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"-1","cdn_provider":"Google","dns_start":"199","dns_end":"199","connect_start":"199","connect_end":"199","ssl_start":"199","ssl_end":"199","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/?gws_rd=ssl","score_progressive_jpeg":-1,"load_end":480,"ttfb_start":"213","ttfb_end":418,"download_start":418,"download_end":480,"download_ms":62,"all_start":"213","all_end":480,"all_ms":"267","headers":{"request":["GET \/?gws_rd=ssl HTTP\/1.1","Host: www.google.com","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 05225A0A-144B-44A2-A94B-364C8B987AB1"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=0","content-encoding: gzip","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:35:23 GMT","expires: -1","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":1,"number":2},{"method":"GET","host":"www.google.com","url":"\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=a79bVPW5FZPnoAS_rYIY&e=3700261,4011550,4011551,4011557,4011558,4011559,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021341,4021532,4021597,4022074,4022318,4022495,4022688,4023367,4023566,4023709,4023972,4023979,4024625,4024691,4024905,4024932,8500272,8500394,8500699,8500755,10200083,10200716,10200744,10200766&atyp=csi&adh=&xjs=init.71.28.sb.42.p.12.spch.6.imap.2.m.2&action=&srt=503&p=s&npn=1&rt=xjsls.25,prt.26,xjses.186,xjsee.330,xjs.378,ol.594,iml.127,wsrt.503,cst.0,dnst.0,rqst.268,rspt.62","responseCode":"204","load_ms":"110","ttfb_ms":"109","load_start":"1130","bytesOut":"871","bytesIn":"251","objectSize":"0","contentType":"text\/html","type":"3","socket":"155","score_cache":"0","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=a79bVPW5FZPnoAS_rYIY&e=3700261,4011550,4011551,4011557,4011558,4011559,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021341,4021532,4021597,4022074,4022318,4022495,4022688,4023367,4023566,4023709,4023972,4023979,4024625,4024691,4024905,4024932,8500272,8500394,8500699,8500755,10200083,10200716,10200744,10200766&atyp=csi&adh=&xjs=init.71.28.sb.42.p.12.spch.6.imap.2.m.2&action=&srt=503&p=s&npn=1&rt=xjsls.25,prt.26,xjses.186,xjsee.330,xjs.378,ol.594,iml.127,wsrt.503,cst.0,dnst.0,rqst.268,rspt.62","score_progressive_jpeg":-1,"load_end":1240,"ttfb_start":"1130","ttfb_end":1239,"download_start":1239,"download_end":1240,"download_ms":1,"all_start":"1130","all_end":1240,"all_ms":"110","headers":{"request":["GET \/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=a79bVPW5FZPnoAS_rYIY&e=3700261,4011550,4011551,4011557,4011558,4011559,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021341,4021532,4021597,4022074,4022318,4022495,4022688,4023367,4023566,4023709,4023972,4023979,4024625,4024691,4024905,4024932,8500272,8500394,8500699,8500755,10200083,10200716,10200744,10200766&atyp=csi&adh=&xjs=init.71.28.sb.42.p.12.spch.6.imap.2.m.2&action=&srt=503&p=s&npn=1&rt=xjsls.25,prt.26,xjses.186,xjsee.330,xjs.378,ol.594,iml.127,wsrt.503,cst.0,dnst.0,rqst.268,rspt.62 HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 05225A0A-144B-44A2-A94B-364C8B987AB1"],"response":["HTTP\/1.1 204 No Content","alternate-protocol: 443:quic,p=0.01","content-length: 0","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:35:24 GMT","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":2,"number":3}],"requestsDoc":2,"responses_200":1,"responses_404":0,"responses_other":1,"result":0,"render":693,"fullyLoaded":1240,"cached":1,"docTime":1103,"domTime":0,"score_cache":0,"score_cdn":-1,"score_gzip":100,"score_cookies":-1,"score_keep-alive":100,"score_minify":-1,"score_combine":100,"score_compress":-1,"score_etags":-1,"gzip_total":280,"gzip_savings":0,"minify_total":0,"minify_savings":0,"image_total":0,"image_savings":0,"optimization_checked":1,"aft":0,"domElements":288,"pageSpeedVersion":"1.9","title":"Google","titleTime":691,"loadEventStart":1090,"loadEventEnd":1100,"domContentLoadedEventStart":529,"domContentLoadedEventEnd":572,"lastVisualChange":0,"browser_name":"Google Chrome","browser_version":"38.0.2125.111","server_count":5,"server_rtt":0,"base_page_cdn":"Google","adult_site":0,"fixed_viewport":0,"score_progressive_jpeg":-1,"firstPaint":609,"docCPUms":982.806,"fullyLoadedCPUms":1092.007,"docCPUpct":87,"fullyLoadedCPUpct":33,"isResponsive":-1,"date":1415298686,"CSI":["v","s","imc","imn","imp","ei","e","atyp","adh","xjs","action","srt","p","npn","rt","xjsls","prt","xjses","xjsee","ol","iml","wsrt","cst","dnst","rqst","rspt"],"CSI.v":3,"CSI.s":"webhp","CSI.imc":1,"CSI.imn":1,"CSI.imp":1,"CSI.ei":"a79bVPW5FZPnoAS_rYIY","CSI.e":"3700261,4011550,4011551,4011557,4011558,4011559,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021341,4021532,4021597,4022074,4022318,4022495,4022688,4023367,4023566,4023709,4023972,4023979,4024625,4024691,4024905,4024932,8500272,8500394,8500699,8500755,10200083,10200716,10200744,10200766","CSI.atyp":"csi","CSI.adh":"","CSI.xjs":378,"CSI.action":"","CSI.srt":503,"CSI.p":"s","CSI.npn":1,"CSI.rt":"xjsls.25,prt.26,xjses.186,xjsee.330,xjs.378,ol.594,iml.127,wsrt.503,cst.0,dnst.0,rqst.268,rspt.62","CSI.xjsls":25,"CSI.prt":26,"CSI.xjses":186,"CSI.xjsee":330,"CSI.ol":594,"CSI.iml":127,"CSI.wsrt":503,"CSI.cst":0,"CSI.dnst":0,"CSI.rqst":268,"CSI.rspt":62,"SpeedIndex":0,"visualComplete":0,"run":3,"effectiveBps":104026,"effectiveBpsDoc":124646,"tester":"IE9103-192.168.101.93","pages":{"details":"http:\/\/www.webpagetest.org\/details.php?test=141106_TM_ZFM&run=3&cached=1","checklist":"http:\/\/www.webpagetest.org\/performance_optimization.php?test=141106_TM_ZFM&run=3&cached=1","breakdown":"http:\/\/www.webpagetest.org\/breakdown.php?test=141106_TM_ZFM&run=3&cached=1","domains":"http:\/\/www.webpagetest.org\/domains.php?test=141106_TM_ZFM&run=3&cached=1","screenShot":"http:\/\/www.webpagetest.org\/screen_shot.php?test=141106_TM_ZFM&run=3&cached=1"},"thumbnails":{"waterfall":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/3_Cached_waterfall_thumb.png","checklist":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/3_Cached_optimization_thumb.png","screenShot":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/3_Cached_screen_thumb.png"},"images":{"waterfall":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/3_Cached_waterfall.png","connectionView":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/3_Cached_connection.png","checklist":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/3_Cached_optimization.png","screenShot":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/3_Cached_screen.jpg"},"rawData":{"headers":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/3_Cached_report.txt","pageData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/3_Cached_IEWPG.txt","requestsData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/3_Cached_IEWTR.txt","utilization":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/3_Cached_progress.csv"},"videoFrames":[{"time":0,"image":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/video_3_cached\/frame_0000.jpg","VisuallyComplete":100}],"domains":{"moc.elgoog.www":{"bytes":53627,"requests":3,"connections":2}},"breakdown":{"html":{"color":[130,181,252],"bytes":53627,"requests":3},"js":{"color":[254,197,132],"bytes":0,"requests":0},"css":{"color":[178,234,148],"bytes":0,"requests":0},"image":{"color":[196,154,232],"bytes":0,"requests":0},"flash":{"color":[45,183,193],"bytes":0,"requests":0},"font":{"color":[255,82,62],"bytes":0,"requests":0},"other":{"color":[196,196,196],"bytes":0,"requests":0}}}}},"fvonly":false,"successfulFVRuns":3,"successfulRVRuns":3,"average":{"firstView":{"loadTime":2153,"TTFB":596.33333333333,"bytesOut":7487.6666666667,"bytesOutDoc":6613,"bytesIn":405286,"bytesInDoc":387365.33333333,"connections":4.6666666666667,"requests":12,"requestsDoc":10,"responses_200":10,"responses_404":0,"responses_other":1,"result":0,"render":957.33333333333,"fullyLoaded":2312.3333333333,"cached":0,"docTime":2153,"domTime":0,"score_cache":63,"score_cdn":77,"score_gzip":100,"score_cookies":-1,"score_keep-alive":100,"score_minify":-1,"score_combine":100,"score_compress":-1,"score_etags":-1,"gzip_total":2934.6666666667,"gzip_savings":0,"minify_total":0,"minify_savings":0,"image_total":0,"image_savings":0,"optimization_checked":1,"aft":0,"domElements":288,"pageSpeedVersion":1.9,"titleTime":956.66666666667,"loadEventStart":2140.6666666667,"loadEventEnd":2148.6666666667,"domContentLoadedEventStart":764.66666666667,"domContentLoadedEventEnd":820.66666666667,"lastVisualChange":0,"server_count":5,"server_rtt":0,"adult_site":0,"fixed_viewport":0,"score_progressive_jpeg":-1,"firstPaint":249,"docCPUms":1565.2103333333,"fullyLoadedCPUms":1996.8126666667,"docCPUpct":71.333333333333,"fullyLoadedCPUpct":45,"isResponsive":-1,"date":1415298749.6667,"CSI.v":3,"CSI.imc":1,"CSI.imn":1,"CSI.imp":1,"CSI.xjs":863,"CSI.srt":3254,"CSI.npn":1,"CSI.xjsls":37.666666666667,"CSI.prt":38.666666666667,"CSI.xjses":621,"CSI.xjsee":821.33333333333,"CSI.ol":1419.3333333333,"CSI.iml":778,"CSI.wsrt":725.66666666667,"CSI.cst":150,"CSI.dnst":0,"CSI.rqst":345.66666666667,"CSI.rspt":97.333333333333,"SpeedIndex":0,"visualComplete":0,"run":2,"effectiveBps":242137,"effectiveBpsDoc":254696,"avgRun":1},"repeatView":{"loadTime":1275.6666666667,"TTFB":460.33333333333,"bytesOut":9298.3333333333,"bytesOutDoc":8738.3333333333,"bytesIn":85517.666666667,"bytesInDoc":85390.666666667,"connections":2,"requests":3,"requestsDoc":2,"responses_200":1,"responses_404":0,"responses_other":1,"result":0,"render":793.33333333333,"fullyLoaded":1413.3333333333,"cached":1,"docTime":1275.6666666667,"domTime":0,"score_cache":0,"score_cdn":-1,"score_gzip":100,"score_cookies":-1,"score_keep-alive":100,"score_minify":-1,"score_combine":100,"score_compress":-1,"score_etags":-1,"gzip_total":280,"gzip_savings":0,"minify_total":0,"minify_savings":0,"image_total":0,"image_savings":0,"optimization_checked":1,"aft":0,"domElements":288,"pageSpeedVersion":1.9,"titleTime":691.33333333333,"loadEventStart":1263.6666666667,"loadEventEnd":1280.3333333333,"domContentLoadedEventStart":601.66666666667,"domContentLoadedEventEnd":649.66666666667,"lastVisualChange":0,"server_count":5,"server_rtt":0,"adult_site":0,"fixed_viewport":0,"score_progressive_jpeg":-1,"firstPaint":203,"docCPUms":1138.8073333333,"fullyLoadedCPUms":1482.0096666667,"docCPUpct":88,"fullyLoadedCPUpct":41.666666666667,"isResponsive":-1,"date":1415298762,"CSI.v":3,"CSI.imc":1,"CSI.imn":1,"CSI.imp":1,"CSI.xjs":450.33333333333,"CSI.srt":3096,"CSI.npn":1,"CSI.xjsls":36,"CSI.prt":37.333333333333,"CSI.xjses":229,"CSI.xjsee":406.66666666667,"CSI.ol":711,"CSI.iml":155,"CSI.wsrt":564,"CSI.cst":37.333333333333,"CSI.dnst":0,"CSI.rqst":274.33333333333,"CSI.rspt":76.333333333333,"SpeedIndex":0,"visualComplete":0,"run":2,"effectiveBps":90711.333333333,"effectiveBpsDoc":106299,"avgRun":1}},"standardDeviation":{"firstView":{"loadTime":225,"TTFB":108,"bytesOut":338,"bytesOutDoc":330,"bytesIn":2094,"bytesInDoc":2086,"connections":0,"requests":0,"requestsDoc":0,"responses_200":0,"responses_404":0,"responses_other":0,"result":0,"render":125,"fullyLoaded":256,"cached":0,"docTime":225,"domTime":0,"score_cache":0,"score_cdn":0,"score_gzip":0,"score_cookies":0,"score_keep-alive":0,"score_minify":0,"score_combine":0,"score_compress":0,"score_etags":0,"gzip_total":0,"gzip_savings":0,"minify_total":0,"minify_savings":0,"image_total":0,"image_savings":0,"optimization_checked":0,"aft":0,"domElements":0,"pageSpeedVersion":0,"titleTime":98,"loadEventStart":225,"loadEventEnd":227,"domContentLoadedEventStart":93,"domContentLoadedEventEnd":95,"lastVisualChange":0,"server_count":0,"server_rtt":0,"adult_site":0,"fixed_viewport":0,"score_progressive_jpeg":0,"firstPaint":352,"docCPUms":313,"fullyLoadedCPUms":480,"docCPUpct":7,"fullyLoadedCPUpct":8,"isResponsive":0,"date":106,"CSI.v":0,"CSI.imc":0,"CSI.imn":0,"CSI.imp":0,"CSI.xjs":142,"CSI.srt":1925,"CSI.npn":0,"CSI.xjsls":11,"CSI.prt":11,"CSI.xjses":106,"CSI.xjsee":149,"CSI.ol":217,"CSI.iml":431,"CSI.wsrt":94,"CSI.cst":9,"CSI.dnst":0,"CSI.rqst":81,"CSI.rspt":19,"SpeedIndex":0,"visualComplete":0,"run":0,"effectiveBps":36954,"effectiveBpsDoc":37681,"avgRun":null},"repeatView":{"loadTime":122,"TTFB":35,"bytesOut":11,"bytesOutDoc":2,"bytesIn":29,"bytesInDoc":29,"connections":0,"requests":0,"requestsDoc":0,"responses_200":0,"responses_404":0,"responses_other":0,"result":0,"render":82,"fullyLoaded":122,"cached":0,"docTime":122,"domTime":0,"score_cache":0,"score_cdn":0,"score_gzip":0,"score_cookies":0,"score_keep-alive":0,"score_minify":0,"score_combine":0,"score_compress":0,"score_etags":0,"gzip_total":0,"gzip_savings":0,"minify_total":0,"minify_savings":0,"image_total":0,"image_savings":0,"optimization_checked":0,"aft":0,"domElements":0,"pageSpeedVersion":0,"titleTime":0,"loadEventStart":122,"loadEventEnd":127,"domContentLoadedEventStart":51,"domContentLoadedEventEnd":55,"lastVisualChange":0,"server_count":0,"server_rtt":0,"adult_site":0,"fixed_viewport":0,"score_progressive_jpeg":0,"firstPaint":287,"docCPUms":113,"fullyLoadedCPUms":277,"docCPUpct":1,"fullyLoadedCPUpct":6,"isResponsive":0,"date":106,"CSI.v":0,"CSI.imc":0,"CSI.imn":0,"CSI.imp":0,"CSI.xjs":52,"CSI.srt":1932,"CSI.npn":0,"CSI.xjsls":8,"CSI.prt":8,"CSI.xjses":32,"CSI.xjsee":57,"CSI.ol":82,"CSI.iml":19,"CSI.wsrt":43,"CSI.cst":26,"CSI.dnst":0,"CSI.rqst":11,"CSI.rspt":12,"SpeedIndex":0,"visualComplete":0,"run":0,"effectiveBps":9672,"effectiveBpsDoc":13326,"avgRun":null}},"median":{"firstView":{"URL":"http:\/\/www.google.com","loadTime":1859,"TTFB":527,"bytesOut":7732,"bytesOutDoc":6849,"bytesIn":406795,"bytesInDoc":388881,"connections":5,"requests":[{"ip_addr":"74.125.225.80","method":"GET","host":"www.google.com","url":"\/","responseCode":"302","load_ms":"118","ttfb_ms":"118","load_start":"51","bytesOut":"342","bytesIn":"1044","objectSize":"231","cacheControl":"private","contentType":"text\/html","type":"3","socket":"21","score_cache":"0","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"0","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"50","ssl_start":"0","ssl_end":"0","server_count":"5","server_rtt":"50","client_port":"57503","jpeg_scan_count":"0","full_url":"http:\/\/www.google.com\/","score_progressive_jpeg":-1,"load_end":169,"ttfb_start":"51","ttfb_end":169,"download_start":169,"download_end":169,"download_ms":0,"all_start":"51","all_end":169,"all_ms":"118","headers":{"request":["GET \/ HTTP\/1.1","Host: www.google.com","Connection: keep-alive","Accept: text\/html,application\/xhtml+xml,application\/xml;q=0.9,image\/webp,*\/*;q=0.8","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36 PTST\/191","Accept-Encoding: gzip,deflate,sdch","Accept-Language: en-US,en;q=0.8"],"response":["HTTP\/1.1 302 Found","Location: https:\/\/www.google.com\/?gws_rd=ssl","Cache-Control: private","Content-Type: text\/html; charset=UTF-8","Set-Cookie: PREF=ID=c8ae0fd9a35b560a:FF=0:TM=1415298911:LM=1415298911:S=wGBHegrYkFIl74OM; expires=Sat, 05-Nov-2016 18:35:11 GMT; path=\/; domain=.google.com","Set-Cookie: NID=67=A8rzWOkZhV5ph-wUG0ek5x-MFtIRDWOSW0DZYZy6dEV1D64v0M7VJTy8w_P4IB5OQNncxH3kkpmAskYeeLkP2oojzK796UCb3uS2cjlc3xQnx-PoH7WcYIwKFzjF_j6Z; expires=Fri, 08-May-2015 18:35:11 GMT; path=\/; domain=.google.com; HttpOnly","P3P: CP=\"This is not a P3P policy! See http:\/\/www.google.com\/support\/accounts\/bin\/answer.py?hl=en&answer=151657 for more info.\"","Date: Thu, 06 Nov 2014 18:35:11 GMT","Server: gws","Content-Length: 231","X-XSS-Protection: 1; mode=block","X-Frame-Options: SAMEORIGIN","Alternate-Protocol: 80:quic,p=0.01"]},"index":0,"number":1},{"method":"GET","host":"www.google.com","url":"\/?gws_rd=ssl","responseCode":"200","load_ms":"272","ttfb_ms":"181","load_start":"346","bytesOut":"254","bytesIn":"59402","objectSize":"0","expires":"-1","cacheControl":"private, max-age=0","contentType":"text\/html","contentEncoding":"gzip","type":"3","socket":"233","score_cache":"-1","score_cdn":"-1","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":0,"connect_ms":48,"ssl_ms":99,"gzip_total":"799","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"-1","cdn_provider":"Google","dns_start":"199","dns_end":"199","connect_start":"199","connect_end":"247","ssl_start":"247","ssl_end":"346","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/?gws_rd=ssl","score_progressive_jpeg":-1,"load_end":618,"ttfb_start":"346","ttfb_end":527,"download_start":527,"download_end":618,"download_ms":91,"all_start":"199","all_end":618,"all_ms":419,"headers":{"request":["GET \/?gws_rd=ssl HTTP\/1.1","Host: www.google.com","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=0","content-encoding: gzip","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:35:11 GMT","expires: -1","p3p: CP=\"This is not a P3P policy! See http:\/\/www.google.com\/support\/accounts\/bin\/answer.py?hl=en&answer=151657 for more info.\"","server: gws","set-cookie: PREF=ID=c8ae0fd9a35b560a:U=13a3a6adb0b5baae:FF=0:TM=1415298911:LM=1415298911:S=6_qwKnH9qWTEeuXk; expires=Sat, 05-Nov-2016 18:35:11 GMT; path=\/; domain=.google.com","NID=67=Ue_d0qHMhmOdhZ9A50DYfvJhQQK0WV2c_RfwRbKG_3tCN8L0CV7FpvqilrK7El69DX146S0_ZqFG02sKFXcT-lgtI9XtRP1fWtZhQ15VPcdvLLjuUjMt1_Dt9d1C9gfk; expires=Fri, 08-May-2015 18:35:11 GMT; path=\/; domain=.google.com; HttpOnly","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":1,"number":2},{"method":"GET","host":"www.google.com","url":"\/images\/srpr\/logo11w.png","responseCode":"200","load_ms":"572","ttfb_ms":"571","load_start":"815","bytesOut":"330","bytesIn":"14111","objectSize":"0","expires":"Thu, 06 Nov 2014 18:35:12 GMT","cacheControl":"private, max-age=31536000","contentType":"image\/png","type":"3","socket":"233","score_cache":"0","score_cdn":"100","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/?gws_rd=ssl","initiator_line":"28","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/images\/srpr\/logo11w.png","score_progressive_jpeg":-1,"load_end":1387,"ttfb_start":"815","ttfb_end":1386,"download_start":1386,"download_end":1387,"download_ms":1,"all_start":"815","all_end":1387,"all_ms":"572","headers":{"request":["GET \/images\/srpr\/logo11w.png HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=31536000","content-length: 14022","content-type: image\/png","date: Thu, 06 Nov 2014 18:35:12 GMT","expires: Thu, 06 Nov 2014 18:35:12 GMT","last-modified: Wed, 09 Oct 2013 01:35:39 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":2,"number":3},{"method":"GET","host":"ssl.gstatic.com","url":"\/gb\/images\/i1_71651352.png","responseCode":"200","load_ms":"77","ttfb_ms":"42","load_start":"881","bytesOut":"333","bytesIn":"14285","objectSize":"0","expires":"Thu, 05 Nov 2015 15:23:35 GMT","cacheControl":"public, max-age=31536000","contentType":"image\/png","type":"3","socket":"315","score_cache":"100","score_cdn":"0","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":0,"connect_ms":39,"ssl_ms":89,"gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","dns_start":"752","dns_end":"752","connect_start":"752","connect_end":"791","ssl_start":"791","ssl_end":"880","initiator":"https:\/\/www.google.com\/?gws_rd=ssl","initiator_line":"76","initiator_column":"35","server_count":"4","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/ssl.gstatic.com\/gb\/images\/i1_71651352.png","score_progressive_jpeg":-1,"load_end":958,"ttfb_start":"881","ttfb_end":923,"download_start":923,"download_end":958,"download_ms":35,"all_start":"752","all_end":958,"all_ms":205,"headers":{"request":["GET \/gb\/images\/i1_71651352.png HTTP\/1.1","Host: ssl.gstatic.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF"],"response":["HTTP\/1.1 200 OK","age: 97897","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-length: 14055","content-type: image\/png","date: Wed, 05 Nov 2014 15:23:35 GMT","expires: Thu, 05 Nov 2015 15:23:35 GMT","last-modified: Thu, 16 Oct 2014 18:20:30 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":3,"number":4},{"method":"GET","host":"www.google.com","url":"\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","responseCode":"200","load_ms":"333","ttfb_ms":"54","load_start":"884","bytesOut":"443","bytesIn":"233315","objectSize":"0","expires":"Fri, 06 Nov 2015 11:13:26 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"233","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"429","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/?gws_rd=ssl","initiator_line":"94","initiator_column":"17237","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","score_progressive_jpeg":-1,"load_end":1217,"ttfb_start":"884","ttfb_end":938,"download_start":938,"download_end":1217,"download_ms":279,"all_start":"884","all_end":1217,"all_ms":"333","headers":{"request":["GET \/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP\/1.1","Host: www.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF"],"response":["HTTP\/1.1 200 OK","age: 26506","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 130931","content-type: text\/javascript; charset=UTF-8","date: Thu, 06 Nov 2014 11:13:26 GMT","expires: Fri, 06 Nov 2015 11:13:26 GMT","last-modified: Tue, 04 Nov 2014 19:30:26 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":4,"number":5},{"method":"GET","host":"www.gstatic.com","url":"\/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w","responseCode":"200","load_ms":"247","ttfb_ms":"245","load_start":"1073","bytesOut":"392","bytesIn":"184146","objectSize":"0","expires":"Thu, 05 Nov 2015 13:04:24 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"339","score_cache":"100","score_cdn":"0","score_gzip":"100","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":32,"connect_ms":40,"ssl_ms":82,"gzip_total":"429","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","dns_start":"918","dns_end":"950","connect_start":"950","connect_end":"990","ssl_start":"990","ssl_end":"1072","initiator":"https:\/\/www.google.com\/?gws_rd=ssl","initiator_line":"57","initiator_column":"143","server_count":"4","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.gstatic.com\/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w","score_progressive_jpeg":-1,"load_end":1320,"ttfb_start":"1073","ttfb_end":1318,"download_start":1318,"download_end":1320,"download_ms":2,"all_start":"918","all_end":1320,"all_ms":401,"headers":{"request":["GET \/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w HTTP\/1.1","Host: www.gstatic.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF"],"response":["HTTP\/1.1 200 OK","age: 106248","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 55207","content-type: text\/javascript; charset=UTF-8","date: Wed, 05 Nov 2014 13:04:24 GMT","expires: Thu, 05 Nov 2015 13:04:24 GMT","last-modified: Tue, 04 Nov 2014 01:19:09 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":5,"number":6},{"method":"GET","host":"www.google.com","url":"\/extern_chrome\/854094c746d4c9a.js?bav=on.2,or.r_qf.","responseCode":"200","load_ms":"170","ttfb_ms":"168","load_start":"1316","bytesOut":"340","bytesIn":"36559","objectSize":"0","expires":"Thu, 05 Nov 2015 00:00:00 GMT","cacheControl":"private","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"233","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"422","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31382688","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","initiator_line":"1187","initiator_column":"181","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/extern_chrome\/854094c746d4c9a.js?bav=on.2,or.r_qf.","score_progressive_jpeg":-1,"load_end":1486,"ttfb_start":"1316","ttfb_end":1484,"download_start":1484,"download_end":1486,"download_ms":2,"all_start":"1316","all_end":1486,"all_ms":"170","headers":{"request":["GET \/extern_chrome\/854094c746d4c9a.js?bav=on.2,or.r_qf. HTTP\/1.1","Host: www.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private","content-disposition: attachment; filename=\"f.txt\"","content-encoding: gzip","content-length: 13825","content-type: text\/javascript; charset=UTF-8","date: Thu, 06 Nov 2014 18:35:12 GMT","expires: Thu, 05 Nov 2015 00:00:00 GMT","last-modified: Thu, 07 Nov 2013 00:00:00 GMT","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":6,"number":7},{"method":"GET","host":"www.google.com","url":"\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=0\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","responseCode":"200","load_ms":"121","ttfb_ms":"51","load_start":"1483","bytesOut":"682","bytesIn":"52270","objectSize":"0","expires":"Fri, 06 Nov 2015 12:08:37 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"233","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"428","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sx,c,sb,cr,elog,jsa,r,hsm,j,p,pcc,csi\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=1\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","initiator_line":"101","initiator_column":"112","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=0\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA","score_progressive_jpeg":-1,"load_end":1604,"ttfb_start":"1483","ttfb_end":1534,"download_start":1534,"download_end":1604,"download_ms":70,"all_start":"1483","all_end":1604,"all_ms":"121","headers":{"request":["GET \/xjs\/_\/js\/k=xjs.s.en_US.qPzuXFzcESQ.O\/m=sy9,abd,sy195,adp,sy66,sy67,async,sy37,cdos,erh,sy68,foot,fpe,sy174,hv,idck,ifl,sy84,sy118,sy117,imap,lc,sy87,sy302,sy303,lrct,sy233,lu,sy348,m,sf,sy94,sy93,sy92,sy131,sy144,sy95,sy132,sy105,sy145,sy146,sy148,sy113,sy133,sy201,sy101,sy106,sy143,sy150,sy199,sy200,sy198,spch,vm\/am=lKj_TwWDwIxAARMQrA4\/rt=j\/d=0\/t=zcms\/rs=ACT90oHupORnO3LJHBAkI7YAbVJ1rmU8OA HTTP\/1.1","Host: www.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF"],"response":["HTTP\/1.1 200 OK","age: 23195","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 48157","content-type: text\/javascript; charset=UTF-8","date: Thu, 06 Nov 2014 12:08:37 GMT","expires: Fri, 06 Nov 2015 12:08:37 GMT","last-modified: Tue, 04 Nov 2014 19:30:26 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":7,"number":8},{"method":"GET","host":"www.google.com","url":"\/textinputassistant\/tia.png","responseCode":"200","load_ms":"200","ttfb_ms":"199","load_start":"1484","bytesOut":"333","bytesIn":"481","objectSize":"0","expires":"Thu, 05 Nov 2015 06:57:32 GMT","cacheControl":"public, max-age=31536000","contentType":"image\/png","type":"3","socket":"233","score_cache":"100","score_cdn":"100","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","initiator":"https:\/\/www.google.com\/?gws_rd=ssl","initiator_line":"1","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/textinputassistant\/tia.png","score_progressive_jpeg":-1,"load_end":1684,"ttfb_start":"1484","ttfb_end":1683,"download_start":1683,"download_end":1684,"download_ms":1,"all_start":"1484","all_end":1684,"all_ms":"200","headers":{"request":["GET \/textinputassistant\/tia.png HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF"],"response":["HTTP\/1.1 200 OK","age: 128260","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-length: 387","content-type: image\/png","date: Wed, 05 Nov 2014 06:57:32 GMT","expires: Thu, 05 Nov 2015 06:57:32 GMT","last-modified: Mon, 02 Apr 2012 02:13:37 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":8,"number":9},{"method":"GET","host":"apis.google.com","url":"\/_\/scs\/abc-static\/_\/js\/k=gapi.gapi.en.3_mJ9Wvc9FU.O\/m=gapi_iframes,googleapis_client,plusone\/rt=j\/sv=1\/d=1\/ed=1\/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg\/cb=gapi.loaded_0","responseCode":"200","load_ms":"114","ttfb_ms":"46","load_start":"1665","bytesOut":"456","bytesIn":"49927","objectSize":"0","expires":"Thu, 05 Nov 2015 15:23:35 GMT","cacheControl":"public, max-age=31536000","contentType":"text\/javascript","contentEncoding":"gzip","type":"3","socket":"434","score_cache":"100","score_cdn":"100","score_gzip":"100","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":34,"connect_ms":40,"ssl_ms":74,"gzip_total":"428","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"31536000","cdn_provider":"Google","dns_start":"1517","dns_end":"1551","connect_start":"1551","connect_end":"1591","ssl_start":"1591","ssl_end":"1665","initiator":"https:\/\/www.gstatic.com\/og\/_\/js\/k=og.og2.en_US.5iiIdIiN4rc.O\/rt=j\/m=sy0,sy2,sy4,sy9,def\/rs=AItRSTO15owAcNqlvIuGBQd8SJPdBIe15w","initiator_line":"138","initiator_column":"381","server_count":"11","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/apis.google.com\/_\/scs\/abc-static\/_\/js\/k=gapi.gapi.en.3_mJ9Wvc9FU.O\/m=gapi_iframes,googleapis_client,plusone\/rt=j\/sv=1\/d=1\/ed=1\/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg\/cb=gapi.loaded_0","score_progressive_jpeg":-1,"load_end":1779,"ttfb_start":"1665","ttfb_end":1711,"download_start":1711,"download_end":1779,"download_ms":68,"all_start":"1517","all_end":1779,"all_ms":262,"headers":{"request":["GET \/_\/scs\/abc-static\/_\/js\/k=gapi.gapi.en.3_mJ9Wvc9FU.O\/m=gapi_iframes,googleapis_client,plusone\/rt=j\/sv=1\/d=1\/ed=1\/rs=AItRSTPLYqq5loOR9078NjrWstRw2XtJlg\/cb=gapi.loaded_0 HTTP\/1.1","Host: apis.google.com","Accept: *\/*","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF"],"response":["HTTP\/1.1 200 OK","age: 97898","alternate-protocol: 443:quic,p=0.01","cache-control: public, max-age=31536000","content-encoding: gzip","content-length: 48911","content-type: text\/javascript; charset=UTF-8","date: Wed, 05 Nov 2014 15:23:35 GMT","expires: Thu, 05 Nov 2015 15:23:35 GMT","last-modified: Thu, 16 Oct 2014 07:30:29 GMT","server: sffe","vary: Accept-Encoding","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":9,"number":10},{"method":"GET","host":"www.google.com","url":"\/images\/nav_logo195.png","responseCode":"200","load_ms":"84","ttfb_ms":"68","load_start":"1874","bytesOut":"329","bytesIn":"16300","objectSize":"0","expires":"Thu, 06 Nov 2014 18:35:13 GMT","cacheControl":"private, max-age=31536000","contentType":"image\/png","type":"3","socket":"233","score_cache":"0","score_cdn":"100","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/images\/nav_logo195.png","score_progressive_jpeg":-1,"load_end":1958,"ttfb_start":"1874","ttfb_end":1942,"download_start":1942,"download_end":1958,"download_ms":16,"all_start":"1874","all_end":1958,"all_ms":"84","headers":{"request":["GET \/images\/nav_logo195.png HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=31536000","content-length: 16214","content-type: image\/png","date: Thu, 06 Nov 2014 18:35:13 GMT","expires: Thu, 06 Nov 2014 18:35:13 GMT","last-modified: Wed, 21 May 2014 00:02:44 GMT","server: sffe","x-content-type-options: nosniff","x-xss-protection: 1; mode=block"]},"index":10,"number":11},{"method":"GET","host":"www.google.com","url":"\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=X79bVJ_KLYi2oQSrr4DwDA&e=3700261,4011550,4011551,4011557,4011558,4011559,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021341,4021532,4021597,4022074,4022318,4022495,4022688,4023367,4023566,4023709,4023972,4023979,4024625,4024691,4024905,4024932,8500272,8500394,8500699,8500755,10200083,10200716,10200744,10200766&atyp=csi&adh=&xjs=init.119.28.sb.65.m.28.p.12.spch.6.foot.1&action=&srt=642&p=s&npn=1&rt=xjsls.26,prt.27,xjses.520,xjsee.706,xjs.760,ol.1207,iml.761,wsrt.642,cst.146,dnst.0,rqst.272,rspt.91","responseCode":"204","load_ms":"111","ttfb_ms":"110","load_start":"1876","bytesOut":"878","bytesIn":"251","objectSize":"0","contentType":"text\/html","type":"3","socket":"233","score_cache":"0","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=X79bVJ_KLYi2oQSrr4DwDA&e=3700261,4011550,4011551,4011557,4011558,4011559,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021341,4021532,4021597,4022074,4022318,4022495,4022688,4023367,4023566,4023709,4023972,4023979,4024625,4024691,4024905,4024932,8500272,8500394,8500699,8500755,10200083,10200716,10200744,10200766&atyp=csi&adh=&xjs=init.119.28.sb.65.m.28.p.12.spch.6.foot.1&action=&srt=642&p=s&npn=1&rt=xjsls.26,prt.27,xjses.520,xjsee.706,xjs.760,ol.1207,iml.761,wsrt.642,cst.146,dnst.0,rqst.272,rspt.91","score_progressive_jpeg":-1,"load_end":1987,"ttfb_start":"1876","ttfb_end":1986,"download_start":1986,"download_end":1987,"download_ms":1,"all_start":"1876","all_end":1987,"all_ms":"111","headers":{"request":["GET \/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=X79bVJ_KLYi2oQSrr4DwDA&e=3700261,4011550,4011551,4011557,4011558,4011559,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021341,4021532,4021597,4022074,4022318,4022495,4022688,4023367,4023566,4023709,4023972,4023979,4024625,4024691,4024905,4024932,8500272,8500394,8500699,8500755,10200083,10200716,10200744,10200766&atyp=csi&adh=&xjs=init.119.28.sb.65.m.28.p.12.spch.6.foot.1&action=&srt=642&p=s&npn=1&rt=xjsls.26,prt.27,xjses.520,xjsee.706,xjs.760,ol.1207,iml.761,wsrt.642,cst.146,dnst.0,rqst.272,rspt.91 HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: 2104C6AA-B20B-44D6-ADCC-B85F1BFA85FF"],"response":["HTTP\/1.1 204 No Content","alternate-protocol: 443:quic,p=0.01","content-length: 0","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:35:13 GMT","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":11,"number":12}],"requestsDoc":10,"responses_200":10,"responses_404":0,"responses_other":1,"result":0,"render":793,"fullyLoaded":1987,"cached":0,"docTime":1859,"domTime":0,"score_cache":63,"score_cdn":77,"score_gzip":100,"score_cookies":-1,"score_keep-alive":100,"score_minify":-1,"score_combine":100,"score_compress":-1,"score_etags":-1,"gzip_total":2935,"gzip_savings":0,"minify_total":0,"minify_savings":0,"image_total":0,"image_savings":0,"optimization_checked":1,"aft":0,"domElements":288,"pageSpeedVersion":"1.9","title":"Google","titleTime":891,"loadEventStart":1845,"loadEventEnd":1851,"domContentLoadedEventStart":669,"domContentLoadedEventEnd":714,"lastVisualChange":0,"browser_name":"Google Chrome","browser_version":"38.0.2125.111","server_count":5,"server_rtt":0,"base_page_cdn":"Google","adult_site":0,"fixed_viewport":0,"score_progressive_jpeg":-1,"firstPaint":747,"docCPUms":1201.208,"fullyLoadedCPUms":1372.809,"docCPUpct":64,"fullyLoadedCPUpct":34,"isResponsive":-1,"date":1415298674,"CSI":["v","s","imc","imn","imp","ei","e","atyp","adh","xjs","action","srt","p","npn","rt","xjsls","prt","xjses","xjsee","ol","iml","wsrt","cst","dnst","rqst","rspt"],"CSI.v":3,"CSI.s":"webhp","CSI.imc":1,"CSI.imn":1,"CSI.imp":1,"CSI.ei":"X79bVJ_KLYi2oQSrr4DwDA","CSI.e":"3700261,4011550,4011551,4011557,4011558,4011559,4016468,4016824,4017981,4019181,4020347,4020562,4020874,4020921,4021073,4021341,4021532,4021597,4022074,4022318,4022495,4022688,4023367,4023566,4023709,4023972,4023979,4024625,4024691,4024905,4024932,8500272,8500394,8500699,8500755,10200083,10200716,10200744,10200766","CSI.atyp":"csi","CSI.adh":"","CSI.xjs":760,"CSI.action":"","CSI.srt":642,"CSI.p":"s","CSI.npn":1,"CSI.rt":"xjsls.26,prt.27,xjses.520,xjsee.706,xjs.760,ol.1207,iml.761,wsrt.642,cst.146,dnst.0,rqst.272,rspt.91","CSI.xjsls":26,"CSI.prt":27,"CSI.xjses":520,"CSI.xjsee":706,"CSI.ol":1207,"CSI.iml":761,"CSI.wsrt":642,"CSI.cst":146,"CSI.dnst":0,"CSI.rqst":272,"CSI.rspt":91,"SpeedIndex":0,"visualComplete":0,"run":3,"effectiveBps":278626,"effectiveBpsDoc":291952,"tester":"IE9103-192.168.101.93","pages":{"details":"http:\/\/www.webpagetest.org\/details.php?test=141106_TM_ZFM&run=3&cached=0","checklist":"http:\/\/www.webpagetest.org\/performance_optimization.php?test=141106_TM_ZFM&run=3&cached=0","breakdown":"http:\/\/www.webpagetest.org\/breakdown.php?test=141106_TM_ZFM&run=3&cached=0","domains":"http:\/\/www.webpagetest.org\/domains.php?test=141106_TM_ZFM&run=3&cached=0","screenShot":"http:\/\/www.webpagetest.org\/screen_shot.php?test=141106_TM_ZFM&run=3&cached=0"},"thumbnails":{"waterfall":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/3_waterfall_thumb.png","checklist":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/3_optimization_thumb.png","screenShot":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/3_screen_thumb.png"},"images":{"waterfall":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/3_waterfall.png","connectionView":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/3_connection.png","checklist":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/3_optimization.png","screenShot":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/3_screen.jpg"},"rawData":{"headers":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/3_report.txt","pageData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/3_IEWPG.txt","requestsData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/3_IEWTR.txt","utilization":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/3_progress.csv"},"videoFrames":[{"time":0,"image":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/video_3\/frame_0000.jpg","VisuallyComplete":100}],"domains":{"moc.elgoog.www":{"bytes":413733,"requests":9,"connections":2},"moc.citatsg.lss":{"bytes":14285,"requests":1,"connections":1},"moc.citatsg.www":{"bytes":184146,"requests":1,"connections":1},"moc.elgoog.sipa":{"bytes":49927,"requests":1,"connections":1}},"breakdown":{"html":{"color":[130,181,252],"bytes":60697,"requests":3},"js":{"color":[254,197,132],"bytes":556217,"requests":5},"css":{"color":[178,234,148],"bytes":0,"requests":0},"image":{"color":[196,154,232],"bytes":45177,"requests":4},"flash":{"color":[45,183,193],"bytes":0,"requests":0},"font":{"color":[255,82,62],"bytes":0,"requests":0},"other":{"color":[196,196,196],"bytes":0,"requests":0}}},"repeatView":{"URL":"http:\/\/www.google.com","loadTime":1372,"TTFB":458,"bytesOut":9283,"bytesOutDoc":8735,"bytesIn":85486,"bytesInDoc":85359,"connections":2,"requests":[{"ip_addr":"74.125.225.80","method":"GET","host":"www.google.com","url":"\/","responseCode":"302","load_ms":"122","ttfb_ms":"122","load_start":"50","bytesOut":"584","bytesIn":"532","objectSize":"231","cacheControl":"private","contentType":"text\/html","type":"3","socket":"15","score_cache":"0","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"0","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"49","ssl_start":"0","ssl_end":"0","server_count":"5","server_rtt":"49","client_port":"51852","jpeg_scan_count":"0","full_url":"http:\/\/www.google.com\/","score_progressive_jpeg":-1,"load_end":172,"ttfb_start":"50","ttfb_end":172,"download_start":172,"download_end":172,"download_ms":0,"all_start":"50","all_end":172,"all_ms":"122","headers":{"request":["GET \/ HTTP\/1.1","Host: www.google.com","Connection: keep-alive","Accept: text\/html,application\/xhtml+xml,application\/xml;q=0.9,image\/webp,*\/*;q=0.8","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36 PTST\/191","Accept-Encoding: gzip,deflate,sdch","Accept-Language: en-US,en;q=0.8","Cookie: PREF=ID=475c491cad4e86aa:U=d2f3b954c35bcd9b:FF=0:TM=1415298912:LM=1415298912:S=lV95Ue2bqUmiPbk5; NID=67=FxZ3TVYsJlTtvVnmerGAmxHaZlZTz5A31FZWPSd1rO1IWsQQNoRhmBSazKHgNuIyFbSiyrYFhW6OHLe3wfVvB_ZYIKQjZ5yH_Zis-NxQXljm2qIsyFUvNKKpsqhKOv-p"],"response":["HTTP\/1.1 302 Found","Location: https:\/\/www.google.com\/?gws_rd=ssl","Cache-Control: private","Content-Type: text\/html; charset=UTF-8","Date: Thu, 06 Nov 2014 18:35:24 GMT","Server: gws","Content-Length: 231","X-XSS-Protection: 1; mode=block","X-Frame-Options: SAMEORIGIN","Alternate-Protocol: 80:quic,p=0.01"]},"index":0,"number":1},{"method":"GET","host":"www.google.com","url":"\/?gws_rd=ssl","responseCode":"200","load_ms":"290","ttfb_ms":"197","load_start":"261","bytesOut":"254","bytesIn":"61974","objectSize":"0","expires":"-1","cacheControl":"private, max-age=0","contentType":"text\/html","contentEncoding":"gzip","type":"3","socket":"161","score_cache":"-1","score_cdn":"-1","score_gzip":"100","score_cookies":"-1","score_keep-alive":"100","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":0,"connect_ms":0,"ssl_ms":57,"gzip_total":"280","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"-1","cdn_provider":"Google","dns_start":"203","dns_end":"203","connect_start":"203","connect_end":"203","ssl_start":"203","ssl_end":"260","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/?gws_rd=ssl","score_progressive_jpeg":-1,"load_end":551,"ttfb_start":"261","ttfb_end":458,"download_start":458,"download_end":551,"download_ms":93,"all_start":"203","all_end":551,"all_ms":347,"headers":{"request":["GET \/?gws_rd=ssl HTTP\/1.1","Host: www.google.com","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A87ED523-8779-4935-A86C-D91B13E86886"],"response":["HTTP\/1.1 200 OK","alternate-protocol: 443:quic,p=0.01","cache-control: private, max-age=0","content-encoding: gzip","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:35:25 GMT","expires: -1","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":1,"number":2},{"method":"GET","host":"www.google.com","url":"\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=bb9bVMmPC4z9oQSY8YG4DQ&e=3700259,4011550,4011551,4011557,4011558,4011559,4013605,4014789,4016469,4016824,4017981,4019181,4020347,4020562,4020921,4021073,4022074,4022318,4022495,4022686,4023367,4023567,4023678,4023709,4023972,4024007,4025080,8500272,8500393,10200044,10200083,10200716&atyp=csi&adh=&xjs=init.86.28.sb.52.p.12.spch.7.jsa.5.ifl.2&action=&srt=5139&p=s&npn=1&rt=xjsls.44,prt.46,xjses.264,xjsee.470,xjs.503,ol.775,iml.166,wsrt.584,cst.57,dnst.0,rqst.290,rspt.93","responseCode":"204","load_ms":"121","ttfb_ms":"107","load_start":"1388","bytesOut":"819","bytesIn":"251","objectSize":"0","contentType":"text\/html","type":"3","socket":"161","score_cache":"0","score_cdn":"-1","score_gzip":"-1","score_cookies":"-1","score_keep-alive":"-1","score_minify":"-1","score_combine":"-1","score_compress":"-1","score_etags":"-1","is_secure":"1","dns_ms":"-1","connect_ms":"-1","ssl_ms":"-1","gzip_total":"0","gzip_save":"0","minify_total":"0","minify_save":"0","image_total":"0","image_save":"0","cache_time":"0","cdn_provider":"Google","dns_start":"0","dns_end":"0","connect_start":"0","connect_end":"0","ssl_start":"0","ssl_end":"0","server_count":"5","client_port":"0","jpeg_scan_count":"0","full_url":"https:\/\/www.google.com\/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=bb9bVMmPC4z9oQSY8YG4DQ&e=3700259,4011550,4011551,4011557,4011558,4011559,4013605,4014789,4016469,4016824,4017981,4019181,4020347,4020562,4020921,4021073,4022074,4022318,4022495,4022686,4023367,4023567,4023678,4023709,4023972,4024007,4025080,8500272,8500393,10200044,10200083,10200716&atyp=csi&adh=&xjs=init.86.28.sb.52.p.12.spch.7.jsa.5.ifl.2&action=&srt=5139&p=s&npn=1&rt=xjsls.44,prt.46,xjses.264,xjsee.470,xjs.503,ol.775,iml.166,wsrt.584,cst.57,dnst.0,rqst.290,rspt.93","score_progressive_jpeg":-1,"load_end":1509,"ttfb_start":"1388","ttfb_end":1495,"download_start":1495,"download_end":1509,"download_ms":14,"all_start":"1388","all_end":1509,"all_ms":"121","headers":{"request":["GET \/gen_204?v=3&s=webhp&imc=1&imn=1&imp=1&ei=bb9bVMmPC4z9oQSY8YG4DQ&e=3700259,4011550,4011551,4011557,4011558,4011559,4013605,4014789,4016469,4016824,4017981,4019181,4020347,4020562,4020921,4021073,4022074,4022318,4022495,4022686,4023367,4023567,4023678,4023709,4023972,4024007,4025080,8500272,8500393,10200044,10200083,10200716&atyp=csi&adh=&xjs=init.86.28.sb.52.p.12.spch.7.jsa.5.ifl.2&action=&srt=5139&p=s&npn=1&rt=xjsls.44,prt.46,xjses.264,xjsee.470,xjs.503,ol.775,iml.166,wsrt.584,cst.57,dnst.0,rqst.290,rspt.93 HTTP\/1.1","Host: www.google.com","Accept: image\/webp,*\/*;q=0.8","Referer: https:\/\/www.google.com\/","User-Agent: Mozilla\/5.0 (Windows NT 6.1) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/38.0.2125.111 Safari\/537.36","X-DevTools-Emulate-Network-Conditions-Client-Id: A87ED523-8779-4935-A86C-D91B13E86886"],"response":["HTTP\/1.1 204 No Content","alternate-protocol: 443:quic,p=0.01","content-length: 0","content-type: text\/html; charset=UTF-8","date: Thu, 06 Nov 2014 18:35:26 GMT","server: gws","x-frame-options: SAMEORIGIN","x-xss-protection: 1; mode=block"]},"index":2,"number":3}],"requestsDoc":2,"responses_200":1,"responses_404":0,"responses_other":1,"result":0,"render":895,"fullyLoaded":1509,"cached":1,"docTime":1372,"domTime":0,"score_cache":0,"score_cdn":-1,"score_gzip":100,"score_cookies":-1,"score_keep-alive":100,"score_minify":-1,"score_combine":100,"score_compress":-1,"score_etags":-1,"gzip_total":280,"gzip_savings":0,"minify_total":0,"minify_savings":0,"image_total":0,"image_savings":0,"optimization_checked":1,"aft":0,"domElements":288,"pageSpeedVersion":"1.9","title":"Google","titleTime":692,"loadEventStart":1354,"loadEventEnd":1363,"domContentLoadedEventStart":630,"domContentLoadedEventEnd":677,"lastVisualChange":0,"browser_name":"Google Chrome","browser_version":"38.0.2125.111","server_count":5,"server_rtt":0,"base_page_cdn":"Google","adult_site":0,"fixed_viewport":0,"score_progressive_jpeg":-1,"firstPaint":0,"docCPUms":1248.008,"fullyLoadedCPUms":1716.011,"docCPUpct":90,"fullyLoadedCPUpct":47,"isResponsive":-1,"date":1415298913,"CSI":["v","s","imc","imn","imp","ei","e","atyp","adh","xjs","action","srt","p","npn","rt","xjsls","prt","xjses","xjsee","ol","iml","wsrt","cst","dnst","rqst","rspt"],"CSI.v":3,"CSI.s":"webhp","CSI.imc":1,"CSI.imn":1,"CSI.imp":1,"CSI.ei":"bb9bVMmPC4z9oQSY8YG4DQ","CSI.e":"3700259,4011550,4011551,4011557,4011558,4011559,4013605,4014789,4016469,4016824,4017981,4019181,4020347,4020562,4020921,4021073,4022074,4022318,4022495,4022686,4023367,4023567,4023678,4023709,4023972,4024007,4025080,8500272,8500393,10200044,10200083,10200716","CSI.atyp":"csi","CSI.adh":"","CSI.xjs":503,"CSI.action":"","CSI.srt":5139,"CSI.p":"s","CSI.npn":1,"CSI.rt":"xjsls.44,prt.46,xjses.264,xjsee.470,xjs.503,ol.775,iml.166,wsrt.584,cst.57,dnst.0,rqst.290,rspt.93","CSI.xjsls":44,"CSI.prt":46,"CSI.xjses":264,"CSI.xjsee":470,"CSI.ol":775,"CSI.iml":166,"CSI.wsrt":584,"CSI.cst":57,"CSI.dnst":0,"CSI.rqst":290,"CSI.rspt":93,"SpeedIndex":0,"visualComplete":0,"run":2,"effectiveBps":81337,"effectiveBpsDoc":93390,"tester":"IE9204-192.168.102.94","pages":{"details":"http:\/\/www.webpagetest.org\/details.php?test=141106_TM_ZFM&run=2&cached=1","checklist":"http:\/\/www.webpagetest.org\/performance_optimization.php?test=141106_TM_ZFM&run=2&cached=1","breakdown":"http:\/\/www.webpagetest.org\/breakdown.php?test=141106_TM_ZFM&run=2&cached=1","domains":"http:\/\/www.webpagetest.org\/domains.php?test=141106_TM_ZFM&run=2&cached=1","screenShot":"http:\/\/www.webpagetest.org\/screen_shot.php?test=141106_TM_ZFM&run=2&cached=1"},"thumbnails":{"waterfall":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/2_Cached_waterfall_thumb.png","checklist":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/2_Cached_optimization_thumb.png","screenShot":"http:\/\/www.webpagetest.org\/result\/141106_TM_ZFM\/2_Cached_screen_thumb.png"},"images":{"waterfall":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/2_Cached_waterfall.png","connectionView":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/2_Cached_connection.png","checklist":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/2_Cached_optimization.png","screenShot":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/2_Cached_screen.jpg"},"rawData":{"headers":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/2_Cached_report.txt","pageData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/2_Cached_IEWPG.txt","requestsData":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/2_Cached_IEWTR.txt","utilization":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/2_Cached_progress.csv"},"videoFrames":[{"time":0,"image":"http:\/\/www.webpagetest.org\/results\/14\/11\/06\/TM\/ZFM\/video_2_cached\/frame_0000.jpg","VisuallyComplete":100}],"domains":{"moc.elgoog.www":{"bytes":62757,"requests":3,"connections":2}},"breakdown":{"html":{"color":[130,181,252],"bytes":62757,"requests":3},"js":{"color":[254,197,132],"bytes":0,"requests":0},"css":{"color":[178,234,148],"bytes":0,"requests":0},"image":{"color":[196,154,232],"bytes":0,"requests":0},"flash":{"color":[45,183,193],"bytes":0,"requests":0},"font":{"color":[255,82,62],"bytes":0,"requests":0},"other":{"color":[196,196,196],"bytes":0,"requests":0}}}}},"statusCode":200,"statusText":"Test Complete"} \ No newline at end of file diff --git a/test/fixtures/responses/testResultsNotFound.json b/test/fixtures/responses/testResultsNotFound.json deleted file mode 100644 index 986dfc5..0000000 --- a/test/fixtures/responses/testResultsNotFound.json +++ /dev/null @@ -1 +0,0 @@ -{"data":{"statusCode":400,"statusText":"Test not found","id":"120816_V2_3"},"statusCode":400,"statusText":"Test not found"} diff --git a/test/fixtures/responses/testStatus.json b/test/fixtures/responses/testStatus.json deleted file mode 100644 index 88baa49..0000000 --- a/test/fixtures/responses/testStatus.json +++ /dev/null @@ -1 +0,0 @@ -{"statusCode":200,"statusText":"Test Complete","data":{"statusCode":200,"statusText":"Test Complete","testId":"120816_V2_2","runs":3,"fvonly":1,"location":"Local_Firefox_Chrome","startTime":"08\/16\/12 18:27:14","elapsed":3712454,"completeTime":"08\/16\/12 18:28:52"}} diff --git a/test/fixtures/responses/testStatusNotFound.json b/test/fixtures/responses/testStatusNotFound.json deleted file mode 100644 index 59f5e7d..0000000 --- a/test/fixtures/responses/testStatusNotFound.json +++ /dev/null @@ -1 +0,0 @@ -{"statusCode":400,"statusText":"Test not found","data":{"statusCode":400,"statusText":"Test not found"}} \ No newline at end of file diff --git a/test/fixtures/responses/testers.xml b/test/fixtures/responses/testers.xml deleted file mode 100644 index 9fdba21..0000000 --- a/test/fixtures/responses/testers.xml +++ /dev/null @@ -1,2938 +0,0 @@ - - - -200 -Ok - - -EC2_East_wptdriver -0 - - -1 -IP-0A02B528 -i-10eb9560 -54.234.37.222 -91 -14.770 - -0 -17 -0 - - -2 -IP-0A02B528 -i-24eb9554 -107.20.92.24 -91 -14.772 - -0 -17 -0 - - -3 -IP-0A02B528 -i-28eb9558 -107.22.69.51 -91 -14.769 - -0 -17 -0 - - -4 -IP-0A02B528 -i-50eb9520 -23.20.166.132 -91 -14.767 - -0 -17 -0 - - -5 -IP-0A02B528 -i-5aeb952a -54.234.138.21 -91 -14.768 - -0 -17 -0 - - -6 -IP-0A02B528 -i-62eb9512 -23.20.96.217 -91 -14.767 - -0 -17 -0 - - -7 -IP-0A02B528 -i-6ceb951c -54.234.191.119 -91 -14.809 - -0 -17 -0 - - -8 -IP-0A02B528 -i-72eb9502 -23.21.25.95 -91 -14.769 - -0 -17 -0 - - - - -EC2_East -0 - - -1 -IP-0A02B528 -i-10eb9560 -54.234.37.222 -346 -14.770 -9.0.8112.16421 -0 -25 -0 - - -2 -IP-0A02B528 -i-24eb9554 -107.20.92.24 -346 -14.772 -9.0.8112.16421 -0 -25 -0 - - -3 -IP-0A02B528 -i-28eb9558 -107.22.69.51 -346 -14.769 -9.0.8112.16421 -0 -25 -0 - - -4 -IP-0A02B528 -i-50eb9520 -23.20.166.132 -346 -14.767 -9.0.8112.16421 -0 -25 -0 - - -5 -IP-0A02B528 -i-5aeb952a -54.234.138.21 -346 -14.768 -9.0.8112.16421 -0 -25 -0 - - -6 -IP-0A02B528 -i-62eb9512 -23.20.96.217 -346 -14.767 -9.0.8112.16421 -0 -25 -0 - - -7 -IP-0A02B528 -i-6ceb951c -54.234.191.119 -346 -14.809 -9.0.8112.16421 -0 -25 -0 - - -8 -IP-0A02B528 -i-72eb9502 -23.21.25.95 -346 -14.769 -9.0.8112.16421 -0 -25 -0 - - - - -EC2_East_Chromium -0 - - -1 -IP-0A02B528 - -107.21.80.91 -91 -9.572 - -0 -5929 -0 - - - - -EC2_West_wptdriver -0 - - -1 -IP-0AA132A2 -i-56e2f90f -50.18.3.32 -91 -14.910 - -0 -7 -0 - - -2 -IP-0AA8C22B -i-f62d32af -204.236.139.22 -91 -14.987 - -0 -10 -0 - - - - -EC2_West -0 - - -1 -IP-0AA132A2 -i-56e2f90f -50.18.3.32 -346 -14.910 -9.0.8112.16421 -0 -0 - - -2 -IP-0AA8C22B -i-f62d32af -204.236.139.22 -346 -14.987 -9.0.8112.16421 -0 -0 - - - - -EC2_SA_wptdriver -0 - - -1 -IP-0AFC1792 -i-a89224b6 -54.232.22.164 -91 -14.871 - -0 -62 -0 - - -2 -IP-0AF80E53 -i-b09224ae -54.232.7.34 -91 -14.876 - -0 -62 -0 - - - - -EC2_SA -0 - - -1 -IP-0AFC1792 -i-a89224b6 -54.232.22.164 -346 -14.871 -9.0.8112.16421 -0 -0 - - -2 -IP-0AF80E53 -i-b09224ae -54.232.7.34 -346 -14.876 -9.0.8112.16421 -0 -0 - - - - -EC2_EU_wptdriver -0 - - -1 -IP-0A21ADC2 -i-e20fd2a8 -54.247.18.210 -91 -14.907 - -0 -42 -0 - - -2 -IP-0AE41B43 -i-ee0fd2a4 -54.246.45.113 -91 -14.909 - -0 -42 -0 - - - - -EC2_EU -0 - - -1 -IP-0A21ADC2 -i-e20fd2a8 -54.247.18.210 -346 -14.907 -9.0.8112.16421 -0 -450 -0 - - -2 -IP-0AE41B43 -i-ee0fd2a4 -54.246.45.113 -346 -14.909 -9.0.8112.16421 -0 -450 -0 - - - - -EC2_Asia_West_wptdriver -0 - - -1 -IP-0A86066E -i-8145f0d6 -122.248.229.4 -91 -14.903 - -0 -212 -0 - - -2 -IP-0A8F161A -i-8345f0d4 -175.41.160.41 -91 -14.905 - -0 -212 -0 - - - - -EC2_Asia_West -0 - - -1 -IP-0A86066E -i-8145f0d6 -122.248.229.4 -346 -14.903 -9.0.8112.16421 -0 -0 - - -2 -IP-0A8F161A -i-8345f0d4 -175.41.160.41 -346 -14.905 -9.0.8112.16421 -0 -0 - - - - -EC2_Asia_East_wptdriver -0 - - -1 -IP-0AA062E5 -i-4ff5ac4c -175.41.226.159 -91 -14.904 - -0 -67 -0 - - -2 -IP-0AA08A89 -i-91f1b992 -175.41.221.1 -91 -14.897 - -0 -67 -0 - - - - -EC2_Asia_East -0 - - -1 -IP-0AA062E5 -i-4ff5ac4c -175.41.226.159 -346 -14.904 -9.0.8112.16421 -0 -0 - - -2 -IP-0AA08A89 -i-91f1b992 -175.41.221.1 -346 -14.897 -9.0.8112.16421 -0 -0 - - - - -Dulles_IE6 -0 - - -1 -IE6101 - -192.168.101.61 -346 -2.054 -6.0.2900.5512 -0 -60 -0 - - -2 -IE6201 - -192.168.102.61 -346 -2.279 -6.0.2900.5512 -0 -248 -0 - - - - -Dulles_IE7 -0 - - -1 -IE7101 - -192.168.101.71 -346 -1.333 -7.0.5730.13 -0 -145 -0 - - -2 -IE7102 - -192.168.101.72 -346 -1.351 -7.0.5730.13 -0 -46 -0 - - -3 -IE7201 - -192.168.102.71 -346 -1.140 -7.0.5730.13 -0 -52 -0 - - -4 -IE7202 - -192.168.102.72 -346 -1.259 -7.0.5730.13 -0 -60 -0 - - - - -Dulles_IE7_dynaTrace -0 - - -1 -IE7127 - -192.168.101.27 -346 -1.726 -7.0.5730.13 -0 -351 -0 - - -2 -IE7227 - -192.168.102.27 -346 -1.711 -7.0.5730.13 -0 -354 -0 - - - - -Dulles_IE8 -0 - - -1 -IE8101 - -192.168.101.81 -346 -1.299 -8.0.7601.17514 -0 -0 -0 - - -2 -IE8102 - -192.168.101.82 -346 -1.259 -8.0.7601.17514 -0 -3 -0 - - -3 -IE8103 - -192.168.101.83 -346 -1.154 -8.0.7601.17514 -1 -1 -1 - - -4 -IE8104 - -192.168.101.84 -346 -1.083 -8.0.7601.17514 -5 -5 -1 - - -5 -IE8105 - -192.168.101.85 -346 -1.253 -8.0.7601.17514 -0 -0 -0 - - -6 -IE8106 - -192.168.101.86 -346 -1.058 -8.0.7601.17514 -0 -3 -0 - - -7 -IE8107 - -192.168.101.87 -346 -0.729 -8.0.7601.17514 -0 -2 -0 - - -8 -IE8108 - -192.168.101.88 -346 -1.403 -8.0.7601.17514 -0 -0 -1 - - -9 -IE8201 - -192.168.102.81 -346 -1.494 -8.0.7601.17514 -0 -1 -0 - - -10 -IE8202 - -192.168.102.82 -346 -1.476 -8.0.7601.17514 -0 -2 -0 - - -11 -IE8203 - -192.168.102.83 -346 -1.344 -8.0.7601.17514 -0 -1 -0 - - -12 -IE8204 - -192.168.102.84 -346 -1.591 -8.0.7601.17514 -0 -0 -0 - - -13 -IE8205 - -192.168.102.85 -346 -1.517 -8.0.7601.17514 -0 -0 -0 - - -14 -IE8206 - -192.168.102.86 -346 -1.464 -8.0.7601.17514 -1 -1 -1 - - -15 -IE8207 - -192.168.102.87 -346 -1.545 -8.0.7601.17514 -0 -0 -0 - - -16 -IE8208 - -192.168.102.88 -346 -1.438 -8.0.7601.17514 -0 -1 -0 - - -17 -IE8301 - -192.168.103.81 -346 -10.050 -8.0.7601.17514 -0 -0 -0 - - -18 -IE8302 - -192.168.103.82 -346 -10.063 -8.0.7601.17514 -0 -2 -0 - - -19 -IE8303 - -192.168.103.83 -346 -10.053 -8.0.7601.17514 -0 -0 -0 - - -20 -IE8304 - -192.168.103.84 -346 -10.046 -8.0.7601.17514 -0 -2 -0 - - -21 -IE8305 - -192.168.103.85 -346 -10.067 -8.0.7601.17514 -0 -3 -0 - - -22 -IE8306 - -192.168.103.86 -346 -10.090 -8.0.7601.17514 -2 -2 -1 - - -23 -IE8307 - -192.168.103.87 -346 -10.064 -8.0.7601.17514 -0 -1 -0 - - -24 -IE8308 - -192.168.103.88 -346 -10.077 -8.0.7601.17514 -0 -2 -0 - - - - -Dulles_IE8_dynaTrace -0 - - -1 -IE8128 - -192.168.101.28 -346 -1.067 -8.0.7601.17514 -0 -517 -0 - - -2 -IE8228 - -192.168.102.28 -346 -1.376 -8.0.7601.17514 -0 -523 -0 - - - - -Dulles_IE9 -0 - - -1 -IE9101 - -192.168.101.91 -346 -1.256 -9.0.8112.16421 -0 -23 -0 - - -2 -IE9102 - -192.168.101.92 -346 -1.112 -9.0.8112.16421 -0 -19 -0 - - -3 -IE9201 - -192.168.102.91 -346 -1.028 -9.0.8112.16421 -0 -34 -0 - - -4 -IE9202 - -192.168.102.92 -346 -1.011 -9.0.8112.16421 -0 -23 -0 - - -5 -IE9301 - -192.168.103.91 -346 -10.015 -9.0.8112.16421 -0 -22 -0 - - -6 -IE9302 - -192.168.103.92 -346 -10.022 -9.0.8112.16421 -0 -23 -0 - - - - -Dulles_IE10 -0 - - -1 -IE10201 - -192.168.102.101 -91 -8.874 - -0 -30 -0 - - -2 -IE10301 - -192.168.103.101 -91 -9.473 - -0 -81 -0 - - -3 -IE10302 - -192.168.103.102 -91 -9.028 - -0 -87 -0 - - - - -Dulles -0 - - -1 -IE8102 - -192.168.101.82 -91 -1.259 - -0 -0 -0 - - -2 -IE8103 - -192.168.101.83 -91 -1.154 - -1 -8 -0 - - -3 -IE8104 - -192.168.101.84 -91 -1.083 - -5 -51 -0 - - -4 -IE8105 - -192.168.101.85 -91 -1.253 - -0 -16 -0 - - -5 -IE8106 - -192.168.101.86 -91 -1.058 - -0 -0 -1 - - -6 -IE8107 - -192.168.101.87 -91 -0.729 - -0 -34 -0 - - -7 -IE8108 - -192.168.101.88 -91 -1.403 - -0 -19 -0 - - -8 -IE8128 - -192.168.101.28 -91 -1.067 - -0 -22 -0 - - -9 -IE8202 - -192.168.102.82 -91 -1.476 - -0 -34 -0 - - -10 -IE8203 - -192.168.102.83 -91 -1.344 - -0 -30 -0 - - -11 -IE8204 - -192.168.102.84 -91 -1.591 - -0 -12 -0 - - -12 -IE8205 - -192.168.102.85 -91 -1.517 - -0 -131 -0 - - -13 -IE8206 - -192.168.102.86 -91 -1.464 - -1 -30 -0 - - -14 -IE8207 - -192.168.102.87 -91 -1.545 - -0 -7 -0 - - -15 -IE8208 - -192.168.102.88 -91 -1.438 - -0 -8 -0 - - -16 -IE8228 - -192.168.102.28 -91 -1.376 - -0 -44 -0 - - -17 -IE8301 - -192.168.103.81 -91 -10.050 - -0 -38 -0 - - -18 -IE8302 - -192.168.103.82 -91 -10.063 - -0 -1 -0 - - -19 -IE8303 - -192.168.103.83 -91 -10.053 - -0 -14 -0 - - -20 -IE8304 - -192.168.103.84 -91 -10.046 - -0 -29 -0 - - -21 -IE8305 - -192.168.103.85 -91 -10.067 - -0 -114 -0 - - -22 -IE8306 - -192.168.103.86 -91 -10.090 - -2 -26 -0 - - -23 -IE8307 - -192.168.103.87 -91 -10.064 - -0 -7 -0 - - -24 -IE8308 - -192.168.103.88 -91 -10.077 - -0 -8 -0 - - -25 -IE9101 - -192.168.101.91 -91 -1.256 - -0 -6 -0 - - -26 -IE9102 - -192.168.101.92 -91 -1.112 - -0 -8 -0 - - -27 -IE9201 - -192.168.102.91 -91 -1.028 - -0 -7 -0 - - -28 -IE9202 - -192.168.102.92 -91 -1.011 - -0 -35 -0 - - -29 -IE9301 - -192.168.103.91 -91 -10.015 - -0 -5 -0 - - -30 -IE9302 - -192.168.103.92 -91 -10.022 - -0 -45 -0 - - - - -Dulles_Firefox3 -0 - - -1 -IE8101 - -192.168.101.81 -91 -1.299 - -0 -76 -0 - - -2 -IE8201 - -192.168.102.81 -91 -1.494 - -0 -5 -0 - - - - -Dulles_IE6_ChromeFrame -0 - - -1 -IE6131 - -192.168.101.31 -346 -1.875 -6.0.2900.5512 -0 -60 -0 - - - - -Dulles_Replay -0 - - -1 -IE7205 - -192.168.102.75 -91 -2.092 - -0 -72 -0 - - - - -Dulles_iOS -0 - - -1 -iphone-1 - -72.66.115.14 - - - -0 -54 -0 - - -2 -iphone2 - -72.66.115.14 - - - -0 -54 -0 - - -3 -iphone3 - -72.66.115.14 - - - -0 -7 -0 - - - - -Dulles_Android -0 - - -1 -nexus-s-2 - -72.66.115.14 - - - -0 -60 -0 - - - - -Asheville_IE -0 - - -1 -RENTAVAU-A9D7DA - -96.32.105.254 -346 -62.559 -8.0.6001.18702 -5 -5 -1 - - - - -Asheville_wpt -5 - - -1 -RENTAVAU-A9D7DA - -96.32.105.254 -91 -62.559 - -5 -28 -0 - - - - -Phoenix_IE8 - - -Phoenix_Chrome - - -Miami_IE8 -0 - - -1 -ROUTERCON6 - -75.149.177.50 -346 -133.680 -8.0.6001.18702 -5 -5 -1 - - - - -Miami -5 - - -1 -ROUTERCON6 - -75.149.177.50 -91 -133.680 - -5 -6 -0 - - - - -Chicago_IE9 - - -Chicago - - -Missouri_IE8 -0 - - -1 -WEBPAGET-0C9CBC - -199.193.245.13 -346 -4.794 -8.0.6001.18702 -5 -5 -1 - - - - -Missouri_Chrome -5 - - -1 -WEBPAGET-0C9CBC - -199.193.245.13 -91 -4.794 - -5 -9 -0 - - - - -SanJose_IE9 -0 - - -1 -SS0343 - -67.207.194.210 -346 -215.625 -9.0.8112.16421 -4 -4 -1 - - - - -SanJose_wpt -4 - - -1 -SS0343 - -67.207.194.210 -91 -215.625 - -4 -11 -0 - - - - -SanJose_TM - - -SanJose_VZ - - -LosAngeles_IE7 -0 - - -1 -CP-WBT-IE7 - -99.41.174.101 -346 -119.628 -8.0.6001.18702 -0 -58 -0 - - - - -LosAngeles_IE8 -0 - - -1 -CP-WBT-IE8 - -99.41.174.101 -346 -118.699 -8.0.6001.18702 -1 -1 -1 - - - - -LosAngeles_IE9 -0 - - -1 -WEBPAGEIE9 - -99.41.174.101 -346 -108.084 -9.0.8112.16421 -0 -51 -0 - - - - -LosAngeles_Chrome -0 - - -1 -CP-WBT-IE8 - -99.41.174.101 -91 -117.868 - -0 -0 -1 - - - - -Vancouver_IE8 -0 - - -1 -GOSSAMER-69D6FE - -204.187.15.253 -346 -9.604 -8.0.6001.18702 -0 -0 - - - - -Vancouver_wpt -0 - - -1 -GOSSAMER-69D6FE - -204.187.15.253 -91 -9.604 - -0 -0 - - - - -Montreal_IE8 -0 - - -1 -GOGAX-F647D7287 - -76.76.105.98 -346 -224.049 -8.0.6001.18702 -4 -4 -1 - - - - -Montreal_wpt -4 - - -1 -GOGAX-F647D7287 - -76.76.105.98 -91 -224.049 - -4 -25 -0 - - - - -Toronto_IE8 -0 - - -1 -WPT - -67.55.9.3 -346 -6.107 -8.0.7600.16385 -0 -15 -0 - - - - -Argentina_IE8 -0 - - -1 -WEBPAGETEST - -190.111.250.246 -346 -91.652 -8.0.6001.18702 -10 -10 -1 - - - - -Argentina_wpt -10 - - -1 -WEBPAGETEST - -190.111.250.246 -91 -91.652 - -10 -11 -0 - - - - -SaoPaulo_IE8 -0 - - -1 -PAGEST-IE8 -i-6e69ec70 -54.232.8.149 -346 -7.079 -8.0.6001.18702 -0 -5 -0 - - - - -SaoPaulo -0 - - -1 -IP-0AF80BE8 -i-5c26a342 -54.232.4.197 -346 -16.953 -9.0.8112.16421 -0 -63 -0 - - - - -SaoPaulo_wptdriver -0 - - -1 -IP-0AF80BE8 -i-5c26a342 -54.232.4.197 -91 -16.953 - -0 -2 -0 - - - - -Dublin_IL_IE7 -0 - - -1 -PAGEST-IE7 -i-f3a738bb -79.125.68.171 -346 -6.880 -7.0.5730.13 -0 -613 -0 - - - - -Dublin_IL_IE8 -0 - - -1 -PAGEST-IE8 -i-5f819f14 -54.246.65.49 -346 -6.982 -8.0.6001.18702 -0 -6 -0 - - -2 -PAGEST-IE8 -i-f1b02fb9 -46.137.145.216 -346 -6.688 -8.0.6001.18702 -0 -5 -0 - - - - -Dublin -0 - - -1 -IP-0AE0537C -i-8daf30c5 -46.137.38.250 -346 -16.971 -9.0.8112.16421 -0 -110 -0 - - - - -Dublin_wptdriver -0 - - -1 -IP-0AE0537C -i-8daf30c5 -46.137.38.250 -91 -16.971 - -0 -8 -0 - - - - -UK -0 - - -1 -DSVR006276 - -88.208.247.50 -346 -3.340 -7.0.5730.13 -0 -24 -0 - - - - -London_IE7 -0 - - -1 -IE7A - -83.138.148.244 -346 -4.331 -7.0.5730.13 -0 -0 -1 - - - - -London_IE8 -0 - - -1 -IE8 - -83.138.148.244 -346 -3.042 -8.0.6001.18702 -0 -1 -0 - - - - -Madrid_IE8 -0 - - -1 -WEBTESTXP - -195.235.93.205 -346 -18.618 -8.0.6001.18702 -2 -2 -1 - - - - -Paris_IE7 -0 - - -1 -TRADE-4C7F0DCFA - -109.190.85.183 -346 -65.855 -7.0.5730.13 -0 -42 -0 - - - - -Paris_IE8 -0 - - -1 -INOCYBE - -78.225.169.33 -346 -210.973 -8.0.6001.18702 -0 -0 -1 - - - - -Paris_wpt -0 - - -1 -INOCYBE - -78.225.169.33 -91 -210.973 - -0 -0 -0 - - - - -Brussels_IE8 -0 - - -1 -KEYPERFORMAN-PC - -91.183.64.49 -346 -48.522 -7.0.6001.18000 -0 -115 -0 - - - - -Brussels -0 - - -1 -KEYPERFORMAN-PC - -91.183.64.49 -91 -48.522 - -0 -1 -0 - - - - -Amsterdam_IE7 -0 - - -1 -WPT-PRIV01-IE7 - -46.226.57.90 -346 -39.005 -7.0.5730.13 -0 -976 -0 - - - - -Amsterdam_IE8 -0 - - -1 -WPT-PUBLIC-IE8 - -46.226.57.90 -346 -26.374 -8.0.6001.19393 -0 -24 -0 - - - - -Amsterdam_IE9 -0 - - -1 -WPT-PUBLIC-IE9 - -46.226.57.90 -346 -37.155 -9.0.8112.16421 -0 -113 -0 - - - - -Amsterdam -0 - - -1 -WPT-PRIV01-IE7 - -46.226.57.90 -91 -39.005 - -0 -0 -0 - - -2 -WPT-PUBLIC-IE8 - -46.226.57.90 -91 -26.374 - -0 -3 -0 - - -3 -WPT-PUBLIC-IE9 - -46.226.57.90 -91 -37.155 - -0 -0 -0 - - - - -Amsterdam_iOS -0 - - -1 - - -1 - - -1 - - -1 - - -1 - - -1 - - -1 - - -1 - - -1 - - -1 - - - - -Amsterdam_Android -0 - - -1 -mobitest - -46.226.57.90 - - - -0 -973 -0 - - - - -Geneva_IE8 -0 - - -1 -MY-6C51B65D11AD - -195.70.27.52 -346 -148.312 -8.0.6001.18702 -0 -3 -0 - - - - -Frankfurt_IE7 -0 - - -1 -WPT01 - -83.236.239.34 -346 -128.830 -7.0.5730.13 -0 -49 -0 - - - - -Frankfurt -7 - - -1 -D046D083B056425 - -217.24.222.120 -346 -1.813 -8.0.6001.18702 -19 -19 -1 - - -2 -D046D083B056425 - -62.216.172.30 -346 -1.812 -8.0.6001.18702 -10 -10 -1 - - - - -Frankfurt_IE9 -0 - - -1 -WPT02 - -83.236.239.34 -346 -48.790 -9.0.8112.16421 -0 -4 -0 - - - - -Frankfurt_wpt -0 - - -1 -D046D083B056425 - -217.24.222.120 -91 -1.813 - -7 -7 -1 - - -2 -D046D083B056425 - -62.216.172.30 -91 -1.812 - -10 -60 -0 - - - - -Stockholm_IE8 -0 - - -1 -SESTNSWT01P - -213.136.37.170 -346 -65.740 -8.0.7601.17514 -0 -6 -0 - - - - -Stockholm -0 - - -1 -SESTNSWT01P - -213.136.37.170 -91 -65.740 - -0 -23 -0 - - - - -Israel_IE8 -0 - - -1 -WEBPAGETEST-IL - -84.229.70.72 -346 -61.489 -8.0.6001.18702 -0 -19 -0 - - - - -Israel_Chrome -0 - - -1 -WEBPAGETEST-IL - -84.229.70.72 -91 -61.489 - -0 -107 -0 - - - - -Kenya_IE8 - - -Kenya_Chrome - - -Moscow_IE8 -0 - - -1 -WEBO2003-9DEA01 - -93.95.102.121 -346 -15.021 -8.0.6001.18702 -0 -2 -0 - - - - -Moscow -0 - - -1 -WIN-TBAWB44ZXJR - -89.253.252.152 -91 -6.018 - -0 -0 -0 - - - - -StPetersburg_IE9 -0 - - -1 -VPS33966 - -109.120.144.91 -346 -1.469 -9.0.8112.16421 -0 -0 -0 - - - - -StPetersburg -0 - - -1 -VPS33966 - -109.120.144.91 -91 -1.469 - -0 -3 -0 - - - - -Delhi_IE8 -0 - - -1 -MEENAN - -111.118.182.67 -346 -39.314 -8.0.6001.18702 -0 -27 -0 - - - - -Delhi_wpt -0 - - -1 -MEENAN - -111.118.182.67 -91 -39.314 - -0 -20 -0 - - - - -Singapore_IE8 -0 - - -1 -PAGEST-IE8 -i-f30386a4 -175.41.171.36 -346 -7.102 -8.0.6001.18702 -0 -45 -0 - - - - -HongKong_IE8 -0 - - -1 -WEBPAGET-N8YR2Q - -124.248.210.158 -346 -53.914 -8.0.6001.18702 -0 -0 - - - - -HongKong -0 - - -1 -WEBPAGET-N8YR2Q - -124.248.210.158 -91 -53.914 - -0 -2624 -0 - - - - -China -0 - - -1 -FGHKTUK-TTPWNPY - -61.147.67.178 -346 -11.024 -7.0.5730.13 -0 -13 -0 - - - - -China_wpt -0 - - -1 -FGHKTUK-TTPWNPY - -61.147.67.178 -91 -11.024 - -0 -16 -0 - - - - -Korea -3085 - - -1 -NA-IS-WEBPERF - -118.218.218.11 -346 -60.130 -8.0.6001.18702 -3085 -0 - - - - -Korea_IE8 -7513 - - -1 -NA-SC-WEBPERF - -117.52.9.4 -346 -129.285 -8.0.6001.18702 -7513 -0 - - - - -Tokyo_IE8 -0 - - -1 -PAGEST-IE8 -i-13165710 -54.248.179.63 -346 -7.000 -8.0.6001.18702 -0 -464 -0 - - - - -Tokyo -0 - - -1 -IP-0AA0877C -i-5a913659 -54.248.153.220 -346 -17.031 -9.0.8112.16421 -0 -46 -0 - - - - -Tokyo_wptdriver -0 - - -1 -IP-0AA0877C -i-5a913659 -54.248.153.220 -91 -17.031 - -0 -20 -0 - - - - -Sydney_IE7 -0 - - -1 -WPT-APP01 - -117.53.165.240 -346 -46.209 -7.0.6002.18005 -0 -1 -0 - - - - -Sydney -0 - - -1 -WPT-APP01 - -117.53.165.240 -91 -46.209 - -0 -20 -0 - - - - -Wellington_IE9 -0 - - -1 -WPTUSER-PC - -202.21.128.202 -346 -5.283 -9.0.8112.16421 -0 -27 -0 - - - - -Wellington -0 - - -1 -WPTUSER-PC - -202.21.128.202 -91 -5.283 - -0 -19 -0 - - - - -Test - - -Test_wptdriver - - -Pat_Chrome - - - diff --git a/test/fixtures/responses/timeline.json b/test/fixtures/responses/timeline.json deleted file mode 100644 index 9e8a553..0000000 --- a/test/fixtures/responses/timeline.json +++ /dev/null @@ -1 +0,0 @@ -["Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.89 Safari/537.1 PTST/62",{"children":[],"data":{},"endTime":1348171818031.957,"frameId":"2036.1","startTime":1348171818031.957,"totalHeapSize":4149120,"type":"Layout","usedHeapSize":2132848},{"data":{},"startTime":1348171818031.957,"totalHeapSize":4149120,"type":"BeginFrame","usedHeapSize":2132848},{"children":[],"data":{"height":625,"width":1014,"x":0,"y":0},"endTime":1348171818032.957,"frameId":"2036.1","startTime":1348171818032.957,"totalHeapSize":4149120,"type":"Paint","usedHeapSize":2132848},{"data":{"requestId":"2036.2","requestMethod":"GET","url":"http://twitter.com/marcelduran"},"frameId":"2036.1","startTime":1348171818049.957,"totalHeapSize":4149120,"type":"ResourceSendRequest","usedHeapSize":2132848},{"children":[],"data":{"mimeType":"text/html","requestId":"2036.2","statusCode":200},"endTime":1348171818583.957,"frameId":"2036.1","startTime":1348171818583.957,"totalHeapSize":4149120,"type":"ResourceReceiveResponse","usedHeapSize":2132848},{"data":{"requestId":"2036.3","requestMethod":"GET","url":"http://a0.twimg.com/a/1348075398/t1/css/t1_core_logged_out.bundle.css"},"frameId":"2036.1","startTime":1348171818605.957,"totalHeapSize":7229056,"type":"ResourceSendRequest","usedHeapSize":2719724},{"data":{"requestId":"2036.4","requestMethod":"GET","url":"http://a0.twimg.com/a/1348075398/t1/css/t1_more.bundle.css"},"frameId":"2036.1","startTime":1348171818608.957,"totalHeapSize":7229056,"type":"ResourceSendRequest","usedHeapSize":2719724},{"children":[{"children":[],"data":{},"endTime":1348171818587.957,"frameId":"2036.1","startTime":1348171818587.957,"totalHeapSize":4149120,"type":"RecalculateStyles","usedHeapSize":2139948},{"children":[],"data":{},"endTime":1348171818595.957,"frameId":"2036.1","startTime":1348171818595.957,"totalHeapSize":5164800,"type":"RecalculateStyles","usedHeapSize":2455376},{"children":[{"data":{"usedHeapSizeDelta":278784},"endTime":1348171818600.957,"startTime":1348171818597.957,"totalHeapSize":7229056,"type":"GCEvent","usedHeapSize":2548260},{"children":[],"data":{"scriptLine":1582,"scriptName":"native v8natives.js"},"endTime":1348171818604.957,"frameId":"2036.1","startTime":1348171818603.957,"totalHeapSize":7229056,"type":"FunctionCall","usedHeapSize":2610104},{"children":[],"data":{"lineNumber":1,"url":"chrome-extension://ejfgipfkkpdadoidbhfedneaabgolbno/wpt/script.js"},"endTime":1348171818605.957,"frameId":"2036.1","startTime":1348171818604.957,"totalHeapSize":7229056,"type":"EvaluateScript","usedHeapSize":2718944},{"children":[],"data":{"lineNumber":6,"url":"http://twitter.com/marcelduran"},"endTime":1348171818605.957,"frameId":"2036.1","startTime":1348171818605.957,"totalHeapSize":7229056,"type":"EvaluateScript","usedHeapSize":2719724}],"data":{"endLine":27,"length":2563,"startLine":0},"endTime":1348171818609.957,"frameId":"2036.1","startTime":1348171818595.957,"totalHeapSize":7229056,"type":"ParseHTML","usedHeapSize":2719724}],"data":{"requestId":"2036.2"},"endTime":1348171818610.957,"frameId":"2036.1","startTime":1348171818584.957,"totalHeapSize":7229056,"type":"ResourceReceivedData","usedHeapSize":2719724},{"children":[],"data":{"requestId":"2036.2"},"endTime":1348171818645.957,"frameId":"2036.1","startTime":1348171818642.957,"totalHeapSize":7229056,"type":"ResourceReceivedData","usedHeapSize":2719780},{"children":[],"data":{"requestId":"2036.2"},"endTime":1348171818645.957,"frameId":"2036.1","startTime":1348171818645.957,"totalHeapSize":7229056,"type":"ResourceReceivedData","usedHeapSize":2719780},{"children":[],"data":{"requestId":"2036.2"},"endTime":1348171818800.957,"frameId":"2036.1","startTime":1348171818799.957,"totalHeapSize":7229056,"type":"ResourceReceivedData","usedHeapSize":2719780},{"children":[],"data":{"requestId":"2036.2"},"endTime":1348171818800.957,"frameId":"2036.1","startTime":1348171818800.957,"totalHeapSize":7229056,"type":"ResourceReceivedData","usedHeapSize":2719780},{"data":{"requestId":"2036.5","requestMethod":"GET","url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"frameId":"2036.1","startTime":1348171818803.957,"totalHeapSize":7229056,"type":"ResourceSendRequest","usedHeapSize":2719780},{"children":[{"data":{"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"frameId":"2036.1","startTime":1348171818803.957,"totalHeapSize":7229056,"type":"ScheduleResourceRequest","usedHeapSize":2719780}],"data":{"requestId":"2036.2"},"endTime":1348171818803.957,"frameId":"2036.1","startTime":1348171818800.957,"totalHeapSize":7229056,"type":"ResourceReceivedData","usedHeapSize":2719780},{"children":[],"data":{"requestId":"2036.2"},"endTime":1348171818804.957,"frameId":"2036.1","startTime":1348171818804.957,"totalHeapSize":7229056,"type":"ResourceReceivedData","usedHeapSize":2719780},{"children":[],"data":{"requestId":"2036.2"},"endTime":1348171818812.957,"frameId":"2036.1","startTime":1348171818812.957,"totalHeapSize":7229056,"type":"ResourceReceivedData","usedHeapSize":2719780},{"data":{"didFail":false,"networkTime":1348171818802.957,"requestId":"2036.2"},"frameId":"2036.1","startTime":1348171818812.957,"totalHeapSize":7229056,"type":"ResourceFinish","usedHeapSize":2719780},{"children":[],"data":{"mimeType":"text/css","requestId":"2036.3","statusCode":200},"endTime":1348171818985.957,"frameId":"2036.1","startTime":1348171818985.957,"totalHeapSize":7229056,"type":"ResourceReceiveResponse","usedHeapSize":2719780},{"children":[],"data":{"requestId":"2036.3"},"endTime":1348171818985.957,"frameId":"2036.1","startTime":1348171818985.957,"totalHeapSize":7229056,"type":"ResourceReceivedData","usedHeapSize":2719780},{"children":[],"data":{"requestId":"2036.3"},"endTime":1348171818985.957,"frameId":"2036.1","startTime":1348171818985.957,"totalHeapSize":7229056,"type":"ResourceReceivedData","usedHeapSize":2719780},{"children":[],"data":{"mimeType":"text/css","requestId":"2036.4","statusCode":200},"endTime":1348171819013.957,"frameId":"2036.1","startTime":1348171819013.957,"totalHeapSize":7229056,"type":"ResourceReceiveResponse","usedHeapSize":2719780},{"children":[],"data":{"requestId":"2036.4"},"endTime":1348171819013.957,"frameId":"2036.1","startTime":1348171819013.957,"totalHeapSize":7229056,"type":"ResourceReceivedData","usedHeapSize":2719780},{"children":[],"data":{"requestId":"2036.4"},"endTime":1348171819013.957,"frameId":"2036.1","startTime":1348171819013.957,"totalHeapSize":7229056,"type":"ResourceReceivedData","usedHeapSize":2719780},{"children":[],"data":{"requestId":"2036.3"},"endTime":1348171819042.957,"frameId":"2036.1","startTime":1348171819042.957,"totalHeapSize":7229056,"type":"ResourceReceivedData","usedHeapSize":2719780},{"children":[],"data":{"requestId":"2036.3"},"endTime":1348171819057.957,"frameId":"2036.1","startTime":1348171819057.957,"totalHeapSize":7229056,"type":"ResourceReceivedData","usedHeapSize":2719780},{"children":[],"data":{"requestId":"2036.4"},"endTime":1348171819057.957,"frameId":"2036.1","startTime":1348171819057.957,"totalHeapSize":7229056,"type":"ResourceReceivedData","usedHeapSize":2719780},{"children":[],"data":{"requestId":"2036.4"},"endTime":1348171819057.957,"frameId":"2036.1","startTime":1348171819057.957,"totalHeapSize":7229056,"type":"ResourceReceivedData","usedHeapSize":2719780},{"children":[],"data":{"mimeType":"application/javascript","requestId":"2036.5","statusCode":200},"endTime":1348171819057.957,"frameId":"2036.1","startTime":1348171819057.957,"totalHeapSize":7229056,"type":"ResourceReceiveResponse","usedHeapSize":2719780},{"children":[],"data":{"requestId":"2036.5"},"endTime":1348171819057.957,"frameId":"2036.1","startTime":1348171819057.957,"totalHeapSize":7229056,"type":"ResourceReceivedData","usedHeapSize":2719780},{"children":[],"data":{"requestId":"2036.5"},"endTime":1348171819057.957,"frameId":"2036.1","startTime":1348171819057.957,"totalHeapSize":7229056,"type":"ResourceReceivedData","usedHeapSize":2719780},{"children":[],"data":{"requestId":"2036.5"},"endTime":1348171819109.957,"frameId":"2036.1","startTime":1348171819109.957,"totalHeapSize":7229056,"type":"ResourceReceivedData","usedHeapSize":2719780},{"children":[],"data":{"requestId":"2036.5"},"endTime":1348171819115.957,"frameId":"2036.1","startTime":1348171819115.957,"totalHeapSize":7229056,"type":"ResourceReceivedData","usedHeapSize":2719780},{"children":[],"data":{"requestId":"2036.3"},"endTime":1348171819318.957,"frameId":"2036.1","startTime":1348171819318.957,"totalHeapSize":7229056,"type":"ResourceReceivedData","usedHeapSize":2719780},{"children":[],"data":{"requestId":"2036.3"},"endTime":1348171819318.957,"frameId":"2036.1","startTime":1348171819318.957,"totalHeapSize":7229056,"type":"ResourceReceivedData","usedHeapSize":2719780},{"children":[],"data":{"requestId":"2036.3"},"endTime":1348171819318.957,"frameId":"2036.1","startTime":1348171819318.957,"totalHeapSize":7229056,"type":"ResourceReceivedData","usedHeapSize":2719780},{"children":[],"data":{"requestId":"2036.3"},"endTime":1348171819318.957,"frameId":"2036.1","startTime":1348171819318.957,"totalHeapSize":7229056,"type":"ResourceReceivedData","usedHeapSize":2719780},{"children":[],"data":{"requestId":"2036.4"},"endTime":1348171819328.957,"frameId":"2036.1","startTime":1348171819328.957,"totalHeapSize":7229056,"type":"ResourceReceivedData","usedHeapSize":2719780},{"children":[],"data":{"requestId":"2036.4"},"endTime":1348171819328.957,"frameId":"2036.1","startTime":1348171819328.957,"totalHeapSize":7229056,"type":"ResourceReceivedData","usedHeapSize":2719780},{"children":[],"data":{"requestId":"2036.4"},"endTime":1348171819328.957,"frameId":"2036.1","startTime":1348171819328.957,"totalHeapSize":7229056,"type":"ResourceReceivedData","usedHeapSize":2719780},{"children":[],"data":{"requestId":"2036.4"},"endTime":1348171819329.957,"frameId":"2036.1","startTime":1348171819329.957,"totalHeapSize":7229056,"type":"ResourceReceivedData","usedHeapSize":2719780},{"data":{"usedHeapSizeDelta":861048},"endTime":1348171819391.957,"startTime":1348171819387.957,"totalHeapSize":7229056,"type":"GCEvent","usedHeapSize":1858732},{"children":[],"data":{"requestId":"2036.4"},"endTime":1348171819395.957,"frameId":"2036.1","startTime":1348171819395.957,"totalHeapSize":7229056,"type":"ResourceReceivedData","usedHeapSize":1858732},{"data":{"didFail":false,"networkTime":1348171819389.957,"requestId":"2036.4"},"frameId":"2036.1","startTime":1348171819412.957,"totalHeapSize":7229056,"type":"ResourceFinish","usedHeapSize":1858732},{"children":[],"data":{"requestId":"2036.3"},"endTime":1348171819416.957,"frameId":"2036.1","startTime":1348171819416.957,"totalHeapSize":7229056,"type":"ResourceReceivedData","usedHeapSize":1858732},{"children":[],"data":{},"endTime":1348171819431.957,"frameId":"2036.1","startTime":1348171819431.957,"totalHeapSize":7229056,"type":"RecalculateStyles","usedHeapSize":1858732},{"children":[],"data":{"lineNumber":24,"url":"http://twitter.com/marcelduran"},"endTime":1348171819432.957,"frameId":"2036.1","startTime":1348171819432.957,"totalHeapSize":7229056,"type":"EvaluateScript","usedHeapSize":1863084},{"data":{"requestId":"2036.6","requestMethod":"GET","url":"http://a0.twimg.com/a/1348075398/t1/img/twitter_web_sprite_bgs.png"},"frameId":"2036.1","startTime":1348171819435.957,"totalHeapSize":7229056,"type":"ResourceSendRequest","usedHeapSize":1879928},{"data":{"requestId":"2036.7","requestMethod":"GET","url":"http://a0.twimg.com/a/1348075398/t1/img/twitter_web_sprite_icons.png"},"frameId":"2036.1","startTime":1348171819439.957,"totalHeapSize":7229056,"type":"ResourceSendRequest","usedHeapSize":1879928},{"data":{"requestId":"2036.8","requestMethod":"GET","url":"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"},"frameId":"2036.1","startTime":1348171819441.957,"totalHeapSize":7229056,"type":"ResourceSendRequest","usedHeapSize":1879928},{"data":{"requestId":"2036.9","requestMethod":"GET","url":"http://a0.twimg.com/a/1348075398/t1/img/wash-white-30.png"},"frameId":"2036.1","startTime":1348171819443.957,"totalHeapSize":7229056,"type":"ResourceSendRequest","usedHeapSize":1879928},{"data":{"requestId":"2036.10","requestMethod":"GET","url":"http://a0.twimg.com/profile_images/2160711737/marcel_reasonably_small.jpg"},"frameId":"2036.1","startTime":1348171819445.957,"totalHeapSize":7229056,"type":"ResourceSendRequest","usedHeapSize":1879928},{"data":{"requestId":"2036.11","requestMethod":"GET","url":"http://a0.twimg.com/profile_images/1372346118/Hi-ResMYTHBUSTERStory_normal.jpg"},"frameId":"2036.1","startTime":1348171819450.957,"totalHeapSize":7229056,"type":"ResourceSendRequest","usedHeapSize":1879928},{"data":{"requestId":"2036.12","requestMethod":"GET","url":"http://a0.twimg.com/profile_images/1178298385/CompSci_normal.png"},"frameId":"2036.1","startTime":1348171819451.957,"totalHeapSize":7229056,"type":"ResourceSendRequest","usedHeapSize":1879928},{"data":{"requestId":"2036.13","requestMethod":"GET","url":"http://a0.twimg.com/profile_images/2160711737/marcel_normal.jpg"},"frameId":"2036.1","startTime":1348171819452.957,"totalHeapSize":7229056,"type":"ResourceSendRequest","usedHeapSize":1879928},{"data":{"requestId":"2036.14","requestMethod":"GET","url":"http://a0.twimg.com/profile_images/2327360441/xof3978zk6fu13b8c83t_normal.jpeg"},"frameId":"2036.1","startTime":1348171819461.957,"totalHeapSize":7229056,"type":"ResourceSendRequest","usedHeapSize":1879928},{"data":{"requestId":"2036.15","requestMethod":"GET","url":"http://a0.twimg.com/profile_images/2509042025/w6j4vyk4t3n4xhx2ebcc_normal.png"},"frameId":"2036.1","startTime":1348171819467.957,"totalHeapSize":7229056,"type":"ResourceSendRequest","usedHeapSize":1879928},{"data":{"requestId":"2036.16","requestMethod":"GET","url":"http://a0.twimg.com/profile_images/1333659288/flickr-toque_256_normal.jpg"},"frameId":"2036.1","startTime":1348171819469.957,"totalHeapSize":7229056,"type":"ResourceSendRequest","usedHeapSize":1879928},{"data":{"requestId":"2036.17","requestMethod":"GET","url":"http://a0.twimg.com/profile_images/2239534981/Shaun_NYC_L_Heureux-0768LR_normal.jpg"},"frameId":"2036.1","startTime":1348171819470.957,"totalHeapSize":7229056,"type":"ResourceSendRequest","usedHeapSize":1879928},{"data":{"requestId":"2036.18","requestMethod":"GET","url":"http://a0.twimg.com/profile_images/2113444521/speedometer_normal.png"},"frameId":"2036.1","startTime":1348171819475.957,"totalHeapSize":7229056,"type":"ResourceSendRequest","usedHeapSize":1879928},{"data":{"requestId":"2036.19","requestMethod":"GET","url":"http://a0.twimg.com/a/1348075398/t1/img/loader.gif"},"frameId":"2036.1","startTime":1348171819475.957,"totalHeapSize":7229056,"type":"ResourceSendRequest","usedHeapSize":1879928},{"data":{"requestId":"2036.20","requestMethod":"GET","url":"about:blank"},"frameId":"2036.3","startTime":1348171819475.957,"totalHeapSize":7229056,"type":"ResourceSendRequest","usedHeapSize":1884564},{"data":{"requestId":"2036.21","requestMethod":"GET","url":"http://a0.twimg.com/sticky/default_profile_images/default_profile_6_mini.png"},"frameId":"2036.1","startTime":1348171819475.957,"totalHeapSize":7229056,"type":"ResourceSendRequest","usedHeapSize":1884564},{"data":{"requestId":"2036.22","requestMethod":"GET","url":"http://a0.twimg.com/a/1348075398/images/bigger_spinner.gif"},"frameId":"2036.1","startTime":1348171819478.957,"totalHeapSize":7229056,"type":"ResourceSendRequest","usedHeapSize":1884564},{"children":[{"children":[{"data":{"singleShot":true,"timeout":10000,"timerId":2},"frameId":"2036.1","stackTrace":[{"columnNumber":1446,"functionName":"","lineNumber":30,"url":"http://twitter.com/marcelduran"},{"columnNumber":1513,"functionName":"","lineNumber":30,"url":"http://twitter.com/marcelduran"}],"startTime":1348171819435.957,"totalHeapSize":7229056,"type":"TimerInstall","usedHeapSize":1879416}],"data":{"lineNumber":30,"url":"http://twitter.com/marcelduran"},"endTime":1348171819435.957,"frameId":"2036.1","startTime":1348171819434.957,"totalHeapSize":7229056,"type":"EvaluateScript","usedHeapSize":1879928},{"data":{"url":"http://a0.twimg.com/a/1348075398/t1/img/twitter_web_sprite_bgs.png"},"frameId":"2036.1","startTime":1348171819439.957,"totalHeapSize":7229056,"type":"ScheduleResourceRequest","usedHeapSize":1879928},{"data":{"url":"http://a0.twimg.com/a/1348075398/t1/img/twitter_web_sprite_icons.png"},"frameId":"2036.1","startTime":1348171819439.957,"totalHeapSize":7229056,"type":"ScheduleResourceRequest","usedHeapSize":1879928},{"data":{"url":"http://a0.twimg.com/a/1348075398/t1/img/wash-white-30.png"},"frameId":"2036.1","startTime":1348171819443.957,"totalHeapSize":7229056,"type":"ScheduleResourceRequest","usedHeapSize":1879928},{"children":[],"data":{},"endTime":1348171819444.957,"frameId":"2036.1","startTime":1348171819443.957,"totalHeapSize":7229056,"type":"RecalculateStyles","usedHeapSize":1879928},{"data":{"url":"http://a0.twimg.com/profile_images/2160711737/marcel_reasonably_small.jpg"},"frameId":"2036.1","startTime":1348171819445.957,"totalHeapSize":7229056,"type":"ScheduleResourceRequest","usedHeapSize":1879928},{"data":{"url":"http://a0.twimg.com/profile_images/1372346118/Hi-ResMYTHBUSTERStory_normal.jpg"},"frameId":"2036.1","startTime":1348171819450.957,"totalHeapSize":7229056,"type":"ScheduleResourceRequest","usedHeapSize":1879928},{"data":{"url":"http://a0.twimg.com/profile_images/1178298385/CompSci_normal.png"},"frameId":"2036.1","startTime":1348171819451.957,"totalHeapSize":7229056,"type":"ScheduleResourceRequest","usedHeapSize":1879928},{"data":{"url":"http://a0.twimg.com/profile_images/2160711737/marcel_normal.jpg"},"frameId":"2036.1","startTime":1348171819452.957,"totalHeapSize":7229056,"type":"ScheduleResourceRequest","usedHeapSize":1879928},{"data":{"url":"http://a0.twimg.com/profile_images/2327360441/xof3978zk6fu13b8c83t_normal.jpeg"},"frameId":"2036.1","startTime":1348171819461.957,"totalHeapSize":7229056,"type":"ScheduleResourceRequest","usedHeapSize":1879928},{"data":{"url":"http://a0.twimg.com/profile_images/2509042025/w6j4vyk4t3n4xhx2ebcc_normal.png"},"frameId":"2036.1","startTime":1348171819467.957,"totalHeapSize":7229056,"type":"ScheduleResourceRequest","usedHeapSize":1879928},{"data":{"url":"http://a0.twimg.com/profile_images/1333659288/flickr-toque_256_normal.jpg"},"frameId":"2036.1","startTime":1348171819469.957,"totalHeapSize":7229056,"type":"ScheduleResourceRequest","usedHeapSize":1879928},{"data":{"url":"http://a0.twimg.com/profile_images/2239534981/Shaun_NYC_L_Heureux-0768LR_normal.jpg"},"frameId":"2036.1","startTime":1348171819470.957,"totalHeapSize":7229056,"type":"ScheduleResourceRequest","usedHeapSize":1879928},{"data":{"url":"http://a0.twimg.com/profile_images/2113444521/speedometer_normal.png"},"frameId":"2036.1","startTime":1348171819475.957,"totalHeapSize":7229056,"type":"ScheduleResourceRequest","usedHeapSize":1879928},{"data":{"url":"http://a0.twimg.com/a/1348075398/t1/img/loader.gif"},"frameId":"2036.1","startTime":1348171819475.957,"totalHeapSize":7229056,"type":"ScheduleResourceRequest","usedHeapSize":1879928},{"children":[],"data":{},"endTime":1348171819475.957,"frameId":"2036.3","startTime":1348171819475.957,"totalHeapSize":7229056,"type":"RecalculateStyles","usedHeapSize":1884564},{"children":[],"data":{"endLine":0,"length":1,"startLine":0},"endTime":1348171819475.957,"frameId":"2036.3","startTime":1348171819475.957,"totalHeapSize":7229056,"type":"ParseHTML","usedHeapSize":1884564},{"data":{},"frameId":"2036.3","startTime":1348171819475.957,"totalHeapSize":7229056,"type":"MarkDOMContent","usedHeapSize":1884564},{"children":[],"data":{"mimeType":"text/html","requestId":"2036.20","statusCode":0},"endTime":1348171819475.957,"frameId":"2036.3","startTime":1348171819475.957,"totalHeapSize":7229056,"type":"ResourceReceiveResponse","usedHeapSize":1884564},{"children":[],"data":{},"endTime":1348171819475.957,"frameId":"2036.3","startTime":1348171819475.957,"totalHeapSize":7229056,"type":"RecalculateStyles","usedHeapSize":1884564},{"children":[],"data":{"endLine":0,"length":1,"startLine":0},"endTime":1348171819475.957,"frameId":"2036.3","startTime":1348171819475.957,"totalHeapSize":7229056,"type":"ParseHTML","usedHeapSize":1884564},{"data":{},"frameId":"2036.3","startTime":1348171819475.957,"totalHeapSize":7229056,"type":"MarkLoad","usedHeapSize":1884564},{"data":{},"frameId":"2036.3","startTime":1348171819475.957,"totalHeapSize":7229056,"type":"MarkDOMContent","usedHeapSize":1884564},{"data":{"didFail":false,"requestId":"2036.20"},"frameId":"2036.3","startTime":1348171819475.957,"totalHeapSize":7229056,"type":"ResourceFinish","usedHeapSize":1884564},{"data":{"url":"http://a0.twimg.com/sticky/default_profile_images/default_profile_6_mini.png"},"frameId":"2036.1","startTime":1348171819475.957,"totalHeapSize":7229056,"type":"ScheduleResourceRequest","usedHeapSize":1884564},{"data":{"url":"http://a0.twimg.com/a/1348075398/images/bigger_spinner.gif"},"frameId":"2036.1","startTime":1348171819478.957,"totalHeapSize":7229056,"type":"ScheduleResourceRequest","usedHeapSize":1884564}],"data":{"endLine":4167,"length":192486,"startLine":27},"endTime":1348171819480.957,"frameId":"2036.1","startTime":1348171819434.957,"totalHeapSize":7229056,"type":"ParseHTML","usedHeapSize":1884564},{"data":{"didFail":false,"networkTime":1348171819392.957,"requestId":"2036.3"},"frameId":"2036.1","startTime":1348171819484.957,"totalHeapSize":7229056,"type":"ResourceFinish","usedHeapSize":1884564},{"children":[],"data":{"requestId":"2036.5"},"endTime":1348171819493.957,"frameId":"2036.1","startTime":1348171819493.957,"totalHeapSize":7229056,"type":"ResourceReceivedData","usedHeapSize":1884564},{"children":[],"data":{"requestId":"2036.5"},"endTime":1348171819493.957,"frameId":"2036.1","startTime":1348171819493.957,"totalHeapSize":7229056,"type":"ResourceReceivedData","usedHeapSize":1884564},{"children":[],"data":{"requestId":"2036.5"},"endTime":1348171819493.957,"frameId":"2036.1","startTime":1348171819493.957,"totalHeapSize":7229056,"type":"ResourceReceivedData","usedHeapSize":1884564},{"data":{"requestId":"2036.23","requestMethod":"GET","url":"http://a0.twimg.com/images/themes/theme14/bg.gif"},"frameId":"2036.1","startTime":1348171819493.957,"totalHeapSize":7229056,"type":"ResourceSendRequest","usedHeapSize":1884564},{"children":[{"children":[{"data":{"url":"http://a0.twimg.com/images/themes/theme14/bg.gif"},"frameId":"2036.1","startTime":1348171819493.957,"totalHeapSize":7229056,"type":"ScheduleResourceRequest","usedHeapSize":1884564}],"data":{},"endTime":1348171819507.957,"frameId":"2036.1","startTime":1348171819493.957,"totalHeapSize":7229056,"type":"RecalculateStyles","usedHeapSize":1884564}],"data":{},"endTime":1348171819538.957,"frameId":"2036.1","startTime":1348171819493.957,"totalHeapSize":7229056,"type":"Layout","usedHeapSize":1884564},{"children":[],"data":{"endLine":4167,"length":22264,"startLine":4167},"endTime":1348171819538.957,"frameId":"2036.1","startTime":1348171819538.957,"totalHeapSize":7229056,"type":"ParseHTML","usedHeapSize":1884564},{"children":[],"data":{"mimeType":"image/gif","requestId":"2036.8","statusCode":0},"endTime":1348171819538.957,"frameId":"2036.1","startTime":1348171819538.957,"totalHeapSize":7229056,"type":"ResourceReceiveResponse","usedHeapSize":1884564},{"children":[],"data":{"requestId":"2036.8"},"endTime":1348171819538.957,"frameId":"2036.1","startTime":1348171819538.957,"totalHeapSize":7229056,"type":"ResourceReceivedData","usedHeapSize":1884564},{"data":{"didFail":false,"networkTime":1348171819538.957,"requestId":"2036.8"},"frameId":"2036.1","startTime":1348171819538.957,"totalHeapSize":7229056,"type":"ResourceFinish","usedHeapSize":1884564},{"data":{},"startTime":1348171819540.957,"totalHeapSize":7229056,"type":"BeginFrame","usedHeapSize":1884564},{"children":[],"data":{"height":625,"width":997,"x":0,"y":0},"endTime":1348171819573.957,"frameId":"2036.1","startTime":1348171819542.957,"totalHeapSize":7229056,"type":"Paint","usedHeapSize":1884564},{"children":[],"data":{"requestId":"2036.5"},"endTime":1348171819577.957,"frameId":"2036.1","startTime":1348171819577.957,"totalHeapSize":7229056,"type":"ResourceReceivedData","usedHeapSize":1884564},{"children":[{"children":[],"data":{"endLine":0,"length":107,"startLine":0},"endTime":1348171819701.957,"frameId":"2036.1","stackTrace":[{"columnNumber":17440,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":21056,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":49847,"functionName":"","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171819701.957,"totalHeapSize":8244736,"type":"ParseHTML","usedHeapSize":2700712},{"children":[],"data":{"endLine":0,"length":1,"startLine":0},"endTime":1348171819703.957,"frameId":"2036.1","stackTrace":[{"columnNumber":17440,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":21056,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":49847,"functionName":"","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171819701.957,"totalHeapSize":8244736,"type":"ParseHTML","usedHeapSize":2700864},{"children":[],"data":{"endLine":0,"length":0,"startLine":0},"endTime":1348171819705.957,"frameId":"2036.1","stackTrace":[{"columnNumber":19026,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":21056,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":49847,"functionName":"","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171819705.957,"totalHeapSize":8244736,"type":"ParseHTML","usedHeapSize":2788012},{"children":[],"data":{"endLine":0,"length":1,"startLine":0},"endTime":1348171819705.957,"frameId":"2036.1","stackTrace":[{"columnNumber":19026,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":21056,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":49847,"functionName":"","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171819705.957,"totalHeapSize":8244736,"type":"ParseHTML","usedHeapSize":2788164},{"children":[],"data":{"endLine":0,"length":31,"startLine":0},"endTime":1348171819708.957,"frameId":"2036.1","stackTrace":[{"columnNumber":11356,"functionName":"","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":11812,"functionName":"","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14996,"functionName":"","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":49847,"functionName":"","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171819708.957,"totalHeapSize":8244736,"type":"ParseHTML","usedHeapSize":3058672},{"children":[],"data":{"endLine":0,"length":1,"startLine":0},"endTime":1348171819708.957,"frameId":"2036.1","stackTrace":[{"columnNumber":11356,"functionName":"","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":11812,"functionName":"","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14996,"functionName":"","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":49847,"functionName":"","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171819708.957,"totalHeapSize":8244736,"type":"ParseHTML","usedHeapSize":3058860},{"children":[],"data":{"endLine":0,"length":16,"startLine":0},"endTime":1348171819708.957,"frameId":"2036.1","stackTrace":[{"columnNumber":12092,"functionName":"c.querySelectorAll.a","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":12286,"functionName":"","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14996,"functionName":"","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":49847,"functionName":"","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171819708.957,"totalHeapSize":8244736,"type":"ParseHTML","usedHeapSize":3062452},{"children":[],"data":{"endLine":0,"length":1,"startLine":0},"endTime":1348171819709.957,"frameId":"2036.1","stackTrace":[{"columnNumber":12092,"functionName":"c.querySelectorAll.a","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":12286,"functionName":"","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14996,"functionName":"","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":49847,"functionName":"","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171819708.957,"totalHeapSize":8244736,"type":"ParseHTML","usedHeapSize":3062640},{"children":[],"data":{"endLine":0,"length":20,"startLine":0},"endTime":1348171819709.957,"frameId":"2036.1","stackTrace":[{"columnNumber":12379,"functionName":"a","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":13335,"functionName":"","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14996,"functionName":"","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":49847,"functionName":"","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171819709.957,"totalHeapSize":8244736,"type":"ParseHTML","usedHeapSize":3062956},{"children":[],"data":{"endLine":0,"length":1,"startLine":0},"endTime":1348171819709.957,"frameId":"2036.1","stackTrace":[{"columnNumber":12379,"functionName":"a","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":13335,"functionName":"","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14996,"functionName":"","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":49847,"functionName":"","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171819709.957,"totalHeapSize":8244736,"type":"ParseHTML","usedHeapSize":3063144},{"children":[],"data":{"endLine":0,"length":50,"startLine":0},"endTime":1348171819709.957,"frameId":"2036.1","stackTrace":[{"columnNumber":13899,"functionName":"c.documentElement.contains.n.contains","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14263,"functionName":"","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14996,"functionName":"","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":49847,"functionName":"","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171819709.957,"totalHeapSize":8244736,"type":"ParseHTML","usedHeapSize":3088876},{"children":[],"data":{"endLine":0,"length":1,"startLine":0},"endTime":1348171819709.957,"frameId":"2036.1","stackTrace":[{"columnNumber":13899,"functionName":"c.documentElement.contains.n.contains","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14263,"functionName":"","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14996,"functionName":"","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":49847,"functionName":"","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171819709.957,"totalHeapSize":8244736,"type":"ParseHTML","usedHeapSize":3089064}],"data":{"lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171819716.957,"frameId":"2036.1","startTime":1348171819577.957,"totalHeapSize":8244736,"type":"EvaluateScript","usedHeapSize":3651476},{"data":{"requestId":"2036.24","requestMethod":"GET","url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},"frameId":"2036.1","stackTrace":[{"columnNumber":12982,"functionName":"A.scriptTagTransport","lineNumber":9,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":11652,"functionName":"z.start","lineNumber":9,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14146,"functionName":"C.start","lineNumber":9,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":11312,"functionName":"z.then","lineNumber":9,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":13508,"functionName":"B.start","lineNumber":9,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171819720.957,"totalHeapSize":8244736,"type":"ResourceSendRequest","usedHeapSize":3787064},{"children":[{"children":[{"data":{"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},"frameId":"2036.1","stackTrace":[{"columnNumber":12982,"functionName":"A.scriptTagTransport","lineNumber":9,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":11652,"functionName":"z.start","lineNumber":9,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14146,"functionName":"C.start","lineNumber":9,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":11312,"functionName":"z.then","lineNumber":9,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":13508,"functionName":"B.start","lineNumber":9,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171819721.957,"totalHeapSize":8244736,"type":"ScheduleResourceRequest","usedHeapSize":3788652}],"data":{"lineNumber":4169,"url":"http://twitter.com/marcelduran"},"endTime":1348171819721.957,"frameId":"2036.1","startTime":1348171819718.957,"totalHeapSize":8244736,"type":"EvaluateScript","usedHeapSize":3789112}],"data":{"endLine":4198,"length":22264,"startLine":4167},"endTime":1348171819721.957,"frameId":"2036.1","startTime":1348171819718.957,"totalHeapSize":8244736,"type":"ParseHTML","usedHeapSize":3789112},{"children":[],"data":{"endLine":4198,"length":0,"startLine":4198},"endTime":1348171819721.957,"frameId":"2036.1","startTime":1348171819721.957,"totalHeapSize":8244736,"type":"ParseHTML","usedHeapSize":3789112},{"children":[{"children":[{"children":[],"data":{"endLine":0,"length":83,"startLine":0},"endTime":1348171819721.957,"frameId":"2036.1","stackTrace":[{"columnNumber":19985,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14845,"functionName":"f.Callbacks.o","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":15621,"functionName":"f.Callbacks.p.fireWith","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":9832,"functionName":"e.extend.ready","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14416,"functionName":"c.addEventListener.C","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171819721.957,"totalHeapSize":8244736,"type":"ParseHTML","usedHeapSize":3808216},{"children":[],"data":{"endLine":0,"length":1,"startLine":0},"endTime":1348171819721.957,"frameId":"2036.1","stackTrace":[{"columnNumber":19985,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14845,"functionName":"f.Callbacks.o","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":15621,"functionName":"f.Callbacks.p.fireWith","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":9832,"functionName":"e.extend.ready","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14416,"functionName":"c.addEventListener.C","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171819721.957,"totalHeapSize":8244736,"type":"ParseHTML","usedHeapSize":3808440},{"children":[],"data":{},"endTime":1348171819722.957,"frameId":"2036.1","stackTrace":[{"columnNumber":20109,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14845,"functionName":"f.Callbacks.o","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":15621,"functionName":"f.Callbacks.p.fireWith","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":9832,"functionName":"e.extend.ready","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14416,"functionName":"c.addEventListener.C","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171819721.957,"totalHeapSize":8244736,"type":"RecalculateStyles","usedHeapSize":3816032},{"children":[],"data":{},"endTime":1348171819723.957,"frameId":"2036.1","stackTrace":[{"columnNumber":20109,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14845,"functionName":"f.Callbacks.o","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":15621,"functionName":"f.Callbacks.p.fireWith","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":9832,"functionName":"e.extend.ready","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14416,"functionName":"c.addEventListener.C","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171819722.957,"totalHeapSize":8244736,"type":"Layout","usedHeapSize":3816256},{"children":[],"data":{},"endTime":1348171819723.957,"frameId":"2036.1","stackTrace":[{"columnNumber":20206,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14845,"functionName":"f.Callbacks.o","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":15621,"functionName":"f.Callbacks.p.fireWith","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":9832,"functionName":"e.extend.ready","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14416,"functionName":"c.addEventListener.C","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171819723.957,"totalHeapSize":8244736,"type":"RecalculateStyles","usedHeapSize":3817684},{"children":[],"data":{},"endTime":1348171819723.957,"frameId":"2036.1","stackTrace":[{"columnNumber":20206,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14845,"functionName":"f.Callbacks.o","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":15621,"functionName":"f.Callbacks.p.fireWith","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":9832,"functionName":"e.extend.ready","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14416,"functionName":"c.addEventListener.C","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171819723.957,"totalHeapSize":8244736,"type":"Layout","usedHeapSize":3817908},{"children":[],"data":{"endLine":0,"length":0,"startLine":0},"endTime":1348171819723.957,"frameId":"2036.1","stackTrace":[{"columnNumber":20235,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14845,"functionName":"f.Callbacks.o","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":15621,"functionName":"f.Callbacks.p.fireWith","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":9832,"functionName":"e.extend.ready","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14416,"functionName":"c.addEventListener.C","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171819723.957,"totalHeapSize":8244736,"type":"ParseHTML","usedHeapSize":3818876},{"children":[],"data":{"endLine":0,"length":1,"startLine":0},"endTime":1348171819723.957,"frameId":"2036.1","stackTrace":[{"columnNumber":20235,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14845,"functionName":"f.Callbacks.o","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":15621,"functionName":"f.Callbacks.p.fireWith","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":9832,"functionName":"e.extend.ready","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14416,"functionName":"c.addEventListener.C","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171819723.957,"totalHeapSize":8244736,"type":"ParseHTML","usedHeapSize":3819100},{"children":[],"data":{},"endTime":1348171819723.957,"frameId":"2036.1","stackTrace":[{"columnNumber":20302,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14845,"functionName":"f.Callbacks.o","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":15621,"functionName":"f.Callbacks.p.fireWith","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":9832,"functionName":"e.extend.ready","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14416,"functionName":"c.addEventListener.C","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171819723.957,"totalHeapSize":8244736,"type":"RecalculateStyles","usedHeapSize":3820552},{"children":[],"data":{},"endTime":1348171819724.957,"frameId":"2036.1","stackTrace":[{"columnNumber":20302,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14845,"functionName":"f.Callbacks.o","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":15621,"functionName":"f.Callbacks.p.fireWith","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":9832,"functionName":"e.extend.ready","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14416,"functionName":"c.addEventListener.C","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171819723.957,"totalHeapSize":8244736,"type":"Layout","usedHeapSize":3820776},{"children":[],"data":{},"endTime":1348171819724.957,"frameId":"2036.1","stackTrace":[{"columnNumber":20420,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14845,"functionName":"f.Callbacks.o","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":15621,"functionName":"f.Callbacks.p.fireWith","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":9832,"functionName":"e.extend.ready","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14416,"functionName":"c.addEventListener.C","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171819724.957,"totalHeapSize":8244736,"type":"RecalculateStyles","usedHeapSize":3822912},{"children":[],"data":{},"endTime":1348171819724.957,"frameId":"2036.1","stackTrace":[{"columnNumber":20420,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14845,"functionName":"f.Callbacks.o","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":15621,"functionName":"f.Callbacks.p.fireWith","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":9832,"functionName":"e.extend.ready","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14416,"functionName":"c.addEventListener.C","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171819724.957,"totalHeapSize":8244736,"type":"Layout","usedHeapSize":3823136},{"children":[],"data":{"endLine":0,"length":30,"startLine":0},"endTime":1348171819724.957,"frameId":"2036.1","stackTrace":[{"columnNumber":20467,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14845,"functionName":"f.Callbacks.o","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":15621,"functionName":"f.Callbacks.p.fireWith","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":9832,"functionName":"e.extend.ready","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14416,"functionName":"c.addEventListener.C","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171819724.957,"totalHeapSize":8244736,"type":"ParseHTML","usedHeapSize":3824564},{"children":[],"data":{"endLine":0,"length":1,"startLine":0},"endTime":1348171819724.957,"frameId":"2036.1","stackTrace":[{"columnNumber":20467,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14845,"functionName":"f.Callbacks.o","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":15621,"functionName":"f.Callbacks.p.fireWith","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":9832,"functionName":"e.extend.ready","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14416,"functionName":"c.addEventListener.C","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171819724.957,"totalHeapSize":8244736,"type":"ParseHTML","usedHeapSize":3824788},{"children":[],"data":{},"endTime":1348171819726.957,"frameId":"2036.1","stackTrace":[{"columnNumber":20521,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14845,"functionName":"f.Callbacks.o","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":15621,"functionName":"f.Callbacks.p.fireWith","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":9832,"functionName":"e.extend.ready","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14416,"functionName":"c.addEventListener.C","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171819724.957,"totalHeapSize":8244736,"type":"RecalculateStyles","usedHeapSize":3825012},{"children":[],"data":{},"endTime":1348171819726.957,"frameId":"2036.1","stackTrace":[{"columnNumber":20521,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14845,"functionName":"f.Callbacks.o","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":15621,"functionName":"f.Callbacks.p.fireWith","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":9832,"functionName":"e.extend.ready","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14416,"functionName":"c.addEventListener.C","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171819726.957,"totalHeapSize":8244736,"type":"Layout","usedHeapSize":3825236},{"children":[],"data":{"endLine":0,"length":291,"startLine":0},"endTime":1348171819727.957,"frameId":"2036.1","stackTrace":[{"columnNumber":20570,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14845,"functionName":"f.Callbacks.o","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":15621,"functionName":"f.Callbacks.p.fireWith","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":9832,"functionName":"e.extend.ready","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14416,"functionName":"c.addEventListener.C","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171819726.957,"totalHeapSize":8244736,"type":"ParseHTML","usedHeapSize":3826680},{"children":[],"data":{"endLine":0,"length":1,"startLine":0},"endTime":1348171819727.957,"frameId":"2036.1","stackTrace":[{"columnNumber":20570,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14845,"functionName":"f.Callbacks.o","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":15621,"functionName":"f.Callbacks.p.fireWith","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":9832,"functionName":"e.extend.ready","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14416,"functionName":"c.addEventListener.C","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171819727.957,"totalHeapSize":8244736,"type":"ParseHTML","usedHeapSize":3826904},{"children":[],"data":{},"endTime":1348171819727.957,"frameId":"2036.1","stackTrace":[{"columnNumber":20662,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14845,"functionName":"f.Callbacks.o","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":15621,"functionName":"f.Callbacks.p.fireWith","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":9832,"functionName":"e.extend.ready","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14416,"functionName":"c.addEventListener.C","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171819727.957,"totalHeapSize":8244736,"type":"RecalculateStyles","usedHeapSize":3856124},{"children":[],"data":{},"endTime":1348171819727.957,"frameId":"2036.1","stackTrace":[{"columnNumber":20662,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14845,"functionName":"f.Callbacks.o","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":15621,"functionName":"f.Callbacks.p.fireWith","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":9832,"functionName":"e.extend.ready","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14416,"functionName":"c.addEventListener.C","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171819727.957,"totalHeapSize":8244736,"type":"Layout","usedHeapSize":3856348},{"children":[],"data":{},"endTime":1348171819727.957,"frameId":"2036.1","stackTrace":[{"columnNumber":20785,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14845,"functionName":"f.Callbacks.o","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":15621,"functionName":"f.Callbacks.p.fireWith","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":9832,"functionName":"e.extend.ready","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14416,"functionName":"c.addEventListener.C","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171819727.957,"totalHeapSize":8244736,"type":"RecalculateStyles","usedHeapSize":3858368},{"children":[],"data":{},"endTime":1348171819727.957,"frameId":"2036.1","stackTrace":[{"columnNumber":20785,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14845,"functionName":"f.Callbacks.o","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":15621,"functionName":"f.Callbacks.p.fireWith","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":9832,"functionName":"e.extend.ready","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14416,"functionName":"c.addEventListener.C","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171819727.957,"totalHeapSize":8244736,"type":"Layout","usedHeapSize":3858592},{"children":[],"data":{},"endTime":1348171819727.957,"frameId":"2036.1","stackTrace":[{"columnNumber":20945,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14845,"functionName":"f.Callbacks.o","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":15621,"functionName":"f.Callbacks.p.fireWith","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":9832,"functionName":"e.extend.ready","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14416,"functionName":"c.addEventListener.C","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171819727.957,"totalHeapSize":8244736,"type":"RecalculateStyles","usedHeapSize":3860144},{"children":[],"data":{},"endTime":1348171819727.957,"frameId":"2036.1","stackTrace":[{"columnNumber":20945,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14845,"functionName":"f.Callbacks.o","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":15621,"functionName":"f.Callbacks.p.fireWith","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":9832,"functionName":"e.extend.ready","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14416,"functionName":"c.addEventListener.C","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171819727.957,"totalHeapSize":8244736,"type":"Layout","usedHeapSize":3860368}],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171819727.957,"frameId":"2036.1","startTime":1348171819721.957,"totalHeapSize":8244736,"type":"FunctionCall","usedHeapSize":3872796}],"data":{"type":"DOMContentLoaded"},"endTime":1348171819727.957,"frameId":"2036.1","startTime":1348171819721.957,"totalHeapSize":8244736,"type":"EventDispatch","usedHeapSize":3872796},{"data":{},"frameId":"2036.1","startTime":1348171819735.957,"totalHeapSize":8244736,"type":"MarkDOMContent","usedHeapSize":3872796},{"data":{"didFail":false,"networkTime":1348171819492.957,"requestId":"2036.5"},"frameId":"2036.1","startTime":1348171819735.957,"totalHeapSize":8244736,"type":"ResourceFinish","usedHeapSize":3872796},{"children":[],"data":{},"endTime":1348171819736.957,"frameId":"2036.3","startTime":1348171819736.957,"totalHeapSize":8244736,"type":"Layout","usedHeapSize":3872796},{"children":[],"data":{},"endTime":1348171819740.957,"frameId":"2036.1","startTime":1348171819736.957,"totalHeapSize":8244736,"type":"Layout","usedHeapSize":3872796},{"data":{},"startTime":1348171819740.957,"totalHeapSize":8244736,"type":"BeginFrame","usedHeapSize":3872796},{"children":[],"data":{"height":625,"width":997,"x":0,"y":0},"endTime":1348171819746.957,"frameId":"2036.1","startTime":1348171819741.957,"totalHeapSize":8244736,"type":"Paint","usedHeapSize":3872796},{"children":[],"data":{"mimeType":"image/png","requestId":"2036.6","statusCode":200},"endTime":1348171819748.957,"frameId":"2036.1","startTime":1348171819748.957,"totalHeapSize":8244736,"type":"ResourceReceiveResponse","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.6"},"endTime":1348171819750.957,"frameId":"2036.1","startTime":1348171819750.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"children":[],"data":{"mimeType":"image/png","requestId":"2036.9","statusCode":200},"endTime":1348171819750.957,"frameId":"2036.1","startTime":1348171819750.957,"totalHeapSize":8244736,"type":"ResourceReceiveResponse","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.9"},"endTime":1348171819750.957,"frameId":"2036.1","startTime":1348171819750.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.9"},"endTime":1348171819750.957,"frameId":"2036.1","startTime":1348171819750.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.9"},"endTime":1348171819750.957,"frameId":"2036.1","startTime":1348171819750.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"data":{"didFail":false,"networkTime":1348171819750.957,"requestId":"2036.9"},"frameId":"2036.1","startTime":1348171819750.957,"totalHeapSize":8244736,"type":"ResourceFinish","usedHeapSize":3872796},{"children":[],"data":{"mimeType":"image/png","requestId":"2036.7","statusCode":200},"endTime":1348171819750.957,"frameId":"2036.1","startTime":1348171819750.957,"totalHeapSize":8244736,"type":"ResourceReceiveResponse","usedHeapSize":3872796},{"children":[],"data":{"mimeType":"image/jpeg","requestId":"2036.10","statusCode":200},"endTime":1348171819750.957,"frameId":"2036.1","startTime":1348171819750.957,"totalHeapSize":8244736,"type":"ResourceReceiveResponse","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.7"},"endTime":1348171819751.957,"frameId":"2036.1","startTime":1348171819750.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.10"},"endTime":1348171819751.957,"frameId":"2036.1","startTime":1348171819751.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"data":{"didFail":false,"networkTime":1348171819750.957,"requestId":"2036.10"},"frameId":"2036.1","startTime":1348171819751.957,"totalHeapSize":8244736,"type":"ResourceFinish","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.6"},"endTime":1348171819751.957,"frameId":"2036.1","startTime":1348171819751.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"data":{"didFail":false,"networkTime":1348171819748.957,"requestId":"2036.6"},"frameId":"2036.1","startTime":1348171819751.957,"totalHeapSize":8244736,"type":"ResourceFinish","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.7"},"endTime":1348171819751.957,"frameId":"2036.1","startTime":1348171819751.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.7"},"endTime":1348171819759.957,"frameId":"2036.1","startTime":1348171819751.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.7"},"endTime":1348171819759.957,"frameId":"2036.1","startTime":1348171819759.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.7"},"endTime":1348171819759.957,"frameId":"2036.1","startTime":1348171819759.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.7"},"endTime":1348171819759.957,"frameId":"2036.1","startTime":1348171819759.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.7"},"endTime":1348171819761.957,"frameId":"2036.1","startTime":1348171819760.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.7"},"endTime":1348171819761.957,"frameId":"2036.1","startTime":1348171819761.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"data":{},"startTime":1348171819761.957,"totalHeapSize":8244736,"type":"BeginFrame","usedHeapSize":3872796},{"children":[],"data":{"height":625,"width":997,"x":0,"y":0},"endTime":1348171819777.957,"frameId":"2036.1","startTime":1348171819763.957,"totalHeapSize":8244736,"type":"Paint","usedHeapSize":3872796},{"children":[],"data":{"mimeType":"image/png","requestId":"2036.12","statusCode":200},"endTime":1348171819779.957,"frameId":"2036.1","startTime":1348171819779.957,"totalHeapSize":8244736,"type":"ResourceReceiveResponse","usedHeapSize":3872796},{"children":[],"data":{"mimeType":"image/jpeg","requestId":"2036.11","statusCode":200},"endTime":1348171819780.957,"frameId":"2036.1","startTime":1348171819780.957,"totalHeapSize":8244736,"type":"ResourceReceiveResponse","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.12"},"endTime":1348171819780.957,"frameId":"2036.1","startTime":1348171819780.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.11"},"endTime":1348171819780.957,"frameId":"2036.1","startTime":1348171819780.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.12"},"endTime":1348171819780.957,"frameId":"2036.1","startTime":1348171819780.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"data":{"didFail":false,"networkTime":1348171819779.957,"requestId":"2036.12"},"frameId":"2036.1","startTime":1348171819780.957,"totalHeapSize":8244736,"type":"ResourceFinish","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.11"},"endTime":1348171819780.957,"frameId":"2036.1","startTime":1348171819780.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"data":{"didFail":false,"networkTime":1348171819780.957,"requestId":"2036.11"},"frameId":"2036.1","startTime":1348171819780.957,"totalHeapSize":8244736,"type":"ResourceFinish","usedHeapSize":3872796},{"data":{},"startTime":1348171819780.957,"totalHeapSize":8244736,"type":"BeginFrame","usedHeapSize":3872796},{"children":[],"data":{"height":48,"width":48,"x":408,"y":387},"endTime":1348171819780.957,"frameId":"2036.1","startTime":1348171819780.957,"totalHeapSize":8244736,"type":"Paint","usedHeapSize":3872796},{"children":[],"data":{"height":48,"width":48,"x":408,"y":276},"endTime":1348171819780.957,"frameId":"2036.1","startTime":1348171819780.957,"totalHeapSize":8244736,"type":"Paint","usedHeapSize":3872796},{"children":[],"data":{"mimeType":"image/jpeg","requestId":"2036.13","statusCode":200},"endTime":1348171819787.957,"frameId":"2036.1","startTime":1348171819787.957,"totalHeapSize":8244736,"type":"ResourceReceiveResponse","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.13"},"endTime":1348171819788.957,"frameId":"2036.1","startTime":1348171819788.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.13"},"endTime":1348171819788.957,"frameId":"2036.1","startTime":1348171819788.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"data":{"didFail":false,"networkTime":1348171819787.957,"requestId":"2036.13"},"frameId":"2036.1","startTime":1348171819788.957,"totalHeapSize":8244736,"type":"ResourceFinish","usedHeapSize":3872796},{"data":{},"startTime":1348171819788.957,"totalHeapSize":8244736,"type":"BeginFrame","usedHeapSize":3872796},{"children":[],"data":{"height":48,"width":48,"x":408,"y":480},"endTime":1348171819789.957,"frameId":"2036.1","startTime":1348171819788.957,"totalHeapSize":8244736,"type":"Paint","usedHeapSize":3872796},{"children":[],"data":{"height":34,"width":48,"x":408,"y":591},"endTime":1348171819789.957,"frameId":"2036.1","startTime":1348171819789.957,"totalHeapSize":8244736,"type":"Paint","usedHeapSize":3872796},{"children":[],"data":{"mimeType":"image/jpeg","requestId":"2036.14","statusCode":200},"endTime":1348171819810.957,"frameId":"2036.1","startTime":1348171819810.957,"totalHeapSize":8244736,"type":"ResourceReceiveResponse","usedHeapSize":3872796},{"children":[],"data":{"mimeType":"image/png","requestId":"2036.15","statusCode":200},"endTime":1348171819810.957,"frameId":"2036.1","startTime":1348171819810.957,"totalHeapSize":8244736,"type":"ResourceReceiveResponse","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.14"},"endTime":1348171819810.957,"frameId":"2036.1","startTime":1348171819810.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.15"},"endTime":1348171819810.957,"frameId":"2036.1","startTime":1348171819810.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"data":{"didFail":false,"networkTime":1348171819810.957,"requestId":"2036.15"},"frameId":"2036.1","startTime":1348171819810.957,"totalHeapSize":8244736,"type":"ResourceFinish","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.14"},"endTime":1348171819820.957,"frameId":"2036.1","startTime":1348171819820.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"data":{"didFail":false,"networkTime":1348171819812.957,"requestId":"2036.14"},"frameId":"2036.1","startTime":1348171819820.957,"totalHeapSize":8244736,"type":"ResourceFinish","usedHeapSize":3872796},{"children":[],"data":{"mimeType":"image/jpeg","requestId":"2036.16","statusCode":200},"endTime":1348171819900.957,"frameId":"2036.1","startTime":1348171819900.957,"totalHeapSize":8244736,"type":"ResourceReceiveResponse","usedHeapSize":3872796},{"children":[],"data":{"mimeType":"application/javascript","requestId":"2036.24","statusCode":200},"endTime":1348171819900.957,"frameId":"2036.1","startTime":1348171819900.957,"totalHeapSize":8244736,"type":"ResourceReceiveResponse","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.16"},"endTime":1348171819900.957,"frameId":"2036.1","startTime":1348171819900.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"data":{"didFail":false,"networkTime":1348171819900.957,"requestId":"2036.16"},"frameId":"2036.1","startTime":1348171819900.957,"totalHeapSize":8244736,"type":"ResourceFinish","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.24"},"endTime":1348171819900.957,"frameId":"2036.1","startTime":1348171819900.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"children":[],"data":{"mimeType":"image/png","requestId":"2036.18","statusCode":200},"endTime":1348171819959.957,"frameId":"2036.1","startTime":1348171819959.957,"totalHeapSize":8244736,"type":"ResourceReceiveResponse","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.18"},"endTime":1348171819959.957,"frameId":"2036.1","startTime":1348171819959.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"children":[],"data":{"mimeType":"image/jpeg","requestId":"2036.17","statusCode":200},"endTime":1348171819985.957,"frameId":"2036.1","startTime":1348171819985.957,"totalHeapSize":8244736,"type":"ResourceReceiveResponse","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.17"},"endTime":1348171819985.957,"frameId":"2036.1","startTime":1348171819985.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.17"},"endTime":1348171819985.957,"frameId":"2036.1","startTime":1348171819985.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"children":[],"data":{"mimeType":"image/gif","requestId":"2036.19","statusCode":200},"endTime":1348171819989.957,"frameId":"2036.1","startTime":1348171819989.957,"totalHeapSize":8244736,"type":"ResourceReceiveResponse","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.19"},"endTime":1348171819989.957,"frameId":"2036.1","startTime":1348171819989.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.18"},"endTime":1348171819995.957,"frameId":"2036.1","startTime":1348171819995.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.24"},"endTime":1348171820005.957,"frameId":"2036.1","startTime":1348171820005.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"children":[],"data":{"mimeType":"image/png","requestId":"2036.21","statusCode":200},"endTime":1348171820031.957,"frameId":"2036.1","startTime":1348171820031.957,"totalHeapSize":8244736,"type":"ResourceReceiveResponse","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.21"},"endTime":1348171820031.957,"frameId":"2036.1","startTime":1348171820031.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"data":{"didFail":false,"networkTime":1348171820031.957,"requestId":"2036.21"},"frameId":"2036.1","startTime":1348171820031.957,"totalHeapSize":8244736,"type":"ResourceFinish","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.18"},"endTime":1348171820031.957,"frameId":"2036.1","startTime":1348171820031.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"data":{"didFail":false,"networkTime":1348171820025.957,"requestId":"2036.18"},"frameId":"2036.1","startTime":1348171820031.957,"totalHeapSize":8244736,"type":"ResourceFinish","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.17"},"endTime":1348171820048.957,"frameId":"2036.1","startTime":1348171820048.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"data":{"didFail":false,"networkTime":1348171820042.957,"requestId":"2036.17"},"frameId":"2036.1","startTime":1348171820050.957,"totalHeapSize":8244736,"type":"ResourceFinish","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.19"},"endTime":1348171820056.957,"frameId":"2036.1","startTime":1348171820056.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"data":{"didFail":false,"networkTime":1348171820050.957,"requestId":"2036.19"},"frameId":"2036.1","startTime":1348171820056.957,"totalHeapSize":8244736,"type":"ResourceFinish","usedHeapSize":3872796},{"children":[],"data":{"mimeType":"image/gif","requestId":"2036.23","statusCode":200},"endTime":1348171820159.957,"frameId":"2036.1","startTime":1348171820159.957,"totalHeapSize":8244736,"type":"ResourceReceiveResponse","usedHeapSize":3872796},{"children":[],"data":{"mimeType":"image/gif","requestId":"2036.22","statusCode":200},"endTime":1348171820160.957,"frameId":"2036.1","startTime":1348171820160.957,"totalHeapSize":8244736,"type":"ResourceReceiveResponse","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.23"},"endTime":1348171820160.957,"frameId":"2036.1","startTime":1348171820160.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"data":{"didFail":false,"networkTime":1348171820158.957,"requestId":"2036.23"},"frameId":"2036.1","startTime":1348171820160.957,"totalHeapSize":8244736,"type":"ResourceFinish","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.22"},"endTime":1348171820160.957,"frameId":"2036.1","startTime":1348171820160.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"data":{},"startTime":1348171820160.957,"totalHeapSize":8244736,"type":"BeginFrame","usedHeapSize":3872796},{"children":[],"data":{"height":625,"width":997,"x":0,"y":0},"endTime":1348171820173.957,"frameId":"2036.1","startTime":1348171820161.957,"totalHeapSize":8244736,"type":"Paint","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.22"},"endTime":1348171820204.957,"frameId":"2036.1","startTime":1348171820204.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"data":{"didFail":false,"networkTime":1348171820198.957,"requestId":"2036.22"},"frameId":"2036.1","startTime":1348171820204.957,"totalHeapSize":8244736,"type":"ResourceFinish","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.7"},"endTime":1348171820214.957,"frameId":"2036.1","startTime":1348171820214.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.7"},"endTime":1348171820215.957,"frameId":"2036.1","startTime":1348171820215.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"data":{},"startTime":1348171820215.957,"totalHeapSize":8244736,"type":"BeginFrame","usedHeapSize":3872796},{"children":[],"data":{"height":607,"width":747,"x":80,"y":9},"endTime":1348171820232.957,"frameId":"2036.1","startTime":1348171820216.957,"totalHeapSize":8244736,"type":"Paint","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.24"},"endTime":1348171820252.957,"frameId":"2036.1","startTime":1348171820252.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.24"},"endTime":1348171820252.957,"frameId":"2036.1","startTime":1348171820252.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.24"},"endTime":1348171820252.957,"frameId":"2036.1","startTime":1348171820252.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.7"},"endTime":1348171820306.957,"frameId":"2036.1","startTime":1348171820306.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"data":{},"startTime":1348171820306.957,"totalHeapSize":8244736,"type":"BeginFrame","usedHeapSize":3872796},{"children":[],"data":{"height":607,"width":747,"x":80,"y":9},"endTime":1348171820317.957,"frameId":"2036.1","startTime":1348171820307.957,"totalHeapSize":8244736,"type":"Paint","usedHeapSize":3872796},{"children":[],"data":{"requestId":"2036.24"},"endTime":1348171820319.957,"frameId":"2036.1","startTime":1348171820319.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3872796},{"data":{"didFail":false,"networkTime":1348171820311.957,"requestId":"2036.24"},"frameId":"2036.1","startTime":1348171820319.957,"totalHeapSize":8244736,"type":"ResourceFinish","usedHeapSize":3872796},{"data":{},"startTime":1348171820319.957,"totalHeapSize":8244736,"type":"BeginFrame","usedHeapSize":3872796},{"children":[{"data":{"usedHeapSizeDelta":445592},"endTime":1348171820324.957,"startTime":1348171820322.957,"totalHeapSize":8244736,"type":"GCEvent","usedHeapSize":3464784}],"data":{"lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},"endTime":1348171820325.957,"frameId":"2036.1","startTime":1348171820319.957,"totalHeapSize":8244736,"type":"EvaluateScript","usedHeapSize":3464784},{"data":{"requestId":"2036.25","requestMethod":"GET","url":"http://a0.twimg.com/c/swift/en/bundle/timeline.97b730c52dbf7c6aebe75ee2a31e060da3c4e4b8.js"},"frameId":"2036.1","stackTrace":[{"columnNumber":12982,"functionName":"A.scriptTagTransport","lineNumber":9,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":11652,"functionName":"z.start","lineNumber":9,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14146,"functionName":"C.start","lineNumber":9,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":11312,"functionName":"z.then","lineNumber":9,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":13508,"functionName":"B.start","lineNumber":9,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171820332.957,"totalHeapSize":8244736,"type":"ResourceSendRequest","usedHeapSize":3727012},{"children":[{"children":[{"data":{"url":"http://a0.twimg.com/c/swift/en/bundle/timeline.97b730c52dbf7c6aebe75ee2a31e060da3c4e4b8.js"},"frameId":"2036.1","stackTrace":[{"columnNumber":12982,"functionName":"A.scriptTagTransport","lineNumber":9,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":11652,"functionName":"z.start","lineNumber":9,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14146,"functionName":"C.start","lineNumber":9,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":11312,"functionName":"z.then","lineNumber":9,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":13508,"functionName":"B.start","lineNumber":9,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171820333.957,"totalHeapSize":8244736,"type":"ScheduleResourceRequest","usedHeapSize":3730148}],"data":{"scriptLine":9,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171820333.957,"frameId":"2036.1","startTime":1348171820325.957,"totalHeapSize":8244736,"type":"FunctionCall","usedHeapSize":3734144}],"data":{"type":"load"},"endTime":1348171820333.957,"frameId":"2036.1","startTime":1348171820325.957,"totalHeapSize":8244736,"type":"EventDispatch","usedHeapSize":3734144},{"data":{},"startTime":1348171820335.957,"totalHeapSize":8244736,"type":"BeginFrame","usedHeapSize":3734144},{"children":[],"data":{},"endTime":1348171820335.957,"frameId":"2036.1","startTime":1348171820335.957,"totalHeapSize":8244736,"type":"RecalculateStyles","usedHeapSize":3734144},{"children":[],"data":{"requestId":"2036.7"},"endTime":1348171820387.957,"frameId":"2036.1","startTime":1348171820387.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3734144},{"data":{"didFail":false,"networkTime":1348171820379.957,"requestId":"2036.7"},"frameId":"2036.1","startTime":1348171820387.957,"totalHeapSize":8244736,"type":"ResourceFinish","usedHeapSize":3734144},{"data":{},"startTime":1348171820387.957,"totalHeapSize":8244736,"type":"BeginFrame","usedHeapSize":3734144},{"children":[],"data":{"height":607,"width":747,"x":80,"y":9},"endTime":1348171820404.957,"frameId":"2036.1","startTime":1348171820387.957,"totalHeapSize":8244736,"type":"Paint","usedHeapSize":3734144},{"children":[],"data":{"mimeType":"application/javascript","requestId":"2036.25","statusCode":200},"endTime":1348171820465.957,"frameId":"2036.1","startTime":1348171820465.957,"totalHeapSize":8244736,"type":"ResourceReceiveResponse","usedHeapSize":3734144},{"children":[],"data":{"requestId":"2036.25"},"endTime":1348171820465.957,"frameId":"2036.1","startTime":1348171820465.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3734144},{"children":[],"data":{"requestId":"2036.25"},"endTime":1348171820465.957,"frameId":"2036.1","startTime":1348171820465.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3734144},{"children":[],"data":{"requestId":"2036.25"},"endTime":1348171820484.957,"frameId":"2036.1","startTime":1348171820484.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3734144},{"children":[],"data":{"requestId":"2036.25"},"endTime":1348171820490.957,"frameId":"2036.1","startTime":1348171820490.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3734144},{"children":[],"data":{"requestId":"2036.25"},"endTime":1348171820507.957,"frameId":"2036.1","startTime":1348171820506.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3734144},{"children":[],"data":{"requestId":"2036.25"},"endTime":1348171820513.957,"frameId":"2036.1","startTime":1348171820513.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3734144},{"children":[],"data":{"requestId":"2036.25"},"endTime":1348171820520.957,"frameId":"2036.1","startTime":1348171820520.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3734144},{"children":[],"data":{"requestId":"2036.25"},"endTime":1348171820558.957,"frameId":"2036.1","startTime":1348171820558.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3734144},{"children":[],"data":{"requestId":"2036.25"},"endTime":1348171820564.957,"frameId":"2036.1","startTime":1348171820564.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3734144},{"children":[],"data":{"requestId":"2036.25"},"endTime":1348171820587.957,"frameId":"2036.1","startTime":1348171820587.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3734144},{"children":[],"data":{"requestId":"2036.25"},"endTime":1348171820595.957,"frameId":"2036.1","startTime":1348171820595.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3734144},{"children":[],"data":{"requestId":"2036.25"},"endTime":1348171820602.957,"frameId":"2036.1","startTime":1348171820602.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3734144},{"children":[],"data":{"requestId":"2036.25"},"endTime":1348171820609.957,"frameId":"2036.1","startTime":1348171820609.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3734144},{"children":[],"data":{"requestId":"2036.25"},"endTime":1348171820632.957,"frameId":"2036.1","startTime":1348171820632.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3734144},{"children":[],"data":{"requestId":"2036.25"},"endTime":1348171820662.957,"frameId":"2036.1","startTime":1348171820662.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3734144},{"children":[],"data":{"requestId":"2036.25"},"endTime":1348171820668.957,"frameId":"2036.1","startTime":1348171820668.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3734144},{"children":[],"data":{"requestId":"2036.25"},"endTime":1348171820683.957,"frameId":"2036.1","startTime":1348171820683.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3734144},{"children":[],"data":{"requestId":"2036.25"},"endTime":1348171820699.957,"frameId":"2036.1","startTime":1348171820699.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3734144},{"children":[],"data":{"requestId":"2036.25"},"endTime":1348171820714.957,"frameId":"2036.1","startTime":1348171820714.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3734144},{"children":[],"data":{"requestId":"2036.25"},"endTime":1348171820760.957,"frameId":"2036.1","startTime":1348171820760.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3734144},{"children":[],"data":{"requestId":"2036.25"},"endTime":1348171820760.957,"frameId":"2036.1","startTime":1348171820760.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3734144},{"children":[],"data":{"requestId":"2036.25"},"endTime":1348171820773.957,"frameId":"2036.1","startTime":1348171820773.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3734144},{"children":[],"data":{"requestId":"2036.25"},"endTime":1348171820797.957,"frameId":"2036.1","startTime":1348171820797.957,"totalHeapSize":8244736,"type":"ResourceReceivedData","usedHeapSize":3734144},{"data":{"didFail":false,"networkTime":1348171820789.957,"requestId":"2036.25"},"frameId":"2036.1","startTime":1348171820797.957,"totalHeapSize":8244736,"type":"ResourceFinish","usedHeapSize":3734144},{"children":[],"data":{"lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/timeline.97b730c52dbf7c6aebe75ee2a31e060da3c4e4b8.js"},"endTime":1348171820819.957,"frameId":"2036.1","startTime":1348171820799.957,"totalHeapSize":8244736,"type":"EvaluateScript","usedHeapSize":3838224},{"data":{"requestId":"2036.26","requestMethod":"GET","url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},"frameId":"2036.1","stackTrace":[{"columnNumber":12982,"functionName":"A.scriptTagTransport","lineNumber":9,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":11652,"functionName":"z.start","lineNumber":9,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14146,"functionName":"C.start","lineNumber":9,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":11312,"functionName":"z.then","lineNumber":9,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":13508,"functionName":"B.start","lineNumber":9,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171820852.957,"totalHeapSize":11345408,"type":"ResourceSendRequest","usedHeapSize":4923504},{"children":[{"children":[{"data":{"usedHeapSizeDelta":429316},"endTime":1348171820845.957,"stackTrace":[{"columnNumber":12982,"functionName":"A.scriptTagTransport","lineNumber":9,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":11652,"functionName":"z.start","lineNumber":9,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":14146,"functionName":"C.start","lineNumber":9,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":11312,"functionName":"z.then","lineNumber":9,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":13508,"functionName":"B.start","lineNumber":9,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171820844.957,"totalHeapSize":11345408,"type":"GCEvent","usedHeapSize":4923280},{"data":{"usedHeapSizeDelta":894636},"endTime":1348171820890.957,"startTime":1348171820888.957,"totalHeapSize":12361088,"type":"GCEvent","usedHeapSize":6350276}],"data":{"scriptLine":9,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171820895.957,"frameId":"2036.1","startTime":1348171820825.957,"totalHeapSize":12361088,"type":"FunctionCall","usedHeapSize":6350276}],"data":{"type":"load"},"endTime":1348171820895.957,"frameId":"2036.1","startTime":1348171820825.957,"totalHeapSize":12361088,"type":"EventDispatch","usedHeapSize":6350276},{"children":[],"data":{},"endTime":1348171820899.957,"frameId":"2036.1","startTime":1348171820899.957,"totalHeapSize":12361088,"type":"RecalculateStyles","usedHeapSize":6350276},{"children":[],"data":{"mimeType":"application/javascript","requestId":"2036.26","statusCode":200},"endTime":1348171820985.957,"frameId":"2036.1","startTime":1348171820985.957,"totalHeapSize":12361088,"type":"ResourceReceiveResponse","usedHeapSize":6350276},{"children":[],"data":{"requestId":"2036.26"},"endTime":1348171820985.957,"frameId":"2036.1","startTime":1348171820985.957,"totalHeapSize":12361088,"type":"ResourceReceivedData","usedHeapSize":6350276},{"children":[],"data":{"requestId":"2036.26"},"endTime":1348171820985.957,"frameId":"2036.1","startTime":1348171820985.957,"totalHeapSize":12361088,"type":"ResourceReceivedData","usedHeapSize":6350276},{"children":[],"data":{"requestId":"2036.26"},"endTime":1348171820998.957,"frameId":"2036.1","startTime":1348171820998.957,"totalHeapSize":12361088,"type":"ResourceReceivedData","usedHeapSize":6350276},{"children":[],"data":{"requestId":"2036.26"},"endTime":1348171821013.957,"frameId":"2036.1","startTime":1348171821013.957,"totalHeapSize":12361088,"type":"ResourceReceivedData","usedHeapSize":6350276},{"children":[],"data":{"requestId":"2036.26"},"endTime":1348171821027.957,"frameId":"2036.1","startTime":1348171821027.957,"totalHeapSize":12361088,"type":"ResourceReceivedData","usedHeapSize":6350276},{"children":[],"data":{"requestId":"2036.26"},"endTime":1348171821041.957,"frameId":"2036.1","startTime":1348171821041.957,"totalHeapSize":12361088,"type":"ResourceReceivedData","usedHeapSize":6350276},{"children":[],"data":{"requestId":"2036.26"},"endTime":1348171821045.957,"frameId":"2036.1","startTime":1348171821045.957,"totalHeapSize":12361088,"type":"ResourceReceivedData","usedHeapSize":6350276},{"children":[],"data":{"requestId":"2036.26"},"endTime":1348171821053.957,"frameId":"2036.1","startTime":1348171821053.957,"totalHeapSize":12361088,"type":"ResourceReceivedData","usedHeapSize":6350276},{"children":[],"data":{"requestId":"2036.26"},"endTime":1348171821068.957,"frameId":"2036.1","startTime":1348171821068.957,"totalHeapSize":12361088,"type":"ResourceReceivedData","usedHeapSize":6350276},{"children":[],"data":{"requestId":"2036.26"},"endTime":1348171821075.957,"frameId":"2036.1","startTime":1348171821075.957,"totalHeapSize":12361088,"type":"ResourceReceivedData","usedHeapSize":6350276},{"children":[],"data":{"requestId":"2036.26"},"endTime":1348171821090.957,"frameId":"2036.1","startTime":1348171821090.957,"totalHeapSize":12361088,"type":"ResourceReceivedData","usedHeapSize":6350276},{"children":[],"data":{"requestId":"2036.26"},"endTime":1348171821097.957,"frameId":"2036.1","startTime":1348171821097.957,"totalHeapSize":12361088,"type":"ResourceReceivedData","usedHeapSize":6350276},{"children":[],"data":{"requestId":"2036.26"},"endTime":1348171821104.957,"frameId":"2036.1","startTime":1348171821104.957,"totalHeapSize":12361088,"type":"ResourceReceivedData","usedHeapSize":6350276},{"children":[],"data":{"requestId":"2036.26"},"endTime":1348171821120.957,"frameId":"2036.1","startTime":1348171821120.957,"totalHeapSize":12361088,"type":"ResourceReceivedData","usedHeapSize":6350276},{"data":{"didFail":false,"networkTime":1348171821113.957,"requestId":"2036.26"},"frameId":"2036.1","startTime":1348171821120.957,"totalHeapSize":12361088,"type":"ResourceFinish","usedHeapSize":6350276},{"children":[],"data":{"lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},"endTime":1348171821123.957,"frameId":"2036.1","startTime":1348171821120.957,"totalHeapSize":12361088,"type":"EvaluateScript","usedHeapSize":6364916},{"data":{"requestId":"2036.27","requestMethod":"GET","url":"http://twitpic.com/show/mini/atvrv0"},"frameId":"2036.1","stackTrace":[{"columnNumber":28646,"functionName":"f.extend.attr","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":13440,"functionName":"e.extend.access","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":25195,"functionName":"f.fn.extend.attr","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":236426,"functionName":"loadThumb","lineNumber":11,"url":"http://a0.twimg.com/c/swift/en/bundle/timeline.97b730c52dbf7c6aebe75ee2a31e060da3c4e4b8.js"},{"columnNumber":235768,"functionName":"resolveThumbCallback","lineNumber":11,"url":"http://a0.twimg.com/c/swift/en/bundle/timeline.97b730c52dbf7c6aebe75ee2a31e060da3c4e4b8.js"}],"startTime":1348171821294.957,"totalHeapSize":19590272,"type":"ResourceSendRequest","usedHeapSize":11635996},{"data":{"requestId":"2036.28","requestMethod":"GET","url":"http://pbs.twimg.com/media/A2j-gCvCIAEO7MP.png:thumb"},"frameId":"2036.1","stackTrace":[{"columnNumber":28646,"functionName":"f.extend.attr","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":13440,"functionName":"e.extend.access","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":25195,"functionName":"f.fn.extend.attr","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":236426,"functionName":"loadThumb","lineNumber":11,"url":"http://a0.twimg.com/c/swift/en/bundle/timeline.97b730c52dbf7c6aebe75ee2a31e060da3c4e4b8.js"},{"columnNumber":235768,"functionName":"resolveThumbCallback","lineNumber":11,"url":"http://a0.twimg.com/c/swift/en/bundle/timeline.97b730c52dbf7c6aebe75ee2a31e060da3c4e4b8.js"}],"startTime":1348171821299.957,"totalHeapSize":19590272,"type":"ResourceSendRequest","usedHeapSize":11647184},{"data":{"requestId":"2036.29","requestMethod":"GET","url":"about:blank"},"frameId":"2036.5","stackTrace":[{"columnNumber":2034,"functionName":"O","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":2128,"functionName":"P","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":10720,"functionName":"n.stack.PostMessageTransport.e.onDOMReady","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":416,"functionName":"D","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":10887,"functionName":"n.stack.PostMessageTransport.e.init","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"}],"startTime":1348171821311.957,"totalHeapSize":19590272,"type":"ResourceSendRequest","usedHeapSize":11727276},{"data":{"requestId":"2036.30","requestMethod":"GET","url":"about:blank"},"frameId":"2036.7","stackTrace":[{"columnNumber":2847,"functionName":"P","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":10720,"functionName":"n.stack.PostMessageTransport.e.onDOMReady","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":416,"functionName":"D","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":10887,"functionName":"n.stack.PostMessageTransport.e.init","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":15903,"functionName":"n.stack.QueueBehavior.b.init","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"}],"startTime":1348171821330.957,"totalHeapSize":20605952,"type":"ResourceSendRequest","usedHeapSize":10515552},{"data":{"requestId":"2036.31","requestMethod":"GET","url":"http://pbs.twimg.com/media/AzbObgECUAAwUPJ.jpg:thumb"},"frameId":"2036.1","stackTrace":[{"columnNumber":28646,"functionName":"f.extend.attr","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":13440,"functionName":"e.extend.access","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":25195,"functionName":"f.fn.extend.attr","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":236426,"functionName":"loadThumb","lineNumber":11,"url":"http://a0.twimg.com/c/swift/en/bundle/timeline.97b730c52dbf7c6aebe75ee2a31e060da3c4e4b8.js"},{"columnNumber":235768,"functionName":"resolveThumbCallback","lineNumber":11,"url":"http://a0.twimg.com/c/swift/en/bundle/timeline.97b730c52dbf7c6aebe75ee2a31e060da3c4e4b8.js"}],"startTime":1348171821341.957,"totalHeapSize":20605952,"type":"ResourceSendRequest","usedHeapSize":10533396},{"data":{"requestId":"2036.32","requestMethod":"GET","url":"http://www.google-analytics.com/ga.js"},"frameId":"2036.1","stackTrace":[{"columnNumber":50411,"functionName":"initGoogle","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":36767,"functionName":"f.event.dispatch","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":32738,"functionName":"f.event.add.i.handle.j","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":35448,"functionName":"f.event.trigger","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":42927,"functionName":"f.fn.extend.trigger","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821431.957,"totalHeapSize":20605952,"type":"ResourceSendRequest","usedHeapSize":12861848},{"children":[{"children":[{"data":{"usedHeapSizeDelta":2540564},"endTime":1348171821168.957,"stackTrace":[{"columnNumber":9337,"functionName":"e.extend.e.fn.extend","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":454,"functionName":"d.merge","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":10262,"functionName":"f","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":9853,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":11999,"functionName":"e.extend.each","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821151.957,"totalHeapSize":17571072,"type":"GCEvent","usedHeapSize":9526784},{"data":{"usedHeapSizeDelta":741364},"endTime":1348171821203.957,"stackTrace":[{"columnNumber":9337,"functionName":"e.extend.e.fn.extend","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":454,"functionName":"d.merge","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":10262,"functionName":"f","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":9853,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":11999,"functionName":"e.extend.each","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821199.957,"totalHeapSize":17571072,"type":"GCEvent","usedHeapSize":9527008},{"children":[],"data":{},"endTime":1348171821233.957,"frameId":"2036.1","stackTrace":[{"columnNumber":9337,"functionName":"e.extend.e.fn.extend","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":454,"functionName":"d.merge","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":10262,"functionName":"f","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":9853,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":11999,"functionName":"e.extend.each","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821233.957,"totalHeapSize":17571072,"type":"RecalculateStyles","usedHeapSize":9527232},{"children":[],"data":{},"endTime":1348171821233.957,"frameId":"2036.1","stackTrace":[{"columnNumber":9337,"functionName":"e.extend.e.fn.extend","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":454,"functionName":"d.merge","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":10262,"functionName":"f","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":9853,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":11999,"functionName":"e.extend.each","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821233.957,"totalHeapSize":17571072,"type":"Layout","usedHeapSize":9527456},{"children":[],"data":{},"endTime":1348171821239.957,"frameId":"2036.1","stackTrace":[{"columnNumber":28753,"functionName":"c.defaultView.c.defaultView.getComputedStyle.Db","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":27517,"functionName":"f.extend.css","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":39420,"functionName":"f.fn.extend.hide","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":112717,"functionName":"","lineNumber":11,"url":"http://a0.twimg.com/c/swift/en/bundle/timeline.97b730c52dbf7c6aebe75ee2a31e060da3c4e4b8.js"},{"columnNumber":7469,"functionName":"c.after","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"}],"startTime":1348171821239.957,"totalHeapSize":17571072,"type":"RecalculateStyles","usedHeapSize":9808448},{"children":[],"data":{},"endTime":1348171821241.957,"frameId":"2036.1","stackTrace":[{"columnNumber":9337,"functionName":"e.extend.e.fn.extend","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":454,"functionName":"d.merge","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":10262,"functionName":"f","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":9853,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":11999,"functionName":"e.extend.each","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821241.957,"totalHeapSize":17571072,"type":"RecalculateStyles","usedHeapSize":9864552},{"children":[],"data":{},"endTime":1348171821245.957,"frameId":"2036.1","stackTrace":[{"columnNumber":9337,"functionName":"e.extend.e.fn.extend","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":454,"functionName":"d.merge","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":10262,"functionName":"f","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":9853,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":11999,"functionName":"e.extend.each","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821244.957,"totalHeapSize":17571072,"type":"RecalculateStyles","usedHeapSize":9957092},{"children":[],"data":{},"endTime":1348171821245.957,"frameId":"2036.1","stackTrace":[{"columnNumber":9337,"functionName":"e.extend.e.fn.extend","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":454,"functionName":"d.merge","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":10262,"functionName":"f","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":9853,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":11999,"functionName":"e.extend.each","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821245.957,"totalHeapSize":17571072,"type":"Layout","usedHeapSize":9957316},{"children":[],"data":{},"endTime":1348171821262.957,"frameId":"2036.1","stackTrace":[{"columnNumber":9337,"functionName":"e.extend.e.fn.extend","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":454,"functionName":"d.merge","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":10262,"functionName":"f","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":9853,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":11999,"functionName":"e.extend.each","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821262.957,"totalHeapSize":17571072,"type":"RecalculateStyles","usedHeapSize":10703088},{"data":{"singleShot":false,"timeout":1000,"timerId":3},"frameId":"2036.1","stackTrace":[{"columnNumber":11661,"functionName":"using.setTicker","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":11759,"functionName":"using.init","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":12269,"functionName":"using.setIntervalEvent","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":159520,"functionName":"g","lineNumber":11,"url":"http://a0.twimg.com/c/swift/en/bundle/timeline.97b730c52dbf7c6aebe75ee2a31e060da3c4e4b8.js"},{"columnNumber":165369,"functionName":"a.exports","lineNumber":11,"url":"http://a0.twimg.com/c/swift/en/bundle/timeline.97b730c52dbf7c6aebe75ee2a31e060da3c4e4b8.js"}],"startTime":1348171821262.957,"totalHeapSize":17571072,"type":"TimerInstall","usedHeapSize":10741788},{"children":[],"data":{},"endTime":1348171821268.957,"frameId":"2036.1","stackTrace":[{"columnNumber":9337,"functionName":"e.extend.e.fn.extend","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":454,"functionName":"d.merge","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":10262,"functionName":"f","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":9853,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":11999,"functionName":"e.extend.each","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821267.957,"totalHeapSize":17571072,"type":"RecalculateStyles","usedHeapSize":10853100},{"children":[],"data":{},"endTime":1348171821309.957,"frameId":"2036.5","stackTrace":[{"columnNumber":2034,"functionName":"O","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":2128,"functionName":"P","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":10720,"functionName":"n.stack.PostMessageTransport.e.onDOMReady","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":416,"functionName":"D","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":10887,"functionName":"n.stack.PostMessageTransport.e.init","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"}],"startTime":1348171821308.957,"totalHeapSize":19590272,"type":"RecalculateStyles","usedHeapSize":11726828},{"children":[],"data":{"endLine":0,"length":1,"startLine":0},"endTime":1348171821309.957,"frameId":"2036.5","stackTrace":[{"columnNumber":2034,"functionName":"O","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":2128,"functionName":"P","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":10720,"functionName":"n.stack.PostMessageTransport.e.onDOMReady","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":416,"functionName":"D","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":10887,"functionName":"n.stack.PostMessageTransport.e.init","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"}],"startTime":1348171821309.957,"totalHeapSize":19590272,"type":"ParseHTML","usedHeapSize":11727052},{"data":{},"frameId":"2036.5","startTime":1348171821309.957,"totalHeapSize":19590272,"type":"MarkDOMContent","usedHeapSize":11727052},{"children":[],"data":{"mimeType":"text/html","requestId":"2036.29","statusCode":0},"endTime":1348171821315.957,"frameId":"2036.5","startTime":1348171821315.957,"totalHeapSize":19590272,"type":"ResourceReceiveResponse","usedHeapSize":11730692},{"children":[],"data":{},"endTime":1348171821315.957,"frameId":"2036.5","stackTrace":[{"columnNumber":2034,"functionName":"O","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":2128,"functionName":"P","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":10720,"functionName":"n.stack.PostMessageTransport.e.onDOMReady","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":416,"functionName":"D","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":10887,"functionName":"n.stack.PostMessageTransport.e.init","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"}],"startTime":1348171821315.957,"totalHeapSize":19590272,"type":"RecalculateStyles","usedHeapSize":11730916},{"children":[],"data":{"endLine":0,"length":1,"startLine":0},"endTime":1348171821315.957,"frameId":"2036.5","stackTrace":[{"columnNumber":2034,"functionName":"O","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":2128,"functionName":"P","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":10720,"functionName":"n.stack.PostMessageTransport.e.onDOMReady","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":416,"functionName":"D","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":10887,"functionName":"n.stack.PostMessageTransport.e.init","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"}],"startTime":1348171821315.957,"totalHeapSize":19590272,"type":"ParseHTML","usedHeapSize":11731140},{"data":{},"frameId":"2036.5","startTime":1348171821315.957,"totalHeapSize":19590272,"type":"MarkLoad","usedHeapSize":11731140},{"data":{},"frameId":"2036.5","startTime":1348171821315.957,"totalHeapSize":19590272,"type":"MarkDOMContent","usedHeapSize":11731140},{"data":{"didFail":false,"requestId":"2036.29"},"frameId":"2036.5","startTime":1348171821320.957,"totalHeapSize":19590272,"type":"ResourceFinish","usedHeapSize":11731140},{"data":{"usedHeapSizeDelta":1542824},"endTime":1348171821327.957,"stackTrace":[{"columnNumber":2847,"functionName":"P","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":10720,"functionName":"n.stack.PostMessageTransport.e.onDOMReady","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":416,"functionName":"D","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":10887,"functionName":"n.stack.PostMessageTransport.e.init","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":15903,"functionName":"n.stack.QueueBehavior.b.init","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"}],"startTime":1348171821322.957,"totalHeapSize":20605952,"type":"GCEvent","usedHeapSize":10514880},{"children":[],"data":{},"endTime":1348171821328.957,"frameId":"2036.7","stackTrace":[{"columnNumber":2847,"functionName":"P","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":10720,"functionName":"n.stack.PostMessageTransport.e.onDOMReady","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":416,"functionName":"D","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":10887,"functionName":"n.stack.PostMessageTransport.e.init","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":15903,"functionName":"n.stack.QueueBehavior.b.init","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"}],"startTime":1348171821328.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":10515104},{"children":[],"data":{"endLine":0,"length":1,"startLine":0},"endTime":1348171821328.957,"frameId":"2036.7","stackTrace":[{"columnNumber":2847,"functionName":"P","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":10720,"functionName":"n.stack.PostMessageTransport.e.onDOMReady","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":416,"functionName":"D","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":10887,"functionName":"n.stack.PostMessageTransport.e.init","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":15903,"functionName":"n.stack.QueueBehavior.b.init","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"}],"startTime":1348171821328.957,"totalHeapSize":20605952,"type":"ParseHTML","usedHeapSize":10515328},{"data":{},"frameId":"2036.7","startTime":1348171821328.957,"totalHeapSize":20605952,"type":"MarkDOMContent","usedHeapSize":10515328},{"children":[],"data":{"mimeType":"text/html","requestId":"2036.30","statusCode":0},"endTime":1348171821337.957,"frameId":"2036.7","startTime":1348171821337.957,"totalHeapSize":20605952,"type":"ResourceReceiveResponse","usedHeapSize":10518932},{"children":[],"data":{},"endTime":1348171821337.957,"frameId":"2036.7","stackTrace":[{"columnNumber":2847,"functionName":"P","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":10720,"functionName":"n.stack.PostMessageTransport.e.onDOMReady","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":416,"functionName":"D","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":10887,"functionName":"n.stack.PostMessageTransport.e.init","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":15903,"functionName":"n.stack.QueueBehavior.b.init","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"}],"startTime":1348171821337.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":10519156},{"children":[],"data":{"endLine":0,"length":1,"startLine":0},"endTime":1348171821337.957,"frameId":"2036.7","stackTrace":[{"columnNumber":2847,"functionName":"P","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":10720,"functionName":"n.stack.PostMessageTransport.e.onDOMReady","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":416,"functionName":"D","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":10887,"functionName":"n.stack.PostMessageTransport.e.init","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":15903,"functionName":"n.stack.QueueBehavior.b.init","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"}],"startTime":1348171821337.957,"totalHeapSize":20605952,"type":"ParseHTML","usedHeapSize":10519380},{"data":{},"frameId":"2036.7","startTime":1348171821337.957,"totalHeapSize":20605952,"type":"MarkLoad","usedHeapSize":10519380},{"data":{},"frameId":"2036.7","startTime":1348171821337.957,"totalHeapSize":20605952,"type":"MarkDOMContent","usedHeapSize":10519380},{"data":{"didFail":false,"requestId":"2036.30"},"frameId":"2036.7","startTime":1348171821340.957,"totalHeapSize":20605952,"type":"ResourceFinish","usedHeapSize":10519380},{"data":{"url":"http://pbs.twimg.com/media/AzbObgECUAAwUPJ.jpg:thumb"},"frameId":"2036.1","stackTrace":[{"columnNumber":28646,"functionName":"f.extend.attr","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":13440,"functionName":"e.extend.access","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":25195,"functionName":"f.fn.extend.attr","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":236426,"functionName":"loadThumb","lineNumber":11,"url":"http://a0.twimg.com/c/swift/en/bundle/timeline.97b730c52dbf7c6aebe75ee2a31e060da3c4e4b8.js"},{"columnNumber":235768,"functionName":"resolveThumbCallback","lineNumber":11,"url":"http://a0.twimg.com/c/swift/en/bundle/timeline.97b730c52dbf7c6aebe75ee2a31e060da3c4e4b8.js"}],"startTime":1348171821346.957,"totalHeapSize":20605952,"type":"ScheduleResourceRequest","usedHeapSize":10536712},{"children":[],"data":{},"endTime":1348171821350.957,"frameId":"2036.1","stackTrace":[{"columnNumber":9337,"functionName":"e.extend.e.fn.extend","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":454,"functionName":"d.merge","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":10262,"functionName":"f","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":9853,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":11999,"functionName":"e.extend.each","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821349.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":10576232},{"children":[{"children":[],"data":{},"endTime":1348171821350.957,"frameId":"2036.7","stackTrace":[{"columnNumber":9337,"functionName":"e.extend.e.fn.extend","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":454,"functionName":"d.merge","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":10262,"functionName":"f","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":9853,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":11999,"functionName":"e.extend.each","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821350.957,"totalHeapSize":20605952,"type":"Layout","usedHeapSize":10576680},{"children":[],"data":{},"endTime":1348171821350.957,"frameId":"2036.7","stackTrace":[{"columnNumber":9337,"functionName":"e.extend.e.fn.extend","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":454,"functionName":"d.merge","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":10262,"functionName":"f","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":9853,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":11999,"functionName":"e.extend.each","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821350.957,"totalHeapSize":20605952,"type":"Layout","usedHeapSize":10576904}],"data":{},"endTime":1348171821350.957,"frameId":"2036.1","stackTrace":[{"columnNumber":9337,"functionName":"e.extend.e.fn.extend","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":454,"functionName":"d.merge","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":10262,"functionName":"f","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":9853,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":11999,"functionName":"e.extend.each","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821350.957,"totalHeapSize":20605952,"type":"Layout","usedHeapSize":10576904},{"data":{"singleShot":true,"timeout":0,"timerId":4},"frameId":"2036.1","stackTrace":[{"columnNumber":39789,"functionName":"resolveLink","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":36767,"functionName":"f.event.dispatch","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":32738,"functionName":"f.event.add.i.handle.j","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":35448,"functionName":"f.event.trigger","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":42927,"functionName":"f.fn.extend.trigger","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821370.957,"totalHeapSize":20605952,"type":"TimerInstall","usedHeapSize":11423904},{"data":{"timerId":4},"frameId":"2036.1","stackTrace":[{"columnNumber":39666,"functionName":"resolveLink","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":36767,"functionName":"f.event.dispatch","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":32738,"functionName":"f.event.add.i.handle.j","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":35448,"functionName":"f.event.trigger","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":42927,"functionName":"f.fn.extend.trigger","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821370.957,"totalHeapSize":20605952,"type":"TimerRemove","usedHeapSize":11440820},{"data":{"singleShot":true,"timeout":0,"timerId":5},"frameId":"2036.1","stackTrace":[{"columnNumber":39789,"functionName":"resolveLink","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":36767,"functionName":"f.event.dispatch","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":32738,"functionName":"f.event.add.i.handle.j","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":35448,"functionName":"f.event.trigger","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":42927,"functionName":"f.fn.extend.trigger","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821371.957,"totalHeapSize":20605952,"type":"TimerInstall","usedHeapSize":11442640},{"data":{"timerId":5},"frameId":"2036.1","stackTrace":[{"columnNumber":39666,"functionName":"resolveLink","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":36767,"functionName":"f.event.dispatch","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":32738,"functionName":"f.event.add.i.handle.j","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":35448,"functionName":"f.event.trigger","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":42927,"functionName":"f.fn.extend.trigger","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821371.957,"totalHeapSize":20605952,"type":"TimerRemove","usedHeapSize":11463604},{"data":{"singleShot":true,"timeout":0,"timerId":6},"frameId":"2036.1","stackTrace":[{"columnNumber":39789,"functionName":"resolveLink","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":36767,"functionName":"f.event.dispatch","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":32738,"functionName":"f.event.add.i.handle.j","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":35448,"functionName":"f.event.trigger","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":42927,"functionName":"f.fn.extend.trigger","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821371.957,"totalHeapSize":20605952,"type":"TimerInstall","usedHeapSize":11464144},{"data":{"timerId":6},"frameId":"2036.1","stackTrace":[{"columnNumber":39666,"functionName":"resolveLink","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":36767,"functionName":"f.event.dispatch","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":32738,"functionName":"f.event.add.i.handle.j","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":35448,"functionName":"f.event.trigger","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":42927,"functionName":"f.fn.extend.trigger","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821372.957,"totalHeapSize":20605952,"type":"TimerRemove","usedHeapSize":11469320},{"data":{"singleShot":true,"timeout":0,"timerId":7},"frameId":"2036.1","stackTrace":[{"columnNumber":39789,"functionName":"resolveLink","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":36767,"functionName":"f.event.dispatch","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":32738,"functionName":"f.event.add.i.handle.j","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":35448,"functionName":"f.event.trigger","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":42927,"functionName":"f.fn.extend.trigger","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821372.957,"totalHeapSize":20605952,"type":"TimerInstall","usedHeapSize":11469860},{"data":{"timerId":7},"frameId":"2036.1","stackTrace":[{"columnNumber":39666,"functionName":"resolveLink","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":36767,"functionName":"f.event.dispatch","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":32738,"functionName":"f.event.add.i.handle.j","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":35448,"functionName":"f.event.trigger","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":42927,"functionName":"f.fn.extend.trigger","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821373.957,"totalHeapSize":20605952,"type":"TimerRemove","usedHeapSize":11513220},{"data":{"singleShot":true,"timeout":0,"timerId":8},"frameId":"2036.1","stackTrace":[{"columnNumber":39789,"functionName":"resolveLink","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":36767,"functionName":"f.event.dispatch","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":32738,"functionName":"f.event.add.i.handle.j","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":35448,"functionName":"f.event.trigger","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":42927,"functionName":"f.fn.extend.trigger","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821373.957,"totalHeapSize":20605952,"type":"TimerInstall","usedHeapSize":11513760},{"data":{"timerId":8},"frameId":"2036.1","stackTrace":[{"columnNumber":39666,"functionName":"resolveLink","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":36767,"functionName":"f.event.dispatch","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":32738,"functionName":"f.event.add.i.handle.j","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":35448,"functionName":"f.event.trigger","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":42927,"functionName":"f.fn.extend.trigger","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821374.957,"totalHeapSize":20605952,"type":"TimerRemove","usedHeapSize":11535212},{"data":{"singleShot":true,"timeout":0,"timerId":9},"frameId":"2036.1","stackTrace":[{"columnNumber":39789,"functionName":"resolveLink","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":36767,"functionName":"f.event.dispatch","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":32738,"functionName":"f.event.add.i.handle.j","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":35448,"functionName":"f.event.trigger","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":42927,"functionName":"f.fn.extend.trigger","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821375.957,"totalHeapSize":20605952,"type":"TimerInstall","usedHeapSize":11535752},{"data":{"timerId":9},"frameId":"2036.1","stackTrace":[{"columnNumber":39666,"functionName":"resolveLink","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":36767,"functionName":"f.event.dispatch","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":32738,"functionName":"f.event.add.i.handle.j","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":35448,"functionName":"f.event.trigger","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":42927,"functionName":"f.fn.extend.trigger","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821375.957,"totalHeapSize":20605952,"type":"TimerRemove","usedHeapSize":11549516},{"data":{"singleShot":true,"timeout":0,"timerId":10},"frameId":"2036.1","stackTrace":[{"columnNumber":39789,"functionName":"resolveLink","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":36767,"functionName":"f.event.dispatch","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":32738,"functionName":"f.event.add.i.handle.j","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":35448,"functionName":"f.event.trigger","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":42927,"functionName":"f.fn.extend.trigger","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821375.957,"totalHeapSize":20605952,"type":"TimerInstall","usedHeapSize":11550056},{"data":{"timerId":10},"frameId":"2036.1","stackTrace":[{"columnNumber":39666,"functionName":"resolveLink","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":36767,"functionName":"f.event.dispatch","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":32738,"functionName":"f.event.add.i.handle.j","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":35448,"functionName":"f.event.trigger","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":42927,"functionName":"f.fn.extend.trigger","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821375.957,"totalHeapSize":20605952,"type":"TimerRemove","usedHeapSize":11563468},{"data":{"singleShot":true,"timeout":0,"timerId":11},"frameId":"2036.1","stackTrace":[{"columnNumber":39789,"functionName":"resolveLink","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":36767,"functionName":"f.event.dispatch","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":32738,"functionName":"f.event.add.i.handle.j","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":35448,"functionName":"f.event.trigger","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":42927,"functionName":"f.fn.extend.trigger","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821375.957,"totalHeapSize":20605952,"type":"TimerInstall","usedHeapSize":11564008},{"data":{"timerId":11},"frameId":"2036.1","stackTrace":[{"columnNumber":39666,"functionName":"resolveLink","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":36767,"functionName":"f.event.dispatch","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":32738,"functionName":"f.event.add.i.handle.j","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":35448,"functionName":"f.event.trigger","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":42927,"functionName":"f.fn.extend.trigger","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821377.957,"totalHeapSize":20605952,"type":"TimerRemove","usedHeapSize":11596400},{"data":{"singleShot":true,"timeout":0,"timerId":12},"frameId":"2036.1","stackTrace":[{"columnNumber":39789,"functionName":"resolveLink","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":36767,"functionName":"f.event.dispatch","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":32738,"functionName":"f.event.add.i.handle.j","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":35448,"functionName":"f.event.trigger","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":42927,"functionName":"f.fn.extend.trigger","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821377.957,"totalHeapSize":20605952,"type":"TimerInstall","usedHeapSize":11596940},{"data":{"timerId":12},"frameId":"2036.1","stackTrace":[{"columnNumber":39666,"functionName":"resolveLink","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":36767,"functionName":"f.event.dispatch","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":32738,"functionName":"f.event.add.i.handle.j","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":35448,"functionName":"f.event.trigger","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":42927,"functionName":"f.fn.extend.trigger","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821377.957,"totalHeapSize":20605952,"type":"TimerRemove","usedHeapSize":11611604},{"data":{"singleShot":true,"timeout":0,"timerId":13},"frameId":"2036.1","stackTrace":[{"columnNumber":39789,"functionName":"resolveLink","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},{"columnNumber":36767,"functionName":"f.event.dispatch","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":32738,"functionName":"f.event.add.i.handle.j","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":35448,"functionName":"f.event.trigger","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":42927,"functionName":"f.fn.extend.trigger","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821377.957,"totalHeapSize":20605952,"type":"TimerInstall","usedHeapSize":11612144},{"data":{"singleShot":true,"timeout":0,"timerId":14},"frameId":"2036.1","stackTrace":[{"columnNumber":188593,"functionName":"","lineNumber":11,"url":"http://a0.twimg.com/c/swift/en/bundle/timeline.97b730c52dbf7c6aebe75ee2a31e060da3c4e4b8.js"},{"columnNumber":7469,"functionName":"c.after","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":7079,"functionName":"c.around","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":10301,"functionName":"f","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":9853,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"}],"startTime":1348171821378.957,"totalHeapSize":20605952,"type":"TimerInstall","usedHeapSize":11637900},{"children":[],"data":{},"endTime":1348171821385.957,"frameId":"2036.1","stackTrace":[{"columnNumber":9337,"functionName":"e.extend.e.fn.extend","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":454,"functionName":"d.merge","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":10262,"functionName":"f","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":9853,"functionName":"","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":11999,"functionName":"e.extend.each","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821380.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":11676780},{"children":[],"data":{},"endTime":1348171821428.957,"frameId":"2036.1","stackTrace":[{"columnNumber":28753,"functionName":"c.defaultView.c.defaultView.getComputedStyle.Db","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":27517,"functionName":"f.extend.css","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":26589,"functionName":"f.fn.css","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":13499,"functionName":"e.extend.access","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":26524,"functionName":"f.fn.css","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821428.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":12786744},{"children":[],"data":{},"endTime":1348171821429.957,"frameId":"2036.1","stackTrace":[{"columnNumber":28753,"functionName":"c.defaultView.c.defaultView.getComputedStyle.Db","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":27517,"functionName":"f.extend.css","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":26589,"functionName":"f.fn.css","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":13499,"functionName":"e.extend.access","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":26524,"functionName":"f.fn.css","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821428.957,"totalHeapSize":20605952,"type":"Layout","usedHeapSize":12786968}],"data":{"scriptLine":9,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171821436.957,"frameId":"2036.1","startTime":1348171821124.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":12871708}],"data":{"type":"load"},"endTime":1348171821436.957,"frameId":"2036.1","startTime":1348171821124.957,"totalHeapSize":20605952,"type":"EventDispatch","usedHeapSize":12871708},{"children":[],"data":{},"endTime":1348171821448.957,"frameId":"2036.1","startTime":1348171821448.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":12871708},{"children":[],"data":{},"endTime":1348171821450.957,"frameId":"2036.1","startTime":1348171821448.957,"totalHeapSize":20605952,"type":"Layout","usedHeapSize":12871708},{"data":{},"startTime":1348171821450.957,"totalHeapSize":20605952,"type":"BeginFrame","usedHeapSize":12871708},{"children":[],"data":{"height":625,"width":997,"x":0,"y":0},"endTime":1348171821459.957,"frameId":"2036.1","startTime":1348171821450.957,"totalHeapSize":20605952,"type":"Paint","usedHeapSize":12871708},{"data":{"requestId":"2036.33","requestMethod":"GET","url":"https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1"},"frameId":"2036.7","startTime":1348171821460.957,"totalHeapSize":20605952,"type":"ResourceSendRequest","usedHeapSize":12871736},{"data":{"requestId":"2036.34","requestMethod":"GET","url":"http://twitter.com/i/resolve.json?urls%5B%5D=http%3A%2F%2Fzoompf.com%2F2012%2F09%2Finternet-explorer-is-the-hare-and-thats-bad&urls%5B%5D=http%3A%2F%2Fwww.strangeloopnetworks.com%2Fresources%2Finfographics%2Ffall-2012-state-of-the-union%2Fposter%2F&urls%5B%5D=http%3A%2F%2Fwww.ie6countdown.com%2F&urls%5B%5D=http%3A%2F%2Ftheie7countdown.com%2F&urls%5B%5D=http%3A%2F%2Fspr.ly%2F6017TWC7&urls%5B%5D=http%3A%2F%2Fwww.codinghorror.com%2Fblog%2F2012%2F09%2Fcomputer-crime-then-and-now.html&urls%5B%5D=http%3A%2F%2Fbit.ly%2FOvLmhp&urls%5B%5D=http%3A%2F%2Fdavesgeekyideas.com%2F2012%2F09%2F14%2Fbay-area-rapid-transit-map-super-mario-kart-style%2F&urls%5B%5D=http%3A%2F%2Fkkovacs.eu%2Fcassandra-vs-mongodb-vs-couchdb-vs-redis&urls%5B%5D=http%3A%2F%2Fwww.codeproject.com%2FTips%2F457877%2Fhow-to-get-A-in-Yslow-and-tune-up-your-website"},"frameId":"2036.1","stackTrace":[{"columnNumber":38030,"functionName":"f.support.ajax.f.ajaxTransport.send","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":35185,"functionName":"f.extend.ajax","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":54253,"functionName":"JSONRequest","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":54510,"functionName":"get","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/core.d03fff107279afb753ef8bdd9264cc33ec7802ac.js"},{"columnNumber":39937,"functionName":"sendBatchRequest","lineNumber":1,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"}],"startTime":1348171821463.957,"totalHeapSize":20605952,"type":"ResourceSendRequest","usedHeapSize":12988616},{"children":[{"children":[],"data":{"scriptLine":1582,"scriptName":"native v8natives.js"},"endTime":1348171821463.957,"frameId":"2036.1","startTime":1348171821460.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":12990436}],"data":{"timerId":13},"endTime":1348171821463.957,"frameId":"2036.1","startTime":1348171821460.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":12990436},{"children":[{"children":[],"data":{"scriptLine":1582,"scriptName":"native v8natives.js"},"endTime":1348171821464.957,"frameId":"2036.1","startTime":1348171821463.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13028560}],"data":{"timerId":14},"endTime":1348171821464.957,"frameId":"2036.1","startTime":1348171821463.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13028560},{"children":[],"data":{"mimeType":"text/javascript","requestId":"2036.32","statusCode":200},"endTime":1348171821618.957,"frameId":"2036.1","startTime":1348171821618.957,"totalHeapSize":20605952,"type":"ResourceReceiveResponse","usedHeapSize":13028560},{"children":[],"data":{"requestId":"2036.32"},"endTime":1348171821618.957,"frameId":"2036.1","startTime":1348171821618.957,"totalHeapSize":20605952,"type":"ResourceReceivedData","usedHeapSize":13028560},{"children":[],"data":{"requestId":"2036.32"},"endTime":1348171821618.957,"frameId":"2036.1","startTime":1348171821618.957,"totalHeapSize":20605952,"type":"ResourceReceivedData","usedHeapSize":13028560},{"children":[],"data":{"requestId":"2036.32"},"endTime":1348171821686.957,"frameId":"2036.1","startTime":1348171821686.957,"totalHeapSize":20605952,"type":"ResourceReceivedData","usedHeapSize":13028560},{"children":[],"data":{"requestId":"2036.32"},"endTime":1348171821686.957,"frameId":"2036.1","startTime":1348171821686.957,"totalHeapSize":20605952,"type":"ResourceReceivedData","usedHeapSize":13028560},{"data":{"requestId":"2036.27","requestMethod":"GET","url":"http://d3j5vwomefv46c.cloudfront.net/photos/mini/654853068.jpg?key=526640&Expires=1348172821&Key-Pair-Id=APKAIYVGSUJFNRFZBBTA&Signature=x5vBtZ-GrAya5Du83FwbWDEBlgwqTjLZ2jgK4wWOsxHvfCDKviAYEBpLMX223N8m55aZN8vOxNrIwNoMY753a8xdeRrD0dL8IsdFA92LCjpRjX-HNdVE-1wkCEV8P7~NRj9EWpG3M-iksoc052IFvS2I7UlV3xqumos0st0JmIw_"},"frameId":"2036.1","startTime":1348171821711.957,"totalHeapSize":20605952,"type":"ResourceSendRequest","usedHeapSize":13028560},{"children":[],"data":{"mimeType":"image/png","requestId":"2036.28","statusCode":200},"endTime":1348171821720.957,"frameId":"2036.1","startTime":1348171821720.957,"totalHeapSize":20605952,"type":"ResourceReceiveResponse","usedHeapSize":13028560},{"children":[],"data":{"requestId":"2036.28"},"endTime":1348171821720.957,"frameId":"2036.1","startTime":1348171821720.957,"totalHeapSize":20605952,"type":"ResourceReceivedData","usedHeapSize":13028560},{"children":[],"data":{"requestId":"2036.28"},"endTime":1348171821720.957,"frameId":"2036.1","startTime":1348171821720.957,"totalHeapSize":20605952,"type":"ResourceReceivedData","usedHeapSize":13028560},{"children":[],"data":{"requestId":"2036.28"},"endTime":1348171821720.957,"frameId":"2036.1","startTime":1348171821720.957,"totalHeapSize":20605952,"type":"ResourceReceivedData","usedHeapSize":13028560},{"children":[],"data":{"requestId":"2036.28"},"endTime":1348171821731.957,"frameId":"2036.1","startTime":1348171821731.957,"totalHeapSize":20605952,"type":"ResourceReceivedData","usedHeapSize":13028560},{"children":[],"data":{"mimeType":"image/jpeg","requestId":"2036.31","statusCode":200},"endTime":1348171821746.957,"frameId":"2036.1","startTime":1348171821746.957,"totalHeapSize":20605952,"type":"ResourceReceiveResponse","usedHeapSize":13028560},{"children":[],"data":{"requestId":"2036.31"},"endTime":1348171821746.957,"frameId":"2036.1","startTime":1348171821746.957,"totalHeapSize":20605952,"type":"ResourceReceivedData","usedHeapSize":13028560},{"children":[],"data":{"requestId":"2036.31"},"endTime":1348171821746.957,"frameId":"2036.1","startTime":1348171821746.957,"totalHeapSize":20605952,"type":"ResourceReceivedData","usedHeapSize":13028560},{"children":[],"data":{"requestId":"2036.32"},"endTime":1348171821831.957,"frameId":"2036.1","startTime":1348171821831.957,"totalHeapSize":20605952,"type":"ResourceReceivedData","usedHeapSize":13028560},{"data":{"didFail":false,"networkTime":1348171821824.957,"requestId":"2036.32"},"frameId":"2036.1","startTime":1348171821831.957,"totalHeapSize":20605952,"type":"ResourceFinish","usedHeapSize":13028560},{"children":[],"data":{"requestId":"2036.31"},"endTime":1348171821831.957,"frameId":"2036.1","startTime":1348171821831.957,"totalHeapSize":20605952,"type":"ResourceReceivedData","usedHeapSize":13028560},{"data":{"didFail":false,"networkTime":1348171821825.957,"requestId":"2036.31"},"frameId":"2036.1","startTime":1348171821831.957,"totalHeapSize":20605952,"type":"ResourceFinish","usedHeapSize":13028560},{"data":{"requestId":"2036.35","requestMethod":"GET","url":"http://www.google-analytics.com/__utm.gif?utmwv=5.3.5&utms=1&utmn=1181617486&utmhn=twitter.com&utmcs=UTF-8&utmsr=1024x731&utmvp=997x625&utmsc=32-bit&utmul=en-us&utmje=1&utmfl=11.3%20r31&utmdt=Marcel%20Duran%20(marcelduran)%20on%20Twitter&utmhid=2050049151&utmr=-&utmp=%2Fmarcelduran&utmac=UA-30775-6&utmcc=__utma%3D43838368.730111572.1348171822.1348171822.1348171822.1%3B%2B__utmz%3D43838368.1348171822.1.1.utmcsr%3D(direct)%7Cutmccn%3D(direct)%7Cutmcmd%3D(none)%3B&utmu=qAC~"},"frameId":"2036.1","stackTrace":[{"columnNumber":630,"functionName":"Ra","lineNumber":52,"url":"http://www.google-analytics.com/ga.js"},{"columnNumber":239,"functionName":"ge","lineNumber":52,"url":"http://www.google-analytics.com/ga.js"},{"columnNumber":387,"functionName":"Qc.(anonymous function).execute","lineNumber":16,"url":"http://www.google-analytics.com/ga.js"},{"columnNumber":1187,"functionName":"Uc.j","lineNumber":9,"url":"http://www.google-analytics.com/ga.js"},{"columnNumber":228,"functionName":"D.Ga","lineNumber":39,"url":"http://www.google-analytics.com/ga.js"}],"startTime":1348171821881.957,"totalHeapSize":20605952,"type":"ResourceSendRequest","usedHeapSize":13689444},{"children":[],"data":{"lineNumber":1,"url":"http://www.google-analytics.com/ga.js"},"endTime":1348171821888.957,"frameId":"2036.1","startTime":1348171821831.957,"totalHeapSize":20605952,"type":"EvaluateScript","usedHeapSize":13704364},{"children":[],"data":{"height":625,"width":997,"x":0,"y":0},"endTime":1348171821917.957,"frameId":"2036.1","startTime":1348171821895.957,"totalHeapSize":20605952,"type":"Paint","usedHeapSize":13704364},{"children":[],"data":{"requestId":"2036.28"},"endTime":1348171821924.957,"frameId":"2036.1","startTime":1348171821924.957,"totalHeapSize":20605952,"type":"ResourceReceivedData","usedHeapSize":13704364},{"children":[{"children":[{"children":[],"data":{},"endTime":1348171821926.957,"frameId":"2036.1","stackTrace":[{"columnNumber":29294,"functionName":"f.expr.f.expr.filters.f.expr.filters.hidden","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":8522,"functionName":"n.selectors.filter.PSEUDO","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":3043,"functionName":"n.filter","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":1561,"functionName":"n","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":13291,"functionName":"c.querySelectorAll.n","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821926.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":13741800},{"children":[],"data":{},"endTime":1348171821926.957,"frameId":"2036.1","stackTrace":[{"columnNumber":29294,"functionName":"f.expr.f.expr.filters.f.expr.filters.hidden","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":8522,"functionName":"n.selectors.filter.PSEUDO","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":3043,"functionName":"n.filter","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":1561,"functionName":"n","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":13291,"functionName":"c.querySelectorAll.n","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821926.957,"totalHeapSize":20605952,"type":"Layout","usedHeapSize":13742024},{"children":[],"data":{},"endTime":1348171821927.957,"frameId":"2036.1","stackTrace":[{"columnNumber":28753,"functionName":"c.defaultView.c.defaultView.getComputedStyle.Db","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":26660,"functionName":"f.extend.cssHooks.opacity.get","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":27478,"functionName":"f.extend.css","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":42986,"functionName":"f.fx.cur","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":41056,"functionName":"g","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821926.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":13749852},{"children":[],"data":{},"endTime":1348171821927.957,"frameId":"2036.1","stackTrace":[{"columnNumber":28753,"functionName":"c.defaultView.c.defaultView.getComputedStyle.Db","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":26660,"functionName":"f.extend.cssHooks.opacity.get","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":27478,"functionName":"f.extend.css","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":42986,"functionName":"f.fx.cur","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":41056,"functionName":"g","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821927.957,"totalHeapSize":20605952,"type":"Layout","usedHeapSize":13750076},{"data":{"singleShot":true,"timeout":0,"timerId":15},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43182,"functionName":"f.fx.custom","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":41120,"functionName":"g","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":23951,"functionName":"f.extend.dequeue","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":24234,"functionName":"f.fn.extend.queue","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821927.957,"totalHeapSize":20605952,"type":"TimerInstall","usedHeapSize":13751884},{"data":{"singleShot":false,"timeout":13,"timerId":16},"frameId":"2036.1","stackTrace":[{"columnNumber":43492,"functionName":"f.fx.custom","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":41120,"functionName":"g","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":23951,"functionName":"f.extend.dequeue","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":24234,"functionName":"f.fn.extend.queue","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":11999,"functionName":"e.extend.each","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821927.957,"totalHeapSize":20605952,"type":"TimerInstall","usedHeapSize":13757364}],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171821927.957,"frameId":"2036.1","startTime":1348171821924.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13761160}],"data":{"type":"load"},"endTime":1348171821927.957,"frameId":"2036.1","startTime":1348171821924.957,"totalHeapSize":20605952,"type":"EventDispatch","usedHeapSize":13761160},{"children":[],"data":{},"endTime":1348171821927.957,"frameId":"2036.1","startTime":1348171821927.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":13761160},{"children":[],"data":{},"endTime":1348171821927.957,"frameId":"2036.1","startTime":1348171821927.957,"totalHeapSize":20605952,"type":"Layout","usedHeapSize":13761160},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171821928.957,"frameId":"2036.1","startTime":1348171821928.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13761204}],"data":{"timerId":15},"endTime":1348171821928.957,"frameId":"2036.1","startTime":1348171821928.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13761204},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":17},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821946.957,"totalHeapSize":20605952,"type":"TimerInstall","usedHeapSize":13762304}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171821946.957,"frameId":"2036.1","startTime":1348171821946.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13768208}],"data":{"timerId":16},"endTime":1348171821947.957,"frameId":"2036.1","startTime":1348171821946.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13768208},{"children":[],"data":{},"endTime":1348171821948.957,"frameId":"2036.1","startTime":1348171821948.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":13768208},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171821951.957,"frameId":"2036.1","startTime":1348171821951.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13768252}],"data":{"timerId":17},"endTime":1348171821951.957,"frameId":"2036.1","startTime":1348171821951.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13768252},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":18},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821956.957,"totalHeapSize":20605952,"type":"TimerInstall","usedHeapSize":13768516}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171821956.957,"frameId":"2036.1","startTime":1348171821956.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13770124}],"data":{"timerId":16},"endTime":1348171821956.957,"frameId":"2036.1","startTime":1348171821956.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13770124},{"children":[],"data":{},"endTime":1348171821960.957,"frameId":"2036.1","startTime":1348171821960.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":13770124},{"children":[],"data":{"mimeType":"image/gif","requestId":"2036.35","statusCode":200},"endTime":1348171821962.957,"frameId":"2036.1","startTime":1348171821962.957,"totalHeapSize":20605952,"type":"ResourceReceiveResponse","usedHeapSize":13770124},{"children":[],"data":{"requestId":"2036.35"},"endTime":1348171821962.957,"frameId":"2036.1","startTime":1348171821962.957,"totalHeapSize":20605952,"type":"ResourceReceivedData","usedHeapSize":13770124},{"data":{"didFail":false,"networkTime":1348171821962.957,"requestId":"2036.35"},"frameId":"2036.1","startTime":1348171821962.957,"totalHeapSize":20605952,"type":"ResourceFinish","usedHeapSize":13770124},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171821962.957,"frameId":"2036.1","startTime":1348171821962.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13770168}],"data":{"timerId":18},"endTime":1348171821962.957,"frameId":"2036.1","startTime":1348171821962.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13770168},{"children":[{"children":[],"data":{"scriptLine":52,"scriptName":"http://www.google-analytics.com/ga.js"},"endTime":1348171821962.957,"frameId":"2036.1","startTime":1348171821962.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13770232}],"data":{"type":"load"},"endTime":1348171821962.957,"frameId":"2036.1","startTime":1348171821962.957,"totalHeapSize":20605952,"type":"EventDispatch","usedHeapSize":13770232},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":19},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821977.957,"totalHeapSize":20605952,"type":"TimerInstall","usedHeapSize":13770496}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171821977.957,"frameId":"2036.1","startTime":1348171821977.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13771796}],"data":{"timerId":16},"endTime":1348171821977.957,"frameId":"2036.1","startTime":1348171821977.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13771796},{"children":[],"data":{},"endTime":1348171821981.957,"frameId":"2036.1","startTime":1348171821981.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":13771796},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171821983.957,"frameId":"2036.1","startTime":1348171821983.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13771840}],"data":{"timerId":19},"endTime":1348171821983.957,"frameId":"2036.1","startTime":1348171821983.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13771840},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":20},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171821990.957,"totalHeapSize":20605952,"type":"TimerInstall","usedHeapSize":13772104}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171821990.957,"frameId":"2036.1","startTime":1348171821990.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13773404}],"data":{"timerId":16},"endTime":1348171821990.957,"frameId":"2036.1","startTime":1348171821990.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13773404},{"children":[],"data":{},"endTime":1348171821993.957,"frameId":"2036.1","startTime":1348171821993.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":13773404},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171821996.957,"frameId":"2036.1","startTime":1348171821996.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13773448}],"data":{"timerId":20},"endTime":1348171821996.957,"frameId":"2036.1","startTime":1348171821996.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13773448},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":21},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822004.957,"totalHeapSize":20605952,"type":"TimerInstall","usedHeapSize":13773712}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822004.957,"frameId":"2036.1","startTime":1348171822004.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13775012}],"data":{"timerId":16},"endTime":1348171822004.957,"frameId":"2036.1","startTime":1348171822004.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13775012},{"children":[],"data":{},"endTime":1348171822005.957,"frameId":"2036.1","startTime":1348171822005.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":13775012},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822008.957,"frameId":"2036.1","startTime":1348171822008.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13775056}],"data":{"timerId":21},"endTime":1348171822008.957,"frameId":"2036.1","startTime":1348171822008.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13775056},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":22},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822018.957,"totalHeapSize":20605952,"type":"TimerInstall","usedHeapSize":13775320}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822018.957,"frameId":"2036.1","startTime":1348171822018.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13776620}],"data":{"timerId":16},"endTime":1348171822018.957,"frameId":"2036.1","startTime":1348171822018.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13776620},{"children":[],"data":{},"endTime":1348171822020.957,"frameId":"2036.1","startTime":1348171822020.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":13776620},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822022.957,"frameId":"2036.1","startTime":1348171822022.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13776664}],"data":{"timerId":22},"endTime":1348171822022.957,"frameId":"2036.1","startTime":1348171822022.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13776664},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":23},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822031.957,"totalHeapSize":20605952,"type":"TimerInstall","usedHeapSize":13776928}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822031.957,"frameId":"2036.1","startTime":1348171822031.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13778228}],"data":{"timerId":16},"endTime":1348171822031.957,"frameId":"2036.1","startTime":1348171822031.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13778228},{"children":[],"data":{},"endTime":1348171822032.957,"frameId":"2036.1","startTime":1348171822032.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":13778228},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822034.957,"frameId":"2036.1","startTime":1348171822034.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13778272}],"data":{"timerId":23},"endTime":1348171822034.957,"frameId":"2036.1","startTime":1348171822034.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13778272},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":24},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822045.957,"totalHeapSize":20605952,"type":"TimerInstall","usedHeapSize":13778536}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822045.957,"frameId":"2036.1","startTime":1348171822045.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13779836}],"data":{"timerId":16},"endTime":1348171822045.957,"frameId":"2036.1","startTime":1348171822045.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13779836},{"children":[],"data":{},"endTime":1348171822047.957,"frameId":"2036.1","startTime":1348171822047.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":13779836},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822050.957,"frameId":"2036.1","startTime":1348171822050.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13779880}],"data":{"timerId":24},"endTime":1348171822050.957,"frameId":"2036.1","startTime":1348171822050.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13779880},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":25},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822059.957,"totalHeapSize":20605952,"type":"TimerInstall","usedHeapSize":13780144}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822059.957,"frameId":"2036.1","startTime":1348171822059.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13781444}],"data":{"timerId":16},"endTime":1348171822059.957,"frameId":"2036.1","startTime":1348171822059.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13781444},{"children":[],"data":{},"endTime":1348171822061.957,"frameId":"2036.1","startTime":1348171822061.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":13781444},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822062.957,"frameId":"2036.1","startTime":1348171822062.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13781488}],"data":{"timerId":25},"endTime":1348171822062.957,"frameId":"2036.1","startTime":1348171822062.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13781488},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":26},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822072.957,"totalHeapSize":20605952,"type":"TimerInstall","usedHeapSize":13781752}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822072.957,"frameId":"2036.1","startTime":1348171822072.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13783052}],"data":{"timerId":16},"endTime":1348171822072.957,"frameId":"2036.1","startTime":1348171822072.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13783052},{"children":[],"data":{},"endTime":1348171822075.957,"frameId":"2036.1","startTime":1348171822075.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":13783052},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822077.957,"frameId":"2036.1","startTime":1348171822077.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13783096}],"data":{"timerId":26},"endTime":1348171822077.957,"frameId":"2036.1","startTime":1348171822077.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13783096},{"children":[],"data":{"mimeType":"image/jpeg","requestId":"2036.27","statusCode":200},"endTime":1348171822081.957,"frameId":"2036.1","startTime":1348171822081.957,"totalHeapSize":20605952,"type":"ResourceReceiveResponse","usedHeapSize":13783096},{"children":[],"data":{"requestId":"2036.27"},"endTime":1348171822081.957,"frameId":"2036.1","startTime":1348171822081.957,"totalHeapSize":20605952,"type":"ResourceReceivedData","usedHeapSize":13783096},{"children":[],"data":{"requestId":"2036.27"},"endTime":1348171822082.957,"frameId":"2036.1","startTime":1348171822081.957,"totalHeapSize":20605952,"type":"ResourceReceivedData","usedHeapSize":13783096},{"children":[],"data":{"requestId":"2036.27"},"endTime":1348171822082.957,"frameId":"2036.1","startTime":1348171822082.957,"totalHeapSize":20605952,"type":"ResourceReceivedData","usedHeapSize":13783096},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":27},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822086.957,"totalHeapSize":20605952,"type":"TimerInstall","usedHeapSize":13783360}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822086.957,"frameId":"2036.1","startTime":1348171822086.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13784660}],"data":{"timerId":16},"endTime":1348171822086.957,"frameId":"2036.1","startTime":1348171822086.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13784660},{"children":[],"data":{},"endTime":1348171822086.957,"frameId":"2036.1","startTime":1348171822086.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":13784660},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822087.957,"frameId":"2036.1","startTime":1348171822087.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13784704}],"data":{"timerId":27},"endTime":1348171822087.957,"frameId":"2036.1","startTime":1348171822087.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13784704},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":28},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822101.957,"totalHeapSize":20605952,"type":"TimerInstall","usedHeapSize":13784968}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822101.957,"frameId":"2036.1","startTime":1348171822101.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13786268}],"data":{"timerId":16},"endTime":1348171822101.957,"frameId":"2036.1","startTime":1348171822101.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13786268},{"children":[],"data":{},"endTime":1348171822101.957,"frameId":"2036.1","startTime":1348171822101.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":13786268},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822105.957,"frameId":"2036.1","startTime":1348171822105.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13786312}],"data":{"timerId":28},"endTime":1348171822105.957,"frameId":"2036.1","startTime":1348171822105.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13786312},{"children":[],"data":{"requestId":"2036.28"},"endTime":1348171822110.957,"frameId":"2036.1","startTime":1348171822110.957,"totalHeapSize":20605952,"type":"ResourceReceivedData","usedHeapSize":13786312},{"data":{"didFail":false,"networkTime":1348171822104.957,"requestId":"2036.28"},"frameId":"2036.1","startTime":1348171822110.957,"totalHeapSize":20605952,"type":"ResourceFinish","usedHeapSize":13786312},{"children":[{"children":[{"children":[],"data":{},"endTime":1348171822111.957,"frameId":"2036.1","stackTrace":[{"columnNumber":29294,"functionName":"f.expr.f.expr.filters.f.expr.filters.hidden","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":8522,"functionName":"n.selectors.filter.PSEUDO","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":3043,"functionName":"n.filter","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":1561,"functionName":"n","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":13291,"functionName":"c.querySelectorAll.n","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822111.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":13803396},{"children":[],"data":{},"endTime":1348171822112.957,"frameId":"2036.1","stackTrace":[{"columnNumber":29294,"functionName":"f.expr.f.expr.filters.f.expr.filters.hidden","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":8522,"functionName":"n.selectors.filter.PSEUDO","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":3043,"functionName":"n.filter","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":1561,"functionName":"n","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":13291,"functionName":"c.querySelectorAll.n","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822111.957,"totalHeapSize":20605952,"type":"Layout","usedHeapSize":13803620},{"children":[],"data":{},"endTime":1348171822112.957,"frameId":"2036.1","stackTrace":[{"columnNumber":28753,"functionName":"c.defaultView.c.defaultView.getComputedStyle.Db","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":26660,"functionName":"f.extend.cssHooks.opacity.get","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":27478,"functionName":"f.extend.css","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":42986,"functionName":"f.fx.cur","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":41056,"functionName":"g","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822112.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":13810092},{"children":[],"data":{},"endTime":1348171822112.957,"frameId":"2036.1","stackTrace":[{"columnNumber":28753,"functionName":"c.defaultView.c.defaultView.getComputedStyle.Db","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":26660,"functionName":"f.extend.cssHooks.opacity.get","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":27478,"functionName":"f.extend.css","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":42986,"functionName":"f.fx.cur","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":41056,"functionName":"g","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822112.957,"totalHeapSize":20605952,"type":"Layout","usedHeapSize":13810316},{"data":{"singleShot":true,"timeout":0,"timerId":29},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43182,"functionName":"f.fx.custom","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":41120,"functionName":"g","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":23951,"functionName":"f.extend.dequeue","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":24234,"functionName":"f.fn.extend.queue","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822113.957,"totalHeapSize":20605952,"type":"TimerInstall","usedHeapSize":13812140}],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822113.957,"frameId":"2036.1","startTime":1348171822110.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13818420}],"data":{"type":"load"},"endTime":1348171822113.957,"frameId":"2036.1","startTime":1348171822110.957,"totalHeapSize":20605952,"type":"EventDispatch","usedHeapSize":13818420},{"children":[],"data":{},"endTime":1348171822113.957,"frameId":"2036.1","startTime":1348171822113.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":13818420},{"children":[],"data":{},"endTime":1348171822113.957,"frameId":"2036.1","startTime":1348171822113.957,"totalHeapSize":20605952,"type":"Layout","usedHeapSize":13818420},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822118.957,"frameId":"2036.1","startTime":1348171822118.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13818464}],"data":{"timerId":29},"endTime":1348171822118.957,"frameId":"2036.1","startTime":1348171822118.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13818464},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":30},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822118.957,"totalHeapSize":20605952,"type":"TimerInstall","usedHeapSize":13818728}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822119.957,"frameId":"2036.1","startTime":1348171822118.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13820252}],"data":{"timerId":16},"endTime":1348171822119.957,"frameId":"2036.1","startTime":1348171822118.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13820252},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822119.957,"frameId":"2036.1","startTime":1348171822119.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13820296}],"data":{"timerId":30},"endTime":1348171822119.957,"frameId":"2036.1","startTime":1348171822119.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13820296},{"children":[],"data":{},"endTime":1348171822119.957,"frameId":"2036.1","startTime":1348171822119.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":13820296},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":31},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822132.957,"totalHeapSize":20605952,"type":"TimerInstall","usedHeapSize":13820560}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822132.957,"frameId":"2036.1","startTime":1348171822132.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13822072}],"data":{"timerId":16},"endTime":1348171822132.957,"frameId":"2036.1","startTime":1348171822132.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13822072},{"children":[],"data":{},"endTime":1348171822132.957,"frameId":"2036.1","startTime":1348171822132.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":13822072},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822136.957,"frameId":"2036.1","startTime":1348171822136.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13822116}],"data":{"timerId":31},"endTime":1348171822136.957,"frameId":"2036.1","startTime":1348171822136.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13822116},{"children":[],"data":{"requestId":"2036.27"},"endTime":1348171822136.957,"frameId":"2036.1","startTime":1348171822136.957,"totalHeapSize":20605952,"type":"ResourceReceivedData","usedHeapSize":13822116},{"children":[],"data":{"requestId":"2036.27"},"endTime":1348171822136.957,"frameId":"2036.1","startTime":1348171822136.957,"totalHeapSize":20605952,"type":"ResourceReceivedData","usedHeapSize":13822116},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":32},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822157.957,"totalHeapSize":20605952,"type":"TimerInstall","usedHeapSize":13822380}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822157.957,"frameId":"2036.1","startTime":1348171822157.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13823900}],"data":{"timerId":16},"endTime":1348171822157.957,"frameId":"2036.1","startTime":1348171822157.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13823900},{"children":[],"data":{},"endTime":1348171822161.957,"frameId":"2036.1","startTime":1348171822161.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":13823900},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822163.957,"frameId":"2036.1","startTime":1348171822163.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13823944}],"data":{"timerId":32},"endTime":1348171822163.957,"frameId":"2036.1","startTime":1348171822163.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13823944},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":33},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822170.957,"totalHeapSize":20605952,"type":"TimerInstall","usedHeapSize":13824208}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822170.957,"frameId":"2036.1","startTime":1348171822170.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13825728}],"data":{"timerId":16},"endTime":1348171822170.957,"frameId":"2036.1","startTime":1348171822170.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13825728},{"children":[],"data":{},"endTime":1348171822170.957,"frameId":"2036.1","startTime":1348171822170.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":13825728},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822183.957,"frameId":"2036.1","startTime":1348171822183.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13825772}],"data":{"timerId":33},"endTime":1348171822183.957,"frameId":"2036.1","startTime":1348171822183.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13825772},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":34},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822185.957,"totalHeapSize":20605952,"type":"TimerInstall","usedHeapSize":13826036}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822185.957,"frameId":"2036.1","startTime":1348171822185.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13827556}],"data":{"timerId":16},"endTime":1348171822185.957,"frameId":"2036.1","startTime":1348171822185.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13827556},{"children":[],"data":{},"endTime":1348171822187.957,"frameId":"2036.1","startTime":1348171822187.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":13827556},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822191.957,"frameId":"2036.1","startTime":1348171822191.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13827600}],"data":{"timerId":34},"endTime":1348171822191.957,"frameId":"2036.1","startTime":1348171822191.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13827600},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":35},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822197.957,"totalHeapSize":20605952,"type":"TimerInstall","usedHeapSize":13827864}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822197.957,"frameId":"2036.1","startTime":1348171822197.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13829384}],"data":{"timerId":16},"endTime":1348171822197.957,"frameId":"2036.1","startTime":1348171822197.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13829384},{"children":[],"data":{},"endTime":1348171822200.957,"frameId":"2036.1","startTime":1348171822200.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":13829384},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822204.957,"frameId":"2036.1","startTime":1348171822204.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13829428}],"data":{"timerId":35},"endTime":1348171822204.957,"frameId":"2036.1","startTime":1348171822204.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13829428},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":36},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822211.957,"totalHeapSize":20605952,"type":"TimerInstall","usedHeapSize":13829692}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822211.957,"frameId":"2036.1","startTime":1348171822211.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13831212}],"data":{"timerId":16},"endTime":1348171822211.957,"frameId":"2036.1","startTime":1348171822211.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13831212},{"children":[],"data":{},"endTime":1348171822211.957,"frameId":"2036.1","startTime":1348171822211.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":13831212},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822216.957,"frameId":"2036.1","startTime":1348171822216.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13831256}],"data":{"timerId":36},"endTime":1348171822216.957,"frameId":"2036.1","startTime":1348171822216.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13831256},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":37},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822224.957,"totalHeapSize":20605952,"type":"TimerInstall","usedHeapSize":13831520}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822224.957,"frameId":"2036.1","startTime":1348171822224.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13833040}],"data":{"timerId":16},"endTime":1348171822224.957,"frameId":"2036.1","startTime":1348171822224.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13833040},{"children":[],"data":{},"endTime":1348171822226.957,"frameId":"2036.1","startTime":1348171822226.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":13833040},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822228.957,"frameId":"2036.1","startTime":1348171822228.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13833084}],"data":{"timerId":37},"endTime":1348171822228.957,"frameId":"2036.1","startTime":1348171822228.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13833084},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":38},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822238.957,"totalHeapSize":20605952,"type":"TimerInstall","usedHeapSize":13833348}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822238.957,"frameId":"2036.1","startTime":1348171822238.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13834868}],"data":{"timerId":16},"endTime":1348171822238.957,"frameId":"2036.1","startTime":1348171822238.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13834868},{"children":[],"data":{},"endTime":1348171822242.957,"frameId":"2036.1","startTime":1348171822242.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":13834868},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822244.957,"frameId":"2036.1","startTime":1348171822244.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13834912}],"data":{"timerId":38},"endTime":1348171822244.957,"frameId":"2036.1","startTime":1348171822244.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13834912},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":39},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822251.957,"totalHeapSize":20605952,"type":"TimerInstall","usedHeapSize":13835176}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822251.957,"frameId":"2036.1","startTime":1348171822251.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13836696}],"data":{"timerId":16},"endTime":1348171822251.957,"frameId":"2036.1","startTime":1348171822251.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13836696},{"children":[],"data":{},"endTime":1348171822251.957,"frameId":"2036.1","startTime":1348171822251.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":13836696},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822254.957,"frameId":"2036.1","startTime":1348171822254.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13836740}],"data":{"timerId":39},"endTime":1348171822254.957,"frameId":"2036.1","startTime":1348171822254.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13836740},{"children":[{"children":[],"data":{"scriptLine":1582,"scriptName":"native v8natives.js"},"endTime":1348171822264.957,"frameId":"2036.1","startTime":1348171822264.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13837880}],"data":{"timerId":3},"endTime":1348171822264.957,"frameId":"2036.1","startTime":1348171822264.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13837880},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":40},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822264.957,"totalHeapSize":20605952,"type":"TimerInstall","usedHeapSize":13838144}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822264.957,"frameId":"2036.1","startTime":1348171822264.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13839664}],"data":{"timerId":16},"endTime":1348171822264.957,"frameId":"2036.1","startTime":1348171822264.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13839664},{"children":[],"data":{},"endTime":1348171822264.957,"frameId":"2036.1","startTime":1348171822264.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":13839664},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822265.957,"frameId":"2036.1","startTime":1348171822265.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13839708}],"data":{"timerId":40},"endTime":1348171822265.957,"frameId":"2036.1","startTime":1348171822265.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13839708},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":41},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822278.957,"totalHeapSize":20605952,"type":"TimerInstall","usedHeapSize":13839972}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822278.957,"frameId":"2036.1","startTime":1348171822278.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13841492}],"data":{"timerId":16},"endTime":1348171822278.957,"frameId":"2036.1","startTime":1348171822278.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13841492},{"children":[],"data":{},"endTime":1348171822278.957,"frameId":"2036.1","startTime":1348171822278.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":13841492},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822284.957,"frameId":"2036.1","startTime":1348171822284.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13841536}],"data":{"timerId":41},"endTime":1348171822284.957,"frameId":"2036.1","startTime":1348171822284.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13841536},{"children":[],"data":{"requestId":"2036.27"},"endTime":1348171822287.957,"frameId":"2036.1","startTime":1348171822287.957,"totalHeapSize":20605952,"type":"ResourceReceivedData","usedHeapSize":13841536},{"data":{"didFail":false,"networkTime":1348171822280.957,"requestId":"2036.27"},"frameId":"2036.1","startTime":1348171822287.957,"totalHeapSize":20605952,"type":"ResourceFinish","usedHeapSize":13841536},{"children":[{"children":[{"children":[],"data":{},"endTime":1348171822289.957,"frameId":"2036.1","stackTrace":[{"columnNumber":29294,"functionName":"f.expr.f.expr.filters.f.expr.filters.hidden","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":8522,"functionName":"n.selectors.filter.PSEUDO","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":3043,"functionName":"n.filter","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":1561,"functionName":"n","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":13291,"functionName":"c.querySelectorAll.n","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822289.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":13851144},{"children":[],"data":{},"endTime":1348171822289.957,"frameId":"2036.1","stackTrace":[{"columnNumber":29294,"functionName":"f.expr.f.expr.filters.f.expr.filters.hidden","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":8522,"functionName":"n.selectors.filter.PSEUDO","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":3043,"functionName":"n.filter","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":1561,"functionName":"n","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":13291,"functionName":"c.querySelectorAll.n","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822289.957,"totalHeapSize":20605952,"type":"Layout","usedHeapSize":13851368},{"children":[],"data":{},"endTime":1348171822289.957,"frameId":"2036.1","stackTrace":[{"columnNumber":28753,"functionName":"c.defaultView.c.defaultView.getComputedStyle.Db","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":26660,"functionName":"f.extend.cssHooks.opacity.get","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":27478,"functionName":"f.extend.css","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":42986,"functionName":"f.fx.cur","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":41056,"functionName":"g","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822289.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":13853492},{"children":[],"data":{},"endTime":1348171822289.957,"frameId":"2036.1","stackTrace":[{"columnNumber":28753,"functionName":"c.defaultView.c.defaultView.getComputedStyle.Db","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":26660,"functionName":"f.extend.cssHooks.opacity.get","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":27478,"functionName":"f.extend.css","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":42986,"functionName":"f.fx.cur","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":41056,"functionName":"g","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822289.957,"totalHeapSize":20605952,"type":"Layout","usedHeapSize":13853716},{"data":{"singleShot":true,"timeout":0,"timerId":42},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43182,"functionName":"f.fx.custom","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":41120,"functionName":"g","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":23951,"functionName":"f.extend.dequeue","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":24234,"functionName":"f.fn.extend.queue","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822289.957,"totalHeapSize":20605952,"type":"TimerInstall","usedHeapSize":13855332}],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822289.957,"frameId":"2036.1","startTime":1348171822287.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13857300}],"data":{"type":"load"},"endTime":1348171822289.957,"frameId":"2036.1","startTime":1348171822287.957,"totalHeapSize":20605952,"type":"EventDispatch","usedHeapSize":13857300},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":43},"frameId":"2036.1","stackTrace":[{"columnNumber":10,"functionName":"","lineNumber":81,"url":"chrome-extension://ejfgipfkkpdadoidbhfedneaabgolbno/wpt/script.js"}],"startTime":1348171822290.957,"totalHeapSize":20605952,"type":"TimerInstall","usedHeapSize":13881744}],"data":{"scriptLine":80,"scriptName":"chrome-extension://ejfgipfkkpdadoidbhfedneaabgolbno/wpt/script.js"},"endTime":1348171822290.957,"frameId":"2036.1","startTime":1348171822290.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13881744},{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822290.957,"frameId":"2036.1","startTime":1348171822290.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13881808}],"data":{"type":"load"},"endTime":1348171822290.957,"frameId":"2036.1","startTime":1348171822290.957,"totalHeapSize":20605952,"type":"EventDispatch","usedHeapSize":13881808},{"data":{},"frameId":"2036.1","startTime":1348171822290.957,"totalHeapSize":20605952,"type":"MarkLoad","usedHeapSize":13881808},{"children":[],"data":{},"endTime":1348171822291.957,"frameId":"2036.1","startTime":1348171822290.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":13881808},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822291.957,"frameId":"2036.1","startTime":1348171822291.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13881852}],"data":{"timerId":42},"endTime":1348171822291.957,"frameId":"2036.1","startTime":1348171822291.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13881852},{"children":[],"data":{},"endTime":1348171822291.957,"frameId":"2036.1","startTime":1348171822291.957,"totalHeapSize":20605952,"type":"Layout","usedHeapSize":13881852},{"children":[{"children":[],"data":{"scriptLine":59,"scriptName":"chrome-extension://ejfgipfkkpdadoidbhfedneaabgolbno/wpt/script.js"},"endTime":1348171822317.957,"frameId":"2036.1","startTime":1348171822291.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13917588}],"data":{"timerId":43},"endTime":1348171822317.957,"frameId":"2036.1","startTime":1348171822291.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13917588},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":44},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822317.957,"totalHeapSize":20605952,"type":"TimerInstall","usedHeapSize":13917852}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822317.957,"frameId":"2036.1","startTime":1348171822317.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13919596}],"data":{"timerId":16},"endTime":1348171822317.957,"frameId":"2036.1","startTime":1348171822317.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13919596},{"children":[],"data":{},"endTime":1348171822320.957,"frameId":"2036.1","startTime":1348171822320.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":13919596},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822320.957,"frameId":"2036.1","startTime":1348171822320.957,"totalHeapSize":20605952,"type":"FunctionCall","usedHeapSize":13919640}],"data":{"timerId":44},"endTime":1348171822320.957,"frameId":"2036.1","startTime":1348171822320.957,"totalHeapSize":20605952,"type":"TimerFire","usedHeapSize":13919640},{"children":[],"data":{"mimeType":"text/html","requestId":"2036.33","statusCode":200},"endTime":1348171822322.957,"frameId":"2036.7","startTime":1348171822322.957,"totalHeapSize":20605952,"type":"ResourceReceiveResponse","usedHeapSize":13919640},{"data":{"requestId":"2036.36","requestMethod":"GET","url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},"frameId":"2036.7","stackTrace":[{"columnNumber":4076,"functionName":"B.createScriptTag","lineNumber":11,"url":"https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1"},{"columnNumber":4263,"functionName":"B.load","lineNumber":11,"url":"https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1"},{"columnNumber":4834,"functionName":"C.start","lineNumber":11,"url":"https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1"},{"columnNumber":2912,"functionName":"A.then","lineNumber":11,"url":"https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1"},{"columnNumber":5655,"functionName":"E.start","lineNumber":11,"url":"https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1"}],"startTime":1348171822347.957,"totalHeapSize":21609472,"type":"ResourceSendRequest","usedHeapSize":14371776},{"children":[{"children":[],"data":{},"endTime":1348171822322.957,"frameId":"2036.7","startTime":1348171822322.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":13919640},{"children":[],"data":{},"endTime":1348171822323.957,"frameId":"2036.7","startTime":1348171822323.957,"totalHeapSize":20605952,"type":"RecalculateStyles","usedHeapSize":13919640},{"children":[{"children":[],"data":{"lineNumber":11,"url":"https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1"},"endTime":1348171822346.957,"frameId":"2036.7","startTime":1348171822328.957,"totalHeapSize":21609472,"type":"EvaluateScript","usedHeapSize":14345172},{"children":[],"data":{"lineNumber":12,"url":"https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1"},"endTime":1348171822346.957,"frameId":"2036.7","startTime":1348171822346.957,"totalHeapSize":21609472,"type":"EvaluateScript","usedHeapSize":14347100},{"children":[{"data":{"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},"frameId":"2036.7","stackTrace":[{"columnNumber":4076,"functionName":"B.createScriptTag","lineNumber":11,"url":"https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1"},{"columnNumber":4263,"functionName":"B.load","lineNumber":11,"url":"https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1"},{"columnNumber":4834,"functionName":"C.start","lineNumber":11,"url":"https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1"},{"columnNumber":2912,"functionName":"A.then","lineNumber":11,"url":"https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1"},{"columnNumber":5655,"functionName":"E.start","lineNumber":11,"url":"https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1"}],"startTime":1348171822350.957,"totalHeapSize":21609472,"type":"ScheduleResourceRequest","usedHeapSize":14373224}],"data":{"lineNumber":14,"url":"https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1"},"endTime":1348171822350.957,"frameId":"2036.7","startTime":1348171822346.957,"totalHeapSize":21609472,"type":"EvaluateScript","usedHeapSize":14376168}],"data":{"endLine":37,"length":8140,"startLine":0},"endTime":1348171822350.957,"frameId":"2036.7","startTime":1348171822323.957,"totalHeapSize":21609472,"type":"ParseHTML","usedHeapSize":14376168}],"data":{"requestId":"2036.33"},"endTime":1348171822350.957,"frameId":"2036.7","startTime":1348171822322.957,"totalHeapSize":21609472,"type":"ResourceReceivedData","usedHeapSize":14376168},{"children":[],"data":{"endLine":37,"length":1,"startLine":37},"endTime":1348171822353.957,"frameId":"2036.7","startTime":1348171822353.957,"totalHeapSize":21609472,"type":"ParseHTML","usedHeapSize":14376168},{"children":[],"data":{},"endTime":1348171822358.957,"frameId":"2036.7","startTime":1348171822358.957,"totalHeapSize":21609472,"type":"RecalculateStyles","usedHeapSize":14376168},{"data":{},"frameId":"2036.7","startTime":1348171822362.957,"totalHeapSize":21609472,"type":"MarkDOMContent","usedHeapSize":14376168},{"data":{"didFail":false,"networkTime":1348171822322.957,"requestId":"2036.33"},"frameId":"2036.7","startTime":1348171822366.957,"totalHeapSize":21609472,"type":"ResourceFinish","usedHeapSize":14376168},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":45},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822370.957,"totalHeapSize":21609472,"type":"TimerInstall","usedHeapSize":14376432}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822370.957,"frameId":"2036.1","startTime":1348171822370.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14378172}],"data":{"timerId":16},"endTime":1348171822370.957,"frameId":"2036.1","startTime":1348171822370.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14378172},{"children":[],"data":{},"endTime":1348171822374.957,"frameId":"2036.1","startTime":1348171822374.957,"totalHeapSize":21609472,"type":"RecalculateStyles","usedHeapSize":14378172},{"children":[],"data":{"scriptLine":81,"scriptName":"miscellaneous_bindings"},"endTime":1348171822376.957,"frameId":"2036.1","startTime":1348171822376.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14378352},{"children":[],"data":{"scriptLine":244,"scriptName":"miscellaneous_bindings"},"endTime":1348171822378.957,"frameId":"2036.1","startTime":1348171822378.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14381792},{"children":[],"data":{"scriptLine":222,"scriptName":"miscellaneous_bindings"},"endTime":1348171822378.957,"frameId":"2036.1","startTime":1348171822378.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14382024},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822378.957,"frameId":"2036.1","startTime":1348171822378.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14382108}],"data":{"timerId":45},"endTime":1348171822378.957,"frameId":"2036.1","startTime":1348171822378.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14382108},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":46},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822387.957,"totalHeapSize":21609472,"type":"TimerInstall","usedHeapSize":14382372}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822387.957,"frameId":"2036.1","startTime":1348171822387.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14384068}],"data":{"timerId":16},"endTime":1348171822387.957,"frameId":"2036.1","startTime":1348171822387.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14384068},{"children":[],"data":{},"endTime":1348171822389.957,"frameId":"2036.1","startTime":1348171822389.957,"totalHeapSize":21609472,"type":"RecalculateStyles","usedHeapSize":14384068},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822391.957,"frameId":"2036.1","startTime":1348171822391.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14384112}],"data":{"timerId":46},"endTime":1348171822391.957,"frameId":"2036.1","startTime":1348171822391.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14384112},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":47},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822401.957,"totalHeapSize":21609472,"type":"TimerInstall","usedHeapSize":14384376}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822401.957,"frameId":"2036.1","startTime":1348171822401.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14386116}],"data":{"timerId":16},"endTime":1348171822401.957,"frameId":"2036.1","startTime":1348171822401.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14386116},{"children":[],"data":{},"endTime":1348171822403.957,"frameId":"2036.1","startTime":1348171822403.957,"totalHeapSize":21609472,"type":"RecalculateStyles","usedHeapSize":14386116},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822405.957,"frameId":"2036.1","startTime":1348171822405.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14386160}],"data":{"timerId":47},"endTime":1348171822405.957,"frameId":"2036.1","startTime":1348171822405.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14386160},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":48},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822415.957,"totalHeapSize":21609472,"type":"TimerInstall","usedHeapSize":14386424}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822415.957,"frameId":"2036.1","startTime":1348171822415.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14388164}],"data":{"timerId":16},"endTime":1348171822415.957,"frameId":"2036.1","startTime":1348171822415.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14388164},{"children":[],"data":{},"endTime":1348171822416.957,"frameId":"2036.1","startTime":1348171822416.957,"totalHeapSize":21609472,"type":"RecalculateStyles","usedHeapSize":14388164},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822420.957,"frameId":"2036.1","startTime":1348171822419.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14388208}],"data":{"timerId":48},"endTime":1348171822420.957,"frameId":"2036.1","startTime":1348171822419.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14388208},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":49},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822428.957,"totalHeapSize":21609472,"type":"TimerInstall","usedHeapSize":14388472}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822428.957,"frameId":"2036.1","startTime":1348171822428.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14390212}],"data":{"timerId":16},"endTime":1348171822428.957,"frameId":"2036.1","startTime":1348171822428.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14390212},{"children":[],"data":{},"endTime":1348171822428.957,"frameId":"2036.1","startTime":1348171822428.957,"totalHeapSize":21609472,"type":"RecalculateStyles","usedHeapSize":14390212},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822431.957,"frameId":"2036.1","startTime":1348171822431.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14390256}],"data":{"timerId":49},"endTime":1348171822431.957,"frameId":"2036.1","startTime":1348171822431.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14390256},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":50},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822442.957,"totalHeapSize":21609472,"type":"TimerInstall","usedHeapSize":14390520}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822442.957,"frameId":"2036.1","startTime":1348171822442.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14392260}],"data":{"timerId":16},"endTime":1348171822442.957,"frameId":"2036.1","startTime":1348171822442.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14392260},{"children":[],"data":{},"endTime":1348171822446.957,"frameId":"2036.1","startTime":1348171822446.957,"totalHeapSize":21609472,"type":"RecalculateStyles","usedHeapSize":14392260},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822449.957,"frameId":"2036.1","startTime":1348171822449.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14392304}],"data":{"timerId":50},"endTime":1348171822449.957,"frameId":"2036.1","startTime":1348171822449.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14392304},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":51},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822456.957,"totalHeapSize":21609472,"type":"TimerInstall","usedHeapSize":14392568}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822456.957,"frameId":"2036.1","startTime":1348171822456.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14394308}],"data":{"timerId":16},"endTime":1348171822456.957,"frameId":"2036.1","startTime":1348171822456.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14394308},{"children":[],"data":{},"endTime":1348171822459.957,"frameId":"2036.1","startTime":1348171822459.957,"totalHeapSize":21609472,"type":"RecalculateStyles","usedHeapSize":14394308},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822461.957,"frameId":"2036.1","startTime":1348171822461.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14394352}],"data":{"timerId":51},"endTime":1348171822461.957,"frameId":"2036.1","startTime":1348171822461.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14394352},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":52},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822469.957,"totalHeapSize":21609472,"type":"TimerInstall","usedHeapSize":14394616}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822469.957,"frameId":"2036.1","startTime":1348171822469.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14396356}],"data":{"timerId":16},"endTime":1348171822469.957,"frameId":"2036.1","startTime":1348171822469.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14396356},{"children":[],"data":{},"endTime":1348171822471.957,"frameId":"2036.1","startTime":1348171822471.957,"totalHeapSize":21609472,"type":"RecalculateStyles","usedHeapSize":14396356},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822479.957,"frameId":"2036.1","startTime":1348171822479.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14396400}],"data":{"timerId":52},"endTime":1348171822479.957,"frameId":"2036.1","startTime":1348171822479.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14396400},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":53},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822482.957,"totalHeapSize":21609472,"type":"TimerInstall","usedHeapSize":14396664}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822482.957,"frameId":"2036.1","startTime":1348171822482.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14398404}],"data":{"timerId":16},"endTime":1348171822482.957,"frameId":"2036.1","startTime":1348171822482.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14398404},{"children":[],"data":{},"endTime":1348171822484.957,"frameId":"2036.1","startTime":1348171822484.957,"totalHeapSize":21609472,"type":"RecalculateStyles","usedHeapSize":14398404},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822484.957,"frameId":"2036.1","startTime":1348171822484.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14398448}],"data":{"timerId":53},"endTime":1348171822484.957,"frameId":"2036.1","startTime":1348171822484.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14398448},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":54},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822496.957,"totalHeapSize":21609472,"type":"TimerInstall","usedHeapSize":14398712}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822496.957,"frameId":"2036.1","startTime":1348171822496.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14400452}],"data":{"timerId":16},"endTime":1348171822496.957,"frameId":"2036.1","startTime":1348171822496.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14400452},{"children":[],"data":{},"endTime":1348171822496.957,"frameId":"2036.1","startTime":1348171822496.957,"totalHeapSize":21609472,"type":"RecalculateStyles","usedHeapSize":14400452},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822497.957,"frameId":"2036.1","startTime":1348171822497.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14400496}],"data":{"timerId":54},"endTime":1348171822497.957,"frameId":"2036.1","startTime":1348171822497.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14400496},{"children":[],"data":{"mimeType":"application/javascript","requestId":"2036.36","statusCode":200},"endTime":1348171822502.957,"frameId":"2036.7","startTime":1348171822502.957,"totalHeapSize":21609472,"type":"ResourceReceiveResponse","usedHeapSize":14400496},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":55},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822510.957,"totalHeapSize":21609472,"type":"TimerInstall","usedHeapSize":14400760}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822510.957,"frameId":"2036.1","startTime":1348171822510.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14402500}],"data":{"timerId":16},"endTime":1348171822510.957,"frameId":"2036.1","startTime":1348171822510.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14402500},{"children":[],"data":{},"endTime":1348171822510.957,"frameId":"2036.1","startTime":1348171822510.957,"totalHeapSize":21609472,"type":"RecalculateStyles","usedHeapSize":14402500},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822511.957,"frameId":"2036.1","startTime":1348171822511.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14402544}],"data":{"timerId":55},"endTime":1348171822511.957,"frameId":"2036.1","startTime":1348171822511.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14402544},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":56},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822524.957,"totalHeapSize":21609472,"type":"TimerInstall","usedHeapSize":14402808}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822524.957,"frameId":"2036.1","startTime":1348171822524.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14404548}],"data":{"timerId":16},"endTime":1348171822524.957,"frameId":"2036.1","startTime":1348171822524.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14404548},{"children":[],"data":{},"endTime":1348171822524.957,"frameId":"2036.1","startTime":1348171822524.957,"totalHeapSize":21609472,"type":"RecalculateStyles","usedHeapSize":14404548},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822529.957,"frameId":"2036.1","startTime":1348171822529.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14404592}],"data":{"timerId":56},"endTime":1348171822529.957,"frameId":"2036.1","startTime":1348171822529.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14404592},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":57},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822538.957,"totalHeapSize":21609472,"type":"TimerInstall","usedHeapSize":14404856}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822538.957,"frameId":"2036.1","startTime":1348171822538.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14406596}],"data":{"timerId":16},"endTime":1348171822538.957,"frameId":"2036.1","startTime":1348171822538.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14406596},{"children":[],"data":{},"endTime":1348171822538.957,"frameId":"2036.1","startTime":1348171822538.957,"totalHeapSize":21609472,"type":"RecalculateStyles","usedHeapSize":14406596},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822539.957,"frameId":"2036.1","startTime":1348171822539.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14406640}],"data":{"timerId":57},"endTime":1348171822539.957,"frameId":"2036.1","startTime":1348171822539.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14406640},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":58},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822551.957,"totalHeapSize":21609472,"type":"TimerInstall","usedHeapSize":14406904}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822551.957,"frameId":"2036.1","startTime":1348171822551.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14408644}],"data":{"timerId":16},"endTime":1348171822551.957,"frameId":"2036.1","startTime":1348171822551.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14408644},{"children":[],"data":{},"endTime":1348171822554.957,"frameId":"2036.1","startTime":1348171822554.957,"totalHeapSize":21609472,"type":"RecalculateStyles","usedHeapSize":14408644},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822556.957,"frameId":"2036.1","startTime":1348171822556.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14408688}],"data":{"timerId":58},"endTime":1348171822556.957,"frameId":"2036.1","startTime":1348171822556.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14408688},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":59},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822565.957,"totalHeapSize":21609472,"type":"TimerInstall","usedHeapSize":14408952}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822565.957,"frameId":"2036.1","startTime":1348171822565.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14410692}],"data":{"timerId":16},"endTime":1348171822565.957,"frameId":"2036.1","startTime":1348171822565.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14410692},{"children":[],"data":{},"endTime":1348171822566.957,"frameId":"2036.1","startTime":1348171822566.957,"totalHeapSize":21609472,"type":"RecalculateStyles","usedHeapSize":14410692},{"children":[],"data":{"requestId":"2036.36"},"endTime":1348171822568.957,"frameId":"2036.7","startTime":1348171822568.957,"totalHeapSize":21609472,"type":"ResourceReceivedData","usedHeapSize":14410692},{"children":[],"data":{"requestId":"2036.36"},"endTime":1348171822572.957,"frameId":"2036.7","startTime":1348171822572.957,"totalHeapSize":21609472,"type":"ResourceReceivedData","usedHeapSize":14410692},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822572.957,"frameId":"2036.1","startTime":1348171822572.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14410736}],"data":{"timerId":59},"endTime":1348171822572.957,"frameId":"2036.1","startTime":1348171822572.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14410736},{"children":[],"data":{},"endTime":1348171822579.957,"frameId":"2036.7","startTime":1348171822578.957,"totalHeapSize":21609472,"type":"Layout","usedHeapSize":14410736},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":60},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822580.957,"totalHeapSize":21609472,"type":"TimerInstall","usedHeapSize":14411000}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822580.957,"frameId":"2036.1","startTime":1348171822580.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14412740}],"data":{"timerId":16},"endTime":1348171822580.957,"frameId":"2036.1","startTime":1348171822580.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14412740},{"children":[],"data":{},"endTime":1348171822580.957,"frameId":"2036.1","startTime":1348171822580.957,"totalHeapSize":21609472,"type":"RecalculateStyles","usedHeapSize":14412740},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822587.957,"frameId":"2036.1","startTime":1348171822587.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14412784}],"data":{"timerId":60},"endTime":1348171822587.957,"frameId":"2036.1","startTime":1348171822587.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14412784},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":61},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822592.957,"totalHeapSize":21609472,"type":"TimerInstall","usedHeapSize":14413048}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822592.957,"frameId":"2036.1","startTime":1348171822592.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14414788}],"data":{"timerId":16},"endTime":1348171822592.957,"frameId":"2036.1","startTime":1348171822592.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14414788},{"children":[],"data":{},"endTime":1348171822595.957,"frameId":"2036.1","startTime":1348171822595.957,"totalHeapSize":21609472,"type":"RecalculateStyles","usedHeapSize":14414788},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822597.957,"frameId":"2036.1","startTime":1348171822597.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14414832}],"data":{"timerId":61},"endTime":1348171822597.957,"frameId":"2036.1","startTime":1348171822597.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14414832},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":62},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822605.957,"totalHeapSize":21609472,"type":"TimerInstall","usedHeapSize":14415096}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822605.957,"frameId":"2036.1","startTime":1348171822605.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14416836}],"data":{"timerId":16},"endTime":1348171822605.957,"frameId":"2036.1","startTime":1348171822605.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14416836},{"children":[],"data":{},"endTime":1348171822606.957,"frameId":"2036.1","startTime":1348171822606.957,"totalHeapSize":21609472,"type":"RecalculateStyles","usedHeapSize":14416836},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822609.957,"frameId":"2036.1","startTime":1348171822609.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14416880}],"data":{"timerId":62},"endTime":1348171822609.957,"frameId":"2036.1","startTime":1348171822609.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14416880},{"children":[],"data":{"requestId":"2036.36"},"endTime":1348171822619.957,"frameId":"2036.7","startTime":1348171822619.957,"totalHeapSize":21609472,"type":"ResourceReceivedData","usedHeapSize":14416880},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":63},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822621.957,"totalHeapSize":21609472,"type":"TimerInstall","usedHeapSize":14417144}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822621.957,"frameId":"2036.1","startTime":1348171822621.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14420508}],"data":{"timerId":16},"endTime":1348171822621.957,"frameId":"2036.1","startTime":1348171822621.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14420508},{"children":[],"data":{},"endTime":1348171822623.957,"frameId":"2036.1","startTime":1348171822623.957,"totalHeapSize":21609472,"type":"RecalculateStyles","usedHeapSize":14420508},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822628.957,"frameId":"2036.1","startTime":1348171822628.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14420552}],"data":{"timerId":63},"endTime":1348171822628.957,"frameId":"2036.1","startTime":1348171822628.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14420552},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":64},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822635.957,"totalHeapSize":21609472,"type":"TimerInstall","usedHeapSize":14420816}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822635.957,"frameId":"2036.1","startTime":1348171822635.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14422556}],"data":{"timerId":16},"endTime":1348171822635.957,"frameId":"2036.1","startTime":1348171822635.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14422556},{"children":[],"data":{},"endTime":1348171822637.957,"frameId":"2036.1","startTime":1348171822637.957,"totalHeapSize":21609472,"type":"RecalculateStyles","usedHeapSize":14422556},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822640.957,"frameId":"2036.1","startTime":1348171822640.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14422600}],"data":{"timerId":64},"endTime":1348171822640.957,"frameId":"2036.1","startTime":1348171822640.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14422600},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":65},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822649.957,"totalHeapSize":21609472,"type":"TimerInstall","usedHeapSize":14422864}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822649.957,"frameId":"2036.1","startTime":1348171822649.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14424604}],"data":{"timerId":16},"endTime":1348171822649.957,"frameId":"2036.1","startTime":1348171822649.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14424604},{"children":[],"data":{},"endTime":1348171822649.957,"frameId":"2036.1","startTime":1348171822649.957,"totalHeapSize":21609472,"type":"RecalculateStyles","usedHeapSize":14424604},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822653.957,"frameId":"2036.1","startTime":1348171822653.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14424648}],"data":{"timerId":65},"endTime":1348171822653.957,"frameId":"2036.1","startTime":1348171822653.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14424648},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":66},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822662.957,"totalHeapSize":21609472,"type":"TimerInstall","usedHeapSize":14424912}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822662.957,"frameId":"2036.1","startTime":1348171822662.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14426652}],"data":{"timerId":16},"endTime":1348171822662.957,"frameId":"2036.1","startTime":1348171822662.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14426652},{"children":[],"data":{},"endTime":1348171822665.957,"frameId":"2036.1","startTime":1348171822665.957,"totalHeapSize":21609472,"type":"RecalculateStyles","usedHeapSize":14426652},{"children":[],"data":{"mimeType":"application/json","requestId":"2036.34","statusCode":200},"endTime":1348171822668.957,"frameId":"2036.1","startTime":1348171822668.957,"totalHeapSize":21609472,"type":"ResourceReceiveResponse","usedHeapSize":14426652},{"children":[{"children":[{"children":[],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822673.957,"frameId":"2036.1","startTime":1348171822673.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14426736}],"data":{"readyState":2,"url":"http://twitter.com/i/resolve.json?urls%5B%5D=http%3A%2F%2Fzoompf.com%2F2012%2F09%2Finternet-explorer-is-the-hare-and-thats-bad&urls%5B%5D=http%3A%2F%2Fwww.strangeloopnetworks.com%2Fresources%2Finfographics%2Ffall-2012-state-of-the-union%2Fposter%2F&urls%5B%5D=http%3A%2F%2Fwww.ie6countdown.com%2F&urls%5B%5D=http%3A%2F%2Ftheie7countdown.com%2F&urls%5B%5D=http%3A%2F%2Fspr.ly%2F6017TWC7&urls%5B%5D=http%3A%2F%2Fwww.codinghorror.com%2Fblog%2F2012%2F09%2Fcomputer-crime-then-and-now.html&urls%5B%5D=http%3A%2F%2Fbit.ly%2FOvLmhp&urls%5B%5D=http%3A%2F%2Fdavesgeekyideas.com%2F2012%2F09%2F14%2Fbay-area-rapid-transit-map-super-mario-kart-style%2F&urls%5B%5D=http%3A%2F%2Fkkovacs.eu%2Fcassandra-vs-mongodb-vs-couchdb-vs-redis&urls%5B%5D=http%3A%2F%2Fwww.codeproject.com%2FTips%2F457877%2Fhow-to-get-A-in-Yslow-and-tune-up-your-website"},"endTime":1348171822673.957,"frameId":"2036.1","startTime":1348171822673.957,"totalHeapSize":21609472,"type":"XHRReadyStateChange","usedHeapSize":14426736},{"children":[{"children":[],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822673.957,"frameId":"2036.1","startTime":1348171822673.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14427176}],"data":{"readyState":3,"url":"http://twitter.com/i/resolve.json?urls%5B%5D=http%3A%2F%2Fzoompf.com%2F2012%2F09%2Finternet-explorer-is-the-hare-and-thats-bad&urls%5B%5D=http%3A%2F%2Fwww.strangeloopnetworks.com%2Fresources%2Finfographics%2Ffall-2012-state-of-the-union%2Fposter%2F&urls%5B%5D=http%3A%2F%2Fwww.ie6countdown.com%2F&urls%5B%5D=http%3A%2F%2Ftheie7countdown.com%2F&urls%5B%5D=http%3A%2F%2Fspr.ly%2F6017TWC7&urls%5B%5D=http%3A%2F%2Fwww.codinghorror.com%2Fblog%2F2012%2F09%2Fcomputer-crime-then-and-now.html&urls%5B%5D=http%3A%2F%2Fbit.ly%2FOvLmhp&urls%5B%5D=http%3A%2F%2Fdavesgeekyideas.com%2F2012%2F09%2F14%2Fbay-area-rapid-transit-map-super-mario-kart-style%2F&urls%5B%5D=http%3A%2F%2Fkkovacs.eu%2Fcassandra-vs-mongodb-vs-couchdb-vs-redis&urls%5B%5D=http%3A%2F%2Fwww.codeproject.com%2FTips%2F457877%2Fhow-to-get-A-in-Yslow-and-tune-up-your-website"},"endTime":1348171822673.957,"frameId":"2036.1","startTime":1348171822673.957,"totalHeapSize":21609472,"type":"XHRReadyStateChange","usedHeapSize":14427176}],"data":{"requestId":"2036.34"},"endTime":1348171822673.957,"frameId":"2036.1","startTime":1348171822673.957,"totalHeapSize":21609472,"type":"ResourceReceivedData","usedHeapSize":14427176},{"children":[{"children":[],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822682.957,"frameId":"2036.1","startTime":1348171822675.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14737632}],"data":{"readyState":4,"url":"http://twitter.com/i/resolve.json?urls%5B%5D=http%3A%2F%2Fzoompf.com%2F2012%2F09%2Finternet-explorer-is-the-hare-and-thats-bad&urls%5B%5D=http%3A%2F%2Fwww.strangeloopnetworks.com%2Fresources%2Finfographics%2Ffall-2012-state-of-the-union%2Fposter%2F&urls%5B%5D=http%3A%2F%2Fwww.ie6countdown.com%2F&urls%5B%5D=http%3A%2F%2Ftheie7countdown.com%2F&urls%5B%5D=http%3A%2F%2Fspr.ly%2F6017TWC7&urls%5B%5D=http%3A%2F%2Fwww.codinghorror.com%2Fblog%2F2012%2F09%2Fcomputer-crime-then-and-now.html&urls%5B%5D=http%3A%2F%2Fbit.ly%2FOvLmhp&urls%5B%5D=http%3A%2F%2Fdavesgeekyideas.com%2F2012%2F09%2F14%2Fbay-area-rapid-transit-map-super-mario-kart-style%2F&urls%5B%5D=http%3A%2F%2Fkkovacs.eu%2Fcassandra-vs-mongodb-vs-couchdb-vs-redis&urls%5B%5D=http%3A%2F%2Fwww.codeproject.com%2FTips%2F457877%2Fhow-to-get-A-in-Yslow-and-tune-up-your-website"},"endTime":1348171822682.957,"frameId":"2036.1","startTime":1348171822675.957,"totalHeapSize":21609472,"type":"XHRReadyStateChange","usedHeapSize":14737632},{"data":{"didFail":false,"networkTime":1348171822668.957,"requestId":"2036.34"},"frameId":"2036.1","startTime":1348171822686.957,"totalHeapSize":21609472,"type":"ResourceFinish","usedHeapSize":14737632},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822689.957,"frameId":"2036.1","startTime":1348171822689.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14737676}],"data":{"timerId":66},"endTime":1348171822689.957,"frameId":"2036.1","startTime":1348171822689.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14737676},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":67},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822691.957,"totalHeapSize":21609472,"type":"TimerInstall","usedHeapSize":14737940}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822691.957,"frameId":"2036.1","startTime":1348171822691.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14739680}],"data":{"timerId":16},"endTime":1348171822691.957,"frameId":"2036.1","startTime":1348171822691.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14739680},{"children":[],"data":{},"endTime":1348171822694.957,"frameId":"2036.1","startTime":1348171822694.957,"totalHeapSize":21609472,"type":"RecalculateStyles","usedHeapSize":14739680},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822697.957,"frameId":"2036.1","startTime":1348171822697.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14739724}],"data":{"timerId":67},"endTime":1348171822697.957,"frameId":"2036.1","startTime":1348171822697.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14739724},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":68},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822703.957,"totalHeapSize":21609472,"type":"TimerInstall","usedHeapSize":14739988}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822703.957,"frameId":"2036.1","startTime":1348171822703.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14741724}],"data":{"timerId":16},"endTime":1348171822703.957,"frameId":"2036.1","startTime":1348171822703.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14741724},{"children":[],"data":{},"endTime":1348171822706.957,"frameId":"2036.1","startTime":1348171822706.957,"totalHeapSize":21609472,"type":"RecalculateStyles","usedHeapSize":14741724},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822710.957,"frameId":"2036.1","startTime":1348171822710.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14741768}],"data":{"timerId":68},"endTime":1348171822710.957,"frameId":"2036.1","startTime":1348171822710.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14741768},{"children":[],"data":{"requestId":"2036.36"},"endTime":1348171822717.957,"frameId":"2036.7","startTime":1348171822717.957,"totalHeapSize":21609472,"type":"ResourceReceivedData","usedHeapSize":14741768},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":69},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822720.957,"totalHeapSize":21609472,"type":"TimerInstall","usedHeapSize":14742032}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822720.957,"frameId":"2036.1","startTime":1348171822720.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14743772}],"data":{"timerId":16},"endTime":1348171822720.957,"frameId":"2036.1","startTime":1348171822720.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14743772},{"children":[],"data":{},"endTime":1348171822722.957,"frameId":"2036.1","startTime":1348171822722.957,"totalHeapSize":21609472,"type":"RecalculateStyles","usedHeapSize":14743772},{"children":[],"data":{"requestId":"2036.36"},"endTime":1348171822727.957,"frameId":"2036.7","startTime":1348171822727.957,"totalHeapSize":21609472,"type":"ResourceReceivedData","usedHeapSize":14743772},{"data":{"didFail":false,"networkTime":1348171822711.957,"requestId":"2036.36"},"frameId":"2036.7","startTime":1348171822729.957,"totalHeapSize":21609472,"type":"ResourceFinish","usedHeapSize":14743772},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822738.957,"frameId":"2036.1","startTime":1348171822738.957,"totalHeapSize":21609472,"type":"FunctionCall","usedHeapSize":14743816}],"data":{"timerId":69},"endTime":1348171822738.957,"frameId":"2036.1","startTime":1348171822738.957,"totalHeapSize":21609472,"type":"TimerFire","usedHeapSize":14743816},{"children":[],"data":{"lineNumber":1,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},"endTime":1348171822745.957,"frameId":"2036.7","startTime":1348171822741.957,"totalHeapSize":21609472,"type":"EvaluateScript","usedHeapSize":14749432},{"children":[{"children":[{"children":[],"data":{"endLine":0,"length":109,"startLine":0},"endTime":1348171822772.957,"frameId":"2036.7","stackTrace":[{"columnNumber":15238,"functionName":"","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":18193,"functionName":"","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":48390,"functionName":"","lineNumber":20,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":5257,"functionName":"C.execute","lineNumber":11,"url":"https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1"},{"columnNumber":4722,"functionName":"C.start","lineNumber":11,"url":"https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1"}],"startTime":1348171822771.957,"totalHeapSize":22625152,"type":"ParseHTML","usedHeapSize":15418644},{"children":[],"data":{"endLine":0,"length":1,"startLine":0},"endTime":1348171822772.957,"frameId":"2036.7","stackTrace":[{"columnNumber":15238,"functionName":"","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":18193,"functionName":"","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":48390,"functionName":"","lineNumber":20,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":5257,"functionName":"C.execute","lineNumber":11,"url":"https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1"},{"columnNumber":4722,"functionName":"C.start","lineNumber":11,"url":"https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1"}],"startTime":1348171822772.957,"totalHeapSize":22625152,"type":"ParseHTML","usedHeapSize":15418868},{"children":[],"data":{"endLine":0,"length":56,"startLine":0},"endTime":1348171822773.957,"frameId":"2036.7","stackTrace":[{"columnNumber":16757,"functionName":"","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":18193,"functionName":"","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":48390,"functionName":"","lineNumber":20,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":5257,"functionName":"C.execute","lineNumber":11,"url":"https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1"},{"columnNumber":4722,"functionName":"C.start","lineNumber":11,"url":"https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1"}],"startTime":1348171822773.957,"totalHeapSize":22625152,"type":"ParseHTML","usedHeapSize":15464464},{"children":[],"data":{"endLine":0,"length":1,"startLine":0},"endTime":1348171822773.957,"frameId":"2036.7","stackTrace":[{"columnNumber":16757,"functionName":"","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":18193,"functionName":"","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":48390,"functionName":"","lineNumber":20,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":5257,"functionName":"C.execute","lineNumber":11,"url":"https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1"},{"columnNumber":4722,"functionName":"C.start","lineNumber":11,"url":"https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1"}],"startTime":1348171822773.957,"totalHeapSize":22625152,"type":"ParseHTML","usedHeapSize":15464688},{"children":[],"data":{"endLine":0,"length":31,"startLine":0},"endTime":1348171822774.957,"frameId":"2036.7","stackTrace":[{"columnNumber":10635,"functionName":"","lineNumber":20,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":11091,"functionName":"","lineNumber":20,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":14234,"functionName":"","lineNumber":20,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":48390,"functionName":"","lineNumber":20,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":5257,"functionName":"C.execute","lineNumber":11,"url":"https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1"}],"startTime":1348171822774.957,"totalHeapSize":22625152,"type":"ParseHTML","usedHeapSize":15655924},{"children":[],"data":{"endLine":0,"length":1,"startLine":0},"endTime":1348171822774.957,"frameId":"2036.7","stackTrace":[{"columnNumber":10635,"functionName":"","lineNumber":20,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":11091,"functionName":"","lineNumber":20,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":14234,"functionName":"","lineNumber":20,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":48390,"functionName":"","lineNumber":20,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":5257,"functionName":"C.execute","lineNumber":11,"url":"https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1"}],"startTime":1348171822774.957,"totalHeapSize":22625152,"type":"ParseHTML","usedHeapSize":15656148},{"children":[],"data":{"endLine":0,"length":16,"startLine":0},"endTime":1348171822775.957,"frameId":"2036.7","stackTrace":[{"columnNumber":11371,"functionName":"D.querySelectorAll.a","lineNumber":20,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":11565,"functionName":"","lineNumber":20,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":14234,"functionName":"","lineNumber":20,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":48390,"functionName":"","lineNumber":20,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":5257,"functionName":"C.execute","lineNumber":11,"url":"https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1"}],"startTime":1348171822775.957,"totalHeapSize":22625152,"type":"ParseHTML","usedHeapSize":15660092},{"children":[],"data":{"endLine":0,"length":1,"startLine":0},"endTime":1348171822775.957,"frameId":"2036.7","stackTrace":[{"columnNumber":11371,"functionName":"D.querySelectorAll.a","lineNumber":20,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":11565,"functionName":"","lineNumber":20,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":14234,"functionName":"","lineNumber":20,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":48390,"functionName":"","lineNumber":20,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":5257,"functionName":"C.execute","lineNumber":11,"url":"https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1"}],"startTime":1348171822775.957,"totalHeapSize":22625152,"type":"ParseHTML","usedHeapSize":15660316},{"children":[],"data":{"endLine":0,"length":20,"startLine":0},"endTime":1348171822775.957,"frameId":"2036.7","stackTrace":[{"columnNumber":11658,"functionName":"a","lineNumber":20,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":12614,"functionName":"","lineNumber":20,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":14234,"functionName":"","lineNumber":20,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":48390,"functionName":"","lineNumber":20,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":5257,"functionName":"C.execute","lineNumber":11,"url":"https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1"}],"startTime":1348171822775.957,"totalHeapSize":22625152,"type":"ParseHTML","usedHeapSize":15660668},{"children":[],"data":{"endLine":0,"length":1,"startLine":0},"endTime":1348171822775.957,"frameId":"2036.7","stackTrace":[{"columnNumber":11658,"functionName":"a","lineNumber":20,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":12614,"functionName":"","lineNumber":20,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":14234,"functionName":"","lineNumber":20,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":48390,"functionName":"","lineNumber":20,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":5257,"functionName":"C.execute","lineNumber":11,"url":"https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1"}],"startTime":1348171822775.957,"totalHeapSize":22625152,"type":"ParseHTML","usedHeapSize":15660892},{"children":[],"data":{"endLine":0,"length":50,"startLine":0},"endTime":1348171822776.957,"frameId":"2036.7","stackTrace":[{"columnNumber":13178,"functionName":"D.documentElement.contains.l.contains","lineNumber":20,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":13542,"functionName":"","lineNumber":20,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":14234,"functionName":"","lineNumber":20,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":48390,"functionName":"","lineNumber":20,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":5257,"functionName":"C.execute","lineNumber":11,"url":"https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1"}],"startTime":1348171822776.957,"totalHeapSize":22625152,"type":"ParseHTML","usedHeapSize":15684588},{"children":[],"data":{"endLine":0,"length":1,"startLine":0},"endTime":1348171822776.957,"frameId":"2036.7","stackTrace":[{"columnNumber":13178,"functionName":"D.documentElement.contains.l.contains","lineNumber":20,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":13542,"functionName":"","lineNumber":20,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":14234,"functionName":"","lineNumber":20,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":48390,"functionName":"","lineNumber":20,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":5257,"functionName":"C.execute","lineNumber":11,"url":"https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1"}],"startTime":1348171822776.957,"totalHeapSize":22625152,"type":"ParseHTML","usedHeapSize":15684812},{"data":{"usedHeapSizeDelta":1740700},"endTime":1348171822783.957,"stackTrace":[{"columnNumber":10834,"functionName":"J.stack.PostMessageTransport.g.onDOMReady","lineNumber":42,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":416,"functionName":"m","lineNumber":42,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":10887,"functionName":"J.stack.PostMessageTransport.g.init","lineNumber":42,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":15903,"functionName":"J.stack.QueueBehavior.c.init","lineNumber":42,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":5258,"functionName":"c.init","lineNumber":42,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"}],"startTime":1348171822778.957,"totalHeapSize":23640832,"type":"GCEvent","usedHeapSize":14531908},{"data":{"singleShot":true,"timeout":0,"timerId":70},"frameId":"2036.7","stackTrace":[{"columnNumber":10834,"functionName":"J.stack.PostMessageTransport.g.onDOMReady","lineNumber":42,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":416,"functionName":"m","lineNumber":42,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":10887,"functionName":"J.stack.PostMessageTransport.g.init","lineNumber":42,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":15903,"functionName":"J.stack.QueueBehavior.c.init","lineNumber":42,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":5258,"functionName":"c.init","lineNumber":42,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"}],"startTime":1348171822794.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14532132}],"data":{"scriptLine":11,"scriptName":"https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1"},"endTime":1348171822794.957,"frameId":"2036.7","startTime":1348171822747.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14532132}],"data":{"type":"load"},"endTime":1348171822794.957,"frameId":"2036.7","startTime":1348171822747.957,"totalHeapSize":23640832,"type":"EventDispatch","usedHeapSize":14532132},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":71},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822800.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14532396}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822800.957,"frameId":"2036.1","startTime":1348171822800.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14536308}],"data":{"timerId":16},"endTime":1348171822800.957,"frameId":"2036.1","startTime":1348171822800.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14536308},{"children":[],"data":{},"endTime":1348171822802.957,"frameId":"2036.7","startTime":1348171822802.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14536308},{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":72},"frameId":"2036.1","stackTrace":[{"columnNumber":10580,"functionName":"i","lineNumber":23,"url":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"}],"startTime":1348171822805.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14537300}],"data":{"scriptLine":23,"scriptName":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},"endTime":1348171822805.957,"frameId":"2036.1","startTime":1348171822805.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14537300},{"children":[{"children":[],"data":{"scriptLine":42,"scriptName":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},"endTime":1348171822806.957,"frameId":"2036.7","startTime":1348171822806.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14538168}],"data":{"timerId":70},"endTime":1348171822806.957,"frameId":"2036.7","startTime":1348171822806.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14538168},{"children":[{"children":[{"children":[],"data":{},"endTime":1348171822809.957,"frameId":"2036.1","stackTrace":[{"columnNumber":17126,"functionName":"","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":14186,"functionName":"E.extend._Deferred.e.resolveWith","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":9177,"functionName":"d.extend.ready","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"}],"startTime":1348171822809.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14539776},{"children":[],"data":{},"endTime":1348171822809.957,"frameId":"2036.1","stackTrace":[{"columnNumber":17126,"functionName":"","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":14186,"functionName":"E.extend._Deferred.e.resolveWith","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":9177,"functionName":"d.extend.ready","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"}],"startTime":1348171822809.957,"totalHeapSize":23640832,"type":"Layout","usedHeapSize":14539928},{"children":[],"data":{},"endTime":1348171822809.957,"frameId":"2036.7","stackTrace":[{"columnNumber":17126,"functionName":"","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":14186,"functionName":"E.extend._Deferred.e.resolveWith","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":9177,"functionName":"d.extend.ready","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"}],"startTime":1348171822809.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14540080},{"children":[],"data":{},"endTime":1348171822809.957,"frameId":"2036.7","stackTrace":[{"columnNumber":17126,"functionName":"","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":14186,"functionName":"E.extend._Deferred.e.resolveWith","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":9177,"functionName":"d.extend.ready","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"}],"startTime":1348171822809.957,"totalHeapSize":23640832,"type":"Layout","usedHeapSize":14540232},{"children":[],"data":{},"endTime":1348171822809.957,"frameId":"2036.7","stackTrace":[{"columnNumber":17236,"functionName":"","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":14186,"functionName":"E.extend._Deferred.e.resolveWith","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":9177,"functionName":"d.extend.ready","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"}],"startTime":1348171822809.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14541656},{"children":[],"data":{},"endTime":1348171822810.957,"frameId":"2036.7","stackTrace":[{"columnNumber":17236,"functionName":"","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":14186,"functionName":"E.extend._Deferred.e.resolveWith","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":9177,"functionName":"d.extend.ready","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"}],"startTime":1348171822809.957,"totalHeapSize":23640832,"type":"Layout","usedHeapSize":14541808},{"children":[],"data":{"endLine":0,"length":30,"startLine":0},"endTime":1348171822810.957,"frameId":"2036.7","stackTrace":[{"columnNumber":17283,"functionName":"","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":14186,"functionName":"E.extend._Deferred.e.resolveWith","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":9177,"functionName":"d.extend.ready","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"}],"startTime":1348171822810.957,"totalHeapSize":23640832,"type":"ParseHTML","usedHeapSize":14543088},{"children":[],"data":{"endLine":0,"length":1,"startLine":0},"endTime":1348171822810.957,"frameId":"2036.7","stackTrace":[{"columnNumber":17283,"functionName":"","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":14186,"functionName":"E.extend._Deferred.e.resolveWith","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":9177,"functionName":"d.extend.ready","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"}],"startTime":1348171822810.957,"totalHeapSize":23640832,"type":"ParseHTML","usedHeapSize":14543240},{"children":[],"data":{},"endTime":1348171822810.957,"frameId":"2036.7","stackTrace":[{"columnNumber":17345,"functionName":"","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":14186,"functionName":"E.extend._Deferred.e.resolveWith","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":9177,"functionName":"d.extend.ready","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"}],"startTime":1348171822810.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14543392},{"children":[],"data":{},"endTime":1348171822810.957,"frameId":"2036.7","stackTrace":[{"columnNumber":17345,"functionName":"","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":14186,"functionName":"E.extend._Deferred.e.resolveWith","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":9177,"functionName":"d.extend.ready","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"}],"startTime":1348171822810.957,"totalHeapSize":23640832,"type":"Layout","usedHeapSize":14543544},{"children":[],"data":{"endLine":0,"length":83,"startLine":0},"endTime":1348171822810.957,"frameId":"2036.7","stackTrace":[{"columnNumber":17374,"functionName":"","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":14186,"functionName":"E.extend._Deferred.e.resolveWith","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":9177,"functionName":"d.extend.ready","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"}],"startTime":1348171822810.957,"totalHeapSize":23640832,"type":"ParseHTML","usedHeapSize":14543908},{"children":[],"data":{"endLine":0,"length":1,"startLine":0},"endTime":1348171822810.957,"frameId":"2036.7","stackTrace":[{"columnNumber":17374,"functionName":"","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":14186,"functionName":"E.extend._Deferred.e.resolveWith","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":9177,"functionName":"d.extend.ready","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"}],"startTime":1348171822810.957,"totalHeapSize":23640832,"type":"ParseHTML","usedHeapSize":14544060},{"children":[],"data":{},"endTime":1348171822810.957,"frameId":"2036.7","stackTrace":[{"columnNumber":17532,"functionName":"","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":14186,"functionName":"E.extend._Deferred.e.resolveWith","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":9177,"functionName":"d.extend.ready","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"}],"startTime":1348171822810.957,"totalHeapSize":23640832,"type":"Layout","usedHeapSize":14550128},{"children":[],"data":{},"endTime":1348171822810.957,"frameId":"2036.7","stackTrace":[{"columnNumber":17667,"functionName":"","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":14186,"functionName":"E.extend._Deferred.e.resolveWith","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":9177,"functionName":"d.extend.ready","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"}],"startTime":1348171822810.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14551444},{"children":[],"data":{},"endTime":1348171822810.957,"frameId":"2036.7","stackTrace":[{"columnNumber":17667,"functionName":"","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":14186,"functionName":"E.extend._Deferred.e.resolveWith","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":9177,"functionName":"d.extend.ready","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"}],"startTime":1348171822810.957,"totalHeapSize":23640832,"type":"Layout","usedHeapSize":14551596},{"children":[],"data":{"endLine":0,"length":0,"startLine":0},"endTime":1348171822811.957,"frameId":"2036.7","stackTrace":[{"columnNumber":17696,"functionName":"","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":14186,"functionName":"E.extend._Deferred.e.resolveWith","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":9177,"functionName":"d.extend.ready","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"}],"startTime":1348171822810.957,"totalHeapSize":23640832,"type":"ParseHTML","usedHeapSize":14551748},{"children":[],"data":{"endLine":0,"length":1,"startLine":0},"endTime":1348171822811.957,"frameId":"2036.7","stackTrace":[{"columnNumber":17696,"functionName":"","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":14186,"functionName":"E.extend._Deferred.e.resolveWith","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":9177,"functionName":"d.extend.ready","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"}],"startTime":1348171822811.957,"totalHeapSize":23640832,"type":"ParseHTML","usedHeapSize":14551900},{"children":[],"data":{},"endTime":1348171822811.957,"frameId":"2036.7","stackTrace":[{"columnNumber":17870,"functionName":"","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":14186,"functionName":"E.extend._Deferred.e.resolveWith","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":9177,"functionName":"d.extend.ready","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"}],"startTime":1348171822811.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14553208},{"children":[],"data":{},"endTime":1348171822811.957,"frameId":"2036.7","stackTrace":[{"columnNumber":17870,"functionName":"","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":14186,"functionName":"E.extend._Deferred.e.resolveWith","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":9177,"functionName":"d.extend.ready","lineNumber":15,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"}],"startTime":1348171822811.957,"totalHeapSize":23640832,"type":"Layout","usedHeapSize":14553360}],"data":{"scriptLine":15,"scriptName":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},"endTime":1348171822811.957,"frameId":"2036.7","startTime":1348171822809.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14559504}],"data":{"type":"load"},"endTime":1348171822811.957,"frameId":"2036.7","startTime":1348171822809.957,"totalHeapSize":23640832,"type":"EventDispatch","usedHeapSize":14559504},{"data":{},"frameId":"2036.7","startTime":1348171822815.957,"totalHeapSize":23640832,"type":"MarkLoad","usedHeapSize":14559504},{"children":[],"data":{},"endTime":1348171822817.957,"frameId":"2036.7","startTime":1348171822817.957,"totalHeapSize":23640832,"type":"Layout","usedHeapSize":14559504},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822820.957,"frameId":"2036.1","startTime":1348171822820.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14559548}],"data":{"timerId":71},"endTime":1348171822820.957,"frameId":"2036.1","startTime":1348171822820.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14559548},{"children":[{"children":[],"data":{"scriptLine":23,"scriptName":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},"endTime":1348171822823.957,"frameId":"2036.1","startTime":1348171822823.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14562460}],"data":{"timerId":72},"endTime":1348171822823.957,"frameId":"2036.1","startTime":1348171822823.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14562460},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":73},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822825.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14562724}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822825.957,"frameId":"2036.1","startTime":1348171822825.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14564212}],"data":{"timerId":16},"endTime":1348171822825.957,"frameId":"2036.1","startTime":1348171822825.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14564212},{"data":{"requestId":"2036.37","requestMethod":"GET","url":"https://widgets.platform.twitter.com/services/rest?jsoncallback=jQuery152016022174223326147_1348171822792&format=json&api_key=2a56884b56a00758525eaa2fee16a798&method=flickr.photos.getInfo&photo_id=7926895406&_=1348171822835"},"frameId":"2036.7","stackTrace":[{"columnNumber":35659,"functionName":"E.ajaxTransport.send","lineNumber":20,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":33629,"functionName":"E.extend.ajax","lineNumber":20,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":13,"functionName":"easyXDM.Socket.onMessage","lineNumber":31,"url":"https://si0.twimg.com/a/1348075398/jsonp_sandbox.html?xdm_e=http%3A%2F%2Ftwitter.com&xdm_c=default9878&xdm_p=1"},{"columnNumber":6942,"functionName":"J.Socket.z.concat.incoming","lineNumber":42,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},{"columnNumber":10144,"functionName":"f","lineNumber":42,"url":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"}],"startTime":1348171822828.957,"totalHeapSize":23640832,"type":"ResourceSendRequest","usedHeapSize":14628980},{"children":[],"data":{"scriptLine":42,"scriptName":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},"endTime":1348171822834.957,"frameId":"2036.7","startTime":1348171822827.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14629984},{"children":[],"data":{},"endTime":1348171822836.957,"frameId":"2036.1","startTime":1348171822836.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14629984},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822839.957,"frameId":"2036.1","startTime":1348171822839.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14630028}],"data":{"timerId":73},"endTime":1348171822839.957,"frameId":"2036.1","startTime":1348171822839.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14630028},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":74},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822840.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14630292}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822840.957,"frameId":"2036.1","startTime":1348171822840.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14631812}],"data":{"timerId":16},"endTime":1348171822840.957,"frameId":"2036.1","startTime":1348171822840.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14631812},{"children":[],"data":{},"endTime":1348171822843.957,"frameId":"2036.7","startTime":1348171822843.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14631812},{"children":[],"data":{},"endTime":1348171822845.957,"frameId":"2036.1","startTime":1348171822845.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14631812},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822847.957,"frameId":"2036.1","startTime":1348171822847.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14631856}],"data":{"timerId":74},"endTime":1348171822847.957,"frameId":"2036.1","startTime":1348171822847.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14631856},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":75},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822853.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14632120}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822853.957,"frameId":"2036.1","startTime":1348171822853.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14633640}],"data":{"timerId":16},"endTime":1348171822853.957,"frameId":"2036.1","startTime":1348171822853.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14633640},{"children":[],"data":{},"endTime":1348171822855.957,"frameId":"2036.1","startTime":1348171822855.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14633640},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822857.957,"frameId":"2036.1","startTime":1348171822857.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14633684}],"data":{"timerId":75},"endTime":1348171822857.957,"frameId":"2036.1","startTime":1348171822857.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14633684},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":76},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822867.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14633948}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822867.957,"frameId":"2036.1","startTime":1348171822867.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14635436}],"data":{"timerId":16},"endTime":1348171822867.957,"frameId":"2036.1","startTime":1348171822867.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14635436},{"children":[],"data":{},"endTime":1348171822869.957,"frameId":"2036.1","startTime":1348171822869.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14635436},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822873.957,"frameId":"2036.1","startTime":1348171822873.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14635480}],"data":{"timerId":76},"endTime":1348171822873.957,"frameId":"2036.1","startTime":1348171822873.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14635480},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":77},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822881.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14635744}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822881.957,"frameId":"2036.1","startTime":1348171822881.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14637264}],"data":{"timerId":16},"endTime":1348171822881.957,"frameId":"2036.1","startTime":1348171822881.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14637264},{"children":[],"data":{},"endTime":1348171822882.957,"frameId":"2036.1","startTime":1348171822882.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14637264},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822882.957,"frameId":"2036.1","startTime":1348171822882.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14637308}],"data":{"timerId":77},"endTime":1348171822882.957,"frameId":"2036.1","startTime":1348171822882.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14637308},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":78},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822896.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14637572}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822896.957,"frameId":"2036.1","startTime":1348171822896.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14639060}],"data":{"timerId":16},"endTime":1348171822896.957,"frameId":"2036.1","startTime":1348171822896.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14639060},{"children":[],"data":{},"endTime":1348171822898.957,"frameId":"2036.1","startTime":1348171822898.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14639060},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822900.957,"frameId":"2036.1","startTime":1348171822900.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14639104}],"data":{"timerId":78},"endTime":1348171822900.957,"frameId":"2036.1","startTime":1348171822900.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14639104},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":79},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822910.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14639368}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822911.957,"frameId":"2036.1","startTime":1348171822910.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14648300}],"data":{"timerId":16},"endTime":1348171822911.957,"frameId":"2036.1","startTime":1348171822910.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14648300},{"children":[],"data":{},"endTime":1348171822912.957,"frameId":"2036.1","startTime":1348171822912.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14648300},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822914.957,"frameId":"2036.1","startTime":1348171822914.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14648344}],"data":{"timerId":79},"endTime":1348171822914.957,"frameId":"2036.1","startTime":1348171822914.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14648344},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":80},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822924.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14648608}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822924.957,"frameId":"2036.1","startTime":1348171822924.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14651356}],"data":{"timerId":16},"endTime":1348171822924.957,"frameId":"2036.1","startTime":1348171822924.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14651356},{"children":[],"data":{},"endTime":1348171822927.957,"frameId":"2036.1","startTime":1348171822927.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14651356},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822930.957,"frameId":"2036.1","startTime":1348171822930.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14651400}],"data":{"timerId":80},"endTime":1348171822930.957,"frameId":"2036.1","startTime":1348171822930.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14651400},{"children":[],"data":{},"endTime":1348171822933.957,"frameId":"2036.1","startTime":1348171822933.957,"totalHeapSize":23640832,"type":"Layout","usedHeapSize":14651400},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":81},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822937.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14651664}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822937.957,"frameId":"2036.1","startTime":1348171822937.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14652952}],"data":{"timerId":16},"endTime":1348171822937.957,"frameId":"2036.1","startTime":1348171822937.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14652952},{"children":[],"data":{},"endTime":1348171822937.957,"frameId":"2036.1","startTime":1348171822937.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14652952},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822943.957,"frameId":"2036.1","startTime":1348171822943.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14652996}],"data":{"timerId":81},"endTime":1348171822943.957,"frameId":"2036.1","startTime":1348171822943.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14652996},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":82},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822950.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14653260}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822950.957,"frameId":"2036.1","startTime":1348171822950.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14654548}],"data":{"timerId":16},"endTime":1348171822950.957,"frameId":"2036.1","startTime":1348171822950.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14654548},{"children":[],"data":{},"endTime":1348171822951.957,"frameId":"2036.1","startTime":1348171822951.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14654548},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822955.957,"frameId":"2036.1","startTime":1348171822955.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14654592}],"data":{"timerId":82},"endTime":1348171822955.957,"frameId":"2036.1","startTime":1348171822955.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14654592},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":83},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822964.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14654856}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822964.957,"frameId":"2036.1","startTime":1348171822964.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14656144}],"data":{"timerId":16},"endTime":1348171822964.957,"frameId":"2036.1","startTime":1348171822964.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14656144},{"children":[],"data":{},"endTime":1348171822966.957,"frameId":"2036.1","startTime":1348171822966.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14656144},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822968.957,"frameId":"2036.1","startTime":1348171822968.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14656188}],"data":{"timerId":83},"endTime":1348171822968.957,"frameId":"2036.1","startTime":1348171822968.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14656188},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":84},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822978.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14656452}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822978.957,"frameId":"2036.1","startTime":1348171822978.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14657740}],"data":{"timerId":16},"endTime":1348171822978.957,"frameId":"2036.1","startTime":1348171822978.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14657740},{"children":[],"data":{},"endTime":1348171822981.957,"frameId":"2036.1","startTime":1348171822981.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14657740},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822983.957,"frameId":"2036.1","startTime":1348171822983.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14657784}],"data":{"timerId":84},"endTime":1348171822983.957,"frameId":"2036.1","startTime":1348171822983.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14657784},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":85},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171822991.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14658048}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822991.957,"frameId":"2036.1","startTime":1348171822991.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14659336}],"data":{"timerId":16},"endTime":1348171822991.957,"frameId":"2036.1","startTime":1348171822991.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14659336},{"children":[],"data":{},"endTime":1348171822992.957,"frameId":"2036.1","startTime":1348171822992.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14659336},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171822992.957,"frameId":"2036.1","startTime":1348171822992.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14659380}],"data":{"timerId":85},"endTime":1348171822992.957,"frameId":"2036.1","startTime":1348171822992.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14659380},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":86},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171823005.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14659644}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171823005.957,"frameId":"2036.1","startTime":1348171823005.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14660932}],"data":{"timerId":16},"endTime":1348171823005.957,"frameId":"2036.1","startTime":1348171823005.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14660932},{"children":[],"data":{},"endTime":1348171823005.957,"frameId":"2036.1","startTime":1348171823005.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14660932},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171823009.957,"frameId":"2036.1","startTime":1348171823009.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14660976}],"data":{"timerId":86},"endTime":1348171823009.957,"frameId":"2036.1","startTime":1348171823009.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14660976},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":87},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171823018.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14661240}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171823018.957,"frameId":"2036.1","startTime":1348171823018.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14662528}],"data":{"timerId":16},"endTime":1348171823018.957,"frameId":"2036.1","startTime":1348171823018.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14662528},{"children":[],"data":{},"endTime":1348171823020.957,"frameId":"2036.1","startTime":1348171823020.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14662528},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171823022.957,"frameId":"2036.1","startTime":1348171823022.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14662572}],"data":{"timerId":87},"endTime":1348171823022.957,"frameId":"2036.1","startTime":1348171823022.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14662572},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":88},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171823031.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14662836}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171823031.957,"frameId":"2036.1","startTime":1348171823031.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14664124}],"data":{"timerId":16},"endTime":1348171823031.957,"frameId":"2036.1","startTime":1348171823031.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14664124},{"children":[],"data":{},"endTime":1348171823033.957,"frameId":"2036.1","startTime":1348171823033.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14664124},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171823035.957,"frameId":"2036.1","startTime":1348171823035.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14664168}],"data":{"timerId":88},"endTime":1348171823035.957,"frameId":"2036.1","startTime":1348171823035.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14664168},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":89},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171823045.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14664432}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171823045.957,"frameId":"2036.1","startTime":1348171823045.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14665720}],"data":{"timerId":16},"endTime":1348171823045.957,"frameId":"2036.1","startTime":1348171823045.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14665720},{"children":[],"data":{},"endTime":1348171823047.957,"frameId":"2036.1","startTime":1348171823046.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14665720},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171823050.957,"frameId":"2036.1","startTime":1348171823050.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14665764}],"data":{"timerId":89},"endTime":1348171823050.957,"frameId":"2036.1","startTime":1348171823050.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14665764},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":90},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171823059.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14666028}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171823059.957,"frameId":"2036.1","startTime":1348171823059.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14667316}],"data":{"timerId":16},"endTime":1348171823059.957,"frameId":"2036.1","startTime":1348171823059.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14667316},{"children":[],"data":{},"endTime":1348171823059.957,"frameId":"2036.1","startTime":1348171823059.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14667316},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171823062.957,"frameId":"2036.1","startTime":1348171823062.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14667360}],"data":{"timerId":90},"endTime":1348171823062.957,"frameId":"2036.1","startTime":1348171823062.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14667360},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":91},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171823073.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14667624}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171823073.957,"frameId":"2036.1","startTime":1348171823073.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14668912}],"data":{"timerId":16},"endTime":1348171823073.957,"frameId":"2036.1","startTime":1348171823073.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14668912},{"children":[],"data":{},"endTime":1348171823074.957,"frameId":"2036.1","startTime":1348171823074.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14668912},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171823074.957,"frameId":"2036.1","startTime":1348171823074.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14668956}],"data":{"timerId":91},"endTime":1348171823074.957,"frameId":"2036.1","startTime":1348171823074.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14668956},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":92},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171823087.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14669220}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171823087.957,"frameId":"2036.1","startTime":1348171823087.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14670508}],"data":{"timerId":16},"endTime":1348171823087.957,"frameId":"2036.1","startTime":1348171823087.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14670508},{"children":[],"data":{},"endTime":1348171823087.957,"frameId":"2036.1","startTime":1348171823087.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14670508},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171823088.957,"frameId":"2036.1","startTime":1348171823088.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14670552}],"data":{"timerId":92},"endTime":1348171823088.957,"frameId":"2036.1","startTime":1348171823088.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14670552},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":93},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171823102.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14670816},{"data":{"timerId":16},"frameId":"2036.1","stackTrace":[{"columnNumber":44936,"functionName":"f.extend.stop","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44900,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171823102.957,"totalHeapSize":23640832,"type":"TimerRemove","usedHeapSize":14672824}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171823102.957,"frameId":"2036.1","startTime":1348171823102.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14672824}],"data":{"timerId":16},"endTime":1348171823102.957,"frameId":"2036.1","startTime":1348171823102.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14672824},{"children":[],"data":{},"endTime":1348171823104.957,"frameId":"2036.1","startTime":1348171823104.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14672824},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171823107.957,"frameId":"2036.1","startTime":1348171823107.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14672868}],"data":{"timerId":93},"endTime":1348171823107.957,"frameId":"2036.1","startTime":1348171823107.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14672868},{"children":[],"data":{},"endTime":1348171823109.957,"frameId":"2036.1","startTime":1348171823109.957,"totalHeapSize":23640832,"type":"Layout","usedHeapSize":14672868},{"children":[{"children":[],"data":{"scriptLine":1582,"scriptName":"native v8natives.js"},"endTime":1348171823265.957,"frameId":"2036.1","startTime":1348171823265.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14673356}],"data":{"timerId":3},"endTime":1348171823265.957,"frameId":"2036.1","startTime":1348171823265.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14673356},{"children":[],"data":{"mimeType":"text/javascript","requestId":"2036.37","statusCode":200},"endTime":1348171823794.957,"frameId":"2036.7","startTime":1348171823794.957,"totalHeapSize":23640832,"type":"ResourceReceiveResponse","usedHeapSize":14673356},{"children":[],"data":{"requestId":"2036.37"},"endTime":1348171823794.957,"frameId":"2036.7","startTime":1348171823794.957,"totalHeapSize":23640832,"type":"ResourceReceivedData","usedHeapSize":14673356},{"children":[],"data":{"requestId":"2036.37"},"endTime":1348171823794.957,"frameId":"2036.7","startTime":1348171823794.957,"totalHeapSize":23640832,"type":"ResourceReceivedData","usedHeapSize":14673356},{"data":{"didFail":false,"networkTime":1348171823794.957,"requestId":"2036.37"},"frameId":"2036.7","startTime":1348171823794.957,"totalHeapSize":23640832,"type":"ResourceFinish","usedHeapSize":14673356},{"children":[],"data":{"lineNumber":1,"url":"https://widgets.platform.twitter.com/services/rest?jsoncallback=jQuery152016022174223326147_1348171822792&format=json&api_key=2a56884b56a00758525eaa2fee16a798&method=flickr.photos.getInfo&photo_id=7926895406&_=1348171822835"},"endTime":1348171823795.957,"frameId":"2036.7","startTime":1348171823794.957,"totalHeapSize":23640832,"type":"EvaluateScript","usedHeapSize":14688700},{"children":[{"children":[],"data":{"scriptLine":20,"scriptName":"https://si0.twimg.com/c/phoenix/en/bundle/sandbox.46298132d415b0168f1b1626bc148c99a6496dcc.js"},"endTime":1348171823796.957,"frameId":"2036.7","startTime":1348171823795.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14730240}],"data":{"type":"load"},"endTime":1348171823796.957,"frameId":"2036.7","startTime":1348171823795.957,"totalHeapSize":23640832,"type":"EventDispatch","usedHeapSize":14730240},{"data":{"requestId":"2036.38","requestMethod":"GET","url":"http://farm9.static.flickr.com/8308/7926895406_7ddda37c10.jpg"},"frameId":"2036.1","stackTrace":[{"columnNumber":28646,"functionName":"f.extend.attr","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":13440,"functionName":"e.extend.access","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":25195,"functionName":"f.fn.extend.attr","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":236426,"functionName":"loadThumb","lineNumber":11,"url":"http://a0.twimg.com/c/swift/en/bundle/timeline.97b730c52dbf7c6aebe75ee2a31e060da3c4e4b8.js"},{"columnNumber":235768,"functionName":"resolveThumbCallback","lineNumber":11,"url":"http://a0.twimg.com/c/swift/en/bundle/timeline.97b730c52dbf7c6aebe75ee2a31e060da3c4e4b8.js"}],"startTime":1348171823797.957,"totalHeapSize":23640832,"type":"ResourceSendRequest","usedHeapSize":14767692},{"children":[],"data":{"scriptLine":23,"scriptName":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},"endTime":1348171823798.957,"frameId":"2036.1","startTime":1348171823796.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14768984},{"children":[],"data":{"scriptLine":23,"scriptName":"http://a0.twimg.com/c/swift/en/bundle/tweets.9bfd9861df10126866ad79ef2d018f2b0855f028.js"},"endTime":1348171823798.957,"frameId":"2036.1","startTime":1348171823798.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14773144},{"children":[],"data":{"mimeType":"image/jpeg","requestId":"2036.38","statusCode":200},"endTime":1348171824122.957,"frameId":"2036.1","startTime":1348171824122.957,"totalHeapSize":23640832,"type":"ResourceReceiveResponse","usedHeapSize":14773144},{"children":[],"data":{"requestId":"2036.38"},"endTime":1348171824122.957,"frameId":"2036.1","startTime":1348171824122.957,"totalHeapSize":23640832,"type":"ResourceReceivedData","usedHeapSize":14773144},{"children":[],"data":{"requestId":"2036.38"},"endTime":1348171824122.957,"frameId":"2036.1","startTime":1348171824122.957,"totalHeapSize":23640832,"type":"ResourceReceivedData","usedHeapSize":14773144},{"children":[],"data":{"requestId":"2036.38"},"endTime":1348171824122.957,"frameId":"2036.1","startTime":1348171824122.957,"totalHeapSize":23640832,"type":"ResourceReceivedData","usedHeapSize":14773144},{"children":[],"data":{"requestId":"2036.38"},"endTime":1348171824188.957,"frameId":"2036.1","startTime":1348171824188.957,"totalHeapSize":23640832,"type":"ResourceReceivedData","usedHeapSize":14773144},{"children":[],"data":{"requestId":"2036.38"},"endTime":1348171824188.957,"frameId":"2036.1","startTime":1348171824188.957,"totalHeapSize":23640832,"type":"ResourceReceivedData","usedHeapSize":14773144},{"children":[],"data":{"requestId":"2036.38"},"endTime":1348171824239.957,"frameId":"2036.1","startTime":1348171824239.957,"totalHeapSize":23640832,"type":"ResourceReceivedData","usedHeapSize":14773144},{"children":[],"data":{"requestId":"2036.38"},"endTime":1348171824239.957,"frameId":"2036.1","startTime":1348171824239.957,"totalHeapSize":23640832,"type":"ResourceReceivedData","usedHeapSize":14773144},{"children":[],"data":{"requestId":"2036.38"},"endTime":1348171824253.957,"frameId":"2036.1","startTime":1348171824253.957,"totalHeapSize":23640832,"type":"ResourceReceivedData","usedHeapSize":14773144},{"children":[],"data":{"requestId":"2036.38"},"endTime":1348171824253.957,"frameId":"2036.1","startTime":1348171824253.957,"totalHeapSize":23640832,"type":"ResourceReceivedData","usedHeapSize":14773144},{"children":[{"children":[],"data":{"scriptLine":1582,"scriptName":"native v8natives.js"},"endTime":1348171824266.957,"frameId":"2036.1","startTime":1348171824266.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14773320}],"data":{"timerId":3},"endTime":1348171824266.957,"frameId":"2036.1","startTime":1348171824266.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14773320},{"children":[],"data":{"requestId":"2036.38"},"endTime":1348171824288.957,"frameId":"2036.1","startTime":1348171824288.957,"totalHeapSize":23640832,"type":"ResourceReceivedData","usedHeapSize":14773320},{"children":[],"data":{"requestId":"2036.38"},"endTime":1348171824288.957,"frameId":"2036.1","startTime":1348171824288.957,"totalHeapSize":23640832,"type":"ResourceReceivedData","usedHeapSize":14773320},{"children":[],"data":{"requestId":"2036.38"},"endTime":1348171824296.957,"frameId":"2036.1","startTime":1348171824296.957,"totalHeapSize":23640832,"type":"ResourceReceivedData","usedHeapSize":14773320},{"children":[],"data":{"requestId":"2036.38"},"endTime":1348171824296.957,"frameId":"2036.1","startTime":1348171824296.957,"totalHeapSize":23640832,"type":"ResourceReceivedData","usedHeapSize":14773320},{"children":[],"data":{"requestId":"2036.38"},"endTime":1348171824466.957,"frameId":"2036.1","startTime":1348171824466.957,"totalHeapSize":23640832,"type":"ResourceReceivedData","usedHeapSize":14773320},{"children":[],"data":{"requestId":"2036.38"},"endTime":1348171824466.957,"frameId":"2036.1","startTime":1348171824466.957,"totalHeapSize":23640832,"type":"ResourceReceivedData","usedHeapSize":14773320},{"children":[],"data":{"requestId":"2036.38"},"endTime":1348171824559.957,"frameId":"2036.1","startTime":1348171824559.957,"totalHeapSize":23640832,"type":"ResourceReceivedData","usedHeapSize":14773320},{"children":[],"data":{"requestId":"2036.38"},"endTime":1348171824742.957,"frameId":"2036.1","startTime":1348171824742.957,"totalHeapSize":23640832,"type":"ResourceReceivedData","usedHeapSize":14773320},{"children":[],"data":{"requestId":"2036.38"},"endTime":1348171824742.957,"frameId":"2036.1","startTime":1348171824742.957,"totalHeapSize":23640832,"type":"ResourceReceivedData","usedHeapSize":14773320},{"children":[],"data":{"requestId":"2036.38"},"endTime":1348171824861.957,"frameId":"2036.1","startTime":1348171824861.957,"totalHeapSize":23640832,"type":"ResourceReceivedData","usedHeapSize":14773320},{"data":{"didFail":false,"networkTime":1348171824853.957,"requestId":"2036.38"},"frameId":"2036.1","startTime":1348171824861.957,"totalHeapSize":23640832,"type":"ResourceFinish","usedHeapSize":14773320},{"children":[{"children":[{"children":[],"data":{},"endTime":1348171824862.957,"frameId":"2036.1","stackTrace":[{"columnNumber":29294,"functionName":"f.expr.f.expr.filters.f.expr.filters.hidden","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":8522,"functionName":"n.selectors.filter.PSEUDO","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":3043,"functionName":"n.filter","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":1561,"functionName":"n","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":13291,"functionName":"c.querySelectorAll.n","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171824862.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14783768},{"children":[],"data":{},"endTime":1348171824863.957,"frameId":"2036.1","stackTrace":[{"columnNumber":29294,"functionName":"f.expr.f.expr.filters.f.expr.filters.hidden","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":8522,"functionName":"n.selectors.filter.PSEUDO","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":3043,"functionName":"n.filter","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":1561,"functionName":"n","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":13291,"functionName":"c.querySelectorAll.n","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171824862.957,"totalHeapSize":23640832,"type":"Layout","usedHeapSize":14783992},{"children":[],"data":{},"endTime":1348171824863.957,"frameId":"2036.1","stackTrace":[{"columnNumber":28753,"functionName":"c.defaultView.c.defaultView.getComputedStyle.Db","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":26660,"functionName":"f.extend.cssHooks.opacity.get","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":27478,"functionName":"f.extend.css","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":42986,"functionName":"f.fx.cur","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":41056,"functionName":"g","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171824863.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14786116},{"children":[],"data":{},"endTime":1348171824863.957,"frameId":"2036.1","stackTrace":[{"columnNumber":28753,"functionName":"c.defaultView.c.defaultView.getComputedStyle.Db","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":26660,"functionName":"f.extend.cssHooks.opacity.get","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":27478,"functionName":"f.extend.css","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":42986,"functionName":"f.fx.cur","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":41056,"functionName":"g","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171824863.957,"totalHeapSize":23640832,"type":"Layout","usedHeapSize":14786340},{"data":{"singleShot":true,"timeout":0,"timerId":94},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43182,"functionName":"f.fx.custom","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":41120,"functionName":"g","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":23951,"functionName":"f.extend.dequeue","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":24234,"functionName":"f.fn.extend.queue","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171824863.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14787956},{"data":{"singleShot":false,"timeout":13,"timerId":95},"frameId":"2036.1","stackTrace":[{"columnNumber":43492,"functionName":"f.fx.custom","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":41120,"functionName":"g","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":23951,"functionName":"f.extend.dequeue","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":24234,"functionName":"f.fn.extend.queue","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":11999,"functionName":"e.extend.each","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171824863.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14789588}],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171824864.957,"frameId":"2036.1","startTime":1348171824861.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14823592}],"data":{"type":"load"},"endTime":1348171824864.957,"frameId":"2036.1","startTime":1348171824861.957,"totalHeapSize":23640832,"type":"EventDispatch","usedHeapSize":14823592},{"children":[],"data":{},"endTime":1348171824865.957,"frameId":"2036.1","startTime":1348171824865.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14823592},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171824865.957,"frameId":"2036.1","startTime":1348171824865.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14823636}],"data":{"timerId":94},"endTime":1348171824865.957,"frameId":"2036.1","startTime":1348171824865.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14823636},{"children":[],"data":{},"endTime":1348171824865.957,"frameId":"2036.1","startTime":1348171824865.957,"totalHeapSize":23640832,"type":"Layout","usedHeapSize":14823636},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":96},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171824880.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14823900}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171824880.957,"frameId":"2036.1","startTime":1348171824880.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14825192}],"data":{"timerId":95},"endTime":1348171824880.957,"frameId":"2036.1","startTime":1348171824880.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14825192},{"children":[],"data":{},"endTime":1348171824880.957,"frameId":"2036.1","startTime":1348171824880.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14825192},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171824884.957,"frameId":"2036.1","startTime":1348171824884.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14825236}],"data":{"timerId":96},"endTime":1348171824884.957,"frameId":"2036.1","startTime":1348171824884.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14825236},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":97},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171824893.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14825500}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171824893.957,"frameId":"2036.1","startTime":1348171824893.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14826792}],"data":{"timerId":95},"endTime":1348171824893.957,"frameId":"2036.1","startTime":1348171824893.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14826792},{"children":[],"data":{},"endTime":1348171824893.957,"frameId":"2036.1","startTime":1348171824893.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14826792},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171824897.957,"frameId":"2036.1","startTime":1348171824897.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14826836}],"data":{"timerId":97},"endTime":1348171824897.957,"frameId":"2036.1","startTime":1348171824897.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14826836},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":98},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171824907.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14827100}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171824907.957,"frameId":"2036.1","startTime":1348171824907.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14828356}],"data":{"timerId":95},"endTime":1348171824907.957,"frameId":"2036.1","startTime":1348171824907.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14828356},{"children":[],"data":{},"endTime":1348171824907.957,"frameId":"2036.1","startTime":1348171824907.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14828356},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171824910.957,"frameId":"2036.1","startTime":1348171824910.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14828400}],"data":{"timerId":98},"endTime":1348171824910.957,"frameId":"2036.1","startTime":1348171824910.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14828400},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":99},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171824921.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14828664}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171824921.957,"frameId":"2036.1","startTime":1348171824921.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14829952}],"data":{"timerId":95},"endTime":1348171824921.957,"frameId":"2036.1","startTime":1348171824921.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14829952},{"children":[],"data":{},"endTime":1348171824923.957,"frameId":"2036.1","startTime":1348171824923.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14829952},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171824924.957,"frameId":"2036.1","startTime":1348171824924.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14829996}],"data":{"timerId":99},"endTime":1348171824924.957,"frameId":"2036.1","startTime":1348171824924.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14829996},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":100},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171824935.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14830260}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171824935.957,"frameId":"2036.1","startTime":1348171824935.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14831516}],"data":{"timerId":95},"endTime":1348171824935.957,"frameId":"2036.1","startTime":1348171824935.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14831516},{"children":[],"data":{},"endTime":1348171824937.957,"frameId":"2036.1","startTime":1348171824937.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14831516},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171824937.957,"frameId":"2036.1","startTime":1348171824937.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14831560}],"data":{"timerId":100},"endTime":1348171824937.957,"frameId":"2036.1","startTime":1348171824937.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14831560},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":101},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171824948.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14831824}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171824948.957,"frameId":"2036.1","startTime":1348171824948.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14833112}],"data":{"timerId":95},"endTime":1348171824948.957,"frameId":"2036.1","startTime":1348171824948.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14833112},{"children":[],"data":{},"endTime":1348171824949.957,"frameId":"2036.1","startTime":1348171824949.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14833112},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171824951.957,"frameId":"2036.1","startTime":1348171824951.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14833156}],"data":{"timerId":101},"endTime":1348171824951.957,"frameId":"2036.1","startTime":1348171824951.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14833156},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":102},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171824962.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14833420}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171824962.957,"frameId":"2036.1","startTime":1348171824962.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14834708}],"data":{"timerId":95},"endTime":1348171824962.957,"frameId":"2036.1","startTime":1348171824962.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14834708},{"children":[],"data":{},"endTime":1348171824964.957,"frameId":"2036.1","startTime":1348171824964.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14834708},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171824967.957,"frameId":"2036.1","startTime":1348171824967.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14834752}],"data":{"timerId":102},"endTime":1348171824967.957,"frameId":"2036.1","startTime":1348171824967.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14834752},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":103},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171824975.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14835016}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171824975.957,"frameId":"2036.1","startTime":1348171824975.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14836272}],"data":{"timerId":95},"endTime":1348171824975.957,"frameId":"2036.1","startTime":1348171824975.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14836272},{"children":[],"data":{},"endTime":1348171824976.957,"frameId":"2036.1","startTime":1348171824976.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14836272},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171824979.957,"frameId":"2036.1","startTime":1348171824979.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14836316}],"data":{"timerId":103},"endTime":1348171824979.957,"frameId":"2036.1","startTime":1348171824979.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14836316},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":104},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171824989.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14836580}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171824989.957,"frameId":"2036.1","startTime":1348171824989.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14837836}],"data":{"timerId":95},"endTime":1348171824989.957,"frameId":"2036.1","startTime":1348171824989.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14837836},{"children":[],"data":{},"endTime":1348171824991.957,"frameId":"2036.1","startTime":1348171824991.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14837836},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171824991.957,"frameId":"2036.1","startTime":1348171824991.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14837880}],"data":{"timerId":104},"endTime":1348171824991.957,"frameId":"2036.1","startTime":1348171824991.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14837880},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":105},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825002.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14838144}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825002.957,"frameId":"2036.1","startTime":1348171825002.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14839400}],"data":{"timerId":95},"endTime":1348171825002.957,"frameId":"2036.1","startTime":1348171825002.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14839400},{"children":[],"data":{},"endTime":1348171825002.957,"frameId":"2036.1","startTime":1348171825002.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14839400},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825006.957,"frameId":"2036.1","startTime":1348171825006.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14839444}],"data":{"timerId":105},"endTime":1348171825006.957,"frameId":"2036.1","startTime":1348171825006.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14839444},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":106},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825016.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14839708}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825016.957,"frameId":"2036.1","startTime":1348171825016.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14840964}],"data":{"timerId":95},"endTime":1348171825016.957,"frameId":"2036.1","startTime":1348171825016.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14840964},{"children":[],"data":{},"endTime":1348171825018.957,"frameId":"2036.1","startTime":1348171825018.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14840964},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825020.957,"frameId":"2036.1","startTime":1348171825020.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14841008}],"data":{"timerId":106},"endTime":1348171825020.957,"frameId":"2036.1","startTime":1348171825020.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14841008},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":107},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825030.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14841272}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825030.957,"frameId":"2036.1","startTime":1348171825030.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14842528}],"data":{"timerId":95},"endTime":1348171825030.957,"frameId":"2036.1","startTime":1348171825030.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14842528},{"children":[],"data":{},"endTime":1348171825033.957,"frameId":"2036.1","startTime":1348171825033.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14842528},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825035.957,"frameId":"2036.1","startTime":1348171825035.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14842572}],"data":{"timerId":107},"endTime":1348171825035.957,"frameId":"2036.1","startTime":1348171825035.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14842572},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":108},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825043.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14842836}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825043.957,"frameId":"2036.1","startTime":1348171825043.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14844092}],"data":{"timerId":95},"endTime":1348171825043.957,"frameId":"2036.1","startTime":1348171825043.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14844092},{"children":[],"data":{},"endTime":1348171825045.957,"frameId":"2036.1","startTime":1348171825045.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14844092},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825047.957,"frameId":"2036.1","startTime":1348171825047.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14844136}],"data":{"timerId":108},"endTime":1348171825047.957,"frameId":"2036.1","startTime":1348171825047.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14844136},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":109},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825057.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14844400}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825057.957,"frameId":"2036.1","startTime":1348171825057.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14845688}],"data":{"timerId":95},"endTime":1348171825057.957,"frameId":"2036.1","startTime":1348171825057.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14845688},{"children":[],"data":{},"endTime":1348171825058.957,"frameId":"2036.1","startTime":1348171825058.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14845688},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825061.957,"frameId":"2036.1","startTime":1348171825061.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14845732}],"data":{"timerId":109},"endTime":1348171825061.957,"frameId":"2036.1","startTime":1348171825061.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14845732},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":110},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825070.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14845996}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825070.957,"frameId":"2036.1","startTime":1348171825070.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14847252}],"data":{"timerId":95},"endTime":1348171825070.957,"frameId":"2036.1","startTime":1348171825070.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14847252},{"children":[],"data":{},"endTime":1348171825072.957,"frameId":"2036.1","startTime":1348171825072.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14847252},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825075.957,"frameId":"2036.1","startTime":1348171825075.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14847296}],"data":{"timerId":110},"endTime":1348171825075.957,"frameId":"2036.1","startTime":1348171825075.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14847296},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":111},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825084.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14847560}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825084.957,"frameId":"2036.1","startTime":1348171825084.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14848816}],"data":{"timerId":95},"endTime":1348171825084.957,"frameId":"2036.1","startTime":1348171825084.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14848816},{"children":[],"data":{},"endTime":1348171825087.957,"frameId":"2036.1","startTime":1348171825087.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14848816},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825089.957,"frameId":"2036.1","startTime":1348171825089.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14848860}],"data":{"timerId":111},"endTime":1348171825089.957,"frameId":"2036.1","startTime":1348171825089.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14848860},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":112},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825097.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14849124}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825097.957,"frameId":"2036.1","startTime":1348171825097.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14850412}],"data":{"timerId":95},"endTime":1348171825097.957,"frameId":"2036.1","startTime":1348171825097.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14850412},{"children":[],"data":{},"endTime":1348171825099.957,"frameId":"2036.1","startTime":1348171825099.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14850412},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825101.957,"frameId":"2036.1","startTime":1348171825101.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14850456}],"data":{"timerId":112},"endTime":1348171825101.957,"frameId":"2036.1","startTime":1348171825101.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14850456},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":113},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825111.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14850720}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825111.957,"frameId":"2036.1","startTime":1348171825111.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14852008}],"data":{"timerId":95},"endTime":1348171825111.957,"frameId":"2036.1","startTime":1348171825111.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14852008},{"children":[],"data":{},"endTime":1348171825112.957,"frameId":"2036.1","startTime":1348171825112.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14852008},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825114.957,"frameId":"2036.1","startTime":1348171825114.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14852052}],"data":{"timerId":113},"endTime":1348171825114.957,"frameId":"2036.1","startTime":1348171825114.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14852052},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":114},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825125.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14852316}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825125.957,"frameId":"2036.1","startTime":1348171825125.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14853572}],"data":{"timerId":95},"endTime":1348171825125.957,"frameId":"2036.1","startTime":1348171825125.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14853572},{"children":[],"data":{},"endTime":1348171825127.957,"frameId":"2036.1","startTime":1348171825127.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14853572},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825129.957,"frameId":"2036.1","startTime":1348171825129.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14853616}],"data":{"timerId":114},"endTime":1348171825129.957,"frameId":"2036.1","startTime":1348171825129.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14853616},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":115},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825138.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14853880}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825138.957,"frameId":"2036.1","startTime":1348171825138.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14855168}],"data":{"timerId":95},"endTime":1348171825138.957,"frameId":"2036.1","startTime":1348171825138.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14855168},{"children":[],"data":{},"endTime":1348171825139.957,"frameId":"2036.1","startTime":1348171825139.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14855168},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825141.957,"frameId":"2036.1","startTime":1348171825141.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14855212}],"data":{"timerId":115},"endTime":1348171825141.957,"frameId":"2036.1","startTime":1348171825141.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14855212},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":116},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825152.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14855476}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825152.957,"frameId":"2036.1","startTime":1348171825152.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14856764}],"data":{"timerId":95},"endTime":1348171825152.957,"frameId":"2036.1","startTime":1348171825152.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14856764},{"children":[],"data":{},"endTime":1348171825153.957,"frameId":"2036.1","startTime":1348171825153.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14856764},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825155.957,"frameId":"2036.1","startTime":1348171825155.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14856808}],"data":{"timerId":116},"endTime":1348171825155.957,"frameId":"2036.1","startTime":1348171825155.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14856808},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":117},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825166.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14857072}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825166.957,"frameId":"2036.1","startTime":1348171825166.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14858328}],"data":{"timerId":95},"endTime":1348171825166.957,"frameId":"2036.1","startTime":1348171825166.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14858328},{"children":[],"data":{},"endTime":1348171825166.957,"frameId":"2036.1","startTime":1348171825166.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14858328},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825171.957,"frameId":"2036.1","startTime":1348171825171.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14858372}],"data":{"timerId":117},"endTime":1348171825171.957,"frameId":"2036.1","startTime":1348171825171.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14858372},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":118},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825180.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14858636}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825180.957,"frameId":"2036.1","startTime":1348171825180.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14859924}],"data":{"timerId":95},"endTime":1348171825180.957,"frameId":"2036.1","startTime":1348171825180.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14859924},{"children":[],"data":{},"endTime":1348171825182.957,"frameId":"2036.1","startTime":1348171825182.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14859924},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825184.957,"frameId":"2036.1","startTime":1348171825184.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14859968}],"data":{"timerId":118},"endTime":1348171825184.957,"frameId":"2036.1","startTime":1348171825184.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14859968},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":119},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825194.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14860232}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825194.957,"frameId":"2036.1","startTime":1348171825194.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14861520}],"data":{"timerId":95},"endTime":1348171825194.957,"frameId":"2036.1","startTime":1348171825194.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14861520},{"children":[],"data":{},"endTime":1348171825195.957,"frameId":"2036.1","startTime":1348171825195.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14861520},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825198.957,"frameId":"2036.1","startTime":1348171825198.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14861564}],"data":{"timerId":119},"endTime":1348171825198.957,"frameId":"2036.1","startTime":1348171825198.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14861564},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":120},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825208.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14861828}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825208.957,"frameId":"2036.1","startTime":1348171825208.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14863116}],"data":{"timerId":95},"endTime":1348171825208.957,"frameId":"2036.1","startTime":1348171825208.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14863116},{"children":[],"data":{},"endTime":1348171825210.957,"frameId":"2036.1","startTime":1348171825210.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14863116},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825212.957,"frameId":"2036.1","startTime":1348171825212.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14863160}],"data":{"timerId":120},"endTime":1348171825212.957,"frameId":"2036.1","startTime":1348171825212.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14863160},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":121},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825222.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14863424}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825222.957,"frameId":"2036.1","startTime":1348171825222.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14864712}],"data":{"timerId":95},"endTime":1348171825222.957,"frameId":"2036.1","startTime":1348171825222.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14864712},{"children":[],"data":{},"endTime":1348171825223.957,"frameId":"2036.1","startTime":1348171825223.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14864712},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825225.957,"frameId":"2036.1","startTime":1348171825225.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14864756}],"data":{"timerId":121},"endTime":1348171825225.957,"frameId":"2036.1","startTime":1348171825225.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14864756},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":122},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825236.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14865020}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825236.957,"frameId":"2036.1","startTime":1348171825236.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14866276}],"data":{"timerId":95},"endTime":1348171825236.957,"frameId":"2036.1","startTime":1348171825236.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14866276},{"children":[],"data":{},"endTime":1348171825238.957,"frameId":"2036.1","startTime":1348171825238.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14866276},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825240.957,"frameId":"2036.1","startTime":1348171825240.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14866320}],"data":{"timerId":122},"endTime":1348171825240.957,"frameId":"2036.1","startTime":1348171825240.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14866320},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":123},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825250.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14866584}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825250.957,"frameId":"2036.1","startTime":1348171825250.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14867872}],"data":{"timerId":95},"endTime":1348171825250.957,"frameId":"2036.1","startTime":1348171825250.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14867872},{"children":[],"data":{},"endTime":1348171825250.957,"frameId":"2036.1","startTime":1348171825250.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14867872},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825254.957,"frameId":"2036.1","startTime":1348171825254.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14867916}],"data":{"timerId":123},"endTime":1348171825254.957,"frameId":"2036.1","startTime":1348171825254.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14867916},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":124},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825263.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14868180}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825263.957,"frameId":"2036.1","startTime":1348171825263.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14869468}],"data":{"timerId":95},"endTime":1348171825263.957,"frameId":"2036.1","startTime":1348171825263.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14869468},{"children":[],"data":{},"endTime":1348171825265.957,"frameId":"2036.1","startTime":1348171825265.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14869468},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825266.957,"frameId":"2036.1","startTime":1348171825266.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14869512}],"data":{"timerId":124},"endTime":1348171825266.957,"frameId":"2036.1","startTime":1348171825266.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14869512},{"children":[{"children":[],"data":{"scriptLine":1582,"scriptName":"native v8natives.js"},"endTime":1348171825268.957,"frameId":"2036.1","startTime":1348171825268.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14869688}],"data":{"timerId":3},"endTime":1348171825268.957,"frameId":"2036.1","startTime":1348171825268.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14869688},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":125},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825277.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14869952}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825277.957,"frameId":"2036.1","startTime":1348171825277.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14871208}],"data":{"timerId":95},"endTime":1348171825277.957,"frameId":"2036.1","startTime":1348171825277.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14871208},{"children":[],"data":{},"endTime":1348171825279.957,"frameId":"2036.1","startTime":1348171825279.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14871208},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825282.957,"frameId":"2036.1","startTime":1348171825282.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14871252}],"data":{"timerId":125},"endTime":1348171825282.957,"frameId":"2036.1","startTime":1348171825282.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14871252},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":126},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825290.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14871516}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825290.957,"frameId":"2036.1","startTime":1348171825290.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14872804}],"data":{"timerId":95},"endTime":1348171825290.957,"frameId":"2036.1","startTime":1348171825290.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14872804},{"children":[],"data":{},"endTime":1348171825291.957,"frameId":"2036.1","startTime":1348171825291.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14872804},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825293.957,"frameId":"2036.1","startTime":1348171825293.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14872848}],"data":{"timerId":126},"endTime":1348171825293.957,"frameId":"2036.1","startTime":1348171825293.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14872848},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":127},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825304.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14873112}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825304.957,"frameId":"2036.1","startTime":1348171825304.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14874400}],"data":{"timerId":95},"endTime":1348171825304.957,"frameId":"2036.1","startTime":1348171825304.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14874400},{"children":[],"data":{},"endTime":1348171825304.957,"frameId":"2036.1","startTime":1348171825304.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14874400},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825307.957,"frameId":"2036.1","startTime":1348171825307.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14874444}],"data":{"timerId":127},"endTime":1348171825307.957,"frameId":"2036.1","startTime":1348171825307.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14874444},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":128},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825317.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14874708}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825317.957,"frameId":"2036.1","startTime":1348171825317.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14875996}],"data":{"timerId":95},"endTime":1348171825317.957,"frameId":"2036.1","startTime":1348171825317.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14875996},{"children":[],"data":{},"endTime":1348171825319.957,"frameId":"2036.1","startTime":1348171825319.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14875996},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825321.957,"frameId":"2036.1","startTime":1348171825321.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14876040}],"data":{"timerId":128},"endTime":1348171825321.957,"frameId":"2036.1","startTime":1348171825321.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14876040},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":129},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825331.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14876304}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825331.957,"frameId":"2036.1","startTime":1348171825331.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14877592}],"data":{"timerId":95},"endTime":1348171825331.957,"frameId":"2036.1","startTime":1348171825331.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14877592},{"children":[],"data":{},"endTime":1348171825332.957,"frameId":"2036.1","startTime":1348171825332.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14877592},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825334.957,"frameId":"2036.1","startTime":1348171825334.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14877636}],"data":{"timerId":129},"endTime":1348171825334.957,"frameId":"2036.1","startTime":1348171825334.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14877636},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":130},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825345.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14877900}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825345.957,"frameId":"2036.1","startTime":1348171825345.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14879188}],"data":{"timerId":95},"endTime":1348171825345.957,"frameId":"2036.1","startTime":1348171825345.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14879188},{"children":[],"data":{},"endTime":1348171825346.957,"frameId":"2036.1","startTime":1348171825346.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14879188},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825348.957,"frameId":"2036.1","startTime":1348171825348.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14879232}],"data":{"timerId":130},"endTime":1348171825348.957,"frameId":"2036.1","startTime":1348171825348.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14879232},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":131},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825359.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14879496}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825359.957,"frameId":"2036.1","startTime":1348171825359.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14880784}],"data":{"timerId":95},"endTime":1348171825359.957,"frameId":"2036.1","startTime":1348171825359.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14880784},{"children":[],"data":{},"endTime":1348171825360.957,"frameId":"2036.1","startTime":1348171825360.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14880784},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825362.957,"frameId":"2036.1","startTime":1348171825362.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14880828}],"data":{"timerId":131},"endTime":1348171825362.957,"frameId":"2036.1","startTime":1348171825362.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14880828},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":132},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825373.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14881092}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825373.957,"frameId":"2036.1","startTime":1348171825373.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14882380}],"data":{"timerId":95},"endTime":1348171825373.957,"frameId":"2036.1","startTime":1348171825373.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14882380},{"children":[],"data":{},"endTime":1348171825374.957,"frameId":"2036.1","startTime":1348171825374.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14882380},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825376.957,"frameId":"2036.1","startTime":1348171825376.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14882424}],"data":{"timerId":132},"endTime":1348171825376.957,"frameId":"2036.1","startTime":1348171825376.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14882424},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":133},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825387.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14882688}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825387.957,"frameId":"2036.1","startTime":1348171825387.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14883976}],"data":{"timerId":95},"endTime":1348171825387.957,"frameId":"2036.1","startTime":1348171825387.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14883976},{"children":[],"data":{},"endTime":1348171825389.957,"frameId":"2036.1","startTime":1348171825389.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14883976},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825391.957,"frameId":"2036.1","startTime":1348171825391.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14884020}],"data":{"timerId":133},"endTime":1348171825391.957,"frameId":"2036.1","startTime":1348171825391.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14884020},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":134},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825401.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14884284}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825401.957,"frameId":"2036.1","startTime":1348171825401.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14885572}],"data":{"timerId":95},"endTime":1348171825401.957,"frameId":"2036.1","startTime":1348171825401.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14885572},{"children":[],"data":{},"endTime":1348171825403.957,"frameId":"2036.1","startTime":1348171825403.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14885572},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825403.957,"frameId":"2036.1","startTime":1348171825403.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14885616}],"data":{"timerId":134},"endTime":1348171825403.957,"frameId":"2036.1","startTime":1348171825403.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14885616},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":135},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825414.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14885880}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825414.957,"frameId":"2036.1","startTime":1348171825414.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14887124}],"data":{"timerId":95},"endTime":1348171825414.957,"frameId":"2036.1","startTime":1348171825414.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14887124},{"children":[],"data":{},"endTime":1348171825416.957,"frameId":"2036.1","startTime":1348171825416.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14887124},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825418.957,"frameId":"2036.1","startTime":1348171825418.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14887168}],"data":{"timerId":135},"endTime":1348171825418.957,"frameId":"2036.1","startTime":1348171825418.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14887168},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":136},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825428.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14887432}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825428.957,"frameId":"2036.1","startTime":1348171825428.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14888720}],"data":{"timerId":95},"endTime":1348171825428.957,"frameId":"2036.1","startTime":1348171825428.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14888720},{"children":[],"data":{},"endTime":1348171825430.957,"frameId":"2036.1","startTime":1348171825430.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14888720},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825431.957,"frameId":"2036.1","startTime":1348171825431.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14888764}],"data":{"timerId":136},"endTime":1348171825431.957,"frameId":"2036.1","startTime":1348171825431.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14888764},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":137},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825442.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14889028}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825442.957,"frameId":"2036.1","startTime":1348171825442.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14890316}],"data":{"timerId":95},"endTime":1348171825442.957,"frameId":"2036.1","startTime":1348171825442.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14890316},{"children":[],"data":{},"endTime":1348171825446.957,"frameId":"2036.1","startTime":1348171825446.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14890316},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825450.957,"frameId":"2036.1","startTime":1348171825450.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14890360}],"data":{"timerId":137},"endTime":1348171825450.957,"frameId":"2036.1","startTime":1348171825450.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14890360},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":138},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825456.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14890624}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825456.957,"frameId":"2036.1","startTime":1348171825456.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14891912}],"data":{"timerId":95},"endTime":1348171825456.957,"frameId":"2036.1","startTime":1348171825456.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14891912},{"children":[],"data":{},"endTime":1348171825457.957,"frameId":"2036.1","startTime":1348171825457.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14891912},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825460.957,"frameId":"2036.1","startTime":1348171825460.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14891956}],"data":{"timerId":138},"endTime":1348171825460.957,"frameId":"2036.1","startTime":1348171825460.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14891956},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":139},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825469.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14892220}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825469.957,"frameId":"2036.1","startTime":1348171825469.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14893508}],"data":{"timerId":95},"endTime":1348171825469.957,"frameId":"2036.1","startTime":1348171825469.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14893508},{"children":[],"data":{},"endTime":1348171825471.957,"frameId":"2036.1","startTime":1348171825471.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14893508},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825473.957,"frameId":"2036.1","startTime":1348171825473.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14893552}],"data":{"timerId":139},"endTime":1348171825473.957,"frameId":"2036.1","startTime":1348171825473.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14893552},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":140},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825482.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14893816}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825482.957,"frameId":"2036.1","startTime":1348171825482.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14895104}],"data":{"timerId":95},"endTime":1348171825482.957,"frameId":"2036.1","startTime":1348171825482.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14895104},{"children":[],"data":{},"endTime":1348171825483.957,"frameId":"2036.1","startTime":1348171825483.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14895104},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825485.957,"frameId":"2036.1","startTime":1348171825485.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14895148}],"data":{"timerId":140},"endTime":1348171825485.957,"frameId":"2036.1","startTime":1348171825485.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14895148},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":141},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825496.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14895412}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825496.957,"frameId":"2036.1","startTime":1348171825496.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14896700}],"data":{"timerId":95},"endTime":1348171825496.957,"frameId":"2036.1","startTime":1348171825496.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14896700},{"children":[],"data":{},"endTime":1348171825498.957,"frameId":"2036.1","startTime":1348171825498.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14896700},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825501.957,"frameId":"2036.1","startTime":1348171825501.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14896744}],"data":{"timerId":141},"endTime":1348171825501.957,"frameId":"2036.1","startTime":1348171825501.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14896744},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":142},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825510.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14897008}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825510.957,"frameId":"2036.1","startTime":1348171825510.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14898296}],"data":{"timerId":95},"endTime":1348171825510.957,"frameId":"2036.1","startTime":1348171825510.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14898296},{"children":[],"data":{},"endTime":1348171825510.957,"frameId":"2036.1","startTime":1348171825510.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14898296},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825515.957,"frameId":"2036.1","startTime":1348171825515.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14898340}],"data":{"timerId":142},"endTime":1348171825515.957,"frameId":"2036.1","startTime":1348171825515.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14898340},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":143},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825523.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14898604}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825523.957,"frameId":"2036.1","startTime":1348171825523.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14899892}],"data":{"timerId":95},"endTime":1348171825523.957,"frameId":"2036.1","startTime":1348171825523.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14899892},{"children":[],"data":{},"endTime":1348171825524.957,"frameId":"2036.1","startTime":1348171825524.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14899892},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825526.957,"frameId":"2036.1","startTime":1348171825526.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14899936}],"data":{"timerId":143},"endTime":1348171825526.957,"frameId":"2036.1","startTime":1348171825526.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14899936},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":144},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825537.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14900200}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825537.957,"frameId":"2036.1","startTime":1348171825537.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14901488}],"data":{"timerId":95},"endTime":1348171825537.957,"frameId":"2036.1","startTime":1348171825537.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14901488},{"children":[],"data":{},"endTime":1348171825540.957,"frameId":"2036.1","startTime":1348171825540.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14901488},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825541.957,"frameId":"2036.1","startTime":1348171825541.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14901532}],"data":{"timerId":144},"endTime":1348171825541.957,"frameId":"2036.1","startTime":1348171825541.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14901532},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":145},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825551.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14901796}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825551.957,"frameId":"2036.1","startTime":1348171825551.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14903084}],"data":{"timerId":95},"endTime":1348171825551.957,"frameId":"2036.1","startTime":1348171825551.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14903084},{"children":[],"data":{},"endTime":1348171825552.957,"frameId":"2036.1","startTime":1348171825552.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14903084},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825554.957,"frameId":"2036.1","startTime":1348171825554.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14903128}],"data":{"timerId":145},"endTime":1348171825554.957,"frameId":"2036.1","startTime":1348171825554.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14903128},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":146},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825565.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14903392}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825565.957,"frameId":"2036.1","startTime":1348171825565.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14904636}],"data":{"timerId":95},"endTime":1348171825565.957,"frameId":"2036.1","startTime":1348171825565.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14904636},{"children":[],"data":{},"endTime":1348171825565.957,"frameId":"2036.1","startTime":1348171825565.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14904636},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825570.957,"frameId":"2036.1","startTime":1348171825570.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14904680}],"data":{"timerId":146},"endTime":1348171825570.957,"frameId":"2036.1","startTime":1348171825570.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14904680},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":147},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825579.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14904944}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825579.957,"frameId":"2036.1","startTime":1348171825579.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14906188}],"data":{"timerId":95},"endTime":1348171825579.957,"frameId":"2036.1","startTime":1348171825579.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14906188},{"children":[],"data":{},"endTime":1348171825581.957,"frameId":"2036.1","startTime":1348171825581.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14906188},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825582.957,"frameId":"2036.1","startTime":1348171825582.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14906232}],"data":{"timerId":147},"endTime":1348171825582.957,"frameId":"2036.1","startTime":1348171825582.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14906232},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":148},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825593.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14906496}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825593.957,"frameId":"2036.1","startTime":1348171825593.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14907784}],"data":{"timerId":95},"endTime":1348171825593.957,"frameId":"2036.1","startTime":1348171825593.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14907784},{"children":[],"data":{},"endTime":1348171825595.957,"frameId":"2036.1","startTime":1348171825595.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14907784},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825597.957,"frameId":"2036.1","startTime":1348171825597.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14907828}],"data":{"timerId":148},"endTime":1348171825597.957,"frameId":"2036.1","startTime":1348171825597.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14907828},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":149},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825607.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14908092}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825607.957,"frameId":"2036.1","startTime":1348171825607.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14909380}],"data":{"timerId":95},"endTime":1348171825607.957,"frameId":"2036.1","startTime":1348171825607.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14909380},{"children":[],"data":{},"endTime":1348171825609.957,"frameId":"2036.1","startTime":1348171825609.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14909380},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825609.957,"frameId":"2036.1","startTime":1348171825609.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14909424}],"data":{"timerId":149},"endTime":1348171825609.957,"frameId":"2036.1","startTime":1348171825609.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14909424},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":150},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825621.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14909688}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825621.957,"frameId":"2036.1","startTime":1348171825621.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14910976}],"data":{"timerId":95},"endTime":1348171825621.957,"frameId":"2036.1","startTime":1348171825621.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14910976},{"children":[],"data":{},"endTime":1348171825621.957,"frameId":"2036.1","startTime":1348171825621.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14910976},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825626.957,"frameId":"2036.1","startTime":1348171825626.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14911020}],"data":{"timerId":150},"endTime":1348171825626.957,"frameId":"2036.1","startTime":1348171825626.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14911020},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":151},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825635.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14911284}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825635.957,"frameId":"2036.1","startTime":1348171825635.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14912572}],"data":{"timerId":95},"endTime":1348171825635.957,"frameId":"2036.1","startTime":1348171825635.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14912572},{"children":[],"data":{},"endTime":1348171825637.957,"frameId":"2036.1","startTime":1348171825637.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14912572},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825639.957,"frameId":"2036.1","startTime":1348171825639.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14912616}],"data":{"timerId":151},"endTime":1348171825639.957,"frameId":"2036.1","startTime":1348171825639.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14912616},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":152},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825649.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14914116}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825650.957,"frameId":"2036.1","startTime":1348171825649.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14915404}],"data":{"timerId":95},"endTime":1348171825650.957,"frameId":"2036.1","startTime":1348171825649.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14915404},{"children":[],"data":{},"endTime":1348171825651.957,"frameId":"2036.1","startTime":1348171825651.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14915404},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825653.957,"frameId":"2036.1","startTime":1348171825653.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14918196}],"data":{"timerId":152},"endTime":1348171825653.957,"frameId":"2036.1","startTime":1348171825653.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14918196},{"children":[{"children":[{"data":{"singleShot":true,"timeout":0,"timerId":153},"frameId":"2036.1","stackTrace":[{"columnNumber":5506,"functionName":"vc","lineNumber":1,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43984,"functionName":"f.fx.step","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":43137,"functionName":"i","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44854,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825663.957,"totalHeapSize":23640832,"type":"TimerInstall","usedHeapSize":14918460},{"data":{"timerId":95},"frameId":"2036.1","stackTrace":[{"columnNumber":44936,"functionName":"f.extend.stop","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},{"columnNumber":44900,"functionName":"f.extend.tick","lineNumber":6,"url":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"}],"startTime":1348171825663.957,"totalHeapSize":23640832,"type":"TimerRemove","usedHeapSize":14921332}],"data":{"scriptLine":6,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825663.957,"frameId":"2036.1","startTime":1348171825663.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14921332}],"data":{"timerId":95},"endTime":1348171825663.957,"frameId":"2036.1","startTime":1348171825663.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14921332},{"children":[],"data":{},"endTime":1348171825665.957,"frameId":"2036.1","startTime":1348171825665.957,"totalHeapSize":23640832,"type":"RecalculateStyles","usedHeapSize":14921332},{"children":[{"children":[],"data":{"scriptLine":1,"scriptName":"http://a0.twimg.com/c/swift/prereqs.e00013e15d5125d94edd29c8953f51981016af12.js"},"endTime":1348171825668.957,"frameId":"2036.1","startTime":1348171825668.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14921376}],"data":{"timerId":153},"endTime":1348171825668.957,"frameId":"2036.1","startTime":1348171825668.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14921376},{"children":[],"data":{},"endTime":1348171825670.957,"frameId":"2036.1","startTime":1348171825670.957,"totalHeapSize":23640832,"type":"Layout","usedHeapSize":14921376},{"children":[{"children":[],"data":{"scriptLine":1582,"scriptName":"native v8natives.js"},"endTime":1348171826266.957,"frameId":"2036.1","startTime":1348171826266.957,"totalHeapSize":23640832,"type":"FunctionCall","usedHeapSize":14921552}],"data":{"timerId":3},"endTime":1348171826266.957,"frameId":"2036.1","startTime":1348171826266.957,"totalHeapSize":23640832,"type":"TimerFire","usedHeapSize":14921552}] \ No newline at end of file diff --git a/test/fixtures/responses/utilization.csv b/test/fixtures/responses/utilization.csv deleted file mode 100644 index 42dc211..0000000 --- a/test/fixtures/responses/utilization.csv +++ /dev/null @@ -1,157 +0,0 @@ -Offset Time (ms),Bandwidth In (kbps),CPU Utilization (%),Memory Use (KB) -93,0,40.00,36512 -193,0,0.00,36512 -294,282080,10.00,36956 -395,3564,0.00,36956 -495,0,0.00,36956 -596,0,0.00,36956 -696,0,0.00,36956 -796,0,0.00,36960 -897,0,0.00,36960 -997,93200,10.00,37148 -1097,0,0.00,37148 -1198,0,0.00,37148 -1298,0,0.00,37148 -1398,0,0.00,37148 -1499,0,0.00,37148 -1599,0,0.00,37148 -1700,0,10.00,37148 -1800,0,0.00,37148 -1900,0,0.00,37148 -2000,0,0.00,37152 -2101,0,0.00,37152 -2201,0,10.00,37152 -2302,0,0.00,37152 -2402,694787,40.00,37288 -2502,1756800,10.00,37292 -2602,0,10.00,37308 -2703,0,0.00,37308 -2803,235600,0.00,37392 -2904,20000,10.00,37544 -3004,231680,10.00,37560 -3104,1835959,0.00,37592 -3205,233504,80.00,37704 -3305,0,90.00,37780 -3405,1621760,20.00,38068 -3505,1346320,20.00,38408 -3606,1664320,20.00,38856 -3715,1538275,27.00,38912 -3815,1381090,80.00,38792 -3915,1214640,0.00,38812 -4015,1777120,30.00,38848 -4115,1249600,10.00,38960 -4216,1704000,10.00,37760 -4316,1363200,20.00,37772 -4417,1363200,10.00,37808 -4517,1363200,10.00,37808 -4617,1363200,10.00,37824 -4718,1931200,10.00,37852 -4818,1022400,10.00,37868 -4918,1854320,20.00,37840 -5018,1363200,10.00,37864 -5119,1476800,0.00,37876 -5219,1414720,20.00,37708 -5320,1249600,0.00,37724 -5420,1704000,0.00,37756 -5520,1476800,0.00,37756 -5621,1249600,10.00,37772 -5721,1704000,20.00,37808 -5821,1363200,0.00,37824 -5922,1363200,10.00,37840 -6022,1590400,0.00,37876 -6122,1443360,30.00,37724 -6222,1590400,100.00,37328 -6323,1363200,100.00,37352 -6423,1249600,100.00,37420 -6524,1766574,100.00,37492 -6624,1606464,100.00,37332 -6724,1249600,50.00,37360 -6824,1430960,0.00,37380 -6925,1151680,10.00,37392 -7025,1717440,0.00,37432 -7126,1494720,10.00,37456 -7226,1254080,10.00,37204 -7326,1590400,20.00,37236 -7426,1590400,0.00,37336 -7527,1294400,20.00,37368 -7627,1363200,9.00,37384 -7728,1704000,0.00,37400 -7828,1590400,20.00,37440 -7928,1249600,0.00,37440 -8028,1363200,10.00,37476 -8129,1704000,0.00,37476 -8229,1590400,0.00,37504 -8330,1249600,0.00,37504 -8430,1363200,40.00,37596 -8530,1590400,0.00,37612 -8631,1249600,10.00,37628 -8731,1704000,10.00,37660 -8831,1363200,0.00,37660 -8931,1476800,30.00,37692 -9032,1363200,0.00,37696 -9132,1704000,20.00,37728 -9233,1249600,10.00,37444 -9333,1590400,10.00,37476 -9433,1363200,0.00,37492 -9534,1363200,0.00,37508 -9634,1606464,10.00,37540 -9734,1590400,10.00,37540 -9834,1363200,10.00,37572 -9935,1590400,10.00,37572 -10035,1249600,0.00,37612 -10136,1704000,0.00,37628 -10236,1363200,20.00,37644 -10336,1476800,10.00,37672 -10437,1136000,0.00,37672 -10537,1704000,10.00,37704 -10637,1704000,0.00,37704 -10737,1136000,20.00,37740 -10838,1363200,0.00,37740 -10945,1286037,18.00,37772 -11044,2065454,20.00,37808 -11146,1291009,90.00,37116 -11246,1606464,90.00,36808 -11347,1363200,100.00,36824 -11447,1590400,60.00,36852 -11547,1363200,10.00,36872 -11648,1383360,0.00,36892 -11748,1378880,10.00,36916 -11848,1260800,0.00,36920 -11949,1849040,70.00,36940 -12050,1349702,100.00,36984 -12149,1622857,100.00,37008 -12249,718640,90.00,35764 -12350,0,100.00,36016 -12450,112640,100.00,36220 -12550,167680,90.00,36200 -12655,230000,100.00,35888 -12755,1699313,40.00,35952 -12858,1077647,45.00,36104 -12958,720808,40.00,36856 -13069,846630,100.00,31484 -13169,36282,80.00,31776 -13269,844444,10.00,31384 -13370,1654640,10.00,31432 -13470,1156525,0.00,31472 -13570,1615040,0.00,31540 -13670,1634960,10.00,31540 -13771,598240,40.00,31720 -13871,100560,10.00,31832 -13971,0,10.00,31864 -14072,0,0.00,31584 -14172,0,0.00,31584 -14272,0,40.00,30532 -14373,0,20.00,30744 -14473,0,0.00,30744 -14573,0,0.00,30744 -14674,0,0.00,30744 -14774,0,0.00,30744 -14874,0,0.00,30744 -14975,0,0.00,30744 -15075,0,0.00,30748 -15175,0,0.00,30748 -15276,0,0.00,30748 -15376,0,0.00,30748 -15477,0,0.00,30748 -15577,0,0.00,30748 -15677,0,0.00,30768 diff --git a/test/fixtures/responses/waterfall.png b/test/fixtures/responses/waterfall.png deleted file mode 100644 index 13aa190..0000000 Binary files a/test/fixtures/responses/waterfall.png and /dev/null differ diff --git a/test/fixtures/responses/waterfallNotFound.png b/test/fixtures/responses/waterfallNotFound.png deleted file mode 100644 index 06f9d1f..0000000 Binary files a/test/fixtures/responses/waterfallNotFound.png and /dev/null differ diff --git a/test/fixtures/responses/waterfallThumbnail.png b/test/fixtures/responses/waterfallThumbnail.png deleted file mode 100644 index fc5ef6a..0000000 Binary files a/test/fixtures/responses/waterfallThumbnail.png and /dev/null differ diff --git a/test/fixtures/responses/waterfallThumbnailNotFound.png b/test/fixtures/responses/waterfallThumbnailNotFound.png deleted file mode 100644 index 42aeedb..0000000 Binary files a/test/fixtures/responses/waterfallThumbnailNotFound.png and /dev/null differ diff --git a/test/fixtures/script.txt b/test/fixtures/script.txt deleted file mode 100644 index 1efb25c..0000000 --- a/test/fixtures/script.txt +++ /dev/null @@ -1,8 +0,0 @@ -logData 0 -navigate http://foo.com/login -// log some data -logData 1 -setValue name=username johndoe -setValue name=password 12345 -submitForm action=http://foo.com/main -waitForComplete diff --git a/test/fixtures/specs.json b/test/fixtures/specs.json deleted file mode 100644 index ee39a77..0000000 --- a/test/fixtures/specs.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "defaults": { - "suiteName": "WPT test of test (not really errors)", - "operation": "<" - }, - "median": { - "firstView": { - "connections": { - "min": 3, - "max": 8 - }, - "render": 800, - "loadTime": { - "text": "page load time: {actual} should be less than {expected}", - "max": 5000 - }, - "foo": { - "bar": { - "max": 100 - } - }, - "score_keep-alive": { - "min": 90 - }, - "breakdown": { - "css": { - "requests": 2 - } - } - } - } -} diff --git a/test/helpers/nock-server.js b/test/helpers/nock-server.js deleted file mode 100644 index 6e83500..0000000 --- a/test/helpers/nock-server.js +++ /dev/null @@ -1,110 +0,0 @@ -/** - * Copyright (c) 2013, Twitter Inc. - * Copyright (c) 2020, Google Inc. - * Copyright (c) 2020, Marcel Duran and other contributors - * Released under the MIT License - */ - -var path = require('path'), - nock = require('nock'); - -var PATH_RESPONSES = path.join(__dirname, '../fixtures/responses'); - -var reqResMap = { - '/testStatus.php?test=120816_V2_2': 'testStatus.json', - '/jsonResult.php?test=120816_V2_2': 'testResults.json', - '/getLocations.php': 'locations.xml', - '/getTesters.php': 'testers.xml', - '/runtest.php?url=http%3A%2F%2Ftwitter.com%2Fmarcelduran&f=json': 'runTest.json', - '/runtest.php?url=http%3A%2F%2Ftwitter.com%2Fmarcelduran&location=Local_Firefox_Chrome%3AChrome&runs=3&fvonly=1&label=test%20123&timeline=1&netlog=1&pngss=1&f=json': 'runTest.json', - '/runtest.php?script=logData%090%0Anavigate%09http%3A%2F%2Ffoo.com%2Flogin%0A%2F%2F%20log%20some%20data%0AlogData%091%0AsetValue%09name%3Dusername%09johndoe%0AsetValue%09name%3Dpassword%0912345%0AsubmitForm%09action%3Dhttp%3A%2F%2Ffoo.com%2Fmain%0AwaitForComplete&url=https%3A%2F%2Fwww.webpagetest.org&f=json': 'runTest.json', - '/getgzip.php?test=120816_V2_2&file=1_pagespeed.txt': 'pageSpeed.json', - '/export.php?test=120816_V2_2': 'har.json', - '/getgzip.php?test=120816_V2_2&file=1_progress.csv': 'utilization.csv', - '/getgzip.php?test=120816_V2_2&file=1_IEWTR.txt': 'request.txt', - '/getTimeline.php?test=120816_V2_2': 'timeline.json', - '/getgzip.php?test=120816_V2_2&file=1_netlog.txt': 'netLog.txt', - '/getgzip.php?test=120816_V2_2&file=1_console_log.json': 'consoleLog.json', - '/getgzip.php?test=120816_V2_2&file=testinfo.json': 'testInfo.json', - '/testlog.php?all=on&f=csv&days=2': 'history.csv', - '/waterfall.php?test=120816_V2_2&run=1&cached=0': 'waterfall.png', - '/thumbnail.php?test=120816_V2_2&run=1&cached=0&file=1_waterfall.png': 'waterfallThumbnail.png', - '/getgzip.php?test=120816_V2_2&file=1_screen.jpg': 'screenshot.jpg', - '/thumbnail.php?test=120816_V2_2&file=1_screen.jpg&run=1&cached=0': 'screenshotThumbnail.jpg', - '/getgzip.php?test=120816_V2_2&file=1_screen.png': 'screenshotFullResolution.png', - '/runtest.php?resubmit=120816_V2_2': 'restart.json', - '/cancelTest.php?test=120816_V2_2': 'cancel.html', - '/cancelTest.php?test=120816_V2_3': 'cancelNotCancelled.html', - '/video/create.php?tests=130416_YS_KD4-r%3A3-c%3A1%2C130416_W6_KEE-r%3A8-c%3A1&f=json&end=visual': 'createVideo.json', - '/video/view.php?embed=1&id=130416_36ed6e37013655a14b2b857cdccec99db72adcaa': 'embeddedVideoPlayer.html', - '/google/google_csi.php?test=140101_AB_12': 'googleCsiData.csv', - '/google/google_csi.php?test=140101_AB_12&run=2': 'googleCsiDataRun2.csv', - '/response_body.php?test=140101_AB_12&run=1&cached=0&request=1': 'response.txt', - - // test results for multi runs with/without custom median metric - '/jsonResult.php?test=141106_TM_ZFM': 'testResultsMultiRunsDefaultMedianMetric.json', - '/jsonResult.php?test=141106_TM_ZFM&medianMetric=TTFB': 'testResultsMultiRunsTTFBMedianMetric.json', - - // test results with extra data - '/jsonResult.php?test=141106_8N_ZRC&breakdown=1&domains=1&pagespeed=1&requests=1': 'testResultsExtraData.json', - - // sync - '/runtest.php?url=http%3A%2F%2Ftwitter.com%2Fmarcelduran&f=json&pingback=http%3A%2F%2F127.0.0.1%3A8000%2Ftestdone': 'runTest.json', - '/runtest.php?url=http%3A%2F%2Ftwitter.com%2Fmarcelduran&runs=3&fvonly=1&medianMetric=TTFB&f=json&pingback=http%3A%2F%2F127.0.0.1%3A8000%2Ftestdone': 'runTestMultiRuns.json', - - // not found / invalid - '/testStatus.php?test=120816_V2_3': 'testStatusNotFound.json', - '/jsonResult.php?test=120816_V2_3': 'testResultsNotFound.json', - '/runtest.php?url=&f=json': 'runTestInvalid.json', - '/runtest.php?script=&url=https%3A%2F%2Fwww.webpagetest.org&f=json': 'runTestInvalid.json', - '/getgzip.php?test=120816_V2_3&file=1_pagespeed.txt': '', - '/export.php?test=120816_V2_3': 'harNotFound.json', - '/waterfall.php?test=120816_V2_3&run=1&cached=0': 'waterfallNotFound.png', - '/thumbnail.php?test=120816_V2_3&run=1&cached=0&file=1_waterfall.png': 'waterfallThumbnailNotFound.png', - '/thumbnail.php?test=120816_V2_3&file=1_screen.jpg&run=1&cached=0': '', - '/cancelTest.php?test=120816_V2_4': '', - '/runtest.php?url=http%3A%2F%2Fapikey.com&f=json': 'runTestNoAPIKey.json', - '/runtest.php?url=http%3A%2F%2Fapikey.com&k=12345&f=json': 'runTestInvalidAPIKey.json' -}; - -var typeMap = { - 'json': 'application/json', - 'xml': 'text/xml', - 'txt': 'text/plain', - 'csv': 'text/plain', - 'png': 'image/png', - 'jpg': 'image/jpeg', - 'html': 'text/html' -}; - -function WebPageTestMockServer(host) { - var server; - - if (!(this instanceof WebPageTestMockServer)) { - return new WebPageTestMockServer(host); - } - - server = nock(host || 'https://www.webpagetest.org'); - nock.enableNetConnect(); - - // request/response mapping - Object.keys(reqResMap).forEach(function (source) { - var filename = reqResMap[source], - pathname = path.join(PATH_RESPONSES, filename), - ext = (path.extname(pathname) || '').slice(1), - type = typeMap[ext]; - - if (filename) { - server - .filteringPath(/http%3A%2F%2F127.0.0.1%3A\d+%2F/g, - 'http%3A%2F%2F127.0.0.1%3A8000%2F') - .persist() - .get(source) - .replyWithFile(200, pathname, {'Content-Type': type}); - } else { - server.get(source).reply(404); - } - }); -} - -module.exports = WebPageTestMockServer; diff --git a/test/helpers/response-objects.js b/test/helpers/response-objects.js deleted file mode 100644 index a09edd9..0000000 --- a/test/helpers/response-objects.js +++ /dev/null @@ -1,42 +0,0 @@ -/** - * Copyright (c) 2013, Twitter Inc. - * Copyright (c) 2020, Google Inc. - * Copyright (c) 2020, Marcel Duran and other contributors - * Released under the MIT License - */ - -var fs = require('fs'), - path = require('path'); - -var PATH_OBJECTS = path.join(__dirname, '../fixtures/objects'); - -var reExtensions = /^\.(?:json|txt|html)$/i, - reJSONExt = /^\.json$/i, - reEOFNewLine = /\s+$/; - -var objects = {}; - -fs.readdirSync(PATH_OBJECTS).forEach(function eachFile(file) { - var content, name, - ext = path.extname(file); - - if (!reExtensions.test(ext)) { - return; - } - - name = path.basename(file, ext); - content = fs.readFileSync(path.join(PATH_OBJECTS, file), 'utf8'); - content = content.replace(reEOFNewLine, ''); - - if (reJSONExt.test(ext)) { - try { - content = JSON.parse(content); - } catch (ex) { - content = {error: ex}; - } - } - - objects[name] = content; -}); - -module.exports = objects; diff --git a/test/listen-test.js b/test/listen-test.js deleted file mode 100644 index 9897a6c..0000000 --- a/test/listen-test.js +++ /dev/null @@ -1,404 +0,0 @@ -/** - * Copyright (c) 2013, Twitter Inc. - * Copyright (c) 2020, Google Inc. - * Copyright (c) 2020, Marcel Duran and other contributors - * Released under the MIT License - */ - -var assert = require('assert'), - http = require('http'), - url = require('url'), - WebPageTest = require('../lib/webpagetest'), - NockServer = require('./helpers/nock-server'), - ResponseObjects = require('./helpers/response-objects'); - -var wptNockServer = new NockServer('http://wpt.com'), - wpt = new WebPageTest('wpt.com', 'YOURAPIKEY'); - -// GET helper function -function get(pathname, server, callback) { - var options = { - path: pathname, - host: server.hostname, - port: server.port - }; - - http.get(options, function getResponse(res) { - var data = '', - type = (res.headers['content-type'] || '').split(';'), - statusCode = res.statusCode; - - // get type and encoding returned from listener - encoding = type[1]; - type = type[0]; - - if (statusCode !== 200) { - callback(new Error(statusCode)); - } else { - res.on('data', function onData(chunk) { - data += chunk; - }); - - res.on('end', function onEnd() { - callback(undefined, data, {type: type, encoding: encoding}); - }); - } - }).on('error', function onError(err) { - callback(err); - }); -} - -describe('Local WebPageTest-API Proxy', function() { - describe('Listens to a Nock Server', function() { - var server; - - before(function (done) { - wpt.listen('127.0.0.1', function(err, data) { - if (err) return done(err); - server = data; - }); - done(); - }); - - it('provides an object with the local server info', function() { - var hostname = '127.0.0.1', - port = WebPageTest.defaultListenPort; - - assert.equal(server.protocol, 'http'); - assert.equal(server.hostname, hostname); - assert.equal(server.port, port); - assert.equal(server.url, 'http://' + hostname + ':' + port); - }); - - it('gets a test status GET request then returns the test status JSON', function(done) { - get('/status/120816_V2_2', server, function (err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.deepEqual(data, ResponseObjects.testStatus); - done(); - }); - }); - - it('gets a test results for multi runs with default median metric GET request then returns the test results JSON', function(done) { - get('/results/141106_TM_ZFM', server, function (err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.deepEqual(data, ResponseObjects.testResultsMultiRunsDefaultMedianMetric); - done(); - }); - }); - - it('gets a test results for multi runs with custom median metric GET request then returns the test results JSON', function(done) { - get('/results/141106_TM_ZFM?median=TTFB', server, function (err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.deepEqual(data, ResponseObjects.testResultsMultiRunsTTFBMedianMetric); - done(); - }); - }); - - it('gets the locations list GET request then returns the locations list JSON', function(done) { - get('/locations', server, function (err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.deepEqual(data, ResponseObjects.locations); - done(); - }); - }); - - it('gets the testers list GET request then returns the testers list JSON', function(done) { - get('/testers', server, function (err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.deepEqual(data, ResponseObjects.testers); - done(); - }); - }); - - it('gets a simple test GET request then returns the run test JSON', function(done) { - get('/test/' + encodeURIComponent('http://twitter.com/marcelduran'), - server, function (err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.deepEqual(data, ResponseObjects.runTest); - done(); - }); - }); - - it('gets a custom test GET request then returns the run test JSON', function(done) { - get(url.format({ - pathname: '/test/' + encodeURIComponent('http://twitter.com/marcelduran'), - query: { - 'location': 'Local_Firefox_Chrome:Chrome', - label: 'test 123', - runs: 3, - first: 1, - timeline: 1, - netlog: 1, - full: 1 - } - }), server, function (err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.deepEqual(data, ResponseObjects.runTest); - done(); - }); - }); - - it('gets a script test GET request then returns the run test JSON', function(done) { - var script = wpt.scriptToString([ - {logData: 0 }, - {navigate: 'http://foo.com/login' }, - '// log some data', - {logData: 1 }, - {setValue: ['name=username', 'johndoe']}, - {setValue: ['name=password', '12345'] }, - {submitForm: 'action=http://foo.com/main'}, - 'waitForComplete' - ]); - - get('/test/' + encodeURIComponent(script), server, function (err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.deepEqual(data, ResponseObjects.runTest); - done(); - }); - }); - - it('gets a cancel test GET request then returns the test cancelled JSON', function(done) { - get('/cancel/120816_V2_2', server, function (err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.deepEqual(data, ResponseObjects.cancel); - done(); - }); - }); - - it('gets page speed data GET request then returns the page speed JSON', function(done) { - get('/pagespeed/120816_V2_2', server, function (err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.deepEqual(data, ResponseObjects.pageSpeed); - done(); - }); - }); - - it('gets HAR data GET request then returns the HAR JSON', function(done) { - get('/har/120816_V2_2', server, function (err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.deepEqual(data, ResponseObjects.har); - done(); - }); - }); - - it('gets utilization data GET request then returns the utilization JSON', function(done) { - get('/utilization/120816_V2_2', server, function (err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.deepEqual(data, ResponseObjects.utilization); - done(); - }); - }); - - it('gets request data GET request then returns the request JSON', function(done) { - get('/request/120816_V2_2', server, function (err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.deepEqual(data, ResponseObjects.request); - done(); - }); - }); - - it('gets timeline data GET request then returns the timeline JSON', function(done) { - get('/timeline/120816_V2_2', server, function (err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.deepEqual(data, ResponseObjects.timeline); - done(); - }); - }); - - it('gets net log data GET request then returns the net log JSON', function(done) { - get('/netlog/120816_V2_2', server, function (err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.deepEqual(data, ResponseObjects.netLog); - done(); - }); - }); - - it('gets console log data GET request then returns the console log JSON', function(done) { - get('/console/120816_V2_2', server, function (err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.deepEqual(data, ResponseObjects.consoleLog); - done(); - }); - }); - - it('gets test info GET request then returns the test info JSON', function(done) { - get('/testinfo/120816_V2_2', server, function (err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.deepEqual(data, ResponseObjects.testInfo); - done(); - }); - }); - - it('gets history GET request then returns the history JSON', function(done) { - get('/history/2', server, function (err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.deepEqual(data, ResponseObjects.history); - done(); - }); - }); - - it('gets a waterfall image GET request then returns the waterfall data URI string', function(done) { - get('/waterfall/120816_V2_2?uri=1', server, function (err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.equal(data.data, ResponseObjects.waterfall); - assert.equal(data.type, 'image/png'); - done(); - }); - }); - - it('gets a waterfall thumbnail GET request then returns the waterfall thumbnail data URI string', function(done) { - get('/waterfall/120816_V2_2?uri=1&thumbnail=1', server, function (err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.equal(data.data, ResponseObjects.waterfallThumbnail); - assert.equal(data.type, 'image/png'); - done(); - }); - }); - - it('gets a screenshot GET request then returns the screenshot data URI string', function(done) { - get('/screenshot/120816_V2_2?uri=1', server, function (err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.equal(data.data, ResponseObjects.screenshot); - assert.equal(data.type, 'image/jpeg'); - done(); - }); - }); - - it('gets a screenshot thumbnail GET request then returns the screenshot thumbail data URI string', function(done) { - get('/screenshot/120816_V2_2?uri=1&thumbnail=1', server, function (err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.equal(data.data, ResponseObjects.screenshotThumbnail); - assert.equal(data.type, 'image/jpeg'); - done(); - }); - }); - - it('gets a screenshot in full resolution GET request then returns the screenshot in full resolution data URI string', function(done) { - get('/screenshot/120816_V2_2?uri=1&full=1', server, function (err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.equal(data.data, ResponseObjects.screenshotFullResolution); - assert.equal(data.type, 'image/png'); - done(); - }); - }); - - // not found / invalid - - it('gets an invalid test status GET request then returns a not found test status JSON', function(done) { - get('/status/120816_V2_3', server, function (err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.deepEqual(data, ResponseObjects.testStatusNotFound); - done(); - }); - }); - - it('gets an invalid test results GET request then returns a not found test results JSON', function(done) { - get('/results/120816_V2_3', server, function (err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.deepEqual(data, ResponseObjects.testResultsNotFound); - done(); - }); - }); - - it('gets an invalid test GET request then returns an invalid run test JSON', function(done) { - get('/test/', server, function (err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.deepEqual(data, ResponseObjects.runTestInvalid); - done(); - }); - }); - - it('gets an invalid file GET request then returns a 404 error', function(done) { - get('/pagespeed/120816_V2_3', server, function (err, data) { - assert.equal(err.message, '404'); - assert.equal(data, undefined); - done(); - }); - }); - - it('gets an invalid HAR data GET request then returns an empty HAR JSON', function(done) { - get('/har/120816_V2_3', server, function (err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.deepEqual(data, ResponseObjects.harNotFound); - done(); - }); - }); - - it('gets an invalid waterfall image GET request then returns an empty waterfall data URI string', function(done) { - get('/waterfall/120816_V2_3?uri=1', server, function (err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.equal(data.data, ResponseObjects.waterfallNotFound); - assert.equal(data.type, 'image/png'); - done(); - }); - }); - - it('gets an invalid waterfall thumbnail GET request then returns an empty waterfall thumbnail data URI string', function(done) { - get('/waterfall/120816_V2_3?uri=1&thumbnail=1', server, function (err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.equal(data.data, ResponseObjects.waterfallThumbnailNotFound); - assert.equal(data.type, 'image/png'); - done(); - }); - }); - - it('gets an invalid screenshot thumbnail GET request then returns a 404 error', function(done) { - get('/screenshot/120816_V2_3?uri=1&thumbnail=1', server, function (err, data) { - assert.equal(err.message, '404'); - assert.equal(data, undefined); - done(); - }); - }); - - it('gets an already cancelled test cancel test GET request then returns the test not cancelled JSON', function(done) { - get('/cancel/120816_V2_3', server, function (err, data) { - if (err) return done(err); - data = JSON.parse(data); - assert.deepEqual(data, ResponseObjects.cancelNotCancelled); - done(); - }); - }); - - it('gets a cancel test of an invalid test GET request then returns a 404 error', function(done) { - get('/cancel/120816_V2_4', server, function (err, data) { - assert.equal(err.message, '404'); - assert.equal(data, undefined); - done(); - }); - }); - - after(function() { - server.server.close(); - }); - - }); -}); diff --git a/test/nock-test.js b/test/nock-test.js deleted file mode 100644 index 76b6fd4..0000000 --- a/test/nock-test.js +++ /dev/null @@ -1,416 +0,0 @@ -/** - * Copyright (c) 2013, Twitter Inc. - * Copyright (c) 2020, Google Inc. - * Copyright (c) 2020, Marcel Duran and other contributors - * Released under the MIT License - */ - -var assert = require('assert'); - -var WebPageTest = require('../lib/webpagetest'), - NockServer = require('./helpers/nock-server'), - ResponseObjects = require('./helpers/response-objects'); - -var wptNockServer = new NockServer('http://example.com'), - wpt = new WebPageTest('example.com', 'YOURAPIKEY'); - -describe('Example WebPageTest', function() { - describe('Hits a Nock Server', function() { - - it('gets a test status request then returns the test status object', function(done) { - wpt.getTestStatus('120816_V2_2', function (err, data) { - if (err) return done(err); - assert.deepEqual(data, ResponseObjects.testStatus); - done(); - }); - }); - - it('gets a test results request then returns the test results object', function(done) { - wpt.getTestResults('120816_V2_2', function (err, data) { - if (err) return done(err); - assert.deepEqual(data, ResponseObjects.testResults); - done(); - }); - }); - - it('gets a test results for multi runs with default median metric request then returns the test results object', function(done) { - wpt.getTestResults('141106_TM_ZFM', function (err, data) { - if (err) return done(err); - assert.deepEqual(data, ResponseObjects.testResultsMultiRunsDefaultMedianMetric); - done(); - }); - }); - - it('gets a test results for multi runs with custom median metric request then returns the test results object', function(done) { - wpt.getTestResults('141106_TM_ZFM', {medianMetric: 'TTFB'}, function (err, data) { - if (err) return done(err); - assert.deepEqual(data, ResponseObjects.testResultsMultiRunsTTFBMedianMetric); - done(); - }); - }); - - it('gets a test results with extra data request then returns the test results object', function(done) { - wpt.getTestResults('141106_8N_ZRC', { - breakDown: true, - domains: true, - pageSpeed: true, - requests: true - }, function (err, data) { - if (err) return done(err); - assert.deepEqual(data, ResponseObjects.testResultsExtraData); - done(); - }); - }); - - it('gets the locations list request then returns the locations list object', function(done) { - wpt.getLocations(function (err, data) { - if (err) return done(err); - assert.deepEqual(data, ResponseObjects.locations); - done(); - }); - }); - - it('gets the testers list request then returns the testers list object', function(done) { - wpt.getTesters(function (err, data) { - if (err) return done(err); - assert.deepEqual(data, ResponseObjects.testers); - done(); - }); - }); - - it('gets a simple test request then returns the run test object', function(done) { - wpt.runTest('http://twitter.com/marcelduran', function (err, data) { - if (err) return done(err); - assert.deepEqual(data, ResponseObjects.runTest); - done(); - }); - }); - - it('gets a custom test request then returns the run test object', function(done) { - wpt.runTest('http://twitter.com/marcelduran', { - 'location': 'Local_Firefox_Chrome:Chrome', - label: 'test 123', - runs: 3, - firstViewOnly: true, - timeline: true, - netLog: true, - fullResolutionScreenshot: true - }, function (err, data) { - if (err) return done(err); - assert.deepEqual(data, ResponseObjects.runTest); - done(); - }); - }); - - it('gets a script test request then returns the run test object', function(done) { - var script = wpt.scriptToString([ - {logData: 0 }, - {navigate: 'http://foo.com/login' }, - '// log some data', - {logData: 1 }, - {setValue: ['name=username', 'johndoe']}, - {setValue: ['name=password', '12345'] }, - {submitForm: 'action=http://foo.com/main'}, - 'waitForComplete' - ]); - - wpt.runTest(script, function (err, data) { - if (err) return done(err); - assert.deepEqual(data, ResponseObjects.runTest); - done(); - }); - }); - - it('gets a restart test request then returns the new test object', function(done) { - wpt.restartTest('120816_V2_2', function (err, data) { - if (err) return done(err); - assert.deepEqual(data, ResponseObjects.restart); - done(); - }); - }); - - it('gets a cancel test request then returns the test cancelled object', function(done) { - wpt.cancelTest('120816_V2_2', function (err, data) { - if (err) return done(err); - assert.deepEqual(data, ResponseObjects.cancel); - done(); - }); - }); - - it('gets page speed data request then returns the page speed object', function(done) { - wpt.getPageSpeedData('120816_V2_2', function (err, data) { - if (err) return done(err); - assert.deepEqual(data, ResponseObjects.pageSpeed); - done(); - }); - }); - - it('gets HAR data request then returns the HAR object', function(done) { - wpt.getHARData('120816_V2_2', function (err, data) { - if (err) return done(err); - assert.deepEqual(data, ResponseObjects.har); - done(); - }); - }); - - it('gets utilization data request then returns the utilization object', function(done) { - wpt.getUtilizationData('120816_V2_2', function (err, data) { - if (err) return done(err); - assert.deepEqual(data, ResponseObjects.utilization); - done(); - }); - }); - - it('gets request data request then returns the request object', function(done) { - wpt.getRequestData('120816_V2_2', function (err, data) { - if (err) return done(err); - assert.deepEqual(data, ResponseObjects.request); - done(); - }); - }); - - it('gets timeline data request then returns the timeline object', function(done) { - wpt.getTimelineData('120816_V2_2', function (err, data) { - if (err) return done(err); - assert.deepEqual(data, ResponseObjects.timeline); - done(); - }); - }); - - it('gets net log data request then returns the net log object', function(done) { - wpt.getNetLogData('120816_V2_2', function (err, data) { - if (err) return done(err); - assert.deepEqual(data, ResponseObjects.netLog); - done(); - }); - }); - - it('gets console log data request then returns the console log object', function(done) { - wpt.getConsoleLogData('120816_V2_2', function (err, data) { - if (err) return done(err); - assert.deepEqual(data, ResponseObjects.consoleLog); - done(); - }); - }); - - it('gets test info request then returns the test info object', function(done) { - wpt.getTestInfo('120816_V2_2', function (err, data) { - if (err) return done(err); - assert.deepEqual(data, ResponseObjects.testInfo); - done(); - }); - }); - - it('gets history request then returns the history object', function(done) { - wpt.getHistory(2, function (err, data) { - if (err) return done(err); - assert.deepEqual(data, ResponseObjects.history); - done(); - }); - }); - - it('gets a waterfall image request then returns the waterfall data URI string', function(done) { - wpt.getWaterfallImage('120816_V2_2', {dataURI: true}, function (err, data, info) { - if (err) return done(err); - assert.equal(data, ResponseObjects.waterfall); - assert.deepEqual(info, {type: 'image/png', encoding: 'utf8'}); - done(); - }); - }); - - it('gets a waterfall thumbnail request then returns the waterfall thumbnail data URI string', function(done) { - wpt.getWaterfallImage('120816_V2_2', { - thumbnail: true, - dataURI: true - }, function (err, data, info) { - if (err) return done(err); - assert.equal(data, ResponseObjects.waterfallThumbnail); - assert.deepEqual(info, {type: 'image/png', encoding: 'utf8'}); - done(); - }); - }); - - it('gets a screenshot request then returns the screenshot data URI string', function(done) { - wpt.getScreenshotImage('120816_V2_2', {dataURI: true}, function (err, data, info) { - if (err) return done(err); - assert.equal(data, ResponseObjects.screenshot); - assert.deepEqual(info, {type: 'image/jpeg', encoding: 'utf8'}); - done(); - }); - }); - - it('gets a screenshot thumbnail request then returns the screenshot thumbail data URI string', function(done) { - wpt.getScreenshotImage('120816_V2_2', { - thumbnail: true, - dataURI: true - }, function (err, data, info) { - if (err) return done(err); - assert.equal(data, ResponseObjects.screenshotThumbnail); - assert.deepEqual(info, {type: 'image/jpeg', encoding: 'utf8'}); - done(); - }); - }); - - it('gets a screenshot in full resolution request then returns the screenshot in full resolution data URI string', function(done) { - wpt.getScreenshotImage('120816_V2_2', { - fullResolution: true, - dataURI: true - }, function (err, data, info) { - if (err) return done(err); - assert.equal(data, ResponseObjects.screenshotFullResolution); - assert.deepEqual(info, {type: 'image/png', encoding: 'utf8'}); - done(); - }); - }); - - it('creates a video', function (done) { - wpt.createVideo('130416_YS_KD4-r:3-c:1,130416_W6_KEE-r:8-c:1', {}, function (err, data) { - if (err) throw err; - assert.deepEqual(data, ResponseObjects.createVideo); - done(); - }); - }); - - it('gets the url of an embedded video', function (done) { - wpt.getEmbedVideoPlayer('130416_36ed6e37013655a14b2b857cdccec99db72adcaa', {}, function (err, data) { - if (err) throw err; - assert.equal(data, ResponseObjects.embeddedVideoPlayer + "\n"); - done(); - }); - }); - - it('gets Google csi data', function(done) { - wpt.getGoogleCsiData('140101_AB_12', function(err, data) { - if (err) throw err; - assert.deepEqual(data, ResponseObjects.googleCsiData); - done(); - }); - }); - - it('gets Google csi data from run 2 only', function(done) { - wpt.getGoogleCsiData('140101_AB_12', {run: 2}, function(err, data) { - if (err) throw err; - assert.deepEqual(data, ResponseObjects.googleCsiDataRun2); - done(); - }); - }); - - it('gets response body', function(done) { - wpt.getResponseBody('140101_AB_12', function(err, data) { - if (err) throw err; - assert.deepEqual(data.result.trim(), ResponseObjects.response.data.result); - done(); - }); - }); - - // not found / invalid - - it('gets an invalid test status request then returns a not found test status object', function(done) { - wpt.getTestStatus('120816_V2_3', function (err, data) { - if (err) return done(err); - assert.deepEqual(data, ResponseObjects.testStatusNotFound); - done(); - }); - }); - - it('gets an invalid test results request then returns a not found test results object', function(done) { - wpt.getTestResults('120816_V2_3', function (err, data) { - if (err) return done(err); - assert.deepEqual(data, ResponseObjects.testResultsNotFound); - done(); - }); - }); - - it('gets an invalid test request then returns an invalid run test object', function(done) { - wpt.runTest(undefined, function (err, data) { - if (err) return done(err); - assert.deepEqual(data, ResponseObjects.runTestInvalid); - done(); - }); - }); - - it('gets an invalid file request then returns a 404 error', function(done) { - wpt.getPageSpeedData('120816_V2_3', function (err, data) { - assert.equal(err.code, 404); - assert.equal(err.message, 'Not Found'); - assert.equal(data, undefined); - done(); - }); - }); - - it('gets an invalid HAR data request then returns an empty HAR object', function(done) { - wpt.getHARData('120816_V2_3', function (err, data) { - if (err) return done(err); - assert.deepEqual(data, ResponseObjects.harNotFound); - done(); - }); - }); - - it('gets an invalid waterfall image request then returns an empty waterfall data URI string', function(done) { - wpt.getWaterfallImage('120816_V2_3', {dataURI: true}, function (err, data, info) { - if (err) return done(err); - assert.equal(data, ResponseObjects.waterfallNotFound); - assert.deepEqual(info, {type: 'image/png', encoding: 'utf8'}); - done(); - }); - }); - - it('gets an invalid waterfall thumbnail request then returns an empty waterfall thumbnail data URI string', function(done) { - wpt.getWaterfallImage('120816_V2_3', { - thumbnail: true, - dataURI: true - }, function (err, data, info) { - if (err) return done(err); - assert.equal(data, ResponseObjects.waterfallThumbnailNotFound); - assert.deepEqual(info, {type: 'image/png', encoding: 'utf8'}); - done(); - }); - }); - - it('gets an invalid screenshot thumbnail request then returns a 404 error', function(done) { - wpt.getScreenshotImage('120816_V2_3', { - thumbnail: true, - dataURI: true - }, function (err, data, info) { - assert.equal(err.code, 404); - assert.equal(err.message, 'Not Found'); - assert.equal(data, undefined); - done(); - }); - }); - - it('gets a cancel test of already cancelled test request then returns the test not cancelled object', function(done) { - wpt.cancelTest('120816_V2_3', function (err, data) { - if (err) return done(err); - assert.deepEqual(data, ResponseObjects.cancelNotCancelled); - done(); - }); - }); - - it('gets a cancel test of an invalid test request then returns a 404 error', function(done) { - wpt.cancelTest('120816_V2_4', function (err, data) { - assert.equal(err.code, 404); - assert.equal(err.message, 'Not Found'); - assert.equal(data, undefined); - done(); - }); - }); - - it('gets a test request for an api key required server then returns the no api key response object', function(done) { - wpt.runTest('http://apikey.com', function (err, data) { - if (err) return done(err); - assert.deepEqual(data, ResponseObjects.runTestNoAPIKey); - done(); - }); - }); - - it('gets a test request for an api key required server with invalid key then returns the no api key response object', function(done) { - wpt.runTest('http://apikey.com', {key: '12345'}, function (err, data) { - if (err) return done(err); - assert.deepEqual(data, ResponseObjects.runTestInvalidAPIKey); - done(); - }); - }); - - }); -}); diff --git a/test/proxy-test.js b/test/proxy-test.js deleted file mode 100644 index f097655..0000000 --- a/test/proxy-test.js +++ /dev/null @@ -1,74 +0,0 @@ -/** - * Copyright (c) 2013, Twitter Inc. - * Copyright (c) 2020, Google Inc. - * Copyright (c) 2020, Marcel Duran and other contributors - * Released under the MIT License - */ - -var assert = require('assert'), - http = require('http'), - https = require('https'), - url = require('url'), - WebPageTest = require('../lib/webpagetest'), - NockServer = require('./helpers/nock-server'), - ResponseObjects = require('./helpers/response-objects'); - -var wptNockServer = new NockServer('https://wpt.com'), - wpt = new WebPageTest('https://wpt.com', 'YOURAPIKEY'); - -var server; - - -describe('Run via proxy', function() { - before(function () { - // proxy for test on 9001 port - server = http.createServer(function(req, res) { - var requestUrl = url.parse(req.url); - var body = []; - - req.on('data', function(data) { - body.push(data); - }); - req.on('end', function() { - var orgreq = https.request({ - host: req.headers.host, - port: requestUrl.port || 80, - path: requestUrl.path, - method: req.method, - headers: req.headers - }, - function (orgres) { - res.writeHead(orgres.statusCode, orgres.headers); - orgres.on('data', function(chunk) { - res.write(chunk); - }); - orgres.on('end', function() { - res.end(); - }); - }); - if (body.length > 0) { - orgreq.write(body.join('')); - } - orgreq.end(); - }); - }); - server.listen(9001); - }); - - after(function () { - server.close(); - }); - - describe('An Example WebPageTest Server', function() { - - it('gets a test status request', function(done) { - wpt.getTestStatus('120816_V2_2', { - proxy: 'http://127.0.0.1:9001' - }, function (err, data) { - if (err) return done(err); - assert.deepEqual(data, ResponseObjects.testStatus); - done(); - }); - }); - }); -}); diff --git a/test/specs-test.js b/test/specs-test.js deleted file mode 100644 index e35ddcb..0000000 --- a/test/specs-test.js +++ /dev/null @@ -1,58 +0,0 @@ -/** - * Copyright (c) 2013, Twitter Inc. - * Copyright (c) 2020, Google Inc. - * Copyright (c) 2020, Marcel Duran and other contributors - * Released under the MIT License - */ - -var assert = require('assert'), - path = require('path'), - http = require('http'); - -var WebPageTest = require('../lib/webpagetest'), - NockServer = require('./helpers/nock-server'), - ResponseObjects = require('./helpers/response-objects'); - -describe('Example WebPageTest for Specs', function() { - describe.skip('Hits a Nock Server', function() { - - var wptNockServer, wpt, - count = 10; - - beforeEach(function() { - var server = 'http://foobar' + count + '.com'; - wptNockServer = new NockServer(server); - wpt = new WebPageTest(server, 'YOURAPIKEY'); - count++; - }); - - it('gets a sync test with results with perf test specs request then waits for test results object', function(done) { - var server = wpt.runTest('http://twitter.com/marcelduran', { - firstViewOnly: true, - runs: 3, - waitResults: '127.0.0.1:8000', - medianMetric: 'TTFB', - specs: '{"defaults":{"suiteName":"WPT test of test (not really an error)"},"median":{"firstView":{"render":300,"TTFB":100,"loadTime":4000}}}', - reporter: 'min' - }, function(err) { - assert.equal(err, 2); - done(); - }); - setTimeout(function() { - http.get('http://' + server.hostname + ':' + server.port + - '/testdone?id=141106_TM_ZFM'); - }, 100); - }); - - it('gets a test results with perf test specs request then test results object', function(done) { - var server = wpt.getTestResults('120816_V2_2', { - specs: path.join(__dirname, './fixtures/specs.json'), - reporter: 'spec' - }, function(err) { - assert.equal(err, 1); - done(); - }); - }); - - }); -}); diff --git a/test/sync-test.js b/test/sync-test.js deleted file mode 100644 index ce71e18..0000000 --- a/test/sync-test.js +++ /dev/null @@ -1,74 +0,0 @@ -/** - * Copyright (c) 2013, Twitter Inc. - * Copyright (c) 2020, Google Inc. - * Copyright (c) 2020, Marcel Duran and other contributors - * Released under the MIT License - */ - -var assert = require('assert'), - http = require('http'); - -var WebPageTest = require('../lib/webpagetest'), - NockServer = require('./helpers/nock-server'), - ResponseObjects = require('./helpers/response-objects'); - -describe('Example WebPageTest for Sync', function() { - describe.skip('Hits a Nock Server', function() { - - var wptNockServer, wpt, - count = 0; - - beforeEach(function() { - var server = 'http://foobar' + count + '.com'; - wptNockServer = new NockServer(server); - wpt = new WebPageTest(server, 'YOURAPIKEY'); - count++; - }); - - it('gets a sync test with results request then polls test results object', function(done) { - wpt.runTest('http://twitter.com/marcelduran', { - pollResults: 0.1 - }, function(err, data) { - if (err) return done(err); - assert.deepEqual(data, ResponseObjects.testResults); - done(); - }); - }); - - it('gets a sync test with results request then waits for test results object', function(done) { - var server = wpt.runTest('http://twitter.com/marcelduran', { - waitResults: '127.0.0.1:8000' - }, function(err, data) { - if (err) return done(err); - assert.deepEqual(data, ResponseObjects.testResults); - done(); - }); - setTimeout(function() { - http.get('http://' + server.hostname + ':' + server.port + - '/testdone?id=120816_V2_2'); - }, 100); - }); - - it('gets a sync test with results with custom median metric request then waits for test results object', function(done) { - var server = wpt.runTest('http://twitter.com/marcelduran', { - firstViewOnly: true, - runs: 3, - waitResults: '127.0.0.1:8000', - medianMetric: 'TTFB' - }, function(err, data) { - if (err) return done(err); - assert.equal(data.data.median.firstView.run, 3); - wpt.getTestResults('120816_V2_2', function(err, data) { - if (err) return done(err); - assert.equal(data.data.median.firstView.run, 1); - done(); - }); - }); - setTimeout(function() { - http.get('http://' + server.hostname + ':' + server.port + - '/testdone?id=141106_TM_ZFM'); - }, 100); - }); - - }); -});