Skip to content

Instantly share code, notes, and snippets.

@mkedwards
Forked from enjalot/index.html
Last active December 23, 2015 00:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mkedwards/6556709 to your computer and use it in GitHub Desktop.
Save mkedwards/6556709 to your computer and use it in GitHub Desktop.
This file has been truncated, but you can view the full file.
<!DOCTYPE html>
<html>
<head>
<title>Bar Chart</title>
<script type="text/javascript" src="http://mbostock.github.com/d3/d3.js?2.1.3"></script>
<script type="text/javascript" src="http://mbostock.github.com/d3/d3.layout.js?2.1.3"></script>
<style type="text/css">
.legend { font: 16px Arial;}
</style>
</head>
<body>
<div id="chart"></div>
<script type="text/javascript">
//setup svg canvas
var svg = d3.select("#chart")
.append("svg:svg")
//.attr("width", "1000")
//.attr("height", "700")
.attr("width", "1000")
.attr("height", "2700")
.attr("viewBox", "0 0 1100 2800")
.attr("preserveAspectRatio", "xMinYMin meet")
.attr("id", "charts");
//.on("click", clickypie)
var bgrect = svg.append("svg:rect")
.attr("width", "100%")
.attr("height", "100%")
.attr("stroke", "#000")
.attr("stroke-width", 1)
.attr("fill", "none");
function bakebar(classname, data, stats, xp, yp, w, h)
{
//color could be made a parameter
var color = d3.scale.category10()
var x_max = d3.max(data, function(d)
{
return d.x
})
console.log(x_max)
x = d3.scale.linear()
.domain([ 0, 300 ])
.range([ 0, w ])
var data_max = d3.max(data, function(d)
{
return d.pop
})
console.log(data_max)
y = d3.scale.linear()
.domain([ 0, 240 ])
.range([ h, 0 ])
var xAxis = d3.svg.axis()
.scale(x)
.orient("bottom")
.ticks(10);
var yAxis = d3.svg.axis()
.scale(y)
.orient("left")
.ticks(10);
var bar = d3.select("#charts")
.append("svg:g")
.attr("class", classname);
var bars = bar.selectAll("g.bar")
.data(data)
.enter().append("svg:g")
.attr("class", "bar")
.attr("transform", "translate(" + xp + "," + yp + ")");
console.log("BARS");
var paths = bars.append("svg:rect")
.attr("fill", function(d, i) { return color(d.key); })
.attr("fill-opacity", .6)
.attr("x", function(d,i) { return x(d.x * 0.001) })
.attr("y", function(d,i) { return y(d.pop) })
.attr("width", function(d,i) { return x(d.x * 0.001 + 0.3) - x(d.x * 0.001) })
.attr("height", function(d,i) { return h - y(d.pop) })
.on("mouseover", function(d, i)
{
d3.select(this)
.attr("fill-opacity", 1);
})
.on("mouseout", function(d, i)
{
d3.select(this)
.attr("fill-opacity", .6);
});
svg.append("svg:g")
.attr("class", "axis")
.attr("transform", "translate(" + xp + "," + (h + yp) + ")")
.call(xAxis);
svg.append("svg:g")
.attr("class", "axis")
.attr("transform", "translate(" + xp + "," + yp + ")")
.call(yAxis);
svg.append("text")
.attr("class", "x label")
.attr("text-anchor", "end")
.attr("x", w)
.attr("y", h + yp + yp)
.text("Time (s)");
svg.append("text")
.attr("class", "y label")
.attr("text-anchor", "end")
.attr("x", -yp)
.attr("y", 30)
.attr("dy", ".75em")
.attr("transform", "rotate(-90)")
.text("Block/sleep duration (ms)");
// add legend
var legend = svg.append("svg:g")
.attr("class", "legend")
.attr("x", w - 65)
.attr("y", 25)
.attr("height", 100)
.attr("width", 100);
legend.selectAll('g').data(color.domain())
.enter()
.append('g')
.each(function(d, i) {
var g = d3.select(this);
g.append("rect")
.attr("x", w - 200)
.attr("y", i*25 + 25)
.attr("width", 10)
.attr("height", 10)
.style("fill", color(d));
g.append("text")
.attr("x", w - 185)
.attr("y", i * 25 + 33)
.attr("height",30)
.attr("width",100)
.style("fill", color(d))
.text("(" + stats[d][0] + ":" + stats[d][1] + ") " + d);
});
}
var data = [
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1213.205078, 'pop': 3 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 1214.486817, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1214.639404, 'pop': 3 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 1214.853027, 'pop': 11 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 1215.82959, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 1216.165284, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1226.358155, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1226.510742, 'pop': 9 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1226.571778, 'pop': 10 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1226.571779, 'pop': 12 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 1226.846436, 'pop': 62 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 1226.968506, 'pop': 11 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 1229.31836, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1229.470947, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 1229.623535, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 1229.928711, 'pop': 12 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1243.05127, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1243.264893, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1243.325928, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1243.356446, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 1243.722656, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 1245.828369, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 1246.07251, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1246.19458, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 1246.408203, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 1246.896484, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1261.331299, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1261.880615, 'pop': 14 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1261.972168, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1261.972169, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 1262.368897, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 1264.779785, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 1265.084961, 'pop': 17 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1265.359619, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 1272.500733, 'pop': 24 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1272.683838, 'pop': 6 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 1273.263672, 'pop': 10 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1276.406983, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1276.498535, 'pop': 3 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1276.55957, 'pop': 2 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1276.590088, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 1277.505615, 'pop': 11 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 1277.841309, 'pop': 11 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 1278.421143, 'pop': 4 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 1280.191162, 'pop': 5 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 1280.496338, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1292.855957, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1293.06958, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1293.130615, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1293.130616, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 1293.893555, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 1294.351319, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 1294.564942, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 1296.457032, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 1296.884278, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1309.488037, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1309.732178, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1309.823731, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1309.854248, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 1310.891846, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 1311.380127, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 1311.654785, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 1314.859131, 'pop': 17 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1314.981201, 'pop': 3 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 1315.072754, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1326.181153, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1326.364258, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1326.425293, 'pop': 10 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1326.425294, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 1327.310303, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 1329.11084, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 1329.324463, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 1329.721192, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 1333.047607, 'pop': 3 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 1333.9021, 'pop': 4 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1334.054688, 'pop': 4 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 1337.960938, 'pop': 8 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1338.083008, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1343.026856, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1343.087891, 'pop': 4 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1343.179444, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1343.179445, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 1343.85083, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 1344.308594, 'pop': 10 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 1346.475342, 'pop': 11 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 1346.719483, 'pop': 8 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1359.719971, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1359.933594, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1360.23877, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1360.238771, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 1361.154297, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 1364.114502, 'pop': 18 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1364.26709, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 1364.38916, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1376.321533, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1376.382569, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1376.443604, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1376.443605, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 1377.267578, 'pop': 28 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 1378.823975, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 1379.159668, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1392.984131, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1393.045166, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1393.075684, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1393.106201, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 1393.838623, 'pop': 27 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 1395.51709, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 1395.669678, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1396.096924, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1409.646729, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1409.677246, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1409.707764, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1409.738281, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 1410.01294, 'pop': 29 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 1411.752442, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 1411.935547, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1426.309326, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1426.431397, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1426.461914, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1426.492432, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 1426.797607, 'pop': 29 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 1428.53711, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 1428.842285, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1442.819336, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1442.971924, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1443.002442, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1443.002443, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 1443.765381, 'pop': 30 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 1445.230225, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 1445.382813, 'pop': 15 },
{'key': '3647: FinalizerWatchd :: futex_wait_queue_me+0xe8 (0x6761b838)', 'x': 1446.115235, 'pop': 9536 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1459.634522, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1459.756592, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1459.78711, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1459.787111, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 1460.489014, 'pop': 30 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 1462.197998, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 1462.350586, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1476.41919, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1476.54126, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1476.571778, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1476.602295, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 1477.304199, 'pop': 30 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 1478.891113, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 1479.226807, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1493.112305, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1493.234375, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1493.264893, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1493.29541, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 1493.539551, 'pop': 29 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 1495.248535, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 1495.553711, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1509.469727, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1509.561279, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1509.591797, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1509.622315, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 1510.385254, 'pop': 29 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 1511.880615, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 1512.033203, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1526.31543, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1526.4375, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1526.468018, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1526.498535, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 1527.20044, 'pop': 30 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 1528.939942, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 1529.09253, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1542.94751, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1543.06958, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1543.130615, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1543.130616, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 1543.374756, 'pop': 29 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 1545.205811, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 1545.388916, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1559.640625, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1559.762695, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1559.823731, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1559.823732, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 1560.067871, 'pop': 29 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 1561.837891, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 1562.143067, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1576.425293, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1576.547364, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1576.577881, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1576.608399, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 1577.157715, 'pop': 30 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 1578.836182, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 1579.11084, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1592.782715, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1592.904785, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1592.935303, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1592.935304, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 1593.759278, 'pop': 30 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 1595.437744, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 1595.590332, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1609.628418, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1609.750489, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1609.781006, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1609.781007, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 1610.48291, 'pop': 29 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 1611.947754, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 1612.283447, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1626.291016, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1626.413086, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1626.443604, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1626.474121, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 1627.145508, 'pop': 29 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 1628.701904, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 1628.854492, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1642.953613, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1643.075684, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1643.136719, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1643.13672, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 1644.418457, 'pop': 30 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1646.066407, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 1646.371582, 'pop': 18 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 1646.707276, 'pop': 17 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1659.616211, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1659.707764, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1659.738281, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1659.738282, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 1660.01294, 'pop': 29 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 1661.660889, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 1661.966065, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1676.095703, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1676.248291, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1676.309326, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1676.309327, 'pop': 14 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 1677.041748, 'pop': 428 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 1677.133301, 'pop': 28 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 1678.65918, 'pop': 17 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 1678.964356, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1692.941407, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1693.063477, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1693.124512, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1693.124513, 'pop': 15 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 1693.948487, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 1694.040039, 'pop': 30 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 1695.565918, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 1695.749024, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1709.604004, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1709.726075, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1709.756592, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1709.756593, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 1710.336426, 'pop': 29 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 1712.014893, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 1712.320069, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1726.114014, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1726.510742, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1726.54126, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1726.571778, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 1727.060059, 'pop': 29 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 1728.891113, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 1729.165772, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1742.898682, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1743.081787, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1743.112305, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1743.142823, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 1744.027832, 'pop': 29 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 1745.584229, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 1745.767334, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1759.622315, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1759.713867, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1759.774903, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1759.774904, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 1760.354736, 'pop': 29 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 1762.033203, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 1762.338379, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1776.101807, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1776.19336, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1776.254395, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1776.254396, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 1777.047852, 'pop': 29 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 1778.512696, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 1778.756836, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1792.916992, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1793.039063, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1793.06958, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1793.069581, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 1793.618897, 'pop': 29 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 1795.327881, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 1795.633057, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1809.427002, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1809.518555, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1809.57959, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1809.579591, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 1810.373047, 'pop': 29 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 1811.898926, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 1812.051514, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1826.272705, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1826.394776, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1826.425293, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1826.425294, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 1827.127198, 'pop': 29 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 1828.653076, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 1828.836182, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1842.935303, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1843.026856, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1843.087891, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1843.087892, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 1843.759278, 'pop': 30 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 1845.315674, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 1845.49878, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1859.842041, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1859.964112, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1859.994629, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1860.025147, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 1860.696533, 'pop': 30 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 1861.093262, 'pop': 159 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 1862.344483, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 1862.527588, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1876.321533, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1876.474121, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1876.565674, 'pop': 15 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1876.565675, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 1877.267578, 'pop': 30 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 1879.403809, 'pop': 17 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1879.556397, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 1879.739502, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1893.014649, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1893.136719, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1893.197754, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1893.228272, 'pop': 15 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 1893.930176, 'pop': 31 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 1894.082764, 'pop': 29 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1896.096924, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 1896.371582, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1896.493653, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 1896.676758, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1909.585693, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1909.677246, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1909.738281, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1909.738282, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 1910.318115, 'pop': 28 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 1912.0271, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 1912.332276, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1926.095703, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1926.217774, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1926.553467, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1926.553468, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 1927.011232, 'pop': 28 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 1929.086426, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1929.208496, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 1929.269532, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1942.910889, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1943.063477, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1943.093995, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1943.093996, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 1943.795899, 'pop': 29 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 1945.321778, 'pop': 17 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 1945.474366, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1959.726075, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1959.848145, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1959.878662, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1959.878663, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 1960.580567, 'pop': 29 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 1962.167481, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 1962.350586, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1976.236084, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1976.358155, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1976.388672, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1976.41919, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 1976.66333, 'pop': 29 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 1978.769043, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 1978.921631, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 1992.898682, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 1993.020752, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 1993.05127, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 1993.051271, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 2009.56128, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 2009.652832, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 2146.218995, 'pop': 130 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 2396.218995, 'pop': 238 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 2646.005372, 'pop': 238 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 2896.005371, 'pop': 238 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 2900.949219, 'pop': 4 },
{'key': '3655: Timer-0 :: futex_wait_queue_me+0xe8 (0x6761d0c0)', 'x': 2954.690674, 'pop': 10490 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 2954.812744, 'pop': 917 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 2954.934815, 'pop': 946 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 2955.056885, 'pop': 901 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 2959.329346, 'pop': 55 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 2959.512452, 'pop': 4 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 2959.878662, 'pop': 937 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 2960.641602, 'pop': 1016 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 2962.167481, 'pop': 937 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 2962.289551, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 2962.350586, 'pop': 937 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 2976.052979, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 2976.205567, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 2976.236084, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 2976.236085, 'pop': 937 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 2976.571778, 'pop': 20 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 2978.494385, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 2978.799561, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 2992.624024, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 2992.746094, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 2992.776612, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 2992.776613, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 2993.631104, 'pop': 29 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 2995.492676, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 2995.675781, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3009.286621, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3009.408692, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3009.469727, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3009.469728, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3010.293701, 'pop': 29 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3011.911133, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3012.216309, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3025.949219, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3026.071289, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3026.132324, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3026.132325, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3026.956299, 'pop': 29 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3028.45166, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3028.665284, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3042.611817, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3042.733887, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3042.764404, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3042.764405, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3043.588379, 'pop': 29 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3045.175293, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3045.327881, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3059.274414, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3059.396484, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3059.427002, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3059.427003, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3060.281495, 'pop': 29 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3061.929444, 'pop': 17 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3062.112549, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3075.937012, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3076.059082, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3076.0896, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3076.120118, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3076.913575, 'pop': 29 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3078.408936, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3078.714112, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3092.59961, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3092.72168, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3092.752198, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3092.752199, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3093.545655, 'pop': 29 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3095.010498, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3095.163086, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3109.262207, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3109.384278, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3109.414795, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3109.445313, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3110.23877, 'pop': 29 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3111.734131, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3111.886719, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3125.955323, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3126.352051, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3126.413086, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3126.413087, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3127.206543, 'pop': 30 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3128.793457, 'pop': 17 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3129.098633, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3142.862061, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3142.984131, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3143.045166, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3143.045167, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3143.899658, 'pop': 30 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3145.608643, 'pop': 17 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3146.188477, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3146.310547, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3159.25, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3159.311035, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3159.37207, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3159.372071, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3160.165527, 'pop': 29 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3161.721924, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3162.0271, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3175.912598, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3176.034668, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3176.065186, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3176.095703, 'pop': 15 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3176.828125, 'pop': 205 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3176.88916, 'pop': 29 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3178.65918, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3178.842285, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3192.575196, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3192.727784, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3192.758301, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3192.758302, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3193.582276, 'pop': 29 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3194.192627, 'pop': 16 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3195.41333, 'pop': 3507 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 3197.763184, 'pop': 3526 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 3200.845459, 'pop': 3514 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3205.667236, 'pop': 4 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 3206.765869, 'pop': 3517 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3207.803467, 'pop': 29 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3207.925537, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3208.078125, 'pop': 27 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 3208.718995, 'pop': 3524 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3208.932618, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3209.390381, 'pop': 15 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3209.634522, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3210.061768, 'pop': 29 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3210.611084, 'pop': 3 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3212.04541, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3212.106446, 'pop': 3 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3212.197998, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3212.411621, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3212.472656, 'pop': 2 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3212.716797, 'pop': 3 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 3213.144043, 'pop': 6 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3215.860107, 'pop': 2 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 3216.806153, 'pop': 7 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3216.928223, 'pop': 2 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 3218.484619, 'pop': 8 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3222.055176, 'pop': 3 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3222.146729, 'pop': 3 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3224.282959, 'pop': 2 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3224.374512, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3225.930909, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3226.083496, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3226.205567, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3227.029541, 'pop': 14 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3228.860596, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3229.196289, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3242.593506, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3242.715576, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3242.746094, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3242.776612, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3243.600586, 'pop': 28 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3245.126465, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3245.462158, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3259.256104, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3259.347656, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3259.408692, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3259.408693, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3260.202149, 'pop': 29 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3261.880615, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3262.002686, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3275.918701, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3276.010254, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3276.040772, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3276.071289, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3276.864746, 'pop': 29 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3278.512695, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3278.848389, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3292.581299, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3292.672852, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3292.703369, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3292.733887, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3293.496826, 'pop': 29 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3295.205811, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3295.510987, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3309.243897, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3309.365967, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3309.396484, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3309.396485, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3310.220459, 'pop': 29 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3311.654785, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3311.837891, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3325.937012, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3326.303223, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3326.364258, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3326.364259, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3326.822022, 'pop': 29 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3328.836182, 'pop': 101 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3329.171875, 'pop': 99 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 3330.087403, 'pop': 106 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 3331.704834, 'pop': 104 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 3332.803467, 'pop': 103 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3335.000733, 'pop': 23 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3335.153321, 'pop': 7 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3335.366944, 'pop': 22 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3336.068848, 'pop': 3 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3338.845947, 'pop': 3 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3339.120606, 'pop': 3 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 3340.127686, 'pop': 115 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3341.439942, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3342.59961, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3343.026856, 'pop': 7 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3343.087891, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3344.217041, 'pop': 30 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3346.658447, 'pop': 4 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3347.085693, 'pop': 18 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3347.238281, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3347.451904, 'pop': 11 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 3347.726563, 'pop': 6 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3351.327637, 'pop': 4 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3351.449707, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3359.262207, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3359.384278, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3359.445313, 'pop': 7 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3359.445314, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3360.299805, 'pop': 23 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3362.039307, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3362.222412, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3375.894287, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3376.016358, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3376.046875, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3376.077393, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3376.901367, 'pop': 27 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3378.549317, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3378.76294, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3392.709473, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3392.831543, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3392.862061, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3392.892578, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3393.655518, 'pop': 29 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3395.333984, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3395.669678, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3396.066407, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3409.219483, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3409.280518, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3409.341553, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3409.341554, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3410.13501, 'pop': 29 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3411.660889, 'pop': 57 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 3412.210205, 'pop': 73 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3413.797119, 'pop': 18 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3414.04126, 'pop': 3 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3414.285401, 'pop': 17 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 3414.865235, 'pop': 65 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3415.353516, 'pop': 68 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 3415.841797, 'pop': 61 },
{'key': '3656: SICS_SHARED_DIS :: rt_mutex_timed_lock+0x1c (0x4089a6b4)', 'x': 3419.229248, 'pop': 3 },
{'key': '3657: SICS_SHARED_CPU :: rt_mutex_timed_lock+0x1c (0x4089a6b4)', 'x': 3419.442871, 'pop': 3 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3419.870118, 'pop': 3 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3419.96167, 'pop': 4 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 3420.266846, 'pop': 68 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3424.844483, 'pop': 4 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3424.936035, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3425.943115, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3426.095703, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3426.217774, 'pop': 15 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3426.522949, 'pop': 6 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3426.64502, 'pop': 29 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3427.6521, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3429.269532, 'pop': 17 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3429.422119, 'pop': 2 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 3429.757813, 'pop': 9 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3429.971436, 'pop': 14 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 3431.741455, 'pop': 11 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3432.046631, 'pop': 2 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 3433.419922, 'pop': 7 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3433.786133, 'pop': 3 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 3433.877686, 'pop': 12 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3440.042236, 'pop': 6 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3440.164307, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3442.575195, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3442.788819, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3442.849854, 'pop': 2 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3442.880371, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3443.734864, 'pop': 27 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3444.16211, 'pop': 8 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3445.810059, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3446.115235, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3459.237793, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3459.329346, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3459.390381, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3459.390382, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3460.214356, 'pop': 28 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3461.862305, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3462.167481, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3475.900391, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3475.991944, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3476.022461, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3476.052979, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3476.846436, 'pop': 28 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3478.494385, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3478.830078, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3492.685059, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3492.807129, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3492.837647, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3492.868164, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3493.631104, 'pop': 29 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3495.1875, 'pop': 52 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3497.384766, 'pop': 49 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 3497.873047, 'pop': 61 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3499.795655, 'pop': 20 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3499.97876, 'pop': 5 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3500.192383, 'pop': 20 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 3500.558594, 'pop': 57 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 3501.413086, 'pop': 58 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3508.493164, 'pop': 6 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3508.615235, 'pop': 7 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3509.256104, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3509.408692, 'pop': 8 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3509.469727, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3510.476807, 'pop': 30 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3511.392334, 'pop': 5 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 3511.850098, 'pop': 10 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3513.070801, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3513.253907, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3513.46753, 'pop': 12 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3514.169434, 'pop': 2 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 3515.054444, 'pop': 6 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 3515.664795, 'pop': 4 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3516.031006, 'pop': 3 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3516.397217, 'pop': 2 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 3516.549805, 'pop': 77 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3521.035889, 'pop': 5 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3521.157959, 'pop': 4 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3523.874024, 'pop': 2 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3523.965576, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3525.918701, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3526.31543, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3526.376465, 'pop': 2 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3526.406983, 'pop': 15 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3526.986817, 'pop': 9 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3527.597168, 'pop': 25 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3529.611328, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3529.977539, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3542.550781, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3542.733887, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3542.764404, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3542.794922, 'pop': 14 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3543.557861, 'pop': 28 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3545.358399, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3545.510987, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3559.213379, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3559.304932, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3559.365967, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3559.365968, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3560.159424, 'pop': 28 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3561.868409, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3562.051514, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3575.875977, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3575.998047, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3576.028565, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3576.059082, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3576.883057, 'pop': 29 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3577.676514, 'pop': 47 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3578.622559, 'pop': 52 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 3579.568604, 'pop': 61 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3580.758789, 'pop': 18 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3580.941895, 'pop': 3 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3581.216553, 'pop': 18 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 3581.918457, 'pop': 57 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3584.481934, 'pop': 2 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 3584.756592, 'pop': 58 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3586.374024, 'pop': 4 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 3586.526612, 'pop': 66 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3588.540772, 'pop': 3 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3588.662842, 'pop': 2 },
{'key': '3656: SICS_SHARED_DIS :: wait_answer_interruptible+0x90 (0x5d)', 'x': 3589.05957, 'pop': 2 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3591.287354, 'pop': 4 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3591.348389, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3592.569092, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3592.813233, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3592.904785, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3593.270996, 'pop': 29 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3593.637207, 'pop': 2 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 3593.820313, 'pop': 2 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3594.278076, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3595.74292, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3595.895508, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3596.078613, 'pop': 14 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3599.588135, 'pop': 5 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3599.710205, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3609.23169, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3609.384278, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3609.445313, 'pop': 9 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3609.47583, 'pop': 14 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3610.23877, 'pop': 27 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3612.039307, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3612.161377, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3625.86377, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3626.138428, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3626.199463, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3626.199464, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3626.901367, 'pop': 29 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3628.671387, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3628.976563, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3642.526367, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3642.648438, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3642.709473, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3642.709474, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3643.594483, 'pop': 29 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3644.876221, 'pop': 47 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3645.272949, 'pop': 43 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3646.096924, 'pop': 2 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 3647.256592, 'pop': 51 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3649.514893, 'pop': 20 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3649.667481, 'pop': 5 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3649.881104, 'pop': 19 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3650.766113, 'pop': 3 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3650.827149, 'pop': 2 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 3651.4375, 'pop': 49 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3653.970459, 'pop': 2 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 3654.123047, 'pop': 51 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3658.853272, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3659.219483, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3659.37207, 'pop': 9 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3659.433106, 'pop': 8 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3659.463623, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3659.799317, 'pop': 29 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3661.569336, 'pop': 2 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3662.0271, 'pop': 5 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3662.301758, 'pop': 17 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3662.454346, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3662.698487, 'pop': 12 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3664.193848, 'pop': 2 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 3665.109375, 'pop': 74 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3666.848877, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3671.518067, 'pop': 4 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3671.609619, 'pop': 4 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3671.762207, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3675.88208, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3676.034668, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3676.095703, 'pop': 4 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3676.095704, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3677.041748, 'pop': 25 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3678.811768, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3678.964356, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3692.544678, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3692.697266, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3692.727784, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3692.758301, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3693.063477, 'pop': 28 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3694.802979, 'pop': 22 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3694.986084, 'pop': 22 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 3695.382813, 'pop': 34 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3697.732666, 'pop': 18 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3697.854736, 'pop': 4 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3697.946289, 'pop': 18 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3699.07544, 'pop': 3 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 3699.31958, 'pop': 30 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3699.929932, 'pop': 3 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3701.913575, 'pop': 2 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 3702.035645, 'pop': 28 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3705.911377, 'pop': 3 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3705.941895, 'pop': 2 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3706.033447, 'pop': 7 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3709.207276, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3709.359864, 'pop': 10 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3709.451416, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3710.427979, 'pop': 29 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3710.977295, 'pop': 2 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3711.648682, 'pop': 3 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 3711.679199, 'pop': 9 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3713.174561, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3713.296631, 'pop': 2 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 3713.632324, 'pop': 6 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3714.029053, 'pop': 15 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 3715.493897, 'pop': 7 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3718.972901, 'pop': 3 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3719.094971, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3725.869873, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3726.266602, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3726.327637, 'pop': 5 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3726.358155, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3726.937989, 'pop': 27 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3729.196289, 'pop': 17 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3729.287842, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3729.348877, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3742.532471, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3742.685059, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3742.715576, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3742.746094, 'pop': 14 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3743.570069, 'pop': 27 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3745.095947, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3745.218018, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3759.195069, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3759.317139, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3759.347656, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3759.347657, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3760.202149, 'pop': 29 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3761.850098, 'pop': 39 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3762.216309, 'pop': 41 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 3763.040284, 'pop': 45 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3764.108399, 'pop': 19 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3764.260987, 'pop': 3 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3764.383057, 'pop': 18 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3765.542725, 'pop': 2 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 3768.106201, 'pop': 46 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 3769.296387, 'pop': 46 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3774.057129, 'pop': 4 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3774.118164, 'pop': 8 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3774.209717, 'pop': 8 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3775.888184, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3776.010254, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3776.101807, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3776.4375, 'pop': 29 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3778.695801, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3778.817871, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3778.909424, 'pop': 13 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3782.846192, 'pop': 7 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3782.968262, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3792.520264, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3792.672852, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3792.703369, 'pop': 8 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3792.733887, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3793.039063, 'pop': 26 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3794.900635, 'pop': 17 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3795.083741, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3809.182861, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3809.335449, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3809.365967, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3809.365968, 'pop': 14 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3810.312012, 'pop': 29 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3811.959961, 'pop': 26 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3812.814453, 'pop': 32 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 3813.394287, 'pop': 42 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3814.920166, 'pop': 20 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3815.103272, 'pop': 4 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3815.316895, 'pop': 19 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 3816.018799, 'pop': 31 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 3816.568115, 'pop': 143 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3816.751221, 'pop': 2 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 3816.781738, 'pop': 31 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3819.16211, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3823.43457, 'pop': 3 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3823.526123, 'pop': 6 },
{'key': '3656: SICS_SHARED_DIS :: rt_mutex_timed_lock+0x1c (0x4089a6b4)', 'x': 3823.831299, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3825.875977, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3826.21167, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3826.272705, 'pop': 2 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3826.272706, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3827.157715, 'pop': 30 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3829.080323, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3829.416016, 'pop': 13 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3832.345703, 'pop': 6 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3832.406738, 'pop': 4 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3832.528809, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3842.508057, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3842.660645, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3842.72168, 'pop': 8 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3842.721681, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3843.576172, 'pop': 26 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3845.315674, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3845.651367, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3859.170655, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3859.292725, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3859.323242, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3859.35376, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3860.208252, 'pop': 29 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3861.24585, 'pop': 27 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3861.978272, 'pop': 27 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 3862.893799, 'pop': 35 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3864.053467, 'pop': 18 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3864.236572, 'pop': 3 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3864.419678, 'pop': 17 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 3865.243653, 'pop': 30 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 3866.616944, 'pop': 31 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3868.905762, 'pop': 3 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3874.520996, 'pop': 5 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3874.612549, 'pop': 9 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3875.619629, 'pop': 6 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 3875.741699, 'pop': 55 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3875.86377, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3876.016358, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3876.077393, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3877.267578, 'pop': 29 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3879.312256, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3879.495361, 'pop': 14 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3883.065918, 'pop': 7 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3883.218506, 'pop': 3 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3886.453369, 'pop': 3 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3886.544922, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3892.526367, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3892.648438, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3892.709473, 'pop': 5 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3892.73999, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3893.563965, 'pop': 27 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3894.204834, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3895.39502, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3895.730713, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3896.218995, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3909.158447, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3909.219483, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3909.280518, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3909.280519, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3910.226563, 'pop': 28 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3912.454346, 'pop': 17 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3914.224366, 'pop': 26 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 3915.04834, 'pop': 43 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3917.367676, 'pop': 21 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3917.550781, 'pop': 6 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3917.764404, 'pop': 21 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 3918.496826, 'pop': 33 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 3918.618897, 'pop': 30 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3919.259766, 'pop': 3 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3924.508789, 'pop': 3 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3924.63086, 'pop': 5 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3924.966553, 'pop': 3 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 3925.149658, 'pop': 46 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3926.858643, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3927.041748, 'pop': 9 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3927.102784, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3927.499512, 'pop': 30 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3930.215576, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3930.398682, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3930.581787, 'pop': 12 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3932.412842, 'pop': 6 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3936.258057, 'pop': 10 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3936.59375, 'pop': 3 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3936.685303, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3942.51416, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3942.636231, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3942.697266, 'pop': 5 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3942.697267, 'pop': 14 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3943.612793, 'pop': 24 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3945.352295, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3945.657471, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3959.176758, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3959.268311, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3959.298828, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3959.329346, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3960.244873, 'pop': 27 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3961.984375, 'pop': 24 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3962.259033, 'pop': 24 },
{'key': '3641: GC :: futex_wait_queue_me+0xe8 (0x41d5acf8)', 'x': 3962.655762, 'pop': 4636 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 3962.991455, 'pop': 40 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3963.998535, 'pop': 18 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3964.181641, 'pop': 3 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3964.334229, 'pop': 17 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3967.355469, 'pop': 3 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 3967.691162, 'pop': 33 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3968.454102, 'pop': 4 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 3969.308594, 'pop': 31 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3975.717285, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3975.869873, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3976.022461, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3976.083496, 'pop': 9 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3976.083497, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3976.480225, 'pop': 29 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3978.860596, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3978.982666, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 3979.074219, 'pop': 13 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3980.874756, 'pop': 4 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3981.820801, 'pop': 11 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 3982.125977, 'pop': 54 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3986.795166, 'pop': 5 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3986.886719, 'pop': 3 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3986.917236, 'pop': 4 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 3987.191895, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 3992.532471, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 3992.807129, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 3992.868164, 'pop': 4 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 3992.868165, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 3993.631104, 'pop': 27 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 3995.645264, 'pop': 18 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 3996.19458, 'pop': 16 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 3996.255615, 'pop': 8 },
{'key': '3645: ReferenceQueueD :: futex_wait_queue_me+0xe8 (0x67626638)', 'x': 3997.384766, 'pop': 9450 },
{'key': '3646: FinalizerDaemon :: futex_wait_queue_me+0xe8 (0x675f7fe8)', 'x': 3997.445801, 'pop': 9441 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 3997.903565, 'pop': 10 },
{'key': '3647: FinalizerWatchd :: futex_wait_queue_me+0xe8 (0x6761b838)', 'x': 3997.903566, 'pop': 2433 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4009.195069, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4009.378174, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4009.439209, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4009.43921, 'pop': 15 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4009.744385, 'pop': 7 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4010.324219, 'pop': 29 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4012.338379, 'pop': 14 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 4013.223389, 'pop': 39 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4014.688233, 'pop': 19 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4014.871338, 'pop': 4 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4015.054444, 'pop': 18 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4015.237549, 'pop': 4 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 4015.756348, 'pop': 27 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 4016.519287, 'pop': 27 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 4016.946533, 'pop': 19 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4023.965576, 'pop': 3 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4023.996094, 'pop': 3 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4024.087647, 'pop': 7 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4025.857666, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4026.071289, 'pop': 10 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4026.31543, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4026.803711, 'pop': 29 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4028.939942, 'pop': 17 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4029.062012, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4029.275635, 'pop': 13 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4029.885987, 'pop': 4 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4029.947022, 'pop': 3 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4034.494141, 'pop': 4 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4034.616211, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4042.489746, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4042.550781, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4042.611817, 'pop': 7 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4042.611818, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4043.618897, 'pop': 26 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4045.419434, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4045.72461, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4059.152344, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4059.213379, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4059.243897, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4059.243898, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4059.884766, 'pop': 28 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4061.380127, 'pop': 25 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4061.532715, 'pop': 29 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 4062.570313, 'pop': 40 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4064.065674, 'pop': 18 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4064.218262, 'pop': 3 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4064.676026, 'pop': 18 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 4065.530518, 'pop': 33 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 4066.476563, 'pop': 30 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 4066.995361, 'pop': 47 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4070.16919, 'pop': 2 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4071.542481, 'pop': 4 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4075.32666, 'pop': 3 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4075.570801, 'pop': 3 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4075.662354, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4075.875977, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4076.150635, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4076.242188, 'pop': 15 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 4076.669434, 'pop': 8 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4077.005127, 'pop': 29 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4079.477051, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4079.599121, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4079.660156, 'pop': 14 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4081.125, 'pop': 4 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4081.277588, 'pop': 5 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4092.477539, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4092.538575, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4092.59961, 'pop': 8 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4092.599611, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4093.60669, 'pop': 27 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4095.346192, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4095.651367, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4109.140137, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4109.201172, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4109.23169, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4109.262207, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4109.872559, 'pop': 28 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4111.581543, 'pop': 27 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4111.978272, 'pop': 28 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 4112.741211, 'pop': 40 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4113.961914, 'pop': 18 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4114.114502, 'pop': 3 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4114.419678, 'pop': 17 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4115.1521, 'pop': 2 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 4117.654541, 'pop': 34 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 4118.661621, 'pop': 33 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4118.875244, 'pop': 5 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4123.361328, 'pop': 3 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4123.422364, 'pop': 4 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4123.666504, 'pop': 8 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4125.833252, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4125.894287, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4125.955323, 'pop': 15 },
{'key': '3644: Compiler :: rt_mutex_timed_lock+0x1c (0x4089a700)', 'x': 4126.413086, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4127.725342, 'pop': 30 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4130.471924, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4130.593995, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4130.685547, 'pop': 15 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 4130.960205, 'pop': 50 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4131.936768, 'pop': 7 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4135.904053, 'pop': 7 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4136.148193, 'pop': 3 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4136.270264, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4142.49585, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4142.556885, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4142.61792, 'pop': 5 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4142.617921, 'pop': 14 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4143.319824, 'pop': 26 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4145.089844, 'pop': 8 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4146.066407, 'pop': 9 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4146.096924, 'pop': 2 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 4147.348145, 'pop': 27 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4148.629883, 'pop': 19 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4148.782471, 'pop': 5 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4148.996094, 'pop': 17 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 4149.728516, 'pop': 16 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4149.972656, 'pop': 2 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 4150.55249, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4154.306153, 'pop': 4 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4158.456543, 'pop': 3 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4158.548096, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4159.158447, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4159.219483, 'pop': 9 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4159.311035, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4159.616211, 'pop': 27 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4162.0271, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4162.362793, 'pop': 12 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4163.522461, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4175.821045, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4175.851563, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4175.912598, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4175.912599, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4176.522949, 'pop': 25 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4178.323487, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4178.628662, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4192.453125, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4192.51416, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4192.544678, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4192.575195, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4193.39917, 'pop': 29 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4194.16211, 'pop': 32 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4195.260742, 'pop': 30 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 4196.115235, 'pop': 40 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4197.488526, 'pop': 19 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4197.641113, 'pop': 3 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4197.885254, 'pop': 18 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4198.678711, 'pop': 2 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 4198.953369, 'pop': 38 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 4200.662354, 'pop': 35 },
{'key': '3656: SICS_SHARED_DIS :: rt_mutex_timed_lock+0x1c (0x400a0dec)', 'x': 4204.660156, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4205.209473, 'pop': 2 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4205.392578, 'pop': 3 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4205.484131, 'pop': 6 },
{'key': '3656: SICS_SHARED_DIS :: rt_mutex_timed_lock+0x1c (0x4089a6b4)', 'x': 4208.261231, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4209.176758, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4209.237793, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4209.268311, 'pop': 3 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4209.298828, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4209.634522, 'pop': 29 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4212.197998, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4212.320069, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4212.411621, 'pop': 13 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4213.510254, 'pop': 4 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4217.508057, 'pop': 3 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4217.59961, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4225.808838, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4225.869873, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4225.900391, 'pop': 7 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4225.930909, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4227.029541, 'pop': 27 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4228.55542, 'pop': 10 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 4231.668213, 'pop': 22 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4231.729248, 'pop': 22 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4233.926514, 'pop': 22 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4234.079102, 'pop': 6 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4234.384278, 'pop': 20 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4234.567383, 'pop': 2 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 4234.750489, 'pop': 19 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4234.781006, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4242.532471, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4242.593506, 'pop': 8 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4242.654541, 'pop': 7 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4242.654542, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4243.417481, 'pop': 29 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4243.905762, 'pop': 3 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4245.675781, 'pop': 17 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4245.828369, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4246.133545, 'pop': 11 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4247.445801, 'pop': 12 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 4247.628907, 'pop': 28 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4248.178223, 'pop': 3 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4250.650147, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4258.187989, 'pop': 6 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4258.340576, 'pop': 11 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4259.164551, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4259.530762, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4260.263184, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4260.598877, 'pop': 24 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4263.772705, 'pop': 17 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4263.986328, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4264.108399, 'pop': 17 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4264.535645, 'pop': 5 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4270.608643, 'pop': 5 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4270.852784, 'pop': 5 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4275.827149, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4275.918701, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4275.979736, 'pop': 3 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4275.979737, 'pop': 14 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4276.254395, 'pop': 23 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4276.498535, 'pop': 28 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4278.634766, 'pop': 6 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4280.618409, 'pop': 17 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4280.770996, 'pop': 3 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4281.289795, 'pop': 4 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 4281.564453, 'pop': 29 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4282.266358, 'pop': 17 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 4283.36499, 'pop': 12 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 4284.585693, 'pop': 12 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4290.078858, 'pop': 2 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4290.17041, 'pop': 6 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4291.05542, 'pop': 5 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 4291.513184, 'pop': 152 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4292.489746, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4292.550781, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4292.611817, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4292.978027, 'pop': 27 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4295.358399, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4295.72461, 'pop': 14 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4296.85376, 'pop': 5 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4300.119141, 'pop': 2 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4300.210693, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4309.121826, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4309.182861, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4309.213379, 'pop': 8 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4309.243897, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4309.884766, 'pop': 25 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4310.58667, 'pop': 18 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4311.532715, 'pop': 10 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 4312.295655, 'pop': 24 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4313.729981, 'pop': 18 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4313.882569, 'pop': 3 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4314.126709, 'pop': 17 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4314.584473, 'pop': 2 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 4314.767578, 'pop': 16 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 4316.140869, 'pop': 15 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4319.955567, 'pop': 3 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4320.077637, 'pop': 5 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4321.115235, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4325.784424, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4325.875977, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4325.906495, 'pop': 4 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4325.937012, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4327.21875, 'pop': 29 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4328.10376, 'pop': 6 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4328.744629, 'pop': 7 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 4329.293946, 'pop': 12 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 4332.315186, 'pop': 11 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 4332.376221, 'pop': 10 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4334.054688, 'pop': 19 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4334.176758, 'pop': 6 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4334.298828, 'pop': 19 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4334.665039, 'pop': 4 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 4334.970215, 'pop': 40 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4337.350586, 'pop': 4 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4337.533692, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4341.439942, 'pop': 3 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4341.531495, 'pop': 3 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4341.653565, 'pop': 5 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4342.477539, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4342.538575, 'pop': 7 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4342.630127, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4342.935303, 'pop': 27 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4344.705323, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4345.010498, 'pop': 10 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4359.109619, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4359.445313, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4359.506348, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4359.506349, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4360.543946, 'pop': 24 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4360.971192, 'pop': 18 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4362.008789, 'pop': 19 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4365.213135, 'pop': 19 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4365.365723, 'pop': 4 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4365.579346, 'pop': 19 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 4365.884522, 'pop': 32 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 4367.776612, 'pop': 28 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4371.438721, 'pop': 3 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 4371.530274, 'pop': 28 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4373.056153, 'pop': 6 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4374.032715, 'pop': 5 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4375.802735, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4376.260498, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4376.321533, 'pop': 2 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4376.321534, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4376.687744, 'pop': 29 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4378.640869, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4378.946045, 'pop': 12 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4380.166748, 'pop': 2 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4380.502442, 'pop': 5 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4382.455567, 'pop': 2 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4382.577637, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4385.446289, 'pop': 2 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4385.507324, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4392.434815, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4392.831543, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4392.892578, 'pop': 6 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4392.892579, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4393.228272, 'pop': 25 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4395.059326, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4395.364502, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4396.066407, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4409.097412, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4409.25, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4409.311035, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4409.311036, 'pop': 14 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4410.196045, 'pop': 29 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4411.691407, 'pop': 24 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4413.614014, 'pop': 17 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4413.736084, 'pop': 3 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4414.010742, 'pop': 17 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 4414.437989, 'pop': 38 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 4416.085938, 'pop': 31 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4416.543701, 'pop': 29 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 4417.337158, 'pop': 30 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4419.809082, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4423.715332, 'pop': 3 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4423.806885, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4425.790527, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4425.851563, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4425.943115, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4427.102784, 'pop': 30 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4427.53003, 'pop': 3 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4427.591065, 'pop': 7 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4429.208496, 'pop': 18 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4429.330567, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4429.391602, 'pop': 14 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 4430.276612, 'pop': 90 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4432.199219, 'pop': 4 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4436.563233, 'pop': 3 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4436.685303, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4442.453125, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4442.51416, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4442.575195, 'pop': 5 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4442.575196, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4443.612793, 'pop': 28 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4445.199707, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4445.352295, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4459.115723, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4459.146241, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4459.207276, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4459.207277, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4459.970215, 'pop': 29 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4460.79419, 'pop': 28 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4461.892823, 'pop': 24 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 4463.266113, 'pop': 41 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4464.669922, 'pop': 19 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4464.82251, 'pop': 4 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4465.06665, 'pop': 18 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 4465.463379, 'pop': 31 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4466.073731, 'pop': 2 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 4466.500977, 'pop': 28 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4471.139649, 'pop': 2 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4471.261719, 'pop': 5 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4473.550537, 'pop': 6 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 4473.794678, 'pop': 40 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4475.778321, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4475.869873, 'pop': 10 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4475.930909, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4476.236084, 'pop': 29 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4478.402832, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4478.55542, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4478.738526, 'pop': 13 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4481.271484, 'pop': 5 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4481.485107, 'pop': 5 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4481.57666, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4492.440918, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4492.501953, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4492.532471, 'pop': 10 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4492.532472, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4492.837647, 'pop': 25 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4495.004395, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4495.095947, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4495.645264, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4509.103516, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4509.134033, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4509.195069, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4509.19507, 'pop': 15 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4509.68335, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4509.774903, 'pop': 29 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4511.57544, 'pop': 28 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 4512.216309, 'pop': 41 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4513.803223, 'pop': 19 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4513.925293, 'pop': 3 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4514.047364, 'pop': 17 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 4514.535645, 'pop': 37 },
{'key': '3653: SICS_SHARED_OVE :: rt_mutex_timed_lock+0x1c (0x4089a6b4)', 'x': 4519.418457, 'pop': 3 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 4519.51001, 'pop': 35 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4519.63208, 'pop': 5 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 4520.303467, 'pop': 44 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4525.003174, 'pop': 5 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4525.125244, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4525.766113, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4525.827149, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4525.918701, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4527.078369, 'pop': 29 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4527.505615, 'pop': 7 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4527.719238, 'pop': 2 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 4529.062012, 'pop': 12 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 4530.648926, 'pop': 10 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 4531.778076, 'pop': 6 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4532.846192, 'pop': 18 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4532.998779, 'pop': 5 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4533.181885, 'pop': 18 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 4533.883789, 'pop': 12 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4535.897949, 'pop': 3 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4536.172607, 'pop': 6 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4536.26416, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4539.529541, 'pop': 3 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4539.621094, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4542.428711, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4542.520264, 'pop': 8 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4542.550781, 'pop': 2 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4542.581299, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4543.618897, 'pop': 28 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4545.327881, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4545.480469, 'pop': 11 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4559.091309, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4559.152344, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4559.182861, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4559.182862, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4559.762696, 'pop': 25 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4561.502198, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4561.776856, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4575.96753, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4576.028565, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4576.059082, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4576.059083, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4576.730469, 'pop': 29 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4577.890137, 'pop': 39 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4578.378418, 'pop': 36 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4580.545166, 'pop': 18 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4580.697754, 'pop': 3 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4580.911377, 'pop': 18 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 4581.918457, 'pop': 47 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 4583.444336, 'pop': 44 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4583.627442, 'pop': 2 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 4584.176758, 'pop': 47 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 4585.672119, 'pop': 44 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4589.303711, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4592.447022, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4592.660645, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4592.72168, 'pop': 3 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4592.721681, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4593.057373, 'pop': 29 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4594.094971, 'pop': 4 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4594.552735, 'pop': 9 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4595.346192, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4595.498779, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4595.712403, 'pop': 14 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4598.275879, 'pop': 3 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4598.428467, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4609.109619, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4609.292725, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4609.35376, 'pop': 8 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4609.353761, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4609.658936, 'pop': 27 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4611.520508, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4611.703613, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4625.741699, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4625.802735, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4625.833252, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4625.86377, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4626.657227, 'pop': 29 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4628.244141, 'pop': 26 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4628.488281, 'pop': 31 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 4629.312256, 'pop': 39 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4630.532959, 'pop': 19 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4630.65503, 'pop': 3 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4634.103516, 'pop': 3 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 4634.134033, 'pop': 34 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 4634.774903, 'pop': 32 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4635.324219, 'pop': 22 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4638.070801, 'pop': 2 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 4638.162354, 'pop': 51 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4642.434815, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4642.49585, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4642.556885, 'pop': 4 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4642.587403, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4643.777588, 'pop': 30 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4644.235352, 'pop': 8 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4645.883301, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4646.035889, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4646.127442, 'pop': 3 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4646.218995, 'pop': 14 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4649.850586, 'pop': 5 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4650.491455, 'pop': 13 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4654.824952, 'pop': 4 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4654.916504, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4659.066895, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4659.12793, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4659.188965, 'pop': 3 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4659.188966, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4660.196045, 'pop': 23 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4661.90503, 'pop': 17 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4662.057618, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4675.729492, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4675.790527, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4675.821045, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4675.851563, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4676.400879, 'pop': 26 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4678.109864, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4678.415039, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4692.39209, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4692.453125, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4692.483643, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4692.483644, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4693.15503, 'pop': 29 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4693.856934, 'pop': 38 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4695.047119, 'pop': 38 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 4696.084717, 'pop': 58 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4697.732666, 'pop': 19 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4697.854736, 'pop': 4 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4697.946289, 'pop': 18 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 4698.556641, 'pop': 46 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 4699.868897, 'pop': 42 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4704.538086, 'pop': 2 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4704.660156, 'pop': 5 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4709.268311, 'pop': 4 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4709.420899, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4709.726075, 'pop': 15 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4712.04541, 'pop': 2 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4714.242676, 'pop': 15 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4714.334229, 'pop': 2 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4714.33423, 'pop': 20 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4715.005615, 'pop': 34 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4717.233399, 'pop': 19 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4717.569092, 'pop': 18 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4725.839356, 'pop': 10 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4725.961426, 'pop': 8 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4726.022461, 'pop': 7 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4726.052979, 'pop': 10 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4727.334717, 'pop': 27 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4729.287842, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4729.654053, 'pop': 11 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4742.440918, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4742.654541, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4742.746094, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4742.746095, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4743.142823, 'pop': 24 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4744.18042, 'pop': 37 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4745.340088, 'pop': 28 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 4748.239258, 'pop': 43 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4750.222901, 'pop': 21 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4750.375489, 'pop': 6 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4750.680664, 'pop': 20 },
{'key': '3656: SICS_SHARED_DIS :: wait_answer_interruptible+0x90 (0x69aae250)', 'x': 4751.260498, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4752.176026, 'pop': 3 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 4752.481201, 'pop': 36 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4753.88501, 'pop': 4 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 4753.915527, 'pop': 35 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4759.103516, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4759.347656, 'pop': 8 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4759.408692, 'pop': 7 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4759.408693, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4760.446289, 'pop': 29 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4761.422852, 'pop': 6 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4761.483887, 'pop': 7 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 4765.115479, 'pop': 10 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4766.580323, 'pop': 22 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4766.73291, 'pop': 5 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4767.007569, 'pop': 15 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4768.50293, 'pop': 3 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4774.697998, 'pop': 4 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4774.850586, 'pop': 6 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4775.766113, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4775.827149, 'pop': 8 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4775.918701, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4776.254395, 'pop': 23 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4778.390625, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4778.604248, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4778.817871, 'pop': 11 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4782.083252, 'pop': 6 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4782.205323, 'pop': 15 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4782.266358, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4787.973145, 'pop': 4 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4788.064698, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4792.428711, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4792.489746, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4792.550781, 'pop': 4 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4792.581299, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4792.916992, 'pop': 24 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4794.870118, 'pop': 17 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4795.114258, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4809.060791, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4809.518555, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4809.549072, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4809.57959, 'pop': 14 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4810.006836, 'pop': 29 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4811.441162, 'pop': 27 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4811.898926, 'pop': 22 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4815.133789, 'pop': 20 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 4815.5, 'pop': 43 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4817.361572, 'pop': 6 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 4817.39209, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4817.51416, 'pop': 21 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 4818.002442, 'pop': 29 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4819.28418, 'pop': 6 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 4819.314698, 'pop': 29 },
{'key': '3644: Compiler :: rt_mutex_timed_lock+0x1c (0x4089a6b4)', 'x': 4821.756104, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4825.753907, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4826.242188, 'pop': 8 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4826.333741, 'pop': 7 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4826.364258, 'pop': 14 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4826.364259, 'pop': 6 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4827.798584, 'pop': 30 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4828.592041, 'pop': 2 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 4828.98877, 'pop': 9 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4830.331543, 'pop': 18 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4830.484131, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4830.758789, 'pop': 12 },
{'key': '3644: Compiler :: rt_mutex_timed_lock+0x1c (0x4089a700)', 'x': 4833.01709, 'pop': 2 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4833.932618, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4840.097168, 'pop': 5 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4840.402344, 'pop': 5 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4840.95166, 'pop': 6 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 4841.073731, 'pop': 192 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4842.416504, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4842.935303, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4842.996338, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4843.332032, 'pop': 24 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4845.376709, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4845.74292, 'pop': 14 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4848.672607, 'pop': 7 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4848.947266, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4859.109619, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4859.872559, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4859.933594, 'pop': 10 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4859.964112, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4860.36084, 'pop': 28 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4862.466553, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4862.619141, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4862.832764, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4875.741699, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4876.229981, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4876.291016, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4876.291017, 'pop': 14 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4876.657227, 'pop': 29 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4876.99292, 'pop': 34 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4878.854492, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4879.00708, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4879.220703, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4892.373779, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4892.801026, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4892.862061, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4892.892578, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4893.350342, 'pop': 28 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4893.960693, 'pop': 14 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4895.364502, 'pop': 44 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4896.188477, 'pop': 2 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 4897.927979, 'pop': 62 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 4902.414063, 'pop': 50 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 4902.56665, 'pop': 50 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4904.641846, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4907.998779, 'pop': 27 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4908.151367, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4908.395508, 'pop': 27 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4909.066895, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4909.799317, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4910.37915, 'pop': 29 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4912.362793, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4912.729004, 'pop': 4 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4916.909912, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4917.123535, 'pop': 3 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4921.548584, 'pop': 4 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4921.548585, 'pop': 15 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4921.701172, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4925.729492, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4926.187256, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4926.248291, 'pop': 4 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4926.248292, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4926.583984, 'pop': 15 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4927.377442, 'pop': 5 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4928.476075, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4930.734375, 'pop': 18 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4930.856446, 'pop': 3 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4930.917481, 'pop': 17 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4932.6875, 'pop': 3 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4933.114746, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4942.422607, 'pop': 8 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4942.880371, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4944.802979, 'pop': 10 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4944.833496, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4945.199707, 'pop': 30 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4945.749024, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4947.335938, 'pop': 19 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4947.488526, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4947.671631, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4959.054688, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4959.512452, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4959.573487, 'pop': 10 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4959.573488, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4960.611084, 'pop': 28 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4962.014893, 'pop': 31 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4962.411621, 'pop': 27 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 4963.357666, 'pop': 54 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4965.371826, 'pop': 17 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4965.585449, 'pop': 4 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 4965.70752, 'pop': 30 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4965.799072, 'pop': 17 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4968.057373, 'pop': 2 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 4968.759278, 'pop': 29 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 4971.261719, 'pop': 6 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4975.747803, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4975.839356, 'pop': 9 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4975.900391, 'pop': 8 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4975.900392, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4976.358155, 'pop': 27 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4978.67749, 'pop': 17 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4978.830078, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 4979.074219, 'pop': 12 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4981.210449, 'pop': 9 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4981.393555, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4988.015869, 'pop': 4 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4988.13794, 'pop': 4 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 4990.609864, 'pop': 2 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 4990.731934, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 4992.410401, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4992.471436, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 4992.532471, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 4992.898682, 'pop': 25 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 4995.401123, 'pop': 18 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 4995.645264, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 4995.767334, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5009.103516, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5009.164551, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 5009.225586, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5009.225587, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5009.622315, 'pop': 29 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5011.880615, 'pop': 17 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5012.002686, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5012.277344, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5025.735596, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5025.796631, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 5025.857666, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5025.888184, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5026.284912, 'pop': 28 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5029.000977, 'pop': 18 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5029.123047, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5029.245118, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5044.259766, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5044.381836, 'pop': 14 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 5044.442871, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5044.473389, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5044.931153, 'pop': 31 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 5046.670655, 'pop': 71 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5047.830323, 'pop': 54 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5051.095703, 'pop': 21 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5051.278809, 'pop': 5 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 5051.431397, 'pop': 2 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 5051.858643, 'pop': 76 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5053.53711, 'pop': 23 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 5054.696778, 'pop': 63 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 5056.68042, 'pop': 62 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5059.060791, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5059.152344, 'pop': 7 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 5059.213379, 'pop': 4 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5059.21338, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5059.57959, 'pop': 28 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5061.898926, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5062.051514, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5062.448242, 'pop': 8 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 5075.32666, 'pop': 21 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5075.509766, 'pop': 14 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 5075.723389, 'pop': 12 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5075.753907, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5075.814942, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5076.028565, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5076.730469, 'pop': 22 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5078.805664, 'pop': 18 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5079.141358, 'pop': 15 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5081.399658, 'pop': 4 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 5081.552246, 'pop': 2 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 5082.223633, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5092.385987, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5092.477539, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 5092.538575, 'pop': 10 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5092.538576, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5092.935303, 'pop': 28 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5095.407227, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5095.74292, 'pop': 15 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 5097.51294, 'pop': 14 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5106.546143, 'pop': 23 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 5106.851319, 'pop': 10 },
{'key': '3644: Compiler :: rt_mutex_timed_lock+0x1c (0x4089a6b4)', 'x': 5107.034424, 'pop': 8 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5109.140137, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5109.201172, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5109.323242, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5109.719971, 'pop': 28 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5111.551026, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5111.581543, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5111.642578, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5111.917236, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5125.711182, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5125.955323, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 5126.016358, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5126.046875, 'pop': 14 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5126.443604, 'pop': 14 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 5129.190186, 'pop': 20 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5130.502442, 'pop': 22 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 5133.004883, 'pop': 2 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 5133.523682, 'pop': 67 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5134.988526, 'pop': 22 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5135.171631, 'pop': 7 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5135.354736, 'pop': 22 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 5136.056641, 'pop': 27 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 5136.239746, 'pop': 27 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 5136.850098, 'pop': 3 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5138.681153, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5142.404297, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5142.648438, 'pop': 7 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 5142.73999, 'pop': 6 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5142.739991, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5143.075684, 'pop': 29 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5145.272949, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5145.425537, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5145.608643, 'pop': 9 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5146.52417, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5147.012452, 'pop': 6 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 5147.134522, 'pop': 9 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5151.742676, 'pop': 4 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 5151.925781, 'pop': 3 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 5151.986817, 'pop': 4 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5157.296875, 'pop': 5 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 5157.510498, 'pop': 3 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 5157.571533, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5159.066895, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5159.311035, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5159.402588, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5159.738281, 'pop': 23 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5165.628174, 'pop': 21 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5165.780762, 'pop': 5 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5165.963867, 'pop': 19 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5167.337158, 'pop': 9 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 5167.672852, 'pop': 9 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5175.729492, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5175.973633, 'pop': 9 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 5176.065186, 'pop': 7 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5176.065187, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5177.865723, 'pop': 30 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5179.452637, 'pop': 3 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5184.488037, 'pop': 21 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5184.671143, 'pop': 4 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5184.854248, 'pop': 18 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5192.39209, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5192.758301, 'pop': 7 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 5192.819336, 'pop': 7 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5192.819337, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5193.917969, 'pop': 26 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5199.07544, 'pop': 18 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5199.258545, 'pop': 4 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5199.380615, 'pop': 13 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5209.02417, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5209.268311, 'pop': 9 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 5209.329346, 'pop': 9 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5209.329347, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5210.275391, 'pop': 24 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5211.862305, 'pop': 41 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 5213.021973, 'pop': 69 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 5213.266113, 'pop': 43 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5214.05957, 'pop': 19 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5214.181641, 'pop': 3 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5214.395264, 'pop': 14 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5215.82959, 'pop': 2 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 5218.667725, 'pop': 57 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 5219.064453, 'pop': 49 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5221.50586, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5224.374512, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5225.717285, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5226.327637, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 5227.121095, 'pop': 5 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5227.121096, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5227.487305, 'pop': 26 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5233.682373, 'pop': 18 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5233.804444, 'pop': 5 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5233.895996, 'pop': 18 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5235.696533, 'pop': 10 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5242.379883, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5242.624024, 'pop': 8 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5242.715576, 'pop': 14 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 5243.020752, 'pop': 27 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 5243.112305, 'pop': 383 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5243.386963, 'pop': 27 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5245.858887, 'pop': 9 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5248.574952, 'pop': 19 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5248.758057, 'pop': 4 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5251.474121, 'pop': 5 },
{'key': '343: Binder_1 :: binder_ioctl+0xd8 (0x1f)', 'x': 5251.748779, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5251.962403, 'pop': 17 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5259.042481, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5259.286621, 'pop': 10 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5259.317139, 'pop': 7 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 5259.378174, 'pop': 6 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5259.378175, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5259.713867, 'pop': 24 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5261.758545, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5262.155274, 'pop': 9 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5275.705078, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5276.132324, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 5276.19336, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5276.193361, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5276.55957, 'pop': 23 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5279.367188, 'pop': 17 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5279.519776, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5279.672364, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5292.398193, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5292.642334, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 5292.703369, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5292.70337, 'pop': 14 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 5293.344238, 'pop': 46 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5293.771484, 'pop': 30 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5295.96875, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5296.090821, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5296.273926, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5309.060791, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5309.274414, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 5309.335449, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5309.365967, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5310.250977, 'pop': 29 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 5310.769776, 'pop': 16 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5311.959961, 'pop': 49 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5313.516358, 'pop': 3 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 5316.201904, 'pop': 87 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 5318.124512, 'pop': 63 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5318.39917, 'pop': 23 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5318.582276, 'pop': 4 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5319.28418, 'pop': 21 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 5321.939209, 'pop': 59 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5325.692871, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5325.906495, 'pop': 6 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 5325.96753, 'pop': 5 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5325.998047, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5326.364258, 'pop': 28 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5328.10376, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5342.355469, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5342.84375, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5344.247559, 'pop': 29 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5344.583252, 'pop': 24 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5345.163086, 'pop': 24 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5346.811035, 'pop': 17 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5346.902588, 'pop': 2 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5346.994141, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5347.268799, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5359.018067, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5359.109619, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5359.170655, 'pop': 29 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 5359.323242, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 5359.628418, 'pop': 11 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5360.177735, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5362.069824, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5362.100342, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5365.701416, 'pop': 5 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 5366.708496, 'pop': 50 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5375.711182, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5375.802735, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5375.86377, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 5376.046875, 'pop': 9 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5376.748779, 'pop': 51 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 5376.901367, 'pop': 10 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5377.542236, 'pop': 14 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 5378.335693, 'pop': 9 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5378.88501, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5379.89209, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5380.197266, 'pop': 17 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5385.659912, 'pop': 7 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 5389.840821, 'pop': 8 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5391.916016, 'pop': 5 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5392.373779, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5392.770508, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5392.892578, 'pop': 13 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 5393.075684, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 5393.472412, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5394.326904, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5396.188477, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5396.585205, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5396.859864, 'pop': 15 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5402.56665, 'pop': 9 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 5402.719238, 'pop': 7 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5409.036377, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5409.158447, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5409.219483, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 5409.402588, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 5410.165527, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5410.958984, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5411.630371, 'pop': 2 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 5419.870118, 'pop': 16 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5421.151856, 'pop': 17 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 5422.494629, 'pop': 94 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5424.844483, 'pop': 27 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5425.149658, 'pop': 27 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5425.76001, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5426.034668, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5426.095703, 'pop': 13 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5428.109864, 'pop': 5 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 5428.78125, 'pop': 23 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5432.504395, 'pop': 3 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 5432.748535, 'pop': 27 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5433.389404, 'pop': 22 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5433.541992, 'pop': 6 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 5434.274414, 'pop': 11 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 5435.830811, 'pop': 3 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5438.394287, 'pop': 25 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5439.035156, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5440.835693, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5442.331055, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5442.422607, 'pop': 8 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5442.483643, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5443.551758, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5445.932129, 'pop': 10 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5446.267823, 'pop': 5 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5446.664551, 'pop': 5 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5451.181153, 'pop': 4 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 5451.577881, 'pop': 14 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5455.392578, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5459.02417, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5459.420899, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5459.512452, 'pop': 14 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 5459.695557, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 5460.580567, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5461.343506, 'pop': 17 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5462.594727, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5463.540772, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5463.784912, 'pop': 16 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5469.217041, 'pop': 13 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5475.686768, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5475.930909, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5476.022461, 'pop': 12 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 5476.144532, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 5476.266602, 'pop': 11 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5477.304199, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5479.013184, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5479.287842, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5492.685059, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5492.990235, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5493.142823, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 5493.356446, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 5493.447998, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5493.966797, 'pop': 16 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 5494.668701, 'pop': 37 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5496.31665, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5498.147705, 'pop': 17 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5510.202149, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5510.507324, 'pop': 15 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5510.598877, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 5510.781983, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 5511.178711, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5511.789063, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5513.925293, 'pop': 18 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5514.108399, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5526.101807, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5526.376465, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5526.468018, 'pop': 14 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 5526.651123, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 5527.047852, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5527.993897, 'pop': 15 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 5529.885987, 'pop': 33 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5530.832032, 'pop': 58 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5535.01294, 'pop': 22 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 5535.409668, 'pop': 2 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 5535.775879, 'pop': 90 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 5541.085938, 'pop': 81 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 5541.452149, 'pop': 67 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5542.337158, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5542.520264, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5542.611817, 'pop': 14 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5543.95459, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_ioctl+0xd8 (0x1f)', 'x': 5544.320801, 'pop': 8 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5544.656495, 'pop': 29 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5546.762207, 'pop': 18 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5546.85376, 'pop': 3 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5548.501709, 'pop': 18 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5549.295166, 'pop': 4 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5549.447754, 'pop': 4 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 5555.337647, 'pop': 11 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5555.490235, 'pop': 5 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5558.999756, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5559.274414, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5559.396484, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 5559.976319, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 5560.34253, 'pop': 10 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 5560.983399, 'pop': 301 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5563.791016, 'pop': 7 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5568.032959, 'pop': 22 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5568.093995, 'pop': 6 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5569.864014, 'pop': 21 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5570.16919, 'pop': 19 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5575.662354, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5576.028565, 'pop': 7 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5576.150635, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 5576.364258, 'pop': 5 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 5576.638916, 'pop': 6 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5577.279785, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5579.629639, 'pop': 3 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5589.608887, 'pop': 20 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5590.158203, 'pop': 19 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5592.324952, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5592.59961, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5592.691162, 'pop': 12 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 5592.874268, 'pop': 2 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 5593.667725, 'pop': 3 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5594.217041, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5596.536377, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5596.87207, 'pop': 6 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5609.018067, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5609.292725, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5609.35376, 'pop': 14 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 5609.536866, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 5609.658936, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5610.269287, 'pop': 15 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5611.703613, 'pop': 45 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5613.595703, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5614.694336, 'pop': 17 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5625.680664, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5625.924805, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5625.98584, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 5626.168946, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 5626.352051, 'pop': 11 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5627.75586, 'pop': 17 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5629.861572, 'pop': 18 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5630.258301, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5642.373779, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5643.197754, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5643.289307, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 5643.441895, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 5643.563966, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5644.113281, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5646.554688, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5646.829346, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5658.975342, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5659.707764, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5659.829834, 'pop': 14 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 5660.01294, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 5660.348633, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5660.989502, 'pop': 16 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 5662.729004, 'pop': 96 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5664.437989, 'pop': 49 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 5666.024903, 'pop': 116 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5668.283203, 'pop': 21 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5668.649414, 'pop': 20 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5671.151856, 'pop': 4 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 5671.701172, 'pop': 57 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 5675.515869, 'pop': 9 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5675.668457, 'pop': 13 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 5676.065186, 'pop': 53 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5676.736572, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5676.828125, 'pop': 14 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 5677.438477, 'pop': 4 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 5677.835205, 'pop': 8 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5678.65918, 'pop': 17 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 5680.154541, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5686.410645, 'pop': 23 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5687.112549, 'pop': 17 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5692.331055, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5692.51416, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5692.636231, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 5692.819336, 'pop': 5 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 5693.643311, 'pop': 6 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5697.488526, 'pop': 20 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 5698.953369, 'pop': 130 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5699.289063, 'pop': 20 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5700.32666, 'pop': 2 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5700.937012, 'pop': 6 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5701.791504, 'pop': 21 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5702.09668, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5708.993653, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5709.176758, 'pop': 7 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5709.268311, 'pop': 14 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 5710.03125, 'pop': 7 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 5710.153322, 'pop': 7 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5710.946778, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5712.960938, 'pop': 11 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5713.388184, 'pop': 10 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5723.245361, 'pop': 21 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5725.65625, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5725.869873, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5725.930909, 'pop': 14 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 5726.083496, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 5726.999024, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5729.409912, 'pop': 18 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5731.881836, 'pop': 19 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5732.21753, 'pop': 18 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5736.398438, 'pop': 8 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5742.379883, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5743.020752, 'pop': 6 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5743.112305, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 5743.29541, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 5744.546631, 'pop': 11 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5745.553711, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5745.614746, 'pop': 2 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 5745.797852, 'pop': 58 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5746.896484, 'pop': 3 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5751.077393, 'pop': 18 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5751.382569, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5758.950928, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5759.988526, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5760.049561, 'pop': 12 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 5760.202149, 'pop': 8 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 5761.087158, 'pop': 9 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5761.636475, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5762.887695, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5763.894776, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5765.268067, 'pop': 13 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5775.644043, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5776.376465, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5776.468018, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 5776.651123, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 5777.505615, 'pop': 11 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5778.238037, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5780.22168, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5780.526856, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5792.306641, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5793.283203, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5793.405274, 'pop': 14 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 5793.557861, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 5794.656495, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5795.388916, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5796.060303, 'pop': 2 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 5796.945313, 'pop': 48 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5797.86084, 'pop': 69 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5799.844483, 'pop': 20 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5800.119141, 'pop': 18 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 5801.614502, 'pop': 120 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5804.177979, 'pop': 2 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 5804.818848, 'pop': 76 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5807.626465, 'pop': 2 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 5807.901123, 'pop': 78 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5808.969238, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5809.671143, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5809.732178, 'pop': 13 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 5809.976319, 'pop': 9 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 5810.58667, 'pop': 9 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5810.861328, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5811.929444, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5812.295655, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5812.417725, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5814.431885, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5814.676026, 'pop': 13 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5816.995361, 'pop': 4 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5822.30542, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5825.784424, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5826.699952, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5826.852539, 'pop': 14 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 5827.005127, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 5827.432373, 'pop': 12 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 5827.951172, 'pop': 121 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5828.22583, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5829.904297, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5829.934815, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5829.99585, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5830.484131, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5831.674317, 'pop': 4 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5841.165284, 'pop': 8 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5842.263916, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5843.698242, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5843.789795, 'pop': 14 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 5843.942383, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 5845.102051, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5845.803955, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5853.708008, 'pop': 22 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5853.830078, 'pop': 7 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5854.348877, 'pop': 22 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5858.957032, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5859.597901, 'pop': 5 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5859.689453, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5866.677979, 'pop': 20 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5867.532471, 'pop': 20 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5869.333008, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5869.394043, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5869.485596, 'pop': 8 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5869.699219, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5875.619629, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5876.474121, 'pop': 6 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5876.565674, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 5876.748779, 'pop': 6 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 5876.840332, 'pop': 6 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5877.75586, 'pop': 7 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5880.288819, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5880.685547, 'pop': 4 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5884.958008, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5885.232666, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5892.282227, 'pop': 10 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5892.984131, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5893.075684, 'pop': 11 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 5893.258789, 'pop': 7 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 5894.082764, 'pop': 8 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5894.662598, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5896.188477, 'pop': 3 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5897.989014, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5898.385742, 'pop': 12 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5908.975342, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5910.25708, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5910.318115, 'pop': 13 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 5910.470703, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 5911.26416, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5911.996582, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5914.651612, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5914.956787, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5925.63794, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5926.76709, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5926.858643, 'pop': 14 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 5927.102784, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 5928.384522, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5929.757813, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5935.281495, 'pop': 20 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5935.4646, 'pop': 19 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5942.27002, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5943.002442, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5943.093995, 'pop': 13 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 5943.246582, 'pop': 7 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 5943.826416, 'pop': 7 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5944.375733, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5945.138672, 'pop': 2 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 5946.237305, 'pop': 133 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5946.817139, 'pop': 100 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 5947.458008, 'pop': 128 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 5950.174072, 'pop': 112 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5954.080323, 'pop': 20 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5954.507569, 'pop': 18 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5958.993653, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5959.756592, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5959.848145, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 5960.000733, 'pop': 5 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 5960.91626, 'pop': 5 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 5961.526612, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5961.80127, 'pop': 17 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 5962.503174, 'pop': 10 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 5963.327149, 'pop': 11 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5963.632324, 'pop': 3 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5964.730957, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5965.005615, 'pop': 10 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5973.214844, 'pop': 11 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5975.65625, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5976.815918, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5977.151612, 'pop': 12 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 5977.304199, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 5977.639893, 'pop': 12 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 5979.715088, 'pop': 131 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5979.837158, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5980.56958, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5982.125977, 'pop': 3 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5982.675293, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5983.804444, 'pop': 9 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5985.421875, 'pop': 7 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 5992.28833, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5992.898682, 'pop': 10 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 5992.990235, 'pop': 12 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 5993.17334, 'pop': 7 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 5993.844727, 'pop': 8 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 5994.94336, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 5995.645264, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 5996.31665, 'pop': 10 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 5996.377686, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 5998.208741, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6008.950928, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6009.92749, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6010.019043, 'pop': 14 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6010.354736, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6010.659912, 'pop': 11 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6013.71167, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6015.329102, 'pop': 17 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6016.244629, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6016.336182, 'pop': 5 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6017.709473, 'pop': 6 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6019.113281, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6025.613526, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6026.345947, 'pop': 7 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6027.017334, 'pop': 14 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6027.230957, 'pop': 7 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6027.993897, 'pop': 7 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 6028.573731, 'pop': 58 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6030.038575, 'pop': 10 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6031.869629, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6034.494141, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6034.555176, 'pop': 6 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6034.768799, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6035.653809, 'pop': 7 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 6036.081055, 'pop': 6 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6042.276123, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6042.398193, 'pop': 7 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6042.459229, 'pop': 13 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6042.642334, 'pop': 6 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6043.435791, 'pop': 7 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6044.442871, 'pop': 9 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6046.243409, 'pop': 10 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6047.586182, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6047.647217, 'pop': 3 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6047.98291, 'pop': 4 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 6049.99707, 'pop': 13 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 6057.504395, 'pop': 6 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6058.938721, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6059.030274, 'pop': 10 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6059.091309, 'pop': 14 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6059.243897, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6060.098389, 'pop': 11 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6060.830811, 'pop': 12 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6062.173584, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6063.150147, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6063.424805, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6075.601319, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6076.028565, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6076.150635, 'pop': 13 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6076.333741, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6076.699952, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6078.744629, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6080.728272, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6080.789307, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6080.850342, 'pop': 3 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6081.155518, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6092.294434, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6092.752198, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6092.84375, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6093.026856, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6093.393067, 'pop': 11 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6094.247559, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6096.017578, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6096.109131, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6096.200684, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6101.388672, 'pop': 7 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6109.292725, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6109.597901, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6109.689453, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6109.872559, 'pop': 7 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6110.147217, 'pop': 8 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 6110.635498, 'pop': 140 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6110.727051, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6112.527588, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6112.893799, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6112.954834, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6113.38208, 'pop': 3 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6115.976075, 'pop': 5 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6125.589112, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6126.046875, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6126.138428, 'pop': 12 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6126.321533, 'pop': 9 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6126.718262, 'pop': 10 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6127.420166, 'pop': 13 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 6129.89209, 'pop': 16 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 6131.540039, 'pop': 70 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6134.439209, 'pop': 20 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 6135.019043, 'pop': 2 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 6135.019044, 'pop': 160 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 6137.979248, 'pop': 76 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6142.282227, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6142.73999, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6142.831543, 'pop': 15 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 6144.143799, 'pop': 5 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 6144.63208, 'pop': 82 },
{'key': '132: /system/bin/surfaceflinger :: binder_ioctl+0xd8 (0x1f)', 'x': 6144.723633, 'pop': 9 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6144.998291, 'pop': 30 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6146.066407, 'pop': 18 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6146.188477, 'pop': 2 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 6146.859864, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 6147.073487, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6148.41626, 'pop': 4 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 6149.789551, 'pop': 5 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6152.993897, 'pop': 23 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6154.580811, 'pop': 9 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 6155.069092, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6158.944824, 'pop': 9 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6159.402588, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6159.829834, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6160.01294, 'pop': 5 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6160.806397, 'pop': 5 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 6161.660889, 'pop': 316 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6161.966065, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6164.376953, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6164.743164, 'pop': 11 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 6165.17041, 'pop': 10 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 6165.780762, 'pop': 5 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 6170.816162, 'pop': 5 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 6175.119141, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6175.576904, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6176.034668, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6176.126221, 'pop': 13 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6176.278809, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6176.706055, 'pop': 11 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6177.621582, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6179.361084, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6179.66626, 'pop': 14 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 6181.527832, 'pop': 5 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6192.239502, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6192.544678, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6192.941407, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6193.063477, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6193.39917, 'pop': 12 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 6193.887452, 'pop': 24 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6194.619873, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6196.481446, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6196.756104, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6208.932618, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6209.359864, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6209.420899, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6209.634522, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6210.519532, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6211.221436, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6213.449219, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6213.81543, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6225.595215, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6226.022461, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6226.114014, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6226.297119, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6227.304199, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6228.250244, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6230.050781, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6230.111817, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6230.203369, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6230.44751, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6242.257813, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6242.654541, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6242.746094, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6242.929199, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6243.783692, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6244.424561, 'pop': 13 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6245.675781, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6246.652344, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6246.95752, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6258.92041, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6259.347656, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6259.408692, 'pop': 13 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6259.591797, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6259.958008, 'pop': 12 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 6260.110596, 'pop': 62 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6260.965088, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6263.131836, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6263.498047, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6275.55249, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6278.695801, 'pop': 16 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6278.787354, 'pop': 18 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6278.939942, 'pop': 14 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6280.09961, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6280.679444, 'pop': 19 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6280.862549, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6282.632569, 'pop': 18 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6282.968262, 'pop': 18 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6292.245606, 'pop': 10 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6293.618897, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6293.710449, 'pop': 12 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6293.863037, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6294.71753, 'pop': 11 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6295.480469, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6295.84668, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6298.135498, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6298.593262, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6308.908203, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6309.304932, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6309.396484, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6309.57959, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6310.4646, 'pop': 11 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6310.952881, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6313.36377, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6313.668946, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6325.601319, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6326.059082, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6326.150635, 'pop': 14 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6326.364258, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6335.580567, 'pop': 20 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6336.618164, 'pop': 10 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6336.80127, 'pop': 25 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 6337.228516, 'pop': 72 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 6339.517334, 'pop': 150 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6342.233399, 'pop': 5 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6342.508057, 'pop': 5 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6342.569092, 'pop': 5 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 6344.003418, 'pop': 180 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 6346.841553, 'pop': 3 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 6346.87207, 'pop': 157 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6348.062256, 'pop': 34 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6348.214844, 'pop': 5 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6348.397949, 'pop': 33 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6349.099854, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6351.388672, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6353.55542, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6353.982666, 'pop': 5 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 6354.44043, 'pop': 164 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 6354.68457, 'pop': 7 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6358.895996, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6358.957032, 'pop': 7 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6359.018067, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6359.170655, 'pop': 4 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6359.414795, 'pop': 5 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6360.299805, 'pop': 11 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 6361.032227, 'pop': 13 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 6363.778809, 'pop': 16 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 6366.006592, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6368.417481, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6368.722656, 'pop': 14 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 6371.774414, 'pop': 14 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 6371.927002, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6375.558594, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6375.650147, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6375.711182, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6375.86377, 'pop': 6 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6376.10791, 'pop': 7 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6376.931885, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6378.671387, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6378.732422, 'pop': 9 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6379.068115, 'pop': 3 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6379.220703, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 6386.911133, 'pop': 14 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 6387.033203, 'pop': 13 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 6390.969971, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6392.221192, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6392.282227, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6392.343262, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6392.49585, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6393.289307, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6394.021729, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6395.425537, 'pop': 2 },
{'key': '3644: Compiler :: rt_mutex_timed_lock+0x1c (0x4089a6b4)', 'x': 6396.615723, 'pop': 5 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6397.378662, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6397.683838, 'pop': 17 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 6402.44458, 'pop': 4 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 6402.658203, 'pop': 14 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 6405.557373, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6408.883789, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6409.158447, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6409.25, 'pop': 13 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6409.463623, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6410.226563, 'pop': 11 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 6411.782959, 'pop': 237 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 6412.423828, 'pop': 9 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6412.942627, 'pop': 18 },
{'key': '3660: BufferLiberator :: ?? 0xbf005dcc (0x37)', 'x': 6419.229248, 'pop': 6 },
{'key': '168: SurfaceFlinger :: ?? 0xbf005dcc (0x11)', 'x': 6419.412354, 'pop': 6 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6419.503907, 'pop': 9 },
{'key': '3637: com.amazon.sics.example :: futex_wait_queue_me+0xe8 (0x67617c70)', 'x': 6420.358399, 'pop': 6 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6422.616699, 'pop': 25 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6424.020508, 'pop': 25 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6425.576904, 'pop': 4 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6426.065186, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6426.156738, 'pop': 6 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6426.278809, 'pop': 2 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6426.370361, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6427.133301, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6428.933838, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6429.66626, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6429.879883, 'pop': 6 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6442.208984, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6442.422607, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6442.483643, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6442.727784, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6443.124512, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6443.826416, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6445.718506, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6445.932129, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6458.871582, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6459.390381, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6459.481934, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6459.634522, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6460.000733, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6460.641602, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6462.442139, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6463.327149, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6475.869873, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6476.754883, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6476.876953, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6477.090576, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6478.219727, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6478.952149, 'pop': 18 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6481.851319, 'pop': 3 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6483.682373, 'pop': 20 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6483.987549, 'pop': 20 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6492.227295, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6493.203858, 'pop': 10 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6493.600586, 'pop': 14 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6493.783692, 'pop': 9 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6494.18042, 'pop': 9 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6494.790772, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6496.682861, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6496.988037, 'pop': 12 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6508.859375, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6509.195069, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6509.286621, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6509.439209, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6510.598877, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6511.148193, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6513.101319, 'pop': 3 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6513.345459, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6514.230469, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6525.613526, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6525.766113, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6525.888184, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6526.376465, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6526.864746, 'pop': 11 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6527.688721, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6532.418946, 'pop': 18 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6532.663086, 'pop': 18 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6542.215088, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6542.367676, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6542.550781, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6542.703369, 'pop': 9 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6543.100098, 'pop': 9 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 6543.283203, 'pop': 131 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6543.679932, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6546.212891, 'pop': 17 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6546.609619, 'pop': 13 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6559.884766, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6560.037354, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6560.159424, 'pop': 16 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6560.34253, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6560.769776, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6561.776856, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6563.791016, 'pop': 18 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6564.157227, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6575.570801, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6575.692871, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6575.814942, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6575.96753, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6576.516846, 'pop': 11 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6577.432373, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6579.171875, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6579.660156, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6592.233399, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6592.385987, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6592.477539, 'pop': 14 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6592.630127, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6592.996338, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6593.545655, 'pop': 16 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 6594.491699, 'pop': 47 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 6595.926026, 'pop': 174 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 6596.688965, 'pop': 218 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 6599.466065, 'pop': 2 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 6599.893311, 'pop': 185 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6600.869873, 'pop': 22 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6601.144532, 'pop': 20 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 6605.539063, 'pop': 4 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 6605.661133, 'pop': 184 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6608.865479, 'pop': 10 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6609.018067, 'pop': 10 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6609.140137, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6609.292725, 'pop': 7 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6609.689453, 'pop': 8 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6610.48291, 'pop': 16 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 6611.032227, 'pop': 3 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 6611.215332, 'pop': 9 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6612.985352, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6613.046387, 'pop': 11 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6613.839844, 'pop': 3 },
{'key': '3653: SICS_SHARED_OVE :: rt_mutex_timed_lock+0x1c (0x4089a530)', 'x': 6616.220215, 'pop': 2 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 6618.142823, 'pop': 6 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 6622.720459, 'pop': 20 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 6622.781495, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6625.741699, 'pop': 11 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 6626.535156, 'pop': 2 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 6627.847412, 'pop': 2 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6628.427246, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6628.518799, 'pop': 18 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6628.671387, 'pop': 14 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6629.068115, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6629.953125, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6632.486084, 'pop': 18 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6632.79126, 'pop': 18 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6642.190674, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6642.343262, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6642.434815, 'pop': 12 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6642.587403, 'pop': 9 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6642.923096, 'pop': 9 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6643.594483, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6645.486572, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6646.615723, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6648.660401, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6658.883789, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6659.036377, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6659.097412, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6659.25, 'pop': 9 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6659.616211, 'pop': 10 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6660.196045, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6662.545899, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6663.766602, 'pop': 17 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 6666.330078, 'pop': 36 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6675.546387, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6675.698975, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6675.76001, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6675.912598, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6676.278809, 'pop': 11 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6676.950195, 'pop': 14 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 6678.628662, 'pop': 46 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6678.872803, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6678.933838, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6681.344727, 'pop': 4 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 6691.323975, 'pop': 23 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6692.239502, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6692.39209, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6692.483643, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6692.666748, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6693.032959, 'pop': 11 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6693.704346, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6695.352295, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6695.41333, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6695.810059, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 6696.847656, 'pop': 4 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 6697.06128, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6708.9021, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6716.104248, 'pop': 19 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6716.348389, 'pop': 22 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6716.470459, 'pop': 19 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6716.623047, 'pop': 19 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6717.874268, 'pop': 21 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6719.705323, 'pop': 22 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6720.010498, 'pop': 23 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6725.53418, 'pop': 7 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6725.686768, 'pop': 7 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6725.961426, 'pop': 8 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6726.114014, 'pop': 5 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6726.510742, 'pop': 6 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6727.060059, 'pop': 9 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6732.583741, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6732.919434, 'pop': 12 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6742.196778, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6742.349366, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6742.471436, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6742.654541, 'pop': 9 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6743.203858, 'pop': 9 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6743.814209, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6745.584229, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6745.889404, 'pop': 12 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6758.859375, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6759.042481, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6759.195069, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6759.378174, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6759.56128, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6760.843018, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6762.70459, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6763.040284, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6775.521973, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6776.742676, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6776.834229, 'pop': 16 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6777.047852, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6777.108887, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6778.299072, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6780.252198, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6781.961182, 'pop': 18 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6792.18457, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6792.337158, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6792.428711, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6792.550781, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6792.916992, 'pop': 10 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6793.496826, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6795.358399, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6795.633057, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6808.81665, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6808.999756, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6809.091309, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6809.243897, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6809.57959, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6810.281495, 'pop': 16 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 6810.739258, 'pop': 108 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6812.143067, 'pop': 17 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6812.204102, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6812.295655, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6812.722901, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6825.570801, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6825.692871, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6825.784424, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6825.906495, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6826.242188, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6826.791504, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6829.171875, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6829.507569, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6842.172364, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6842.324952, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6842.385987, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6842.538575, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6842.874268, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6843.454102, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6845.224121, 'pop': 17 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6845.773438, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6858.834961, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6859.262207, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6859.47583, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6859.811524, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6859.903076, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6861.032227, 'pop': 17 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 6861.642578, 'pop': 48 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6863.168457, 'pop': 18 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6863.50415, 'pop': 17 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6863.656738, 'pop': 3 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6863.839844, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6875.528076, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6875.680664, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6875.772217, 'pop': 14 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6875.894287, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6876.260498, 'pop': 11 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6876.809815, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6878.610352, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6878.640869, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6879.373291, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6892.160156, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6892.312744, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6892.404297, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6892.556885, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6892.862061, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6893.563965, 'pop': 14 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6895.669678, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6895.944336, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6908.822754, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6908.944824, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6909.036377, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6909.188965, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6909.555176, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6910.226563, 'pop': 16 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 6910.806397, 'pop': 45 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 6914.865235, 'pop': 207 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 6916.848877, 'pop': 275 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 6919.381836, 'pop': 211 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 6919.900635, 'pop': 3 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6922.586182, 'pop': 27 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 6922.799805, 'pop': 213 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6923.013428, 'pop': 25 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 6923.166016, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6925.515869, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6925.63794, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6925.698975, 'pop': 14 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6925.851563, 'pop': 2 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6926.217774, 'pop': 3 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6926.919678, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6930.703858, 'pop': 18 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6931.253174, 'pop': 7 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 6931.80249, 'pop': 7 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 6935.983399, 'pop': 14 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 6940.896729, 'pop': 4 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 6941.110352, 'pop': 8 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6942.178467, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6942.27002, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6942.39209, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6942.544678, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6943.002442, 'pop': 11 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 6943.704346, 'pop': 499 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6944.223145, 'pop': 17 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 6944.802979, 'pop': 3 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6946.389893, 'pop': 17 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6946.450928, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6946.817139, 'pop': 3 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 6946.939209, 'pop': 5 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 6947.244385, 'pop': 26 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 6949.44165, 'pop': 12 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 6951.608399, 'pop': 9 },
{'key': '3644: Compiler :: rt_mutex_timed_lock+0x1c (0x4089a6b4)', 'x': 6954.660156, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6958.810547, 'pop': 9 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6958.932618, 'pop': 10 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6959.02417, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6959.176758, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6960.03125, 'pop': 12 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 6960.763672, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6961.160401, 'pop': 13 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6963.601807, 'pop': 3 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6970.193604, 'pop': 22 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6970.74292, 'pop': 22 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 6973.153809, 'pop': 20 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 6973.397949, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6975.503662, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6976.083496, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6976.175049, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6976.358155, 'pop': 5 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6976.449707, 'pop': 5 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 6977.395752, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6977.792481, 'pop': 16 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 6978.494385, 'pop': 4 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6979.5625, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 6980.416992, 'pop': 9 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 6984.781006, 'pop': 10 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6992.16626, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 6992.440918, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 6992.501953, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 6992.654541, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 6993.539551, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 6994.149903, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 6995.401123, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 6996.438721, 'pop': 17 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 6996.896484, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7008.828858, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7009.469727, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7009.56128, 'pop': 13 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7009.744385, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7010.598877, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7011.270264, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7013.101319, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7013.46753, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7013.71167, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7025.491455, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7026.19336, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7026.284912, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7026.406983, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7026.620606, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7027.169922, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7029.33667, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7029.611328, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7042.154053, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7042.459229, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7042.550781, 'pop': 14 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7042.672852, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7043.06958, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7043.649414, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7045.480469, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7045.907715, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7058.81665, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7058.969238, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7059.030274, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7059.182861, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7059.549072, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7060.220459, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7062.051514, 'pop': 17 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7062.112549, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7062.204102, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7062.47876, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7075.509766, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7075.662354, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7075.753907, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7075.906495, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7076.791504, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7077.371338, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7079.141358, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7079.202393, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7079.263428, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7079.446533, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7092.172364, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7092.355469, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7092.447022, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7092.569092, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7093.393067, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7094.003418, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7095.834473, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7095.86499, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7095.956543, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7096.292236, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7108.834961, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7108.957032, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7109.079102, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7109.23169, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7109.628418, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7110.23877, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7112.069824, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7112.466553, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7112.893799, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7125.497559, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7125.650147, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7125.741699, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7126.199463, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7126.565674, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7127.11499, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7130.7771, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7131.051758, 'pop': 17 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7142.129639, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7142.312744, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7142.373779, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7142.526367, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7142.862061, 'pop': 11 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7143.441895, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7145.181397, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7145.211914, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7145.578125, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7158.792236, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7158.975342, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7159.036377, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7159.188965, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7159.524658, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7160.073975, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7162.332276, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7162.606934, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7175.454834, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7175.63794, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7175.698975, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7175.851563, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7176.706055, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7177.346924, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7179.269532, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7179.330567, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7179.391602, 'pop': 3 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7179.635742, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7192.147949, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7192.300537, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7192.361572, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7192.51416, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7192.910889, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7193.490723, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7195.352295, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7195.840576, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7211.587647, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7211.709717, 'pop': 15 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7211.80127, 'pop': 18 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7211.953858, 'pop': 15 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7212.777832, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7213.418701, 'pop': 19 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7215.219238, 'pop': 20 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7215.524414, 'pop': 18 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7225.53418, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7226.632813, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7226.693848, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7226.846436, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7227.273682, 'pop': 11 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7227.792481, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7230.172852, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7230.416992, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7242.135742, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7242.501953, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7242.562989, 'pop': 13 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7242.715576, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7243.509033, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7244.30249, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7245.553711, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7246.31665, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7246.591309, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7258.79834, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7259.103516, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7259.195069, 'pop': 12 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7259.347656, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7259.713867, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7261.026123, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7263.009766, 'pop': 17 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7263.131836, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7263.223389, 'pop': 3 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7263.528565, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7275.460938, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7276.284912, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7276.376465, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7276.498535, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7276.590088, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7277.902344, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7278.756836, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7280.09961, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7280.374268, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7292.154053, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7292.245606, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7292.367676, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7292.520264, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7292.916992, 'pop': 11 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7293.496826, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7295.633057, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7295.938233, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7308.786133, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7309.060791, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7309.121826, 'pop': 14 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7309.304932, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7310.220459, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7310.739258, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7312.47876, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7312.692383, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7325.509766, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7325.784424, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7325.875977, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7326.028565, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7326.181153, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7326.791504, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7328.469971, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7328.683594, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7342.080811, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7342.691162, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7342.813233, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7342.996338, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7343.72876, 'pop': 14 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7344.308594, 'pop': 17 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 7346.292236, 'pop': 344 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 7346.383789, 'pop': 349 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 7347.604492, 'pop': 377 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7348.489502, 'pop': 20 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7348.550537, 'pop': 19 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7348.64209, 'pop': 4 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7349.343995, 'pop': 5 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 7349.862793, 'pop': 2 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 7350.320557, 'pop': 357 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 7352.212647, 'pop': 350 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7358.773926, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7358.987549, 'pop': 9 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7359.109619, 'pop': 14 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7359.323242, 'pop': 9 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7359.597901, 'pop': 9 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 7360.269287, 'pop': 362 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7360.574463, 'pop': 11 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7362.375, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7362.436035, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7362.527588, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7362.741211, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 7366.830567, 'pop': 14 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 7371.347168, 'pop': 4 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 7371.499756, 'pop': 23 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7375.467041, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7376.046875, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7376.138428, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7376.321533, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7376.413086, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7377.206543, 'pop': 13 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 7377.786377, 'pop': 5 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 7377.847412, 'pop': 5 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 7378.946045, 'pop': 26 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7379.525879, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7380.288819, 'pop': 16 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 7381.875733, 'pop': 10 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 7382.608155, 'pop': 4 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 7383.249024, 'pop': 10 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 7388.681153, 'pop': 5 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7392.099121, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7393.441895, 'pop': 15 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7393.533447, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7393.655518, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7393.960693, 'pop': 12 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 7394.845703, 'pop': 32 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7397.53125, 'pop': 20 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 7397.561768, 'pop': 8 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7399.240235, 'pop': 20 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7399.270752, 'pop': 18 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7399.606446, 'pop': 4 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7401.55957, 'pop': 7 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7408.792236, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7409.37207, 'pop': 9 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7409.463623, 'pop': 13 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7409.646729, 'pop': 7 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7409.738281, 'pop': 7 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7410.409668, 'pop': 9 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7412.14917, 'pop': 10 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7412.423828, 'pop': 10 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7425.454834, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7425.63794, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7425.76001, 'pop': 14 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7425.912598, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7426.370361, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7427.224854, 'pop': 16 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 7427.591065, 'pop': 36 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7428.903321, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7429.513672, 'pop': 17 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7429.78833, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7442.117432, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7442.39209, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7442.51416, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7442.788819, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7443.15503, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7443.887452, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7445.565918, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7445.626953, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7445.718506, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7445.932129, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7458.78003, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7459.054688, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7459.115723, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7459.298828, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7459.512452, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7460.061768, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7461.892823, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7462.197998, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7475.41211, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7476.144532, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7476.236084, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7476.388672, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7476.480225, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7477.060059, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7478.921631, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7478.982666, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7479.257324, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7492.074707, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7492.715576, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7492.776612, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7492.929199, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7493.020752, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7493.570069, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7495.462158, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7495.523193, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7495.767334, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7508.767823, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7509.500244, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7509.591797, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7509.744385, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7510.202149, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7510.781983, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7512.674072, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7512.735107, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7512.82666, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7514.779785, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7525.43042, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7525.644043, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7525.705078, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7525.857666, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7526.19336, 'pop': 10 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7526.742676, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7529.09253, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7530.770996, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7542.093018, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7542.245606, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7542.337158, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7542.459229, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7542.82544, 'pop': 11 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7543.405274, 'pop': 16 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 7543.863037, 'pop': 110 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7546.151856, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7546.457032, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7558.786133, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7559.365967, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7559.45752, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7559.640625, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7560.067871, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7560.647705, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7562.417725, 'pop': 17 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7562.448242, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7563.668946, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7575.509766, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7576.120118, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7576.21167, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7576.394776, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7576.791504, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7577.645996, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7579.660156, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7579.934815, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7592.080811, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7592.752198, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7592.84375, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7592.996338, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7593.148926, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7594.461182, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7597.116211, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7597.848633, 'pop': 17 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7608.712891, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7608.865479, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7608.957032, 'pop': 14 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7609.109619, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7609.445313, 'pop': 11 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7610.025147, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7612.008789, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7612.558106, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7625.406006, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7625.558594, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7625.650147, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7625.772217, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7626.10791, 'pop': 12 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 7626.535156, 'pop': 78 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7626.718262, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7628.549317, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7628.579834, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7629.068115, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7642.068604, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7642.221192, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7642.312744, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7642.434815, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7642.801026, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7643.38086, 'pop': 13 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 7644.540527, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7646.066407, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7646.096924, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7647.195557, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7658.731201, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7659.188965, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7659.311035, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7659.494141, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7659.890869, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7660.470703, 'pop': 13 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 7660.806397, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7662.576416, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7662.637452, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7662.698487, 'pop': 3 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7663.308838, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7675.393799, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7676.187256, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7676.64502, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7677.163819, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7677.346924, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7677.896241, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7679.696778, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7679.757813, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7679.849366, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7680.55127, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7692.086914, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7692.27002, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7692.361572, 'pop': 13 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7692.483643, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7692.910889, 'pop': 11 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7693.460205, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7695.382813, 'pop': 14 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7695.41333, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7695.718506, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7708.749512, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7708.871582, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7709.329346, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7709.512452, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7709.665039, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7710.855225, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7712.80835, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7712.869385, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7712.960938, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7713.205078, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7725.41211, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7725.564698, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7725.65625, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7725.778321, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7726.114014, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7726.693848, 'pop': 13 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 7728.67749, 'pop': 62 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7728.921631, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7728.982666, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7730.172852, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7742.04419, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7742.227295, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7742.28833, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7742.440918, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7742.776612, 'pop': 11 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7743.509033, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7745.401123, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7745.462158, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7745.553711, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7745.828369, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7763.040284, 'pop': 19 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7763.253907, 'pop': 16 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7763.681153, 'pop': 19 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7763.833741, 'pop': 17 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7764.71875, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7765.329102, 'pop': 18 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7766.61084, 'pop': 3 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7767.770508, 'pop': 21 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7768.045166, 'pop': 21 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7775.399903, 'pop': 8 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7777.108887, 'pop': 9 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7777.169922, 'pop': 10 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7777.353027, 'pop': 8 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7778.238037, 'pop': 9 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7778.909424, 'pop': 13 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 7779.611328, 'pop': 47 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7780.801514, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7781.533936, 'pop': 12 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7792.154053, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7792.94751, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7793.039063, 'pop': 13 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7793.19165, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7794.137695, 'pop': 11 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7794.748047, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7796.457032, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7796.487549, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7796.579102, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7796.85376, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7808.725098, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7808.999756, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7809.091309, 'pop': 13 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7809.243897, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7810.128907, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7810.678223, 'pop': 13 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7812.234619, 'pop': 3 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7813.516358, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7813.852051, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7825.387695, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7826.150635, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7826.242188, 'pop': 13 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7826.394776, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7826.547364, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7827.09668, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7828.836182, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7829.202393, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7842.050293, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7843.057373, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7843.148926, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7843.301514, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7844.186524, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7844.827393, 'pop': 17 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 7844.888428, 'pop': 60 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7845.285156, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7847.238281, 'pop': 18 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7847.573975, 'pop': 17 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7858.743409, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7859.689453, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7859.781006, 'pop': 13 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7859.964112, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7860.879639, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7861.520508, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7862.863281, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7864.053467, 'pop': 18 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7864.938477, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7875.375489, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7876.046875, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7876.10791, 'pop': 12 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7876.260498, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7877.145508, 'pop': 11 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7877.694824, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7879.434326, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7879.678467, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7892.038086, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7892.862061, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7892.953613, 'pop': 14 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7893.106201, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7893.197754, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7893.777588, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7895.700195, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7895.822266, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7897.226075, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7908.731201, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7909.524658, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7909.616211, 'pop': 14 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7909.799317, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7909.860352, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7910.440186, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7912.881592, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7913.430909, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7925.393799, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7926.126221, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7926.217774, 'pop': 14 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7926.400879, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7926.553467, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7927.163819, 'pop': 16 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 7927.896241, 'pop': 78 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7930.062989, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7930.825928, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7942.056397, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7942.880371, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7942.971924, 'pop': 14 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7943.185547, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7943.2771, 'pop': 11 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7944.528321, 'pop': 17 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7946.389893, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7946.450928, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7946.542481, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7946.786621, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7958.718995, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7958.963135, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7959.054688, 'pop': 14 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7959.237793, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7959.359864, 'pop': 11 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7959.939698, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7962.411621, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7962.716797, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7975.503662, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7975.808838, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7975.900391, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7976.114014, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7976.876953, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7977.456787, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7979.348877, 'pop': 18 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7979.409912, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7979.501465, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7979.715088, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 7992.013672, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7992.715576, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 7992.807129, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 7992.990235, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 7993.112305, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 7993.692139, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 7995.645264, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 7995.706299, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 7995.797852, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 7996.07251, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8008.706787, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8009.469727, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8009.56128, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8009.744385, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8009.866455, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8010.476807, 'pop': 13 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 8012.735107, 'pop': 586 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 8013.131836, 'pop': 81 },
{'key': '3641: GC :: futex_wait_queue_me+0xe8 (0x41d5acf8)', 'x': 8013.314942, 'pop': 3829 },
{'key': '3653: SICS_SHARED_OVE :: rt_mutex_timed_lock+0x1c (0x4089a530)', 'x': 8015.542725, 'pop': 2 },
{'key': '3637: com.amazon.sics.example :: futex_wait_queue_me+0xe8 (0x4089a4c8)', 'x': 8015.542726, 'pop': 2 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 8016.000489, 'pop': 604 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 8018.38086, 'pop': 600 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 8019.51001, 'pop': 590 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8023.721436, 'pop': 26 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8024.087647, 'pop': 26 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8025.369385, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8025.613526, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8025.705078, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8027.261475, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8028.695801, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8029.885987, 'pop': 18 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8030.160645, 'pop': 5 },
{'key': '3645: ReferenceQueueD :: futex_wait_queue_me+0xe8 (0x67626638)', 'x': 8040.017823, 'pop': 3853 },
{'key': '3646: FinalizerDaemon :: futex_wait_queue_me+0xe8 (0x675f7fe8)', 'x': 8040.04834, 'pop': 3852 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 8040.414551, 'pop': 16 },
{'key': '3647: FinalizerWatchd :: futex_wait_queue_me+0xe8 (0x6761b838)', 'x': 8040.93335, 'pop': 3852 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8042.031983, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8042.215088, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8042.306641, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8042.459229, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8043.374756, 'pop': 12 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 8044.870118, 'pop': 24 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8045.266846, 'pop': 18 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8047.128418, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8047.250489, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8047.342041, 'pop': 3 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8047.494629, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8058.69458, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8058.908203, 'pop': 10 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8058.969238, 'pop': 14 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8059.182861, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8059.304933, 'pop': 11 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8060.250977, 'pop': 12 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 8060.434082, 'pop': 12 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 8060.952881, 'pop': 14 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 8061.990479, 'pop': 40 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8062.661866, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8062.722901, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8062.844971, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8063.089112, 'pop': 3 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 8065.408447, 'pop': 18 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 8065.744141, 'pop': 18 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 8067.819336, 'pop': 3 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 8072.122315, 'pop': 6 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8075.32666, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8075.540284, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8075.631836, 'pop': 14 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8075.753907, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8075.906495, 'pop': 12 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 8076.455811, 'pop': 649 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8076.852539, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8078.653076, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8079.019287, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8079.538086, 'pop': 3 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8080.209473, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8092.019776, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8092.172364, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8092.263916, 'pop': 12 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8092.385987, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8092.508057, 'pop': 11 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8093.72876, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8095.559815, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8095.590332, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8095.651367, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8095.86499, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8108.682373, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8108.865479, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8108.957032, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8109.109619, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8109.23169, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8110.452393, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8112.25293, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8112.313965, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8112.405518, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8112.649658, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8125.344971, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8125.86377, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8125.955323, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8126.138428, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8126.504639, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8127.176026, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8129.220703, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8129.708984, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8129.77002, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8130.593995, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8142.007569, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8142.160156, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8142.221192, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8142.373779, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8142.73999, 'pop': 11 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8143.289307, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8145.150879, 'pop': 14 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8145.181397, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8145.486572, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8158.670166, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8158.853272, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8159.219483, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8159.433106, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8159.799317, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8160.37915, 'pop': 14 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8162.240723, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8162.545899, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8175.363281, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8175.515869, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8175.63794, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8175.790527, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8176.187256, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8176.76709, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8178.872803, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8179.300049, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8192.025879, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8192.147949, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8192.239502, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8192.361572, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8192.788819, 'pop': 12 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 8193.307618, 'pop': 114 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8193.39917, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8195.199707, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8195.443848, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8195.687989, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8208.688477, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8208.841065, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8208.963135, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8209.115723, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8209.481934, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8210.092285, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8211.862305, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8211.953858, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8212.197998, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8225.351075, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8225.503662, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8225.564698, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8225.717285, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8226.083496, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8226.66333, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8228.402832, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8228.463867, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8228.769043, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8242.013672, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8242.16626, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8242.257813, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8242.379883, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8242.746094, 'pop': 13 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 8242.959717, 'pop': 45 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8243.356446, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8245.156983, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8245.431641, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8245.919922, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8258.67627, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8258.828858, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8258.92041, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8259.042481, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8259.408692, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8260.141113, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8261.972168, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8262.368897, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8276.162842, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8276.376465, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8276.468018, 'pop': 16 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8276.651123, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8277.017334, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8277.597168, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8279.916504, 'pop': 18 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8280.22168, 'pop': 17 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8292.031983, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8292.215088, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8292.367676, 'pop': 14 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8292.672852, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8293.100098, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8293.863037, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8296.487549, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8296.823242, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8308.664063, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8308.81665, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8308.908203, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8309.060791, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8309.427002, 'pop': 11 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8310.189942, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8312.112549, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8312.204102, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8312.295655, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8312.570313, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8325.32666, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8325.540284, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8325.692871, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8325.875977, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8326.242188, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8326.822022, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8328.683594, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8328.744629, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8330.270508, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8341.989258, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8342.141846, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8342.263916, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8342.416504, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8342.813233, 'pop': 11 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8343.942383, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8346.078613, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8346.414307, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8358.651856, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8358.804444, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8358.865479, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8359.018067, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8359.35376, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8359.933594, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8361.764649, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8361.825684, 'pop': 14 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8362.25293, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8375.314453, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8375.467041, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8375.528076, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8375.680664, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8376.016358, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8376.596192, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8378.305176, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8378.396729, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8378.76294, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8392.007569, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8392.129639, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8392.251709, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8392.404297, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8392.801026, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8393.411377, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8395.333984, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8395.425537, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8396.157959, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8408.639649, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8408.853272, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8409.188965, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8409.341553, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8409.738281, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8410.287598, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8412.637452, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8412.881592, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8425.302246, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8425.454834, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8425.546387, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8425.698975, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8426.034668, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8426.614502, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8428.65918, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8428.933838, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8441.995361, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8442.117432, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8442.239502, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8442.39209, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8442.788819, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8443.368653, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8445.260742, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8445.29126, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8446.084717, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8458.627442, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8458.78003, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8458.871582, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8459.02417, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8459.329346, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8459.90918, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8462.04541, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8462.442139, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8475.290039, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8476.114014, 'pop': 15 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8476.205567, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8477.517823, 'pop': 14 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8477.884033, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8478.524903, 'pop': 18 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8480.294922, 'pop': 19 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8480.355957, 'pop': 17 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8480.416992, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8482.003907, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8491.952637, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8492.105225, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8492.196778, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8492.318848, 'pop': 9 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8492.685059, 'pop': 9 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8493.264893, 'pop': 10 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8494.882324, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8494.912842, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8496.286133, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8508.645752, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8509.134033, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8509.225586, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8509.408692, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8509.774903, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8510.354736, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8512.185791, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8512.216309, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8512.552002, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8525.30835, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8525.460938, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8525.55249, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8525.705078, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8526.040772, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8526.620606, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8528.360107, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8528.390625, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8528.939942, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8541.970947, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8542.123535, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8542.245606, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8542.367676, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8543.679932, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8544.412354, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8546.304444, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8546.334961, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8546.426514, 'pop': 3 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8546.609619, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8558.633545, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8558.786133, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8558.877686, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8558.999756, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8559.335449, 'pop': 11 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8560.037354, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8561.898926, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8561.959961, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8562.051514, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8562.35669, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8575.357178, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8575.540284, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8575.601319, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8575.753907, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8576.516846, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8577.249268, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8578.469971, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8579.385498, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8579.690674, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8591.989258, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8592.141846, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8592.202881, 'pop': 13 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8592.355469, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8592.691162, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8593.270996, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8595.529297, 'pop': 16 },
{'key': '532: Binder_2 :: binder_ioctl+0xd8 (0x1f)', 'x': 8598.306397, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8598.489502, 'pop': 17 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8608.621338, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8608.773926, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8608.865479, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8609.018067, 'pop': 9 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8609.35376, 'pop': 10 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8609.964112, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8611.917236, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8612.649658, 'pop': 13 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8625.283936, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8625.436524, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8625.528076, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8625.650147, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8626.016358, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8626.596192, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8628.457764, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8628.518799, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8628.88501, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8641.946533, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8642.801026, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8642.892578, 'pop': 16 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8643.075684, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8643.350344, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8644.967774, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8646.615723, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8649.087647, 'pop': 19 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8649.453858, 'pop': 19 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8658.609131, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8658.761719, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8658.853272, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8659.00586, 'pop': 8 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8659.37207, 'pop': 9 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8659.951904, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8661.966065, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8662.240723, 'pop': 12 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8677.041748, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8677.346924, 'pop': 15 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8677.438477, 'pop': 17 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8677.560547, 'pop': 14 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8677.987793, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8678.53711, 'pop': 18 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8680.459717, 'pop': 19 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8680.734375, 'pop': 17 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8691.934326, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8692.636231, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8692.727784, 'pop': 14 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8692.910889, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8693.307618, 'pop': 11 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8693.826416, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8695.504883, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8695.626953, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8696.237305, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8708.596924, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8708.810547, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8708.871582, 'pop': 14 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8709.02417, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8709.390381, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8709.970215, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8711.526612, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8711.587647, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8711.92334, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8725.290039, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8725.442627, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8725.53418, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8725.686768, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8726.052979, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8726.632813, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8728.646973, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8728.738526, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8729.196289, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8741.952637, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8742.471436, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8742.562989, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8742.746094, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8743.112305, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8743.875244, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8745.797852, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8745.858887, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8745.919922, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8746.19458, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8758.615235, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8759.164551, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8759.286621, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8759.469727, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8759.866455, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8760.537842, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8762.277344, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8762.552002, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8775.277832, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8775.766113, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8775.857666, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8776.040772, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8776.406983, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8777.261475, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8779.428223, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8779.672364, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8791.94043, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8792.489746, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8793.039063, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8793.222168, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8793.588379, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8794.442871, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8796.212891, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8796.304444, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8796.395996, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8796.640137, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8808.603027, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8808.877686, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8808.999756, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8809.274414, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8810.220459, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8811.410645, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8811.837891, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8814.248779, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8814.61499, 'pop': 17 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8825.265625, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8825.601319, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8825.723389, 'pop': 14 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8826.364258, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8826.486329, 'pop': 11 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8827.09668, 'pop': 16 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 8827.157715, 'pop': 554 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8827.798584, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8829.049805, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8829.263428, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8841.928223, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8842.355469, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8842.416504, 'pop': 13 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8842.630127, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8842.996338, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8843.72876, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8845.498779, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8845.590332, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8845.651367, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8845.956543, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8858.590821, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8859.048584, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8859.201172, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8859.35376, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8859.750489, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8860.543946, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8862.13086, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8862.558106, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8865.609864, 'pop': 5 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8875.283936, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8875.924805, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8876.016358, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8876.168946, 'pop': 9 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8876.535156, 'pop': 10 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8877.298096, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8879.586914, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8880.01416, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8892.282227, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8892.526367, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8895.913819, 'pop': 18 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8896.188477, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8897.226075, 'pop': 4 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8897.256592, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8898.172119, 'pop': 20 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8902.32251, 'pop': 23 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8902.627686, 'pop': 21 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8908.548096, 'pop': 10 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8908.792236, 'pop': 7 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8908.853272, 'pop': 10 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8909.036377, 'pop': 5 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8909.433106, 'pop': 6 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8910.043457, 'pop': 12 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 8911.14209, 'pop': 78 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8912.362793, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8912.637452, 'pop': 9 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8925.241211, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8925.515869, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8925.576904, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8925.76001, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8926.583984, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8927.407959, 'pop': 17 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 8927.77417, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8931.192139, 'pop': 20 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8931.55835, 'pop': 18 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8941.934326, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8942.208984, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8942.27002, 'pop': 14 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8942.483643, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8942.666748, 'pop': 10 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8943.551758, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8944.650391, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8945.718506, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8946.023682, 'pop': 13 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8958.566407, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8959.298828, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8959.390381, 'pop': 13 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8959.573487, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8960.427979, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8961.03833, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8963.144043, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8963.418701, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8975.259522, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8976.266602, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8977.67041, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8977.914551, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8978.646973, 'pop': 14 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8979.287842, 'pop': 17 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8982.370118, 'pop': 18 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8982.736328, 'pop': 18 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8992.624024, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 8992.685059, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 8992.807129, 'pop': 13 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 8992.990235, 'pop': 9 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 8993.93628, 'pop': 10 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 8994.027832, 'pop': 14 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 8994.577149, 'pop': 63 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8994.790772, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 8994.821289, 'pop': 11 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 8995.279053, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 8997.171143, 'pop': 3 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 8997.873047, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9004.281738, 'pop': 8 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9008.554199, 'pop': 3 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9009.011963, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9009.134033, 'pop': 13 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9009.317139, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9009.713867, 'pop': 11 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9010.598877, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9012.338379, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9012.429932, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9012.490967, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9012.796143, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9014.932373, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9021.035889, 'pop': 7 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9025.247315, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9025.674561, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9025.766113, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9025.918701, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9026.31543, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9026.956299, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9029.09253, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9029.611328, 'pop': 8 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9041.879395, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9041.970947, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9042.0625, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9042.18457, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9042.916992, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9043.496826, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9045.572022, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9045.816162, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9058.541992, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9058.664063, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9058.755615, 'pop': 14 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9058.938721, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9059.304932, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9060.006836, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9061.990479, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9062.020996, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9062.112549, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9062.47876, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9075.235107, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9075.32666, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9075.509766, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9075.662354, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9076.028565, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9076.608399, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9078.439453, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9078.469971, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9078.775147, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9091.867188, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9092.019776, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9092.111328, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9092.263916, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9092.630127, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9093.240479, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9095.010498, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9095.071533, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9095.407227, 'pop': 3 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9095.590332, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9108.560303, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9108.712891, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9108.773926, 'pop': 12 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9108.926514, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9109.262207, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9109.811524, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9111.886719, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9112.069824, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9125.222901, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9125.375489, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9125.467041, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9125.589112, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9125.924805, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9126.443604, 'pop': 16 },
{'key': '532: Binder_2 :: binder_ioctl+0xd8 (0x1f)', 'x': 9131.112793, 'pop': 4 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9134.011963, 'pop': 21 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9134.286621, 'pop': 21 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9145.883301, 'pop': 18 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9146.127442, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9146.249512, 'pop': 19 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9146.493653, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9146.585205, 'pop': 11 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9147.134522, 'pop': 20 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9149.30127, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9149.789551, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9158.548096, 'pop': 10 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9159.12793, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9159.219483, 'pop': 11 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9159.37207, 'pop': 9 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9160.226563, 'pop': 9 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9160.806397, 'pop': 13 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9161.630371, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9163.03418, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9163.461426, 'pop': 13 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9175.210693, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9175.698975, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9175.821045, 'pop': 13 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9176.00415, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9176.858643, 'pop': 12 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9178.445557, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9179.086426, 'pop': 17 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 9180.825928, 'pop': 177 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9181.070069, 'pop': 18 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9181.07007, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9181.161621, 'pop': 3 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9181.344727, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9191.873291, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9192.39209, 'pop': 10 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9192.483643, 'pop': 13 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9192.727784, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9193.093995, 'pop': 11 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9193.856934, 'pop': 11 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9195.657471, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9195.718506, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9195.810059, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9196.206787, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9208.535889, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9208.749512, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9208.810547, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9208.963135, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9209.970215, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9210.580567, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9212.442139, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9212.594727, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9212.991455, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9228.158692, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9228.31128, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9228.402832, 'pop': 18 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9228.585938, 'pop': 14 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9229.501465, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9230.478027, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9232.553223, 'pop': 18 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9239.602784, 'pop': 25 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9247.445801, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9247.567871, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9247.659424, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9247.812012, 'pop': 7 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9248.117188, 'pop': 8 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9248.727539, 'pop': 18 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9250.406006, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9250.467041, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9250.802735, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9258.554199, 'pop': 9 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9258.67627, 'pop': 7 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9258.737305, 'pop': 10 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9258.889893, 'pop': 7 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9259.103516, 'pop': 7 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9259.774903, 'pop': 8 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9261.69751, 'pop': 10 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9261.758545, 'pop': 10 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9262.246826, 'pop': 3 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9262.399414, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9275.216797, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9275.338867, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9275.399903, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9275.55249, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9275.735596, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9276.406983, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9278.238037, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9278.299072, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9279.000977, 'pop': 3 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9279.184082, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9291.879395, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9292.367676, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9292.459229, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9292.672852, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9293.06958, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9293.863037, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9296.212891, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9297.616699, 'pop': 17 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9308.541992, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9309.152344, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9309.243897, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9309.396484, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9309.762695, 'pop': 11 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 9310.220459, 'pop': 122 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9310.647705, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9312.509278, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9312.539795, 'pop': 14 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9313.36377, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9325.20459, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9325.662354, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9325.723389, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9325.937012, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9326.303223, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9327.066162, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9328.958252, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9329.019287, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9329.080323, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9329.477051, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9341.867188, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9342.141846, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9342.202881, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9342.355469, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9342.813233, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9343.515137, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9345.773438, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9346.231201, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9346.475342, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9358.682373, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9359.23169, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9359.323242, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9359.506348, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9359.689453, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9360.299805, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9362.222412, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9362.283447, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9362.375, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9362.619141, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9375.192383, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9375.833252, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9375.924805, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9376.077393, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9376.199463, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9376.809815, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9380.044678, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9380.471924, 'pop': 17 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9392.068604, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9392.73999, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9392.831543, 'pop': 14 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9392.984131, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9393.869141, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9394.540527, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9401.895264, 'pop': 23 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9403.115967, 'pop': 21 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9409.707764, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9410.043457, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9410.13501, 'pop': 14 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9410.318115, 'pop': 6 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9410.440186, 'pop': 6 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9412.240723, 'pop': 17 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9413.980225, 'pop': 3 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9414.071778, 'pop': 18 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9414.346436, 'pop': 10 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9425.607422, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9425.729492, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9425.790527, 'pop': 14 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9425.943115, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9426.126221, 'pop': 11 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9427.377442, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9430.825928, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9431.161621, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9441.903809, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9443.765381, 'pop': 15 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9443.856934, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9443.979004, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9444.741944, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9445.321778, 'pop': 18 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9446.511963, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9447.335938, 'pop': 18 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9447.976807, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9458.657959, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9458.78003, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9458.841065, 'pop': 11 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9458.993653, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9459.817627, 'pop': 11 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9462.472656, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9462.594727, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9464.456299, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9464.853027, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9475.167969, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9475.778321, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9475.869873, 'pop': 14 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9476.022461, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9476.358155, 'pop': 10 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9476.999024, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9478.769043, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9478.830078, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9478.921631, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9479.135254, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9491.861084, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9492.440918, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9492.562989, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9492.746094, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9493.814209, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9494.94336, 'pop': 15 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 9495.614746, 'pop': 173 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 9504.77002, 'pop': 8 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 9505.929688, 'pop': 1366 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9508.92041, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9509.134033, 'pop': 13 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 9509.134034, 'pop': 2 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9509.256104, 'pop': 15 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 9509.530762, 'pop': 1377 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 9512.002686, 'pop': 1372 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 9513.681153, 'pop': 1373 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 9514.047364, 'pop': 7 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9525.18628, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9525.399903, 'pop': 15 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 9529.031495, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: futex_wait_queue_me+0xe8 (0x67617c70)', 'x': 9544.259766, 'pop': 28 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x67617c70)', 'x': 9544.290284, 'pop': 14 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 9547.097901, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9547.281006, 'pop': 65 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9547.525147, 'pop': 21 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9552.163819, 'pop': 69 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9553.018311, 'pop': 56 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9553.109864, 'pop': 5 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9555.032471, 'pop': 57 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9555.337647, 'pop': 7 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9558.480957, 'pop': 31 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9558.755615, 'pop': 5 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9558.877686, 'pop': 46 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9559.365967, 'pop': 3 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9559.732178, 'pop': 4 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9560.58667, 'pop': 7 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9562.173584, 'pop': 8 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9562.417725, 'pop': 6 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9575.174072, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9575.692871, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9575.753907, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9575.906495, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9576.699952, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9577.279785, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9578.500489, 'pop': 2 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9578.653076, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9579.416016, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9579.660156, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9592.660645, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9606.790284, 'pop': 26 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9606.881836, 'pop': 27 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9607.003907, 'pop': 25 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9607.309082, 'pop': 26 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9607.797364, 'pop': 29 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9610.36084, 'pop': 30 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9610.666016, 'pop': 29 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9611.093262, 'pop': 3 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9612.527588, 'pop': 3 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9612.893799, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9625.192383, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9626.138428, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9626.229981, 'pop': 16 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9626.413086, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9626.718262, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9627.359131, 'pop': 13 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9628.76294, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9629.861572, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9630.166748, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9641.854981, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9642.709473, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9642.801026, 'pop': 13 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9642.953613, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9643.289307, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9644.021729, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9645.974854, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9646.218995, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9646.52417, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9646.798828, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9658.517578, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9659.433106, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9659.555176, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9659.738281, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9660.01294, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9660.531738, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9661.630371, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9662.790039, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9663.03418, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9675.180176, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9676.156738, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9676.248291, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9676.461914, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9676.797607, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9677.499512, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9679.116944, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9679.177979, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9679.239014, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9679.483155, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9691.812256, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9692.575195, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9692.697266, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9692.849854, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9693.15503, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9693.826416, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9695.596436, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9695.657471, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9695.749024, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 9695.840576, 'pop': 173 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9696.023682, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9708.474854, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9709.237793, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9709.298828, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9709.420899, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9709.695557, 'pop': 13 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 9710.305909, 'pop': 155 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9710.641602, 'pop': 14 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 9711.251953, 'pop': 14 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 9712.320069, 'pop': 189 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9712.93042, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9712.991455, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9713.083008, 'pop': 3 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9713.388184, 'pop': 3 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 9714.547852, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9725.167969, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9726.022461, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9726.114014, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9726.297119, 'pop': 12 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 9726.480225, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9726.66333, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9727.365235, 'pop': 13 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9728.67749, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9730.081299, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9730.32544, 'pop': 16 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 9744.149903, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9744.210938, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9744.30249, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9744.363526, 'pop': 14 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9744.485596, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9744.790772, 'pop': 13 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 9745.279053, 'pop': 1589 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9745.584229, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9748.08667, 'pop': 18 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9748.361328, 'pop': 17 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 9750.161866, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9758.493164, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9758.554199, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9758.615235, 'pop': 13 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9758.79834, 'pop': 9 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9759.134033, 'pop': 10 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9759.92749, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9761.666992, 'pop': 14 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9761.728027, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9762.155274, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9775.155762, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9775.216797, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9775.277832, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9775.43042, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9775.796631, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9776.4375, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9778.360107, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9778.390625, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9778.848389, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9791.94043, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9792.001465, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9792.0625, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9792.215088, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9792.520264, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9793.161133, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9795.419434, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9795.816162, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9808.45044, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9808.541992, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9808.603027, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9808.755615, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9809.549072, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9810.098389, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9812.204102, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9813.882569, 'pop': 17 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9825.143555, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9826.028565, 'pop': 15 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9826.120118, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9826.303223, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9826.669434, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9827.493409, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9829.690674, 'pop': 18 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9830.331543, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9841.806153, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9842.660645, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9842.752198, 'pop': 14 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9842.935303, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9843.270996, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9844.003418, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9845.926026, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9846.261719, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9858.46875, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9859.323242, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9859.414795, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9859.567383, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9859.933594, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9860.48291, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9862.069824, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9862.375, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9875.314453, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9876.229981, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9876.321533, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9876.504639, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9876.840332, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9879.556397, 'pop': 18 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9879.678467, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9882.364014, 'pop': 20 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9882.577637, 'pop': 19 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9891.885498, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9892.73999, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9892.862061, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9893.045166, 'pop': 9 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9893.411377, 'pop': 10 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9894.021729, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9896.249512, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9896.554688, 'pop': 13 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9908.639649, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9909.341553, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9909.433106, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9909.616211, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9909.921387, 'pop': 12 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 9910.470703, 'pop': 187 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9910.623291, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9911.630371, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9912.851075, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9913.186768, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9925.149658, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9926.065186, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9926.156738, 'pop': 13 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9926.370361, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9926.706055, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9927.407959, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9929.239014, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9929.330567, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9929.391602, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9929.696778, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9941.781738, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9942.849854, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9942.941407, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9943.124512, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9943.521241, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9944.16211, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9946.023682, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9946.084717, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9946.481446, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9958.474854, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9959.420899, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9959.512452, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9959.695557, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9960.03125, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9960.611084, 'pop': 13 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9961.831787, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9962.716797, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9962.991455, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9975.442627, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9976.205567, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9976.297119, 'pop': 13 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9976.480225, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9976.785401, 'pop': 13 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 9977.273682, 'pop': 62 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9977.639893, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9978.860596, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9980.081299, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9980.32544, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 9991.769532, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9992.074707, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 9992.196778, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 9992.440918, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 9992.807129, 'pop': 11 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 9993.356447, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 9995.218018, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 9995.279053, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 9995.370606, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 9995.614746, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10008.432129, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10008.706787, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10008.79834, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10008.950928, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10009.347656, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10009.866455, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10011.422852, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10011.69751, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10025.094727, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10025.369385, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10025.43042, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10025.583008, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10025.949219, 'pop': 13 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 10026.498535, 'pop': 45 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10026.620606, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10028.360107, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10028.665284, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10028.909424, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10041.81836, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10043.06958, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10043.161133, 'pop': 16 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10043.344238, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10043.679932, 'pop': 14 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10044.625977, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10054.574707, 'pop': 24 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10054.910401, 'pop': 24 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10058.45044, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10058.877686, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10058.969238, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10059.091309, 'pop': 3 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10059.274414, 'pop': 4 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10060.128907, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10061.715821, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10061.776856, 'pop': 6 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10061.868409, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10062.051514, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10075.113037, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10076.760987, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10076.822022, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10077.005127, 'pop': 14 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10077.340821, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10077.951172, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10079.965332, 'pop': 17 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10086.679199, 'pop': 23 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10091.775635, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10092.874268, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10093.515137, 'pop': 14 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10093.85083, 'pop': 6 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10094.61377, 'pop': 7 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10095.468262, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10098.977784, 'pop': 19 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10099.313477, 'pop': 18 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10108.438233, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10109.445313, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10109.536866, 'pop': 14 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10109.719971, 'pop': 9 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10114.602784, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10115.27417, 'pop': 19 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10116.830567, 'pop': 20 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10116.952637, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10117.013672, 'pop': 6 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10117.898682, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10125.161866, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10125.955323, 'pop': 8 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10126.077393, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10126.260498, 'pop': 7 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10126.443604, 'pop': 8 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10126.99292, 'pop': 9 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10129.098633, 'pop': 11 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10129.800537, 'pop': 11 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10141.763428, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10141.824463, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10141.916016, 'pop': 14 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10142.068604, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10142.923096, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10143.655518, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10146.127442, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10147.042969, 'pop': 18 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10147.317627, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10158.426026, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10159.341553, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10159.402588, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10159.585693, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10159.677246, 'pop': 11 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10160.287598, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10162.210205, 'pop': 17 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10162.484864, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10175.149658, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10176.248291, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10176.370361, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10176.583984, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10177.713135, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10178.292969, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10180.001953, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10180.032471, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10180.124024, 'pop': 3 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10180.978516, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10191.781738, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10191.873291, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10191.934326, 'pop': 14 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10192.086914, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10192.300537, 'pop': 10 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10193.368653, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10195.352295, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10195.626953, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10208.413819, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10209.359864, 'pop': 15 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10209.451416, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10209.634522, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10209.939698, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10210.519532, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10212.350586, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10212.594727, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10225.106934, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10225.930909, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10226.022461, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10226.175049, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10226.510742, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10226.999024, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10228.585938, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10228.616455, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10228.860596, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10242.562989, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10242.746094, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10242.837647, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10242.990235, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10243.356446, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10243.966797, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10245.340088, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10246.469238, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10246.774414, 'pop': 17 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10258.401612, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10259.469727, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10259.56128, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10259.744385, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10260.110596, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10260.720947, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10262.643555, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10262.70459, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10262.765625, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10263.131836, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10275.125244, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10276.19336, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10276.284912, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10276.4375, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10276.803711, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10277.414063, 'pop': 13 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10278.909424, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10279.916504, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10280.09961, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10291.757324, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10292.916992, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10293.008545, 'pop': 13 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10293.161133, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10293.527344, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10294.412354, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10296.334961, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10296.365479, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10296.426514, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10296.670655, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10308.389404, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10308.511475, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10308.57251, 'pop': 14 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10308.725098, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10309.060791, 'pop': 11 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10309.640625, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10311.59375, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10311.837891, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10325.08252, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10325.20459, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10325.265625, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10325.448731, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10325.784424, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10326.394776, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10328.286866, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10328.317383, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10328.683594, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10341.745118, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10343.118409, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10343.179444, 'pop': 16 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10343.362549, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10343.72876, 'pop': 14 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10344.278076, 'pop': 14 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 10346.261719, 'pop': 302 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10346.475342, 'pop': 17 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10347.055176, 'pop': 17 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10358.407715, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10359.628418, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10359.689453, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10359.842041, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10359.933594, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10360.543946, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10362.375, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10362.405518, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10362.466553, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10362.710693, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10375.10083, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10375.222901, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10375.436524, 'pop': 14 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10375.558594, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10375.894287, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10376.504639, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10378.305176, 'pop': 14 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10378.518799, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10391.702393, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10392.831543, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10392.923096, 'pop': 16 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10393.075684, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10393.197754, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10393.777588, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10395.39502, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10395.425537, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10395.51709, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10396.035889, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10396.127442, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10408.395508, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10408.517578, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10408.609131, 'pop': 14 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10408.761719, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10409.097412, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10409.677246, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10411.477784, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10411.752442, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10425.058106, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10426.217774, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10426.309326, 'pop': 16 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10426.522949, 'pop': 14 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10426.858643, 'pop': 14 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10427.6521, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10429.66626, 'pop': 18 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10430.001953, 'pop': 17 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10441.720703, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10441.842774, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10441.964844, 'pop': 14 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10442.819336, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10443.093995, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10443.734864, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10446.29834, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10446.634033, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10459.237793, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10459.390381, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10459.481934, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10459.695557, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10459.90918, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10460.550049, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10463.845947, 'pop': 18 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10464.242676, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10475.045899, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10475.167969, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10475.290039, 'pop': 14 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10475.473145, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10475.869873, 'pop': 11 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10476.54126, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10478.402832, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10478.646973, 'pop': 13 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10491.739014, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10491.830567, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10491.922119, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10492.074707, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10492.379883, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10492.959717, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10495.980957, 'pop': 18 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10496.499756, 'pop': 17 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10508.371094, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10508.493164, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10508.554199, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10508.706787, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10508.981446, 'pop': 11 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10509.530762, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10511.514404, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10511.69751, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10525.918701, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10526.162842, 'pop': 15 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10526.254395, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10526.406983, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10526.712158, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10527.261475, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10529.397705, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10529.977539, 'pop': 17 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10541.696289, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10541.848877, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10541.909912, 'pop': 13 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10542.0625, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10542.367676, 'pop': 11 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10542.94751, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10544.96167, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10545.297364, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10558.358887, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10558.419922, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10558.480957, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10558.633545, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10558.938721, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10559.549072, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10561.715821, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10562.020996, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10575.052002, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10575.113037, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10575.174072, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10575.32666, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10575.540284, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10576.120118, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10578.531006, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10579.049805, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10591.7146, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10591.775635, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10591.83667, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10591.989258, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10592.324952, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10592.904785, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10594.888428, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10595.193604, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10608.377198, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10608.621338, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10608.682373, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10608.865479, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10609.384278, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10609.842041, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10611.551026, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10611.825684, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10625.009278, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10625.070313, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10625.10083, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10625.222901, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10625.467041, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10626.016358, 'pop': 15 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 10626.229981, 'pop': 266 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10627.816895, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10628.152588, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10641.702393, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10641.824463, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10641.885498, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10642.068604, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10642.373779, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10642.984131, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10645.181397, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10645.578125, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10646.188477, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10658.395508, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10659.341553, 'pop': 15 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10661.538819, 'pop': 18 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10661.752442, 'pop': 15 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10662.088135, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10662.759522, 'pop': 19 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10664.071778, 'pop': 4 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10666.146973, 'pop': 20 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10666.452149, 'pop': 19 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10675.058106, 'pop': 10 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10675.363281, 'pop': 10 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10675.454834, 'pop': 10 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10675.63794, 'pop': 8 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10676.095703, 'pop': 7 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10676.675537, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10678.994873, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10679.208496, 'pop': 12 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10692.758301, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10693.002442, 'pop': 15 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10693.093995, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10693.2771, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10693.39917, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10694.314698, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10696.634033, 'pop': 18 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10697.000244, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10708.413819, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10709.695557, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10709.78711, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10709.970215, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10710.244873, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10710.855225, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10712.991455, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10713.205078, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10725.015381, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10726.266602, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10726.358155, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10726.54126, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10726.907471, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10727.456787, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10729.531983, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10729.867676, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10742.685059, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10743.478516, 'pop': 15 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10743.539551, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10743.722656, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10744.027832, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10745.06543, 'pop': 17 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10746.896484, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10748.300293, 'pop': 17 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10759.347656, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10759.652832, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10759.713867, 'pop': 14 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10759.866455, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10759.958008, 'pop': 11 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10760.751465, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10762.460449, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10762.979248, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10775.979736, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10776.254395, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10776.31543, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10776.498535, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10776.773193, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10777.291992, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10779.733399, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10780.069092, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10791.665772, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10792.794922, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10792.886475, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10793.06958, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10793.710449, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10795.419434, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10798.684815, 'pop': 20 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10798.98999, 'pop': 18 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10808.328369, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10809.488037, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10809.57959, 'pop': 14 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10809.732178, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10809.945801, 'pop': 10 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10811.044434, 'pop': 15 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 10811.502198, 'pop': 175 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10813.272217, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10814.157227, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10824.990967, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10826.303223, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10826.394776, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10826.547364, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10826.822022, 'pop': 11 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10827.859619, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10830.850342, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10831.125, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10841.684082, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10843.087891, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10843.454102, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10843.60669, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10843.911866, 'pop': 11 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10844.674805, 'pop': 16 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 10845.041016, 'pop': 30 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10846.444824, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10846.50586, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10846.566895, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10848.947266, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10858.34668, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10859.567383, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10859.658936, 'pop': 14 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10859.811524, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10860.421875, 'pop': 10 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 10860.849121, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10861.673096, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10863.839844, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10864.206055, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10875.009278, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10876.504639, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10877.176026, 'pop': 14 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10877.359131, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10877.694824, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10878.274658, 'pop': 16 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 10882.882813, 'pop': 20 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10883.706787, 'pop': 18 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10884.011963, 'pop': 19 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10891.641358, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10892.862061, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10892.923096, 'pop': 13 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10893.106201, 'pop': 8 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10893.411377, 'pop': 8 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10893.991211, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10895.486572, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10898.111084, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10898.41626, 'pop': 13 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10908.303955, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10909.463623, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10909.555176, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10909.890869, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10910.196045, 'pop': 11 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10910.653809, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10912.606934, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10912.91211, 'pop': 13 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10924.966553, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10926.095703, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10926.156738, 'pop': 14 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10926.309326, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10926.614502, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10927.53003, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10929.605225, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10929.910401, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10941.62915, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10942.849854, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10942.941407, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10943.093995, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10943.39917, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10944.070557, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10945.840576, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10946.145752, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10959.146241, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10959.451416, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10959.542969, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10959.695557, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10959.970215, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10960.824707, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10963.235596, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10963.571289, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10975.869873, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10976.144532, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10976.205567, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10976.358155, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10976.632813, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10977.456787, 'pop': 16 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 10977.639893, 'pop': 90 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10979.5625, 'pop': 17 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 10979.867676, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 10991.647461, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 10992.685059, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 10992.746094, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 10992.868164, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 10993.142823, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 10993.783692, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 10995.523193, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 10995.797852, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11008.310059, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11009.378174, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11009.439209, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11009.56128, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11010.080078, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11010.995606, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11013.223389, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11013.528565, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11025.796631, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11025.888184, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11025.979736, 'pop': 14 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11026.132324, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11026.223877, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11026.803711, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11028.482178, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11028.909424, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11033.822754, 'pop': 6 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11041.635254, 'pop': 7 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11041.909912, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11041.970947, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11042.154053, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11042.581299, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11043.06958, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11044.992188, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11045.449952, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11058.328369, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11059.915284, 'pop': 15 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11060.006836, 'pop': 16 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11060.159424, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11060.495118, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11061.227539, 'pop': 17 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11062.387207, 'pop': 2 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11062.570313, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11064.065674, 'pop': 18 },
{'key': '2755: Binder_3 :: binder_ioctl+0xd8 (0x1f)', 'x': 11066.354492, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11066.50708, 'pop': 20 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11074.990967, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11076.333741, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11076.394776, 'pop': 13 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11076.608399, 'pop': 9 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11076.944092, 'pop': 9 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11077.829102, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11079.416016, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11079.477051, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11079.782227, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11091.653565, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11093.148926, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11093.240479, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11093.423584, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11093.698242, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11094.369629, 'pop': 13 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11095.834473, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11096.841553, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11097.116211, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11108.407715, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11109.872559, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11109.964112, 'pop': 13 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11110.116699, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11110.269287, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11111.123779, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11113.046387, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11113.107422, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11113.168457, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11113.565186, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11124.948242, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11126.168946, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11126.352051, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11126.504639, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11126.748779, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11127.267578, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11129.037598, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11129.281738, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11141.641358, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11141.73291, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11141.916016, 'pop': 13 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11142.038086, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11142.373779, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11143.014649, 'pop': 15 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 11143.167236, 'pop': 156 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11144.906738, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11145.242432, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11146.218995, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11158.303955, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11159.555176, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11159.616211, 'pop': 16 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11159.768799, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11160.165527, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11160.745361, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11163.400391, 'pop': 19 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11163.705567, 'pop': 17 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11174.99707, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11175.058106, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11175.180176, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11175.332764, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11175.63794, 'pop': 11 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11176.553467, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11178.65918, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11178.964356, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11191.62915, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11191.720703, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11191.781738, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11191.934326, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11192.239502, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11193.216065, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11194.955567, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11195.016602, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11195.077637, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11195.901612, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11208.627442, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11209.085205, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11209.176758, 'pop': 16 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11209.512452, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11209.939698, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11210.458496, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11212.228516, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11212.289551, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11212.381104, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11212.777832, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11224.954346, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11225.229004, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11225.320557, 'pop': 14 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11225.473145, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11225.839356, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11226.41919, 'pop': 13 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 11226.907471, 'pop': 79 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11228.31128, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11228.585938, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11228.67749, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11228.921631, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11241.647461, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11242.654541, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11242.746094, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11242.929199, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11243.264893, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11243.875244, 'pop': 14 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 11244.729736, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11245.340088, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11246.011475, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11246.31665, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11258.340576, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11258.432129, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11258.493164, 'pop': 12 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11258.67627, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11258.859375, 'pop': 11 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11263.131836, 'pop': 18 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11263.284424, 'pop': 3 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11265.237549, 'pop': 20 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11265.542725, 'pop': 18 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11274.972656, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11275.918701, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11276.010254, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11276.19336, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11276.254395, 'pop': 10 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11277.44458, 'pop': 17 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11278.695801, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11279.733399, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11280.008057, 'pop': 13 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11291.665772, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11292.489746, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11292.581299, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11292.764404, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11293.100098, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11293.710449, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11295.877198, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11296.151856, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11308.297852, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11309.213379, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11309.335449, 'pop': 14 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11309.488037, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11309.854248, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11310.373047, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11311.807373, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11312.753418, 'pop': 18 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11313.028076, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11324.929932, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11325.021484, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11325.08252, 'pop': 12 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11325.20459, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11325.692871, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11326.455811, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11328.042725, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11328.22583, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11341.59253, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11341.684082, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11341.745118, 'pop': 14 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11341.897705, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11342.202881, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11342.782715, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11344.552735, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11344.61377, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11345.010498, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11358.255127, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11358.34668, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11358.377198, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11358.529785, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11358.834961, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11359.414795, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11361.154297, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11361.459473, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11374.948242, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11375.253418, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11375.375489, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11375.558594, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11375.894287, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11376.474121, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11378.244141, 'pop': 17 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11378.244142, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11378.305176, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11378.549317, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11391.61084, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11392.73999, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11392.801026, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11392.953613, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11393.38086, 'pop': 14 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 11393.808106, 'pop': 141 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11393.930176, 'pop': 14 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11396.066407, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11396.218995, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11396.4021, 'pop': 17 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11408.273438, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11408.517578, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11408.639649, 'pop': 14 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11408.792236, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11409.25, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11409.768799, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11411.294678, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11411.599854, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11424.905518, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11425.973633, 'pop': 15 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11426.034668, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11426.187256, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11426.492432, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11427.102784, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11428.78125, 'pop': 18 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11428.811768, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11428.903321, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11429.208496, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11441.598633, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11442.910889, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11442.971924, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11443.15503, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11443.2771, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11443.826416, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11445.535401, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11445.596436, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11445.657471, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11445.871094, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11459.085205, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11459.481934, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11459.573487, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11459.756592, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11460.061768, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11460.641602, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11462.320069, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11462.381104, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11462.442139, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11462.68628, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11475.106934, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11475.473145, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11475.564698, 'pop': 14 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11475.717285, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11476.052979, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11476.66333, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11478.55542, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11478.616455, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11479.043701, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11491.616944, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11491.769532, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11491.922119, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11492.04419, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11492.410401, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11493.020752, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11494.821289, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11494.912842, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11495.370606, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11508.279541, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11508.432129, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11508.523682, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11508.67627, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11509.011963, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11509.622315, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11511.483887, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11511.514404, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11511.81958, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11524.942139, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11525.094727, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11525.18628, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11525.30835, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11525.644043, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11526.406983, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11528.20752, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11528.512695, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11541.604736, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11541.787842, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11541.848877, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11542.001465, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11542.337158, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11542.94751, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11545.327881, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11545.84668, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11558.297852, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11558.45044, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11558.511475, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11558.664063, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11558.999756, 'pop': 12 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 11559.549072, 'pop': 157 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11559.640625, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11562.082032, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11562.35669, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11574.899414, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11575.052002, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11575.113037, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11575.265625, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11575.692871, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11576.455811, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11578.378418, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11578.439453, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11578.927735, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11591.562012, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11591.7146, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11591.775635, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11591.928223, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11592.263916, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11593.301514, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11595.529297, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11596.200684, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11608.22461, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11609.262207, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11609.384278, 'pop': 16 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11609.567383, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11609.933594, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11610.421875, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11612.375, 'pop': 17 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11612.924317, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11624.887207, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11625.039795, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11625.131348, 'pop': 14 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11625.283936, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11626.046875, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11626.626709, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11627.938965, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11628.88501, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11629.159668, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11641.61084, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11641.763428, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11641.854981, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11641.977051, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11642.312744, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11642.923096, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11644.815186, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11644.876221, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11645.272949, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11658.24292, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11658.395508, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11658.487061, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11658.609131, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11658.944824, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11659.555176, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11661.416748, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11661.477784, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11661.843995, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11674.905518, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11675.058106, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11675.241211, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11675.454834, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11675.76001, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11676.828125, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11677.377442, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11681.68042, 'pop': 19 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11681.955078, 'pop': 19 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11691.568115, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11691.720703, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11692.27002, 'pop': 14 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11692.422607, 'pop': 9 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11692.727784, 'pop': 10 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11693.307618, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11695.199707, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11695.260742, 'pop': 12 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11696.42041, 'pop': 4 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11698.43457, 'pop': 5 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11708.291748, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11708.474854, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11708.566407, 'pop': 11 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11708.718995, 'pop': 9 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11709.054688, 'pop': 10 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11709.665039, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11711.343506, 'pop': 14 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11711.404541, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11711.770752, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11724.893311, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11725.076416, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11725.137452, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11725.259522, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11725.65625, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11726.236084, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11727.975586, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11728.036621, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11728.128174, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11728.402832, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11741.555909, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11741.830567, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11741.922119, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11742.04419, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11742.410401, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11743.020752, 'pop': 14 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11744.729736, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11744.790772, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11745.156983, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11762.613037, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11762.765625, 'pop': 16 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11762.857178, 'pop': 19 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11763.040284, 'pop': 16 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11763.375977, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11764.016846, 'pop': 18 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11765.786866, 'pop': 19 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11765.847901, 'pop': 19 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11766.214112, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11774.881104, 'pop': 8 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11775.033692, 'pop': 8 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11775.125244, 'pop': 11 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11775.247315, 'pop': 8 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11775.583008, 'pop': 8 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11776.19336, 'pop': 9 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11780.557373, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11780.832032, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11791.543701, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11791.726807, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11791.787842, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11791.94043, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11792.276123, 'pop': 10 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11792.855957, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11798.684815, 'pop': 19 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11798.959473, 'pop': 17 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11808.236817, 'pop': 9 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11808.389404, 'pop': 9 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11808.480957, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11808.633545, 'pop': 9 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11808.969238, 'pop': 9 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11809.57959, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11811.776856, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11812.112549, 'pop': 12 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11824.899414, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11825.692871, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11825.784424, 'pop': 16 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11825.96753, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11826.364258, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11827.005127, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11828.98877, 'pop': 18 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11829.080323, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11829.507569, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11841.562012, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11841.7146, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11841.806153, 'pop': 14 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11841.958741, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11842.294434, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11842.874268, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11844.766358, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11844.827393, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11845.102051, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11858.255127, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11858.438233, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11858.499268, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11858.651856, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11858.987549, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11859.597901, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11861.459473, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11861.520508, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11862.008789, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11874.887207, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11875.070313, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11875.161866, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11875.283936, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11875.619629, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11876.291016, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11878.12207, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11878.183106, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11878.244141, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11878.549317, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11891.549805, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11891.702393, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11891.793946, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11891.946533, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11892.282227, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11892.892578, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11894.937256, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11894.998291, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11895.39502, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11908.212403, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11909.402588, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11909.524658, 'pop': 16 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11909.707764, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11910.043457, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11910.592774, 'pop': 14 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11912.545899, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11912.820557, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11925.149658, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11925.302246, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11925.393799, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11925.546387, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11925.88208, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11926.522949, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11928.750733, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11929.239014, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11941.537598, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11941.720703, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11941.781738, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11941.934326, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11942.27002, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11943.032959, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11944.894532, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11944.955567, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11945.047119, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11945.29126, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11958.291748, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11958.474854, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11958.596924, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11958.749512, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11959.085205, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11959.756592, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11961.740235, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11961.80127, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11972.024658, 'pop': 12 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11974.954346, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11975.106934, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11975.198487, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11975.320557, 'pop': 2 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11975.65625, 'pop': 3 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11976.297119, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11978.250244, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11978.31128, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11978.769043, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 11991.800049, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 11991.952637, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 11992.04419, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 11992.196778, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 11992.532471, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 11993.142823, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 11994.973877, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 11995.034912, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 11995.462158, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12008.218506, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12008.371094, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12008.432129, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12008.584717, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12008.92041, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12009.530762, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12011.789063, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12012.124756, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12025.338867, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12025.491455, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12025.583008, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12025.705078, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12026.040772, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12026.651123, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12028.970459, 'pop': 18 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12029.245118, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12041.543701, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12041.726807, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12042.001465, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12042.215088, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12042.82544, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12043.557861, 'pop': 14 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12045.999268, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12046.273926, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12058.206299, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12059.671143, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12059.732178, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12059.945801, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12060.312012, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12061.013916, 'pop': 17 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12063.150147, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12063.516358, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12074.838379, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12074.990967, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12075.08252, 'pop': 14 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12075.235107, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12075.540284, 'pop': 11 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12076.150635, 'pop': 14 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 12076.181153, 'pop': 492 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12077.98169, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12078.073242, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12078.317383, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12078.531006, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12091.500977, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12091.653565, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12091.745118, 'pop': 12 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12091.867188, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12092.202881, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12092.84375, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12094.61377, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12094.674805, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12095.102051, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12108.163575, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12108.34668, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12108.407715, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12108.560303, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12108.926514, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12109.628418, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12111.551026, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12111.581543, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12112.344483, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12124.85669, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12125.070313, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12125.161866, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12125.283936, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12125.619629, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12126.260498, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12128.183106, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12128.244141, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12128.701904, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12141.641358, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12142.526367, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12142.648438, 'pop': 16 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12142.831543, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12143.167236, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12143.716553, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12145.51709, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12145.578125, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12146.127442, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12158.151367, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12158.36499, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12158.456543, 'pop': 14 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12158.609131, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12158.975342, 'pop': 12 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 12159.585693, 'pop': 77 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12159.646729, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12161.26416, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12162.698487, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12174.844483, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12175.790527, 'pop': 15 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12175.88208, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12176.126221, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12176.461914, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12176.950195, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12179.177979, 'pop': 18 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12179.452637, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12191.50708, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12191.751221, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12191.812256, 'pop': 14 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12191.995361, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12192.361572, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12193.093995, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12194.894532, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12194.955567, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12195.016602, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12195.199707, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12208.169678, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12208.444336, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12208.505371, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12208.688477, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12209.02417, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12209.665039, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12211.465576, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12211.557129, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12211.92334, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12224.832276, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12225.045899, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12225.137452, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12225.290039, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12225.625733, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12226.510742, 'pop': 14 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12228.43335, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12228.433351, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12228.708008, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12241.494873, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12241.769532, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12241.952637, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12242.135742, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12242.471436, 'pop': 13 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 12242.990235, 'pop': 79 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12243.142823, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12244.027832, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12246.255615, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12246.591309, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12258.157471, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12258.371094, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12258.432129, 'pop': 13 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12258.767823, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12259.072998, 'pop': 11 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12259.652832, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12261.270264, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12261.331299, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12261.514404, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12261.57544, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12274.850586, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12275.094727, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12275.155762, 'pop': 12 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12275.338867, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12275.705078, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12276.31543, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12278.085449, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12278.146484, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12278.726319, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12291.513184, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12291.726807, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12291.787842, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12291.970947, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12292.337158, 'pop': 12 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 12293.19165, 'pop': 47 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12293.283203, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12295.419434, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12295.755127, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12308.175781, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12309.274414, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12309.335449, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12309.518555, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12309.884766, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12310.434082, 'pop': 17 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12311.59375, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12312.448242, 'pop': 17 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12312.692383, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12324.899414, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12325.113037, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12325.753907, 'pop': 13 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12325.937012, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12326.272705, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12326.822022, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12328.134278, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12329.416016, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12329.721192, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12341.500977, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12341.775635, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12341.83667, 'pop': 13 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12342.019776, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12342.355469, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12343.72876, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12346.933106, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12347.268799, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12358.163575, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12359.292725, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12359.384278, 'pop': 16 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12359.536866, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12359.872559, 'pop': 11 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 12360.543946, 'pop': 64 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12360.666016, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12361.917236, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12362.863281, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12363.107422, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12374.795655, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12376.077393, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12376.168946, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12376.321533, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12376.687744, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12377.267578, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12378.335693, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12379.739502, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12380.01416, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12391.48877, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12391.702393, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12391.763428, 'pop': 12 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12391.916016, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12392.221192, 'pop': 11 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12393.045166, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12394.937256, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12395.242432, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12408.151367, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12408.303955, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12408.395508, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12408.548096, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12408.883789, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12409.494141, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12411.752442, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12413.217285, 'pop': 17 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12424.813965, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12424.966553, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12425.058106, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12425.210693, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12425.546387, 'pop': 11 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12426.248291, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12427.835205, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12428.109864, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12441.50708, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12441.659668, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12441.781738, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12441.934326, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12442.300537, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12446.054199, 'pop': 19 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12447.763184, 'pop': 20 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12447.824219, 'pop': 18 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12447.915772, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12448.159912, 'pop': 5 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12458.13916, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12458.322266, 'pop': 9 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12458.444336, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12458.871582, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12459.207276, 'pop': 10 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12459.848145, 'pop': 11 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12462.777832, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12463.144043, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12474.801758, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12474.954346, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12475.045899, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12475.167969, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12475.503662, 'pop': 11 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12476.114014, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12477.945069, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12479.165772, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12491.464356, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12492.624024, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12492.685059, 'pop': 16 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12492.868164, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12493.234375, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12493.783692, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12495.431641, 'pop': 18 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12495.736817, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12508.126953, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12508.310059, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12508.371094, 'pop': 14 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12508.523682, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12508.859375, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12509.469727, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12511.361817, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12511.422852, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12513.101319, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12524.789551, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12524.942139, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12525.003174, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12525.155762, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12525.491455, 'pop': 11 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12526.071289, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12527.932861, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12527.993897, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12533.12085, 'pop': 7 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12541.452149, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12541.635254, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12541.757324, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12542.093018, 'pop': 8 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12542.764404, 'pop': 9 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12543.405274, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12545.602539, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12545.816162, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12560.434082, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12562.661866, 'pop': 17 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12562.722901, 'pop': 19 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12562.875489, 'pop': 16 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12562.997559, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12563.668946, 'pop': 19 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12565.896729, 'pop': 20 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12566.26294, 'pop': 19 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12574.807861, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12583.444336, 'pop': 18 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12583.535889, 'pop': 19 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12583.688477, 'pop': 16 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12583.993653, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12584.481934, 'pop': 20 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12586.465576, 'pop': 19 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12586.770752, 'pop': 19 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12596.597412, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12596.75, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12597.482422, 'pop': 12 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12597.970703, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12598.367432, 'pop': 10 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 12599.008301, 'pop': 227 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12599.069336, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12601.327637, 'pop': 14 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12601.632813, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12608.102539, 'pop': 8 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12608.255127, 'pop': 8 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12608.34668, 'pop': 9 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12608.46875, 'pop': 6 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12608.804444, 'pop': 6 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12609.384278, 'pop': 10 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12611.551026, 'pop': 9 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12611.947754, 'pop': 9 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12624.795655, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12624.917725, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12625.070313, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12625.222901, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12625.558594, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12626.168946, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12627.969483, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12628.061035, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12628.579834, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12641.458252, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12641.824463, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12641.916016, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12642.068604, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12642.404297, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12643.045166, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12644.784668, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12644.845703, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12647.561768, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12647.805909, 'pop': 5 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12658.12085, 'pop': 9 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12658.303955, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12658.395508, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12658.517578, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12658.853272, 'pop': 10 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12659.524658, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12661.721924, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12661.966065, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12674.783447, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12674.966553, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12675.119141, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12675.454834, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12675.912598, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12676.553467, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12678.872803, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12679.208496, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12691.446045, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12691.598633, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12691.751221, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12691.903809, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12692.208984, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12694.467285, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12696.389893, 'pop': 18 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12696.450928, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12696.542481, 'pop': 3 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12698.06836, 'pop': 5 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12708.108643, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12708.322266, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12708.474854, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12708.627442, 'pop': 9 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12708.963135, 'pop': 10 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12709.573487, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12713.357666, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12713.632324, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12724.771241, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12734.964112, 'pop': 24 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12735.025147, 'pop': 24 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12735.177735, 'pop': 20 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12735.48291, 'pop': 20 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12736.032227, 'pop': 25 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12738.168457, 'pop': 23 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12738.229492, 'pop': 23 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12738.321045, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12738.565186, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12741.433838, 'pop': 5 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12741.677979, 'pop': 2 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12741.739014, 'pop': 6 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12741.922119, 'pop': 3 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12742.227295, 'pop': 3 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12742.807129, 'pop': 4 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12745.767334, 'pop': 6 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12746.133545, 'pop': 7 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12758.126953, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12758.371094, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12758.432129, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12758.584717, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12758.92041, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12759.56128, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12761.422852, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12761.483887, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12761.972168, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12774.820069, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12776.223877, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12776.31543, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12776.498535, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12776.864746, 'pop': 14 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12777.414063, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12782.846192, 'pop': 20 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12783.12085, 'pop': 20 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12791.452149, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12791.574219, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12791.635254, 'pop': 14 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12791.787842, 'pop': 8 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12792.123535, 'pop': 8 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12792.82544, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12794.351319, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12795.633057, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12795.877198, 'pop': 12 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12808.084229, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12808.206299, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12808.297852, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12808.419922, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12808.725098, 'pop': 12 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 12809.091309, 'pop': 200 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12809.304932, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12812.783936, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12813.119629, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12824.746826, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12824.868897, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12824.929932, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12825.08252, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12825.937012, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12826.547364, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12828.622559, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12828.897217, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12841.409424, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12841.500977, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12841.59253, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12841.745118, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12842.111328, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12842.660645, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12844.827393, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12845.132569, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12859.506348, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12859.628418, 'pop': 15 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12859.750489, 'pop': 16 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12859.903076, 'pop': 14 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12860.299805, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12861.001709, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12863.931397, 'pop': 18 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12864.297607, 'pop': 18 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12874.917725, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12875.131348, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12875.222901, 'pop': 14 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12875.406006, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12875.802735, 'pop': 10 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12876.657227, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12878.427246, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12880.380371, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12891.397217, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12891.641358, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12891.702393, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12891.885498, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12892.221192, 'pop': 11 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12892.862061, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12894.63208, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12894.693115, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12894.75415, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12895.578125, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12896.157959, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12908.090332, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12909.158447, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12909.219483, 'pop': 16 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12909.402588, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12909.707764, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12910.25708, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12913.217285, 'pop': 17 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12914.560059, 'pop': 18 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12924.75293, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12924.966553, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12925.058106, 'pop': 13 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12925.210693, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12925.546387, 'pop': 10 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12926.248291, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12928.445557, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12928.720215, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12941.38501, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12942.758301, 'pop': 15 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12942.849854, 'pop': 16 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12943.032959, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12943.124512, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12943.673828, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12945.779541, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12946.359375, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12958.047607, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12959.420899, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12959.512452, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12959.726075, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12960.092285, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12960.611084, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12962.625244, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12962.625245, 'pop': 17 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12962.655762, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 12962.899903, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12974.801758, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12974.984864, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12975.045899, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12975.198487, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12975.53418, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 12976.083496, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 12977.975586, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 12978.43335, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 12991.403321, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 12991.555909, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 12991.616944, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 12991.769532, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 12992.105225, 'pop': 12 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 13008.065918, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 13009.225586, 'pop': 15 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 13009.286621, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 13024.759033, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 13025.460938, 'pop': 15 },
{'key': '3641: GC :: futex_wait_queue_me+0xe8 (0x41d5acf8)', 'x': 13040.04834, 'pop': 4768 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 13065.37793, 'pop': 38 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 13146.218995, 'pop': 76 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 13396.615723, 'pop': 238 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 13646.127442, 'pop': 237 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 13896.28003, 'pop': 238 },
{'key': '3655: Timer-0 :: futex_wait_queue_me+0xe8 (0x6761d0c0)', 'x': 13954.904297, 'pop': 10490 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 13955.026367, 'pop': 917 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 13955.301026, 'pop': 1090 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 13955.362061, 'pop': 934 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 13957.101563, 'pop': 888 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 13957.89502, 'pop': 58 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 13958.383301, 'pop': 936 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 13960.366944, 'pop': 936 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 13961.953858, 'pop': 3 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 13962.289551, 'pop': 925 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 13974.588135, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 13974.710205, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 13974.771241, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 13974.801758, 'pop': 920 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 13975.137452, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 13977.822998, 'pop': 18 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 13977.975586, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 13978.097656, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 13993.356446, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 13993.478516, 'pop': 14 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 13993.570069, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 13993.57007, 'pop': 17 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 13995.401123, 'pop': 36 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 13995.523193, 'pop': 31 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 13998.269776, 'pop': 21 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 13998.391846, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 13998.544434, 'pop': 19 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14007.974366, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14008.126953, 'pop': 9 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14008.371094, 'pop': 8 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14008.371095, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14008.859375, 'pop': 29 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14013.925293, 'pop': 17 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14014.108399, 'pop': 4 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14014.352539, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14024.606446, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14024.728516, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14024.789551, 'pop': 9 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14024.789552, 'pop': 14 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14025.55249, 'pop': 25 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14027.56665, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14027.627686, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14027.719238, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14028.054932, 'pop': 12 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14041.269043, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14041.391113, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14041.452149, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14041.45215, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14042.276123, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14044.320801, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14044.412354, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14044.656495, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14057.931641, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14058.053711, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14058.114746, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14058.145264, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14058.877686, 'pop': 29 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14061.227539, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14061.380127, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14061.532715, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14074.624756, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14074.899414, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14074.990967, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14074.990968, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14075.387695, 'pop': 29 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14078.042725, 'pop': 18 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14078.164795, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14078.378418, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14091.928223, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14092.080811, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14092.141846, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14092.172364, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14092.569092, 'pop': 29 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14095.132569, 'pop': 17 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14095.285156, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14095.498779, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14107.980469, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14108.255127, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14108.316162, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14108.34668, 'pop': 14 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14108.743409, 'pop': 28 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14111.48999, 'pop': 17 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14111.673096, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14111.886719, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14124.673584, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14124.917725, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14125.009278, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14125.009279, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14126.321533, 'pop': 29 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14128.976563, 'pop': 18 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14129.098633, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14129.281738, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14141.275147, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14141.519287, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14141.580323, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14141.61084, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14141.977051, 'pop': 28 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14145.028809, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14145.150879, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14145.425537, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14146.218995, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14157.907227, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14158.212403, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14158.273438, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14158.273439, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14159.524658, 'pop': 28 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14160.501221, 'pop': 155 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14160.867432, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14162.14917, 'pop': 4203 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 14162.759522, 'pop': 4240 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14165.719727, 'pop': 19 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14165.81128, 'pop': 2 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14165.872315, 'pop': 4 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14166.085938, 'pop': 4 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 14166.146973, 'pop': 4177 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14166.17749, 'pop': 19 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 14166.757324, 'pop': 4215 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14169.534424, 'pop': 3 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 14169.778565, 'pop': 4180 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14177.102784, 'pop': 17 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14177.224854, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14177.285889, 'pop': 9 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14177.316407, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14177.743653, 'pop': 30 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14178.323487, 'pop': 8 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14179.483155, 'pop': 2 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x67617c6c)', 'x': 14186.135987, 'pop': 17 },
{'key': '3637: com.amazon.sics.example :: futex_wait_queue_me+0xe8 (0x67617c6c)', 'x': 14186.166504, 'pop': 7 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14189.981201, 'pop': 27 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14190.103272, 'pop': 10 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14190.438965, 'pop': 23 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14191.293457, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14191.690186, 'pop': 11 },
{'key': '3653: SICS_SHARED_OVE :: futex_wait_queue_me+0xe8 (0x675fe5f8)', 'x': 14192.208984, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14192.51416, 'pop': 24 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 14193.368653, 'pop': 6 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14193.673828, 'pop': 24 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 14193.979004, 'pop': 23 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14197.335938, 'pop': 17 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14197.488526, 'pop': 4 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14197.946289, 'pop': 3 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14198.037842, 'pop': 7 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14208.169678, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14209.359864, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14209.573487, 'pop': 10 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14209.604004, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14209.970215, 'pop': 18 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14211.862305, 'pop': 18 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14212.259033, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14212.289551, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14212.442139, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14213.540772, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14224.557618, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14224.862793, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14224.923828, 'pop': 10 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14224.923829, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14225.65625, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14227.487305, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14227.609375, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14227.700928, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14227.975586, 'pop': 13 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14241.708496, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14241.830567, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14241.891602, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14241.891603, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14242.318848, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14244.851807, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14245.004395, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14245.218018, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14257.943848, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14258.218506, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14258.310059, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14258.31006, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14259.530762, 'pop': 29 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14261.605957, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14261.972168, 'pop': 15 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14273.355225, 'pop': 70 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14273.507813, 'pop': 10 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14274.575928, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14274.697998, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14274.789551, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14275.125244, 'pop': 28 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14277.139404, 'pop': 78 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14277.841309, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14277.993897, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14278.20752, 'pop': 15 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14287.14917, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14287.301758, 'pop': 8 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14291.238526, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14291.360596, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14291.421631, 'pop': 3 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14291.452149, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14292.245606, 'pop': 28 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14294.534424, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14294.687012, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14294.900635, 'pop': 15 },
{'key': '3644: Compiler :: rt_mutex_timed_lock+0x1c (0x4089a6b4)', 'x': 14304.239014, 'pop': 25 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14304.300049, 'pop': 8 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 14304.452637, 'pop': 112 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14307.931641, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14308.175781, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14308.236817, 'pop': 2 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14308.236818, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14308.725098, 'pop': 28 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14312.234619, 'pop': 23 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14314.279297, 'pop': 20 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14314.49292, 'pop': 8 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 14315.011719, 'pop': 109 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14315.347412, 'pop': 5 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14315.805176, 'pop': 19 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14318.185547, 'pop': 2 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14318.368653, 'pop': 2 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14319.131592, 'pop': 2 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14323.251465, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14324.594238, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14324.716309, 'pop': 8 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14324.777344, 'pop': 5 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14324.777345, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14325.143555, 'pop': 28 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14327.920655, 'pop': 17 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14328.073242, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14328.286866, 'pop': 12 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14328.805664, 'pop': 5 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 14338.479736, 'pop': 8 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14341.500977, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14341.623047, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14341.684082, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14341.7146, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14342.080811, 'pop': 24 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14344.979981, 'pop': 17 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14345.132569, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14345.346192, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14358.072022, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14358.46875, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14358.529785, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14358.560303, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14358.957032, 'pop': 28 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14360.940674, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14362.741211, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14362.924317, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14363.168457, 'pop': 16 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14371.804932, 'pop': 40 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14371.988037, 'pop': 8 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14372.049072, 'pop': 46 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14374.582032, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14374.704102, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14374.765137, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14375.161866, 'pop': 28 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14377.694824, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14377.847412, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14378.061035, 'pop': 14 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14385.293701, 'pop': 12 },
{'key': '3644: Compiler :: rt_mutex_timed_lock+0x1c (0x4089a6b4)', 'x': 14388.406495, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14391.214112, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14391.336182, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14391.397217, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14391.427735, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14391.824463, 'pop': 27 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14394.418457, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14394.540527, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14394.75415, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14396.249512, 'pop': 3 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14397.561768, 'pop': 24 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14397.775391, 'pop': 2 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14398.385742, 'pop': 8 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 14398.660401, 'pop': 88 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14403.604248, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14404.123047, 'pop': 6 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14404.275635, 'pop': 5 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14407.876709, 'pop': 10 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14407.998779, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14408.059815, 'pop': 3 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14408.059816, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14408.548096, 'pop': 28 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14409.555176, 'pop': 5 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14410.989502, 'pop': 6 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 14411.935547, 'pop': 84 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14413.247803, 'pop': 17 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14413.400391, 'pop': 4 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14413.644532, 'pop': 18 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14414.407471, 'pop': 2 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 14416.757324, 'pop': 10 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14419.473389, 'pop': 6 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14421.518067, 'pop': 6 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14424.539307, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14424.661377, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14424.722412, 'pop': 2 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14424.75293, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14425.119141, 'pop': 28 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14425.424317, 'pop': 3 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14426.614502, 'pop': 4 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14427.957276, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14428.109864, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14428.323487, 'pop': 13 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14429.54419, 'pop': 2 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 14430.368164, 'pop': 29 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14431.192139, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14441.446045, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14441.568115, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14441.62915, 'pop': 10 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14441.659668, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14442.056397, 'pop': 26 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14444.802979, 'pop': 17 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14444.955567, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14445.199707, 'pop': 16 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14446.389893, 'pop': 15 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14453.012207, 'pop': 6 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14453.195313, 'pop': 20 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14453.256348, 'pop': 6 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14457.89502, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14458.01709, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14458.078125, 'pop': 4 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14458.078126, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14458.963135, 'pop': 29 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14461.099366, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14461.221436, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14461.465576, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14474.557618, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14474.679688, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14474.740723, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14474.771241, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14475.167969, 'pop': 28 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14477.639893, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14477.792481, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14478.006104, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14491.189698, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14491.311768, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14491.708496, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14491.708497, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14492.16626, 'pop': 29 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14493.234375, 'pop': 37 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14494.638184, 'pop': 39 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 14498.269776, 'pop': 75 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14499.002198, 'pop': 20 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14499.185303, 'pop': 6 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14499.429444, 'pop': 20 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 14504.739502, 'pop': 55 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 14504.983643, 'pop': 48 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14506.723145, 'pop': 7 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14507.882813, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14508.035401, 'pop': 8 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14508.096436, 'pop': 7 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14508.126953, 'pop': 14 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14508.493164, 'pop': 29 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14511.178711, 'pop': 13 },
{'key': '3656: SICS_SHARED_DIS :: rt_mutex_timed_lock+0x1c (0x4089a530)', 'x': 14511.270264, 'pop': 3 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14511.422852, 'pop': 2 },
{'key': '3658: SICS_SHARED_CPU :: rt_mutex_timed_lock+0x1c (0x4089a530)', 'x': 14511.544922, 'pop': 3 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14511.666992, 'pop': 11 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14512.094238, 'pop': 5 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14512.399414, 'pop': 5 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14519.540527, 'pop': 6 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14519.723633, 'pop': 7 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14523.141602, 'pop': 3 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14523.263672, 'pop': 3 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 14523.843506, 'pop': 87 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14524.54541, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14524.667481, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14524.759033, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14525.094727, 'pop': 23 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14527.597168, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14527.749756, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14527.993897, 'pop': 15 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14540.475586, 'pop': 16 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14540.689209, 'pop': 11 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14541.238526, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14541.360596, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14541.452149, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14541.81836, 'pop': 28 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14544.381836, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14544.534424, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14544.748047, 'pop': 16 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14549.661377, 'pop': 8 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14549.875, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14557.870606, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14557.992676, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14558.053711, 'pop': 7 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14558.053712, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14559.243897, 'pop': 29 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14561.502198, 'pop': 11 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14562.387207, 'pop': 40 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14563.852051, 'pop': 18 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14564.553955, 'pop': 4 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 14565.591553, 'pop': 50 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14566.812256, 'pop': 21 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14568.521241, 'pop': 2 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 14568.948487, 'pop': 14 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14570.779541, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14574.563721, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14574.685791, 'pop': 9 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14574.746826, 'pop': 6 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14574.777344, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14575.174072, 'pop': 28 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14576.425293, 'pop': 7 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 14577.127198, 'pop': 21 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14577.859619, 'pop': 17 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14578.012207, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14578.256348, 'pop': 10 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14579.171875, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14584.634522, 'pop': 4 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14584.878662, 'pop': 5 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14585.000733, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14589.395264, 'pop': 4 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14589.547852, 'pop': 4 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 14590.036133, 'pop': 62 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14591.195801, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14591.317871, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14591.378907, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14591.745118, 'pop': 23 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14594.186524, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14594.583252, 'pop': 15 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14605.844238, 'pop': 14 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14606.210449, 'pop': 15 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14606.363037, 'pop': 10 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14607.888916, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14607.980469, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14608.072022, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14608.407715, 'pop': 28 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14610.818604, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14611.184815, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14624.520996, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14624.643067, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14624.704102, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14624.704103, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14625.161866, 'pop': 28 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14626.443604, 'pop': 18 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14627.389649, 'pop': 19 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 14628.366211, 'pop': 46 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14630.044678, 'pop': 18 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14630.197266, 'pop': 4 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14630.441407, 'pop': 18 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 14631.875733, 'pop': 24 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 14634.988526, 'pop': 21 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14635.904053, 'pop': 5 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14636.087158, 'pop': 4 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 14636.239746, 'pop': 43 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14641.244629, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14641.366699, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14641.458252, 'pop': 4 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14641.458253, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14641.885498, 'pop': 28 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14643.655518, 'pop': 13 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14644.021731, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14644.082764, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14644.174317, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14644.448975, 'pop': 12 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14646.768311, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14646.981934, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14650.369385, 'pop': 3 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14650.521973, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14657.846192, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14657.968262, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14658.029297, 'pop': 7 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14658.059815, 'pop': 13 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14658.334473, 'pop': 20 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14658.487061, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14661.26416, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14661.660889, 'pop': 16 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14665.536621, 'pop': 14 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14665.719727, 'pop': 3 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14670.541504, 'pop': 4 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14670.633057, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14674.569824, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14674.661377, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14674.722412, 'pop': 3 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14674.75293, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14675.119141, 'pop': 29 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14677.6521, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14677.804688, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14678.018311, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14691.201904, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14691.323975, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14691.415527, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14691.446045, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14691.995361, 'pop': 28 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14693.582276, 'pop': 32 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14695.260742, 'pop': 23 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 14696.389893, 'pop': 58 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14699.044922, 'pop': 21 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14699.19751, 'pop': 6 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14699.44165, 'pop': 20 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 14699.929932, 'pop': 28 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 14707.650879, 'pop': 34 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14707.89502, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14708.108643, 'pop': 8 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14708.200195, 'pop': 7 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14708.261231, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14708.627442, 'pop': 28 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14711.160401, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14711.312989, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14711.526612, 'pop': 11 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14716.348389, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14716.562012, 'pop': 4 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14717.72168, 'pop': 20 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14724.832276, 'pop': 14 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14728.219727, 'pop': 7 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14728.341797, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14728.67749, 'pop': 11 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 14729.593018, 'pop': 88 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14731.759766, 'pop': 19 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14731.820801, 'pop': 2 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14731.820802, 'pop': 21 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14732.736328, 'pop': 31 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14734.323242, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14736.184815, 'pop': 25 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14736.673096, 'pop': 23 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 14737.069824, 'pop': 6 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14741.220215, 'pop': 8 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14741.372803, 'pop': 4 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14741.433838, 'pop': 4 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14741.464356, 'pop': 8 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14741.922119, 'pop': 28 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14744.18042, 'pop': 14 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14744.485596, 'pop': 14 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 14745.828369, 'pop': 39 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14746.499756, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14746.652344, 'pop': 4 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14746.865967, 'pop': 10 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14756.814698, 'pop': 3 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14756.967285, 'pop': 9 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14757.089356, 'pop': 7 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14758.096436, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14758.249024, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14758.310059, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14759.347656, 'pop': 21 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14764.71875, 'pop': 17 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14764.840821, 'pop': 5 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14765.176514, 'pop': 7 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14765.451172, 'pop': 17 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 14766.214112, 'pop': 27 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14767.038086, 'pop': 8 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14771.859864, 'pop': 5 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14772.042969, 'pop': 5 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14774.636963, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14774.759033, 'pop': 9 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14774.820069, 'pop': 2 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14774.82007, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14775.18628, 'pop': 26 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14777.658203, 'pop': 17 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14777.993897, 'pop': 12 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14778.939942, 'pop': 6 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14784.860352, 'pop': 15 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14784.982422, 'pop': 4 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14785.25708, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14791.299561, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14791.421631, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14791.482666, 'pop': 5 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14791.513184, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14792.215088, 'pop': 25 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14794.107178, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14794.473389, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14807.80957, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14807.931641, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14807.992676, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14807.992677, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14810.373047, 'pop': 30 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14810.4646, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14811.929444, 'pop': 25 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14812.783936, 'pop': 25 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 14812.814453, 'pop': 56 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 14814.584473, 'pop': 32 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14818.826416, 'pop': 5 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 14818.856934, 'pop': 31 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14820.749024, 'pop': 25 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14820.901612, 'pop': 9 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14821.267823, 'pop': 25 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14823.281983, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14824.533203, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14824.685791, 'pop': 3 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14824.746826, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14825.174072, 'pop': 28 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14827.768067, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14828.134278, 'pop': 6 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14832.223633, 'pop': 8 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14832.406738, 'pop': 3 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14834.878662, 'pop': 2 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14835.000733, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14841.653565, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14841.775635, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14841.83667, 'pop': 6 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14841.836671, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14842.538575, 'pop': 20 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14844.461182, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14844.766358, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14858.072022, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14858.163575, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14858.22461, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14858.224611, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14858.651856, 'pop': 28 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14860.116699, 'pop': 38 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14860.849121, 'pop': 24 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14863.626221, 'pop': 18 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14863.748291, 'pop': 4 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 14863.992432, 'pop': 42 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14864.022949, 'pop': 18 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 14867.501953, 'pop': 33 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 14867.562989, 'pop': 31 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14867.593506, 'pop': 3 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14873.605469, 'pop': 8 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14874.490479, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14874.612549, 'pop': 10 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14874.704102, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14875.406006, 'pop': 28 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14877.267578, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14877.328613, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14877.420166, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14877.664307, 'pop': 12 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14880.929688, 'pop': 6 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14881.112793, 'pop': 2 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14881.692627, 'pop': 13 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14886.087158, 'pop': 4 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14886.239746, 'pop': 4 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14890.786866, 'pop': 5 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14890.939453, 'pop': 4 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14891.061524, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14891.153076, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14891.275147, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14891.366699, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14892.312744, 'pop': 14 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14894.143799, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14894.204834, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14894.296387, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14894.662598, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14896.28003, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14907.998779, 'pop': 10 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14908.12085, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14908.181885, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14908.212403, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14908.700684, 'pop': 13 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14911.050537, 'pop': 18 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14911.599854, 'pop': 18 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 14912.637452, 'pop': 39 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 14915.322998, 'pop': 27 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14915.902832, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14918.252686, 'pop': 22 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14918.405274, 'pop': 8 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14918.557861, 'pop': 22 },
{'key': '3656: SICS_SHARED_DIS :: wait_answer_interruptible+0x90 (0x60)', 'x': 14920.877198, 'pop': 4 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14921.426514, 'pop': 5 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 14922.036866, 'pop': 25 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14922.403076, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14924.600342, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14924.722412, 'pop': 5 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14924.75293, 'pop': 5 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14924.783447, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14925.149658, 'pop': 28 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14926.034668, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14928.048828, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14928.170899, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14928.323487, 'pop': 9 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14931.405762, 'pop': 4 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14934.335449, 'pop': 5 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 14936.898926, 'pop': 162 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14941.842774, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14941.964844, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14942.025879, 'pop': 4 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14942.056397, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14942.483643, 'pop': 22 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14944.802979, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14945.108155, 'pop': 16 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14945.840576, 'pop': 9 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14951.547364, 'pop': 5 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14951.730469, 'pop': 5 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14957.833984, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14957.956055, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14958.01709, 'pop': 5 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14958.047607, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14958.963135, 'pop': 29 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14960.580567, 'pop': 8 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14961.129883, 'pop': 33 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 14961.618164, 'pop': 33 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14962.80835, 'pop': 18 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14962.960938, 'pop': 3 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14963.174561, 'pop': 17 },
{'key': '3656: SICS_SHARED_DIS :: wait_answer_interruptible+0x90 (0x60)', 'x': 14970.651367, 'pop': 6 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14973.092774, 'pop': 10 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 14973.336914, 'pop': 25 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14974.496582, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14974.618653, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14974.710205, 'pop': 10 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14974.740723, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14975.167969, 'pop': 28 },
{'key': '3656: SICS_SHARED_DIS :: wait_answer_interruptible+0x90 (0x60)', 'x': 14976.693848, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14977.121094, 'pop': 13 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14977.487305, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14977.578858, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14977.639893, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 14978.524903, 'pop': 14 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14979.68457, 'pop': 5 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 14980.050781, 'pop': 26 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14980.630615, 'pop': 16 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14981.118897, 'pop': 2 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 14981.271484, 'pop': 42 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14983.46875, 'pop': 3 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14986.276367, 'pop': 2 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14987.039307, 'pop': 5 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14989.236572, 'pop': 2 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 14989.328125, 'pop': 6 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14989.358643, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 14991.15918, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14991.28125, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 14991.342285, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 14991.677979, 'pop': 13 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14993.997315, 'pop': 4 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 14994.363526, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 14994.485596, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 14994.729736, 'pop': 15 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 14999.307373, 'pop': 4 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 14999.398926, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15007.821778, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15007.91333, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 15007.943848, 'pop': 8 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15007.974366, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15008.706787, 'pop': 28 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15009.774903, 'pop': 16 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15010.385254, 'pop': 10 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15012.58252, 'pop': 17 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15012.765625, 'pop': 3 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15013.070801, 'pop': 17 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 15013.894776, 'pop': 26 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15028.970459, 'pop': 19 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15029.153565, 'pop': 15 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 15029.2146, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15029.214601, 'pop': 19 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 15030.069092, 'pop': 33 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15031.778076, 'pop': 18 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15032.541016, 'pop': 18 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15041.116455, 'pop': 10 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15041.208008, 'pop': 8 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 15041.269043, 'pop': 8 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15041.299561, 'pop': 11 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15042.306641, 'pop': 27 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15043.893555, 'pop': 28 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 15046.701172, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15046.823242, 'pop': 4 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15047.036866, 'pop': 14 },
{'key': '3656: SICS_SHARED_DIS :: wait_answer_interruptible+0x90 (0x60)', 'x': 15052.560547, 'pop': 35 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15054.66626, 'pop': 9 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 15055.215576, 'pop': 58 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15055.581787, 'pop': 41 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15057.80957, 'pop': 15 },
{'key': '3656: SICS_SHARED_DIS :: wait_answer_interruptible+0x90 (0x60)', 'x': 15057.870606, 'pop': 2 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15057.992676, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 15058.053711, 'pop': 10 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15058.053712, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15058.511475, 'pop': 24 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15059.70166, 'pop': 4 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15060.617188, 'pop': 3 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15061.59375, 'pop': 18 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15061.746338, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 15062.844971, 'pop': 15 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15064.981201, 'pop': 3 },
{'key': '3656: SICS_SHARED_DIS :: wait_answer_interruptible+0x90 (0x60)', 'x': 15068.765381, 'pop': 8 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15069.101075, 'pop': 3 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 15069.40625, 'pop': 66 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15073.465088, 'pop': 3 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 15073.617676, 'pop': 8 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15074.472168, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15074.594238, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 15074.655274, 'pop': 8 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15074.655275, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15075.540284, 'pop': 26 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15078.10376, 'pop': 17 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15078.22583, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15078.469971, 'pop': 14 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15079.416016, 'pop': 5 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15079.568604, 'pop': 17 },
{'key': '3656: SICS_SHARED_DIS :: wait_answer_interruptible+0x90 (0x60)', 'x': 15088.9375, 'pop': 10 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15089.242676, 'pop': 7 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 15089.578369, 'pop': 8 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15091.195801, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15091.317871, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 15091.378907, 'pop': 9 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15091.378908, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 15092.416504, 'pop': 27 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15093.60669, 'pop': 11 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15095.193604, 'pop': 5 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15096.87207, 'pop': 4 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15097.268799, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15099.374512, 'pop': 20 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15099.5271, 'pop': 6 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15099.771241, 'pop': 20 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 15100.717285, 'pop': 18 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15103.402832, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15107.797364, 'pop': 10 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15107.949952, 'pop': 7 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 15107.980469, 'pop': 6 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15108.010987, 'pop': 15 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15108.529785, 'pop': 6 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15110.208252, 'pop': 29 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15110.330323, 'pop': 2 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15113.961914, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 15115.03003, 'pop': 20 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15115.213135, 'pop': 4 },
{'key': '532: Binder_2 :: binder_ioctl+0xd8 (0x1f)', 'x': 15117.379883, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15117.654541, 'pop': 17 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 15120.889404, 'pop': 2 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15121.438721, 'pop': 3 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15124.337891, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15124.459961, 'pop': 14 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 15125.009278, 'pop': 3 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15125.619629, 'pop': 9 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15125.711182, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15126.596192, 'pop': 25 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15129.098633, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15129.190186, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 15129.281738, 'pop': 11 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15135.69043, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 15135.873535, 'pop': 6 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15143.686035, 'pop': 7 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 15143.838623, 'pop': 7 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15143.930176, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15144.052246, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15144.265869, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15145.089844, 'pop': 25 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15147.592285, 'pop': 3 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15149.392823, 'pop': 26 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15150.247315, 'pop': 5 },
{'key': '3657: SICS_SHARED_CPU :: ?? 0xbf005dcc (0x37)', 'x': 15165.04834, 'pop': 8 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15165.200928, 'pop': 14 },
{'key': '3657: SICS_SHARED_CPU :: ?? 0xbf005dcc (0x37)', 'x': 15173.013428, 'pop': 7 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15174.447754, 'pop': 27 },
{'key': '3637: com.amazon.sics.example :: futex_wait_queue_me+0xe8 (0x67617c70)', 'x': 15182.595947, 'pop': 30 },
{'key': '3637: com.amazon.sics.example :: futex_wait_queue_me+0xe8 (0x67617c6c)', 'x': 15190.774658, 'pop': 7 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x67617c70)', 'x': 15190.805176, 'pop': 17 },
{'key': '3653: SICS_SHARED_OVE :: futex_wait_queue_me+0xe8 (0x675fe5f8)', 'x': 15190.988281, 'pop': 39 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15191.598633, 'pop': 39 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 15192.453125, 'pop': 70 },
{'key': '3637: com.amazon.sics.example :: futex_wait_queue_me+0xe8 (0x67617c70)', 'x': 15193.673828, 'pop': 2 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x67617c70)', 'x': 15193.704346, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15194.558838, 'pop': 64 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15194.680909, 'pop': 19 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15195.16919, 'pop': 62 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 15196.359375, 'pop': 204 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 15196.695069, 'pop': 64 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15199.807861, 'pop': 6 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15200.357178, 'pop': 6 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15207.772949, 'pop': 31 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15207.864502, 'pop': 10 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15207.925537, 'pop': 60 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15208.169678, 'pop': 6 },
{'key': '3656: SICS_SHARED_DIS :: wait_answer_interruptible+0x90 (0x5a)', 'x': 15208.444336, 'pop': 3 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15209.481934, 'pop': 8 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15213.784912, 'pop': 2 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15214.70044, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15220.224121, 'pop': 67 },
{'key': '3656: SICS_SHARED_DIS :: wait_answer_interruptible+0x90 (0x5a)', 'x': 15220.285156, 'pop': 3 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15220.468262, 'pop': 11 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15221.139649, 'pop': 25 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15221.597412, 'pop': 6 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15224.710205, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15224.984864, 'pop': 3 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15225.076416, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15227.517823, 'pop': 29 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15227.67041, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15229.959229, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 15234.964112, 'pop': 36 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15235.116699, 'pop': 7 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15235.391358, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15241.189698, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15241.403321, 'pop': 5 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 15241.464356, 'pop': 4 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15241.494873, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15242.349366, 'pop': 20 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15244.333008, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 15244.638184, 'pop': 9 },
{'key': '3656: SICS_SHARED_DIS :: wait_answer_interruptible+0x90 (0x5a)', 'x': 15247.9646, 'pop': 15 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15249.09375, 'pop': 14 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15253.213623, 'pop': 3 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15255.929688, 'pop': 2 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 15256.082276, 'pop': 10 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15257.455567, 'pop': 40 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15257.760742, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15258.310059, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 15258.371094, 'pop': 2 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15258.371095, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15259.591797, 'pop': 22 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15262.460449, 'pop': 3 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15263.833741, 'pop': 3 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15265.512207, 'pop': 2 },
{'key': '3637: com.amazon.sics.example :: logger_aio_write+0xc4 (0x3)', 'x': 15269.204834, 'pop': 4 },
{'key': '3656: SICS_SHARED_DIS :: wait_answer_interruptible+0x90 (0x5a)', 'x': 15269.448975, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15269.967774, 'pop': 2 },
{'key': '3656: SICS_SHARED_DIS :: wait_answer_interruptible+0x90 (0x5a)', 'x': 15274.057129, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15274.453858, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15274.667481, 'pop': 14 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15276.406983, 'pop': 5 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15277.932861, 'pop': 8 },
{'key': '3656: SICS_SHARED_DIS :: wait_answer_interruptible+0x90 (0x5a)', 'x': 15281.22876, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15282.296875, 'pop': 4 },
{'key': '3637: com.amazon.sics.example :: ?? 0xbf005dcc (0x34)', 'x': 15286.416748, 'pop': 10 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15287.545899, 'pop': 41 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15287.698487, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15287.91211, 'pop': 41 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15288.827637, 'pop': 3 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15288.888672, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15291.085938, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15291.17749, 'pop': 3 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15291.238526, 'pop': 30 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15294.015625, 'pop': 4 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15295.144776, 'pop': 2 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 15295.266846, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 15296.457032, 'pop': 49 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15296.579102, 'pop': 5 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15299.234131, 'pop': 3 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15305.55127, 'pop': 43 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15305.978516, 'pop': 8 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15306.192139, 'pop': 17 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15307.80957, 'pop': 15 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15307.962158, 'pop': 15 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15309.030274, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15310.250977, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15313.211182, 'pop': 10 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 15315.561035, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15316.568115, 'pop': 24 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15316.659668, 'pop': 8 },
{'key': '3656: SICS_SHARED_DIS :: wait_answer_interruptible+0x90 (0x5a)', 'x': 15319.16211, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 15322.000244, 'pop': 24 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15322.610596, 'pop': 5 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15322.702149, 'pop': 15 },
{'key': '3656: SICS_SHARED_DIS :: wait_answer_interruptible+0x90 (0x5a)', 'x': 15323.465088, 'pop': 3 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15324.044922, 'pop': 7 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15324.44165, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15324.777344, 'pop': 13 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15327.829102, 'pop': 7 },
{'key': '3656: SICS_SHARED_DIS :: rt_mutex_timed_lock+0x1c (0x400a0dec)', 'x': 15330.11792, 'pop': 3 },
{'key': '3658: SICS_SHARED_CPU :: rt_mutex_timed_lock+0x1c (0x400a0dec)', 'x': 15330.178955, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15330.789307, 'pop': 23 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15331.125, 'pop': 6 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15332.223633, 'pop': 7 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15338.021973, 'pop': 20 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15338.205078, 'pop': 6 },
{'key': '3656: SICS_SHARED_DIS :: wait_answer_interruptible+0x90 (0x5a)', 'x': 15338.357666, 'pop': 7 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 15338.479736, 'pop': 15 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15339.761475, 'pop': 6 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15341.134766, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15341.226319, 'pop': 2 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15341.317871, 'pop': 14 },
{'key': '3644: Compiler :: rt_mutex_timed_lock+0x1c (0x4089a700)', 'x': 15342.569092, 'pop': 8 },
{'key': '3656: SICS_SHARED_DIS :: wait_answer_interruptible+0x90 (0x5a)', 'x': 15343.545655, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15345.651367, 'pop': 4 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15346.933106, 'pop': 22 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15347.146729, 'pop': 5 },
{'key': '3644: Compiler :: rt_mutex_timed_lock+0x1c (0x4089a700)', 'x': 15347.696045, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15349.771241, 'pop': 3 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15352.914551, 'pop': 20 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15353.097656, 'pop': 5 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15353.189209, 'pop': 13 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15353.616455, 'pop': 3 },
{'key': '3644: Compiler :: rt_mutex_timed_lock+0x1c (0x4089a700)', 'x': 15354.928711, 'pop': 5 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15357.46167, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15357.797364, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15358.072022, 'pop': 4 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 15358.163575, 'pop': 3 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15358.163576, 'pop': 15 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15359.018067, 'pop': 3 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15361.642578, 'pop': 3 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 15361.764649, 'pop': 21 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15361.856201, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15362.25293, 'pop': 3 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 15363.229492, 'pop': 12 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15366.983155, 'pop': 3 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15371.896484, 'pop': 22 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15372.110107, 'pop': 9 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15372.262695, 'pop': 18 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15374.490479, 'pop': 9 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15375.344971, 'pop': 6 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15378.640869, 'pop': 2 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15380.197266, 'pop': 7 },
{'key': '3637: com.amazon.sics.example :: sys_epoll_wait+0x308 (0x2b)', 'x': 15380.288819, 'pop': 5 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15380.319336, 'pop': 17 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15381.997803, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15382.66919, 'pop': 27 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15382.760742, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15383.096436, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15386.239746, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15391.092041, 'pop': 7 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15391.641358, 'pop': 8 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15394.601563, 'pop': 7 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15396.4021, 'pop': 4 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 15400.094727, 'pop': 36 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15400.30835, 'pop': 8 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15402.536133, 'pop': 28 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15403.20752, 'pop': 28 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15403.45166, 'pop': 29 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15403.909424, 'pop': 3 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15406.045655, 'pop': 10 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 15407.296875, 'pop': 24 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15407.754639, 'pop': 10 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15407.815674, 'pop': 3 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15407.907227, 'pop': 23 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15411.813477, 'pop': 4 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15419.046143, 'pop': 34 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15419.381836, 'pop': 10 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15420.388916, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 15420.938233, 'pop': 19 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15423.684815, 'pop': 19 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15423.776367, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15424.478272, 'pop': 15 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15424.783447, 'pop': 15 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15424.813965, 'pop': 14 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15437.936524, 'pop': 28 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15438.119629, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15438.36377, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 15439.065674, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15440.805176, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15441.110352, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15441.38501, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15441.446045, 'pop': 2 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15441.446046, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15442.331055, 'pop': 3 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 15444.802979, 'pop': 3 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15445.138672, 'pop': 3 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15445.810059, 'pop': 23 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15452.707032, 'pop': 6 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15453.378418, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15457.772949, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15458.200195, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15458.352784, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 15458.535889, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 15458.871582, 'pop': 13 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 15459.665039, 'pop': 249 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15460.824707, 'pop': 5 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15460.977295, 'pop': 7 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15463.144043, 'pop': 20 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15463.266113, 'pop': 3 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 15464.639404, 'pop': 42 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15468.301514, 'pop': 3 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15471.688965, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_ioctl+0xd8 (0x1f)', 'x': 15474.343995, 'pop': 10 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15474.557618, 'pop': 14 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15475.290039, 'pop': 2 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15475.351075, 'pop': 10 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15478.463867, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15478.55542, 'pop': 18 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15479.013184, 'pop': 34 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 15479.379395, 'pop': 32 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15480.56958, 'pop': 4 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15481.302002, 'pop': 4 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15482.431153, 'pop': 22 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15482.583741, 'pop': 3 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15486.276367, 'pop': 7 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15486.886719, 'pop': 7 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15487.802246, 'pop': 6 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15491.098145, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15491.15918, 'pop': 8 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15491.220215, 'pop': 11 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 15491.372803, 'pop': 4 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 15492.135742, 'pop': 4 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 15492.807129, 'pop': 10 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15494.638184, 'pop': 8 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15494.973877, 'pop': 7 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15496.103027, 'pop': 7 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15496.255615, 'pop': 12 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15499.917725, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15500.711182, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15504.464844, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15507.760742, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15508.157471, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15508.218506, 'pop': 14 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 15508.371094, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 15508.737305, 'pop': 13 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15513.345459, 'pop': 7 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15513.437012, 'pop': 20 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15513.559082, 'pop': 4 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15514.352539, 'pop': 12 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 15514.59668, 'pop': 32 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 15517.373779, 'pop': 21 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15517.709473, 'pop': 21 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15519.662598, 'pop': 4 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15520.059326, 'pop': 2 },
{'key': '3656: SICS_SHARED_DIS :: wait_answer_interruptible+0x90 (0x5e)', 'x': 15520.425537, 'pop': 3 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15522.256592, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15524.606446, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15524.820069, 'pop': 10 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15524.881104, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 15525.064209, 'pop': 6 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15525.766113, 'pop': 2 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 15526.010254, 'pop': 7 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15528.695801, 'pop': 3 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15529.031495, 'pop': 19 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15529.519776, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15532.479981, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15532.846192, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 15533.181885, 'pop': 14 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15538.705567, 'pop': 4 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15538.888672, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15541.116455, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15541.574219, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15541.665772, 'pop': 12 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 15541.848877, 'pop': 8 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 15542.245606, 'pop': 8 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15545.541504, 'pop': 18 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15546.273926, 'pop': 2 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15546.395996, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15549.905518, 'pop': 18 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15550.63794, 'pop': 16 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15554.452637, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15558.145264, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15558.236817, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15558.328369, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 15558.480957, 'pop': 7 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 15558.847168, 'pop': 7 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15562.082032, 'pop': 10 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15562.875489, 'pop': 7 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 15563.028076, 'pop': 19 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 15563.791016, 'pop': 29 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15566.812256, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15566.934326, 'pop': 19 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15566.995361, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15567.086914, 'pop': 7 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15568.490723, 'pop': 9 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15574.990967, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15575.08252, 'pop': 7 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15575.174072, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 15575.357178, 'pop': 6 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 15575.784424, 'pop': 6 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15576.608399, 'pop': 2 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15578.317383, 'pop': 9 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 15578.775147, 'pop': 11 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15582.803467, 'pop': 14 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15582.864502, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15582.956055, 'pop': 6 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15583.9021, 'pop': 7 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15587.04541, 'pop': 9 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15587.411621, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15591.134766, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15591.958741, 'pop': 8 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15592.019776, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 15592.202881, 'pop': 7 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 15592.569092, 'pop': 8 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 15595.437744, 'pop': 11 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15596.322754, 'pop': 4 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15596.414307, 'pop': 3 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15599.923828, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15600.229004, 'pop': 16 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15601.266602, 'pop': 13 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15602.334717, 'pop': 4 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15607.125977, 'pop': 5 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15607.736328, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15608.072022, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15608.133057, 'pop': 14 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 15608.438233, 'pop': 7 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 15608.834961, 'pop': 8 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 15609.292725, 'pop': 142 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15612.985352, 'pop': 5 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15613.656738, 'pop': 20 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 15621.988037, 'pop': 24 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15622.628907, 'pop': 21 },
{'key': '3644: Compiler :: rt_mutex_timed_lock+0x1c (0x4089a6b4)', 'x': 15622.995118, 'pop': 13 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15624.85669, 'pop': 10 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15624.917725, 'pop': 10 },
{'key': '3653: SICS_SHARED_OVE :: rt_mutex_timed_lock+0x1c (0x4089a6b4)', 'x': 15625.039795, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15625.131348, 'pop': 15 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 15625.86377, 'pop': 46 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 15626.138428, 'pop': 3 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 15627.237061, 'pop': 4 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15627.847412, 'pop': 18 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15628.03052, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_ioctl+0xd8 (0x1f)', 'x': 15630.166748, 'pop': 2 },
{'key': '3656: SICS_SHARED_DIS :: wait_answer_interruptible+0x90 (0x63)', 'x': 15630.685547, 'pop': 3 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15630.807618, 'pop': 4 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15632.638672, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15633.218506, 'pop': 17 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 15633.493164, 'pop': 10 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15636.422852, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15641.092041, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15641.153076, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15641.214112, 'pop': 12 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 15641.366699, 'pop': 7 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 15641.641358, 'pop': 7 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15644.815186, 'pop': 16 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15645.883301, 'pop': 7 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15646.035889, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15647.195557, 'pop': 4 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15650.521973, 'pop': 9 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15651.19336, 'pop': 3 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15653.421143, 'pop': 20 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15653.695801, 'pop': 19 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15657.724121, 'pop': 10 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15658.090332, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15658.181885, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 15658.334473, 'pop': 4 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 15658.670166, 'pop': 4 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 15659.311035, 'pop': 43 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 15659.585693, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15662.0271, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15662.301758, 'pop': 8 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15663.766602, 'pop': 12 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15674.417236, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15674.844483, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15674.936035, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 15675.119141, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 15675.485352, 'pop': 12 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15678.048828, 'pop': 24 },
{'key': '3644: Compiler :: rt_mutex_timed_lock+0x1c (0x4089a6b4)', 'x': 15681.80249, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15683.145264, 'pop': 18 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15683.267334, 'pop': 23 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15683.603027, 'pop': 7 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 15685.952881, 'pop': 43 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15688.974121, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15691.079834, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15691.293457, 'pop': 7 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15691.38501, 'pop': 15 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15693.002442, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 15695.718506, 'pop': 32 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15695.779541, 'pop': 2 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15695.901612, 'pop': 4 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15696.17627, 'pop': 32 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15699.136475, 'pop': 22 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15699.258545, 'pop': 3 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15700.08252, 'pop': 11 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15700.937012, 'pop': 4 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15705.362061, 'pop': 20 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 15705.545166, 'pop': 8 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15707.711914, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15707.956055, 'pop': 8 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15708.01709, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 15708.169678, 'pop': 2 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 15708.566407, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15709.115723, 'pop': 9 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15709.481934, 'pop': 7 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15710.672119, 'pop': 5 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15711.007813, 'pop': 10 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15711.343506, 'pop': 5 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15724.40503, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15725.381592, 'pop': 15 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15725.442627, 'pop': 16 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 15725.595215, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 15726.388672, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 15726.968506, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15729.043701, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15729.623535, 'pop': 17 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15734.048584, 'pop': 23 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15741.067627, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15741.128662, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15741.189698, 'pop': 13 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 15741.342285, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 15741.647461, 'pop': 11 },
{'key': '3641: GC :: futex_wait_queue_me+0xe8 (0x41d5acf8)', 'x': 15743.203858, 'pop': 2571 },
{'key': '3641: GC :: sleep_on_page+0x10 (0x63c3466e)', 'x': 15747.445801, 'pop': 2 },
{'key': '3637: com.amazon.sics.example :: rt_mutex_timed_lock+0x1c (0x4089a530)', 'x': 15748.452881, 'pop': 4 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15755.685547, 'pop': 36 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15757.974366, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15760.415772, 'pop': 16 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15760.476807, 'pop': 18 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15765.115479, 'pop': 29 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15765.237549, 'pop': 37 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15765.359619, 'pop': 4 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 15771.676758, 'pop': 67 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15774.484375, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15774.575928, 'pop': 8 },
{'key': '343: Binder_1 :: binder_ioctl+0xd8 (0x1f)', 'x': 15774.667481, 'pop': 8 },
{'key': '3645: ReferenceQueueD :: futex_wait_queue_me+0xe8 (0x67626638)', 'x': 15778.421143, 'pop': 7379 },
{'key': '3646: FinalizerDaemon :: futex_wait_queue_me+0xe8 (0x675f7fe8)', 'x': 15778.573731, 'pop': 7375 },
{'key': '3647: FinalizerWatchd :: futex_wait_queue_me+0xe8 (0x6761b838)', 'x': 15778.970459, 'pop': 7373 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15779.428223, 'pop': 21 },
{'key': '3656: SICS_SHARED_DIS :: rt_mutex_timed_lock+0x1c (0x4089a4c4)', 'x': 15782.11377, 'pop': 5 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15782.815674, 'pop': 10 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 15786.081055, 'pop': 54 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15786.26416, 'pop': 11 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15786.630371, 'pop': 3 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15786.966065, 'pop': 54 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15787.820557, 'pop': 43 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15789.560059, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 15789.895752, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15791.024903, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15791.116455, 'pop': 2 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15791.208008, 'pop': 28 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15792.18457, 'pop': 4 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15793.649414, 'pop': 3 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15794.015625, 'pop': 4 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15794.381836, 'pop': 4 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15797.464112, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15807.718018, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15807.80957, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15807.870606, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 15808.023193, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 15808.267334, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 15809.243897, 'pop': 16 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15810.617188, 'pop': 22 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15811.441162, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15812.906006, 'pop': 18 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15813.546875, 'pop': 18 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 15815.530518, 'pop': 17 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15822.549561, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15824.380615, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15824.838379, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15824.899414, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 15825.08252, 'pop': 10 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15825.479248, 'pop': 2 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 15825.998047, 'pop': 11 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15828.622559, 'pop': 7 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15829.11084, 'pop': 19 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15829.324463, 'pop': 4 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15832.986572, 'pop': 6 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15838.601807, 'pop': 5 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 15839.242676, 'pop': 28 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15839.578369, 'pop': 24 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15841.317871, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15841.409424, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15841.500977, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 15842.080811, 'pop': 2 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15844.156006, 'pop': 14 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15844.73584, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15848.153809, 'pop': 17 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 15848.458984, 'pop': 8 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15849.496582, 'pop': 10 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15849.618653, 'pop': 3 },
{'key': '3657: SICS_SHARED_CPU :: rt_mutex_timed_lock+0x1c (0x4089a6b4)', 'x': 15856.790284, 'pop': 4 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15856.881836, 'pop': 6 },
{'key': '3644: Compiler :: rt_mutex_timed_lock+0x1c (0x4089a6b4)', 'x': 15857.095459, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15857.736328, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15857.797364, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15857.888916, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 15858.041504, 'pop': 9 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 15858.255127, 'pop': 9 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15861.306885, 'pop': 18 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15862.069824, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15866.800049, 'pop': 17 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15866.952637, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15867.074707, 'pop': 17 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15874.276856, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15874.429444, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15874.490479, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15874.582032, 'pop': 14 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 15874.734619, 'pop': 7 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 15874.948242, 'pop': 7 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 15875.589112, 'pop': 16 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15876.809815, 'pop': 9 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15879.403809, 'pop': 17 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 15879.617432, 'pop': 44 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15879.739502, 'pop': 12 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15888.772705, 'pop': 8 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15891.092041, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15891.153076, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15891.214112, 'pop': 14 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 15891.366699, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 15891.793946, 'pop': 11 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15892.61792, 'pop': 3 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 15892.617921, 'pop': 221 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15894.75415, 'pop': 18 },
{'key': '2755: Binder_3 :: rt_mutex_timed_lock+0x1c (0x400f4dec)', 'x': 15895.181397, 'pop': 3 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15895.547607, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15895.761231, 'pop': 4 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 15899.667481, 'pop': 19 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15900.033692, 'pop': 19 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15900.583008, 'pop': 6 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15906.10669, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15907.754639, 'pop': 7 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15907.815674, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15907.876709, 'pop': 11 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 15908.029297, 'pop': 7 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 15908.24292, 'pop': 7 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15908.822754, 'pop': 11 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15910.226563, 'pop': 12 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15910.531738, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 15910.806397, 'pop': 10 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15913.705567, 'pop': 7 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15918.252686, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15927.102784, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15927.194336, 'pop': 16 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15927.255371, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 15927.407959, 'pop': 15 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 15927.6521, 'pop': 15 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 15928.384522, 'pop': 31 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15928.567627, 'pop': 38 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15930.55127, 'pop': 21 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15931.070069, 'pop': 3 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15937.692383, 'pop': 27 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15938.211182, 'pop': 26 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15941.26294, 'pop': 9 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15941.446045, 'pop': 9 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15941.537598, 'pop': 9 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 15941.720703, 'pop': 3 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 15942.575195, 'pop': 4 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 15943.032959, 'pop': 11 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 15943.429688, 'pop': 14 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15946.267823, 'pop': 26 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15946.450928, 'pop': 12 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 15947.946289, 'pop': 39 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15951.242188, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15952.127198, 'pop': 19 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15952.401856, 'pop': 13 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15957.681397, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15958.322266, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15958.413819, 'pop': 14 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15958.566407, 'pop': 3 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 15958.596924, 'pop': 5 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 15958.9021, 'pop': 6 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15960.641602, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15962.259033, 'pop': 18 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15962.381104, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 15968.393067, 'pop': 23 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15968.881348, 'pop': 15 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15969.918946, 'pop': 10 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15974.466065, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15974.801758, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15974.893311, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 15975.076416, 'pop': 5 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 15975.229004, 'pop': 5 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15976.510742, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15978.55542, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 15978.799561, 'pop': 9 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15979.68457, 'pop': 9 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15982.095459, 'pop': 2 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15982.766846, 'pop': 15 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15984.658936, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15988.565186, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15991.067627, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 15991.15918, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 15991.220215, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 15991.372803, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 15991.647461, 'pop': 12 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15993.753174, 'pop': 8 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 15994.882324, 'pop': 18 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 15997.445801, 'pop': 5 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 15998.300293, 'pop': 9 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 15999.09375, 'pop': 20 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 15999.307373, 'pop': 19 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 15999.459961, 'pop': 5 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16001.321533, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16007.516602, 'pop': 5 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16007.730225, 'pop': 9 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16007.79126, 'pop': 9 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16007.852295, 'pop': 9 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16008.004883, 'pop': 8 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16008.218506, 'pop': 8 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 16008.92041, 'pop': 60 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16011.178711, 'pop': 18 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16011.514404, 'pop': 3 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 16012.216309, 'pop': 11 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16015.817383, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16016.031006, 'pop': 15 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16020.333984, 'pop': 8 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16024.362305, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16024.42334, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16024.514893, 'pop': 12 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16024.667481, 'pop': 8 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16024.881104, 'pop': 8 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16026.4375, 'pop': 5 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 16027.871826, 'pop': 13 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16028.787354, 'pop': 4 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16029.397705, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16029.550293, 'pop': 20 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 16030.893067, 'pop': 58 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16033.944824, 'pop': 20 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16033.975342, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16034.341553, 'pop': 17 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 16035.196045, 'pop': 4 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 16038.827637, 'pop': 3 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 16038.91919, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16041.024903, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16041.116455, 'pop': 10 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16041.17749, 'pop': 11 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16041.330078, 'pop': 6 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16041.604736, 'pop': 6 },
{'key': '3656: SICS_SHARED_DIS :: wait_answer_interruptible+0x90 (0x4c)', 'x': 16042.550781, 'pop': 3 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 16042.642334, 'pop': 31 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16043.527344, 'pop': 5 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16045.388916, 'pop': 19 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16045.541504, 'pop': 3 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 16046.121338, 'pop': 6 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16046.762207, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16049.875, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16050.180176, 'pop': 15 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16052.499512, 'pop': 5 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16056.771973, 'pop': 3 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 16057.473877, 'pop': 7 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16057.6875, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16057.748535, 'pop': 11 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16057.80957, 'pop': 14 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16057.962158, 'pop': 7 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16058.206299, 'pop': 7 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16058.938721, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16061.441162, 'pop': 11 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16061.776856, 'pop': 11 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16066.110352, 'pop': 8 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 16066.812256, 'pop': 6 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16072.885254, 'pop': 5 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16074.31958, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16074.380615, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16074.44165, 'pop': 14 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16074.594238, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16074.807861, 'pop': 12 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 16075.357178, 'pop': 30 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 16075.937012, 'pop': 6 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16076.0896, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16078.195313, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16078.500489, 'pop': 15 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16083.383301, 'pop': 9 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16087.68628, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16090.982178, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16091.104248, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16091.165284, 'pop': 14 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16091.287354, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16091.531495, 'pop': 12 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 16092.111328, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16092.508057, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16094.85791, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16095.193604, 'pop': 15 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16097.299317, 'pop': 9 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 16097.573975, 'pop': 20 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16101.54126, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16107.644776, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16107.736328, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16107.797364, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16107.919434, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16108.133057, 'pop': 12 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 16108.621338, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16109.079102, 'pop': 16 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 16110.208252, 'pop': 6 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16111.337403, 'pop': 7 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 16112.222412, 'pop': 62 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16113.992432, 'pop': 18 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16114.328125, 'pop': 18 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16115.762452, 'pop': 3 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 16116.250733, 'pop': 13 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16118.875244, 'pop': 2 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 16119.30249, 'pop': 15 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16123.788575, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16124.337891, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16124.429444, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16124.490479, 'pop': 14 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16124.612549, 'pop': 9 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16124.85669, 'pop': 9 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16125.680664, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16127.87793, 'pop': 13 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16128.030518, 'pop': 3 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16128.274658, 'pop': 13 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 16130.624512, 'pop': 15 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16132.333496, 'pop': 3 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16138.101319, 'pop': 5 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16141.000489, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16141.061524, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16141.122559, 'pop': 14 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16141.275147, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16141.48877, 'pop': 12 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 16142.007569, 'pop': 31 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16142.373779, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16144.63208, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16144.967774, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16146.157959, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16157.663086, 'pop': 10 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16157.876709, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16157.937744, 'pop': 14 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16158.212403, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16158.334473, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16158.883789, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16160.806397, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16161.14209, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16174.295166, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16174.508789, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16174.569824, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16174.691895, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16175.149658, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16175.63794, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16177.743653, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16178.170899, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16191.018799, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16191.171387, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16191.26294, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16191.415527, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16191.537598, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16192.666748, 'pop': 16 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 16193.551758, 'pop': 59 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16194.955567, 'pop': 54 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 16195.657471, 'pop': 68 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16197.793701, 'pop': 19 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16198.098877, 'pop': 19 },
{'key': '3656: SICS_SHARED_DIS :: wait_answer_interruptible+0x90 (0x5b)', 'x': 16200.387695, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16201.120118, 'pop': 5 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 16201.303223, 'pop': 65 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16205.850342, 'pop': 4 },
{'key': '3656: SICS_SHARED_DIS :: wait_answer_interruptible+0x90 (0x5b)', 'x': 16206.460693, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16208.383301, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16208.657959, 'pop': 15 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16208.718995, 'pop': 16 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16208.932618, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16209.90918, 'pop': 11 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16210.763672, 'pop': 18 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16211.007813, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16211.709717, 'pop': 5 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 16211.92334, 'pop': 70 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 16212.075928, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16213.723877, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16214.151123, 'pop': 15 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16215.82959, 'pop': 3 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 16216.470459, 'pop': 9 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 16216.47046, 'pop': 3 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16219.003418, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16221.841553, 'pop': 2 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 16221.933106, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16224.343995, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16224.588135, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16224.64917, 'pop': 12 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16224.801758, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16225.198487, 'pop': 10 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16225.961426, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16227.609375, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16227.822998, 'pop': 13 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16230.630615, 'pop': 8 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 16230.966309, 'pop': 6 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16237.49707, 'pop': 6 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 16237.771729, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16241.03711, 'pop': 12 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16241.250733, 'pop': 12 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16241.342285, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16241.525391, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16241.647461, 'pop': 13 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 16242.776612, 'pop': 95 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16243.112305, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16245.279053, 'pop': 18 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16245.584229, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16257.66919, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16258.279541, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16258.371094, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16258.523682, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16258.828858, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16259.378174, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16262.155274, 'pop': 18 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16262.490967, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16274.30127, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16274.911621, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16275.003174, 'pop': 14 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16275.155762, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16276.010254, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16276.498535, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16278.360107, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16278.573731, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16290.963867, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16291.146973, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16291.238526, 'pop': 14 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16291.360596, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16291.787842, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16292.428711, 'pop': 15 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16294.046143, 'pop': 53 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 16295.114258, 'pop': 72 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16296.426514, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16296.792725, 'pop': 17 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16298.715332, 'pop': 3 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 16299.234131, 'pop': 63 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16302.011231, 'pop': 2 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 16302.53003, 'pop': 61 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 16305.001953, 'pop': 63 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16307.718018, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16307.870606, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16307.962158, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16308.084229, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16308.236817, 'pop': 10 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16308.938721, 'pop': 3 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16309.121826, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16311.47168, 'pop': 18 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16311.685303, 'pop': 14 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16314.462403, 'pop': 5 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 16314.645508, 'pop': 8 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16322.30542, 'pop': 7 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16324.31958, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16324.472168, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16324.533203, 'pop': 14 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16324.685791, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16324.807861, 'pop': 12 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 16325.265625, 'pop': 78 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16325.96753, 'pop': 16 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16327.798584, 'pop': 5 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16327.920655, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16328.256348, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16340.95166, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16341.134766, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16341.195801, 'pop': 14 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16341.317871, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16341.59253, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16342.233399, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16343.942383, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16344.217041, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16357.644776, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16357.827881, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16357.919434, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16358.041504, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16358.46875, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16358.987549, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16360.879639, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16361.24585, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16374.307373, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16374.765137, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16374.85669, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16375.009278, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16375.741699, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16376.229981, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16378.274658, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16378.610352, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16391.0004889999, 'pop': 13 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16391.244629, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16391.305664, 'pop': 14 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16391.458252, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16391.580323, 'pop': 12 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16392.892578, 'pop': 16 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16394.845703, 'pop': 63 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 16395.63916, 'pop': 69 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16396.157959, 'pop': 4 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 16397.439698, 'pop': 84 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16397.592285, 'pop': 18 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16397.989014, 'pop': 18 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16400.888184, 'pop': 3 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 16401.406983, 'pop': 75 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 16401.803711, 'pop': 4 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16403.817871, 'pop': 2 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 16404.33667, 'pop': 72 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16407.632569, 'pop': 10 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16407.846192, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16407.907227, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16408.090332, 'pop': 9 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16408.212403, 'pop': 9 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 16409.738281, 'pop': 80 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16410.073975, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16410.13501, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16413.217285, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16413.583496, 'pop': 14 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16413.888672, 'pop': 3 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 16414.010742, 'pop': 8 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16419.107178, 'pop': 4 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 16419.351319, 'pop': 4 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16423.837403, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16424.569824, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16424.722412, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16424.783447, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16424.966553, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16425.088623, 'pop': 10 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 16426.431397, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16426.76709, 'pop': 17 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16428.53711, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16428.720215, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16440.957764, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16441.201904, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16441.26294, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16441.38501, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16441.476563, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16441.934326, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16443.826416, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16444.101075, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16457.589844, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16457.772949, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16457.833984, 'pop': 14 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16457.986572, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16458.078125, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16458.535889, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16460.214356, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16460.489014, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16474.282959, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16474.435547, 'pop': 15 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16474.496582, 'pop': 14 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16474.64917, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16474.679688, 'pop': 13 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 16474.9848639999, 'pop': 48 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16475.137452, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16476.968506, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16477.121094, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16490.945557, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16491.098145, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16491.15918, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16491.311768, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16491.403321, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16491.830567, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16493.539551, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16493.692139, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16507.577637, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16507.730225, 'pop': 15 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16507.79126, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16507.974366, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16508.035401, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16508.493164, 'pop': 16 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16510.415772, 'pop': 82 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 16510.781983, 'pop': 33 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 16511.57544, 'pop': 96 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16512.552002, 'pop': 18 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16512.979248, 'pop': 18 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16515.268067, 'pop': 3 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 16516.519287, 'pop': 87 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 16517.831543, 'pop': 88 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 16522.134522, 'pop': 8 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16524.30127, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16524.514893, 'pop': 15 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16524.575928, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16524.759033, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16524.820069, 'pop': 11 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16525.644043, 'pop': 16 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 16526.101807, 'pop': 3 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16527.56665, 'pop': 14 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16527.871826, 'pop': 14 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16530.374268, 'pop': 7 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16537.423828, 'pop': 5 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16539.956787, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16540.93335, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16541.146973, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16541.208008, 'pop': 14 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16541.330078, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16541.726807, 'pop': 13 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 16542.18457, 'pop': 109 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16542.672852, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16544.656495, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16544.809082, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16557.595947, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16557.718018, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16557.779053, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16557.901123, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16558.603027, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16559.030274, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16560.495118, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16560.800293, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16574.258545, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16574.350098, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16574.411133, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16574.502686, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16574.746826, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16575.20459, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16576.822022, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16576.97461, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16590.921143, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16591.165284, 'pop': 15 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16591.195801, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16591.348389, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16591.59253, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16592.141846, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16593.667725, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16593.942383, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16607.583741, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16608.072022, 'pop': 15 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16608.133057, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16608.22461, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16608.316162, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16608.743409, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16610.391358, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16610.543946, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16624.246338, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16624.337891, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16624.398926, 'pop': 14 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16624.490479, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16624.765137, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16625.283936, 'pop': 16 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16626.718262, 'pop': 82 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 16627.206543, 'pop': 93 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 16627.694824, 'pop': 100 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16629.556397, 'pop': 18 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16629.861572, 'pop': 18 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16631.448487, 'pop': 3 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 16631.631592, 'pop': 89 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16634.378174, 'pop': 2 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 16634.530762, 'pop': 90 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16639.0473639999, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16640.939453, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16641.031006, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16641.092041, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16641.214112, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16641.580323, 'pop': 11 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16642.49585, 'pop': 16 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16643.197754, 'pop': 3 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 16643.594483, 'pop': 15 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 16644.113281, 'pop': 9 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16645.944336, 'pop': 19 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16646.28003, 'pop': 3 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16646.554688, 'pop': 15 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16647.653321, 'pop': 3 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 16648.141602, 'pop': 3 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 16648.172119, 'pop': 11 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16650.491455, 'pop': 2 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 16650.613526, 'pop': 11 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16653.604248, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16657.602051, 'pop': 10 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16657.693604, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16657.754639, 'pop': 14 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16657.907227, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16658.273438, 'pop': 11 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 16658.883789, 'pop': 9 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16659.066895, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16660.806397, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16660.958984, 'pop': 13 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16674.234131, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16674.478272, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16674.508789, 'pop': 14 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16674.661377, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16674.936035, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16675.454834, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16677.072266, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16677.346924, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16691.049317, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16691.201904, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16691.26294, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16691.415527, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16691.476563, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16691.934326, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16693.643311, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16693.826416, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16707.559327, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16707.742432, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16707.77295, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16707.89502, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16707.986573, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16708.841065, 'pop': 16 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 16709.176758, 'pop': 47 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16710.611084, 'pop': 17 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16710.885742, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16724.466065, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16724.64917, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16724.710205, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16724.801758, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16724.954346, 'pop': 13 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 16725.41211, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16725.53418, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16727.212647, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16727.487305, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16740.915039, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16741.03711, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16741.098145, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16741.220215, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16741.952637, 'pop': 13 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 16742.379883, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16742.501953, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16744.149903, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16744.424561, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16757.699707, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16757.821778, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16757.882813, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16758.035401, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16758.1879889999, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16759.134033, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16760.781983, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16760.93457, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16774.209717, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16774.362305, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16774.392823, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16774.54541, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16774.667481, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16775.613526, 'pop': 16 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 16777.017334, 'pop': 32 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16777.32251, 'pop': 116 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 16778.512696, 'pop': 122 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16781.869629, 'pop': 2 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16782.083252, 'pop': 20 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 16782.449463, 'pop': 122 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16782.510498, 'pop': 20 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 16782.998779, 'pop': 3 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16784.860352, 'pop': 2 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 16785.37915, 'pop': 123 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 16790.689209, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16790.93335, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16791.085938, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16791.146973, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16791.299561, 'pop': 8 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16791.635254, 'pop': 8 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16792.428711, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16794.564942, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16794.900635, 'pop': 11 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16795.022705, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16799.234131, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16807.56543, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16807.718018, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16807.779053, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16807.901123, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16808.206299, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16808.847168, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16810.525635, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16810.800293, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16824.228027, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16824.380615, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16824.44165, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16824.563721, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16824.807861, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16825.32666, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16826.97461, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16827.249268, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16840.890625, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16841.012695, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16841.104248, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16841.195801, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16841.470459, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16841.958741, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16843.576172, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16843.85083, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16857.522705, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16857.644776, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16857.705811, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16857.7973639999, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16858.072022, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16858.590821, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16859.964112, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16860.086182, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16874.215821, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16874.337891, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16874.368409, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16874.459961, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16874.734619, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16875.161866, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16876.687744, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16876.809815, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16890.878418, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16891.092041, 'pop': 15 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16891.153076, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16891.275147, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16891.336182, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16892.129639, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16893.472412, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16893.594483, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16896.096924, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16907.510498, 'pop': 10 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16907.998779, 'pop': 15 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16908.059815, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16908.181885, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16908.303955, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16908.761719, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16910.409668, 'pop': 17 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16910.592774, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16924.203613, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16924.325684, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16924.386719, 'pop': 14 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16924.478272, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16924.600342, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16925.546387, 'pop': 16 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16926.88916, 'pop': 120 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 16927.621582, 'pop': 131 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 16927.6521, 'pop': 125 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16930.368164, 'pop': 2 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 16930.55127, 'pop': 125 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16931.009033, 'pop': 19 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16931.283692, 'pop': 19 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16933.908203, 'pop': 3 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 16934.060791, 'pop': 127 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16936.929444, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16940.591553, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16940.896729, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16940.988281, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16941.049317, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16941.171387, 'pop': 9 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16941.568115, 'pop': 9 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 16942.208984, 'pop': 380 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16942.605713, 'pop': 17 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16943.246582, 'pop': 2 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16944.619873, 'pop': 18 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16945.321778, 'pop': 13 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 16945.352295, 'pop': 10 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16948.373535, 'pop': 2 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 16948.587158, 'pop': 10 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16950.784424, 'pop': 2 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 16950.906495, 'pop': 9 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 16951.272705, 'pop': 22 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 16954.019287, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16957.559326, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16957.650879, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16957.711914, 'pop': 14 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16957.864502, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16958.291748, 'pop': 12 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 16959.146241, 'pop': 7 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16959.237793, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16961.404541, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16961.557129, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16974.191407, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16974.282959, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16974.343995, 'pop': 14 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16974.466065, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16974.771241, 'pop': 12 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16975.259522, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16976.846436, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 16977.121094, 'pop': 14 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 16990.854004, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 16991.067627, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 16991.128662, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 16991.28125, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 16991.342285, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 16991.800049, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 16993.417481, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 16993.570069, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 17007.516602, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 17007.699707, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 17007.760742, 'pop': 14 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 17007.91333, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 17008.554199, 'pop': 14 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 17008.950928, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 17010.507324, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 17010.781983, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 17024.209717, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 17024.42334, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 17024.484375, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 17024.636963, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 17024.850586, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 17025.613526, 'pop': 16 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 17027.261475, 'pop': 2 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 17027.353027, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 17027.597168, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 17040.841797, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 17040.994385, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 17041.024903, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 17041.146973, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 17041.360596, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 17042.001465, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 17043.557861, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 17043.83252, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 17057.656983, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 17057.748535, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 17057.80957, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 17057.901123, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 17058.175781, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 17058.69458, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 17060.34253, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 17060.617188, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 17074.166992, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 17074.289063, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 17074.350098, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 17074.44165, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 17074.777344, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 17075.357178, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 17077.005127, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 17077.249268, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 17090.860108, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 17090.982178, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 17091.012696, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 17091.134766, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 17091.378907, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 17091.806153, 'pop': 16 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 17093.301514, 'pop': 132 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 17093.576172, 'pop': 126 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 17093.972901, 'pop': 136 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 17096.261719, 'pop': 18 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 17096.566895, 'pop': 18 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 17097.665527, 'pop': 3 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 17097.818115, 'pop': 136 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 17100.351075, 'pop': 2 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 17100.53418, 'pop': 139 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 17104.470947, 'pop': 3 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 17104.806641, 'pop': 9 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 17107.553223, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 17107.675293, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 17107.766846, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 17107.888916, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 17108.22461, 'pop': 11 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 17109.048584, 'pop': 16 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 17109.719971, 'pop': 4 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 17110.330323, 'pop': 9 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 17111.581543, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 17111.734131, 'pop': 14 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 17113.046387, 'pop': 2 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 17113.809326, 'pop': 8 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 17114.724854, 'pop': 9 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 17116.250733, 'pop': 10 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 17120.401123, 'pop': 3 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 17120.553711, 'pop': 3 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 17124.215821, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 17124.765137, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 17124.85669, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 17125.009278, 'pop': 12 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 17125.86377, 'pop': 5 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 17126.046875, 'pop': 13 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 17126.443604, 'pop': 174 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 17126.809815, 'pop': 17 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 17128.213623, 'pop': 2 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 17129.342774, 'pop': 17 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 17129.647949, 'pop': 17 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 17140.847901, 'pop': 11 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 17140.969971, 'pop': 13 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 17141.031006, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 17141.183594, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 17141.458252, 'pop': 11 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 17142.129639, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 17143.655518, 'pop': 15 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 17143.960693, 'pop': 13 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 17146.035889, 'pop': 4 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 17157.479981, 'pop': 10 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 17157.541016, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 17157.602051, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 17157.724121, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 17158.029297, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 17158.578613, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 17159.982422, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 17160.287598, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 17174.173096, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 17174.264649, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 17174.295166, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 17174.417236, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 17174.722412, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 17175.241211, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 17176.76709, 'pop': 17 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 17176.88916, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 17190.835694, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 17190.927247, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 17190.988282, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 17191.079834, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 17191.38501, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 17191.903809, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 17193.673828, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 17193.979004, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 17207.498291, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 17207.589844, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 17207.650879, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 17207.742432, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 17208.047607, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 17208.627442, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 17210.153321, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 17210.427979, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 17224.160889, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 17224.252442, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 17224.313477, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 17224.40503, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 17224.710205, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 17225.259522, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 17226.754883, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 17227.029541, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 17240.854004, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 17240.915039, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 17240.976075, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 17241.067627, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 17241.189698, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 17242.196778, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 17243.722656, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 17243.997315, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 17257.486084, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 17257.577637, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 17257.638672, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 17257.730225, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 17257.821778, 'pop': 13 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 17258.79834, 'pop': 16 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 17260.110596, 'pop': 15 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 17260.385254, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 17274.148682, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 17274.240235, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 17274.30127, 'pop': 15 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 17274.392823, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 17274.484375, 'pop': 13 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 17275.460938, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 17276.803711, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 17276.956299, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 17290.963867, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 17291.05542, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 17291.116455, 'pop': 15 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 17291.269043, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 17291.391113, 'pop': 13 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 17292.337158, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 17293.740967, 'pop': 17 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 17293.924072, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 17307.473877, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 17307.595947, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 17307.626465, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 17307.779053, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 17307.901123, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 17308.847168, 'pop': 16 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 17310.525635, 'pop': 175 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 17310.739258, 'pop': 181 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 17311.563233, 'pop': 186 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 17312.997559, 'pop': 19 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 17313.394287, 'pop': 18 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 17314.828613, 'pop': 3 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 17315.286377, 'pop': 185 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 17315.347412, 'pop': 2 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 17317.483643, 'pop': 2 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 17317.666748, 'pop': 182 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 17319.833496, 'pop': 2 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 17322.213867, 'pop': 6 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 17322.30542, 'pop': 2 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 17324.19751, 'pop': 15 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 17324.31958, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 17324.380615, 'pop': 15 },
{'key': '532: Binder_2 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 17324.502686, 'pop': 10 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 17324.868897, 'pop': 10 },
{'key': '3660: BufferLiberator :: futex_wait_queue_me+0xe8 (0x69a2a658)', 'x': 17325.601319, 'pop': 189 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 17326.059082, 'pop': 17 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 17326.608399, 'pop': 4 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 17327.98169, 'pop': 18 },
{'key': '3656: SICS_SHARED_DIS :: futex_wait_queue_me+0xe8 (0x6761ed60)', 'x': 17328.622559, 'pop': 10 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 17328.775147, 'pop': 14 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 17331.552246, 'pop': 2 },
{'key': '3658: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x6761c1d0)', 'x': 17331.704834, 'pop': 11 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 17334.207276, 'pop': 2 },
{'key': '3657: SICS_SHARED_CPU :: futex_wait_queue_me+0xe8 (0x645d9df8)', 'x': 17334.298828, 'pop': 11 },
{'key': '3653: SICS_SHARED_OVE :: sys_epoll_wait+0x308 (0x33)', 'x': 17338.449219, 'pop': 3 },
{'key': '3644: Compiler :: futex_wait_queue_me+0xe8 (0x4089a6bc)', 'x': 17339.70044, 'pop': 16 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 17340.82959, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 17340.95166, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 17341.012695, 'pop': 14 },
{'key': '343: Binder_1 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 17341.195801, 'pop': 11 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 17341.59253, 'pop': 12 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 17342.447022, 'pop': 16 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 17344.156006, 'pop': 17 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 17344.430664, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 17357.492188, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 17357.583741, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 17357.644776, 'pop': 14 },
{'key': '2755: Binder_3 :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 17357.736328, 'pop': 12 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 17358.041504, 'pop': 12 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 17358.590821, 'pop': 16 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 17360.147217, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: binder_thread_read+0xbbc (0x1f)', 'x': 17360.421875, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 17374.154785, 'pop': 14 },
{'key': '342: EventThread :: futex_wait_queue_me+0xe8 (0x41b0a004)', 'x': 17374.246338, 'pop': 14 },
{'key': '168: SurfaceFlinger :: sys_epoll_wait+0x308 (0xc)', 'x': 17374.307373, 'pop': 15 },
{'key': '132: /system/bin/surfaceflinger :: futex_wait_queue_me+0xe8 (0x41876eb4)', 'x': 17374.398926, 'pop': 13 },
{'key': '3637: com.amazon.sics.example :: binder_thread_read+0x9dc (0x9)', 'x': 17374.704102, 'pop': 13 },
{'key': '2755: Binder_3 :: binder_thread_read+0xbbc (0x1f)', 'x': 17375.253418, 'pop': 16 },
{'key': '343: Binder_1 :: binder_thread_read+0xbbc (0x1f)', 'x': 17376.809815, 'pop': 15 },
{'key': '532: Binder_2 :: binder_thread_read+0xbbc (0x1f)', 'x': 17377.084473, 'pop': 15 },
{'key': '281: SurfaceFlinger :: poll_schedule_timeout+0x48 (0x41612eb0)', 'x': 17390.817383, 'pop': 14 },
{'key': '342: EventThread ::
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment