Skip to content

Instantly share code, notes, and snippets.

@drewwells
Created March 24, 2014 17:16
Show Gist options
  • Save drewwells/9744746 to your computer and use it in GitHub Desktop.
Save drewwells/9744746 to your computer and use it in GitHub Desktop.
DSL simulation with page-repeat
<!DOCTYPE html>
<html>
<head>
<title>Telemetry Performance Test Results</title>
<style type="text/css">
section {
background: white;
padding: 10px;
position: relative;
}
.collapsed:before {
content: '\25B8\00A0';
}
.expanded:before {
content: '\25BE\00A0';
}
.line-plots {
padding-left: 25px;
}
.line-plots > div {
display: inline-block;
width: 90px;
height: 40px;
margin-right: 10px;
}
.lage-line-plots {
padding-left: 25px;
}
.large-line-plots > div, .histogram-plots > div {
display: inline-block;
width: 400px;
height: 200px;
margin-right: 10px;
}
.large-line-plot-labels > div, .histogram-plot-labels > div {
display: inline-block;
width: 400px;
height: 11px;
margin-right: 10px;
color: #545454;
text-align: center;
font-size: 11px;
}
.closeButton {
background: #fff;
border: 1px solid black;
border-radius: 2px;
display: inline-block;
float: right;
line-height: 11px;
margin-top: 3px;
width: 11px;
}
.closeButton:hover {
background: #F09C9C;
}
.label {
cursor: text;
}
.label:hover {
background: #ffcc66;
}
section h1 {
text-align: center;
font-size: 1em;
}
section .tooltip {
position: absolute;
text-align: center;
background: #ffcc66;
border-radius: 5px;
padding: 0px 5px;
}
body {
padding: 0px;
margin: 0px;
font-family: sans-serif;
}
table {
background: white;
width: 100%;
}
table, td, th {
border-collapse: collapse;
padding: 5px;
white-space: nowrap;
}
tr.even {
background: #f6f6f6;
}
table td {
position: relative;
font-family: monospace;
}
th, td {
cursor: pointer;
cursor: hand;
}
th {
background: #e6eeee;
background: -webkit-gradient(linear, left top, left bottom, from(rgb(244, 244, 244)), to(rgb(217, 217, 217)));
border: 1px solid #ccc;
}
th:after {
content: ' \25B8';
}
th.headerSortUp:after {
content: ' \25BE';
}
th.headerSortDown:after {
content: ' \25B4';
}
td.comparison, td.result {
text-align: right;
}
td.better {
color: #6c6;
}
td.worse {
color: #c66;
}
td.missing {
color: #aaa;
text-align: center;
}
.checkbox {
display: inline-block;
background: #eee;
background: -webkit-gradient(linear, left bottom, left top, from(rgb(220, 220, 220)), to(rgb(200, 200, 200)));
border: inset 1px #ddd;
border-radius: 5px;
margin: 10px;
font-size: small;
cursor: pointer;
cursor: hand;
-webkit-user-select: none;
font-weight: bold;
}
.checkbox span {
display: inline-block;
line-height: 100%;
padding: 5px 8px;
border: outset 1px transparent;
}
.checkbox .checked {
background: #e6eeee;
background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), to(rgb(235, 235, 235)));
border: outset 1px #eee;
border-radius: 5px;
}
</style>
</head>
<body onload="init()">
<div style="padding: 0 10px; white-space: nowrap;">
Result <span id="time-memory" class="checkbox"><span class="checked">Time</span><span>Memory</span></span>
Reference <span id="reference" class="checkbox"></span>
Style <span id="scatter-line" class="checkbox"><span class="checked">Scatter</span><span>Line</span></span>
<span class="checkbox"><span class="checked" id="undelete">Undelete</span></span>
Run Telemetry with --reset-results to clear all runs
</div>
<table id="container"></table>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script>
/* Javascript plotting library for jQuery, version 0.8.1.
Copyright (c) 2007-2013 IOLA and Ole Laursen.
Licensed under the MIT license.
*/// first an inline dependency, jquery.colorhelpers.js, we inline it here
// for convenience
/* Plugin for jQuery for working with colors.
*
* Version 1.1.
*
* Inspiration from jQuery color animation plugin by John Resig.
*
* Released under the MIT license by Ole Laursen, October 2009.
*
* Examples:
*
* $.color.parse("#fff").scale('rgb', 0.25).add('a', -0.5).toString()
* var c = $.color.extract($("#mydiv"), 'background-color');
* console.log(c.r, c.g, c.b, c.a);
* $.color.make(100, 50, 25, 0.4).toString() // returns "rgba(100,50,25,0.4)"
*
* Note that .scale() and .add() return the same modified object
* instead of making a new one.
*
* V. 1.1: Fix error handling so e.g. parsing an empty string does
* produce a color rather than just crashing.
*/(function(e){e.color={},e.color.make=function(t,n,r,i){var s={};return s.r=t||0,s.g=n||0,s.b=r||0,s.a=i!=null?i:1,s.add=function(e,t){for(var n=0;n<e.length;++n)s[e.charAt(n)]+=t;return s.normalize()},s.scale=function(e,t){for(var n=0;n<e.length;++n)s[e.charAt(n)]*=t;return s.normalize()},s.toString=function(){return s.a>=1?"rgb("+[s.r,s.g,s.b].join(",")+")":"rgba("+[s.r,s.g,s.b,s.a].join(",")+")"},s.normalize=function(){function e(e,t,n){return t<e?e:t>n?n:t}return s.r=e(0,parseInt(s.r),255),s.g=e(0,parseInt(s.g),255),s.b=e(0,parseInt(s.b),255),s.a=e(0,s.a,1),s},s.clone=function(){return e.color.make(s.r,s.b,s.g,s.a)},s.normalize()},e.color.extract=function(t,n){var r;do{r=t.css(n).toLowerCase();if(r!=""&&r!="transparent")break;t=t.parent()}while(!e.nodeName(t.get(0),"body"));return r=="rgba(0, 0, 0, 0)"&&(r="transparent"),e.color.parse(r)},e.color.parse=function(n){var r,i=e.color.make;if(r=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(n))return i(parseInt(r[1],10),parseInt(r[2],10),parseInt(r[3],10));if(r=/rgba\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]+(?:\.[0-9]+)?)\s*\)/.exec(n))return i(parseInt(r[1],10),parseInt(r[2],10),parseInt(r[3],10),parseFloat(r[4]));if(r=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(n))return i(parseFloat(r[1])*2.55,parseFloat(r[2])*2.55,parseFloat(r[3])*2.55);if(r=/rgba\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\s*\)/.exec(n))return i(parseFloat(r[1])*2.55,parseFloat(r[2])*2.55,parseFloat(r[3])*2.55,parseFloat(r[4]));if(r=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(n))return i(parseInt(r[1],16),parseInt(r[2],16),parseInt(r[3],16));if(r=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(n))return i(parseInt(r[1]+r[1],16),parseInt(r[2]+r[2],16),parseInt(r[3]+r[3],16));var s=e.trim(n).toLowerCase();return s=="transparent"?i(255,255,255,0):(r=t[s]||[0,0,0],i(r[0],r[1],r[2]))};var t={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0]}})(jQuery),function(e){function n(t,n){var r=n.children("."+t)[0];if(r==null){r=document.createElement("canvas"),r.className=t,e(r).css({direction:"ltr",position:"absolute",left:0,top:0}).appendTo(n);if(!r.getContext){if(!window.G_vmlCanvasManager)throw new Error("Canvas is not available. If you're using IE with a fall-back such as Excanvas, then there's either a mistake in your conditional include, or the page has no DOCTYPE and is rendering in Quirks Mode.");r=window.G_vmlCanvasManager.initElement(r)}}this.element=r;var i=this.context=r.getContext("2d"),s=window.devicePixelRatio||1,o=i.webkitBackingStorePixelRatio||i.mozBackingStorePixelRatio||i.msBackingStorePixelRatio||i.oBackingStorePixelRatio||i.backingStorePixelRatio||1;this.pixelRatio=s/o,this.resize(n.width(),n.height()),this.textContainer=null,this.text={},this._textCache={}}function r(t,r,s,o){function E(e,t){t=[w].concat(t);for(var n=0;n<e.length;++n)e[n].apply(this,t)}function S(){var t={Canvas:n};for(var r=0;r<o.length;++r){var i=o[r];i.init(w,t),i.options&&e.extend(!0,a,i.options)}}function x(n){e.extend(!0,a,n),n&&n.colors&&(a.colors=n.colors),a.xaxis.color==null&&(a.xaxis.color=e.color.parse(a.grid.color).scale("a",.22).toString()),a.yaxis.color==null&&(a.yaxis.color=e.color.parse(a.grid.color).scale("a",.22).toString()),a.xaxis.tickColor==null&&(a.xaxis.tickColor=a.grid.tickColor||a.xaxis.color),a.yaxis.tickColor==null&&(a.yaxis.tickColor=a.grid.tickColor||a.yaxis.color),a.grid.borderColor==null&&(a.grid.borderColor=a.grid.color),a.grid.tickColor==null&&(a.grid.tickColor=e.color.parse(a.grid.color).scale("a",.22).toString());var r,i,s,o={style:t.css("font-style"),size:Math.round(.8*(+t.css("font-size").replace("px","")||13)),variant:t.css("font-variant"),weight:t.css("font-weight"),family:t.css("font-family")};o.lineHeight=o.size*1.15,s=a.xaxes.length||1;for(r=0;r<s;++r)i=a.xaxes[r],i&&!i.tickColor&&(i.tickColor=i.color),i=e.extend(!0,{},a.xaxis,i),a.xaxes[r]=i,i.font&&(i.font=e.extend({},o,i.font),i.font.color||(i.font.color=i.color));s=a.yaxes.length||1;for(r=0;r<s;++r)i=a.yaxes[r],i&&!i.tickColor&&(i.tickColor=i.color),i=e.extend(!0,{},a.yaxis,i),a.yaxes[r]=i,i.font&&(i.font=e.extend({},o,i.font),i.font.color||(i.font.color=i.color));a.xaxis.noTicks&&a.xaxis.ticks==null&&(a.xaxis.ticks=a.xaxis.noTicks),a.yaxis.noTicks&&a.yaxis.ticks==null&&(a.yaxis.ticks=a.yaxis.noTicks),a.x2axis&&(a.xaxes[1]=e.extend(!0,{},a.xaxis,a.x2axis),a.xaxes[1].position="top"),a.y2axis&&(a.yaxes[1]=e.extend(!0,{},a.yaxis,a.y2axis),a.yaxes[1].position="right"),a.grid.coloredAreas&&(a.grid.markings=a.grid.coloredAreas),a.grid.coloredAreasColor&&(a.grid.markingsColor=a.grid.coloredAreasColor),a.lines&&e.extend(!0,a.series.lines,a.lines),a.points&&e.extend(!0,a.series.points,a.points),a.bars&&e.extend(!0,a.series.bars,a.bars),a.shadowSize!=null&&(a.series.shadowSize=a.shadowSize),a.highlightColor!=null&&(a.series.highlightColor=a.highlightColor);for(r=0;r<a.xaxes.length;++r)O(d,r+1).options=a.xaxes[r];for(r=0;r<a.yaxes.length;++r)O(v,r+1).options=a.yaxes[r];for(var u in b)a.hooks[u]&&a.hooks[u].length&&(b[u]=b[u].concat(a.hooks[u]));E(b.processOptions,[a])}function T(e){u=N(e),M(),_()}function N(t){var n=[];for(var r=0;r<t.length;++r){var i=e.extend(!0,{},a.series);t[r].data!=null?(i.data=t[r].data,delete t[r].data,e.extend(!0,i,t[r]),t[r].data=i.data):i.data=t[r],n.push(i)}return n}function C(e,t){var n=e[t+"axis"];return typeof n=="object"&&(n=n.n),typeof n!="number"&&(n=1),n}function k(){return e.grep(d.concat(v),function(e){return e})}function L(e){var t={},n,r;for(n=0;n<d.length;++n)r=d[n],r&&r.used&&(t["x"+r.n]=r.c2p(e.left));for(n=0;n<v.length;++n)r=v[n],r&&r.used&&(t["y"+r.n]=r.c2p(e.top));return t.x1!==undefined&&(t.x=t.x1),t.y1!==undefined&&(t.y=t.y1),t}function A(e){var t={},n,r,i;for(n=0;n<d.length;++n){r=d[n];if(r&&r.used){i="x"+r.n,e[i]==null&&r.n==1&&(i="x");if(e[i]!=null){t.left=r.p2c(e[i]);break}}}for(n=0;n<v.length;++n){r=v[n];if(r&&r.used){i="y"+r.n,e[i]==null&&r.n==1&&(i="y");if(e[i]!=null){t.top=r.p2c(e[i]);break}}}return t}function O(t,n){return t[n-1]||(t[n-1]={n:n,direction:t==d?"x":"y",options:e.extend(!0,{},t==d?a.xaxis:a.yaxis)}),t[n-1]}function M(){var t=u.length,n=-1,r;for(r=0;r<u.length;++r){var i=u[r].color;i!=null&&(t--,typeof i=="number"&&i>n&&(n=i))}t<=n&&(t=n+1);var s,o=[],f=a.colors,l=f.length,c=0;for(r=0;r<t;r++)s=e.color.parse(f[r%l]||"#666"),r%l==0&&r&&(c>=0?c<.5?c=-c-.2:c=0:c=-c),o[r]=s.scale("rgb",1+c);var h=0,p;for(r=0;r<u.length;++r){p=u[r],p.color==null?(p.color=o[h].toString(),++h):typeof p.color=="number"&&(p.color=o[p.color].toString());if(p.lines.show==null){var m,g=!0;for(m in p)if(p[m]&&p[m].show){g=!1;break}g&&(p.lines.show=!0)}p.lines.zero==null&&(p.lines.zero=!!p.lines.fill),p.xaxis=O(d,C(p,"x")),p.yaxis=O(v,C(p,"y"))}}function _(){function x(e,t,n){t<e.datamin&&t!=-r&&(e.datamin=t),n>e.datamax&&n!=r&&(e.datamax=n)}var t=Number.POSITIVE_INFINITY,n=Number.NEGATIVE_INFINITY,r=Number.MAX_VALUE,i,s,o,a,f,l,c,h,p,d,v,m,g,y,w,S;e.each(k(),function(e,r){r.datamin=t,r.datamax=n,r.used=!1});for(i=0;i<u.length;++i)l=u[i],l.datapoints={points:[]},E(b.processRawData,[l,l.data,l.datapoints]);for(i=0;i<u.length;++i){l=u[i],w=l.data,S=l.datapoints.format;if(!S){S=[],S.push({x:!0,number:!0,required:!0}),S.push({y:!0,number:!0,required:!0});if(l.bars.show||l.lines.show&&l.lines.fill){var T=!!(l.bars.show&&l.bars.zero||l.lines.show&&l.lines.zero);S.push({y:!0,number:!0,required:!1,defaultValue:0,autoscale:T}),l.bars.horizontal&&(delete S[S.length-1].y,S[S.length-1].x=!0)}l.datapoints.format=S}if(l.datapoints.pointsize!=null)continue;l.datapoints.pointsize=S.length,h=l.datapoints.pointsize,c=l.datapoints.points;var N=l.lines.show&&l.lines.steps;l.xaxis.used=l.yaxis.used=!0;for(s=o=0;s<w.length;++s,o+=h){y=w[s];var C=y==null;if(!C)for(a=0;a<h;++a)m=y[a],g=S[a],g&&(g.number&&m!=null&&(m=+m,isNaN(m)?m=null:m==Infinity?m=r:m==-Infinity&&(m=-r)),m==null&&(g.required&&(C=!0),g.defaultValue!=null&&(m=g.defaultValue))),c[o+a]=m;if(C)for(a=0;a<h;++a)m=c[o+a],m!=null&&(g=S[a],g.autoscale&&(g.x&&x(l.xaxis,m,m),g.y&&x(l.yaxis,m,m))),c[o+a]=null;else if(N&&o>0&&c[o-h]!=null&&c[o-h]!=c[o]&&c[o-h+1]!=c[o+1]){for(a=0;a<h;++a)c[o+h+a]=c[o+a];c[o+1]=c[o-h+1],o+=h}}}for(i=0;i<u.length;++i)l=u[i],E(b.processDatapoints,[l,l.datapoints]);for(i=0;i<u.length;++i){l=u[i],c=l.datapoints.points,h=l.datapoints.pointsize,S=l.datapoints.format;var L=t,A=t,O=n,M=n;for(s=0;s<c.length;s+=h){if(c[s]==null)continue;for(a=0;a<h;++a){m=c[s+a],g=S[a];if(!g||g.autoscale===!1||m==r||m==-r)continue;g.x&&(m<L&&(L=m),m>O&&(O=m)),g.y&&(m<A&&(A=m),m>M&&(M=m))}}if(l.bars.show){var _;switch(l.bars.align){case"left":_=0;break;case"right":_=-l.bars.barWidth;break;case"center":_=-l.bars.barWidth/2;break;default:throw new Error("Invalid bar alignment: "+l.bars.align)}l.bars.horizontal?(A+=_,M+=_+l.bars.barWidth):(L+=_,O+=_+l.bars.barWidth)}x(l.xaxis,L,O),x(l.yaxis,A,M)}e.each(k(),function(e,r){r.datamin==t&&(r.datamin=null),r.datamax==n&&(r.datamax=null)})}function D(){t.css("padding",0).children(":not(.flot-base,.flot-overlay)").remove(),t.css("position")=="static"&&t.css("position","relative"),f=new n("flot-base",t),l=new n("flot-overlay",t),h=f.context,p=l.context,c=e(l.element).unbind();var r=t.data("plot");r&&(r.shutdown(),l.clear()),t.data("plot",w)}function P(){a.grid.hoverable&&(c.mousemove(at),c.bind("mouseleave",ft)),a.grid.clickable&&c.click(lt),E(b.bindEvents,[c])}function H(){ot&&clearTimeout(ot),c.unbind("mousemove",at),c.unbind("mouseleave",ft),c.unbind("click",lt),E(b.shutdown,[c])}function B(e){function t(e){return e}var n,r,i=e.options.transform||t,s=e.options.inverseTransform;e.direction=="x"?(n=e.scale=g/Math.abs(i(e.max)-i(e.min)),r=Math.min(i(e.max),i(e.min))):(n=e.scale=y/Math.abs(i(e.max)-i(e.min)),n=-n,r=Math.max(i(e.max),i(e.min))),i==t?e.p2c=function(e){return(e-r)*n}:e.p2c=function(e){return(i(e)-r)*n},s?e.c2p=function(e){return s(r+e/n)}:e.c2p=function(e){return r+e/n}}function j(e){var t=e.options,n=e.ticks||[],r=t.labelWidth||0,i=t.labelHeight||0,s=r||e.direction=="x"?Math.floor(f.width/(n.length||1)):null;legacyStyles=e.direction+"Axis "+e.direction+e.n+"Axis",layer="flot-"+e.direction+"-axis flot-"+e.direction+e.n+"-axis "+legacyStyles,font=t.font||"flot-tick-label tickLabel";for(var o=0;o<n.length;++o){var u=n[o];if(!u.label)continue;var a=f.getTextInfo(layer,u.label,font,null,s);r=Math.max(r,a.width),i=Math.max(i,a.height)}e.labelWidth=t.labelWidth||r,e.labelHeight=t.labelHeight||i}function F(t){var n=t.labelWidth,r=t.labelHeight,i=t.options.position,s=t.options.tickLength,o=a.grid.axisMargin,u=a.grid.labelMargin,l=t.direction=="x"?d:v,c,h,p=e.grep(l,function(e){return e&&e.options.position==i&&e.reserveSpace});e.inArray(t,p)==p.length-1&&(o=0);if(s==null){var g=e.grep(l,function(e){return e&&e.reserveSpace});h=e.inArray(t,g)==0,h?s="full":s=5}isNaN(+s)||(u+=+s),t.direction=="x"?(r+=u,i=="bottom"?(m.bottom+=r+o,t.box={top:f.height-m.bottom,height:r}):(t.box={top:m.top+o,height:r},m.top+=r+o)):(n+=u,i=="left"?(t.box={left:m.left+o,width:n},m.left+=n+o):(m.right+=n+o,t.box={left:f.width-m.right,width:n})),t.position=i,t.tickLength=s,t.box.padding=u,t.innermost=h}function I(e){e.direction=="x"?(e.box.left=m.left-e.labelWidth/2,e.box.width=f.width-m.left-m.right+e.labelWidth):(e.box.top=m.top-e.labelHeight/2,e.box.height=f.height-m.bottom-m.top+e.labelHeight)}function q(){var t=a.grid.minBorderMargin,n={x:0,y:0},r,i;if(t==null){t=0;for(r=0;r<u.length;++r)t=Math.max(t,2*(u[r].points.radius+u[r].points.lineWidth/2))}n.x=n.y=Math.ceil(t),e.each(k(),function(e,t){var r=t.direction;t.reserveSpace&&(n[r]=Math.ceil(Math.max(n[r],(r=="x"?t.labelWidth:t.labelHeight)/2)))}),m.left=Math.max(n.x,m.left),m.right=Math.max(n.x,m.right),m.top=Math.max(n.y,m.top),m.bottom=Math.max(n.y,m.bottom)}function R(){var t,n=k(),r=a.grid.show;for(var i in m){var s=a.grid.margin||0;m[i]=typeof s=="number"?s:s[i]||0}E(b.processOffset,[m]);for(var i in m)typeof a.grid.borderWidth=="object"?m[i]+=r?a.grid.borderWidth[i]:0:m[i]+=r?a.grid.borderWidth:0;e.each(n,function(e,t){t.show=t.options.show,t.show==null&&(t.show=t.used),t.reserveSpace=t.show||t.options.reserveSpace,U(t)});if(r){var o=e.grep(n,function(e){return e.reserveSpace});e.each(o,function(e,t){z(t),W(t),X(t,t.ticks),j(t)});for(t=o.length-1;t>=0;--t)F(o[t]);q(),e.each(o,function(e,t){I(t)})}g=f.width-m.left-m.right,y=f.height-m.bottom-m.top,e.each(n,function(e,t){B(t)}),r&&G(),it()}function U(e){var t=e.options,n=+(t.min!=null?t.min:e.datamin),r=+(t.max!=null?t.max:e.datamax),i=r-n;if(i==0){var s=r==0?1:.01;t.min==null&&(n-=s);if(t.max==null||t.min!=null)r+=s}else{var o=t.autoscaleMargin;o!=null&&(t.min==null&&(n-=i*o,n<0&&e.datamin!=null&&e.datamin>=0&&(n=0)),t.max==null&&(r+=i*o,r>0&&e.datamax!=null&&e.datamax<=0&&(r=0)))}e.min=n,e.max=r}function z(t){var n=t.options,r;typeof n.ticks=="number"&&n.ticks>0?r=n.ticks:r=.3*Math.sqrt(t.direction=="x"?f.width:f.height);var s=(t.max-t.min)/r,o=-Math.floor(Math.log(s)/Math.LN10),u=n.tickDecimals;u!=null&&o>u&&(o=u);var a=Math.pow(10,-o),l=s/a,c;l<1.5?c=1:l<3?(c=2,l>2.25&&(u==null||o+1<=u)&&(c=2.5,++o)):l<7.5?c=5:c=10,c*=a,n.minTickSize!=null&&c<n.minTickSize&&(c=n.minTickSize),t.delta=s,t.tickDecimals=Math.max(0,u!=null?u:o),t.tickSize=n.tickSize||c;if(n.mode=="time"&&!t.tickGenerator)throw new Error("Time mode requires the flot.time plugin.");t.tickGenerator||(t.tickGenerator=function(e){var t=[],n=i(e.min,e.tickSize),r=0,s=Number.NaN,o;do o=s,s=n+r*e.tickSize,t.push(s),++r;while(s<e.max&&s!=o);return t},t.tickFormatter=function(e,t){var n=t.tickDecimals?Math.pow(10,t.tickDecimals):1,r=""+Math.round(e*n)/n;if(t.tickDecimals!=null){var i=r.indexOf("."),s=i==-1?0:r.length-i-1;if(s<t.tickDecimals)return(s?r:r+".")+(""+n).substr(1,t.tickDecimals-s)}return r}),e.isFunction(n.tickFormatter)&&(t.tickFormatter=function(e,t){return""+n.tickFormatter(e,t)});if(n.alignTicksWithAxis!=null){var h=(t.direction=="x"?d:v)[n.alignTicksWithAxis-1];if(h&&h.used&&h!=t){var p=t.tickGenerator(t);p.length>0&&(n.min==null&&(t.min=Math.min(t.min,p[0])),n.max==null&&p.length>1&&(t.max=Math.max(t.max,p[p.length-1]))),t.tickGenerator=function(e){var t=[],n,r;for(r=0;r<h.ticks.length;++r)n=(h.ticks[r].v-h.min)/(h.max-h.min),n=e.min+n*(e.max-e.min),t.push(n);return t};if(!t.mode&&n.tickDecimals==null){var m=Math.max(0,-Math.floor(Math.log(t.delta)/Math.LN10)+1),g=t.tickGenerator(t);g.length>1&&/\..*0$/.test((g[1]-g[0]).toFixed(m))||(t.tickDecimals=m)}}}}function W(t){var n=t.options.ticks,r=[];n==null||typeof n=="number"&&n>0?r=t.tickGenerator(t):n&&(e.isFunction(n)?r=n(t):r=n);var i,s;t.ticks=[];for(i=0;i<r.length;++i){var o=null,u=r[i];typeof u=="object"?(s=+u[0],u.length>1&&(o=u[1])):s=+u,o==null&&(o=t.tickFormatter(s,t)),isNaN(s)||t.ticks.push({v:s,label:o})}}function X(e,t){e.options.autoscaleMargin&&t.length>0&&(e.options.min==null&&(e.min=Math.min(e.min,t[0].v)),e.options.max==null&&t.length>1&&(e.max=Math.max(e.max,t[t.length-1].v)))}function V(){f.clear(),E(b.drawBackground,[h]);var e=a.grid;e.show&&e.backgroundColor&&K(),e.show&&!e.aboveData&&Q();for(var t=0;t<u.length;++t)E(b.drawSeries,[h,u[t]]),Y(u[t]);E(b.draw,[h]),e.show&&e.aboveData&&Q(),f.render(),ht()}function J(e,t){var n,r,i,s,o=k();for(var u=0;u<o.length;++u){n=o[u];if(n.direction==t){s=t+n.n+"axis",!e[s]&&n.n==1&&(s=t+"axis");if(e[s]){r=e[s].from,i=e[s].to;break}}}e[s]||(n=t=="x"?d[0]:v[0],r=e[t+"1"],i=e[t+"2"]);if(r!=null&&i!=null&&r>i){var a=r;r=i,i=a}return{from:r,to:i,axis:n}}function K(){h.save(),h.translate(m.left,m.top),h.fillStyle=bt(a.grid.backgroundColor,y,0,"rgba(255, 255, 255, 0)"),h.fillRect(0,0,g,y),h.restore()}function Q(){var t,n,r,i;h.save(),h.translate(m.left,m.top);var s=a.grid.markings;if(s){e.isFunction(s)&&(n=w.getAxes(),n.xmin=n.xaxis.min,n.xmax=n.xaxis.max,n.ymin=n.yaxis.min,n.ymax=n.yaxis.max,s=s(n));for(t=0;t<s.length;++t){var o=s[t],u=J(o,"x"),f=J(o,"y");u.from==null&&(u.from=u.axis.min),u.to==null&&(u.to=u.axis.max),f.from==null&&(f.from=f.axis.min),f.to==null&&(f.to=f.axis.max);if(u.to<u.axis.min||u.from>u.axis.max||f.to<f.axis.min||f.from>f.axis.max)continue;u.from=Math.max(u.from,u.axis.min),u.to=Math.min(u.to,u.axis.max),f.from=Math.max(f.from,f.axis.min),f.to=Math.min(f.to,f.axis.max);if(u.from==u.to&&f.from==f.to)continue;u.from=u.axis.p2c(u.from),u.to=u.axis.p2c(u.to),f.from=f.axis.p2c(f.from),f.to=f.axis.p2c(f.to),u.from==u.to||f.from==f.to?(h.beginPath(),h.strokeStyle=o.color||a.grid.markingsColor,h.lineWidth=o.lineWidth||a.grid.markingsLineWidth,h.moveTo(u.from,f.from),h.lineTo(u.to,f.to),h.stroke()):(h.fillStyle=o.color||a.grid.markingsColor,h.fillRect(u.from,f.to,u.to-u.from,f.from-f.to))}}n=k(),r=a.grid.borderWidth;for(var l=0;l<n.length;++l){var c=n[l],p=c.box,d=c.tickLength,v,b,E,S;if(!c.show||c.ticks.length==0)continue;h.lineWidth=1,c.direction=="x"?(v=0,d=="full"?b=c.position=="top"?0:y:b=p.top-m.top+(c.position=="top"?p.height:0)):(b=0,d=="full"?v=c.position=="left"?0:g:v=p.left-m.left+(c.position=="left"?p.width:0)),c.innermost||(h.strokeStyle=c.options.color,h.beginPath(),E=S=0,c.direction=="x"?E=g+1:S=y+1,h.lineWidth==1&&(c.direction=="x"?b=Math.floor(b)+.5:v=Math.floor(v)+.5),h.moveTo(v,b),h.lineTo(v+E,b+S),h.stroke()),h.strokeStyle=c.options.tickColor,h.beginPath();for(t=0;t<c.ticks.length;++t){var x=c.ticks[t].v;E=S=0;if(isNaN(x)||x<c.min||x>c.max||d=="full"&&(typeof r=="object"&&r[c.position]>0||r>0)&&(x==c.min||x==c.max))continue;c.direction=="x"?(v=c.p2c(x),S=d=="full"?-y:d,c.position=="top"&&(S=-S)):(b=c.p2c(x),E=d=="full"?-g:d,c.position=="left"&&(E=-E)),h.lineWidth==1&&(c.direction=="x"?v=Math.floor(v)+.5:b=Math.floor(b)+.5),h.moveTo(v,b),h.lineTo(v+E,b+S)}h.stroke()}r&&(i=a.grid.borderColor,typeof r=="object"||typeof i=="object"?(typeof r!="object"&&(r={top:r,right:r,bottom:r,left:r}),typeof i!="object"&&(i={top:i,right:i,bottom:i,left:i}),r.top>0&&(h.strokeStyle=i.top,h.lineWidth=r.top,h.beginPath(),h.moveTo(0-r.left,0-r.top/2),h.lineTo(g,0-r.top/2),h.stroke()),r.right>0&&(h.strokeStyle=i.right,h.lineWidth=r.right,h.beginPath(),h.moveTo(g+r.right/2,0-r.top),h.lineTo(g+r.right/2,y),h.stroke()),r.bottom>0&&(h.strokeStyle=i.bottom,h.lineWidth=r.bottom,h.beginPath(),h.moveTo(g+r.right,y+r.bottom/2),h.lineTo(0,y+r.bottom/2),h.stroke()),r.left>0&&(h.strokeStyle=i.left,h.lineWidth=r.left,h.beginPath(),h.moveTo(0-r.left/2,y+r.bottom),h.lineTo(0-r.left/2,0),h.stroke())):(h.lineWidth=r,h.strokeStyle=a.grid.borderColor,h.strokeRect(-r/2,-r/2,g+r,y+r))),h.restore()}function G(){e.each(k(),function(e,t){if(!t.show||t.ticks.length==0)return;var n=t.box,r=t.direction+"Axis "+t.direction+t.n+"Axis",i="flot-"+t.direction+"-axis flot-"+t.direction+t.n+"-axis "+r,s=t.options.font||"flot-tick-label tickLabel",o,u,a,l,c;f.removeText(i);for(var h=0;h<t.ticks.length;++h){o=t.ticks[h];if(!o.label||o.v<t.min||o.v>t.max)continue;t.direction=="x"?(l="center",u=m.left+t.p2c(o.v),t.position=="bottom"?a=n.top+n.padding:(a=n.top+n.height-n.padding,c="bottom")):(c="middle",a=m.top+t.p2c(o.v),t.position=="left"?(u=n.left+n.width-n.padding,l="right"):u=n.left+n.padding),f.addText(i,u,a,o.label,s,null,null,l,c)}})}function Y(e){e.lines.show&&Z(e),e.bars.show&&nt(e),e.points.show&&et(e)}function Z(e){function t(e,t,n,r,i){var s=e.points,o=e.pointsize,u=null,a=null;h.beginPath();for(var f=o;f<s.length;f+=o){var l=s[f-o],c=s[f-o+1],p=s[f],d=s[f+1];if(l==null||p==null)continue;if(c<=d&&c<i.min){if(d<i.min)continue;l=(i.min-c)/(d-c)*(p-l)+l,c=i.min}else if(d<=c&&d<i.min){if(c<i.min)continue;p=(i.min-c)/(d-c)*(p-l)+l,d=i.min}if(c>=d&&c>i.max){if(d>i.max)continue;l=(i.max-c)/(d-c)*(p-l)+l,c=i.max}else if(d>=c&&d>i.max){if(c>i.max)continue;p=(i.max-c)/(d-c)*(p-l)+l,d=i.max}if(l<=p&&l<r.min){if(p<r.min)continue;c=(r.min-l)/(p-l)*(d-c)+c,l=r.min}else if(p<=l&&p<r.min){if(l<r.min)continue;d=(r.min-l)/(p-l)*(d-c)+c,p=r.min}if(l>=p&&l>r.max){if(p>r.max)continue;c=(r.max-l)/(p-l)*(d-c)+c,l=r.max}else if(p>=l&&p>r.max){if(l>r.max)continue;d=(r.max-l)/(p-l)*(d-c)+c,p=r.max}(l!=u||c!=a)&&h.moveTo(r.p2c(l)+t,i.p2c(c)+n),u=p,a=d,h.lineTo(r.p2c(p)+t,i.p2c(d)+n)}h.stroke()}function n(e,t,n){var r=e.points,i=e.pointsize,s=Math.min(Math.max(0,n.min),n.max),o=0,u,a=!1,f=1,l=0,c=0;for(;;){if(i>0&&o>r.length+i)break;o+=i;var p=r[o-i],d=r[o-i+f],v=r[o],m=r[o+f];if(a){if(i>0&&p!=null&&v==null){c=o,i=-i,f=2;continue}if(i<0&&o==l+i){h.fill(),a=!1,i=-i,f=1,o=l=c+i;continue}}if(p==null||v==null)continue;if(p<=v&&p<t.min){if(v<t.min)continue;d=(t.min-p)/(v-p)*(m-d)+d,p=t.min}else if(v<=p&&v<t.min){if(p<t.min)continue;m=(t.min-p)/(v-p)*(m-d)+d,v=t.min}if(p>=v&&p>t.max){if(v>t.max)continue;d=(t.max-p)/(v-p)*(m-d)+d,p=t.max}else if(v>=p&&v>t.max){if(p>t.max)continue;m=(t.max-p)/(v-p)*(m-d)+d,v=t.max}a||(h.beginPath(),h.moveTo(t.p2c(p),n.p2c(s)),a=!0);if(d>=n.max&&m>=n.max){h.lineTo(t.p2c(p),n.p2c(n.max)),h.lineTo(t.p2c(v),n.p2c(n.max));continue}if(d<=n.min&&m<=n.min){h.lineTo(t.p2c(p),n.p2c(n.min)),h.lineTo(t.p2c(v),n.p2c(n.min));continue}var g=p,y=v;d<=m&&d<n.min&&m>=n.min?(p=(n.min-d)/(m-d)*(v-p)+p,d=n.min):m<=d&&m<n.min&&d>=n.min&&(v=(n.min-d)/(m-d)*(v-p)+p,m=n.min),d>=m&&d>n.max&&m<=n.max?(p=(n.max-d)/(m-d)*(v-p)+p,d=n.max):m>=d&&m>n.max&&d<=n.max&&(v=(n.max-d)/(m-d)*(v-p)+p,m=n.max),p!=g&&h.lineTo(t.p2c(g),n.p2c(d)),h.lineTo(t.p2c(p),n.p2c(d)),h.lineTo(t.p2c(v),n.p2c(m)),v!=y&&(h.lineTo(t.p2c(v),n.p2c(m)),h.lineTo(t.p2c(y),n.p2c(m)))}}h.save(),h.translate(m.left,m.top),h.lineJoin="round";var r=e.lines.lineWidth,i=e.shadowSize;if(r>0&&i>0){h.lineWidth=i,h.strokeStyle="rgba(0,0,0,0.1)";var s=Math.PI/18;t(e.datapoints,Math.sin(s)*(r/2+i/2),Math.cos(s)*(r/2+i/2),e.xaxis,e.yaxis),h.lineWidth=i/2,t(e.datapoints,Math.sin(s)*(r/2+i/4),Math.cos(s)*(r/2+i/4),e.xaxis,e.yaxis)}h.lineWidth=r,h.strokeStyle=e.color;var o=rt(e.lines,e.color,0,y);o&&(h.fillStyle=o,n(e.datapoints,e.xaxis,e.yaxis)),r>0&&t(e.datapoints,0,0,e.xaxis,e.yaxis),h.restore()}function et(e){function t(e,t,n,r,i,s,o,u){var a=e.points,f=e.pointsize;for(var l=0;l<a.length;l+=f){var c=a[l],p=a[l+1];if(c==null||c<s.min||c>s.max||p<o.min||p>o.max)continue;h.beginPath(),c=s.p2c(c),p=o.p2c(p)+r,u=="circle"?h.arc(c,p,t,0,i?Math.PI:Math.PI*2,!1):u(h,c,p,t,i),h.closePath(),n&&(h.fillStyle=n,h.fill()),h.stroke()}}h.save(),h.translate(m.left,m.top);var n=e.points.lineWidth,r=e.shadowSize,i=e.points.radius,s=e.points.symbol;n==0&&(n=1e-4);if(n>0&&r>0){var o=r/2;h.lineWidth=o,h.strokeStyle="rgba(0,0,0,0.1)",t(e.datapoints,i,null,o+o/2,!0,e.xaxis,e.yaxis,s),h.strokeStyle="rgba(0,0,0,0.2)",t(e.datapoints,i,null,o/2,!0,e.xaxis,e.yaxis,s)}h.lineWidth=n,h.strokeStyle=e.color,t(e.datapoints,i,rt(e.points,e.color),0,!1,e.xaxis,e.yaxis,s),h.restore()}function tt(e,t,n,r,i,s,o,u,a,f,l,c){var h,p,d,v,m,g,y,b,w;l?(b=g=y=!0,m=!1,h=n,p=e,v=t+r,d=t+i,p<h&&(w=p,p=h,h=w,m=!0,g=!1)):(m=g=y=!0,b=!1,h=e+r,p=e+i,d=n,v=t,v<d&&(w=v,v=d,d=w,b=!0,y=!1));if(p<u.min||h>u.max||v<a.min||d>a.max)return;h<u.min&&(h=u.min,m=!1),p>u.max&&(p=u.max,g=!1),d<a.min&&(d=a.min,b=!1),v>a.max&&(v=a.max,y=!1),h=u.p2c(h),d=a.p2c(d),p=u.p2c(p),v=a.p2c(v),o&&(f.beginPath(),f.moveTo(h,d),f.lineTo(h,v),f.lineTo(p,v),f.lineTo(p,d),f.fillStyle=o(d,v),f.fill()),c>0&&(m||g||y||b)&&(f.beginPath(),f.moveTo(h,d+s),m?f.lineTo(h,v+s):f.moveTo(h,v+s),y?f.lineTo(p,v+s):f.moveTo(p,v+s),g?f.lineTo(p,d+s):f.moveTo(p,d+s),b?f.lineTo(h,d+s):f.moveTo(h,d+s),f.stroke())}function nt(e){function t(t,n,r,i,s,o,u){var a=t.points,f=t.pointsize;for(var l=0;l<a.length;l+=f){if(a[l]==null)continue;tt(a[l],a[l+1],a[l+2],n,r,i,s,o,u,h,e.bars.horizontal,e.bars.lineWidth)}}h.save(),h.translate(m.left,m.top),h.lineWidth=e.bars.lineWidth,h.strokeStyle=e.color;var n;switch(e.bars.align){case"left":n=0;break;case"right":n=-e.bars.barWidth;break;case"center":n=-e.bars.barWidth/2;break;default:throw new Error("Invalid bar alignment: "+e.bars.align)}var r=e.bars.fill?function(t,n){return rt(e.bars,e.color,t,n)}:null;t(e.datapoints,n,n+e.bars.barWidth,0,r,e.xaxis,e.yaxis),h.restore()}function rt(t,n,r,i){var s=t.fill;if(!s)return null;if(t.fillColor)return bt(t.fillColor,r,i,n);var o=e.color.parse(n);return o.a=typeof s=="number"?s:.4,o.normalize(),o.toString()}function it(){t.find(".legend").remove();if(!a.legend.show)return;var n=[],r=[],i=!1,s=a.legend.labelFormatter,o,f;for(var l=0;l<u.length;++l)o=u[l],o.label&&(f=s?s(o.label,o):o.label,f&&r.push({label:f,color:o.color}));if(a.legend.sorted)if(e.isFunction(a.legend.sorted))r.sort(a.legend.sorted);else if(a.legend.sorted=="reverse")r.reverse();else{var c=a.legend.sorted!="descending";r.sort(function(e,t){return e.label==t.label?0:e.label<t.label!=c?1:-1})}for(var l=0;l<r.length;++l){var h=r[l];l%a.legend.noColumns==0&&(i&&n.push("</tr>"),n.push("<tr>"),i=!0),n.push('<td class="legendColorBox"><div style="border:1px solid '+a.legend.labelBoxBorderColor+';padding:1px"><div style="width:4px;height:0;border:5px solid '+h.color+';overflow:hidden"></div></div></td>'+'<td class="legendLabel">'+h.label+"</td>")}i&&n.push("</tr>");if(n.length==0)return;var p='<table style="font-size:smaller;color:'+a.grid.color+'">'+n.join("")+"</table>";if(a.legend.container!=null)e(a.legend.container).html(p);else{var d="",v=a.legend.position,g=a.legend.margin;g[0]==null&&(g=[g,g]),v.charAt(0)=="n"?d+="top:"+(g[1]+m.top)+"px;":v.charAt(0)=="s"&&(d+="bottom:"+(g[1]+m.bottom)+"px;"),v.charAt(1)=="e"?d+="right:"+(g[0]+m.right)+"px;":v.charAt(1)=="w"&&(d+="left:"+(g[0]+m.left)+"px;");var y=e('<div class="legend">'+p.replace('style="','style="position:absolute;'+d+";")+"</div>").appendTo(t);if(a.legend.backgroundOpacity!=0){var b=a.legend.backgroundColor;b==null&&(b=a.grid.backgroundColor,b&&typeof b=="string"?b=e.color.parse(b):b=e.color.extract(y,"background-color"),b.a=1,b=b.toString());var w=y.children();e('<div style="position:absolute;width:'+w.width()+"px;height:"+w.height()+"px;"+d+"background-color:"+b+';"> </div>').prependTo(y).css("opacity",a.legend.backgroundOpacity)}}}function ut(e,t,n){var r=a.grid.mouseActiveRadius,i=r*r+1,s=null,o=!1,f,l,c;for(f=u.length-1;f>=0;--f){if(!n(u[f]))continue;var h=u[f],p=h.xaxis,d=h.yaxis,v=h.datapoints.points,m=p.c2p(e),g=d.c2p(t),y=r/p.scale,b=r/d.scale;c=h.datapoints.pointsize,p.options.inverseTransform&&(y=Number.MAX_VALUE),d.options.inverseTransform&&(b=Number.MAX_VALUE);if(h.lines.show||h.points.show)for(l=0;l<v.length;l+=c){var w=v[l],E=v[l+1];if(w==null)continue;if(w-m>y||w-m<-y||E-g>b||E-g<-b)continue;var S=Math.abs(p.p2c(w)-e),x=Math.abs(d.p2c(E)-t),T=S*S+x*x;T<i&&(i=T,s=[f,l/c])}if(h.bars.show&&!s){var N=h.bars.align=="left"?0:-h.bars.barWidth/2,C=N+h.bars.barWidth;for(l=0;l<v.length;l+=c){var w=v[l],E=v[l+1],k=v[l+2];if(w==null)continue;if(u[f].bars.horizontal?m<=Math.max(k,w)&&m>=Math.min(k,w)&&g>=E+N&&g<=E+C:m>=w+N&&m<=w+C&&g>=Math.min(k,E)&&g<=Math.max(k,E))s=[f,l/c]}}}return s?(f=s[0],l=s[1],c=u[f].datapoints.pointsize,{datapoint:u[f].datapoints.points.slice(l*c,(l+1)*c),dataIndex:l,series:u[f],seriesIndex:f}):null}function at(e){a.grid.hoverable&&ct("plothover",e,function(e){return e["hoverable"]!=0})}function ft(e){a.grid.hoverable&&ct("plothover",e,function(e){return!1})}function lt(e){ct("plotclick",e,function(e){return e["clickable"]!=0})}function ct(e,n,r){var i=c.offset(),s=n.pageX-i.left-m.left,o=n.pageY-i.top-m.top,u=L({left:s,top:o});u.pageX=n.pageX,u.pageY=n.pageY;var f=ut(s,o,r);f&&(f.pageX=parseInt(f.series.xaxis.p2c(f.datapoint[0])+i.left+m.left,10),f.pageY=parseInt(f.series.yaxis.p2c(f.datapoint[1])+i.top+m.top,10));if(a.grid.autoHighlight){for(var l=0;l<st.length;++l){var h=st[l];h.auto==e&&(!f||h.series!=f.series||h.point[0]!=f.datapoint[0]||h.point[1]!=f.datapoint[1])&&vt(h.series,h.point)}f&&dt(f.series,f.datapoint,e)}t.trigger(e,[u,f])}function ht(){var e=a.interaction.redrawOverlayInterval;if(e==-1){pt();return}ot||(ot=setTimeout(pt,e))}function pt(){ot=null,p.save(),l.clear(),p.translate(m.left,m.top);var e,t;for(e=0;e<st.length;++e)t=st[e],t.series.bars.show?yt(t.series,t.point):gt(t.series,t.point);p.restore(),E(b.drawOverlay,[p])}function dt(e,t,n){typeof e=="number"&&(e=u[e]);if(typeof t=="number"){var r=e.datapoints.pointsize;t=e.datapoints.points.slice(r*t,r*(t+1))}var i=mt(e,t);i==-1?(st.push({series:e,point:t,auto:n}),ht()):n||(st[i].auto=!1)}function vt(e,t){if(e==null&&t==null){st=[],ht();return}typeof e=="number"&&(e=u[e]);if(typeof t=="number"){var n=e.datapoints.pointsize;t=e.datapoints.points.slice(n*t,n*(t+1))}var r=mt(e,t);r!=-1&&(st.splice(r,1),ht())}function mt(e,t){for(var n=0;n<st.length;++n){var r=st[n];if(r.series==e&&r.point[0]==t[0]&&r.point[1]==t[1])return n}return-1}function gt(t,n){var r=n[0],i=n[1],s=t.xaxis,o=t.yaxis,u=typeof t.highlightColor=="string"?t.highlightColor:e.color.parse(t.color).scale("a",.5).toString();if(r<s.min||r>s.max||i<o.min||i>o.max)return;var a=t.points.radius+t.points.lineWidth/2;p.lineWidth=a,p.strokeStyle=u;var f=1.5*a;r=s.p2c(r),i=o.p2c(i),p.beginPath(),t.points.symbol=="circle"?p.arc(r,i,f,0,2*Math.PI,!1):t.points.symbol(p,r,i,f,!1),p.closePath(),p.stroke()}function yt(t,n){var r=typeof t.highlightColor=="string"?t.highlightColor:e.color.parse(t.color).scale("a",.5).toString(),i=r,s=t.bars.align=="left"?0:-t.bars.barWidth/2;p.lineWidth=t.bars.lineWidth,p.strokeStyle=r,tt(n[0],n[1],n[2]||0,s,s+t.bars.barWidth,0,function(){return i},t.xaxis,t.yaxis,p,t.bars.horizontal,t.bars.lineWidth)}function bt(t,n,r,i){if(typeof t=="string")return t;var s=h.createLinearGradient(0,r,0,n);for(var o=0,u=t.colors.length;o<u;++o){var a=t.colors[o];if(typeof a!="string"){var f=e.color.parse(i);a.brightness!=null&&(f=f.scale("rgb",a.brightness)),a.opacity!=null&&(f.a*=a.opacity),a=f.toString()}s.addColorStop(o/(u-1),a)}return s}var u=[],a={colors:["#edc240","#afd8f8","#cb4b4b","#4da74d","#9440ed"],legend:{show:!0,noColumns:1,labelFormatter:null,labelBoxBorderColor:"#ccc",container:null,position:"ne",margin:5,backgroundColor:null,backgroundOpacity:.85,sorted:null},xaxis:{show:null,position:"bottom",mode:null,font:null,color:null,tickColor:null,transform:null,inverseTransform:null,min:null,max:null,autoscaleMargin:null,ticks:null,tickFormatter:null,labelWidth:null,labelHeight:null,reserveSpace:null,tickLength:null,alignTicksWithAxis:null,tickDecimals:null,tickSize:null,minTickSize:null},yaxis:{autoscaleMargin:.02,position:"left"},xaxes:[],yaxes:[],series:{points:{show:!1,radius:3,lineWidth:2,fill:!0,fillColor:"#ffffff",symbol:"circle"},lines:{lineWidth:2,fill:!1,fillColor:null,steps:!1},bars:{show:!1,lineWidth:2,barWidth:1,fill:!0,fillColor:null,align:"left",horizontal:!1,zero:!0},shadowSize:3,highlightColor:null},grid:{show:!0,aboveData:!1,color:"#545454",backgroundColor:null,borderColor:null,tickColor:null,margin:0,labelMargin:5,axisMargin:8,borderWidth:2,minBorderMargin:null,markings:null,markingsColor:"#f4f4f4",markingsLineWidth:2,clickable:!1,hoverable:!1,autoHighlight:!0,mouseActiveRadius:10},interaction:{redrawOverlayInterval:1e3/60},hooks:{}},f=null,l=null,c=null,h=null,p=null,d=[],v=[],m={left:0,right:0,top:0,bottom
:0},g=0,y=0,b={processOptions:[],processRawData:[],processDatapoints:[],processOffset:[],drawBackground:[],drawSeries:[],draw:[],bindEvents:[],drawOverlay:[],shutdown:[]},w=this;w.setData=T,w.setupGrid=R,w.draw=V,w.getPlaceholder=function(){return t},w.getCanvas=function(){return f.element},w.getPlotOffset=function(){return m},w.width=function(){return g},w.height=function(){return y},w.offset=function(){var e=c.offset();return e.left+=m.left,e.top+=m.top,e},w.getData=function(){return u},w.getAxes=function(){var t={},n;return e.each(d.concat(v),function(e,n){n&&(t[n.direction+(n.n!=1?n.n:"")+"axis"]=n)}),t},w.getXAxes=function(){return d},w.getYAxes=function(){return v},w.c2p=L,w.p2c=A,w.getOptions=function(){return a},w.highlight=dt,w.unhighlight=vt,w.triggerRedrawOverlay=ht,w.pointOffset=function(e){return{left:parseInt(d[C(e,"x")-1].p2c(+e.x)+m.left,10),top:parseInt(v[C(e,"y")-1].p2c(+e.y)+m.top,10)}},w.shutdown=H,w.resize=function(){var e=t.width(),n=t.height();f.resize(e,n),l.resize(e,n)},w.hooks=b,S(w),x(s),D(),T(r),R(),V(),P();var st=[],ot=null}function i(e,t){return t*Math.floor(e/t)}var t=Object.prototype.hasOwnProperty;n.prototype.resize=function(e,t){if(e<=0||t<=0)throw new Error("Invalid dimensions for plot, width = "+e+", height = "+t);var n=this.element,r=this.context,i=this.pixelRatio;this.width!=e&&(n.width=e*i,n.style.width=e+"px",this.width=e),this.height!=t&&(n.height=t*i,n.style.height=t+"px",this.height=t),r.restore(),r.save(),r.scale(i,i)},n.prototype.clear=function(){this.context.clearRect(0,0,this.width,this.height)},n.prototype.render=function(){var e=this._textCache;for(var n in e)if(t.call(e,n)){var r=this.getTextLayer(n),i=e[n];r.hide();for(var s in i)if(t.call(i,s)){var o=i[s];for(var u in o)if(t.call(o,u)){var a=o[u].positions;for(var f=0,l;l=a[f];f++)l.active?l.rendered||(r.append(l.element),l.rendered=!0):(a.splice(f--,1),l.rendered&&l.element.detach());a.length==0&&delete o[u]}}r.show()}},n.prototype.getTextLayer=function(t){var n=this.text[t];return n==null&&(this.textContainer==null&&(this.textContainer=e("<div class='flot-text'></div>").css({position:"absolute",top:0,left:0,bottom:0,right:0,"font-size":"smaller",color:"#545454"}).insertAfter(this.element)),n=this.text[t]=e("<div></div>").addClass(t).css({position:"absolute",top:0,left:0,bottom:0,right:0}).appendTo(this.textContainer)),n},n.prototype.getTextInfo=function(t,n,r,i,s){var o,u,a,f;n=""+n,typeof r=="object"?o=r.style+" "+r.variant+" "+r.weight+" "+r.size+"px/"+r.lineHeight+"px "+r.family:o=r,u=this._textCache[t],u==null&&(u=this._textCache[t]={}),a=u[o],a==null&&(a=u[o]={}),f=a[n];if(f==null){var l=e("<div></div>").html(n).css({position:"absolute","max-width":s,top:-9999}).appendTo(this.getTextLayer(t));typeof r=="object"?l.css({font:o,color:r.color}):typeof r=="string"&&l.addClass(r),f=a[n]={width:l.outerWidth(!0),height:l.outerHeight(!0),element:l,positions:[]},l.detach()}return f},n.prototype.addText=function(e,t,n,r,i,s,o,u,a){var f=this.getTextInfo(e,r,i,s,o),l=f.positions;u=="center"?t-=f.width/2:u=="right"&&(t-=f.width),a=="middle"?n-=f.height/2:a=="bottom"&&(n-=f.height);for(var c=0,h;h=l[c];c++)if(h.x==t&&h.y==n){h.active=!0;return}h={active:!0,rendered:!1,element:l.length?f.element.clone():f.element,x:t,y:n},l.push(h),h.element.css({top:Math.round(n),left:Math.round(t),"text-align":u})},n.prototype.removeText=function(e,n,r,i,s,o){if(i==null){var u=this._textCache[e];if(u!=null)for(var a in u)if(t.call(u,a)){var f=u[a];for(var l in f)if(t.call(f,l)){var c=f[l].positions;for(var h=0,p;p=c[h];h++)p.active=!1}}}else{var c=this.getTextInfo(e,i,s,o).positions;for(var h=0,p;p=c[h];h++)p.x==n&&p.y==r&&(p.active=!1)}},e.plot=function(t,n,i){var s=new r(e(t),n,i,e.plot.plugins);return s},e.plot.version="0.8.1",e.plot.plugins=[],e.fn.plot=function(t,n){return this.each(function(){e.plot(this,t,n)})}}(jQuery);
(function($){$.extend({tablesorter:new
function(){var parsers=[],widgets=[];this.defaults={cssHeader:"header",cssAsc:"headerSortUp",cssDesc:"headerSortDown",cssChildRow:"expand-child",sortInitialOrder:"asc",sortMultiSortKey:"shiftKey",sortForce:null,sortAppend:null,sortLocaleCompare:true,textExtraction:"simple",parsers:{},widgets:[],widgetZebra:{css:["even","odd"]},headers:{},widthFixed:false,cancelSelection:true,sortList:[],headerList:[],dateFormat:"us",decimal:'/\.|\,/g',onRenderHeader:null,selectorHeaders:'thead th',debug:false};function benchmark(s,d){log(s+","+(new Date().getTime()-d.getTime())+"ms");}this.benchmark=benchmark;function log(s){if(typeof console!="undefined"&&typeof console.debug!="undefined"){console.log(s);}else{alert(s);}}function buildParserCache(table,$headers){if(table.config.debug){var parsersDebug="";}if(table.tBodies.length==0)return;var rows=table.tBodies[0].rows;if(rows[0]){var list=[],cells=rows[0].cells,l=cells.length;for(var i=0;i<l;i++){var p=false;if($.metadata&&($($headers[i]).metadata()&&$($headers[i]).metadata().sorter)){p=getParserById($($headers[i]).metadata().sorter);}else if((table.config.headers[i]&&table.config.headers[i].sorter)){p=getParserById(table.config.headers[i].sorter);}if(!p){p=detectParserForColumn(table,rows,-1,i);}if(table.config.debug){parsersDebug+="column:"+i+" parser:"+p.id+"\n";}list.push(p);}}if(table.config.debug){log(parsersDebug);}return list;};function detectParserForColumn(table,rows,rowIndex,cellIndex){var l=parsers.length,node=false,nodeValue=false,keepLooking=true;while(nodeValue==''&&keepLooking){rowIndex++;if(rows[rowIndex]){node=getNodeFromRowAndCellIndex(rows,rowIndex,cellIndex);nodeValue=trimAndGetNodeText(table.config,node);if(table.config.debug){log('Checking if value was empty on row:'+rowIndex);}}else{keepLooking=false;}}for(var i=1;i<l;i++){if(parsers[i].is(nodeValue,table,node)){return parsers[i];}}return parsers[0];}function getNodeFromRowAndCellIndex(rows,rowIndex,cellIndex){return rows[rowIndex].cells[cellIndex];}function trimAndGetNodeText(config,node){return $.trim(getElementText(config,node));}function getParserById(name){var l=parsers.length;for(var i=0;i<l;i++){if(parsers[i].id.toLowerCase()==name.toLowerCase()){return parsers[i];}}return false;}function buildCache(table){if(table.config.debug){var cacheTime=new Date();}var totalRows=(table.tBodies[0]&&table.tBodies[0].rows.length)||0,totalCells=(table.tBodies[0].rows[0]&&table.tBodies[0].rows[0].cells.length)||0,parsers=table.config.parsers,cache={row:[],normalized:[]};for(var i=0;i<totalRows;++i){var c=$(table.tBodies[0].rows[i]),cols=[];if(c.hasClass(table.config.cssChildRow)){cache.row[cache.row.length-1]=cache.row[cache.row.length-1].add(c);continue;}cache.row.push(c);for(var j=0;j<totalCells;++j){cols.push(parsers[j].format(getElementText(table.config,c[0].cells[j]),table,c[0].cells[j]));}cols.push(cache.normalized.length);cache.normalized.push(cols);cols=null;};if(table.config.debug){benchmark("Building cache for "+totalRows+" rows:",cacheTime);}return cache;};function getElementText(config,node){var text="";if(!node)return"";if(!config.supportsTextContent)config.supportsTextContent=node.textContent||false;if(config.textExtraction=="simple"){if(config.supportsTextContent){text=node.textContent;}else{if(node.childNodes[0]&&node.childNodes[0].hasChildNodes()){text=node.childNodes[0].innerHTML;}else{text=node.innerHTML;}}}else{if(typeof(config.textExtraction)=="function"){text=config.textExtraction(node);}else{text=$(node).text();}}return text;}function appendToTable(table,cache){if(table.config.debug){var appendTime=new Date()}var c=cache,r=c.row,n=c.normalized,totalRows=n.length,checkCell=(n[0].length-1),tableBody=$(table.tBodies[0]),rows=[];for(var i=0;i<totalRows;i++){var pos=n[i][checkCell];rows.push(r[pos]);if(!table.config.appender){var l=r[pos].length;for(var j=0;j<l;j++){tableBody[0].appendChild(r[pos][j]);}}}if(table.config.appender){table.config.appender(table,rows);}rows=null;if(table.config.debug){benchmark("Rebuilt table:",appendTime);}applyWidget(table);setTimeout(function(){$(table).trigger("sortEnd");},0);};function buildHeaders(table){if(table.config.debug){var time=new Date();}var meta=($.metadata)?true:false;var header_index=computeTableHeaderCellIndexes(table);$tableHeaders=$(table.config.selectorHeaders,table).each(function(index){this.column=header_index[this.parentNode.rowIndex+"-"+this.cellIndex];this.order=formatSortingOrder(table.config.sortInitialOrder);this.count=this.order;if(checkHeaderMetadata(this)||checkHeaderOptions(table,index))this.sortDisabled=true;if(checkHeaderOptionsSortingLocked(table,index))this.order=this.lockedOrder=checkHeaderOptionsSortingLocked(table,index);if(!this.sortDisabled){var $th=$(this).addClass(table.config.cssHeader);if(table.config.onRenderHeader)table.config.onRenderHeader.apply($th);}table.config.headerList[index]=this;});if(table.config.debug){benchmark("Built headers:",time);log($tableHeaders);}return $tableHeaders;};function computeTableHeaderCellIndexes(t){var matrix=[];var lookup={};var thead=t.getElementsByTagName('THEAD')[0];var trs=thead.getElementsByTagName('TR');for(var i=0;i<trs.length;i++){var cells=trs[i].cells;for(var j=0;j<cells.length;j++){var c=cells[j];var rowIndex=c.parentNode.rowIndex;var cellId=rowIndex+"-"+c.cellIndex;var rowSpan=c.rowSpan||1;var colSpan=c.colSpan||1
var firstAvailCol;if(typeof(matrix[rowIndex])=="undefined"){matrix[rowIndex]=[];}for(var k=0;k<matrix[rowIndex].length+1;k++){if(typeof(matrix[rowIndex][k])=="undefined"){firstAvailCol=k;break;}}lookup[cellId]=firstAvailCol;for(var k=rowIndex;k<rowIndex+rowSpan;k++){if(typeof(matrix[k])=="undefined"){matrix[k]=[];}var matrixrow=matrix[k];for(var l=firstAvailCol;l<firstAvailCol+colSpan;l++){matrixrow[l]="x";}}}}return lookup;}function checkCellColSpan(table,rows,row){var arr=[],r=table.tHead.rows,c=r[row].cells;for(var i=0;i<c.length;i++){var cell=c[i];if(cell.colSpan>1){arr=arr.concat(checkCellColSpan(table,headerArr,row++));}else{if(table.tHead.length==1||(cell.rowSpan>1||!r[row+1])){arr.push(cell);}}}return arr;};function checkHeaderMetadata(cell){if(($.metadata)&&($(cell).metadata().sorter===false)){return true;};return false;}function checkHeaderOptions(table,i){if((table.config.headers[i])&&(table.config.headers[i].sorter===false)){return true;};return false;}function checkHeaderOptionsSortingLocked(table,i){if((table.config.headers[i])&&(table.config.headers[i].lockedOrder))return table.config.headers[i].lockedOrder;return false;}function applyWidget(table){var c=table.config.widgets;var l=c.length;for(var i=0;i<l;i++){getWidgetById(c[i]).format(table);}}function getWidgetById(name){var l=widgets.length;for(var i=0;i<l;i++){if(widgets[i].id.toLowerCase()==name.toLowerCase()){return widgets[i];}}};function formatSortingOrder(v){if(typeof(v)!="Number"){return(v.toLowerCase()=="desc")?1:0;}else{return(v==1)?1:0;}}function isValueInArray(v,a){var l=a.length;for(var i=0;i<l;i++){if(a[i][0]==v){return true;}}return false;}function setHeadersCss(table,$headers,list,css){$headers.removeClass(css[0]).removeClass(css[1]);var h=[];$headers.each(function(offset){if(!this.sortDisabled){h[this.column]=$(this);}});var l=list.length;for(var i=0;i<l;i++){h[list[i][0]].addClass(css[list[i][1]]);}}function fixColumnWidth(table,$headers){var c=table.config;if(c.widthFixed){var colgroup=$('<colgroup>');$("tr:first td",table.tBodies[0]).each(function(){colgroup.append($('<col>').css('width',$(this).width()));});$(table).prepend(colgroup);};}function updateHeaderSortCount(table,sortList){var c=table.config,l=sortList.length;for(var i=0;i<l;i++){var s=sortList[i],o=c.headerList[s[0]];o.count=s[1];o.count++;}}function multisort(table,sortList,cache){if(table.config.debug){var sortTime=new Date();}var dynamicExp="var sortWrapper = function(a,b) {",l=sortList.length;for(var i=0;i<l;i++){var c=sortList[i][0];var order=sortList[i][1];var s=(table.config.parsers[c].type=="text")?((order==0)?makeSortFunction("text","asc",c):makeSortFunction("text","desc",c)):((order==0)?makeSortFunction("numeric","asc",c):makeSortFunction("numeric","desc",c));var e="e"+i;dynamicExp+="var "+e+" = "+s;dynamicExp+="if("+e+") { return "+e+"; } ";dynamicExp+="else { ";}var orgOrderCol=cache.normalized[0].length-1;dynamicExp+="return a["+orgOrderCol+"]-b["+orgOrderCol+"];";for(var i=0;i<l;i++){dynamicExp+="}; ";}dynamicExp+="return 0; ";dynamicExp+="}; ";if(table.config.debug){benchmark("Evaling expression:"+dynamicExp,new Date());}eval(dynamicExp);cache.normalized.sort(sortWrapper);if(table.config.debug){benchmark("Sorting on "+sortList.toString()+" and dir "+order+" time:",sortTime);}return cache;};function makeSortFunction(type,direction,index){var a="a["+index+"]",b="b["+index+"]";if(type=='text'&&direction=='asc'){return"("+a+" == "+b+" ? 0 : ("+a+" === null ? Number.POSITIVE_INFINITY : ("+b+" === null ? Number.NEGATIVE_INFINITY : ("+a+" < "+b+") ? -1 : 1 )));";}else if(type=='text'&&direction=='desc'){return"("+a+" == "+b+" ? 0 : ("+a+" === null ? Number.POSITIVE_INFINITY : ("+b+" === null ? Number.NEGATIVE_INFINITY : ("+b+" < "+a+") ? -1 : 1 )));";}else if(type=='numeric'&&direction=='asc'){return"("+a+" === null && "+b+" === null) ? 0 :("+a+" === null ? Number.POSITIVE_INFINITY : ("+b+" === null ? Number.NEGATIVE_INFINITY : "+a+" - "+b+"));";}else if(type=='numeric'&&direction=='desc'){return"("+a+" === null && "+b+" === null) ? 0 :("+a+" === null ? Number.POSITIVE_INFINITY : ("+b+" === null ? Number.NEGATIVE_INFINITY : "+b+" - "+a+"));";}};function makeSortText(i){return"((a["+i+"] < b["+i+"]) ? -1 : ((a["+i+"] > b["+i+"]) ? 1 : 0));";};function makeSortTextDesc(i){return"((b["+i+"] < a["+i+"]) ? -1 : ((b["+i+"] > a["+i+"]) ? 1 : 0));";};function makeSortNumeric(i){return"a["+i+"]-b["+i+"];";};function makeSortNumericDesc(i){return"b["+i+"]-a["+i+"];";};function sortText(a,b){if(table.config.sortLocaleCompare)return a.localeCompare(b);return((a<b)?-1:((a>b)?1:0));};function sortTextDesc(a,b){if(table.config.sortLocaleCompare)return b.localeCompare(a);return((b<a)?-1:((b>a)?1:0));};function sortNumeric(a,b){return a-b;};function sortNumericDesc(a,b){return b-a;};function getCachedSortType(parsers,i){return parsers[i].type;};this.construct=function(settings){return this.each(function(){if(!this.tHead||!this.tBodies)return;var $this,$document,$headers,cache,config,shiftDown=0,sortOrder;this.config={};config=$.extend(this.config,$.tablesorter.defaults,settings);$this=$(this);$.data(this,"tablesorter",config);$headers=buildHeaders(this);this.config.parsers=buildParserCache(this,$headers);cache=buildCache(this);var sortCSS=[config.cssDesc,config.cssAsc];fixColumnWidth(this);$headers.click(function(e){var totalRows=($this[0].tBodies[0]&&$this[0].tBodies[0].rows.length)||0;if(!this.sortDisabled&&totalRows>0){$this.trigger("sortStart");var $cell=$(this);var i=this.column;this.order=this.count++%2;if(this.lockedOrder)this.order=this.lockedOrder;if(!e[config.sortMultiSortKey]){config.sortList=[];if(config.sortForce!=null){var a=config.sortForce;for(var j=0;j<a.length;j++){if(a[j][0]!=i){config.sortList.push(a[j]);}}}config.sortList.push([i,this.order]);}else{if(isValueInArray(i,config.sortList)){for(var j=0;j<config.sortList.length;j++){var s=config.sortList[j],o=config.headerList[s[0]];if(s[0]==i){o.count=s[1];o.count++;s[1]=o.count%2;}}}else{config.sortList.push([i,this.order]);}};setTimeout(function(){setHeadersCss($this[0],$headers,config.sortList,sortCSS);appendToTable($this[0],multisort($this[0],config.sortList,cache));},1);return false;}}).mousedown(function(){if(config.cancelSelection){this.onselectstart=function(){return false};return false;}});$this.bind("update",function(){var me=this;setTimeout(function(){me.config.parsers=buildParserCache(me,$headers);cache=buildCache(me);},1);}).bind("updateCell",function(e,cell){var config=this.config;var pos=[(cell.parentNode.rowIndex-1),cell.cellIndex];cache.normalized[pos[0]][pos[1]]=config.parsers[pos[1]].format(getElementText(config,cell),cell);}).bind("sorton",function(e,list){$(this).trigger("sortStart");config.sortList=list;var sortList=config.sortList;updateHeaderSortCount(this,sortList);setHeadersCss(this,$headers,sortList,sortCSS);appendToTable(this,multisort(this,sortList,cache));}).bind("appendCache",function(){appendToTable(this,cache);}).bind("applyWidgetId",function(e,id){getWidgetById(id).format(this);}).bind("applyWidgets",function(){applyWidget(this);});if($.metadata&&($(this).metadata()&&$(this).metadata().sortlist)){config.sortList=$(this).metadata().sortlist;}if(config.sortList.length>0){$this.trigger("sorton",[config.sortList]);}applyWidget(this);});};this.addParser=function(parser){var l=parsers.length,a=true;for(var i=0;i<l;i++){if(parsers[i].id.toLowerCase()==parser.id.toLowerCase()){a=false;}}if(a){parsers.push(parser);};};this.addWidget=function(widget){widgets.push(widget);};this.formatFloat=function(s){var i=parseFloat(s);return(isNaN(i))?0:i;};this.formatInt=function(s){var i=parseInt(s);return(isNaN(i))?0:i;};this.isDigit=function(s,config){return/^[-+]?\d*$/.test($.trim(s.replace(/[,.']/g,'')));};this.clearTableBody=function(table){if($.browser.msie){function empty(){while(this.firstChild)this.removeChild(this.firstChild);}empty.apply(table.tBodies[0]);}else{table.tBodies[0].innerHTML="";}};}});$.fn.extend({tablesorter:$.tablesorter.construct});var ts=$.tablesorter;ts.addParser({id:"text",is:function(s){return true;},format:function(s){return $.trim(s.toLocaleLowerCase());},type:"text"});ts.addParser({id:"digit",is:function(s,table){var c=table.config;return $.tablesorter.isDigit(s,c);},format:function(s){return $.tablesorter.formatFloat(s);},type:"numeric"});ts.addParser({id:"currency",is:function(s){return/^[£$€?.]/.test(s);},format:function(s){return $.tablesorter.formatFloat(s.replace(new RegExp(/[£$€]/g),""));},type:"numeric"});ts.addParser({id:"ipAddress",is:function(s){return/^\d{2,3}[\.]\d{2,3}[\.]\d{2,3}[\.]\d{2,3}$/.test(s);},format:function(s){var a=s.split("."),r="",l=a.length;for(var i=0;i<l;i++){var item=a[i];if(item.length==2){r+="0"+item;}else{r+=item;}}return $.tablesorter.formatFloat(r);},type:"numeric"});ts.addParser({id:"url",is:function(s){return/^(https?|ftp|file):\/\/$/.test(s);},format:function(s){return jQuery.trim(s.replace(new RegExp(/(https?|ftp|file):\/\//),''));},type:"text"});ts.addParser({id:"isoDate",is:function(s){return/^\d{4}[\/-]\d{1,2}[\/-]\d{1,2}$/.test(s);},format:function(s){return $.tablesorter.formatFloat((s!="")?new Date(s.replace(new RegExp(/-/g),"/")).getTime():"0");},type:"numeric"});ts.addParser({id:"percent",is:function(s){return/\%$/.test($.trim(s));},format:function(s){return $.tablesorter.formatFloat(s.replace(new RegExp(/%/g),""));},type:"numeric"});ts.addParser({id:"usLongDate",is:function(s){return s.match(new RegExp(/^[A-Za-z]{3,10}\.? [0-9]{1,2}, ([0-9]{4}|'?[0-9]{2}) (([0-2]?[0-9]:[0-5][0-9])|([0-1]?[0-9]:[0-5][0-9]\s(AM|PM)))$/));},format:function(s){return $.tablesorter.formatFloat(new Date(s).getTime());},type:"numeric"});ts.addParser({id:"shortDate",is:function(s){return/\d{1,2}[\/\-]\d{1,2}[\/\-]\d{2,4}/.test(s);},format:function(s,table){var c=table.config;s=s.replace(/\-/g,"/");if(c.dateFormat=="us"){s=s.replace(/(\d{1,2})[\/\-](\d{1,2})[\/\-](\d{4})/,"$3/$1/$2");}else if(c.dateFormat=="uk"){s=s.replace(/(\d{1,2})[\/\-](\d{1,2})[\/\-](\d{4})/,"$3/$2/$1");}else if(c.dateFormat=="dd/mm/yy"||c.dateFormat=="dd-mm-yy"){s=s.replace(/(\d{1,2})[\/\-](\d{1,2})[\/\-](\d{2})/,"$1/$2/$3");}return $.tablesorter.formatFloat(new Date(s).getTime());},type:"numeric"});ts.addParser({id:"time",is:function(s){return/^(([0-2]?[0-9]:[0-5][0-9])|([0-1]?[0-9]:[0-5][0-9]\s(am|pm)))$/.test(s);},format:function(s){return $.tablesorter.formatFloat(new Date("2000/01/01 "+s).getTime());},type:"numeric"});ts.addParser({id:"metadata",is:function(s){return false;},format:function(s,table,cell){var c=table.config,p=(!c.parserMetadataName)?'sortValue':c.parserMetadataName;return $(cell).metadata()[p];},type:"numeric"});ts.addWidget({id:"zebra",format:function(table){if(table.config.debug){var time=new Date();}var $tr,row=-1,odd;$("tr:visible",table.tBodies[0]).each(function(i){$tr=$(this);if(!$tr.hasClass(table.config.cssChildRow))row++;odd=(row%2==0);$tr.removeClass(table.config.widgetZebra.css[odd?0:1]).addClass(table.config.widgetZebra.css[odd?1:0])});if(table.config.debug){$.tablesorter.benchmark("Applying Zebra widget",time);}}});})(jQuery);/*
* Copyright (C) 2012, 2013 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
var Statistics = new (function () {
this.max = function (values) {
return Math.max.apply(Math, values);
}
this.min = function (values) {
return Math.min.apply(Math, values);
}
this.sum = function (values) {
return values.reduce(function (a, b) { return a + b; }, 0);
}
this.squareSum = function (values) {
return values.reduce(function (sum, value) { return sum + value * value;}, 0);
}
// With sum and sum of squares, we can compute the sample standard deviation in O(1).
// See https://rniwa.com/2012-11-10/sample-standard-deviation-in-terms-of-sum-and-square-sum-of-samples/
this.sampleStandardDeviation = function (numberOfSamples, sum, squareSum) {
if (numberOfSamples < 2)
return 0;
return Math.sqrt(squareSum / (numberOfSamples - 1)
- sum * sum / (numberOfSamples - 1) / numberOfSamples);
}
this.supportedConfidenceLevels = function () {
var supportedLevels = [];
for (var quantile in tDistributionInverseCDF)
supportedLevels.push((1 - (1 - quantile) * 2).toFixed(2));
return supportedLevels;
}
// Computes the delta d s.t. (mean - d, mean + d) is the confidence interval with the specified confidence level in O(1).
this.confidenceIntervalDelta = function (confidenceLevel, numberOfSamples, sum, squareSum) {
var probability = (1 - (1 - confidenceLevel) / 2);
if (!(probability in tDistributionInverseCDF)) {
console.warn('We only support ' + this.supportedConfidenceLevels().map(
function (level) { return level * 100 + '%'; } ).join(', ') + ' confidence intervals.');
return NaN;
}
if (numberOfSamples - 2 < 0)
return NaN;
var cdfForProbability = tDistributionInverseCDF[probability];
var degreesOfFreedom = numberOfSamples - 1;
if (degreesOfFreedom > cdfForProbability.length) {
console.warn('We only support up to ' + cdfForProbability.length + ' degrees of freedom');
return NaN;
}
// tDistributionQuantile(degreesOfFreedom, confidenceLevel) * sampleStandardDeviation / sqrt(numberOfSamples) * S/sqrt(numberOfSamples)
var quantile = cdfForProbability[degreesOfFreedom - 1]; // The first entry is for the one degree of freedom.
return quantile * this.sampleStandardDeviation(numberOfSamples, sum, squareSum) / Math.sqrt(numberOfSamples);
}
this.confidenceInterval = function (values, probability) {
var sum = this.sum(values);
var mean = sum / values.length;
var delta = this.confidenceIntervalDelta(probability || 0.95, values.length, sum, this.squareSum(values));
return [mean - delta, mean + delta];
}
// See http://en.wikipedia.org/wiki/Student's_t-distribution#Table_of_selected_values
// This table contains one sided (a.k.a. tail) values.
var tDistributionInverseCDF = {
0.9: [
3.077684, 1.885618, 1.637744, 1.533206, 1.475884, 1.439756, 1.414924, 1.396815, 1.383029, 1.372184,
1.363430, 1.356217, 1.350171, 1.345030, 1.340606, 1.336757, 1.333379, 1.330391, 1.327728, 1.325341,
1.323188, 1.321237, 1.319460, 1.317836, 1.316345, 1.314972, 1.313703, 1.312527, 1.311434, 1.310415,
1.309464, 1.308573, 1.307737, 1.306952, 1.306212, 1.305514, 1.304854, 1.304230, 1.303639, 1.303077,
1.302543, 1.302035, 1.301552, 1.301090, 1.300649, 1.300228, 1.299825, 1.299439, 1.299069, 1.298714,
1.298373, 1.298045, 1.297730, 1.297426, 1.297134, 1.296853, 1.296581, 1.296319, 1.296066, 1.295821,
1.295585, 1.295356, 1.295134, 1.294920, 1.294712, 1.294511, 1.294315, 1.294126, 1.293942, 1.293763,
1.293589, 1.293421, 1.293256, 1.293097, 1.292941, 1.292790, 1.292643, 1.292500, 1.292360, 1.292224,
1.292091, 1.291961, 1.291835, 1.291711, 1.291591, 1.291473, 1.291358, 1.291246, 1.291136, 1.291029,
1.290924, 1.290821, 1.290721, 1.290623, 1.290527, 1.290432, 1.290340, 1.290250, 1.290161, 1.290075],
0.95: [
6.313752, 2.919986, 2.353363, 2.131847, 2.015048, 1.943180, 1.894579, 1.859548, 1.833113, 1.812461,
1.795885, 1.782288, 1.770933, 1.761310, 1.753050, 1.745884, 1.739607, 1.734064, 1.729133, 1.724718,
1.720743, 1.717144, 1.713872, 1.710882, 1.708141, 1.705618, 1.703288, 1.701131, 1.699127, 1.697261,
1.695519, 1.693889, 1.692360, 1.690924, 1.689572, 1.688298, 1.687094, 1.685954, 1.684875, 1.683851,
1.682878, 1.681952, 1.681071, 1.680230, 1.679427, 1.678660, 1.677927, 1.677224, 1.676551, 1.675905,
1.675285, 1.674689, 1.674116, 1.673565, 1.673034, 1.672522, 1.672029, 1.671553, 1.671093, 1.670649,
1.670219, 1.669804, 1.669402, 1.669013, 1.668636, 1.668271, 1.667916, 1.667572, 1.667239, 1.666914,
1.666600, 1.666294, 1.665996, 1.665707, 1.665425, 1.665151, 1.664885, 1.664625, 1.664371, 1.664125,
1.663884, 1.663649, 1.663420, 1.663197, 1.662978, 1.662765, 1.662557, 1.662354, 1.662155, 1.661961,
1.661771, 1.661585, 1.661404, 1.661226, 1.661052, 1.660881, 1.660715, 1.660551, 1.660391, 1.660234],
0.975: [
12.706205, 4.302653, 3.182446, 2.776445, 2.570582, 2.446912, 2.364624, 2.306004, 2.262157, 2.228139,
2.200985, 2.178813, 2.160369, 2.144787, 2.131450, 2.119905, 2.109816, 2.100922, 2.093024, 2.085963,
2.079614, 2.073873, 2.068658, 2.063899, 2.059539, 2.055529, 2.051831, 2.048407, 2.045230, 2.042272,
2.039513, 2.036933, 2.034515, 2.032245, 2.030108, 2.028094, 2.026192, 2.024394, 2.022691, 2.021075,
2.019541, 2.018082, 2.016692, 2.015368, 2.014103, 2.012896, 2.011741, 2.010635, 2.009575, 2.008559,
2.007584, 2.006647, 2.005746, 2.004879, 2.004045, 2.003241, 2.002465, 2.001717, 2.000995, 2.000298,
1.999624, 1.998972, 1.998341, 1.997730, 1.997138, 1.996564, 1.996008, 1.995469, 1.994945, 1.994437,
1.993943, 1.993464, 1.992997, 1.992543, 1.992102, 1.991673, 1.991254, 1.990847, 1.990450, 1.990063,
1.989686, 1.989319, 1.988960, 1.988610, 1.988268, 1.987934, 1.987608, 1.987290, 1.986979, 1.986675,
1.986377, 1.986086, 1.985802, 1.985523, 1.985251, 1.984984, 1.984723, 1.984467, 1.984217, 1.983972],
0.99: [
31.820516, 6.964557, 4.540703, 3.746947, 3.364930, 3.142668, 2.997952, 2.896459, 2.821438, 2.763769,
2.718079, 2.680998, 2.650309, 2.624494, 2.602480, 2.583487, 2.566934, 2.552380, 2.539483, 2.527977,
2.517648, 2.508325, 2.499867, 2.492159, 2.485107, 2.478630, 2.472660, 2.467140, 2.462021, 2.457262,
2.452824, 2.448678, 2.444794, 2.441150, 2.437723, 2.434494, 2.431447, 2.428568, 2.425841, 2.423257,
2.420803, 2.418470, 2.416250, 2.414134, 2.412116, 2.410188, 2.408345, 2.406581, 2.404892, 2.403272,
2.401718, 2.400225, 2.398790, 2.397410, 2.396081, 2.394801, 2.393568, 2.392377, 2.391229, 2.390119,
2.389047, 2.388011, 2.387008, 2.386037, 2.385097, 2.384186, 2.383302, 2.382446, 2.381615, 2.380807,
2.380024, 2.379262, 2.378522, 2.377802, 2.377102, 2.376420, 2.375757, 2.375111, 2.374482, 2.373868,
2.373270, 2.372687, 2.372119, 2.371564, 2.371022, 2.370493, 2.369977, 2.369472, 2.368979, 2.368497,
2.368026, 2.367566, 2.367115, 2.366674, 2.366243, 2.365821, 2.365407, 2.365002, 2.364606, 2.364217]
};
})();
if (typeof module != 'undefined') {
for (var key in Statistics)
module.exports[key] = Statistics[key];
}
</script>
<script>
function TestResult(metric, values, associatedRun) {
if (values[0] instanceof Array) {
var flattenedValues = [];
for (var i = 0; i < values.length; i++)
flattenedValues = flattenedValues.concat(values[i]);
values = flattenedValues;
}
if (jQuery.type(values[0]) === 'string') {
try {
var current = JSON.parse(values[0]);
if (current.params.type === 'HISTOGRAM') {
this.histogramValues = current;
// Histogram results have no values (per se). Instead we calculate
// the values from the histogram bins.
var values = [];
var buckets = current.buckets
for (var i = 0; i < buckets.length; i++) {
var bucket = buckets[i];
var bucket_mean = (bucket.high + bucket.low) / 2;
for (var b = 0; b < bucket.count; b++) {
values.push(bucket_mean);
}
}
}
}
catch (e) { /* ignore, assume not a JSON string */ }
}
this.test = function () { return metric; }
this.values = function () { return values.map(function (value) { return metric.scalingFactor() * value; }); }
this.unscaledMean = function () { return Statistics.sum(values) / values.length; }
this.mean = function () { return metric.scalingFactor() * this.unscaledMean(); }
this.min = function () { return metric.scalingFactor() * Statistics.min(values); }
this.max = function () { return metric.scalingFactor() * Statistics.max(values); }
this.confidenceIntervalDelta = function () {
return metric.scalingFactor() * Statistics.confidenceIntervalDelta(0.95, values.length,
Statistics.sum(values), Statistics.squareSum(values));
}
this.confidenceIntervalDeltaRatio = function () { return this.confidenceIntervalDelta() / this.mean(); }
this.percentDifference = function(other) { return (other.unscaledMean() - this.unscaledMean()) / this.unscaledMean(); }
this.isStatisticallySignificant = function (other) {
var diff = Math.abs(other.mean() - this.mean());
return diff > this.confidenceIntervalDelta() && diff > other.confidenceIntervalDelta();
}
this.run = function () { return associatedRun; }
}
function TestRun(entry) {
this.id = function() { return entry['buildTime']; }
this.revision = function () { return entry['revision']; }
this.label = function () {
if (labelKey in localStorage)
return localStorage[labelKey];
if (entry['label'])
return entry['label'];
return 'r' + this.revision();
}
this.setLabel = function(label) { localStorage[labelKey] = label; }
this.isHidden = function() { return localStorage[hiddenKey]; }
this.hide = function() { localStorage[hiddenKey] = true; }
this.show = function() { localStorage.removeItem(hiddenKey); }
this.description = function() {
var label = this.label();
if (label != 'r' + this.revision())
label = ' ' + label;
else
label = '';
return new Date(entry['buildTime']).toLocaleString() + '\n' + entry['platform'] + ' r' + entry['revision'] + label;
}
var labelKey = 'telemetry_label_' + this.id();
var hiddenKey = 'telemetry_hide_' + this.id();
}
function PerfTestMetric(name, metric, unit, isImportant) {
var testResults = [];
var cachedUnit = null;
var cachedScalingFactor = null;
// We can't do this in TestResult because all results for each test need to share the same unit and the same scaling factor.
function computeScalingFactorIfNeeded() {
// FIXME: We shouldn't be adjusting units on every test result.
// We can only do this on the first test.
if (!testResults.length || cachedUnit)
return;
var mean = testResults[0].unscaledMean(); // FIXME: We should look at all values.
var kilo = unit == 'bytes' ? 1024 : 1000;
if (mean > 10 * kilo * kilo && unit != 'ms') {
cachedScalingFactor = 1 / kilo / kilo;
cachedUnit = 'M ' + unit;
} else if (mean > 10 * kilo) {
cachedScalingFactor = 1 / kilo;
cachedUnit = unit == 'ms' ? 's' : ('K ' + unit);
} else {
cachedScalingFactor = 1;
cachedUnit = unit;
}
}
this.name = function () { return name + ':' + metric; }
this.isImportant = isImportant;
this.isMemoryTest = function () {
return (unit == 'kb' ||
unit == 'KB' ||
unit == 'MB' ||
unit == 'bytes' ||
unit == 'count' ||
!metric.indexOf('V8.'));
}
this.addResult = function (newResult) {
testResults.push(newResult);
cachedUnit = null;
cachedScalingFactor = null;
}
this.results = function () { return testResults; }
this.scalingFactor = function() {
computeScalingFactorIfNeeded();
return cachedScalingFactor;
}
this.unit = function () {
computeScalingFactorIfNeeded();
return cachedUnit;
}
this.biggerIsBetter = function () {
if (window.unitToBiggerIsBetter == undefined) {
window.unitToBiggerIsBetter = {};
var units = JSON.parse(document.getElementById('units-json').textContent);
for (var unit in units) {
if (units[unit].improvement_direction == 'up') {
window.unitToBiggerIsBetter[unit] = true;
}
}
}
return window.unitToBiggerIsBetter[unit];
}
}
function UndeleteManager() {
var key = 'telemetry_undeleteIds'
var undeleteIds = localStorage[key];
if (undeleteIds) {
undeleteIds = JSON.parse(undeleteIds);
} else {
undeleteIds = [];
}
this.ondelete = function(id) {
undeleteIds.push(id);
localStorage[key] = JSON.stringify(undeleteIds);
}
this.undeleteMostRecent = function() {
if (!this.mostRecentlyDeletedId())
return;
undeleteIds.pop();
localStorage[key] = JSON.stringify(undeleteIds);
}
this.mostRecentlyDeletedId = function() {
if (!undeleteIds.length)
return undefined;
return undeleteIds[undeleteIds.length-1];
}
}
var undeleteManager = new UndeleteManager();
var plotColor = 'rgb(230,50,50)';
var subpointsPlotOptions = {
lines: {show:true, lineWidth: 0},
color: plotColor,
points: {show: true, radius: 1},
bars: {show: false}};
var mainPlotOptions = {
xaxis: {
min: -0.5,
tickSize: 1,
},
crosshair: { mode: 'y' },
series: { shadowSize: 0 },
bars: {show: true, align: 'center', barWidth: 0.5},
lines: { show: false },
points: { show: true },
grid: {
borderWidth: 1,
borderColor: '#ccc',
backgroundColor: '#fff',
hoverable: true,
autoHighlight: false,
}
};
var linePlotOptions = {
yaxis: { show: false },
xaxis: { show: false },
lines: { show: true },
grid: { borderWidth: 1, borderColor: '#ccc' },
colors: [ plotColor ]
};
var largeLinePlotOptions = {
xaxis: {
show: true,
tickDecimals: 0,
},
lines: { show: true },
grid: { borderWidth: 1, borderColor: '#ccc' },
colors: [ plotColor ]
};
var histogramPlotOptions = {
bars: {show: true, fill: 1}
};
function createPlot(container, test, useLargeLinePlots) {
if (test.results()[0].histogramValues) {
var section = $('<section><div class="histogram-plots"></div>'
+ '<div class="histogram-plot-labels"></div>'
+ '<span class="tooltip"></span></section>');
$(container).append(section);
attachHistogramPlots(test, section.children('.histogram-plots'));
}
else if (useLargeLinePlots) {
var section = $('<section><div class="large-line-plots"></div>'
+ '<div class="large-line-plot-labels"></div>'
+ '<span class="tooltip"></span></section>');
$(container).append(section);
attachLinePlots(test, section.children('.large-line-plots'), useLargeLinePlots);
attachLinePlotLabels(test, section.children('.large-line-plot-labels'));
} else {
var section = $('<section><div class="plot"></div><div class="line-plots"></div>'
+ '<span class="tooltip"></span></section>');
section.children('.plot').css({'width': (100 * test.results().length + 25) + 'px', 'height': '300px'});
$(container).append(section);
var plotContainer = section.children('.plot');
var minIsZero = true;
attachPlot(test, plotContainer, minIsZero);
attachLinePlots(test, section.children('.line-plots'), useLargeLinePlots);
var tooltip = section.children('.tooltip');
plotContainer.bind('plothover', function (event, position, item) {
if (item) {
var postfix = item.series.id ? ' (' + item.series.id + ')' : '';
tooltip.html(item.datapoint[1].toPrecision(4) + postfix);
var sectionOffset = $(section).offset();
tooltip.css({left: item.pageX - sectionOffset.left - tooltip.outerWidth() / 2, top: item.pageY - sectionOffset.top + 10});
tooltip.fadeIn(200);
} else
tooltip.hide();
});
plotContainer.mouseout(function () {
tooltip.hide();
});
plotContainer.click(function (event) {
event.preventDefault();
minIsZero = !minIsZero;
attachPlot(test, plotContainer, minIsZero);
});
}
return section;
}
function attachLinePlots(test, container, useLargeLinePlots) {
var results = test.results();
var attachedPlot = false;
if (useLargeLinePlots) {
var maximum = 0;
for (var i = 0; i < results.length; i++) {
var values = results[i].values();
if (!values)
continue;
var local_max = Math.max.apply(Math, values);
if (local_max > maximum)
maximum = local_max;
}
}
for (var i = 0; i < results.length; i++) {
container.append('<div></div>');
var values = results[i].values();
if (!values)
continue;
attachedPlot = true;
if (useLargeLinePlots) {
var options = $.extend(true, {}, largeLinePlotOptions,
{yaxis: {min: 0.0, max: maximum},
xaxis: {min: 0.0, max: values.length - 1},
points: {show: (values.length < 2) ? true : false}});
} else {
var options = $.extend(true, {}, linePlotOptions,
{yaxis: {min: Math.min.apply(Math, values) * 0.9, max: Math.max.apply(Math, values) * 1.1},
xaxis: {min: -0.5, max: values.length - 0.5},
points: {show: (values.length < 2) ? true : false}});
}
$.plot(container.children().last(), [values.map(function (value, index) { return [index, value]; })], options);
}
if (!attachedPlot)
container.children().remove();
}
function attachHistogramPlots(test, container) {
var results = test.results();
var attachedPlot = false;
for (var i = 0; i < results.length; i++) {
container.append('<div></div>');
var histogram = results[i].histogramValues
if (!histogram)
continue;
attachedPlot = true;
var buckets = histogram.buckets
var bucket;
var max_count = 0;
for (var j = 0; j < buckets.length; j++) {
bucket = buckets[j];
max_count = Math.max(max_count, bucket.count);
}
var xmax = bucket.high * 1.1;
var ymax = max_count * 1.1;
var options = $.extend(true, {}, histogramPlotOptions,
{yaxis: {min: 0.0, max: ymax},
xaxis: {min: histogram.params.min, max: xmax}});
var plot = $.plot(container.children().last(), [[]], options);
// Flot only supports fixed with bars and our histogram's buckets are
// variable width, so we need to do our own bar drawing.
var ctx = plot.getCanvas().getContext("2d");
ctx.lineWidth="1";
ctx.fillStyle = "rgba(255, 0, 0, 0.2)";
ctx.strokeStyle="red";
for (var j = 0; j < buckets.length; j++) {
bucket = buckets[j];
var bl = plot.pointOffset({ x: bucket.low, y: 0});
var tr = plot.pointOffset({ x: bucket.high, y: bucket.count});
ctx.fillRect(bl.left, bl.top, tr.left - bl.left, tr.top - bl.top);
ctx.strokeRect(bl.left, bl.top, tr.left - bl.left, tr.top - bl.top);
}
}
if (!attachedPlot)
container.children().remove();
}
function attachLinePlotLabels(test, container) {
var results = test.results();
var attachedPlot = false;
for (var i = 0; i < results.length; i++) {
container.append('<div>' + results[i].run().label() + '</div>');
}
}
function attachPlot(test, plotContainer, minIsZero) {
var results = test.results();
var values = results.reduce(function (values, result, index) {
var newValues = result.values();
return newValues ? values.concat(newValues.map(function (value) { return [index, value]; })) : values;
}, []);
var plotData = [$.extend(true, {}, subpointsPlotOptions, {data: values})];
plotData.push({id: '&mu;', data: results.map(function (result, index) { return [index, result.mean()]; }), color: plotColor});
var overallMax = Statistics.max(results.map(function (result, index) { return result.max(); }));
var overallMin = Statistics.min(results.map(function (result, index) { return result.min(); }));
var margin = (overallMax - overallMin) * 0.1;
var currentPlotOptions = $.extend(true, {}, mainPlotOptions, {yaxis: {
min: minIsZero ? 0 : overallMin - margin,
max: minIsZero ? overallMax * 1.1 : overallMax + margin}});
currentPlotOptions.xaxis.max = results.length - 0.5;
currentPlotOptions.xaxis.ticks = results.map(function (result, index) { return [index, result.run().label()]; });
$.plot(plotContainer, plotData, currentPlotOptions);
}
function toFixedWidthPrecision(value) {
var decimal = value.toFixed(2);
return decimal;
}
function formatPercentage(fraction) {
var percentage = fraction * 100;
return (fraction * 100).toFixed(2) + '%';
}
function createTable(tests, runs, shouldIgnoreMemory, referenceIndex, useLargeLinePlots) {
$('#container').html('<thead><tr><th class="headerSortDown">Test</th><th>Unit</th>' + runs.map(function (run, index) {
return '<th colspan="' + (index == referenceIndex ? 2 : 3) + '" class="{sorter: \'comparison\'}" id="' + run.id() + '" title="' + run.description() + '"><span class="label" title="Edit run label">' + run.label() + '</span><div class="closeButton" title="Delete run">x</div></th>';
}).reduce(function (markup, cell) { return markup + cell; }, '') + '</tr></head><tbody></tbody>');
var testNames = [];
for (testName in tests)
testNames.push(testName);
window.isFirstImportantRow = true;
testNames.sort().map(function (testName) {
var test = tests[testName];
if (test.isMemoryTest() != shouldIgnoreMemory)
createTableRow(runs, test, referenceIndex, useLargeLinePlots);
});
$('.closeButton').click(function(event) {
for (var i = 0; i < runs.length; i++) {
if (runs[i].id() == event.target.parentNode.id) {
runs[i].hide();
undeleteManager.ondelete(runs[i].id());
location.reload();
break;
}
}
event.stopPropagation();
});
$('.label').click(function(event) {
for (var i = 0; i < runs.length; i++) {
if (runs[i].id() == event.target.parentNode.id) {
$(event.target).replaceWith('<input id="labelEditor" type="text" value="' + runs[i].label() + '">');
$('#labelEditor').focusout(function() {
runs[i].setLabel(this.value);
location.reload();
});
$('#labelEditor').keypress(function(event) {
if (event.which == 13) {
runs[i].setLabel(this.value);
location.reload();
}
});
$('#labelEditor').click(function (event) {
event.stopPropagation();
});
$('#labelEditor').mousedown(function (event) {
event.stopPropagation();
});
$('#labelEditor').select();
break;
}
}
event.stopPropagation();
});
$('#container').tablesorter({widgets: ['zebra']});
}
function linearRegression(points) {
// Implement http://www.easycalculation.com/statistics/learn-correlation.php.
// x = magnitude
// y = iterations
var sumX = 0;
var sumY = 0;
var sumXSquared = 0;
var sumYSquared = 0;
var sumXTimesY = 0;
for (var i = 0; i < points.length; i++) {
var x = i;
var y = points[i];
sumX += x;
sumY += y;
sumXSquared += x * x;
sumYSquared += y * y;
sumXTimesY += x * y;
}
var r = (points.length * sumXTimesY - sumX * sumY) /
Math.sqrt((points.length * sumXSquared - sumX * sumX) *
(points.length * sumYSquared - sumY * sumY));
if (isNaN(r) || r == Math.Infinity)
r = 0;
var slope = (points.length * sumXTimesY - sumX * sumY) / (points.length * sumXSquared - sumX * sumX);
var intercept = sumY / points.length - slope * sumX / points.length;
return {slope: slope, intercept: intercept, rSquared: r * r};
}
var warningSign = '<svg viewBox="0 0 100 100" style="width: 18px; height: 18px; vertical-align: bottom;" version="1.1">'
+ '<polygon fill="red" points="50,10 90,80 10,80 50,10" stroke="red" stroke-width="10" stroke-linejoin="round" />'
+ '<polygon fill="white" points="47,30 48,29, 50, 28.7, 52,29 53,30 50,60" stroke="white" stroke-width="10" stroke-linejoin="round" />'
+ '<circle cx="50" cy="73" r="6" fill="white" />'
+ '</svg>';
function createTableRow(runs, test, referenceIndex, useLargeLinePlots) {
var tableRow = $('<tr><td class="test collapsed"' + (test.isImportant ? ' style="font-weight:bold"' : '') + '>' + test.name() + '</td><td class="unit">' + test.unit() + '</td></tr>');
function markupForRun(result, referenceResult) {
var comparisonCell = '';
var hiddenValue = '';
var shouldCompare = result !== referenceResult;
if (shouldCompare && referenceResult) {
var percentDifference = referenceResult.percentDifference(result);
var better = test.biggerIsBetter() ? percentDifference > 0 : percentDifference < 0;
var comparison = '';
var className = 'comparison';
if (referenceResult.isStatisticallySignificant(result)) {
comparison = formatPercentage(Math.abs(percentDifference)) + (better ? ' Better' : ' Worse&nbsp;');
className += better ? ' better' : ' worse';
}
hiddenValue = '<span style="display: none">|' + comparison + '</span>';
comparisonCell = '<td class="' + className + '">' + comparison + '</td>';
} else if (shouldCompare)
comparisonCell = '<td class="comparison"></td>';
var values = result.values();
var warning = '';
var regressionAnalysis = '';
if (result.histogramValues) {
// Don't calculate regression result for histograms.
}
else if (values && values.length > 3) {
regressionResult = linearRegression(values);
regressionAnalysis = 'slope=' + toFixedWidthPrecision(regressionResult.slope)
+ ', R^2=' + toFixedWidthPrecision(regressionResult.rSquared);
if (regressionResult.rSquared > 0.6 && Math.abs(regressionResult.slope) > 0.01) {
warning = ' <span class="regression-warning" title="Detected a time dependency with ' + regressionAnalysis + '">' + warningSign + ' </span>';
}
}
var statistics = '&sigma;=' + toFixedWidthPrecision(result.confidenceIntervalDelta()) + ', min=' + toFixedWidthPrecision(result.min())
+ ', max=' + toFixedWidthPrecision(result.max()) + '\n' + regressionAnalysis;
// Tablesorter doesn't know about the second cell so put the comparison in the invisible element.
return '<td class="result" title="' + statistics + '">' + toFixedWidthPrecision(result.mean()) + hiddenValue
+ '</td><td class="confidenceIntervalDelta" title="' + statistics + '">&plusmn; '
+ formatPercentage(result.confidenceIntervalDeltaRatio()) + warning + '</td>' + comparisonCell;
}
function markupForMissingRun(isReference) {
return '<td colspan="' + (isReference ? 2 : 3) + '" class="missing">Missing</td>';
}
var runIndex = 0;
var results = test.results();
var referenceResult = undefined;
var resultIndexMap = {};
for (var i = 0; i < results.length; i++) {
while (runs[runIndex] !== results[i].run())
runIndex++;
if (runIndex == referenceIndex)
referenceResult = results[i];
resultIndexMap[runIndex] = i;
}
for (var i = 0; i < runs.length; i++) {
var resultIndex = resultIndexMap[i];
if (resultIndex == undefined)
tableRow.append(markupForMissingRun(i == referenceIndex));
else
tableRow.append(markupForRun(results[resultIndex], referenceResult));
}
$('#container').children('tbody').last().append(tableRow);
function toggle() {
var firstCell = tableRow.children('td').first();
if (firstCell.children('section').length) {
firstCell.children('section').remove();
tableRow.children('td').css({'padding-bottom': ''});
tableRow.children('td').first().addClass('collapsed');
tableRow.children('td').first().removeClass('expanded');
} else {
var plot = createPlot(firstCell, test, useLargeLinePlots);
plot.css({'position': 'absolute', 'z-index': 2});
var offset = tableRow.offset();
offset.left += 1;
offset.top += tableRow.outerHeight();
plot.offset(offset);
tableRow.children('td').css({'padding-bottom': plot.outerHeight() + 5});
tableRow.children('td').first().removeClass('collapsed');
tableRow.children('td').first().addClass('expanded');
}
return false;
};
tableRow.click(function(event) {
if (event.target != tableRow[0] && event.target.parentNode != tableRow[0])
return;
event.preventDefault();
toggle();
});
if (test.isImportant && window.isFirstImportantRow) {
window.isFirstImportantRow = false;
toggle();
}
}
function init() {
$.tablesorter.addParser({
id: 'comparison',
is: function(s) {
return s.indexOf('|') >= 0;
},
format: function(s) {
var parsed = parseFloat(s.substring(s.indexOf('|') + 1));
return isNaN(parsed) ? 0 : parsed;
},
type: 'numeric',
});
var runs = [];
var metrics = {};
var deletedRunsById = {};
$.each(JSON.parse(document.getElementById('results-json').textContent), function (index, entry) {
var run = new TestRun(entry);
if (run.isHidden()) {
deletedRunsById[run.id()] = run;
return;
}
runs.push(run);
function addTests(tests) {
for (var testName in tests) {
var rawMetrics = tests[testName].metrics;
for (var metricName in rawMetrics) {
var fullMetricName = testName + ':' + metricName;
var metric = metrics[fullMetricName];
if (!metric) {
metric = new PerfTestMetric(testName, metricName, rawMetrics[metricName].units, rawMetrics[metricName].important);
metrics[fullMetricName] = metric;
}
metric.addResult(new TestResult(metric, rawMetrics[metricName].current, run));
}
}
}
addTests(entry.tests);
});
var useLargeLinePlots = false;
var shouldIgnoreMemory= true;
var referenceIndex = 0;
createTable(metrics, runs, shouldIgnoreMemory, referenceIndex, useLargeLinePlots);
$('#time-memory').bind('change', function (event, checkedElement) {
shouldIgnoreMemory = checkedElement.textContent == 'Time';
createTable(metrics, runs, shouldIgnoreMemory, referenceIndex, useLargeLinePlots);
});
$('#scatter-line').bind('change', function (event, checkedElement) {
useLargeLinePlots = checkedElement.textContent == 'Line';
createTable(metrics, runs, shouldIgnoreMemory, referenceIndex, useLargeLinePlots);
});
runs.map(function (run, index) {
$('#reference').append('<span value="' + index + '"' + (index == referenceIndex ? ' class="checked"' : '') + ' title="' + run.description() + '">' + run.label() + '</span>');
})
$('#reference').bind('change', function (event, checkedElement) {
referenceIndex = parseInt(checkedElement.getAttribute('value'));
createTable(metrics, runs, shouldIgnoreMemory, referenceIndex, useLargeLinePlots);
});
$('.checkbox').each(function (index, checkbox) {
$(checkbox).children('span').click(function (event) {
if ($(this).hasClass('checked'))
return;
$(checkbox).children('span').removeClass('checked');
$(this).addClass('checked');
$(checkbox).trigger('change', $(this));
});
});
if (undeleteManager.mostRecentlyDeletedId()) {
$('#undelete').html('Undelete ' + deletedRunsById[undeleteManager.mostRecentlyDeletedId()].label());
$('#undelete').attr('title', deletedRunsById[undeleteManager.mostRecentlyDeletedId()].description());
$('#undelete').click(function (event) {
deletedRunsById[undeleteManager.mostRecentlyDeletedId()].show();
undeleteManager.undeleteMostRecent();
location.reload();
});
} else {
$('#undelete').hide();
}
}
</script>
<script id="results-json" type="application/json">[{"platform": "system", "buildTime": "2014-03-24T17:09:04.168861", "label": null, "tests": {"LoadingTimeline": {"metrics": {"thread 0|MarkLoad_avg_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": false}, "thread 0|Paint_max_by_url.http://www.retailmenot.com/view/macys.com": {"current": [24.50390625, 8.47998046875, 8.76025390625, 11.0361328125, 8.808837890625, 8.52392578125, 9.81591796875, 8.699951171875, 8.54296875, 8.555908203125, 8.72607421875, 9.97119140625, 8.8291015625, 8.693115234375, 8.658935546875, 8.61181640625, 8.979248046875, 8.583984375, 8.748046875, 8.68603515625, 8.763916015625, 9.85693359375, 8.6240234375, 8.692138671875, 8.719970703125, 8.885986328125, 9.10400390625, 8.587158203125, 10.010986328125, 8.569091796875, 8.4619140625, 8.602783203125, 8.731201171875, 8.548828125, 8.5751953125, 8.60791015625, 8.656005859375, 10.47705078125, 8.717041015625, 8.55712890625, 8.47900390625, 8.572998046875, 8.626953125, 8.551025390625, 9.38623046875, 10.966064453125, 8.485107421875, 8.4990234375, 8.7060546875, 8.64599609375, 8.76171875, 8.8759765625, 8.735107421875, 8.775146484375, 9.403076171875, 8.64111328125, 8.52294921875, 8.445068359375, 10.633056640625, 8.64111328125, 8.97119140625, 8.81005859375, 8.44384765625, 8.501953125, 8.735107421875, 8.865966796875, 8.4990234375, 8.52392578125, 8.569091796875, 8.575927734375, 11.38134765625, 8.500732421875, 8.7451171875, 10.656005859375, 8.51708984375, 8.39306640625, 8.861083984375, 8.55810546875, 8.830078125, 8.608154296875, 9.5869140625, 8.536865234375, 8.9169921875, 8.701904296875, 8.757080078125, 8.8369140625, 8.211181640625, 8.885986328125, 11.198974609375, 8.72314453125, 8.580810546875, 8.65283203125, 8.61083984375, 8.337890625, 8.895263671875, 8.51123046875, 9.10595703125, 8.485107421875, 8.668701171875, 8.640869140625], "units": "ms", "important": false}, "thread 0|MarkDOMContent_max": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": true}, "thread 0|Layout_max": {"current": [45.94384765625, 23.31494140625, 19.248779296875, 20.024169921875, 21.01611328125, 19.193359375, 20.0087890625, 22.739990234375, 19.844970703125, 20.119873046875, 19.650146484375, 19.747802734375, 20.162109375, 22.52099609375, 20.279052734375, 20.05419921875, 19.981201171875, 20.912841796875, 19.69189453125, 19.998046875, 21.782958984375, 19.919921875, 20.10107421875, 19.783935546875, 19.313232421875, 12.81396484375, 19.39794921875, 19.722900390625, 19.361083984375, 19.9580078125, 19.334228515625, 19.948974609375, 15.60693359375, 19.67138671875, 19.342041015625, 12.44287109375, 19.907958984375, 16.580078125, 22.63916015625, 19.778076171875, 22.08203125, 19.263916015625, 19.505126953125, 19.59716796875, 19.682861328125, 19.386962890625, 19.099853515625, 12.43212890625, 19.244140625, 12.551025390625, 19.668212890625, 19.42822265625, 23.086669921875, 19.745849609375, 19.50390625, 23.277099609375, 20.365966796875, 19.375, 19.078857421875, 19.204833984375, 22.8818359375, 19.532958984375, 18.841064453125, 19.9169921875, 16.546875, 19.5, 20.01318359375, 20.006103515625, 19.743896484375, 19.843017578125, 19.824951171875, 19.515869140625, 22.737060546875, 22.472900390625, 19.541015625, 21.032958984375, 19.6220703125, 19.43603515625, 19.68505859375, 16.838134765625, 22.470947265625, 20.0908203125, 19.296875, 19.945068359375, 20.173095703125, 19.843017578125, 19.76904296875, 19.76513671875, 19.60791015625, 19.407958984375, 19.527099609375, 19.4599609375, 20.296875, 20.328125, 19.60693359375, 20.23095703125, 19.991943359375, 19.885986328125, 19.296142578125, 19.68310546875], "units": "ms", "important": true}, "thread 0|BeginFrame_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": false}, "thread 0|BeginFrame_max_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": false}, "thread 0|BeginFrame_avg": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": true}, "thread 0|ResourceReceivedData_avg": {"current": [0.010949337121212122, 0.01054944490131579, 0.015171595982142858, 0.008510044642857142, 0.0078125, 0.009765625, 0.0096435546875, 0.00970458984375, 0.010009765625, 0.0103759765625, 0.014373779296875, 0.00921630859375, 0.010567801339285714, 0.010467529296875, 0.009521484375, 0.012102399553571428, 0.00927734375, 0.01025390625, 0.010846819196428572, 0.009490966796875, 0.012237548828125, 0.010284423828125, 0.014404296875, 0.011322021484375, 0.009347098214285714, 0.009735107421875, 0.014613560267857142, 0.01153564453125, 0.00909423828125, 0.0081787109375, 0.00799560546875, 0.011509486607142858, 0.0096435546875, 0.012969970703125, 0.014578683035714286, 0.0111083984375, 0.0130615234375, 0.00909423828125, 0.009124755859375, 0.01202392578125, 0.012939453125, 0.014020647321428572, 0.011090959821428572, 0.00823974609375, 0.010833740234375, 0.008823939732142858, 0.0087890625, 0.01373291015625, 0.01263427734375, 0.010345458984375, 0.013218470982142858, 0.0093994140625, 0.011138916015625, 0.008963448660714286, 0.009033203125, 0.01007080078125, 0.0089111328125, 0.010711669921875, 0.010345458984375, 0.01373291015625, 0.009800502232142858, 0.011509486607142858, 0.016143798828125, 0.00762939453125, 0.010986328125, 0.012237548828125, 0.012381417410714286, 0.00970458984375, 0.011369977678571428, 0.01031494140625, 0.0096435546875, 0.010044642857142858, 0.012102399553571428, 0.008026123046875, 0.009002685546875, 0.011016845703125, 0.008453369140625, 0.011544363839285714, 0.009765625, 0.0146484375, 0.011199951171875, 0.009242466517857142, 0.0101318359375, 0.01336669921875, 0.011138916015625, 0.013009207589285714, 0.01055908203125, 0.011993408203125, 0.01123046875, 0.0091552734375, 0.00836181640625, 0.00946044921875, 0.008819580078125, 0.010881696428571428, 0.010986328125, 0.010406494140625, 0.009974888392857142, 0.010009765625, 0.009381975446428572, 0.009918212890625], "units": "ms", "important": true}, "thread 0|RecalculateStyles": {"current": [54.63232421875, 26.9208984375, 30.532470703125, 30.165771484375, 29.044189453125, 29.272216796875, 28.48876953125, 26.283203125, 29.10791015625, 28.878662109375, 30.003662109375, 29.77978515625, 30.57958984375, 29.228271484375, 29.4873046875, 31.760986328125, 28.5615234375, 29.2900390625, 30.550048828125, 30.708251953125, 29.5859375, 29.140625, 40.12548828125, 30.01806640625, 28.479248046875, 35.414794921875, 28.563232421875, 28.987548828125, 29.09765625, 30.712158203125, 29.753173828125, 30.589599609375, 33.053955078125, 40.960205078125, 29.929443359375, 35.84814453125, 30.22802734375, 31.607177734375, 26.449951171875, 31.087158203125, 26.5615234375, 29.8818359375, 29.240966796875, 28.722412109375, 29.75830078125, 29.690673828125, 28.2451171875, 35.291015625, 29.727783203125, 35.31103515625, 31.341796875, 30.672119140625, 27.1328125, 29.4697265625, 29.22412109375, 26.12451171875, 28.77880859375, 28.8232421875, 28.3525390625, 28.59814453125, 28.202392578125, 29.55078125, 28.453125, 29.494140625, 30.89990234375, 29.263916015625, 29.38232421875, 29.091552734375, 29.411865234375, 29.818115234375, 30.69775390625, 28.918701171875, 27.228271484375, 26.26025390625, 28.4111328125, 28.99462890625, 28.83154296875, 29.0908203125, 30.441650390625, 38.544189453125, 27.162841796875, 42.728759765625, 30.20458984375, 30.211669921875, 31.819580078125, 29.77880859375, 30.075439453125, 29.1298828125, 29.308349609375, 29.35986328125, 28.408935546875, 28.80859375, 28.864990234375, 30.329833984375, 29.7890625, 28.982177734375, 29.67529296875, 28.875, 29.74462890625, 29.29150390625], "units": "ms", "important": true}, "thread 0|ResourceReceiveResponse_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": false}, "thread 0|InvalidateLayout_max": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": true}, "thread 0|MarkFirstPaint_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": false}, "thread 0|EvaluateScript_max_by_url.http://www.retailmenot.com/view/macys.com": {"current": [23.947998046875, 10.59716796875, 9.93701171875, 7.395751953125, 7.44775390625, 9.2802734375, 7.02685546875, 8.2705078125, 7.19921875, 7.994140625, 7.581298828125, 7.04345703125, 7.48876953125, 8.30078125, 7.22509765625, 7.697265625, 9.57177734375, 9.644775390625, 8.01416015625, 9.2080078125, 7.0859375, 7.714111328125, 9.04638671875, 7.34814453125, 8.32080078125, 8.006103515625, 6.936767578125, 8.137939453125, 7.78515625, 7.6630859375, 7.61962890625, 8.856201171875, 10.2705078125, 7.452392578125, 7.248291015625, 7.33203125, 8.618896484375, 6.81982421875, 8.47509765625, 7.287841796875, 7.925048828125, 8.47119140625, 7.605224609375, 8.18896484375, 7.24853515625, 8.11669921875, 7.84619140625, 7.446044921875, 7.37939453125, 7.49609375, 7.9912109375, 7.27001953125, 7.8701171875, 8.148193359375, 8.3447265625, 7.888671875, 8.376220703125, 7.43603515625, 8.617919921875, 7.025390625, 7.864013671875, 7.98876953125, 7.81396484375, 7.296875, 8.835205078125, 12.593017578125, 7.331298828125, 8.3759765625, 7.784912109375, 9.394775390625, 7.00732421875, 7.509033203125, 8.329345703125, 8.5, 7.72705078125, 6.958251953125, 8.981201171875, 8.1181640625, 9.27587890625, 7.18212890625, 7.65283203125, 8.72412109375, 8.41259765625, 7.9326171875, 8.4033203125, 9.36083984375, 7.346923828125, 8.78076171875, 10.3544921875, 7.323486328125, 7.7412109375, 8.3369140625, 7.5400390625, 8.998291015625, 7.7470703125, 8.682861328125, 7.887939453125, 8.000732421875, 7.652099609375, 7.5771484375], "units": "ms", "important": false}, "thread 0|ResourceReceiveResponse_max": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": true}, "thread 0|PaintSetup_avg": {"current": [0.092041015625, 0.12884521484375, 0.231689453125, 0.1552001953125, 0.144140625, 0.172149658203125, 0.176422119140625, 0.17122395833333334, 0.180816650390625, 0.1749267578125, 0.1437744140625, 0.1484619140625, 0.1461181640625, 0.1742892795138889, 0.1642822265625, 0.149072265625, 0.14609375, 0.180938720703125, 0.148828125, 0.1482666015625, 0.1690673828125, 0.15703125, 0.244171142578125, 0.1842041015625, 0.178955078125, 0.182159423828125, 0.180877685546875, 0.181884765625, 0.186248779296875, 0.1859619140625, 0.18572998046875, 0.1509521484375, 0.1789306640625, 0.183685302734375, 0.182159423828125, 0.18096923828125, 0.1731689453125, 0.18304443359375, 0.18511962890625, 0.1877983940972222, 0.167236328125, 0.1536376953125, 0.1581787109375, 0.1840087890625, 0.184661865234375, 0.180572509765625, 0.181121826171875, 0.180938720703125, 0.1800537109375, 0.1776123046875, 0.181427001953125, 0.184112548828125, 0.1502197265625, 0.14921875, 0.172210693359375, 0.1896701388888889, 0.1594970703125, 0.18280029296875, 0.182586669921875, 0.180633544921875, 0.1534423828125, 0.18292236328125, 0.17926025390625, 0.147216796875, 0.178253173828125, 0.20733642578125, 0.15712890625, 0.178558349609375, 0.149560546875, 0.1470458984375, 0.1477294921875, 0.18341064453125, 0.1694064670138889, 0.1738009982638889, 0.18927001953125, 0.1501708984375, 0.1462158203125, 0.183135986328125, 0.177978515625, 0.22503662109375, 0.1719482421875, 0.154541015625, 0.17620849609375, 0.179962158203125, 0.1929443359375, 0.172705078125, 0.1505126953125, 0.1484619140625, 0.156396484375, 0.1472412109375, 0.1493408203125, 0.1829833984375, 0.1484375, 0.1810302734375, 0.181610107421875, 0.18438720703125, 0.19232177734375, 0.151220703125, 0.153857421875, 0.186859130859375], "units": "ms", "important": true}, "thread 0|PaintSetup": {"current": [1.28857421875, 1.546142578125, 1.853515625, 1.552001953125, 1.44140625, 1.377197265625, 1.411376953125, 1.541015625, 1.446533203125, 1.3994140625, 1.437744140625, 1.484619140625, 1.461181640625, 1.568603515625, 1.642822265625, 1.49072265625, 1.4609375, 1.447509765625, 1.48828125, 1.482666015625, 1.690673828125, 1.5703125, 1.953369140625, 1.4736328125, 1.431640625, 1.457275390625, 1.447021484375, 1.455078125, 1.489990234375, 1.859619140625, 1.48583984375, 1.509521484375, 1.789306640625, 1.469482421875, 1.457275390625, 1.44775390625, 1.731689453125, 1.46435546875, 1.48095703125, 1.690185546875, 1.505126953125, 1.536376953125, 1.581787109375, 1.840087890625, 1.477294921875, 1.444580078125, 1.448974609375, 1.447509765625, 1.4404296875, 1.4208984375, 1.451416015625, 1.472900390625, 1.502197265625, 1.4921875, 1.377685546875, 1.70703125, 1.594970703125, 1.46240234375, 1.460693359375, 1.445068359375, 1.534423828125, 1.46337890625, 1.43408203125, 1.47216796875, 1.426025390625, 1.65869140625, 1.5712890625, 1.428466796875, 1.49560546875, 1.470458984375, 1.477294921875, 1.46728515625, 1.524658203125, 1.564208984375, 1.51416015625, 1.501708984375, 1.462158203125, 1.465087890625, 1.423828125, 1.80029296875, 1.719482421875, 1.54541015625, 1.40966796875, 1.439697265625, 1.929443359375, 1.72705078125, 1.505126953125, 1.484619140625, 1.56396484375, 1.472412109375, 1.493408203125, 1.4638671875, 1.484375, 1.4482421875, 1.452880859375, 1.47509765625, 1.53857421875, 1.51220703125, 1.53857421875, 1.494873046875], "units": "ms", "important": true}, "thread 0|ResourceSendRequest": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": true}, "thread 0|GCEvent_avg": {"current": [4.256103515625, 6.52490234375, 6.647216796875, 7.209228515625, 7.7421875, 6.458984375, 7.409912109375, 6.5, 8.1591796875, 6.6796875, 7.128173828125, 6.56591796875, 7.866943359375, 7.267822265625, 6.8310546875, 8.2099609375, 6.556884765625, 6.567138671875, 8.19580078125, 6.56494140625, 7.318115234375, 6.61474609375, 7.8720703125, 6.530029296875, 6.470947265625, 8.183837890625, 7.025146484375, 6.488037109375, 6.39404296875, 6.531005859375, 7.565185546875, 6.719970703125, 7.2841796875, 6.576171875, 7.85595703125, 7.470947265625, 8.02294921875, 7.654052734375, 7.73095703125, 6.584716796875, 6.512939453125, 7.698974609375, 6.43505859375, 6.93017578125, 6.657958984375, 7.8427734375, 6.98388671875, 6.7548828125, 7.2568359375, 6.586181640625, 7.681884765625, 6.623046875, 6.634033203125, 7.06787109375, 6.64599609375, 2.969970703125, 8.291015625, 4.545166015625, 6.553955078125, 4.1170654296875, 8.09912109375, 6.552001953125, 3.9986572265625, 7.009033203125, 6.705078125, 7.467041015625, 3.8841552734375, 8.873046875, 7.542236328125, 7.812744140625, 3.301025390625, 8.010009765625, 7.837158203125, 7.036865234375, 7.516357421875, 3.7425537109375, 6.972900390625, 7.0400390625, 8.010009765625, 6.976318359375, 4.0850830078125, 6.64306640625, 7.93408203125, 10.40283203125, 7.814697265625, 4.6148681640625, 7.526123046875, 6.72802734375, 8.41015625, 7.59521484375, 6.762939453125, 3.9376220703125, 7.10205078125, 6.68603515625, 6.58203125, 6.652099609375, 7.48486328125, 4.5784912109375, 7.68701171875], "units": "ms", "important": true}, "load_time": {"current": [1175.0, 619.0, 442.0, 406.0, 403.0, 406.0, 408.0, 390.0, 421.0, 408.0, 410.0, 418.0, 415.0, 395.0, 461.0, 443.0, 409.0, 407.0, 401.0, 364.0, 411.0, 404.0, 416.0, 425.0, 424.0, 433.0, 448.0, 418.0, 406.0, 404.0, 427.0, 364.0, 399.0, 426.0, 458.0, 374.0, 460.0, 410.0, 394.0, 466.0, 423.0, 393.0, 401.0, 352.0, 419.0, 426.0, 398.0, 471.0, 449.0, 412.0, 414.0, 396.0, 379.0, 408.0, 351.0, 358.0, 361.0, 402.0, 404.0, 403.0, 430.0, 426.0, 417.0, 402.0, 429.0, 401.0, 428.0, 358.0, 423.0, 403.0, 416.0, 425.0, 387.0, 403.0, 360.0, 358.0, 423.0, 416.0, 411.0, 419.0, 451.0, 434.0, 400.0, 370.0, 375.0, 425.0, 414.0, 429.0, 419.0, 365.0, 410.0, 419.0, 417.0, 404.0, 399.0, 419.0, 372.0, 409.0, 403.0, 423.0], "units": "ms", "important": true}, "thread 0|MarkFirstPaint": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": true}, "thread 0|ResourceSendRequest_max_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": false}, "thread 0|Layout_by_url.http://www.retailmenot.com/view/macys.com": {"current": [49.38671875, 32.467041015625, 31.747802734375, 32.565673828125, 33.624267578125, 30.691650390625, 31.8408203125, 30.7646484375, 32.452880859375, 31.571044921875, 32.812744140625, 32.343017578125, 33.237060546875, 32.27099609375, 33.0400390625, 32.894287109375, 33.216796875, 32.65771484375, 33.4560546875, 32.59814453125, 35.716796875, 32.76220703125, 33.7529296875, 31.806640625, 30.800537109375, 32.544189453125, 30.945068359375, 31.75, 30.8037109375, 33.68017578125, 30.808837890625, 33.302978515625, 32.708251953125, 32.8671875, 31.961181640625, 32.22900390625, 33.153564453125, 32.914306640625, 30.786865234375, 32.810791015625, 30.18798828125, 32.4658203125, 32.05517578125, 31.960205078125, 32.087646484375, 31.5302734375, 30.794921875, 32.4765625, 31.12890625, 32.315673828125, 32.317626953125, 31.213134765625, 31.995361328125, 32.263671875, 31.144287109375, 31.882080078125, 32.989013671875, 30.648193359375, 30.599609375, 30.7265625, 31.546142578125, 32.353759765625, 30.29052734375, 32.56787109375, 32.435791015625, 31.14794921875, 32.8583984375, 32.401611328125, 32.5263671875, 32.756591796875, 33.279541015625, 31.03369140625, 30.98046875, 30.84375, 31.104736328125, 33.662841796875, 32.555908203125, 30.969482421875, 31.101318359375, 33.10009765625, 31.77099609375, 34.344970703125, 30.989013671875, 32.724609375, 35.0390625, 32.460693359375, 33.64453125, 32.486083984375, 32.341064453125, 32.793701171875, 32.23779296875, 31.83447265625, 33.024658203125, 32.962890625, 33.427001953125, 32.156005859375, 31.5068359375, 32.456787109375, 32.883544921875, 31.27099609375], "units": "ms", "important": false}, "thread 0|MarkLoad_max_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": false}, "thread 0|Layout_avg": {"current": [12.3466796875, 8.11676025390625, 7.93695068359375, 6.513134765625, 6.724853515625, 7.67291259765625, 7.960205078125, 10.2548828125, 8.11322021484375, 7.89276123046875, 6.562548828125, 6.468603515625, 6.647412109375, 8.0677490234375, 6.6080078125, 6.578857421875, 6.643359375, 8.1644287109375, 6.6912109375, 6.51962890625, 7.143359375, 6.55244140625, 8.438232421875, 7.95166015625, 7.70013427734375, 8.13604736328125, 7.73626708984375, 7.9375, 7.700927734375, 6.73603515625, 7.70220947265625, 6.660595703125, 6.541650390625, 8.216796875, 7.99029541015625, 8.0572509765625, 6.630712890625, 8.22857666015625, 10.262288411458334, 6.562158203125, 10.062662760416666, 6.4931640625, 6.41103515625, 6.392041015625, 8.02191162109375, 7.882568359375, 7.69873046875, 8.119140625, 7.7822265625, 8.07891845703125, 8.07940673828125, 7.80328369140625, 7.99884033203125, 6.452734375, 7.78607177734375, 10.627360026041666, 6.597802734375, 7.66204833984375, 7.64990234375, 7.681640625, 7.88653564453125, 8.08843994140625, 7.5726318359375, 6.51357421875, 8.10894775390625, 7.7869873046875, 6.5716796875, 6.480322265625, 6.5052734375, 6.551318359375, 6.655908203125, 7.7584228515625, 10.326822916666666, 10.28125, 7.77618408203125, 6.732568359375, 6.511181640625, 7.74237060546875, 7.77532958984375, 8.2750244140625, 7.9427490234375, 6.868994140625, 7.74725341796875, 8.18115234375, 7.0078125, 6.492138671875, 6.72890625, 6.497216796875, 6.468212890625, 6.558740234375, 6.44755859375, 7.9586181640625, 6.604931640625, 8.24072265625, 8.35675048828125, 8.03900146484375, 7.876708984375, 6.491357421875, 6.576708984375, 7.8177490234375], "units": "ms", "important": true}, "thread 0|TimerInstall_avg": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": true}, "thread 0|MarkLoad_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": false}, "thread 0|ResourceReceiveResponse_max_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": false}, "thread 0|ParseHTML": {"current": [10.53125, 12.2373046875, 12.0576171875, 11.415771484375, 10.97021484375, 12.21826171875, 10.753173828125, 12.8056640625, 11.759521484375, 11.318115234375, 11.74951171875, 11.60205078125, 11.706787109375, 12.442626953125, 12.333984375, 12.339111328125, 11.478271484375, 12.22607421875, 11.3095703125, 12.378173828125, 11.210693359375, 10.966064453125, 11.521484375, 11.595458984375, 10.605224609375, 11.548583984375, 11.203857421875, 12.669189453125, 14.543701171875, 11.539306640625, 11.98583984375, 11.7939453125, 14.38232421875, 13.024658203125, 12.485107421875, 12.4794921875, 12.665283203125, 12.208251953125, 11.24560546875, 12.27490234375, 10.717529296875, 11.90283203125, 11.271240234375, 11.01904296875, 11.851806640625, 10.931396484375, 13.03857421875, 13.140869140625, 12.325927734375, 11.94580078125, 13.530517578125, 12.01416015625, 14.11669921875, 10.79296875, 12.67822265625, 11.100830078125, 12.114501953125, 11.15234375, 11.16650390625, 11.115966796875, 14.004638671875, 11.740478515625, 12.189453125, 11.02587890625, 11.53173828125, 11.37744140625, 10.848876953125, 12.899169921875, 11.7548828125, 11.506591796875, 12.85107421875, 13.683837890625, 13.640625, 10.749267578125, 12.82958984375, 10.92041015625, 11.82861328125, 11.07861328125, 11.148681640625, 12.668212890625, 14.199951171875, 12.053955078125, 11.38330078125, 12.132080078125, 16.830322265625, 12.47119140625, 11.44970703125, 11.3876953125, 11.06884765625, 12.711181640625, 10.7509765625, 11.447265625, 11.970458984375, 11.252685546875, 11.887451171875, 11.360107421875, 12.43359375, 11.1298828125, 11.15185546875, 12.560546875], "units": "ms", "important": true}, "thread 0|TimerFire_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.469970703125, 0.18603515625, 0.3291015625, 0.620849609375, 0.35205078125, 0.5322265625, 0.492431640625, 0.349365234375, 0.3388671875, 0.57958984375, 0.357666015625, 0.375244140625, 0.338134765625, 0.25537109375, 0.33056640625, 0.454833984375, 0.41064453125, 0.33642578125, 0.33203125, 0.34326171875, 0.353759765625, 0.622802734375, 0.34716796875, 0.5556640625, 0.330078125, 0.3291015625, 0.7626953125, 0.47216796875, 0.496826171875, 0.557861328125, 0.431396484375, 0.46826171875, 0.350341796875, 0.6728515625, 0.33544921875, 0.22021484375, 0.3759765625, 0.595458984375, 0.24658203125, 0.547119140625, 0.33544921875, 0.478515625, 0.356201171875, 0.476318359375, 0.355224609375, 0.46142578125, 0.324462890625, 0.53076171875, 0.404296875, 0.47998046875, 0.460205078125, 0.376708984375, 0.53173828125, 0.564697265625, 0.385498046875, 0.358154296875, 0.459228515625, 0.553466796875, 0.324951171875, 0.695556640625, 0.51806640625, 0.615966796875, 0.33544921875, 0.529541015625, 0.34912109375, 0.285888671875, 0.442138671875, 0.33935546875, 0.346923828125, 0.610107421875, 0.351806640625, 0.398193359375, 0.34228515625, 0.495361328125, 0.37451171875, 0.693359375, 0.33251953125, 0.641357421875, 0.628173828125, 0.40185546875, 0.394287109375, 0.5244140625, 0.33154296875, 0.4912109375, 0.361572265625, 0.377197265625, 0.612548828125, 0.594970703125, 0.32275390625, 0.5556640625, 0.351806640625, 0.388916015625, 0.469482421875, 0.470947265625, 0.3671875, 0.60888671875, 0.3271484375, 0.477294921875, 0.338623046875, 0.534912109375], "units": "ms", "important": false}, "thread 0|BeginFrame_avg_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": false}, "thread 0|MarkDOMContent_max_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": false}, "thread 0|RecalculateStyles_by_url.http://www.retailmenot.com/view/macys.com": {"current": [54.63232421875, 26.9208984375, 30.532470703125, 30.165771484375, 29.044189453125, 29.272216796875, 28.48876953125, 26.283203125, 29.10791015625, 28.878662109375, 30.003662109375, 29.77978515625, 30.57958984375, 29.228271484375, 29.4873046875, 31.760986328125, 28.5615234375, 29.2900390625, 30.550048828125, 30.708251953125, 29.5859375, 29.140625, 40.12548828125, 30.01806640625, 28.479248046875, 35.414794921875, 28.563232421875, 28.987548828125, 29.09765625, 30.712158203125, 29.753173828125, 30.589599609375, 33.053955078125, 40.960205078125, 29.929443359375, 35.84814453125, 30.22802734375, 31.607177734375, 26.449951171875, 31.087158203125, 26.5615234375, 29.8818359375, 29.240966796875, 28.722412109375, 29.75830078125, 29.690673828125, 28.2451171875, 35.291015625, 29.727783203125, 35.31103515625, 31.341796875, 30.672119140625, 27.1328125, 29.4697265625, 29.22412109375, 26.12451171875, 28.77880859375, 28.8232421875, 28.3525390625, 28.59814453125, 28.202392578125, 29.55078125, 28.453125, 29.494140625, 30.89990234375, 29.263916015625, 29.38232421875, 29.091552734375, 29.411865234375, 29.818115234375, 30.69775390625, 28.918701171875, 27.228271484375, 26.26025390625, 28.4111328125, 28.99462890625, 28.83154296875, 29.0908203125, 30.441650390625, 38.544189453125, 27.162841796875, 42.728759765625, 30.20458984375, 30.211669921875, 31.819580078125, 29.77880859375, 30.075439453125, 29.1298828125, 29.308349609375, 29.35986328125, 28.408935546875, 28.80859375, 28.864990234375, 30.329833984375, 29.7890625, 28.982177734375, 29.67529296875, 28.875, 29.74462890625, 29.29150390625], "units": "ms", "important": false}, "thread 0|MarkFirstPaint_max_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": false}, "thread 0|GCEvent": {"current": [8.51220703125, 6.52490234375, 6.647216796875, 7.209228515625, 7.7421875, 6.458984375, 7.409912109375, 6.5, 8.1591796875, 6.6796875, 7.128173828125, 6.56591796875, 7.866943359375, 7.267822265625, 6.8310546875, 8.2099609375, 6.556884765625, 6.567138671875, 8.19580078125, 6.56494140625, 7.318115234375, 6.61474609375, 7.8720703125, 6.530029296875, 6.470947265625, 8.183837890625, 7.025146484375, 6.488037109375, 6.39404296875, 6.531005859375, 7.565185546875, 6.719970703125, 7.2841796875, 6.576171875, 7.85595703125, 7.470947265625, 8.02294921875, 7.654052734375, 7.73095703125, 6.584716796875, 6.512939453125, 7.698974609375, 6.43505859375, 6.93017578125, 6.657958984375, 7.8427734375, 6.98388671875, 6.7548828125, 7.2568359375, 6.586181640625, 7.681884765625, 6.623046875, 6.634033203125, 7.06787109375, 6.64599609375, 2.969970703125, 8.291015625, 9.09033203125, 6.553955078125, 8.234130859375, 8.09912109375, 6.552001953125, 7.997314453125, 7.009033203125, 6.705078125, 7.467041015625, 7.768310546875, 8.873046875, 7.542236328125, 7.812744140625, 6.60205078125, 8.010009765625, 7.837158203125, 7.036865234375, 7.516357421875, 7.485107421875, 6.972900390625, 7.0400390625, 8.010009765625, 6.976318359375, 8.170166015625, 6.64306640625, 7.93408203125, 10.40283203125, 7.814697265625, 9.229736328125, 7.526123046875, 6.72802734375, 8.41015625, 7.59521484375, 6.762939453125, 7.875244140625, 7.10205078125, 6.68603515625, 6.58203125, 6.652099609375, 7.48486328125, 9.156982421875, 7.68701171875], "units": "ms", "important": true}, "thread 0|MarkLoad_avg": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": true}, "thread 0|TimerFire_max": {"current": [0.06103515625, 0.07568359375, 0.10400390625, 0.23193359375, 0.10107421875, 0.233154296875, 0.171875, 0.107177734375, 0.103759765625, 0.239013671875, 0.114013671875, 0.10693359375, 0.104736328125, 0.106689453125, 0.104736328125, 0.152099609375, 0.104736328125, 0.109130859375, 0.10302734375, 0.10693359375, 0.105224609375, 0.22607421875, 0.1123046875, 0.234130859375, 0.102783203125, 0.10986328125, 0.385009765625, 0.15087890625, 0.193115234375, 0.239990234375, 0.14208984375, 0.156982421875, 0.102294921875, 0.35498046875, 0.099853515625, 0.10791015625, 0.10498046875, 0.276123046875, 0.104736328125, 0.281005859375, 0.10107421875, 0.15283203125, 0.104248046875, 0.169677734375, 0.108154296875, 0.155029296875, 0.101806640625, 0.242919921875, 0.10302734375, 0.161376953125, 0.171142578125, 0.106689453125, 0.236083984375, 0.25341796875, 0.12109375, 0.105224609375, 0.14208984375, 0.23291015625, 0.10107421875, 0.249267578125, 0.2021484375, 0.316650390625, 0.104248046875, 0.228515625, 0.10400390625, 0.108154296875, 0.122802734375, 0.069091796875, 0.10693359375, 0.293701171875, 0.10498046875, 0.118896484375, 0.115966796875, 0.18798828125, 0.104736328125, 0.380859375, 0.10107421875, 0.332763671875, 0.312255859375, 0.114501953125, 0.132080078125, 0.23291015625, 0.103759765625, 0.15673828125, 0.10693359375, 0.107666015625, 0.30078125, 0.162841796875, 0.10595703125, 0.251220703125, 0.103759765625, 0.10888671875, 0.18505859375, 0.1630859375, 0.10986328125, 0.26123046875, 0.10400390625, 0.170166015625, 0.09912109375, 0.236572265625], "units": "ms", "important": true}, "thread 0|TimerFire_avg": {"current": [0.0335693359375, 0.03720703125, 0.036566840277777776, 0.06898328993055555, 0.039116753472222224, 0.059136284722222224, 0.05471462673611111, 0.038818359375, 0.037651909722222224, 0.06439887152777778, 0.039740668402777776, 0.041693793402777776, 0.03757052951388889, 0.042561848958333336, 0.03672960069444445, 0.050537109375, 0.04562717013888889, 0.03738064236111111, 0.03689236111111111, 0.038140190972222224, 0.039306640625, 0.06920030381944445, 0.03857421875, 0.06174045138888889, 0.036675347222222224, 0.036566840277777776, 0.0847439236111111, 0.05246310763888889, 0.05520290798611111, 0.06198459201388889, 0.047932942708333336, 0.05202907986111111, 0.03892686631944445, 0.0841064453125, 0.037272135416666664, 0.04404296875, 0.04177517361111111, 0.0595458984375, 0.041097005208333336, 0.068389892578125, 0.037272135416666664, 0.053168402777777776, 0.03957790798611111, 0.052924262152777776, 0.039469401041666664, 0.05126953125, 0.040557861328125, 0.05897352430555555, 0.044921875, 0.05333116319444445, 0.05113389756944445, 0.04185655381944445, 0.05908203125, 0.062744140625, 0.04283311631944445, 0.039794921875, 0.051025390625, 0.06149631076388889, 0.03610568576388889, 0.07728407118055555, 0.057562934027777776, 0.06844075520833333, 0.037272135416666664, 0.058837890625, 0.03879123263888889, 0.035736083984375, 0.049126519097222224, 0.03770616319444445, 0.03854709201388889, 0.06778971354166667, 0.03908962673611111, 0.044243706597222224, 0.038031684027777776, 0.05504014756944445, 0.04161241319444445, 0.07703993055555555, 0.036946614583333336, 0.0712619357638889, 0.0697970920138889, 0.05023193359375, 0.04380967881944445, 0.058268229166666664, 0.03683810763888889, 0.05457899305555555, 0.04017469618055555, 0.041910807291666664, 0.06806098090277778, 0.06610785590277778, 0.03586154513888889, 0.06174045138888889, 0.03908962673611111, 0.043212890625, 0.052164713541666664, 0.052327473958333336, 0.04079861111111111, 0.0676540798611111, 0.03634982638888889, 0.053032769097222224, 0.03762478298611111, 0.05943467881944445], "units": "ms", "important": true}, "thread 0|ResourceSendRequest_max": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": true}, "thread 0|Layout": {"current": [49.38671875, 32.467041015625, 31.747802734375, 32.565673828125, 33.624267578125, 30.691650390625, 31.8408203125, 30.7646484375, 32.452880859375, 31.571044921875, 32.812744140625, 32.343017578125, 33.237060546875, 32.27099609375, 33.0400390625, 32.894287109375, 33.216796875, 32.65771484375, 33.4560546875, 32.59814453125, 35.716796875, 32.76220703125, 33.7529296875, 31.806640625, 30.800537109375, 32.544189453125, 30.945068359375, 31.75, 30.8037109375, 33.68017578125, 30.808837890625, 33.302978515625, 32.708251953125, 32.8671875, 31.961181640625, 32.22900390625, 33.153564453125, 32.914306640625, 30.786865234375, 32.810791015625, 30.18798828125, 32.4658203125, 32.05517578125, 31.960205078125, 32.087646484375, 31.5302734375, 30.794921875, 32.4765625, 31.12890625, 32.315673828125, 32.317626953125, 31.213134765625, 31.995361328125, 32.263671875, 31.144287109375, 31.882080078125, 32.989013671875, 30.648193359375, 30.599609375, 30.7265625, 31.546142578125, 32.353759765625, 30.29052734375, 32.56787109375, 32.435791015625, 31.14794921875, 32.8583984375, 32.401611328125, 32.5263671875, 32.756591796875, 33.279541015625, 31.03369140625, 30.98046875, 30.84375, 31.104736328125, 33.662841796875, 32.555908203125, 30.969482421875, 31.101318359375, 33.10009765625, 31.77099609375, 34.344970703125, 30.989013671875, 32.724609375, 35.0390625, 32.460693359375, 33.64453125, 32.486083984375, 32.341064453125, 32.793701171875, 32.23779296875, 31.83447265625, 33.024658203125, 32.962890625, 33.427001953125, 32.156005859375, 31.5068359375, 32.456787109375, 32.883544921875, 31.27099609375], "units": "ms", "important": true}, "thread 0|ResourceReceiveResponse_avg": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": true}, "thread 0|DecodeImage_avg": {"current": [0.8707101004464286, 1.772705078125], "units": "ms", "important": true}, "thread 0|Paint_avg": {"current": [4.687174479166667, 2.942195012019231, 3.549715909090909, 3.187762920673077, 3.228327824519231, 3.12518310546875, 3.2474772135416665, 3.271262428977273, 3.1272989908854165, 3.061260516826923, 2.9980265299479165, 3.025634765625, 3.0250713641826925, 3.0589111328125, 2.979701450892857, 2.9993082682291665, 3.0940464564732144, 3.3101917613636362, 2.9584437779017856, 3.0457669771634617, 2.901157924107143, 3.1095377604166665, 3.2443033854166665, 3.145751953125, 3.1173377403846154, 3.2665349786931817, 3.2164510091145835, 3.17706298828125, 3.27142333984375, 2.9876011439732144, 3.2893798828125, 2.8760463169642856, 2.942570612980769, 3.3020685369318183, 3.1303507486979165, 3.35361328125, 3.0416085379464284, 3.2003079927884617, 3.604766845703125, 2.9921061197916665, 3.10882568359375, 2.8995079627403846, 2.9625244140625, 3.0543619791666665, 3.1465594951923075, 3.4923650568181817, 3.4134033203125, 3.2414347330729165, 3.1773885091145835, 3.18145751953125, 3.3195356889204546, 3.1410381610576925, 2.89813232421875, 2.8726981026785716, 3.309969815340909, 3.294411399147727, 2.9808819110576925, 3.1792367788461537, 3.541748046875, 3.0847342354910716, 2.988037109375, 3.1965738932291665, 3.1863902698863638, 2.899151141826923, 3.1934814453125, 3.5500732421875, 3.1116473858173075, 3.15924072265625, 2.8221609933035716, 2.9193115234375, 3.139439174107143, 3.233132102272727, 3.29736328125, 3.404807350852273, 3.1111966646634617, 2.842006138392857, 2.9993082682291665, 3.191349909855769, 3.378884055397727, 3.41259765625, 2.9749661959134617, 2.9630220853365383, 3.1710205078125, 3.1680908203125, 3.27734375, 2.911533900669643, 2.882305438701923, 2.99322509765625, 3.1614145132211537, 2.851231166294643, 3.0267740885416665, 3.29620361328125, 3.086688701923077, 3.254638671875, 3.1312725360576925, 3.24139404296875, 3.309903231534091, 2.901454380580357, 2.9007098858173075, 3.1477457682291665], "units": "ms", "important": true}, "thread 0|ScheduleStyleRecalculation": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": true}, "thread 0|FunctionCall": {"current": [20.55126953125, 5.776611328125, 12.129150390625, 11.498779296875, 11.266845703125, 11.701171875, 14.718017578125, 12.402099609375, 12.052978515625, 12.591064453125, 11.73486328125, 12.0634765625, 12.843505859375, 11.7021484375, 14.87158203125, 11.483642578125, 11.812744140625, 12.74169921875, 11.983154296875, 12.120361328125, 12.615478515625, 12.363525390625, 12.873291015625, 12.504150390625, 12.182373046875, 12.359619140625, 13.66650390625, 12.086669921875, 12.064453125, 12.906005859375, 12.097412109375, 12.448486328125, 12.052734375, 12.676025390625, 12.69677734375, 3.791259765625, 12.364013671875, 11.837158203125, 10.8544921875, 12.774658203125, 12.130615234375, 11.798828125, 11.428955078125, 12.756103515625, 12.11376953125, 12.0517578125, 13.026611328125, 12.3583984375, 12.036376953125, 11.097412109375, 12.802978515625, 13.935302734375, 12.648681640625, 11.5732421875, 12.484375, 15.205322265625, 13.683349609375, 14.914794921875, 13.389892578125, 12.95654296875, 13.41015625, 12.0732421875, 12.393798828125, 12.6142578125, 11.5986328125, 12.113525390625, 12.089599609375, 14.067626953125, 12.5009765625, 12.138427734375, 12.2119140625, 12.40234375, 12.610107421875, 11.953857421875, 13.300048828125, 12.625244140625, 13.044921875, 12.0771484375, 11.5546875, 13.616455078125, 12.57275390625, 13.111328125, 12.591064453125, 12.685546875, 15.8994140625, 12.91552734375, 13.651611328125, 13.59033203125, 11.803466796875, 12.840087890625, 12.451416015625, 13.841552734375, 12.2021484375, 12.47998046875, 13.41748046875, 14.68017578125, 12.173828125, 12.38134765625, 12.6435546875, 13.1337890625], "units": "ms", "important": true}, "thread 0|EventDispatch_max": {"current": [0.161865234375, 0.2529296875, 0.326171875, 0.222900390625, 0.241943359375, 0.218994140625, 0.19873046875, 0.22705078125, 0.221923828125, 0.19580078125, 0.376953125, 0.17919921875, 0.18212890625, 0.22802734375, 0.5390625, 0.21337890625, 0.23779296875, 0.18408203125, 0.1826171875, 0.19287109375, 0.388916015625, 0.185791015625, 0.235107421875, 0.26806640625, 0.19091796875, 0.240966796875, 0.368896484375, 0.271728515625, 0.31298828125, 0.190185546875, 0.394287109375, 0.177978515625, 0.390869140625, 0.320068359375, 0.462158203125, 0.10986328125, 0.370849609375, 0.195068359375, 0.3896484375, 0.269775390625, 0.34716796875, 0.31298828125, 0.316162109375, 0.17822265625, 0.4521484375, 0.2529296875, 0.294677734375, 0.4384765625, 0.31201171875, 0.180908203125, 0.449951171875, 0.21484375, 0.3828125, 0.286865234375, 0.330078125, 0.3369140625, 0.34130859375, 0.177001953125, 0.214111328125, 0.228759765625, 0.22900390625, 0.187744140625, 0.18408203125, 0.229248046875, 0.189208984375, 0.223876953125, 0.264892578125, 0.18798828125, 0.223876953125, 0.25537109375, 0.333984375, 0.35693359375, 0.259765625, 0.196044921875, 0.1982421875, 0.325439453125, 0.23974609375, 0.218994140625, 0.224853515625, 0.234619140625, 0.18310546875, 0.454345703125, 0.184814453125, 0.369384765625, 0.2822265625, 0.22900390625, 0.22802734375, 0.18603515625, 0.186767578125, 0.237060546875, 0.18408203125, 0.4189453125, 0.262939453125, 0.290771484375, 0.264892578125, 0.44091796875, 0.184326171875, 0.47509765625, 0.186767578125, 0.18212890625], "units": "ms", "important": true}, "thread 0|ResourceFinish_max": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": true}, "thread 0|DecodeImage_avg_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.8707101004464286, 1.772705078125], "units": "ms", "important": false}, "thread 0|PaintSetup_avg_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.092041015625, 0.12884521484375, 0.231689453125, 0.1552001953125, 0.144140625, 0.172149658203125, 0.176422119140625, 0.17122395833333334, 0.180816650390625, 0.1749267578125, 0.1437744140625, 0.1484619140625, 0.1461181640625, 0.1742892795138889, 0.1642822265625, 0.149072265625, 0.14609375, 0.180938720703125, 0.148828125, 0.1482666015625, 0.1690673828125, 0.15703125, 0.244171142578125, 0.1842041015625, 0.178955078125, 0.182159423828125, 0.180877685546875, 0.181884765625, 0.186248779296875, 0.1859619140625, 0.18572998046875, 0.1509521484375, 0.1789306640625, 0.183685302734375, 0.182159423828125, 0.18096923828125, 0.1731689453125, 0.18304443359375, 0.18511962890625, 0.1877983940972222, 0.167236328125, 0.1536376953125, 0.1581787109375, 0.1840087890625, 0.184661865234375, 0.180572509765625, 0.181121826171875, 0.180938720703125, 0.1800537109375, 0.1776123046875, 0.181427001953125, 0.184112548828125, 0.1502197265625, 0.14921875, 0.172210693359375, 0.1896701388888889, 0.1594970703125, 0.18280029296875, 0.182586669921875, 0.180633544921875, 0.1534423828125, 0.18292236328125, 0.17926025390625, 0.147216796875, 0.178253173828125, 0.20733642578125, 0.15712890625, 0.178558349609375, 0.149560546875, 0.1470458984375, 0.1477294921875, 0.18341064453125, 0.1694064670138889, 0.1738009982638889, 0.18927001953125, 0.1501708984375, 0.1462158203125, 0.183135986328125, 0.177978515625, 0.22503662109375, 0.1719482421875, 0.154541015625, 0.17620849609375, 0.179962158203125, 0.1929443359375, 0.172705078125, 0.1505126953125, 0.1484619140625, 0.156396484375, 0.1472412109375, 0.1493408203125, 0.1829833984375, 0.1484375, 0.1810302734375, 0.181610107421875, 0.18438720703125, 0.19232177734375, 0.151220703125, 0.153857421875, 0.186859130859375], "units": "ms", "important": false}, "thread 0|TimerFire_avg_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.0335693359375, 0.03720703125, 0.036566840277777776, 0.06898328993055555, 0.039116753472222224, 0.059136284722222224, 0.05471462673611111, 0.038818359375, 0.037651909722222224, 0.06439887152777778, 0.039740668402777776, 0.041693793402777776, 0.03757052951388889, 0.042561848958333336, 0.03672960069444445, 0.050537109375, 0.04562717013888889, 0.03738064236111111, 0.03689236111111111, 0.038140190972222224, 0.039306640625, 0.06920030381944445, 0.03857421875, 0.06174045138888889, 0.036675347222222224, 0.036566840277777776, 0.0847439236111111, 0.05246310763888889, 0.05520290798611111, 0.06198459201388889, 0.047932942708333336, 0.05202907986111111, 0.03892686631944445, 0.0841064453125, 0.037272135416666664, 0.04404296875, 0.04177517361111111, 0.0595458984375, 0.041097005208333336, 0.068389892578125, 0.037272135416666664, 0.053168402777777776, 0.03957790798611111, 0.052924262152777776, 0.039469401041666664, 0.05126953125, 0.040557861328125, 0.05897352430555555, 0.044921875, 0.05333116319444445, 0.05113389756944445, 0.04185655381944445, 0.05908203125, 0.062744140625, 0.04283311631944445, 0.039794921875, 0.051025390625, 0.06149631076388889, 0.03610568576388889, 0.07728407118055555, 0.057562934027777776, 0.06844075520833333, 0.037272135416666664, 0.058837890625, 0.03879123263888889, 0.035736083984375, 0.049126519097222224, 0.03770616319444445, 0.03854709201388889, 0.06778971354166667, 0.03908962673611111, 0.044243706597222224, 0.038031684027777776, 0.05504014756944445, 0.04161241319444445, 0.07703993055555555, 0.036946614583333336, 0.0712619357638889, 0.0697970920138889, 0.05023193359375, 0.04380967881944445, 0.058268229166666664, 0.03683810763888889, 0.05457899305555555, 0.04017469618055555, 0.041910807291666664, 0.06806098090277778, 0.06610785590277778, 0.03586154513888889, 0.06174045138888889, 0.03908962673611111, 0.043212890625, 0.052164713541666664, 0.052327473958333336, 0.04079861111111111, 0.0676540798611111, 0.03634982638888889, 0.053032769097222224, 0.03762478298611111, 0.05943467881944445], "units": "ms", "important": false}, "thread 0|TimerFire": {"current": [0.469970703125, 0.18603515625, 0.3291015625, 0.620849609375, 0.35205078125, 0.5322265625, 0.492431640625, 0.349365234375, 0.3388671875, 0.57958984375, 0.357666015625, 0.375244140625, 0.338134765625, 0.25537109375, 0.33056640625, 0.454833984375, 0.41064453125, 0.33642578125, 0.33203125, 0.34326171875, 0.353759765625, 0.622802734375, 0.34716796875, 0.5556640625, 0.330078125, 0.3291015625, 0.7626953125, 0.47216796875, 0.496826171875, 0.557861328125, 0.431396484375, 0.46826171875, 0.350341796875, 0.6728515625, 0.33544921875, 0.22021484375, 0.3759765625, 0.595458984375, 0.24658203125, 0.547119140625, 0.33544921875, 0.478515625, 0.356201171875, 0.476318359375, 0.355224609375, 0.46142578125, 0.324462890625, 0.53076171875, 0.404296875, 0.47998046875, 0.460205078125, 0.376708984375, 0.53173828125, 0.564697265625, 0.385498046875, 0.358154296875, 0.459228515625, 0.553466796875, 0.324951171875, 0.695556640625, 0.51806640625, 0.615966796875, 0.33544921875, 0.529541015625, 0.34912109375, 0.285888671875, 0.442138671875, 0.33935546875, 0.346923828125, 0.610107421875, 0.351806640625, 0.398193359375, 0.34228515625, 0.495361328125, 0.37451171875, 0.693359375, 0.33251953125, 0.641357421875, 0.628173828125, 0.40185546875, 0.394287109375, 0.5244140625, 0.33154296875, 0.4912109375, 0.361572265625, 0.377197265625, 0.612548828125, 0.594970703125, 0.32275390625, 0.5556640625, 0.351806640625, 0.388916015625, 0.469482421875, 0.470947265625, 0.3671875, 0.60888671875, 0.3271484375, 0.477294921875, 0.338623046875, 0.534912109375], "units": "ms", "important": true}, "thread 0|RecalculateStyles_avg": {"current": [9.105387369791666, 6.730224609375, 5.0887451171875, 4.309395926339286, 3.630523681640625, 4.878702799479167, 4.748128255208333, 5.256640625, 4.851318359375, 4.125523158482143, 4.286237444196429, 4.254255022321429, 4.368512834821429, 5.845654296875, 3.6859130859375, 4.537283761160714, 4.080217633928571, 4.881673177083333, 4.364292689732143, 4.386893136160714, 3.6982421875, 3.642578125, 5.732212611607143, 5.003011067708333, 4.068464006696429, 5.059256417410714, 4.760538736979167, 4.831258138020833, 4.156808035714286, 3.839019775390625, 4.9588623046875, 4.369942801339286, 4.721993582589286, 5.851457868303571, 4.988240559895833, 7.16962890625, 4.318289620535714, 4.515311104910714, 6.61248779296875, 4.441022600446429, 5.3123046875, 4.268833705357143, 3.655120849609375, 4.103201729910714, 4.251185825892857, 4.948445638020833, 5.6490234375, 5.041573660714286, 4.954630533854167, 5.885172526041667, 5.2236328125, 5.112019856770833, 3.8761160714285716, 3.6837158203125, 4.870686848958333, 5.22490234375, 4.111258370535714, 4.117606026785714, 4.725423177083333, 4.08544921875, 4.028913225446429, 4.221540178571429, 4.7421875, 3.686767578125, 5.149983723958333, 5.852783203125, 4.197474888392857, 4.155936104910714, 3.676483154296875, 3.727264404296875, 3.83721923828125, 4.819783528645833, 5.445654296875, 5.25205078125, 4.735188802083333, 3.62432861328125, 4.118791852678571, 4.155831473214286, 5.0736083984375, 6.424031575520833, 4.527140299479167, 5.341094970703125, 5.034098307291667, 5.0352783203125, 4.545654296875, 3.72235107421875, 3.759429931640625, 4.161411830357143, 4.186907087053571, 3.66998291015625, 4.058419363839286, 4.801432291666667, 4.123570033482143, 5.054972330729167, 4.96484375, 4.140311104910714, 4.945882161458333, 4.125, 4.249232700892857, 4.184500558035714], "units": "ms", "important": true}, "thread 0|PaintSetup_by_url.http://www.retailmenot.com/view/macys.com": {"current": [1.28857421875, 1.546142578125, 1.853515625, 1.552001953125, 1.44140625, 1.377197265625, 1.411376953125, 1.541015625, 1.446533203125, 1.3994140625, 1.437744140625, 1.484619140625, 1.461181640625, 1.568603515625, 1.642822265625, 1.49072265625, 1.4609375, 1.447509765625, 1.48828125, 1.482666015625, 1.690673828125, 1.5703125, 1.953369140625, 1.4736328125, 1.431640625, 1.457275390625, 1.447021484375, 1.455078125, 1.489990234375, 1.859619140625, 1.48583984375, 1.509521484375, 1.789306640625, 1.469482421875, 1.457275390625, 1.44775390625, 1.731689453125, 1.46435546875, 1.48095703125, 1.690185546875, 1.505126953125, 1.536376953125, 1.581787109375, 1.840087890625, 1.477294921875, 1.444580078125, 1.448974609375, 1.447509765625, 1.4404296875, 1.4208984375, 1.451416015625, 1.472900390625, 1.502197265625, 1.4921875, 1.377685546875, 1.70703125, 1.594970703125, 1.46240234375, 1.460693359375, 1.445068359375, 1.534423828125, 1.46337890625, 1.43408203125, 1.47216796875, 1.426025390625, 1.65869140625, 1.5712890625, 1.428466796875, 1.49560546875, 1.470458984375, 1.477294921875, 1.46728515625, 1.524658203125, 1.564208984375, 1.51416015625, 1.501708984375, 1.462158203125, 1.465087890625, 1.423828125, 1.80029296875, 1.719482421875, 1.54541015625, 1.40966796875, 1.439697265625, 1.929443359375, 1.72705078125, 1.505126953125, 1.484619140625, 1.56396484375, 1.472412109375, 1.493408203125, 1.4638671875, 1.484375, 1.4482421875, 1.452880859375, 1.47509765625, 1.53857421875, 1.51220703125, 1.53857421875, 1.494873046875], "units": "ms", "important": false}, "thread 0|CompositeLayers_by_url.http://www.retailmenot.com/view/macys.com": {"current": [16.98974609375, 12.588623046875, 12.03515625, 12.896240234375, 13.911865234375, 13.57666015625, 12.3740234375, 11.99267578125, 12.106689453125, 13.034912109375, 12.7998046875, 12.766845703125, 12.972900390625, 10.676513671875, 13.92724609375, 12.526123046875, 13.434326171875, 12.53662109375, 13.19580078125, 12.656005859375, 13.48388671875, 12.852294921875, 12.11669921875, 11.46142578125, 12.670166015625, 11.867431640625, 11.572265625, 12.0986328125, 12.660888671875, 13.843994140625, 10.79638671875, 13.309814453125, 12.656982421875, 12.01123046875, 11.8427734375, 10.642822265625, 15.154052734375, 13.34716796875, 9.331787109375, 12.04345703125, 12.464599609375, 13.018798828125, 13.548095703125, 12.188720703125, 12.78466796875, 11.583740234375, 11.01171875, 11.8837890625, 12.18408203125, 12.68212890625, 11.25439453125, 12.37744140625, 12.250244140625, 13.52392578125, 11.39892578125, 11.471435546875, 13.1435546875, 13.341064453125, 11.159912109375, 13.4189453125, 13.201416015625, 12.660888671875, 11.201416015625, 12.85791015625, 12.06201171875, 11.173095703125, 12.200439453125, 11.587158203125, 13.740478515625, 12.1171875, 13.723388671875, 11.702392578125, 11.048583984375, 11.2099609375, 12.821533203125, 13.4306640625, 11.9921875, 12.968505859375, 11.318115234375, 11.35693359375, 12.85791015625, 12.959228515625, 11.896728515625, 12.571533203125, 14.85400390625, 13.88916015625, 13.053466796875, 13.45458984375, 12.338134765625, 13.526611328125, 12.285400390625, 12.067138671875, 14.125, 11.702392578125, 12.060546875, 12.107421875, 10.8818359375, 13.3828125, 12.559326171875, 12.15966796875], "units": "ms", "important": false}, "thread 0|Layout_avg_by_url.http://www.retailmenot.com/view/macys.com": {"current": [12.3466796875, 8.11676025390625, 7.93695068359375, 6.513134765625, 6.724853515625, 7.67291259765625, 7.960205078125, 10.2548828125, 8.11322021484375, 7.89276123046875, 6.562548828125, 6.468603515625, 6.647412109375, 8.0677490234375, 6.6080078125, 6.578857421875, 6.643359375, 8.1644287109375, 6.6912109375, 6.51962890625, 7.143359375, 6.55244140625, 8.438232421875, 7.95166015625, 7.70013427734375, 8.13604736328125, 7.73626708984375, 7.9375, 7.700927734375, 6.73603515625, 7.70220947265625, 6.660595703125, 6.541650390625, 8.216796875, 7.99029541015625, 8.0572509765625, 6.630712890625, 8.22857666015625, 10.262288411458334, 6.562158203125, 10.062662760416666, 6.4931640625, 6.41103515625, 6.392041015625, 8.02191162109375, 7.882568359375, 7.69873046875, 8.119140625, 7.7822265625, 8.07891845703125, 8.07940673828125, 7.80328369140625, 7.99884033203125, 6.452734375, 7.78607177734375, 10.627360026041666, 6.597802734375, 7.66204833984375, 7.64990234375, 7.681640625, 7.88653564453125, 8.08843994140625, 7.5726318359375, 6.51357421875, 8.10894775390625, 7.7869873046875, 6.5716796875, 6.480322265625, 6.5052734375, 6.551318359375, 6.655908203125, 7.7584228515625, 10.326822916666666, 10.28125, 7.77618408203125, 6.732568359375, 6.511181640625, 7.74237060546875, 7.77532958984375, 8.2750244140625, 7.9427490234375, 6.868994140625, 7.74725341796875, 8.18115234375, 7.0078125, 6.492138671875, 6.72890625, 6.497216796875, 6.468212890625, 6.558740234375, 6.44755859375, 7.9586181640625, 6.604931640625, 8.24072265625, 8.35675048828125, 8.03900146484375, 7.876708984375, 6.491357421875, 6.576708984375, 7.8177490234375], "units": "ms", "important": false}, "load_time_by_url.http://www.retailmenot.com/view/macys.com": {"current": [1175.0, 619.0, 442.0, 406.0, 403.0, 406.0, 408.0, 390.0, 421.0, 408.0, 410.0, 418.0, 415.0, 395.0, 461.0, 443.0, 409.0, 407.0, 401.0, 364.0, 411.0, 404.0, 416.0, 425.0, 424.0, 433.0, 448.0, 418.0, 406.0, 404.0, 427.0, 364.0, 399.0, 426.0, 458.0, 374.0, 460.0, 410.0, 394.0, 466.0, 423.0, 393.0, 401.0, 352.0, 419.0, 426.0, 398.0, 471.0, 449.0, 412.0, 414.0, 396.0, 379.0, 408.0, 351.0, 358.0, 361.0, 402.0, 404.0, 403.0, 430.0, 426.0, 417.0, 402.0, 429.0, 401.0, 428.0, 358.0, 423.0, 403.0, 416.0, 425.0, 387.0, 403.0, 360.0, 358.0, 423.0, 416.0, 411.0, 419.0, 451.0, 434.0, 400.0, 370.0, 375.0, 425.0, 414.0, 429.0, 419.0, 365.0, 410.0, 419.0, 417.0, 404.0, 399.0, 419.0, 372.0, 409.0, 403.0, 423.0], "units": "ms", "important": false}, "thread 0|InvalidateLayout": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": true}, "thread 0|MarkDOMContent_avg_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": false}, "thread 0|GCEvent_max_by_url.http://www.retailmenot.com/view/macys.com": {"current": [6.92529296875, 6.52490234375, 6.647216796875, 7.209228515625, 7.7421875, 6.458984375, 7.409912109375, 6.5, 8.1591796875, 6.6796875, 7.128173828125, 6.56591796875, 7.866943359375, 7.267822265625, 6.8310546875, 8.2099609375, 6.556884765625, 6.567138671875, 8.19580078125, 6.56494140625, 7.318115234375, 6.61474609375, 7.8720703125, 6.530029296875, 6.470947265625, 8.183837890625, 7.025146484375, 6.488037109375, 6.39404296875, 6.531005859375, 7.565185546875, 6.719970703125, 7.2841796875, 6.576171875, 7.85595703125, 7.470947265625, 8.02294921875, 7.654052734375, 7.73095703125, 6.584716796875, 6.512939453125, 7.698974609375, 6.43505859375, 6.93017578125, 6.657958984375, 7.8427734375, 6.98388671875, 6.7548828125, 7.2568359375, 6.586181640625, 7.681884765625, 6.623046875, 6.634033203125, 7.06787109375, 6.64599609375, 2.969970703125, 8.291015625, 6.56005859375, 6.553955078125, 6.69921875, 8.09912109375, 6.552001953125, 6.478271484375, 7.009033203125, 6.705078125, 7.467041015625, 6.880126953125, 8.873046875, 7.542236328125, 7.812744140625, 5.757080078125, 8.010009765625, 7.837158203125, 7.036865234375, 7.516357421875, 6.088134765625, 6.972900390625, 7.0400390625, 8.010009765625, 6.976318359375, 6.6162109375, 6.64306640625, 7.93408203125, 10.40283203125, 7.814697265625, 7.89794921875, 7.526123046875, 6.72802734375, 8.41015625, 7.59521484375, 6.762939453125, 6.2880859375, 7.10205078125, 6.68603515625, 6.58203125, 6.652099609375, 7.48486328125, 7.7509765625, 7.68701171875], "units": "ms", "important": false}, "thread 0|ScheduleStyleRecalculation_max": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": true}, "thread 0|ParseHTML_avg": {"current": [2.6328125, 0.8740931919642857, 0.6698676215277778, 0.6342095269097222, 0.577379728618421, 0.64306640625, 0.5659565172697368, 0.6739823190789473, 0.6533067491319444, 0.595690275493421, 0.618395353618421, 0.6106342516447368, 0.6503770616319444, 0.6548751027960527, 0.6852213541666666, 0.6855061848958334, 0.6041195518092105, 0.6434775904605263, 0.6283094618055556, 0.6514828330592105, 0.5900364925986842, 0.577161287006579, 0.6400824652777778, 0.6102873149671053, 0.5891791449652778, 0.6078202097039473, 0.6224365234375, 0.6667994449013158, 0.7654579564144737, 0.6073319284539473, 0.6308336759868421, 0.6552191840277778, 0.7569644325657895, 0.6855083264802632, 0.6936170789930556, 0.6568153782894737, 0.6665938527960527, 0.6425395764802632, 0.5918739720394737, 0.6460474917763158, 0.5640804893092105, 0.6612684461805556, 0.6261800130208334, 0.5799496299342105, 0.623779296875, 0.6072998046875, 0.6862407483552632, 0.6916246916118421, 0.6487330386513158, 0.6287263569078947, 0.7516954210069444, 0.63232421875, 0.7429841694078947, 0.599609375, 0.704345703125, 0.5842542146381579, 0.6376053659539473, 0.5869654605263158, 0.5877107319078947, 0.5850508840460527, 0.7780354817708334, 0.6522488064236112, 0.6415501644736842, 0.580309416118421, 0.6406521267361112, 0.5988127055921053, 0.6027153862847222, 0.6789036800986842, 0.6530490451388888, 0.6056100945723685, 0.6763723273026315, 0.7602132161458334, 0.7578125, 0.5657509251644737, 0.6752415707236842, 0.5747584292763158, 0.62255859375, 0.615478515625, 0.5867727179276315, 0.666748046875, 0.7473658511513158, 0.6696641710069444, 0.59912109375, 0.6385305304276315, 0.8858064350328947, 0.6928439670138888, 0.6026161595394737, 0.599352384868421, 0.5825709292763158, 0.6690095600328947, 0.5658408717105263, 0.6024876644736842, 0.6300241570723685, 0.6251491970486112, 0.6256553248355263, 0.597900390625, 0.6907552083333334, 0.5857833059210527, 0.6195475260416666, 0.6610814144736842], "units": "ms", "important": true}, "thread 0|BeginFrame_max": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": true}, "thread 0|ResourceReceivedData_avg_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.010949337121212122, 0.01054944490131579, 0.015171595982142858, 0.008510044642857142, 0.0078125, 0.009765625, 0.0096435546875, 0.00970458984375, 0.010009765625, 0.0103759765625, 0.014373779296875, 0.00921630859375, 0.010567801339285714, 0.010467529296875, 0.009521484375, 0.012102399553571428, 0.00927734375, 0.01025390625, 0.010846819196428572, 0.009490966796875, 0.012237548828125, 0.010284423828125, 0.014404296875, 0.011322021484375, 0.009347098214285714, 0.009735107421875, 0.014613560267857142, 0.01153564453125, 0.00909423828125, 0.0081787109375, 0.00799560546875, 0.011509486607142858, 0.0096435546875, 0.012969970703125, 0.014578683035714286, 0.0111083984375, 0.0130615234375, 0.00909423828125, 0.009124755859375, 0.01202392578125, 0.012939453125, 0.014020647321428572, 0.011090959821428572, 0.00823974609375, 0.010833740234375, 0.008823939732142858, 0.0087890625, 0.01373291015625, 0.01263427734375, 0.010345458984375, 0.013218470982142858, 0.0093994140625, 0.011138916015625, 0.008963448660714286, 0.009033203125, 0.01007080078125, 0.0089111328125, 0.010711669921875, 0.010345458984375, 0.01373291015625, 0.009800502232142858, 0.011509486607142858, 0.016143798828125, 0.00762939453125, 0.010986328125, 0.012237548828125, 0.012381417410714286, 0.00970458984375, 0.011369977678571428, 0.01031494140625, 0.0096435546875, 0.010044642857142858, 0.012102399553571428, 0.008026123046875, 0.009002685546875, 0.011016845703125, 0.008453369140625, 0.011544363839285714, 0.009765625, 0.0146484375, 0.011199951171875, 0.009242466517857142, 0.0101318359375, 0.01336669921875, 0.011138916015625, 0.013009207589285714, 0.01055908203125, 0.011993408203125, 0.01123046875, 0.0091552734375, 0.00836181640625, 0.00946044921875, 0.008819580078125, 0.010881696428571428, 0.010986328125, 0.010406494140625, 0.009974888392857142, 0.010009765625, 0.009381975446428572, 0.009918212890625], "units": "ms", "important": false}, "thread 0|FunctionCall_avg_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.8935334578804348, 0.4443547175480769, 0.7580718994140625, 0.7186737060546875, 0.7041778564453125, 0.7313232421875, 0.9198760986328125, 0.7751312255859375, 0.7533111572265625, 0.7869415283203125, 0.733428955078125, 0.75396728515625, 0.8027191162109375, 0.9751790364583334, 0.929473876953125, 0.7177276611328125, 0.7382965087890625, 0.796356201171875, 0.7489471435546875, 0.7575225830078125, 0.7884674072265625, 0.7727203369140625, 0.8045806884765625, 0.7815093994140625, 0.7613983154296875, 0.823974609375, 0.854156494140625, 0.7554168701171875, 0.7540283203125, 0.8066253662109375, 0.7560882568359375, 0.7780303955078125, 0.7532958984375, 0.9054303850446429, 0.793548583984375, 0.3446599786931818, 0.7727508544921875, 0.6963034237132353, 0.904541015625, 0.8516438802083334, 0.7581634521484375, 0.7374267578125, 0.7143096923828125, 0.7972564697265625, 0.757110595703125, 0.75323486328125, 0.9304722377232143, 0.77239990234375, 0.7522735595703125, 0.6935882568359375, 0.8001861572265625, 0.8709564208984375, 0.7905426025390625, 0.72332763671875, 0.7802734375, 0.9503326416015625, 0.8552093505859375, 0.9321746826171875, 0.8368682861328125, 0.809783935546875, 0.838134765625, 0.75457763671875, 0.7746124267578125, 0.78839111328125, 0.72491455078125, 0.8652518136160714, 0.7555999755859375, 0.8792266845703125, 0.78131103515625, 0.7586517333984375, 0.76324462890625, 0.775146484375, 0.7881317138671875, 0.7471160888671875, 0.8312530517578125, 0.7890777587890625, 0.8153076171875, 0.75482177734375, 0.72216796875, 0.9726039341517857, 0.785797119140625, 0.8194580078125, 0.7869415283203125, 0.7928466796875, 0.99371337890625, 0.807220458984375, 0.8532257080078125, 0.849395751953125, 0.7377166748046875, 0.8025054931640625, 0.7782135009765625, 0.8650970458984375, 0.76263427734375, 0.779998779296875, 0.838592529296875, 0.917510986328125, 0.7608642578125, 0.773834228515625, 0.79022216796875, 0.82086181640625], "units": "ms", "important": false}, "thread 0|TimerInstall_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": false}, "thread 0|ResourceReceivedData": {"current": [0.361328125, 0.200439453125, 0.106201171875, 0.0595703125, 0.0625, 0.078125, 0.0771484375, 0.07763671875, 0.070068359375, 0.0830078125, 0.114990234375, 0.07373046875, 0.073974609375, 0.083740234375, 0.066650390625, 0.084716796875, 0.07421875, 0.08203125, 0.075927734375, 0.075927734375, 0.097900390625, 0.082275390625, 0.100830078125, 0.090576171875, 0.0654296875, 0.077880859375, 0.102294921875, 0.09228515625, 0.07275390625, 0.0654296875, 0.06396484375, 0.08056640625, 0.0771484375, 0.103759765625, 0.10205078125, 0.0888671875, 0.1044921875, 0.07275390625, 0.072998046875, 0.09619140625, 0.103515625, 0.09814453125, 0.07763671875, 0.06591796875, 0.086669921875, 0.061767578125, 0.0703125, 0.10986328125, 0.10107421875, 0.082763671875, 0.092529296875, 0.0751953125, 0.089111328125, 0.062744140625, 0.063232421875, 0.08056640625, 0.0712890625, 0.085693359375, 0.082763671875, 0.10986328125, 0.068603515625, 0.08056640625, 0.129150390625, 0.06103515625, 0.076904296875, 0.097900390625, 0.086669921875, 0.07763671875, 0.07958984375, 0.08251953125, 0.0771484375, 0.0703125, 0.084716796875, 0.064208984375, 0.072021484375, 0.088134765625, 0.067626953125, 0.080810546875, 0.078125, 0.1171875, 0.089599609375, 0.064697265625, 0.0810546875, 0.10693359375, 0.089111328125, 0.091064453125, 0.08447265625, 0.095947265625, 0.08984375, 0.0732421875, 0.06689453125, 0.07568359375, 0.070556640625, 0.076171875, 0.087890625, 0.083251953125, 0.06982421875, 0.080078125, 0.065673828125, 0.079345703125], "units": "ms", "important": true}, "thread 0|ParseHTML_avg_by_url.http://www.retailmenot.com/view/macys.com": {"current": [2.6328125, 0.8740931919642857, 0.6698676215277778, 0.6342095269097222, 0.577379728618421, 0.64306640625, 0.5659565172697368, 0.6739823190789473, 0.6533067491319444, 0.595690275493421, 0.618395353618421, 0.6106342516447368, 0.6503770616319444, 0.6548751027960527, 0.6852213541666666, 0.6855061848958334, 0.6041195518092105, 0.6434775904605263, 0.6283094618055556, 0.6514828330592105, 0.5900364925986842, 0.577161287006579, 0.6400824652777778, 0.6102873149671053, 0.5891791449652778, 0.6078202097039473, 0.6224365234375, 0.6667994449013158, 0.7654579564144737, 0.6073319284539473, 0.6308336759868421, 0.6552191840277778, 0.7569644325657895, 0.6855083264802632, 0.6936170789930556, 0.6568153782894737, 0.6665938527960527, 0.6425395764802632, 0.5918739720394737, 0.6460474917763158, 0.5640804893092105, 0.6612684461805556, 0.6261800130208334, 0.5799496299342105, 0.623779296875, 0.6072998046875, 0.6862407483552632, 0.6916246916118421, 0.6487330386513158, 0.6287263569078947, 0.7516954210069444, 0.63232421875, 0.7429841694078947, 0.599609375, 0.704345703125, 0.5842542146381579, 0.6376053659539473, 0.5869654605263158, 0.5877107319078947, 0.5850508840460527, 0.7780354817708334, 0.6522488064236112, 0.6415501644736842, 0.580309416118421, 0.6406521267361112, 0.5988127055921053, 0.6027153862847222, 0.6789036800986842, 0.6530490451388888, 0.6056100945723685, 0.6763723273026315, 0.7602132161458334, 0.7578125, 0.5657509251644737, 0.6752415707236842, 0.5747584292763158, 0.62255859375, 0.615478515625, 0.5867727179276315, 0.666748046875, 0.7473658511513158, 0.6696641710069444, 0.59912109375, 0.6385305304276315, 0.8858064350328947, 0.6928439670138888, 0.6026161595394737, 0.599352384868421, 0.5825709292763158, 0.6690095600328947, 0.5658408717105263, 0.6024876644736842, 0.6300241570723685, 0.6251491970486112, 0.6256553248355263, 0.597900390625, 0.6907552083333334, 0.5857833059210527, 0.6195475260416666, 0.6610814144736842], "units": "ms", "important": false}, "thread 0|RecalculateStyles_max": {"current": [54.1591796875, 20.087158203125, 19.1982421875, 20.803955078125, 19.7451171875, 20.255126953125, 19.410888671875, 20.5419921875, 19.653076171875, 19.73974609375, 19.620849609375, 20.40087890625, 19.552001953125, 20.572998046875, 19.96630859375, 20.134033203125, 19.281005859375, 19.942138671875, 20.2451171875, 20.22900390625, 19.286865234375, 19.866943359375, 17.2490234375, 19.779052734375, 19.425048828125, 18.841796875, 19.297119140625, 19.839111328125, 19.864013671875, 20.95703125, 20.60400390625, 20.203125, 18.5390625, 18.2421875, 20.1728515625, 18.689208984375, 19.904052734375, 19.177001953125, 20.6728515625, 20.4619140625, 20.44775390625, 19.392822265625, 19.80517578125, 19.453857421875, 19.72412109375, 19.598876953125, 19.116943359375, 18.630859375, 19.5966796875, 18.906982421875, 20.878173828125, 20.77001953125, 20.8740234375, 19.68994140625, 19.64990234375, 20.3408203125, 19.60888671875, 19.802978515625, 19.251220703125, 19.38427734375, 21.044921875, 19.326171875, 19.27001953125, 20.21923828125, 18.849853515625, 19.97705078125, 19.76416015625, 19.69189453125, 19.64013671875, 19.60400390625, 19.156982421875, 19.744873046875, 21.3759765625, 20.39013671875, 19.2958984375, 19.726806640625, 19.38720703125, 19.97802734375, 20.223876953125, 18.323974609375, 20.5400390625, 19.468994140625, 21.008056640625, 19.876953125, 19.885986328125, 19.787841796875, 19.504150390625, 19.765869140625, 19.760009765625, 19.81591796875, 19.240966796875, 19.619873046875, 19.5126953125, 19.833984375, 19.594970703125, 19.341064453125, 20.56494140625, 19.350830078125, 19.40576171875, 20.199951171875], "units": "ms", "important": true}, "thread 0|MarkFirstPaint_avg": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": true}, "thread 0|ResourceSendRequest_avg_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": false}, "thread 0|MarkDOMContent": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": true}, "thread 0|FunctionCall_by_url.http://www.retailmenot.com/view/macys.com": {"current": [20.55126953125, 5.776611328125, 12.129150390625, 11.498779296875, 11.266845703125, 11.701171875, 14.718017578125, 12.402099609375, 12.052978515625, 12.591064453125, 11.73486328125, 12.0634765625, 12.843505859375, 11.7021484375, 14.87158203125, 11.483642578125, 11.812744140625, 12.74169921875, 11.983154296875, 12.120361328125, 12.615478515625, 12.363525390625, 12.873291015625, 12.504150390625, 12.182373046875, 12.359619140625, 13.66650390625, 12.086669921875, 12.064453125, 12.906005859375, 12.097412109375, 12.448486328125, 12.052734375, 12.676025390625, 12.69677734375, 3.791259765625, 12.364013671875, 11.837158203125, 10.8544921875, 12.774658203125, 12.130615234375, 11.798828125, 11.428955078125, 12.756103515625, 12.11376953125, 12.0517578125, 13.026611328125, 12.3583984375, 12.036376953125, 11.097412109375, 12.802978515625, 13.935302734375, 12.648681640625, 11.5732421875, 12.484375, 15.205322265625, 13.683349609375, 14.914794921875, 13.389892578125, 12.95654296875, 13.41015625, 12.0732421875, 12.393798828125, 12.6142578125, 11.5986328125, 12.113525390625, 12.089599609375, 14.067626953125, 12.5009765625, 12.138427734375, 12.2119140625, 12.40234375, 12.610107421875, 11.953857421875, 13.300048828125, 12.625244140625, 13.044921875, 12.0771484375, 11.5546875, 13.616455078125, 12.57275390625, 13.111328125, 12.591064453125, 12.685546875, 15.8994140625, 12.91552734375, 13.651611328125, 13.59033203125, 11.803466796875, 12.840087890625, 12.451416015625, 13.841552734375, 12.2021484375, 12.47998046875, 13.41748046875, 14.68017578125, 12.173828125, 12.38134765625, 12.6435546875, 13.1337890625], "units": "ms", "important": false}, "thread 0|MarkLoad_max": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": true}, "thread 0|CompositeLayers": {"current": [16.98974609375, 12.588623046875, 12.03515625, 12.896240234375, 13.911865234375, 13.57666015625, 12.3740234375, 11.99267578125, 12.106689453125, 13.034912109375, 12.7998046875, 12.766845703125, 12.972900390625, 10.676513671875, 13.92724609375, 12.526123046875, 13.434326171875, 12.53662109375, 13.19580078125, 12.656005859375, 13.48388671875, 12.852294921875, 12.11669921875, 11.46142578125, 12.670166015625, 11.867431640625, 11.572265625, 12.0986328125, 12.660888671875, 13.843994140625, 10.79638671875, 13.309814453125, 12.656982421875, 12.01123046875, 11.8427734375, 10.642822265625, 15.154052734375, 13.34716796875, 9.331787109375, 12.04345703125, 12.464599609375, 13.018798828125, 13.548095703125, 12.188720703125, 12.78466796875, 11.583740234375, 11.01171875, 11.8837890625, 12.18408203125, 12.68212890625, 11.25439453125, 12.37744140625, 12.250244140625, 13.52392578125, 11.39892578125, 11.471435546875, 13.1435546875, 13.341064453125, 11.159912109375, 13.4189453125, 13.201416015625, 12.660888671875, 11.201416015625, 12.85791015625, 12.06201171875, 11.173095703125, 12.200439453125, 11.587158203125, 13.740478515625, 12.1171875, 13.723388671875, 11.702392578125, 11.048583984375, 11.2099609375, 12.821533203125, 13.4306640625, 11.9921875, 12.968505859375, 11.318115234375, 11.35693359375, 12.85791015625, 12.959228515625, 11.896728515625, 12.571533203125, 14.85400390625, 13.88916015625, 13.053466796875, 13.45458984375, 12.338134765625, 13.526611328125, 12.285400390625, 12.067138671875, 14.125, 11.702392578125, 12.060546875, 12.107421875, 10.8818359375, 13.3828125, 12.559326171875, 12.15966796875], "units": "ms", "important": true}, "thread 0|Program_by_url.http://www.retailmenot.com/view/macys.com": {"current": [67.64208984375, 36.31884765625, 21.570068359375, 22.447509765625, 23.416015625, 22.26123046875, 22.136962890625, 21.732666015625, 22.69873046875, 24.984619140625, 25.432373046875, 25.04248046875, 24.389404296875, 25.260009765625, 23.6923828125, 23.0283203125, 24.8857421875, 25.287353515625, 23.79150390625, 24.14990234375, 28.24072265625, 23.3896484375, 25.29248046875, 24.343017578125, 23.93603515625, 23.21484375, 22.651611328125, 23.4013671875, 23.38818359375, 25.32666015625, 21.878662109375, 21.500732421875, 26.636962890625, 24.240478515625, 24.126708984375, 22.395263671875, 27.242919921875, 25.162841796875, 23.90771484375, 25.028564453125, 21.413330078125, 21.05078125, 24.62255859375, 21.469970703125, 23.474609375, 22.957763671875, 21.01953125, 25.375244140625, 23.39599609375, 24.623046875, 25.082763671875, 25.771728515625, 22.997802734375, 24.736083984375, 20.71044921875, 22.394287109375, 27.889404296875, 25.00390625, 28.279541015625, 26.7919921875, 29.30517578125, 25.243408203125, 25.648681640625, 27.63232421875, 22.99951171875, 26.8076171875, 21.281494140625, 27.309326171875, 25.43212890625, 23.21728515625, 24.1171875, 26.084716796875, 24.306640625, 23.1044921875, 21.108154296875, 23.85107421875, 27.5234375, 23.532470703125, 24.40234375, 23.028076171875, 26.847412109375, 28.97265625, 22.89453125, 22.975830078125, 24.47607421875, 25.93603515625, 26.62841796875, 26.53857421875, 25.249267578125, 21.343994140625, 23.033935546875, 24.024658203125, 28.131591796875, 24.261474609375, 23.62841796875, 26.1796875, 20.791015625, 25.1796875, 26.5859375, 22.931884765625], "units": "ms", "important": false}, "thread 0|MarkDOMContent_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": false}, "thread 0|TimerInstall_max_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": false}, "thread 0|RecalculateStyles_max_by_url.http://www.retailmenot.com/view/macys.com": {"current": [54.1591796875, 20.087158203125, 19.1982421875, 20.803955078125, 19.7451171875, 20.255126953125, 19.410888671875, 20.5419921875, 19.653076171875, 19.73974609375, 19.620849609375, 20.40087890625, 19.552001953125, 20.572998046875, 19.96630859375, 20.134033203125, 19.281005859375, 19.942138671875, 20.2451171875, 20.22900390625, 19.286865234375, 19.866943359375, 17.2490234375, 19.779052734375, 19.425048828125, 18.841796875, 19.297119140625, 19.839111328125, 19.864013671875, 20.95703125, 20.60400390625, 20.203125, 18.5390625, 18.2421875, 20.1728515625, 18.689208984375, 19.904052734375, 19.177001953125, 20.6728515625, 20.4619140625, 20.44775390625, 19.392822265625, 19.80517578125, 19.453857421875, 19.72412109375, 19.598876953125, 19.116943359375, 18.630859375, 19.5966796875, 18.906982421875, 20.878173828125, 20.77001953125, 20.8740234375, 19.68994140625, 19.64990234375, 20.3408203125, 19.60888671875, 19.802978515625, 19.251220703125, 19.38427734375, 21.044921875, 19.326171875, 19.27001953125, 20.21923828125, 18.849853515625, 19.97705078125, 19.76416015625, 19.69189453125, 19.64013671875, 19.60400390625, 19.156982421875, 19.744873046875, 21.3759765625, 20.39013671875, 19.2958984375, 19.726806640625, 19.38720703125, 19.97802734375, 20.223876953125, 18.323974609375, 20.5400390625, 19.468994140625, 21.008056640625, 19.876953125, 19.885986328125, 19.787841796875, 19.504150390625, 19.765869140625, 19.760009765625, 19.81591796875, 19.240966796875, 19.619873046875, 19.5126953125, 19.833984375, 19.594970703125, 19.341064453125, 20.56494140625, 19.350830078125, 19.40576171875, 20.199951171875], "units": "ms", "important": false}, "thread 0|MarkFirstPaint_avg_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": false}, "thread 0|ParseHTML_by_url.http://www.retailmenot.com/view/macys.com": {"current": [10.53125, 12.2373046875, 12.0576171875, 11.415771484375, 10.97021484375, 12.21826171875, 10.753173828125, 12.8056640625, 11.759521484375, 11.318115234375, 11.74951171875, 11.60205078125, 11.706787109375, 12.442626953125, 12.333984375, 12.339111328125, 11.478271484375, 12.22607421875, 11.3095703125, 12.378173828125, 11.210693359375, 10.966064453125, 11.521484375, 11.595458984375, 10.605224609375, 11.548583984375, 11.203857421875, 12.669189453125, 14.543701171875, 11.539306640625, 11.98583984375, 11.7939453125, 14.38232421875, 13.024658203125, 12.485107421875, 12.4794921875, 12.665283203125, 12.208251953125, 11.24560546875, 12.27490234375, 10.717529296875, 11.90283203125, 11.271240234375, 11.01904296875, 11.851806640625, 10.931396484375, 13.03857421875, 13.140869140625, 12.325927734375, 11.94580078125, 13.530517578125, 12.01416015625, 14.11669921875, 10.79296875, 12.67822265625, 11.100830078125, 12.114501953125, 11.15234375, 11.16650390625, 11.115966796875, 14.004638671875, 11.740478515625, 12.189453125, 11.02587890625, 11.53173828125, 11.37744140625, 10.848876953125, 12.899169921875, 11.7548828125, 11.506591796875, 12.85107421875, 13.683837890625, 13.640625, 10.749267578125, 12.82958984375, 10.92041015625, 11.82861328125, 11.07861328125, 11.148681640625, 12.668212890625, 14.199951171875, 12.053955078125, 11.38330078125, 12.132080078125, 16.830322265625, 12.47119140625, 11.44970703125, 11.3876953125, 11.06884765625, 12.711181640625, 10.7509765625, 11.447265625, 11.970458984375, 11.252685546875, 11.887451171875, 11.360107421875, 12.43359375, 11.1298828125, 11.15185546875, 12.560546875], "units": "ms", "important": false}, "thread 0|ResourceReceivedData_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.361328125, 0.200439453125, 0.106201171875, 0.0595703125, 0.0625, 0.078125, 0.0771484375, 0.07763671875, 0.070068359375, 0.0830078125, 0.114990234375, 0.07373046875, 0.073974609375, 0.083740234375, 0.066650390625, 0.084716796875, 0.07421875, 0.08203125, 0.075927734375, 0.075927734375, 0.097900390625, 0.082275390625, 0.100830078125, 0.090576171875, 0.0654296875, 0.077880859375, 0.102294921875, 0.09228515625, 0.07275390625, 0.0654296875, 0.06396484375, 0.08056640625, 0.0771484375, 0.103759765625, 0.10205078125, 0.0888671875, 0.1044921875, 0.07275390625, 0.072998046875, 0.09619140625, 0.103515625, 0.09814453125, 0.07763671875, 0.06591796875, 0.086669921875, 0.061767578125, 0.0703125, 0.10986328125, 0.10107421875, 0.082763671875, 0.092529296875, 0.0751953125, 0.089111328125, 0.062744140625, 0.063232421875, 0.08056640625, 0.0712890625, 0.085693359375, 0.082763671875, 0.10986328125, 0.068603515625, 0.08056640625, 0.129150390625, 0.06103515625, 0.076904296875, 0.097900390625, 0.086669921875, 0.07763671875, 0.07958984375, 0.08251953125, 0.0771484375, 0.0703125, 0.084716796875, 0.064208984375, 0.072021484375, 0.088134765625, 0.067626953125, 0.080810546875, 0.078125, 0.1171875, 0.089599609375, 0.064697265625, 0.0810546875, 0.10693359375, 0.089111328125, 0.091064453125, 0.08447265625, 0.095947265625, 0.08984375, 0.0732421875, 0.06689453125, 0.07568359375, 0.070556640625, 0.076171875, 0.087890625, 0.083251953125, 0.06982421875, 0.080078125, 0.065673828125, 0.079345703125], "units": "ms", "important": false}, "thread 0|GCEvent_avg_by_url.http://www.retailmenot.com/view/macys.com": {"current": [4.256103515625, 6.52490234375, 6.647216796875, 7.209228515625, 7.7421875, 6.458984375, 7.409912109375, 6.5, 8.1591796875, 6.6796875, 7.128173828125, 6.56591796875, 7.866943359375, 7.267822265625, 6.8310546875, 8.2099609375, 6.556884765625, 6.567138671875, 8.19580078125, 6.56494140625, 7.318115234375, 6.61474609375, 7.8720703125, 6.530029296875, 6.470947265625, 8.183837890625, 7.025146484375, 6.488037109375, 6.39404296875, 6.531005859375, 7.565185546875, 6.719970703125, 7.2841796875, 6.576171875, 7.85595703125, 7.470947265625, 8.02294921875, 7.654052734375, 7.73095703125, 6.584716796875, 6.512939453125, 7.698974609375, 6.43505859375, 6.93017578125, 6.657958984375, 7.8427734375, 6.98388671875, 6.7548828125, 7.2568359375, 6.586181640625, 7.681884765625, 6.623046875, 6.634033203125, 7.06787109375, 6.64599609375, 2.969970703125, 8.291015625, 4.545166015625, 6.553955078125, 4.1170654296875, 8.09912109375, 6.552001953125, 3.9986572265625, 7.009033203125, 6.705078125, 7.467041015625, 3.8841552734375, 8.873046875, 7.542236328125, 7.812744140625, 3.301025390625, 8.010009765625, 7.837158203125, 7.036865234375, 7.516357421875, 3.7425537109375, 6.972900390625, 7.0400390625, 8.010009765625, 6.976318359375, 4.0850830078125, 6.64306640625, 7.93408203125, 10.40283203125, 7.814697265625, 4.6148681640625, 7.526123046875, 6.72802734375, 8.41015625, 7.59521484375, 6.762939453125, 3.9376220703125, 7.10205078125, 6.68603515625, 6.58203125, 6.652099609375, 7.48486328125, 4.5784912109375, 7.68701171875], "units": "ms", "important": false}, "thread 0|EventDispatch_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.161865234375, 0.322998046875, 0.3984375, 0.297119140625, 0.3017578125, 0.2978515625, 0.27099609375, 0.30615234375, 0.289306640625, 0.26171875, 0.451171875, 0.241455078125, 0.260986328125, 0.28515625, 0.61572265625, 0.27392578125, 0.294921875, 0.246337890625, 0.2509765625, 0.256591796875, 0.475830078125, 0.247314453125, 0.30419921875, 0.3251953125, 0.257080078125, 0.324951171875, 0.4521484375, 0.3515625, 0.37109375, 0.264404296875, 0.46923828125, 0.25390625, 0.456787109375, 0.402099609375, 0.527099609375, 0.177734375, 0.434814453125, 0.2490234375, 0.45068359375, 0.350341796875, 0.411376953125, 0.3828125, 0.380615234375, 0.2431640625, 0.512939453125, 0.31982421875, 0.35791015625, 0.512939453125, 0.38330078125, 0.24560546875, 0.516845703125, 0.279541015625, 0.455810546875, 0.344970703125, 0.407958984375, 0.414794921875, 0.4169921875, 0.24609375, 0.2919921875, 0.296142578125, 0.3017578125, 0.251953125, 0.261962890625, 0.29931640625, 0.25048828125, 0.292236328125, 0.32763671875, 0.269287109375, 0.2939453125, 0.3232421875, 0.4150390625, 0.41650390625, 0.33203125, 0.27099609375, 0.276611328125, 0.41162109375, 0.311767578125, 0.302001953125, 0.292236328125, 0.29833984375, 0.261474609375, 0.5146484375, 0.254638671875, 0.440673828125, 0.368408203125, 0.2978515625, 0.291748046875, 0.267333984375, 0.255126953125, 0.310302734375, 0.25537109375, 0.487548828125, 0.3369140625, 0.37158203125, 0.352783203125, 0.52294921875, 0.24951171875, 0.53662109375, 0.25927734375, 0.256103515625], "units": "ms", "important": false}, "thread 0|CompositeLayers_avg_by_url.http://www.retailmenot.com/view/macys.com": {"current": [1.3069035456730769, 1.573577880859375, 1.3372395833333333, 1.4329155815972223, 1.5457628038194444, 1.69708251953125, 1.5467529296875, 1.49908447265625, 1.513336181640625, 1.4483235677083333, 1.4222005208333333, 1.4185384114583333, 1.4414333767361112, 1.5252162388392858, 1.392724609375, 1.565765380859375, 1.3434326171875, 1.7909458705357142, 1.319580078125, 1.4062228732638888, 1.348388671875, 1.4280327690972223, 1.51458740234375, 1.43267822265625, 1.4077962239583333, 1.483428955078125, 1.446533203125, 1.5123291015625, 1.582611083984375, 1.3843994140625, 1.5423409598214286, 1.3309814453125, 1.4063313802083333, 1.7158900669642858, 1.4803466796875, 1.7738037109375, 1.5154052734375, 1.4830186631944444, 1.5552978515625, 1.50543212890625, 1.3849555121527777, 1.446533203125, 1.3548095703125, 1.3543023003472223, 1.4205186631944444, 1.447967529296875, 1.8352864583333333, 1.4854736328125, 1.52301025390625, 1.58526611328125, 1.6077706473214286, 1.3752712673611112, 1.3611382378472223, 1.352392578125, 1.42486572265625, 1.433929443359375, 1.4603949652777777, 1.4823404947916667, 1.5942731584821428, 1.34189453125, 1.3201416015625, 1.4067654079861112, 1.400177001953125, 1.4286566840277777, 1.50775146484375, 1.8621826171875, 1.3556043836805556, 1.448394775390625, 1.3740478515625, 1.3463541666666667, 1.3723388671875, 1.462799072265625, 1.578369140625, 1.4012451171875, 1.4246148003472223, 1.34306640625, 1.3324652777777777, 1.4409450954861112, 1.414764404296875, 1.6224190848214286, 1.285791015625, 1.4399142795138888, 1.487091064453125, 1.571441650390625, 1.6504448784722223, 1.388916015625, 1.3053466796875, 1.4949544270833333, 1.3709038628472223, 1.3526611328125, 1.3650444878472223, 1.508392333984375, 1.5694444444444444, 1.6717703683035714, 1.3400607638888888, 1.513427734375, 1.5545479910714286, 1.33828125, 1.3954806857638888, 1.51995849609375], "units": "ms", "important": false}, "telemetry_page_measurement_results.num_errored": {"current": [0], "units": "count", "important": false}, "thread 0|FunctionCall_avg": {"current": [0.8935334578804348, 0.4443547175480769, 0.7580718994140625, 0.7186737060546875, 0.7041778564453125, 0.7313232421875, 0.9198760986328125, 0.7751312255859375, 0.7533111572265625, 0.7869415283203125, 0.733428955078125, 0.75396728515625, 0.8027191162109375, 0.9751790364583334, 0.929473876953125, 0.7177276611328125, 0.7382965087890625, 0.796356201171875, 0.7489471435546875, 0.7575225830078125, 0.7884674072265625, 0.7727203369140625, 0.8045806884765625, 0.7815093994140625, 0.7613983154296875, 0.823974609375, 0.854156494140625, 0.7554168701171875, 0.7540283203125, 0.8066253662109375, 0.7560882568359375, 0.7780303955078125, 0.7532958984375, 0.9054303850446429, 0.793548583984375, 0.3446599786931818, 0.7727508544921875, 0.6963034237132353, 0.904541015625, 0.8516438802083334, 0.7581634521484375, 0.7374267578125, 0.7143096923828125, 0.7972564697265625, 0.757110595703125, 0.75323486328125, 0.9304722377232143, 0.77239990234375, 0.7522735595703125, 0.6935882568359375, 0.8001861572265625, 0.8709564208984375, 0.7905426025390625, 0.72332763671875, 0.7802734375, 0.9503326416015625, 0.8552093505859375, 0.9321746826171875, 0.8368682861328125, 0.809783935546875, 0.838134765625, 0.75457763671875, 0.7746124267578125, 0.78839111328125, 0.72491455078125, 0.8652518136160714, 0.7555999755859375, 0.8792266845703125, 0.78131103515625, 0.7586517333984375, 0.76324462890625, 0.775146484375, 0.7881317138671875, 0.7471160888671875, 0.8312530517578125, 0.7890777587890625, 0.8153076171875, 0.75482177734375, 0.72216796875, 0.9726039341517857, 0.785797119140625, 0.8194580078125, 0.7869415283203125, 0.7928466796875, 0.99371337890625, 0.807220458984375, 0.8532257080078125, 0.849395751953125, 0.7377166748046875, 0.8025054931640625, 0.7782135009765625, 0.8650970458984375, 0.76263427734375, 0.779998779296875, 0.838592529296875, 0.917510986328125, 0.7608642578125, 0.773834228515625, 0.79022216796875, 0.82086181640625], "units": "ms", "important": true}, "thread 0|DecodeImage_max_by_url.http://www.retailmenot.com/view/macys.com": {"current": [2.22705078125, 3.47802734375], "units": "ms", "important": false}, "thread 0|Program_avg_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.30197361537388395, 0.22558290469720496, 0.1827971894862288, 0.1951957370923913, 0.20540364583333334, 0.2023748224431818, 0.2012451171875, 0.19938225702408258, 0.20824523365825687, 0.22307695661272323, 0.2230909916392544, 0.21588345231681033, 0.21394214295504385, 0.257755201690051, 0.1974365234375, 0.1887567238729508, 0.20566729080578514, 0.22988503196022728, 0.2068826426630435, 0.21184124862938597, 0.23731699711134455, 0.20517235471491227, 0.229931640625, 0.21542493431969026, 0.20813943614130434, 0.22109375, 0.19697053328804348, 0.20349014945652175, 0.21261985085227272, 0.21646718082264957, 0.19024923573369565, 0.18860291598135964, 0.22197469075520834, 0.2286837595813679, 0.21163779810855263, 0.2357396175986842, 0.22148715383638212, 0.20969034830729166, 0.2543373919547872, 0.20857137044270832, 0.18783622875548245, 0.18629009955752213, 0.21789874861725664, 0.1916961669921875, 0.20236732219827586, 0.20138389185855263, 0.21669619845360824, 0.22258986088267543, 0.19496663411458334, 0.21599163925438597, 0.23224781177662038, 0.22806839394358408, 0.20907093394886364, 0.21141952123397437, 0.18827681107954544, 0.20175033431869369, 0.23635088387182204, 0.21555091594827586, 0.2618476019965278, 0.23297384510869565, 0.24420979817708333, 0.22143340529057018, 0.22498843544407895, 0.23220440519957983, 0.205352783203125, 0.2792460123697917, 0.1803516452595339, 0.24167545284845132, 0.215526516154661, 0.2001490099676724, 0.20790678879310345, 0.2288133052357456, 0.23598680218446602, 0.2026709841008772, 0.18515924821820176, 0.20042919511554622, 0.23524305555555555, 0.2028661267510776, 0.2159499446902655, 0.22142380934495193, 0.21651138797883066, 0.2476295405982906, 0.20082922149122806, 0.20887118252840908, 0.21470240542763158, 0.21086207444105692, 0.21826572105532788, 0.22115478515625, 0.21397684388241525, 0.1824273003472222, 0.19520284361758475, 0.21643836219031531, 0.2384033203125, 0.22055886008522727, 0.210968017578125, 0.23374720982142858, 0.19614165683962265, 0.21159401260504201, 0.23320997807017543, 0.19940769361413044], "units": "ms", "important": false}, "thread 0|PaintSetup_max_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.526123046875, 0.469970703125, 0.512939453125, 0.474853515625, 0.487060546875, 0.47314453125, 0.48486328125, 0.51806640625, 0.4931640625, 0.474853515625, 0.4580078125, 0.51611328125, 0.489990234375, 0.494140625, 0.598876953125, 0.485107421875, 0.481201171875, 0.493896484375, 0.48193359375, 0.486083984375, 0.7109375, 0.52392578125, 0.510009765625, 0.4912109375, 0.47216796875, 0.495849609375, 0.49072265625, 0.480712890625, 0.498046875, 0.755126953125, 0.514892578125, 0.51708984375, 0.7490234375, 0.51416015625, 0.4921875, 0.492919921875, 0.7109375, 0.49169921875, 0.524169921875, 0.7060546875, 0.509033203125, 0.52294921875, 0.52587890625, 0.797119140625, 0.51123046875, 0.48193359375, 0.489990234375, 0.489013671875, 0.48486328125, 0.47998046875, 0.5107421875, 0.509033203125, 0.505859375, 0.507080078125, 0.43994140625, 0.583984375, 0.5478515625, 0.515869140625, 0.494140625, 0.48291015625, 0.526123046875, 0.516845703125, 0.47607421875, 0.487060546875, 0.47509765625, 0.4716796875, 0.4951171875, 0.471923828125, 0.494873046875, 0.483154296875, 0.486083984375, 0.489990234375, 0.51220703125, 0.612060546875, 0.548095703125, 0.53515625, 0.5, 0.475830078125, 0.47607421875, 0.498779296875, 0.4970703125, 0.4970703125, 0.48583984375, 0.520263671875, 0.739990234375, 0.73681640625, 0.51806640625, 0.493896484375, 0.473876953125, 0.4921875, 0.5009765625, 0.489990234375, 0.48486328125, 0.512939453125, 0.512939453125, 0.505126953125, 0.515869140625, 0.5, 0.5380859375, 0.503173828125], "units": "ms", "important": false}, "thread 0|ResourceFinish_max_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": false}, "thread 0|Program_avg": {"current": [0.30197361537388395, 0.22558290469720496, 0.1827971894862288, 0.1951957370923913, 0.20540364583333334, 0.2023748224431818, 0.2012451171875, 0.19938225702408258, 0.20824523365825687, 0.22307695661272323, 0.2230909916392544, 0.21588345231681033, 0.21394214295504385, 0.257755201690051, 0.1974365234375, 0.1887567238729508, 0.20566729080578514, 0.22988503196022728, 0.2068826426630435, 0.21184124862938597, 0.23731699711134455, 0.20517235471491227, 0.229931640625, 0.21542493431969026, 0.20813943614130434, 0.22109375, 0.19697053328804348, 0.20349014945652175, 0.21261985085227272, 0.21646718082264957, 0.19024923573369565, 0.18860291598135964, 0.22197469075520834, 0.2286837595813679, 0.21163779810855263, 0.2357396175986842, 0.22148715383638212, 0.20969034830729166, 0.2543373919547872, 0.20857137044270832, 0.18783622875548245, 0.18629009955752213, 0.21789874861725664, 0.1916961669921875, 0.20236732219827586, 0.20138389185855263, 0.21669619845360824, 0.22258986088267543, 0.19496663411458334, 0.21599163925438597, 0.23224781177662038, 0.22806839394358408, 0.20907093394886364, 0.21141952123397437, 0.18827681107954544, 0.20175033431869369, 0.23635088387182204, 0.21555091594827586, 0.2618476019965278, 0.23297384510869565, 0.24420979817708333, 0.22143340529057018, 0.22498843544407895, 0.23220440519957983, 0.205352783203125, 0.2792460123697917, 0.1803516452595339, 0.24167545284845132, 0.215526516154661, 0.2001490099676724, 0.20790678879310345, 0.2288133052357456, 0.23598680218446602, 0.2026709841008772, 0.18515924821820176, 0.20042919511554622, 0.23524305555555555, 0.2028661267510776, 0.2159499446902655, 0.22142380934495193, 0.21651138797883066, 0.2476295405982906, 0.20082922149122806, 0.20887118252840908, 0.21470240542763158, 0.21086207444105692, 0.21826572105532788, 0.22115478515625, 0.21397684388241525, 0.1824273003472222, 0.19520284361758475, 0.21643836219031531, 0.2384033203125, 0.22055886008522727, 0.210968017578125, 0.23374720982142858, 0.19614165683962265, 0.21159401260504201, 0.23320997807017543, 0.19940769361413044], "units": "ms", "important": true}, "thread 0|TimerFire_max_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.06103515625, 0.07568359375, 0.10400390625, 0.23193359375, 0.10107421875, 0.233154296875, 0.171875, 0.107177734375, 0.103759765625, 0.239013671875, 0.114013671875, 0.10693359375, 0.104736328125, 0.106689453125, 0.104736328125, 0.152099609375, 0.104736328125, 0.109130859375, 0.10302734375, 0.10693359375, 0.105224609375, 0.22607421875, 0.1123046875, 0.234130859375, 0.102783203125, 0.10986328125, 0.385009765625, 0.15087890625, 0.193115234375, 0.239990234375, 0.14208984375, 0.156982421875, 0.102294921875, 0.35498046875, 0.099853515625, 0.10791015625, 0.10498046875, 0.276123046875, 0.104736328125, 0.281005859375, 0.10107421875, 0.15283203125, 0.104248046875, 0.169677734375, 0.108154296875, 0.155029296875, 0.101806640625, 0.242919921875, 0.10302734375, 0.161376953125, 0.171142578125, 0.106689453125, 0.236083984375, 0.25341796875, 0.12109375, 0.105224609375, 0.14208984375, 0.23291015625, 0.10107421875, 0.249267578125, 0.2021484375, 0.316650390625, 0.104248046875, 0.228515625, 0.10400390625, 0.108154296875, 0.122802734375, 0.069091796875, 0.10693359375, 0.293701171875, 0.10498046875, 0.118896484375, 0.115966796875, 0.18798828125, 0.104736328125, 0.380859375, 0.10107421875, 0.332763671875, 0.312255859375, 0.114501953125, 0.132080078125, 0.23291015625, 0.103759765625, 0.15673828125, 0.10693359375, 0.107666015625, 0.30078125, 0.162841796875, 0.10595703125, 0.251220703125, 0.103759765625, 0.10888671875, 0.18505859375, 0.1630859375, 0.10986328125, 0.26123046875, 0.10400390625, 0.170166015625, 0.09912109375, 0.236572265625], "units": "ms", "important": false}, "thread 0|Paint_max": {"current": [24.50390625, 8.47998046875, 8.76025390625, 11.0361328125, 8.808837890625, 8.52392578125, 9.81591796875, 8.699951171875, 8.54296875, 8.555908203125, 8.72607421875, 9.97119140625, 8.8291015625, 8.693115234375, 8.658935546875, 8.61181640625, 8.979248046875, 8.583984375, 8.748046875, 8.68603515625, 8.763916015625, 9.85693359375, 8.6240234375, 8.692138671875, 8.719970703125, 8.885986328125, 9.10400390625, 8.587158203125, 10.010986328125, 8.569091796875, 8.4619140625, 8.602783203125, 8.731201171875, 8.548828125, 8.5751953125, 8.60791015625, 8.656005859375, 10.47705078125, 8.717041015625, 8.55712890625, 8.47900390625, 8.572998046875, 8.626953125, 8.551025390625, 9.38623046875, 10.966064453125, 8.485107421875, 8.4990234375, 8.7060546875, 8.64599609375, 8.76171875, 8.8759765625, 8.735107421875, 8.775146484375, 9.403076171875, 8.64111328125, 8.52294921875, 8.445068359375, 10.633056640625, 8.64111328125, 8.97119140625, 8.81005859375, 8.44384765625, 8.501953125, 8.735107421875, 8.865966796875, 8.4990234375, 8.52392578125, 8.569091796875, 8.575927734375, 11.38134765625, 8.500732421875, 8.7451171875, 10.656005859375, 8.51708984375, 8.39306640625, 8.861083984375, 8.55810546875, 8.830078125, 8.608154296875, 9.5869140625, 8.536865234375, 8.9169921875, 8.701904296875, 8.757080078125, 8.8369140625, 8.211181640625, 8.885986328125, 11.198974609375, 8.72314453125, 8.580810546875, 8.65283203125, 8.61083984375, 8.337890625, 8.895263671875, 8.51123046875, 9.10595703125, 8.485107421875, 8.668701171875, 8.640869140625], "units": "ms", "important": true}, "thread 0|ResourceReceivedData_max_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.050048828125, 0.041015625, 0.03125, 0.02197265625, 0.02392578125, 0.023193359375, 0.02392578125, 0.02099609375, 0.02294921875, 0.030029296875, 0.0419921875, 0.031005859375, 0.02880859375, 0.0390625, 0.02294921875, 0.02587890625, 0.026123046875, 0.033203125, 0.02294921875, 0.029052734375, 0.03515625, 0.023193359375, 0.05712890625, 0.031982421875, 0.02490234375, 0.023193359375, 0.031982421875, 0.031982421875, 0.02294921875, 0.024169921875, 0.022216796875, 0.02099609375, 0.029052734375, 0.04296875, 0.03515625, 0.04296875, 0.035888671875, 0.02587890625, 0.03076171875, 0.02783203125, 0.042236328125, 0.02294921875, 0.035888671875, 0.022705078125, 0.028076171875, 0.02099609375, 0.023193359375, 0.0341796875, 0.0322265625, 0.030029296875, 0.041015625, 0.031982421875, 0.030029296875, 0.025146484375, 0.025146484375, 0.031005859375, 0.023193359375, 0.042724609375, 0.033203125, 0.051025390625, 0.02783203125, 0.031005859375, 0.04296875, 0.022216796875, 0.02392578125, 0.035888671875, 0.030029296875, 0.0322265625, 0.031005859375, 0.024169921875, 0.02490234375, 0.02490234375, 0.031005859375, 0.024169921875, 0.027099609375, 0.030029296875, 0.022705078125, 0.022705078125, 0.031982421875, 0.06103515625, 0.030029296875, 0.02490234375, 0.02587890625, 0.0400390625, 0.031005859375, 0.049072265625, 0.026123046875, 0.041748046875, 0.031005859375, 0.031982421875, 0.025146484375, 0.022216796875, 0.026123046875, 0.030029296875, 0.030029296875, 0.037841796875, 0.02490234375, 0.023193359375, 0.025146484375, 0.02294921875], "units": "ms", "important": false}, "thread 0|EvaluateScript_by_url.http://www.retailmenot.com/view/macys.com": {"current": [44.580078125, 19.775390625, 15.40185546875, 12.592529296875, 12.606201171875, 14.560791015625, 12.009765625, 13.23583984375, 12.211181640625, 13.21826171875, 12.37548828125, 12.206787109375, 12.8974609375, 13.724609375, 13.609375, 12.949951171875, 14.8994140625, 14.694091796875, 13.184326171875, 14.466552734375, 12.501708984375, 12.822021484375, 15.337158203125, 13.03466796875, 13.87890625, 13.725341796875, 12.09326171875, 13.003662109375, 14.87841796875, 13.99267578125, 12.423828125, 14.357177734375, 15.197265625, 12.479248046875, 13.67724609375, 12.14111328125, 14.01708984375, 11.896728515625, 14.335205078125, 12.384521484375, 13.06494140625, 13.422119140625, 13.05126953125, 12.744873046875, 12.613525390625, 12.885498046875, 14.479736328125, 13.697509765625, 12.639892578125, 12.865478515625, 14.135986328125, 11.755615234375, 13.967041015625, 13.072998046875, 13.779541015625, 14.834716796875, 15.1220703125, 12.996826171875, 14.906005859375, 11.933837890625, 13.109375, 13.09130859375, 14.187744140625, 11.955322265625, 14.182373046875, 17.7998046875, 13.9462890625, 13.4296875, 14.0458984375, 14.307861328125, 12.437744140625, 12.25341796875, 14.684326171875, 13.96337890625, 13.47265625, 11.94970703125, 13.995361328125, 13.6337890625, 14.663330078125, 12.628662109375, 13.21875, 14.483154296875, 13.474365234375, 13.022705078125, 15.34228515625, 14.504638671875, 12.398193359375, 13.8369140625, 15.66748046875, 13.212646484375, 12.660400390625, 13.4736328125, 13.229248046875, 14.63720703125, 13.44091796875, 14.8173828125, 13.398193359375, 14.174560546875, 12.758544921875, 12.90625], "units": "ms", "important": false}, "thread 0|Program_max": {"current": [12.9267578125, 8.84228515625, 7.744873046875, 6.694091796875, 6.93603515625, 6.52294921875, 6.965087890625, 6.682861328125, 7.01611328125, 8.18017578125, 9.18505859375, 8.23291015625, 7.910400390625, 10.047607421875, 6.822998046875, 7.3349609375, 7.805908203125, 8.842041015625, 7.01708984375, 8.816162109375, 10.357177734375, 6.833740234375, 8.69482421875, 8.429931640625, 7.044189453125, 7.152587890625, 6.946044921875, 6.80712890625, 6.7998046875, 6.85498046875, 6.927978515625, 6.77587890625, 8.75390625, 8.118896484375, 8.89404296875, 9.676025390625, 9.050048828125, 8.146240234375, 9.51123046875, 8.913330078125, 6.935791015625, 6.843017578125, 7.78125, 7.497314453125, 6.96484375, 6.851806640625, 6.73291015625, 8.712890625, 7.031982421875, 8.68896484375, 9.38525390625, 9.173095703125, 8.7568359375, 6.971923828125, 7.0439453125, 8.520263671875, 8.2216796875, 7.9873046875, 7.296630859375, 8.759765625, 8.447265625, 8.432373046875, 9.638427734375, 6.81591796875, 6.71630859375, 9.955078125, 7.092041015625, 7.77978515625, 8.3876953125, 7.048828125, 7.2509765625, 6.856201171875, 8.939208984375, 6.810791015625, 7.074951171875, 8.64892578125, 7.019287109375, 6.8134765625, 8.7490234375, 8.072021484375, 8.614990234375, 6.955078125, 7.6171875, 8.260986328125, 8.598876953125, 8.005859375, 6.983642578125, 9.440185546875, 7.845947265625, 6.60888671875, 7.18896484375, 6.66455078125, 8.076904296875, 8.551025390625, 7.032958984375, 8.787353515625, 6.841064453125, 8.172607421875, 7.744873046875, 6.674072265625], "units": "ms", "important": true}, "thread 0|MarkFirstPaint_max": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": true}, "thread 0|InvalidateLayout_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": false}, "thread 0|ResourceReceiveResponse": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": true}, "thread 0|EventDispatch_avg": {"current": [0.161865234375, 0.107666015625, 0.1328125, 0.09903971354166667, 0.1005859375, 0.09928385416666667, 0.09033203125, 0.10205078125, 0.096435546875, 0.08723958333333333, 0.150390625, 0.08048502604166667, 0.08699544270833333, 0.09505208333333333, 0.20524088541666666, 0.09130859375, 0.09830729166666667, 0.08211263020833333, 0.08365885416666667, 0.08553059895833333, 0.15861002604166666, 0.08243815104166667, 0.10139973958333333, 0.1083984375, 0.085693359375, 0.10831705729166667, 0.15071614583333334, 0.1171875, 0.12369791666666667, 0.088134765625, 0.15641276041666666, 0.08463541666666667, 0.15226236979166666, 0.134033203125, 0.17569986979166666, 0.059244791666666664, 0.14493815104166666, 0.0830078125, 0.15022786458333334, 0.11678059895833333, 0.13712565104166666, 0.12760416666666666, 0.12687174479166666, 0.0810546875, 0.17097981770833334, 0.10660807291666667, 0.11930338541666667, 0.17097981770833334, 0.12776692708333334, 0.08186848958333333, 0.17228190104166666, 0.09318033854166667, 0.15193684895833334, 0.114990234375, 0.135986328125, 0.13826497395833334, 0.13899739583333334, 0.08203125, 0.09733072916666667, 0.09871419270833333, 0.1005859375, 0.083984375, 0.08732096354166667, 0.09977213541666667, 0.08349609375, 0.097412109375, 0.10921223958333333, 0.08976236979166667, 0.09798177083333333, 0.10774739583333333, 0.13834635416666666, 0.13883463541666666, 0.11067708333333333, 0.09033203125, 0.09220377604166667, 0.13720703125, 0.10392252604166667, 0.10066731770833333, 0.097412109375, 0.09944661458333333, 0.087158203125, 0.17154947916666666, 0.08487955729166667, 0.14689127604166666, 0.122802734375, 0.09928385416666667, 0.09724934895833333, 0.089111328125, 0.08504231770833333, 0.10343424479166667, 0.08512369791666667, 0.16251627604166666, 0.1123046875, 0.12386067708333333, 0.11759440104166667, 0.17431640625, 0.08317057291666667, 0.17887369791666666, 0.08642578125, 0.08536783854166667], "units": "ms", "important": true}, "thread 0|MarkDOMContent_avg": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": true}, "thread 0|ResourceFinish": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": true}, "thread 0|ScheduleStyleRecalculation_avg": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": true}, "thread 0|CompositeLayers_max_by_url.http://www.retailmenot.com/view/macys.com": {"current": [6.552001953125, 4.82177734375, 4.218994140625, 3.888916015625, 4.93017578125, 5.64794921875, 4.300048828125, 4.427978515625, 3.958984375, 4.15625, 3.796875, 3.922119140625, 3.803955078125, 3.820068359375, 3.8076171875, 3.991943359375, 3.871826171875, 4.945068359375, 3.678955078125, 3.72314453125, 4.207275390625, 3.899169921875, 3.705810546875, 3.516845703125, 3.69091796875, 3.720947265625, 3.56201171875, 4.1240234375, 3.998046875, 3.946044921875, 3.7041015625, 3.81201171875, 3.76025390625, 3.699951171875, 3.47607421875, 3.63818359375, 4.656005859375, 4.165283203125, 3.6591796875, 3.849853515625, 4.373291015625, 4.14794921875, 3.7041015625, 3.93701171875, 3.9091796875, 3.9130859375, 3.993896484375, 3.770751953125, 4.14892578125, 4.283203125, 3.656982421875, 3.666259765625, 4.0888671875, 3.779296875, 3.815185546875, 3.718994140625, 4.1328125, 3.919921875, 4.08984375, 3.93408203125, 4.60009765625, 3.994140625, 3.68798828125, 3.81396484375, 3.7041015625, 4.511962890625, 3.566162109375, 3.755126953125, 4.312255859375, 3.742919921875, 3.868896484375, 4.0380859375, 3.953857421875, 3.880126953125, 4.113037109375, 3.669921875, 3.824951171875, 3.73291015625, 3.830322265625, 3.6689453125, 4.02099609375, 3.68505859375, 3.671875, 3.68603515625, 3.6376953125, 4.199951171875, 3.711181640625, 4.64306640625, 3.6708984375, 3.84814453125, 3.827880859375, 3.708251953125, 4.528076171875, 4.158935546875, 3.67724609375, 3.80908203125, 3.639892578125, 3.905029296875, 3.803955078125, 4.031005859375], "units": "ms", "important": false}, "thread 0|InvalidateLayout_avg": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": true}, "thread 0|InvalidateLayout_max_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": false}, "thread 0|ResourceFinish_avg_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": false}, "thread 0|ScheduleStyleRecalculation_avg_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": false}, "thread 0|BeginFrame": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": true}, "thread 0|Layout_max_by_url.http://www.retailmenot.com/view/macys.com": {"current": [45.94384765625, 23.31494140625, 19.248779296875, 20.024169921875, 21.01611328125, 19.193359375, 20.0087890625, 22.739990234375, 19.844970703125, 20.119873046875, 19.650146484375, 19.747802734375, 20.162109375, 22.52099609375, 20.279052734375, 20.05419921875, 19.981201171875, 20.912841796875, 19.69189453125, 19.998046875, 21.782958984375, 19.919921875, 20.10107421875, 19.783935546875, 19.313232421875, 12.81396484375, 19.39794921875, 19.722900390625, 19.361083984375, 19.9580078125, 19.334228515625, 19.948974609375, 15.60693359375, 19.67138671875, 19.342041015625, 12.44287109375, 19.907958984375, 16.580078125, 22.63916015625, 19.778076171875, 22.08203125, 19.263916015625, 19.505126953125, 19.59716796875, 19.682861328125, 19.386962890625, 19.099853515625, 12.43212890625, 19.244140625, 12.551025390625, 19.668212890625, 19.42822265625, 23.086669921875, 19.745849609375, 19.50390625, 23.277099609375, 20.365966796875, 19.375, 19.078857421875, 19.204833984375, 22.8818359375, 19.532958984375, 18.841064453125, 19.9169921875, 16.546875, 19.5, 20.01318359375, 20.006103515625, 19.743896484375, 19.843017578125, 19.824951171875, 19.515869140625, 22.737060546875, 22.472900390625, 19.541015625, 21.032958984375, 19.6220703125, 19.43603515625, 19.68505859375, 16.838134765625, 22.470947265625, 20.0908203125, 19.296875, 19.945068359375, 20.173095703125, 19.843017578125, 19.76904296875, 19.76513671875, 19.60791015625, 19.407958984375, 19.527099609375, 19.4599609375, 20.296875, 20.328125, 19.60693359375, 20.23095703125, 19.991943359375, 19.885986328125, 19.296142578125, 19.68310546875], "units": "ms", "important": false}, "thread 0|PaintSetup_max": {"current": [0.526123046875, 0.469970703125, 0.512939453125, 0.474853515625, 0.487060546875, 0.47314453125, 0.48486328125, 0.51806640625, 0.4931640625, 0.474853515625, 0.4580078125, 0.51611328125, 0.489990234375, 0.494140625, 0.598876953125, 0.485107421875, 0.481201171875, 0.493896484375, 0.48193359375, 0.486083984375, 0.7109375, 0.52392578125, 0.510009765625, 0.4912109375, 0.47216796875, 0.495849609375, 0.49072265625, 0.480712890625, 0.498046875, 0.755126953125, 0.514892578125, 0.51708984375, 0.7490234375, 0.51416015625, 0.4921875, 0.492919921875, 0.7109375, 0.49169921875, 0.524169921875, 0.7060546875, 0.509033203125, 0.52294921875, 0.52587890625, 0.797119140625, 0.51123046875, 0.48193359375, 0.489990234375, 0.489013671875, 0.48486328125, 0.47998046875, 0.5107421875, 0.509033203125, 0.505859375, 0.507080078125, 0.43994140625, 0.583984375, 0.5478515625, 0.515869140625, 0.494140625, 0.48291015625, 0.526123046875, 0.516845703125, 0.47607421875, 0.487060546875, 0.47509765625, 0.4716796875, 0.4951171875, 0.471923828125, 0.494873046875, 0.483154296875, 0.486083984375, 0.489990234375, 0.51220703125, 0.612060546875, 0.548095703125, 0.53515625, 0.5, 0.475830078125, 0.47607421875, 0.498779296875, 0.4970703125, 0.4970703125, 0.48583984375, 0.520263671875, 0.739990234375, 0.73681640625, 0.51806640625, 0.493896484375, 0.473876953125, 0.4921875, 0.5009765625, 0.489990234375, 0.48486328125, 0.512939453125, 0.512939453125, 0.505126953125, 0.515869140625, 0.5, 0.5380859375, 0.503173828125], "units": "ms", "important": true}, "thread 0|ParseHTML_max": {"current": [8.91552734375, 2.495849609375, 2.705078125, 1.38916015625, 1.453125, 1.66796875, 1.34716796875, 2.083984375, 1.507080078125, 1.5390625, 1.588134765625, 1.43505859375, 1.8359375, 2.465087890625, 1.567138671875, 2.6123046875, 1.486083984375, 1.927734375, 1.64111328125, 1.991943359375, 1.52978515625, 1.35986328125, 1.574951171875, 1.5419921875, 1.34814453125, 1.377197265625, 1.444091796875, 1.9208984375, 2.599853515625, 1.47607421875, 1.368896484375, 1.680908203125, 2.739013671875, 1.578125, 1.5302734375, 1.68212890625, 1.830078125, 1.3310546875, 1.466064453125, 2.609130859375, 1.32080078125, 1.758056640625, 1.350830078125, 1.360107421875, 1.629150390625, 1.60107421875, 2.15869140625, 1.618896484375, 1.600830078125, 1.473876953125, 2.2890625, 1.781005859375, 1.830810546875, 1.390869140625, 2.566162109375, 1.464111328125, 2.18994140625, 1.37890625, 1.342041015625, 1.47412109375, 1.89013671875, 1.708984375, 1.8720703125, 1.455078125, 1.421142578125, 1.644775390625, 1.349853515625, 2.262939453125, 1.677001953125, 1.556396484375, 2.75, 1.97802734375, 2.360107421875, 1.3740234375, 2.58203125, 1.43603515625, 1.677978515625, 1.35107421875, 1.576904296875, 1.98681640625, 2.59619140625, 1.537109375, 1.35009765625, 1.64599609375, 2.078125, 2.0029296875, 1.591064453125, 1.46484375, 1.358154296875, 2.11181640625, 1.458984375, 1.381103515625, 1.9658203125, 1.658203125, 1.593994140625, 1.4990234375, 2.074951171875, 1.4599609375, 1.648193359375, 1.51904296875], "units": "ms", "important": true}, "thread 0|EvaluateScript_max": {"current": [23.947998046875, 10.59716796875, 9.93701171875, 7.395751953125, 7.44775390625, 9.2802734375, 7.02685546875, 8.2705078125, 7.19921875, 7.994140625, 7.581298828125, 7.04345703125, 7.48876953125, 8.30078125, 7.22509765625, 7.697265625, 9.57177734375, 9.644775390625, 8.01416015625, 9.2080078125, 7.0859375, 7.714111328125, 9.04638671875, 7.34814453125, 8.32080078125, 8.006103515625, 6.936767578125, 8.137939453125, 7.78515625, 7.6630859375, 7.61962890625, 8.856201171875, 10.2705078125, 7.452392578125, 7.248291015625, 7.33203125, 8.618896484375, 6.81982421875, 8.47509765625, 7.287841796875, 7.925048828125, 8.47119140625, 7.605224609375, 8.18896484375, 7.24853515625, 8.11669921875, 7.84619140625, 7.446044921875, 7.37939453125, 7.49609375, 7.9912109375, 7.27001953125, 7.8701171875, 8.148193359375, 8.3447265625, 7.888671875, 8.376220703125, 7.43603515625, 8.617919921875, 7.025390625, 7.864013671875, 7.98876953125, 7.81396484375, 7.296875, 8.835205078125, 12.593017578125, 7.331298828125, 8.3759765625, 7.784912109375, 9.394775390625, 7.00732421875, 7.509033203125, 8.329345703125, 8.5, 7.72705078125, 6.958251953125, 8.981201171875, 8.1181640625, 9.27587890625, 7.18212890625, 7.65283203125, 8.72412109375, 8.41259765625, 7.9326171875, 8.4033203125, 9.36083984375, 7.346923828125, 8.78076171875, 10.3544921875, 7.323486328125, 7.7412109375, 8.3369140625, 7.5400390625, 8.998291015625, 7.7470703125, 8.682861328125, 7.887939453125, 8.000732421875, 7.652099609375, 7.5771484375], "units": "ms", "important": true}, "thread 0|TimerInstall_max": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": true}, "thread 0|ScheduleStyleRecalculation_max_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": false}, "thread 0|ResourceReceiveResponse_avg_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": false}, "thread 0|FunctionCall_max": {"current": [13.526123046875, 1.92138671875, 7.506103515625, 7.028076171875, 6.8203125, 7.14208984375, 9.65087890625, 7.4951171875, 7.8876953125, 7.951171875, 7.416015625, 7.56494140625, 8.144775390625, 7.510986328125, 9.862060546875, 7.5439453125, 7.182861328125, 7.6953125, 7.612060546875, 7.64111328125, 7.986083984375, 7.39599609375, 8.030029296875, 8.048095703125, 7.39208984375, 7.664794921875, 7.80615234375, 7.64794921875, 7.10205078125, 7.822265625, 7.385009765625, 8.096923828125, 7.60498046875, 8.050048828125, 8.623046875, 0.706787109375, 7.710205078125, 7.416015625, 6.86328125, 7.987060546875, 7.319091796875, 7.6201171875, 6.736083984375, 8.3671875, 7.4306640625, 7.72412109375, 7.599853515625, 7.92626953125, 7.18896484375, 6.927978515625, 8.207763671875, 8.9658203125, 7.5380859375, 7.260986328125, 7.480712890625, 10.2060546875, 8.206787109375, 10.256103515625, 8.2080078125, 8.1640625, 7.67578125, 7.81103515625, 7.594970703125, 8.18994140625, 7.403076171875, 7.97119140625, 7.205078125, 9.506103515625, 7.7041015625, 7.4208984375, 7.443115234375, 8.119140625, 7.68408203125, 7.44287109375, 8.53173828125, 8.026123046875, 8.0830078125, 7.27880859375, 7.17578125, 8.046142578125, 7.55224609375, 8.72998046875, 8.207763671875, 7.882080078125, 10.871826171875, 8.217041015625, 7.875732421875, 8.18603515625, 7.35302734375, 7.9638671875, 7.4658203125, 9.387939453125, 7.322998046875, 8.164794921875, 7.755126953125, 9.6162109375, 7.747802734375, 8.238037109375, 8.067138671875, 7.8212890625], "units": "ms", "important": true}, "thread 0|TimerInstall": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": true}, "thread 0|ResourceSendRequest_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": false}, "thread 0|Paint": {"current": [84.369140625, 38.24853515625, 39.046875, 41.44091796875, 41.96826171875, 37.502197265625, 38.9697265625, 35.98388671875, 37.527587890625, 39.79638671875, 35.976318359375, 39.333251953125, 39.325927734375, 30.589111328125, 41.7158203125, 35.99169921875, 43.316650390625, 36.412109375, 41.418212890625, 39.594970703125, 40.6162109375, 37.314453125, 38.931640625, 37.7490234375, 40.525390625, 35.931884765625, 38.597412109375, 38.124755859375, 39.257080078125, 41.826416015625, 32.893798828125, 40.2646484375, 38.25341796875, 36.32275390625, 37.564208984375, 33.5361328125, 42.58251953125, 41.60400390625, 28.838134765625, 35.9052734375, 37.305908203125, 37.693603515625, 41.475341796875, 36.65234375, 40.9052734375, 38.416015625, 34.134033203125, 38.897216796875, 38.128662109375, 38.177490234375, 36.514892578125, 40.83349609375, 34.777587890625, 40.2177734375, 36.40966796875, 36.238525390625, 38.75146484375, 41.330078125, 35.41748046875, 43.186279296875, 35.8564453125, 38.35888671875, 35.05029296875, 37.68896484375, 38.32177734375, 35.500732421875, 40.451416015625, 37.910888671875, 39.51025390625, 35.03173828125, 43.9521484375, 35.564453125, 32.9736328125, 37.452880859375, 40.445556640625, 39.7880859375, 35.99169921875, 41.487548828125, 37.167724609375, 37.53857421875, 38.674560546875, 38.519287109375, 38.05224609375, 38.01708984375, 42.60546875, 40.761474609375, 37.469970703125, 35.918701171875, 41.098388671875, 39.917236328125, 36.3212890625, 39.554443359375, 40.126953125, 35.801025390625, 40.70654296875, 38.896728515625, 36.408935546875, 40.620361328125, 37.709228515625, 37.77294921875], "units": "ms", "important": true}, "thread 0|MarkLoad": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": true}, "thread 0|EventDispatch": {"current": [0.161865234375, 0.322998046875, 0.3984375, 0.297119140625, 0.3017578125, 0.2978515625, 0.27099609375, 0.30615234375, 0.289306640625, 0.26171875, 0.451171875, 0.241455078125, 0.260986328125, 0.28515625, 0.61572265625, 0.27392578125, 0.294921875, 0.246337890625, 0.2509765625, 0.256591796875, 0.475830078125, 0.247314453125, 0.30419921875, 0.3251953125, 0.257080078125, 0.324951171875, 0.4521484375, 0.3515625, 0.37109375, 0.264404296875, 0.46923828125, 0.25390625, 0.456787109375, 0.402099609375, 0.527099609375, 0.177734375, 0.434814453125, 0.2490234375, 0.45068359375, 0.350341796875, 0.411376953125, 0.3828125, 0.380615234375, 0.2431640625, 0.512939453125, 0.31982421875, 0.35791015625, 0.512939453125, 0.38330078125, 0.24560546875, 0.516845703125, 0.279541015625, 0.455810546875, 0.344970703125, 0.407958984375, 0.414794921875, 0.4169921875, 0.24609375, 0.2919921875, 0.296142578125, 0.3017578125, 0.251953125, 0.261962890625, 0.29931640625, 0.25048828125, 0.292236328125, 0.32763671875, 0.269287109375, 0.2939453125, 0.3232421875, 0.4150390625, 0.41650390625, 0.33203125, 0.27099609375, 0.276611328125, 0.41162109375, 0.311767578125, 0.302001953125, 0.292236328125, 0.29833984375, 0.261474609375, 0.5146484375, 0.254638671875, 0.440673828125, 0.368408203125, 0.2978515625, 0.291748046875, 0.267333984375, 0.255126953125, 0.310302734375, 0.25537109375, 0.487548828125, 0.3369140625, 0.37158203125, 0.352783203125, 0.52294921875, 0.24951171875, 0.53662109375, 0.25927734375, 0.256103515625], "units": "ms", "important": true}, "thread 0|ResourceFinish_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": false}, "thread 0|InvalidateLayout_avg_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": false}, "thread 0|CompositeLayers_avg": {"current": [1.3069035456730769, 1.573577880859375, 1.3372395833333333, 1.4329155815972223, 1.5457628038194444, 1.69708251953125, 1.5467529296875, 1.49908447265625, 1.513336181640625, 1.4483235677083333, 1.4222005208333333, 1.4185384114583333, 1.4414333767361112, 1.5252162388392858, 1.392724609375, 1.565765380859375, 1.3434326171875, 1.7909458705357142, 1.319580078125, 1.4062228732638888, 1.348388671875, 1.4280327690972223, 1.51458740234375, 1.43267822265625, 1.4077962239583333, 1.483428955078125, 1.446533203125, 1.5123291015625, 1.582611083984375, 1.3843994140625, 1.5423409598214286, 1.3309814453125, 1.4063313802083333, 1.7158900669642858, 1.4803466796875, 1.7738037109375, 1.5154052734375, 1.4830186631944444, 1.5552978515625, 1.50543212890625, 1.3849555121527777, 1.446533203125, 1.3548095703125, 1.3543023003472223, 1.4205186631944444, 1.447967529296875, 1.8352864583333333, 1.4854736328125, 1.52301025390625, 1.58526611328125, 1.6077706473214286, 1.3752712673611112, 1.3611382378472223, 1.352392578125, 1.42486572265625, 1.433929443359375, 1.4603949652777777, 1.4823404947916667, 1.5942731584821428, 1.34189453125, 1.3201416015625, 1.4067654079861112, 1.400177001953125, 1.4286566840277777, 1.50775146484375, 1.8621826171875, 1.3556043836805556, 1.448394775390625, 1.3740478515625, 1.3463541666666667, 1.3723388671875, 1.462799072265625, 1.578369140625, 1.4012451171875, 1.4246148003472223, 1.34306640625, 1.3324652777777777, 1.4409450954861112, 1.414764404296875, 1.6224190848214286, 1.285791015625, 1.4399142795138888, 1.487091064453125, 1.571441650390625, 1.6504448784722223, 1.388916015625, 1.3053466796875, 1.4949544270833333, 1.3709038628472223, 1.3526611328125, 1.3650444878472223, 1.508392333984375, 1.5694444444444444, 1.6717703683035714, 1.3400607638888888, 1.513427734375, 1.5545479910714286, 1.33828125, 1.3954806857638888, 1.51995849609375], "units": "ms", "important": true}, "thread 0|EvaluateScript": {"current": [44.580078125, 19.775390625, 15.40185546875, 12.592529296875, 12.606201171875, 14.560791015625, 12.009765625, 13.23583984375, 12.211181640625, 13.21826171875, 12.37548828125, 12.206787109375, 12.8974609375, 13.724609375, 13.609375, 12.949951171875, 14.8994140625, 14.694091796875, 13.184326171875, 14.466552734375, 12.501708984375, 12.822021484375, 15.337158203125, 13.03466796875, 13.87890625, 13.725341796875, 12.09326171875, 13.003662109375, 14.87841796875, 13.99267578125, 12.423828125, 14.357177734375, 15.197265625, 12.479248046875, 13.67724609375, 12.14111328125, 14.01708984375, 11.896728515625, 14.335205078125, 12.384521484375, 13.06494140625, 13.422119140625, 13.05126953125, 12.744873046875, 12.613525390625, 12.885498046875, 14.479736328125, 13.697509765625, 12.639892578125, 12.865478515625, 14.135986328125, 11.755615234375, 13.967041015625, 13.072998046875, 13.779541015625, 14.834716796875, 15.1220703125, 12.996826171875, 14.906005859375, 11.933837890625, 13.109375, 13.09130859375, 14.187744140625, 11.955322265625, 14.182373046875, 17.7998046875, 13.9462890625, 13.4296875, 14.0458984375, 14.307861328125, 12.437744140625, 12.25341796875, 14.684326171875, 13.96337890625, 13.47265625, 11.94970703125, 13.995361328125, 13.6337890625, 14.663330078125, 12.628662109375, 13.21875, 14.483154296875, 13.474365234375, 13.022705078125, 15.34228515625, 14.504638671875, 12.398193359375, 13.8369140625, 15.66748046875, 13.212646484375, 12.660400390625, 13.4736328125, 13.229248046875, 14.63720703125, 13.44091796875, 14.8173828125, 13.398193359375, 14.174560546875, 12.758544921875, 12.90625], "units": "ms", "important": true}, "thread 0|ResourceReceivedData_max": {"current": [0.050048828125, 0.041015625, 0.03125, 0.02197265625, 0.02392578125, 0.023193359375, 0.02392578125, 0.02099609375, 0.02294921875, 0.030029296875, 0.0419921875, 0.031005859375, 0.02880859375, 0.0390625, 0.02294921875, 0.02587890625, 0.026123046875, 0.033203125, 0.02294921875, 0.029052734375, 0.03515625, 0.023193359375, 0.05712890625, 0.031982421875, 0.02490234375, 0.023193359375, 0.031982421875, 0.031982421875, 0.02294921875, 0.024169921875, 0.022216796875, 0.02099609375, 0.029052734375, 0.04296875, 0.03515625, 0.04296875, 0.035888671875, 0.02587890625, 0.03076171875, 0.02783203125, 0.042236328125, 0.02294921875, 0.035888671875, 0.022705078125, 0.028076171875, 0.02099609375, 0.023193359375, 0.0341796875, 0.0322265625, 0.030029296875, 0.041015625, 0.031982421875, 0.030029296875, 0.025146484375, 0.025146484375, 0.031005859375, 0.023193359375, 0.042724609375, 0.033203125, 0.051025390625, 0.02783203125, 0.031005859375, 0.04296875, 0.022216796875, 0.02392578125, 0.035888671875, 0.030029296875, 0.0322265625, 0.031005859375, 0.024169921875, 0.02490234375, 0.02490234375, 0.031005859375, 0.024169921875, 0.027099609375, 0.030029296875, 0.022705078125, 0.022705078125, 0.031982421875, 0.06103515625, 0.030029296875, 0.02490234375, 0.02587890625, 0.0400390625, 0.031005859375, 0.049072265625, 0.026123046875, 0.041748046875, 0.031005859375, 0.031982421875, 0.025146484375, 0.022216796875, 0.026123046875, 0.030029296875, 0.030029296875, 0.037841796875, 0.02490234375, 0.023193359375, 0.025146484375, 0.02294921875], "units": "ms", "important": true}, "thread 0|Paint_by_url.http://www.retailmenot.com/view/macys.com": {"current": [84.369140625, 38.24853515625, 39.046875, 41.44091796875, 41.96826171875, 37.502197265625, 38.9697265625, 35.98388671875, 37.527587890625, 39.79638671875, 35.976318359375, 39.333251953125, 39.325927734375, 30.589111328125, 41.7158203125, 35.99169921875, 43.316650390625, 36.412109375, 41.418212890625, 39.594970703125, 40.6162109375, 37.314453125, 38.931640625, 37.7490234375, 40.525390625, 35.931884765625, 38.597412109375, 38.124755859375, 39.257080078125, 41.826416015625, 32.893798828125, 40.2646484375, 38.25341796875, 36.32275390625, 37.564208984375, 33.5361328125, 42.58251953125, 41.60400390625, 28.838134765625, 35.9052734375, 37.305908203125, 37.693603515625, 41.475341796875, 36.65234375, 40.9052734375, 38.416015625, 34.134033203125, 38.897216796875, 38.128662109375, 38.177490234375, 36.514892578125, 40.83349609375, 34.777587890625, 40.2177734375, 36.40966796875, 36.238525390625, 38.75146484375, 41.330078125, 35.41748046875, 43.186279296875, 35.8564453125, 38.35888671875, 35.05029296875, 37.68896484375, 38.32177734375, 35.500732421875, 40.451416015625, 37.910888671875, 39.51025390625, 35.03173828125, 43.9521484375, 35.564453125, 32.9736328125, 37.452880859375, 40.445556640625, 39.7880859375, 35.99169921875, 41.487548828125, 37.167724609375, 37.53857421875, 38.674560546875, 38.519287109375, 38.05224609375, 38.01708984375, 42.60546875, 40.761474609375, 37.469970703125, 35.918701171875, 41.098388671875, 39.917236328125, 36.3212890625, 39.554443359375, 40.126953125, 35.801025390625, 40.70654296875, 38.896728515625, 36.408935546875, 40.620361328125, 37.709228515625, 37.77294921875], "units": "ms", "important": false}, "thread 0|ScheduleStyleRecalculation_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": false}, "thread 0|EventDispatch_avg_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.161865234375, 0.107666015625, 0.1328125, 0.09903971354166667, 0.1005859375, 0.09928385416666667, 0.09033203125, 0.10205078125, 0.096435546875, 0.08723958333333333, 0.150390625, 0.08048502604166667, 0.08699544270833333, 0.09505208333333333, 0.20524088541666666, 0.09130859375, 0.09830729166666667, 0.08211263020833333, 0.08365885416666667, 0.08553059895833333, 0.15861002604166666, 0.08243815104166667, 0.10139973958333333, 0.1083984375, 0.085693359375, 0.10831705729166667, 0.15071614583333334, 0.1171875, 0.12369791666666667, 0.088134765625, 0.15641276041666666, 0.08463541666666667, 0.15226236979166666, 0.134033203125, 0.17569986979166666, 0.059244791666666664, 0.14493815104166666, 0.0830078125, 0.15022786458333334, 0.11678059895833333, 0.13712565104166666, 0.12760416666666666, 0.12687174479166666, 0.0810546875, 0.17097981770833334, 0.10660807291666667, 0.11930338541666667, 0.17097981770833334, 0.12776692708333334, 0.08186848958333333, 0.17228190104166666, 0.09318033854166667, 0.15193684895833334, 0.114990234375, 0.135986328125, 0.13826497395833334, 0.13899739583333334, 0.08203125, 0.09733072916666667, 0.09871419270833333, 0.1005859375, 0.083984375, 0.08732096354166667, 0.09977213541666667, 0.08349609375, 0.097412109375, 0.10921223958333333, 0.08976236979166667, 0.09798177083333333, 0.10774739583333333, 0.13834635416666666, 0.13883463541666666, 0.11067708333333333, 0.09033203125, 0.09220377604166667, 0.13720703125, 0.10392252604166667, 0.10066731770833333, 0.097412109375, 0.09944661458333333, 0.087158203125, 0.17154947916666666, 0.08487955729166667, 0.14689127604166666, 0.122802734375, 0.09928385416666667, 0.09724934895833333, 0.089111328125, 0.08504231770833333, 0.10343424479166667, 0.08512369791666667, 0.16251627604166666, 0.1123046875, 0.12386067708333333, 0.11759440104166667, 0.17431640625, 0.08317057291666667, 0.17887369791666666, 0.08642578125, 0.08536783854166667], "units": "ms", "important": false}, "thread 0|CompositeLayers_max": {"current": [6.552001953125, 4.82177734375, 4.218994140625, 3.888916015625, 4.93017578125, 5.64794921875, 4.300048828125, 4.427978515625, 3.958984375, 4.15625, 3.796875, 3.922119140625, 3.803955078125, 3.820068359375, 3.8076171875, 3.991943359375, 3.871826171875, 4.945068359375, 3.678955078125, 3.72314453125, 4.207275390625, 3.899169921875, 3.705810546875, 3.516845703125, 3.69091796875, 3.720947265625, 3.56201171875, 4.1240234375, 3.998046875, 3.946044921875, 3.7041015625, 3.81201171875, 3.76025390625, 3.699951171875, 3.47607421875, 3.63818359375, 4.656005859375, 4.165283203125, 3.6591796875, 3.849853515625, 4.373291015625, 4.14794921875, 3.7041015625, 3.93701171875, 3.9091796875, 3.9130859375, 3.993896484375, 3.770751953125, 4.14892578125, 4.283203125, 3.656982421875, 3.666259765625, 4.0888671875, 3.779296875, 3.815185546875, 3.718994140625, 4.1328125, 3.919921875, 4.08984375, 3.93408203125, 4.60009765625, 3.994140625, 3.68798828125, 3.81396484375, 3.7041015625, 4.511962890625, 3.566162109375, 3.755126953125, 4.312255859375, 3.742919921875, 3.868896484375, 4.0380859375, 3.953857421875, 3.880126953125, 4.113037109375, 3.669921875, 3.824951171875, 3.73291015625, 3.830322265625, 3.6689453125, 4.02099609375, 3.68505859375, 3.671875, 3.68603515625, 3.6376953125, 4.199951171875, 3.711181640625, 4.64306640625, 3.6708984375, 3.84814453125, 3.827880859375, 3.708251953125, 4.528076171875, 4.158935546875, 3.67724609375, 3.80908203125, 3.639892578125, 3.905029296875, 3.803955078125, 4.031005859375], "units": "ms", "important": true}, "thread 0|ResourceFinish_avg": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": true}, "thread 0|ParseHTML_max_by_url.http://www.retailmenot.com/view/macys.com": {"current": [8.91552734375, 2.495849609375, 2.705078125, 1.38916015625, 1.453125, 1.66796875, 1.34716796875, 2.083984375, 1.507080078125, 1.5390625, 1.588134765625, 1.43505859375, 1.8359375, 2.465087890625, 1.567138671875, 2.6123046875, 1.486083984375, 1.927734375, 1.64111328125, 1.991943359375, 1.52978515625, 1.35986328125, 1.574951171875, 1.5419921875, 1.34814453125, 1.377197265625, 1.444091796875, 1.9208984375, 2.599853515625, 1.47607421875, 1.368896484375, 1.680908203125, 2.739013671875, 1.578125, 1.5302734375, 1.68212890625, 1.830078125, 1.3310546875, 1.466064453125, 2.609130859375, 1.32080078125, 1.758056640625, 1.350830078125, 1.360107421875, 1.629150390625, 1.60107421875, 2.15869140625, 1.618896484375, 1.600830078125, 1.473876953125, 2.2890625, 1.781005859375, 1.830810546875, 1.390869140625, 2.566162109375, 1.464111328125, 2.18994140625, 1.37890625, 1.342041015625, 1.47412109375, 1.89013671875, 1.708984375, 1.8720703125, 1.455078125, 1.421142578125, 1.644775390625, 1.349853515625, 2.262939453125, 1.677001953125, 1.556396484375, 2.75, 1.97802734375, 2.360107421875, 1.3740234375, 2.58203125, 1.43603515625, 1.677978515625, 1.35107421875, 1.576904296875, 1.98681640625, 2.59619140625, 1.537109375, 1.35009765625, 1.64599609375, 2.078125, 2.0029296875, 1.591064453125, 1.46484375, 1.358154296875, 2.11181640625, 1.458984375, 1.381103515625, 1.9658203125, 1.658203125, 1.593994140625, 1.4990234375, 2.074951171875, 1.4599609375, 1.648193359375, 1.51904296875], "units": "ms", "important": false}, "thread 0|DecodeImage": {"current": [6.094970703125, 5.318115234375], "units": "ms", "important": true}, "thread 0|RecalculateStyles_avg_by_url.http://www.retailmenot.com/view/macys.com": {"current": [9.105387369791666, 6.730224609375, 5.0887451171875, 4.309395926339286, 3.630523681640625, 4.878702799479167, 4.748128255208333, 5.256640625, 4.851318359375, 4.125523158482143, 4.286237444196429, 4.254255022321429, 4.368512834821429, 5.845654296875, 3.6859130859375, 4.537283761160714, 4.080217633928571, 4.881673177083333, 4.364292689732143, 4.386893136160714, 3.6982421875, 3.642578125, 5.732212611607143, 5.003011067708333, 4.068464006696429, 5.059256417410714, 4.760538736979167, 4.831258138020833, 4.156808035714286, 3.839019775390625, 4.9588623046875, 4.369942801339286, 4.721993582589286, 5.851457868303571, 4.988240559895833, 7.16962890625, 4.318289620535714, 4.515311104910714, 6.61248779296875, 4.441022600446429, 5.3123046875, 4.268833705357143, 3.655120849609375, 4.103201729910714, 4.251185825892857, 4.948445638020833, 5.6490234375, 5.041573660714286, 4.954630533854167, 5.885172526041667, 5.2236328125, 5.112019856770833, 3.8761160714285716, 3.6837158203125, 4.870686848958333, 5.22490234375, 4.111258370535714, 4.117606026785714, 4.725423177083333, 4.08544921875, 4.028913225446429, 4.221540178571429, 4.7421875, 3.686767578125, 5.149983723958333, 5.852783203125, 4.197474888392857, 4.155936104910714, 3.676483154296875, 3.727264404296875, 3.83721923828125, 4.819783528645833, 5.445654296875, 5.25205078125, 4.735188802083333, 3.62432861328125, 4.118791852678571, 4.155831473214286, 5.0736083984375, 6.424031575520833, 4.527140299479167, 5.341094970703125, 5.034098307291667, 5.0352783203125, 4.545654296875, 3.72235107421875, 3.759429931640625, 4.161411830357143, 4.186907087053571, 3.66998291015625, 4.058419363839286, 4.801432291666667, 4.123570033482143, 5.054972330729167, 4.96484375, 4.140311104910714, 4.945882161458333, 4.125, 4.249232700892857, 4.184500558035714], "units": "ms", "important": false}, "thread 0|ResourceSendRequest_avg": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": true}, "thread 0|EvaluateScript_avg": {"current": [6.368582589285714, 2.8250558035714284, 2.2002650669642856, 1.7989327566964286, 1.8008858816964286, 2.080113002232143, 1.7156808035714286, 1.8908342633928572, 1.7444545200892858, 1.8883231026785714, 1.7679268973214286, 1.7438267299107142, 1.8424944196428572, 1.9606584821428572, 1.9441964285714286, 1.8499930245535714, 2.1284877232142856, 2.099155970982143, 1.8834751674107142, 2.066650390625, 1.7859584263392858, 1.8317173549107142, 2.1910226004464284, 1.8620954241071428, 1.9827008928571428, 1.9607631138392858, 1.7276088169642858, 1.857666015625, 2.12548828125, 1.9989536830357142, 1.7748325892857142, 2.051025390625, 2.1710379464285716, 1.7827497209821428, 1.9538922991071428, 1.7344447544642858, 2.00244140625, 1.6995326450892858, 2.047886439732143, 1.7692173549107142, 1.8664202008928572, 1.9174455915178572, 1.8644670758928572, 1.8206961495535714, 1.8019321986607142, 1.8407854352678572, 2.0685337611607144, 1.956787109375, 1.8056989397321428, 1.8379255022321428, 2.0194266183035716, 1.6793736049107142, 1.9952915736607142, 1.8675711495535714, 1.968505859375, 2.1192452566964284, 2.1602957589285716, 1.856689453125, 2.129429408482143, 1.704833984375, 1.8727678571428572, 1.8701869419642858, 2.026820591517857, 1.7079031808035714, 2.0260532924107144, 2.5428292410714284, 1.9923270089285714, 1.9185267857142858, 2.006556919642857, 2.043980189732143, 1.7768205915178572, 1.75048828125, 2.0977608816964284, 1.9947684151785714, 1.9246651785714286, 1.7071010044642858, 1.9993373325892858, 1.9476841517857142, 2.094761439732143, 1.8040945870535714, 1.8883928571428572, 2.0690220424107144, 1.9249093191964286, 1.8603864397321428, 2.1917550223214284, 2.0720912388392856, 1.7711704799107142, 1.9767020089285714, 2.2382114955357144, 1.8875209263392858, 1.8086286272321428, 1.9248046875, 1.889892578125, 2.091029575892857, 1.9201311383928572, 2.1167689732142856, 1.9140276227678572, 2.024937220982143, 1.8226492745535714, 1.84375], "units": "ms", "important": true}, "telemetry_page_measurement_results.num_failed": {"current": [0], "units": "count", "important": false}, "thread 0|DecodeImage_max": {"current": [2.22705078125, 3.47802734375], "units": "ms", "important": true}, "thread 0|Program": {"current": [67.64208984375, 36.31884765625, 21.570068359375, 22.447509765625, 23.416015625, 22.26123046875, 22.136962890625, 21.732666015625, 22.69873046875, 24.984619140625, 25.432373046875, 25.04248046875, 24.389404296875, 25.260009765625, 23.6923828125, 23.0283203125, 24.8857421875, 25.287353515625, 23.79150390625, 24.14990234375, 28.24072265625, 23.3896484375, 25.29248046875, 24.343017578125, 23.93603515625, 23.21484375, 22.651611328125, 23.4013671875, 23.38818359375, 25.32666015625, 21.878662109375, 21.500732421875, 26.636962890625, 24.240478515625, 24.126708984375, 22.395263671875, 27.242919921875, 25.162841796875, 23.90771484375, 25.028564453125, 21.413330078125, 21.05078125, 24.62255859375, 21.469970703125, 23.474609375, 22.957763671875, 21.01953125, 25.375244140625, 23.39599609375, 24.623046875, 25.082763671875, 25.771728515625, 22.997802734375, 24.736083984375, 20.71044921875, 22.394287109375, 27.889404296875, 25.00390625, 28.279541015625, 26.7919921875, 29.30517578125, 25.243408203125, 25.648681640625, 27.63232421875, 22.99951171875, 26.8076171875, 21.281494140625, 27.309326171875, 25.43212890625, 23.21728515625, 24.1171875, 26.084716796875, 24.306640625, 23.1044921875, 21.108154296875, 23.85107421875, 27.5234375, 23.532470703125, 24.40234375, 23.028076171875, 26.847412109375, 28.97265625, 22.89453125, 22.975830078125, 24.47607421875, 25.93603515625, 26.62841796875, 26.53857421875, 25.249267578125, 21.343994140625, 23.033935546875, 24.024658203125, 28.131591796875, 24.261474609375, 23.62841796875, 26.1796875, 20.791015625, 25.1796875, 26.5859375, 22.931884765625], "units": "ms", "important": true}, "thread 0|EvaluateScript_avg_by_url.http://www.retailmenot.com/view/macys.com": {"current": [6.368582589285714, 2.8250558035714284, 2.2002650669642856, 1.7989327566964286, 1.8008858816964286, 2.080113002232143, 1.7156808035714286, 1.8908342633928572, 1.7444545200892858, 1.8883231026785714, 1.7679268973214286, 1.7438267299107142, 1.8424944196428572, 1.9606584821428572, 1.9441964285714286, 1.8499930245535714, 2.1284877232142856, 2.099155970982143, 1.8834751674107142, 2.066650390625, 1.7859584263392858, 1.8317173549107142, 2.1910226004464284, 1.8620954241071428, 1.9827008928571428, 1.9607631138392858, 1.7276088169642858, 1.857666015625, 2.12548828125, 1.9989536830357142, 1.7748325892857142, 2.051025390625, 2.1710379464285716, 1.7827497209821428, 1.9538922991071428, 1.7344447544642858, 2.00244140625, 1.6995326450892858, 2.047886439732143, 1.7692173549107142, 1.8664202008928572, 1.9174455915178572, 1.8644670758928572, 1.8206961495535714, 1.8019321986607142, 1.8407854352678572, 2.0685337611607144, 1.956787109375, 1.8056989397321428, 1.8379255022321428, 2.0194266183035716, 1.6793736049107142, 1.9952915736607142, 1.8675711495535714, 1.968505859375, 2.1192452566964284, 2.1602957589285716, 1.856689453125, 2.129429408482143, 1.704833984375, 1.8727678571428572, 1.8701869419642858, 2.026820591517857, 1.7079031808035714, 2.0260532924107144, 2.5428292410714284, 1.9923270089285714, 1.9185267857142858, 2.006556919642857, 2.043980189732143, 1.7768205915178572, 1.75048828125, 2.0977608816964284, 1.9947684151785714, 1.9246651785714286, 1.7071010044642858, 1.9993373325892858, 1.9476841517857142, 2.094761439732143, 1.8040945870535714, 1.8883928571428572, 2.0690220424107144, 1.9249093191964286, 1.8603864397321428, 2.1917550223214284, 2.0720912388392856, 1.7711704799107142, 1.9767020089285714, 2.2382114955357144, 1.8875209263392858, 1.8086286272321428, 1.9248046875, 1.889892578125, 2.091029575892857, 1.9201311383928572, 2.1167689732142856, 1.9140276227678572, 2.024937220982143, 1.8226492745535714, 1.84375], "units": "ms", "important": false}, "thread 0|TimerInstall_avg_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "units": "ms", "important": false}, "thread 0|EventDispatch_max_by_url.http://www.retailmenot.com/view/macys.com": {"current": [0.161865234375, 0.2529296875, 0.326171875, 0.222900390625, 0.241943359375, 0.218994140625, 0.19873046875, 0.22705078125, 0.221923828125, 0.19580078125, 0.376953125, 0.17919921875, 0.18212890625, 0.22802734375, 0.5390625, 0.21337890625, 0.23779296875, 0.18408203125, 0.1826171875, 0.19287109375, 0.388916015625, 0.185791015625, 0.235107421875, 0.26806640625, 0.19091796875, 0.240966796875, 0.368896484375, 0.271728515625, 0.31298828125, 0.190185546875, 0.394287109375, 0.177978515625, 0.390869140625, 0.320068359375, 0.462158203125, 0.10986328125, 0.370849609375, 0.195068359375, 0.3896484375, 0.269775390625, 0.34716796875, 0.31298828125, 0.316162109375, 0.17822265625, 0.4521484375, 0.2529296875, 0.294677734375, 0.4384765625, 0.31201171875, 0.180908203125, 0.449951171875, 0.21484375, 0.3828125, 0.286865234375, 0.330078125, 0.3369140625, 0.34130859375, 0.177001953125, 0.214111328125, 0.228759765625, 0.22900390625, 0.187744140625, 0.18408203125, 0.229248046875, 0.189208984375, 0.223876953125, 0.264892578125, 0.18798828125, 0.223876953125, 0.25537109375, 0.333984375, 0.35693359375, 0.259765625, 0.196044921875, 0.1982421875, 0.325439453125, 0.23974609375, 0.218994140625, 0.224853515625, 0.234619140625, 0.18310546875, 0.454345703125, 0.184814453125, 0.369384765625, 0.2822265625, 0.22900390625, 0.22802734375, 0.18603515625, 0.186767578125, 0.237060546875, 0.18408203125, 0.4189453125, 0.262939453125, 0.290771484375, 0.264892578125, 0.44091796875, 0.184326171875, 0.47509765625, 0.186767578125, 0.18212890625], "units": "ms", "important": false}, "thread 0|Paint_avg_by_url.http://www.retailmenot.com/view/macys.com": {"current": [4.687174479166667, 2.942195012019231, 3.549715909090909, 3.187762920673077, 3.228327824519231, 3.12518310546875, 3.2474772135416665, 3.271262428977273, 3.1272989908854165, 3.061260516826923, 2.9980265299479165, 3.025634765625, 3.0250713641826925, 3.0589111328125, 2.979701450892857, 2.9993082682291665, 3.0940464564732144, 3.3101917613636362, 2.9584437779017856, 3.0457669771634617, 2.901157924107143, 3.1095377604166665, 3.2443033854166665, 3.145751953125, 3.1173377403846154, 3.2665349786931817, 3.2164510091145835, 3.17706298828125, 3.27142333984375, 2.9876011439732144, 3.2893798828125, 2.8760463169642856, 2.942570612980769, 3.3020685369318183, 3.1303507486979165, 3.35361328125, 3.0416085379464284, 3.2003079927884617, 3.604766845703125, 2.9921061197916665, 3.10882568359375, 2.8995079627403846, 2.9625244140625, 3.0543619791666665, 3.1465594951923075, 3.4923650568181817, 3.4134033203125, 3.2414347330729165, 3.1773885091145835, 3.18145751953125, 3.3195356889204546, 3.1410381610576925, 2.89813232421875, 2.8726981026785716, 3.309969815340909, 3.294411399147727, 2.9808819110576925, 3.1792367788461537, 3.541748046875, 3.0847342354910716, 2.988037109375, 3.1965738932291665, 3.1863902698863638, 2.899151141826923, 3.1934814453125, 3.5500732421875, 3.1116473858173075, 3.15924072265625, 2.8221609933035716, 2.9193115234375, 3.139439174107143, 3.233132102272727, 3.29736328125, 3.404807350852273, 3.1111966646634617, 2.842006138392857, 2.9993082682291665, 3.191349909855769, 3.378884055397727, 3.41259765625, 2.9749661959134617, 2.9630220853365383, 3.1710205078125, 3.1680908203125, 3.27734375, 2.911533900669643, 2.882305438701923, 2.99322509765625, 3.1614145132211537, 2.851231166294643, 3.0267740885416665, 3.29620361328125, 3.086688701923077, 3.254638671875, 3.1312725360576925, 3.24139404296875, 3.309903231534091, 2.901454380580357, 2.9007098858173075, 3.1477457682291665], "units": "ms", "important": false}, "thread 0|GCEvent_max": {"current": [6.92529296875, 6.52490234375, 6.647216796875, 7.209228515625, 7.7421875, 6.458984375, 7.409912109375, 6.5, 8.1591796875, 6.6796875, 7.128173828125, 6.56591796875, 7.866943359375, 7.267822265625, 6.8310546875, 8.2099609375, 6.556884765625, 6.567138671875, 8.19580078125, 6.56494140625, 7.318115234375, 6.61474609375, 7.8720703125, 6.530029296875, 6.470947265625, 8.183837890625, 7.025146484375, 6.488037109375, 6.39404296875, 6.531005859375, 7.565185546875, 6.719970703125, 7.2841796875, 6.576171875, 7.85595703125, 7.470947265625, 8.02294921875, 7.654052734375, 7.73095703125, 6.584716796875, 6.512939453125, 7.698974609375, 6.43505859375, 6.93017578125, 6.657958984375, 7.8427734375, 6.98388671875, 6.7548828125, 7.2568359375, 6.586181640625, 7.681884765625, 6.623046875, 6.634033203125, 7.06787109375, 6.64599609375, 2.969970703125, 8.291015625, 6.56005859375, 6.553955078125, 6.69921875, 8.09912109375, 6.552001953125, 6.478271484375, 7.009033203125, 6.705078125, 7.467041015625, 6.880126953125, 8.873046875, 7.542236328125, 7.812744140625, 5.757080078125, 8.010009765625, 7.837158203125, 7.036865234375, 7.516357421875, 6.088134765625, 6.972900390625, 7.0400390625, 8.010009765625, 6.976318359375, 6.6162109375, 6.64306640625, 7.93408203125, 10.40283203125, 7.814697265625, 7.89794921875, 7.526123046875, 6.72802734375, 8.41015625, 7.59521484375, 6.762939453125, 6.2880859375, 7.10205078125, 6.68603515625, 6.58203125, 6.652099609375, 7.48486328125, 7.7509765625, 7.68701171875], "units": "ms", "important": true}, "thread 0|GCEvent_by_url.http://www.retailmenot.com/view/macys.com": {"current": [8.51220703125, 6.52490234375, 6.647216796875, 7.209228515625, 7.7421875, 6.458984375, 7.409912109375, 6.5, 8.1591796875, 6.6796875, 7.128173828125, 6.56591796875, 7.866943359375, 7.267822265625, 6.8310546875, 8.2099609375, 6.556884765625, 6.567138671875, 8.19580078125, 6.56494140625, 7.318115234375, 6.61474609375, 7.8720703125, 6.530029296875, 6.470947265625, 8.183837890625, 7.025146484375, 6.488037109375, 6.39404296875, 6.531005859375, 7.565185546875, 6.719970703125, 7.2841796875, 6.576171875, 7.85595703125, 7.470947265625, 8.02294921875, 7.654052734375, 7.73095703125, 6.584716796875, 6.512939453125, 7.698974609375, 6.43505859375, 6.93017578125, 6.657958984375, 7.8427734375, 6.98388671875, 6.7548828125, 7.2568359375, 6.586181640625, 7.681884765625, 6.623046875, 6.634033203125, 7.06787109375, 6.64599609375, 2.969970703125, 8.291015625, 9.09033203125, 6.553955078125, 8.234130859375, 8.09912109375, 6.552001953125, 7.997314453125, 7.009033203125, 6.705078125, 7.467041015625, 7.768310546875, 8.873046875, 7.542236328125, 7.812744140625, 6.60205078125, 8.010009765625, 7.837158203125, 7.036865234375, 7.516357421875, 7.485107421875, 6.972900390625, 7.0400390625, 8.010009765625, 6.976318359375, 8.170166015625, 6.64306640625, 7.93408203125, 10.40283203125, 7.814697265625, 9.229736328125, 7.526123046875, 6.72802734375, 8.41015625, 7.59521484375, 6.762939453125, 7.875244140625, 7.10205078125, 6.68603515625, 6.58203125, 6.652099609375, 7.48486328125, 9.156982421875, 7.68701171875], "units": "ms", "important": false}, "thread 0|DecodeImage_by_url.http://www.retailmenot.com/view/macys.com": {"current": [6.094970703125, 5.318115234375], "units": "ms", "important": false}, "thread 0|FunctionCall_max_by_url.http://www.retailmenot.com/view/macys.com": {"current": [13.526123046875, 1.92138671875, 7.506103515625, 7.028076171875, 6.8203125, 7.14208984375, 9.65087890625, 7.4951171875, 7.8876953125, 7.951171875, 7.416015625, 7.56494140625, 8.144775390625, 7.510986328125, 9.862060546875, 7.5439453125, 7.182861328125, 7.6953125, 7.612060546875, 7.64111328125, 7.986083984375, 7.39599609375, 8.030029296875, 8.048095703125, 7.39208984375, 7.664794921875, 7.80615234375, 7.64794921875, 7.10205078125, 7.822265625, 7.385009765625, 8.096923828125, 7.60498046875, 8.050048828125, 8.623046875, 0.706787109375, 7.710205078125, 7.416015625, 6.86328125, 7.987060546875, 7.319091796875, 7.6201171875, 6.736083984375, 8.3671875, 7.4306640625, 7.72412109375, 7.599853515625, 7.92626953125, 7.18896484375, 6.927978515625, 8.207763671875, 8.9658203125, 7.5380859375, 7.260986328125, 7.480712890625, 10.2060546875, 8.206787109375, 10.256103515625, 8.2080078125, 8.1640625, 7.67578125, 7.81103515625, 7.594970703125, 8.18994140625, 7.403076171875, 7.97119140625, 7.205078125, 9.506103515625, 7.7041015625, 7.4208984375, 7.443115234375, 8.119140625, 7.68408203125, 7.44287109375, 8.53173828125, 8.026123046875, 8.0830078125, 7.27880859375, 7.17578125, 8.046142578125, 7.55224609375, 8.72998046875, 8.207763671875, 7.882080078125, 10.871826171875, 8.217041015625, 7.875732421875, 8.18603515625, 7.35302734375, 7.9638671875, 7.4658203125, 9.387939453125, 7.322998046875, 8.164794921875, 7.755126953125, 9.6162109375, 7.747802734375, 8.238037109375, 8.067138671875, 7.8212890625], "units": "ms", "important": false}, "dom_content_loaded_time_by_url.http://www.retailmenot.com/view/macys.com": {"current": [789.0, 617.0, 436.0, 399.0, 397.0, 400.0, 402.0, 384.0, 414.0, 402.0, 404.0, 411.0, 409.0, 389.0, 455.0, 436.0, 401.0, 400.0, 394.0, 358.0, 405.0, 397.0, 410.0, 418.0, 418.0, 427.0, 442.0, 411.0, 400.0, 396.0, 421.0, 357.0, 392.0, 419.0, 450.0, 368.0, 453.0, 402.0, 387.0, 460.0, 417.0, 387.0, 394.0, 345.0, 413.0, 420.0, 391.0, 464.0, 443.0, 406.0, 408.0, 390.0, 373.0, 402.0, 345.0, 351.0, 355.0, 396.0, 398.0, 397.0, 422.0, 420.0, 411.0, 395.0, 422.0, 395.0, 422.0, 356.0, 416.0, 396.0, 409.0, 418.0, 380.0, 397.0, 354.0, 351.0, 416.0, 410.0, 404.0, 413.0, 445.0, 428.0, 394.0, 364.0, 368.0, 418.0, 407.0, 422.0, 412.0, 357.0, 403.0, 412.0, 409.0, 398.0, 392.0, 412.0, 365.0, 402.0, 396.0, 417.0], "units": "ms", "important": false}, "thread 0|Program_max_by_url.http://www.retailmenot.com/view/macys.com": {"current": [12.9267578125, 8.84228515625, 7.744873046875, 6.694091796875, 6.93603515625, 6.52294921875, 6.965087890625, 6.682861328125, 7.01611328125, 8.18017578125, 9.18505859375, 8.23291015625, 7.910400390625, 10.047607421875, 6.822998046875, 7.3349609375, 7.805908203125, 8.842041015625, 7.01708984375, 8.816162109375, 10.357177734375, 6.833740234375, 8.69482421875, 8.429931640625, 7.044189453125, 7.152587890625, 6.946044921875, 6.80712890625, 6.7998046875, 6.85498046875, 6.927978515625, 6.77587890625, 8.75390625, 8.118896484375, 8.89404296875, 9.676025390625, 9.050048828125, 8.146240234375, 9.51123046875, 8.913330078125, 6.935791015625, 6.843017578125, 7.78125, 7.497314453125, 6.96484375, 6.851806640625, 6.73291015625, 8.712890625, 7.031982421875, 8.68896484375, 9.38525390625, 9.173095703125, 8.7568359375, 6.971923828125, 7.0439453125, 8.520263671875, 8.2216796875, 7.9873046875, 7.296630859375, 8.759765625, 8.447265625, 8.432373046875, 9.638427734375, 6.81591796875, 6.71630859375, 9.955078125, 7.092041015625, 7.77978515625, 8.3876953125, 7.048828125, 7.2509765625, 6.856201171875, 8.939208984375, 6.810791015625, 7.074951171875, 8.64892578125, 7.019287109375, 6.8134765625, 8.7490234375, 8.072021484375, 8.614990234375, 6.955078125, 7.6171875, 8.260986328125, 8.598876953125, 8.005859375, 6.983642578125, 9.440185546875, 7.845947265625, 6.60888671875, 7.18896484375, 6.66455078125, 8.076904296875, 8.551025390625, 7.032958984375, 8.787353515625, 6.841064453125, 8.172607421875, 7.744873046875, 6.674072265625], "units": "ms", "important": false}, "dom_content_loaded_time": {"current": [789.0, 617.0, 436.0, 399.0, 397.0, 400.0, 402.0, 384.0, 414.0, 402.0, 404.0, 411.0, 409.0, 389.0, 455.0, 436.0, 401.0, 400.0, 394.0, 358.0, 405.0, 397.0, 410.0, 418.0, 418.0, 427.0, 442.0, 411.0, 400.0, 396.0, 421.0, 357.0, 392.0, 419.0, 450.0, 368.0, 453.0, 402.0, 387.0, 460.0, 417.0, 387.0, 394.0, 345.0, 413.0, 420.0, 391.0, 464.0, 443.0, 406.0, 408.0, 390.0, 373.0, 402.0, 345.0, 351.0, 355.0, 396.0, 398.0, 397.0, 422.0, 420.0, 411.0, 395.0, 422.0, 395.0, 422.0, 356.0, 416.0, 396.0, 409.0, 418.0, 380.0, 397.0, 354.0, 351.0, 416.0, 410.0, 404.0, 413.0, 445.0, 428.0, 394.0, 364.0, 368.0, 418.0, 407.0, 422.0, 412.0, 357.0, 403.0, 412.0, 409.0, 398.0, 392.0, 412.0, 365.0, 402.0, 396.0, 417.0], "units": "ms", "important": true}}}}, "revision": "98de256"}]</script>
<script id="units-json" type="application/json">{
"_description" : "This file contains info about our performance test units, used by the perf dashboard (http://chromeperf.appspot.com).",
"%": {
"improvement_direction": "down",
"why": "Percent CPU usage. Used by cpu metric."
},
"bytes": {
"improvement_direction": "down"
},
"commit_count": {
"improvement_direction": "up",
"why": "layer_tree_host_perftest"
},
"count": {
"improvement_direction": "down",
"why": "Processes"
},
"files": {
"improvement_direction": "down",
"why": "Static initializers"
},
"fps": {
"improvement_direction": "up",
"why": "The faster the better. Used by scirra benchmark."
},
"frames": {
"improvement_direction": "down",
"why": "Dropped frames."
},
"frames-per-second": {
"improvement_direction": "up",
"why": "Synonym for fps."
},
"frame_count": {
"improvement_direction": "up",
"why": "layer_tree_host_perftest"
},
"frame_time": {
"improvement_direction": "down"
},
"kb": {
"improvement_direction": "down",
"why": "Synonym for KB, used in memory and io metrics."
},
"KB": {
"improvement_direction": "down",
"why": "KB of memory usage. Less memory usage is better. Used in endure."
},
"lines": {
"improvement_direction": "up",
"why": "Coverage. More test coverage is better."
},
"load": {
"improvement_direction": "down"
},
"MB": {
"improvement_direction": "down"
},
"ms": {
"improvement_direction": "down",
"why": "Used in many Telemetry measurements. Fewer ms of time means faster."
},
"milliseconds": {
"improvement_direction": "down",
"why": "Synonym for ms."
},
"milliseconds-per-frame": {
"improvement_direction": "down"
},
"minutes": {
"improvement_direction": "down",
"why": "Used for NaCl build time."
},
"mWh": {
"improvement_direction": "down",
"why": "Fewer milliwatt-hours means less energy consumed."
},
"objects (bigger is better)": {
"improvement_direction": "up",
"why": "Used in spaceport benchmark."
},
"ObjectsAt30FPS": {
"improvement_direction": "up"
},
"percent": {
"improvement_direction": "down",
"why": "Synonym for %, used in memory metric for percent fragmentation."
},
"coverage%": {
"improvement_direction": "up",
"why": "Used in alloy-perf-test/cts%/passed."
},
"points": {
"improvement_direction": "up",
"why": "Synonym for score, used in ChromeOS touchpad tests."
},
"ports": {
"improvement_direction": "down"
},
"relocs": {
"improvement_direction": "down"
},
"runs/ms": {
"improvement_direction": "up",
"why": "Higher runs/ms implies faster execution."
},
"runs/s": {
"improvement_direction": "up",
"why": "Used in dromaeo. Higher runs/s implies faster execution."
},
"runs_per_s": {
"improvement_direction": "up",
"why": "Synonym for runs/s, used in dromaeo data sent by cros bots."
},
"runs_per_second": {
"improvement_direction": "up",
"why": "Synonym for runs/s."
},
"score": {
"improvement_direction": "up",
"why": "Used in a variety of benchmarks where a higher score is better."
},
"score_(bigger_is_better)": {
"improvement_direction": "up",
"why": "Synonym for score."
},
"score (bigger is better)": {
"improvement_direction": "up",
"why": "Synonym for score, used in jsgamebench and dom_perf."
},
"sec": {
"improvement_direction": "down"
},
"seconds": {
"improvement_direction": "down"
},
"us": {
"improvement_direction": "down"
}
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment