{"url":"https://api.github.com/gists/4062085","forks_url":"https://api.github.com/gists/4062085/forks","commits_url":"https://api.github.com/gists/4062085/commits","id":"4062085","node_id":"MDQ6R2lzdDQwNjIwODU=","git_pull_url":"https://gist.github.com/4062085.git","git_push_url":"https://gist.github.com/4062085.git","html_url":"https://gist.github.com/mbostock/4062085","files":{".block":{"filename":".block","type":"text/plain","language":null,"raw_url":"https://gist.githubusercontent.com/mbostock/4062085/raw/ca4705a47eaf4e04b9d286db3f2bbbcba62c7cc9/.block","size":94,"truncated":false,"content":"license: gpl-3.0\nredirect: https://observablehq.com/@mbostock/u-s-population-by-age-1850-2000\n","encoding":"utf-8"},"README.md":{"filename":"README.md","type":"text/markdown","language":"Markdown","raw_url":"https://gist.githubusercontent.com/mbostock/4062085/raw/381397a9c04cd8726c53a70d0cbe718f92042d66/README.md","size":625,"truncated":false,"content":"This diagram shows the distribution of age groups in the United States over the last 150 years. Use the arrow keys to observe the changing population. Data from the [Minnesota Population Center](http://ipums.org/). Use the arrow keys to change the displayed year. The blue bars are the male population for each five-year age bracket, while the pink bars are the female population; the bars are partially transparent so that you can see how they overlap, unlike the traditional [side-by-side](http://en.wikipedia.org/wiki/Population_pyramid) display which makes it difficult to compare the relative distribution of the sexes.\n","encoding":"utf-8"},"index.html":{"filename":"index.html","type":"text/html","language":"HTML","raw_url":"https://gist.githubusercontent.com/mbostock/4062085/raw/aba37b1c7d8b3ad39b673ef273183c83ee516fbf/index.html","size":4575,"truncated":false,"content":"<!DOCTYPE html>\n<meta charset=\"utf-8\">\n<style>\n\nsvg {\n  font: 10px sans-serif;\n}\n\n.y.axis path {\n  display: none;\n}\n\n.y.axis line {\n  stroke: #fff;\n  stroke-opacity: .2;\n  shape-rendering: crispEdges;\n}\n\n.y.axis .zero line {\n  stroke: #000;\n  stroke-opacity: 1;\n}\n\n.title {\n  font: 300 78px Helvetica Neue;\n  fill: #666;\n}\n\n.birthyear,\n.age {\n  text-anchor: middle;\n}\n\n.birthyear {\n  fill: #fff;\n}\n\nrect {\n  fill-opacity: .6;\n  fill: #e377c2;\n}\n\nrect:first-child {\n  fill: #1f77b4;\n}\n\n</style>\n<body>\n<script src=\"//d3js.org/d3.v3.min.js\"></script>\n<script>\n\nvar margin = {top: 20, right: 40, bottom: 30, left: 20},\n    width = 960 - margin.left - margin.right,\n    height = 500 - margin.top - margin.bottom,\n    barWidth = Math.floor(width / 19) - 1;\n\nvar x = d3.scale.linear()\n    .range([barWidth / 2, width - barWidth / 2]);\n\nvar y = d3.scale.linear()\n    .range([height, 0]);\n\nvar yAxis = d3.svg.axis()\n    .scale(y)\n    .orient(\"right\")\n    .tickSize(-width)\n    .tickFormat(function(d) { return Math.round(d / 1e6) + \"M\"; });\n\n// An SVG element with a bottom-right origin.\nvar svg = d3.select(\"body\").append(\"svg\")\n    .attr(\"width\", width + margin.left + margin.right)\n    .attr(\"height\", height + margin.top + margin.bottom)\n  .append(\"g\")\n    .attr(\"transform\", \"translate(\" + margin.left + \",\" + margin.top + \")\");\n\n// A sliding container to hold the bars by birthyear.\nvar birthyears = svg.append(\"g\")\n    .attr(\"class\", \"birthyears\");\n\n// A label for the current year.\nvar title = svg.append(\"text\")\n    .attr(\"class\", \"title\")\n    .attr(\"dy\", \".71em\")\n    .text(2000);\n\nd3.csv(\"population.csv\", function(error, data) {\n\n  // Convert strings to numbers.\n  data.forEach(function(d) {\n    d.people = +d.people;\n    d.year = +d.year;\n    d.age = +d.age;\n  });\n\n  // Compute the extent of the data set in age and years.\n  var age1 = d3.max(data, function(d) { return d.age; }),\n      year0 = d3.min(data, function(d) { return d.year; }),\n      year1 = d3.max(data, function(d) { return d.year; }),\n      year = year1;\n\n  // Update the scale domains.\n  x.domain([year1 - age1, year1]);\n  y.domain([0, d3.max(data, function(d) { return d.people; })]);\n\n  // Produce a map from year and birthyear to [male, female].\n  data = d3.nest()\n      .key(function(d) { return d.year; })\n      .key(function(d) { return d.year - d.age; })\n      .rollup(function(v) { return v.map(function(d) { return d.people; }); })\n      .map(data);\n\n  // Add an axis to show the population values.\n  svg.append(\"g\")\n      .attr(\"class\", \"y axis\")\n      .attr(\"transform\", \"translate(\" + width + \",0)\")\n      .call(yAxis)\n    .selectAll(\"g\")\n    .filter(function(value) { return !value; })\n      .classed(\"zero\", true);\n\n  // Add labeled rects for each birthyear (so that no enter or exit is required).\n  var birthyear = birthyears.selectAll(\".birthyear\")\n      .data(d3.range(year0 - age1, year1 + 1, 5))\n    .enter().append(\"g\")\n      .attr(\"class\", \"birthyear\")\n      .attr(\"transform\", function(birthyear) { return \"translate(\" + x(birthyear) + \",0)\"; });\n\n  birthyear.selectAll(\"rect\")\n      .data(function(birthyear) { return data[year][birthyear] || [0, 0]; })\n    .enter().append(\"rect\")\n      .attr(\"x\", -barWidth / 2)\n      .attr(\"width\", barWidth)\n      .attr(\"y\", y)\n      .attr(\"height\", function(value) { return height - y(value); });\n\n  // Add labels to show birthyear.\n  birthyear.append(\"text\")\n      .attr(\"y\", height - 4)\n      .text(function(birthyear) { return birthyear; });\n\n  // Add labels to show age (separate; not animated).\n  svg.selectAll(\".age\")\n      .data(d3.range(0, age1 + 1, 5))\n    .enter().append(\"text\")\n      .attr(\"class\", \"age\")\n      .attr(\"x\", function(age) { return x(year - age); })\n      .attr(\"y\", height + 4)\n      .attr(\"dy\", \".71em\")\n      .text(function(age) { return age; });\n\n  // Allow the arrow keys to change the displayed year.\n  window.focus();\n  d3.select(window).on(\"keydown\", function() {\n    switch (d3.event.keyCode) {\n      case 37: year = Math.max(year0, year - 10); break;\n      case 39: year = Math.min(year1, year + 10); break;\n    }\n    update();\n  });\n\n  function update() {\n    if (!(year in data)) return;\n    title.text(year);\n\n    birthyears.transition()\n        .duration(750)\n        .attr(\"transform\", \"translate(\" + (x(year1) - x(year)) + \",0)\");\n\n    birthyear.selectAll(\"rect\")\n        .data(function(birthyear) { return data[year][birthyear] || [0, 0]; })\n      .transition()\n        .duration(750)\n        .attr(\"y\", y)\n        .attr(\"height\", function(value) { return height - y(value); });\n  }\n});\n\n</script>\n","encoding":"utf-8"},"population.csv":{"filename":"population.csv","type":"text/csv","language":"CSV","raw_url":"https://gist.githubusercontent.com/mbostock/4062085/raw/06aa28be299a221ff6edf4b7d04522dcb55b7aca/population.csv","size":10015,"truncated":false,"content":"year,age,sex,people\n1850,0,1,1483789\n1850,0,2,1450376\n1850,5,1,1411067\n1850,5,2,1359668\n1850,10,1,1260099\n1850,10,2,1216114\n1850,15,1,1077133\n1850,15,2,1110619\n1850,20,1,1017281\n1850,20,2,1003841\n1850,25,1,862547\n1850,25,2,799482\n1850,30,1,730638\n1850,30,2,639636\n1850,35,1,588487\n1850,35,2,505012\n1850,40,1,475911\n1850,40,2,428185\n1850,45,1,384211\n1850,45,2,341254\n1850,50,1,321343\n1850,50,2,286580\n1850,55,1,194080\n1850,55,2,187208\n1850,60,1,174976\n1850,60,2,162236\n1850,65,1,106827\n1850,65,2,105534\n1850,70,1,73677\n1850,70,2,71762\n1850,75,1,40834\n1850,75,2,40229\n1850,80,1,23449\n1850,80,2,22949\n1850,85,1,8186\n1850,85,2,10511\n1850,90,1,5259\n1850,90,2,6569\n1860,0,1,2120846\n1860,0,2,2092162\n1860,5,1,1804467\n1860,5,2,1778772\n1860,10,1,1612640\n1860,10,2,1540350\n1860,15,1,1438094\n1860,15,2,1495999\n1860,20,1,1351121\n1860,20,2,1370462\n1860,25,1,1217615\n1860,25,2,1116373\n1860,30,1,1043174\n1860,30,2,936055\n1860,35,1,866910\n1860,35,2,737136\n1860,40,1,699434\n1860,40,2,616826\n1860,45,1,552404\n1860,45,2,461739\n1860,50,1,456176\n1860,50,2,407305\n1860,55,1,292417\n1860,55,2,267224\n1860,60,1,260887\n1860,60,2,249735\n1860,65,1,149331\n1860,65,2,141405\n1860,70,1,98465\n1860,70,2,101778\n1860,75,1,56699\n1860,75,2,57597\n1860,80,1,29007\n1860,80,2,29506\n1860,85,1,10434\n1860,85,2,14053\n1860,90,1,7232\n1860,90,2,6622\n1870,0,1,2800083\n1870,0,2,2717102\n1870,5,1,2428469\n1870,5,2,2393680\n1870,10,1,2427341\n1870,10,2,2342670\n1870,15,1,1958390\n1870,15,2,2077248\n1870,20,1,1805303\n1870,20,2,1909382\n1870,25,1,1509059\n1870,25,2,1574285\n1870,30,1,1251534\n1870,30,2,1275629\n1870,35,1,1185336\n1870,35,2,1137490\n1870,40,1,968861\n1870,40,2,944401\n1870,45,1,852672\n1870,45,2,747916\n1870,50,1,736387\n1870,50,2,637801\n1870,55,1,486036\n1870,55,2,407819\n1870,60,1,399264\n1870,60,2,374801\n1870,65,1,260829\n1870,65,2,239080\n1870,70,1,173364\n1870,70,2,165501\n1870,75,1,86929\n1870,75,2,89540\n1870,80,1,47427\n1870,80,2,54190\n1870,85,1,15891\n1870,85,2,19302\n1870,90,1,8649\n1870,90,2,13068\n1880,0,1,3533662\n1880,0,2,3421597\n1880,5,1,3297503\n1880,5,2,3179142\n1880,10,1,2911924\n1880,10,2,2813550\n1880,15,1,2457734\n1880,15,2,2527818\n1880,20,1,2547780\n1880,20,2,2512803\n1880,25,1,2119393\n1880,25,2,1974241\n1880,30,1,1749107\n1880,30,2,1596772\n1880,35,1,1540772\n1880,35,2,1483717\n1880,40,1,1237347\n1880,40,2,1239435\n1880,45,1,1065973\n1880,45,2,1003711\n1880,50,1,964484\n1880,50,2,863012\n1880,55,1,679147\n1880,55,2,594843\n1880,60,1,580298\n1880,60,2,526956\n1880,65,1,369398\n1880,65,2,346303\n1880,70,1,255422\n1880,70,2,251860\n1880,75,1,141628\n1880,75,2,143513\n1880,80,1,67526\n1880,80,2,77290\n1880,85,1,22437\n1880,85,2,31227\n1880,90,1,10272\n1880,90,2,15451\n1900,0,1,4619544\n1900,0,2,4589196\n1900,5,1,4465783\n1900,5,2,4390483\n1900,10,1,4057669\n1900,10,2,4001749\n1900,15,1,3774846\n1900,15,2,3801743\n1900,20,1,3694038\n1900,20,2,3751061\n1900,25,1,3389280\n1900,25,2,3236056\n1900,30,1,2918964\n1900,30,2,2665174\n1900,35,1,2633883\n1900,35,2,2347737\n1900,40,1,2261070\n1900,40,2,2004987\n1900,45,1,1868413\n1900,45,2,1648025\n1900,50,1,1571038\n1900,50,2,1411981\n1900,55,1,1161908\n1900,55,2,1064632\n1900,60,1,916571\n1900,60,2,887508\n1900,65,1,672663\n1900,65,2,640212\n1900,70,1,454747\n1900,70,2,440007\n1900,75,1,268211\n1900,75,2,265879\n1900,80,1,127435\n1900,80,2,132449\n1900,85,1,44008\n1900,85,2,48614\n1900,90,1,15164\n1900,90,2,20093\n1910,0,1,5296823\n1910,0,2,5287477\n1910,5,1,4991803\n1910,5,2,4866139\n1910,10,1,4650747\n1910,10,2,4471887\n1910,15,1,4566154\n1910,15,2,4592269\n1910,20,1,4637632\n1910,20,2,4447683\n1910,25,1,4257755\n1910,25,2,3946153\n1910,30,1,3658125\n1910,30,2,3295220\n1910,35,1,3427518\n1910,35,2,3088990\n1910,40,1,2860229\n1910,40,2,2471267\n1910,45,1,2363801\n1910,45,2,2114930\n1910,50,1,2126516\n1910,50,2,1773592\n1910,55,1,1508358\n1910,55,2,1317651\n1910,60,1,1189421\n1910,60,2,1090697\n1910,65,1,850159\n1910,65,2,813868\n1910,70,1,557936\n1910,70,2,547623\n1910,75,1,322679\n1910,75,2,350900\n1910,80,1,161715\n1910,80,2,174315\n1910,85,1,59699\n1910,85,2,62725\n1910,90,1,23929\n1910,90,2,28965\n1920,0,1,5934792\n1920,0,2,5694244\n1920,5,1,5789008\n1920,5,2,5693960\n1920,10,1,5401156\n1920,10,2,5293057\n1920,15,1,4724365\n1920,15,2,4779936\n1920,20,1,4549411\n1920,20,2,4742632\n1920,25,1,4565066\n1920,25,2,4529382\n1920,30,1,4110771\n1920,30,2,3982426\n1920,35,1,4081543\n1920,35,2,3713810\n1920,40,1,3321923\n1920,40,2,3059757\n1920,45,1,3143891\n1920,45,2,2669089\n1920,50,1,2546035\n1920,50,2,2200491\n1920,55,1,1880975\n1920,55,2,1674672\n1920,60,1,1587549\n1920,60,2,1382877\n1920,65,1,1095956\n1920,65,2,989901\n1920,70,1,714618\n1920,70,2,690097\n1920,75,1,417292\n1920,75,2,439465\n1920,80,1,187000\n1920,80,2,211110\n1920,85,1,75991\n1920,85,2,92829\n1920,90,1,22398\n1920,90,2,32085\n1930,0,1,5875250\n1930,0,2,5662530\n1930,5,1,6542592\n1930,5,2,6129561\n1930,10,1,6064820\n1930,10,2,5986529\n1930,15,1,5709452\n1930,15,2,5769587\n1930,20,1,5305992\n1930,20,2,5565382\n1930,25,1,4929853\n1930,25,2,5050229\n1930,30,1,4424408\n1930,30,2,4455213\n1930,35,1,4576531\n1930,35,2,4593776\n1930,40,1,4075139\n1930,40,2,3754022\n1930,45,1,3633152\n1930,45,2,3396558\n1930,50,1,3128108\n1930,50,2,2809191\n1930,55,1,2434077\n1930,55,2,2298614\n1930,60,1,1927564\n1930,60,2,1783515\n1930,65,1,1397275\n1930,65,2,1307312\n1930,70,1,919045\n1930,70,2,918509\n1930,75,1,536375\n1930,75,2,522716\n1930,80,1,246708\n1930,80,2,283579\n1930,85,1,88978\n1930,85,2,109210\n1930,90,1,30338\n1930,90,2,43483\n1940,0,1,5294628\n1940,0,2,5124653\n1940,5,1,5468378\n1940,5,2,5359099\n1940,10,1,5960416\n1940,10,2,5868532\n1940,15,1,6165109\n1940,15,2,6193701\n1940,20,1,5682414\n1940,20,2,5896002\n1940,25,1,5438166\n1940,25,2,5664244\n1940,30,1,5040048\n1940,30,2,5171522\n1940,35,1,4724804\n1940,35,2,4791809\n1940,40,1,4437392\n1940,40,2,4394061\n1940,45,1,4190187\n1940,45,2,4050290\n1940,50,1,3785735\n1940,50,2,3488396\n1940,55,1,2972069\n1940,55,2,2810000\n1940,60,1,2370232\n1940,60,2,2317790\n1940,65,1,1897678\n1940,65,2,1911117\n1940,70,1,1280023\n1940,70,2,1287711\n1940,75,1,713875\n1940,75,2,764915\n1940,80,1,359418\n1940,80,2,414761\n1940,85,1,127303\n1940,85,2,152131\n1940,90,1,42263\n1940,90,2,58119\n1950,0,1,8211806\n1950,0,2,7862267\n1950,5,1,6706601\n1950,5,2,6450863\n1950,10,1,5629744\n1950,10,2,5430835\n1950,15,1,5264129\n1950,15,2,5288742\n1950,20,1,5573308\n1950,20,2,5854227\n1950,25,1,6007254\n1950,25,2,6317332\n1950,30,1,5676022\n1950,30,2,5895178\n1950,35,1,5511364\n1950,35,2,5696261\n1950,40,1,5076985\n1950,40,2,5199224\n1950,45,1,4533177\n1950,45,2,4595842\n1950,50,1,4199164\n1950,50,2,4147295\n1950,55,1,3667351\n1950,55,2,3595158\n1950,60,1,3035038\n1950,60,2,3009768\n1950,65,1,2421234\n1950,65,2,2548250\n1950,70,1,1627920\n1950,70,2,1786831\n1950,75,1,1006530\n1950,75,2,1148469\n1950,80,1,511727\n1950,80,2,637717\n1950,85,1,182821\n1950,85,2,242798\n1950,90,1,54836\n1950,90,2,90766\n1960,0,1,10374975\n1960,0,2,10146999\n1960,5,1,9495503\n1960,5,2,9250741\n1960,10,1,8563700\n1960,10,2,8310764\n1960,15,1,6620902\n1960,15,2,6617493\n1960,20,1,5268384\n1960,20,2,5513495\n1960,25,1,5311805\n1960,25,2,5548259\n1960,30,1,5801342\n1960,30,2,6090862\n1960,35,1,6063063\n1960,35,2,6431337\n1960,40,1,5657943\n1960,40,2,5940520\n1960,45,1,5345658\n1960,45,2,5516028\n1960,50,1,4763364\n1960,50,2,4928844\n1960,55,1,4170581\n1960,55,2,4402878\n1960,60,1,3405293\n1960,60,2,3723839\n1960,65,1,2859371\n1960,65,2,3268699\n1960,70,1,2115763\n1960,70,2,2516479\n1960,75,1,1308913\n1960,75,2,1641371\n1960,80,1,619923\n1960,80,2,856952\n1960,85,1,253245\n1960,85,2,384572\n1960,90,1,75908\n1960,90,2,135774\n1970,0,1,8685121\n1970,0,2,8326887\n1970,5,1,10411131\n1970,5,2,10003293\n1970,10,1,10756403\n1970,10,2,10343538\n1970,15,1,9605399\n1970,15,2,9414284\n1970,20,1,7729202\n1970,20,2,8341830\n1970,25,1,6539301\n1970,25,2,6903041\n1970,30,1,5519879\n1970,30,2,5851441\n1970,35,1,5396732\n1970,35,2,5708021\n1970,40,1,5718538\n1970,40,2,6129319\n1970,45,1,5794120\n1970,45,2,6198742\n1970,50,1,5298312\n1970,50,2,5783817\n1970,55,1,4762911\n1970,55,2,5222164\n1970,60,1,4037643\n1970,60,2,4577251\n1970,65,1,3142606\n1970,65,2,3894827\n1970,70,1,2340826\n1970,70,2,3138009\n1970,75,1,1599269\n1970,75,2,2293376\n1970,80,1,886155\n1970,80,2,1417553\n1970,85,1,371123\n1970,85,2,658511\n1970,90,1,186502\n1970,90,2,314929\n1980,0,1,8439366\n1980,0,2,8081854\n1980,5,1,8680730\n1980,5,2,8275881\n1980,10,1,9452338\n1980,10,2,9048483\n1980,15,1,10698856\n1980,15,2,10410271\n1980,20,1,10486776\n1980,20,2,10614947\n1980,25,1,9624053\n1980,25,2,9827903\n1980,30,1,8705835\n1980,30,2,8955225\n1980,35,1,6852069\n1980,35,2,7134239\n1980,40,1,5692148\n1980,40,2,5953910\n1980,45,1,5342469\n1980,45,2,5697543\n1980,50,1,5603709\n1980,50,2,6110117\n1980,55,1,5485098\n1980,55,2,6160229\n1980,60,1,4696140\n1980,60,2,5456885\n1980,65,1,3893510\n1980,65,2,4896947\n1980,70,1,2857774\n1980,70,2,3963441\n1980,75,1,1840438\n1980,75,2,2951759\n1980,80,1,1012886\n1980,80,2,1919292\n1980,85,1,472338\n1980,85,2,1023115\n1980,90,1,204148\n1980,90,2,499046\n1990,0,1,9307465\n1990,0,2,8894007\n1990,5,1,9274732\n1990,5,2,8799955\n1990,10,1,8782542\n1990,10,2,8337284\n1990,15,1,9020572\n1990,15,2,8590991\n1990,20,1,9436188\n1990,20,2,9152644\n1990,25,1,10658027\n1990,25,2,10587292\n1990,30,1,11028712\n1990,30,2,11105750\n1990,35,1,9853933\n1990,35,2,10038644\n1990,40,1,8712632\n1990,40,2,8928252\n1990,45,1,6848082\n1990,45,2,7115129\n1990,50,1,5553992\n1990,50,2,5899925\n1990,55,1,4981670\n1990,55,2,5460506\n1990,60,1,4953822\n1990,60,2,5663205\n1990,65,1,4538398\n1990,65,2,5594108\n1990,70,1,3429420\n1990,70,2,4610222\n1990,75,1,2344932\n1990,75,2,3723980\n1990,80,1,1342996\n1990,80,2,2545730\n1990,85,1,588790\n1990,85,2,1419494\n1990,90,1,238459\n1990,90,2,745146\n2000,0,1,9735380\n2000,0,2,9310714\n2000,5,1,10552146\n2000,5,2,10069564\n2000,10,1,10563233\n2000,10,2,10022524\n2000,15,1,10237419\n2000,15,2,9692669\n2000,20,1,9731315\n2000,20,2,9324244\n2000,25,1,9659493\n2000,25,2,9518507\n2000,30,1,10205879\n2000,30,2,10119296\n2000,35,1,11475182\n2000,35,2,11635647\n2000,40,1,11320252\n2000,40,2,11488578\n2000,45,1,9925006\n2000,45,2,10261253\n2000,50,1,8507934\n2000,50,2,8911133\n2000,55,1,6459082\n2000,55,2,6921268\n2000,60,1,5123399\n2000,60,2,5668961\n2000,65,1,4453623\n2000,65,2,4804784\n2000,70,1,3792145\n2000,70,2,5184855\n2000,75,1,2912655\n2000,75,2,4355644\n2000,80,1,1902638\n2000,80,2,3221898\n2000,85,1,970357\n2000,85,2,1981156\n2000,90,1,336303\n2000,90,2,1064581\n","encoding":"utf-8"},"thumbnail.png":{"filename":"thumbnail.png","type":"image/png","language":null,"raw_url":"https://gist.githubusercontent.com/mbostock/4062085/raw/15b44eecbb051cb6c480ed852835b65e503945b8/thumbnail.png","size":11870,"truncated":false,"content":"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\nWHhYZFvUWfROYUwJnpI7pWnKq6n6U+OmbpzaPvWrpa1lquVey3tWSlaBVrlW\nLVZvrE2t2dbl1tdtqDa+Nsttmm1eTzObxp22Y9ptW7rtDNvVtm22X+zs7UR2\n9Xb99vr28fYV9rcclB1CHYocLjgSHD0dlzsed/zoZOeU5XTI6Q9nC+cU533O\nz6cbTedO3zv9sYuuC8tlt0uPK9M13nWXa4+bjhvLrdLtkbueO8e9yv2Zh4lH\nssd+j1eelp4iz6Oe772cvJZ6tXpj3n7eBd6dPko+kT5lPg99dX2TfOt8B/1s\n/Rb7tfoT/IP8N/rfCtAMYAfUBgwG2gcuDTwbRAkKDyoLehRsGiwKbpmBzgic\nsWnG/ZkGMwUzm0JASEDIppAHoUahGaG/zCLOCp1VPutpmFXYkrD2cHr4/PB9\n4e8iPCPWR9yLNI4UR7ZFyUfNiaqNeh/tHV0c3RMzNWZpzOVY9Vh+bHMcKS4q\nripuaLbP7C2z++bYzsmfc3Ou0dyFcy/OU5+XOu/EfPn5rPmH4wnx0fH74j+z\nQliVrKGEgISKhEG2F3sr+yXHnbOZ08914RZznyW6JBYnPk9ySdqU1M9z45Xw\nBvhe/DL+62T/5J3J71NCUqpTRlKjUxvSZNLi044JlAQpgrPpWukL07uFZsJ8\nYU+GU8aWjEFRkKgqE8mcm9mcpQwvuR1iY/EP4t5s1+zy7A8LohYcXqi4ULCw\nY5HporWLnuX45vy0GF/MXty2RGfJyiW9Sz2W7l6GLEtY1rZcb3ne8r4Vfitq\nVpJXpqz8Ndcytzj3z1XRq1ryNPNW5D3+we+Hunxavij/1mrn1TvX4Gv4azrX\n2qzdtvZrAafgUqFlYUnh5yJ20aUfrX4s/XFkXeK6zvV263dsIG4QbLi50W1j\nTbFicU7x400zNjVuZm4u2PznlvlbLpZMK9m5lbxVvLWnNLi0eZv+tg3bPpfx\nym6Ue5Y3VGhUrK14v52z/eoO9x31OzV3Fu78tIu/6/Zuv92NlYaVJXuIe7L3\nPN0btbf9J4efaqvUqwqrvlQLqntqwmrO1trX1u7T2Le+Dq0T1/Xvn7O/64D3\ngeZ6i/rdDYyGwoPgoPjgi5/jf755KOhQ22GHw/VHDI5UHKUfLWhEGhc1Djbx\nmnqaY5u7jwUea2txbjn6y5Rfqo/rHC8/oXJi/UnyybyTI6dyTg21ClsHTied\nftw2v+3emZgz18/OOtt5LujchfO+58+0e7SfuuBy4fhFp4vHLjlcarpsd7mx\nw7bj6K+2vx7ttOtsvGJ/pbnLsaule3r3yatuV09f8752/nrA9cs3Zt7ovhl5\n8/atObd6bnNuP7+Teuf13ey7w/dW3CfcL3ig8KDkocbDyt9Mfmvoses50evd\n2/Eo/NG9x+zHL59kPvncl/eU+rTkmfaz2ufWz4/3+/Z3vZj9ou+l8OXwQP7v\nir9XvDJ+deQP9z86BmMG+16LXo+8KXqr9rb6z2l/tg2FDj18l/Zu+H3BB7UP\nNR8dPrZ/iv70bHjBZ9Ln0i8mX1q+Bn29P5I2MiJkiVjSqwAGK5qYCMCbapi3\nxMK7QxcAZNpobiQtyGg+JyXwTzyaP0mLHQDV7gBErgAgGN5RdsBqAJkCn5Jr\nfoQ7QG1sJupYyUy0sR61RYEZAOHDyMhbTQBILQB8EY2MDG8fGfkCczzsDgCt\nGaM5maQQ4T1+F01CFzuLVnyfG/0HKZdga3svC0sAAAAGYktHRAD/AP8A/6C9\np5MAAAAJb0ZGcwAAABwAAAA9AMTWPJAAAAAJcEhZcwAAFiUAABYlAUlSJPAA\nACH5SURBVHja7Z3rjxzHee5/VdVzn9n7crlccpekeZNIXS1ZlGSdWE5s50hx\nnARQDJwYBwjg4AD5k4J8TZBjGXAM2R8M2XJsnziyJVmXUDdKvHPv952dnUt3\nV50P3TO7y52drrW43KFUjzCgJD5T89Zb/XRX1/vWW8IYY3BwcOgqyIM2wMHB\nYSecMB0cuhBOmA4OXQiv018aY1haWmJpaQmAwcFB+vv7EULs4FYqFWZnZ2k0\nGvT29jI8PIzn7Wze931mZ2dZX18nm80yMjJCLpfbwdNas7S0xOLiIlJKhoeH\n6evrO2h/fS5hfE24WgeL1QaRkqjeDIhkrsMfj12FWavV+PnPf86lS5fI5XJo\nralWq1y4cIFvfOMb28T0/vvv87Of/QytNel0mkqlwrFjx/j2t79Nb29vizc3\nN8crr7zC/Pw8hUKBWq1GJpPhL/7iLzh58uS233711Ve5dOkS+XwerTWNRoOv\nfvWrPP3000jpHvRJMNqAtlEaBKs11l+fxgQ6oVHwBrKUnh1DeG4M9hO7CvOX\nv/wl7777Li+99BITExMYY7hy5Qo//OEPUUrx4osvAnD9+nVefvllnnnmGZ59\n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\n","encoding":"base64"}},"public":true,"created_at":"2012-11-12T21:38:13Z","updated_at":"2023-05-19T13:31:37Z","description":"Population Pyramid","comments":1,"user":null,"comments_enabled":true,"comments_url":"https://api.github.com/gists/4062085/comments","owner":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"forks":[{"url":"https://api.github.com/gists/4688351","user":{"login":"iveney","id":51033,"node_id":"MDQ6VXNlcjUxMDMz","avatar_url":"https://avatars.githubusercontent.com/u/51033?v=4","gravatar_id":"","url":"https://api.github.com/users/iveney","html_url":"https://github.com/iveney","followers_url":"https://api.github.com/users/iveney/followers","following_url":"https://api.github.com/users/iveney/following{/other_user}","gists_url":"https://api.github.com/users/iveney/gists{/gist_id}","starred_url":"https://api.github.com/users/iveney/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iveney/subscriptions","organizations_url":"https://api.github.com/users/iveney/orgs","repos_url":"https://api.github.com/users/iveney/repos","events_url":"https://api.github.com/users/iveney/events{/privacy}","received_events_url":"https://api.github.com/users/iveney/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Ivan Xiao","company":null,"blog":"ivanxiao.com","location":"San Francisco, CA","email":null,"hireable":null,"bio":null,"twitter_username":"ivanzxiao","public_repos":108,"public_gists":17,"followers":46,"following":7,"created_at":"2009-02-02T05:39:12Z","updated_at":"2025-07-20T18:32:04Z"},"id":"4688351","created_at":"2013-02-01T01:16:37Z","updated_at":"2015-12-12T01:08:45Z"},{"url":"https://api.github.com/gists/5000038","user":{"login":"davo","id":76307,"node_id":"MDQ6VXNlcjc2MzA3","avatar_url":"https://avatars.githubusercontent.com/u/76307?v=4","gravatar_id":"","url":"https://api.github.com/users/davo","html_url":"https://github.com/davo","followers_url":"https://api.github.com/users/davo/followers","following_url":"https://api.github.com/users/davo/following{/other_user}","gists_url":"https://api.github.com/users/davo/gists{/gist_id}","starred_url":"https://api.github.com/users/davo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/davo/subscriptions","organizations_url":"https://api.github.com/users/davo/orgs","repos_url":"https://api.github.com/users/davo/repos","events_url":"https://api.github.com/users/davo/events{/privacy}","received_events_url":"https://api.github.com/users/davo/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Davo Galavotti","company":"@DataDog ","blog":"https//pixelbeat.co/","location":"New York, NY","email":null,"hireable":true,"bio":"A designer who codes. My work is focused on data visualization, frontend & prototyping with web technologies.","twitter_username":"pixelbeat","public_repos":301,"public_gists":159,"followers":247,"following":438,"created_at":"2009-04-21T22:48:40Z","updated_at":"2026-03-13T20:24:09Z"},"id":"5000038","created_at":"2013-02-20T21:59:35Z","updated_at":"2015-12-14T00:39:00Z"},{"url":"https://api.github.com/gists/6223504","user":{"login":"bollwyvl","id":45380,"node_id":"MDQ6VXNlcjQ1Mzgw","avatar_url":"https://avatars.githubusercontent.com/u/45380?v=4","gravatar_id":"","url":"https://api.github.com/users/bollwyvl","html_url":"https://github.com/bollwyvl","followers_url":"https://api.github.com/users/bollwyvl/followers","following_url":"https://api.github.com/users/bollwyvl/following{/other_user}","gists_url":"https://api.github.com/users/bollwyvl/gists{/gist_id}","starred_url":"https://api.github.com/users/bollwyvl/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bollwyvl/subscriptions","organizations_url":"https://api.github.com/users/bollwyvl/orgs","repos_url":"https://api.github.com/users/bollwyvl/repos","events_url":"https://api.github.com/users/bollwyvl/events{/privacy}","received_events_url":"https://api.github.com/users/bollwyvl/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Nicholas Bollweg","company":null,"blog":"","location":"MN, USA","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":1085,"public_gists":244,"followers":247,"following":3,"created_at":"2009-01-09T18:01:57Z","updated_at":"2026-04-14T14:32:03Z"},"id":"6223504","created_at":"2013-08-13T17:25:54Z","updated_at":"2015-12-21T00:49:25Z"},{"url":"https://api.github.com/gists/6504666","user":{"login":"lcochrane","id":1198270,"node_id":"MDQ6VXNlcjExOTgyNzA=","avatar_url":"https://avatars.githubusercontent.com/u/1198270?v=4","gravatar_id":"","url":"https://api.github.com/users/lcochrane","html_url":"https://github.com/lcochrane","followers_url":"https://api.github.com/users/lcochrane/followers","following_url":"https://api.github.com/users/lcochrane/following{/other_user}","gists_url":"https://api.github.com/users/lcochrane/gists{/gist_id}","starred_url":"https://api.github.com/users/lcochrane/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lcochrane/subscriptions","organizations_url":"https://api.github.com/users/lcochrane/orgs","repos_url":"https://api.github.com/users/lcochrane/repos","events_url":"https://api.github.com/users/lcochrane/events{/privacy}","received_events_url":"https://api.github.com/users/lcochrane/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Lauren Cochrane","company":null,"blog":"","location":"Australia","email":null,"hireable":null,"bio":"👋 I have no professional training. Just a life-long interest in all things tech. Currently tinkering with Python 🐍","twitter_username":null,"public_repos":6,"public_gists":5,"followers":11,"following":19,"created_at":"2011-11-16T01:56:12Z","updated_at":"2025-12-28T06:04:44Z"},"id":"6504666","created_at":"2013-09-10T03:37:25Z","updated_at":"2015-12-22T17:09:10Z"},{"url":"https://api.github.com/gists/7632454","user":{"login":"timcameron","id":4188986,"node_id":"MDQ6VXNlcjQxODg5ODY=","avatar_url":"https://avatars.githubusercontent.com/u/4188986?v=4","gravatar_id":"","url":"https://api.github.com/users/timcameron","html_url":"https://github.com/timcameron","followers_url":"https://api.github.com/users/timcameron/followers","following_url":"https://api.github.com/users/timcameron/following{/other_user}","gists_url":"https://api.github.com/users/timcameron/gists{/gist_id}","starred_url":"https://api.github.com/users/timcameron/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/timcameron/subscriptions","organizations_url":"https://api.github.com/users/timcameron/orgs","repos_url":"https://api.github.com/users/timcameron/repos","events_url":"https://api.github.com/users/timcameron/events{/privacy}","received_events_url":"https://api.github.com/users/timcameron/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Tim Cameron","company":"TransferWise","blog":"","location":null,"email":null,"hireable":null,"bio":"Product Manager","twitter_username":null,"public_repos":2,"public_gists":36,"followers":7,"following":13,"created_at":"2013-04-18T07:49:23Z","updated_at":"2025-09-11T01:10:35Z"},"id":"7632454","created_at":"2013-11-24T21:11:57Z","updated_at":"2015-12-29T06:59:00Z"},{"url":"https://api.github.com/gists/27986f82aa691769b95b","user":{"login":"balint42","id":5834462,"node_id":"MDQ6VXNlcjU4MzQ0NjI=","avatar_url":"https://avatars.githubusercontent.com/u/5834462?v=4","gravatar_id":"","url":"https://api.github.com/users/balint42","html_url":"https://github.com/balint42","followers_url":"https://api.github.com/users/balint42/followers","following_url":"https://api.github.com/users/balint42/following{/other_user}","gists_url":"https://api.github.com/users/balint42/gists{/gist_id}","starred_url":"https://api.github.com/users/balint42/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/balint42/subscriptions","organizations_url":"https://api.github.com/users/balint42/orgs","repos_url":"https://api.github.com/users/balint42/repos","events_url":"https://api.github.com/users/balint42/events{/privacy}","received_events_url":"https://api.github.com/users/balint42/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Balint Morvai","company":null,"blog":"","location":null,"email":null,"hireable":true,"bio":null,"twitter_username":null,"public_repos":16,"public_gists":10,"followers":19,"following":2,"created_at":"2013-11-01T21:23:16Z","updated_at":"2026-03-03T23:16:33Z"},"id":"27986f82aa691769b95b","created_at":"2015-02-05T01:42:24Z","updated_at":"2016-05-17T23:01:59Z"},{"url":"https://api.github.com/gists/be92ac3f7cfb5edc9815","user":{"login":"goliatone","id":140582,"node_id":"MDQ6VXNlcjE0MDU4Mg==","avatar_url":"https://avatars.githubusercontent.com/u/140582?v=4","gravatar_id":"","url":"https://api.github.com/users/goliatone","html_url":"https://github.com/goliatone","followers_url":"https://api.github.com/users/goliatone/followers","following_url":"https://api.github.com/users/goliatone/following{/other_user}","gists_url":"https://api.github.com/users/goliatone/gists{/gist_id}","starred_url":"https://api.github.com/users/goliatone/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/goliatone/subscriptions","organizations_url":"https://api.github.com/users/goliatone/orgs","repos_url":"https://api.github.com/users/goliatone/repos","events_url":"https://api.github.com/users/goliatone/events{/privacy}","received_events_url":"https://api.github.com/users/goliatone/received_events","type":"User","user_view_type":"public","site_admin":false,"name":null,"company":null,"blog":"https://goliat.one/","location":"Brooklyn, NY","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":288,"public_gists":277,"followers":83,"following":34,"created_at":"2009-10-16T09:38:45Z","updated_at":"2025-11-20T17:55:42Z"},"id":"be92ac3f7cfb5edc9815","created_at":"2015-03-02T15:43:10Z","updated_at":"2015-08-29T14:16:24Z"},{"url":"https://api.github.com/gists/27380bb2065498aacc42","user":{"login":"chitacan","id":286950,"node_id":"MDQ6VXNlcjI4Njk1MA==","avatar_url":"https://avatars.githubusercontent.com/u/286950?v=4","gravatar_id":"","url":"https://api.github.com/users/chitacan","html_url":"https://github.com/chitacan","followers_url":"https://api.github.com/users/chitacan/followers","following_url":"https://api.github.com/users/chitacan/following{/other_user}","gists_url":"https://api.github.com/users/chitacan/gists{/gist_id}","starred_url":"https://api.github.com/users/chitacan/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chitacan/subscriptions","organizations_url":"https://api.github.com/users/chitacan/orgs","repos_url":"https://api.github.com/users/chitacan/repos","events_url":"https://api.github.com/users/chitacan/events{/privacy}","received_events_url":"https://api.github.com/users/chitacan/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Bret Kim","company":null,"blog":"https://blog.chitacan.io","location":"Seoul, Korea","email":"chitacan@gmail.com","hireable":null,"bio":"Tarnished @elixir-lang hacker.","twitter_username":null,"public_repos":114,"public_gists":115,"followers":212,"following":432,"created_at":"2010-05-25T19:06:19Z","updated_at":"2026-04-02T01:19:39Z"},"id":"27380bb2065498aacc42","created_at":"2015-03-06T17:21:24Z","updated_at":"2015-08-29T14:16:38Z"},{"url":"https://api.github.com/gists/06c153a070591e935bed772ab0d9de6e","user":{"login":"BobHarper1","id":10833378,"node_id":"MDQ6VXNlcjEwODMzMzc4","avatar_url":"https://avatars.githubusercontent.com/u/10833378?v=4","gravatar_id":"","url":"https://api.github.com/users/BobHarper1","html_url":"https://github.com/BobHarper1","followers_url":"https://api.github.com/users/BobHarper1/followers","following_url":"https://api.github.com/users/BobHarper1/following{/other_user}","gists_url":"https://api.github.com/users/BobHarper1/gists{/gist_id}","starred_url":"https://api.github.com/users/BobHarper1/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/BobHarper1/subscriptions","organizations_url":"https://api.github.com/users/BobHarper1/orgs","repos_url":"https://api.github.com/users/BobHarper1/repos","events_url":"https://api.github.com/users/BobHarper1/events{/privacy}","received_events_url":"https://api.github.com/users/BobHarper1/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Bob Harper","company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":61,"public_gists":29,"followers":20,"following":38,"created_at":"2015-02-03T16:07:56Z","updated_at":"2025-05-20T13:12:44Z"},"id":"06c153a070591e935bed772ab0d9de6e","created_at":"2016-07-20T14:52:28Z","updated_at":"2016-07-21T15:45:02Z"},{"url":"https://api.github.com/gists/6911a31364e28a58c6fb78620ec46e43","user":{"login":"mikev","id":113936,"node_id":"MDQ6VXNlcjExMzkzNg==","avatar_url":"https://avatars.githubusercontent.com/u/113936?v=4","gravatar_id":"","url":"https://api.github.com/users/mikev","html_url":"https://github.com/mikev","followers_url":"https://api.github.com/users/mikev/followers","following_url":"https://api.github.com/users/mikev/following{/other_user}","gists_url":"https://api.github.com/users/mikev/gists{/gist_id}","starred_url":"https://api.github.com/users/mikev/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mikev/subscriptions","organizations_url":"https://api.github.com/users/mikev/orgs","repos_url":"https://api.github.com/users/mikev/repos","events_url":"https://api.github.com/users/mikev/events{/privacy}","received_events_url":"https://api.github.com/users/mikev/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Michael Vierling","company":"helium.com","blog":"","location":"San Francisco, CA","email":"mvierling@gmail.com","hireable":true,"bio":null,"twitter_username":null,"public_repos":40,"public_gists":3,"followers":19,"following":2,"created_at":"2009-08-10T21:05:23Z","updated_at":"2023-07-16T21:33:56Z"},"id":"6911a31364e28a58c6fb78620ec46e43","created_at":"2016-09-23T23:29:16Z","updated_at":"2016-09-24T07:18:42Z"},{"url":"https://api.github.com/gists/2b984243d6df06a516b30187286b430d","user":{"login":"ascott","id":130878,"node_id":"MDQ6VXNlcjEzMDg3OA==","avatar_url":"https://avatars.githubusercontent.com/u/130878?v=4","gravatar_id":"","url":"https://api.github.com/users/ascott","html_url":"https://github.com/ascott","followers_url":"https://api.github.com/users/ascott/followers","following_url":"https://api.github.com/users/ascott/following{/other_user}","gists_url":"https://api.github.com/users/ascott/gists{/gist_id}","starred_url":"https://api.github.com/users/ascott/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ascott/subscriptions","organizations_url":"https://api.github.com/users/ascott/orgs","repos_url":"https://api.github.com/users/ascott/repos","events_url":"https://api.github.com/users/ascott/events{/privacy}","received_events_url":"https://api.github.com/users/ascott/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Alanna Scott","company":"@trykinside ","blog":"alannascott.studio","location":"Victoria, BC","email":null,"hireable":null,"bio":"human/artist/programmer","twitter_username":null,"public_repos":59,"public_gists":16,"followers":112,"following":110,"created_at":"2009-09-24T16:14:39Z","updated_at":"2026-04-14T08:57:03Z"},"id":"2b984243d6df06a516b30187286b430d","created_at":"2016-09-28T00:12:00Z","updated_at":"2016-09-28T00:12:00Z"},{"url":"https://api.github.com/gists/529ab4b1fa8f5f12571b9685e3f9c9b6","user":{"login":"enjoylife","id":877194,"node_id":"MDQ6VXNlcjg3NzE5NA==","avatar_url":"https://avatars.githubusercontent.com/u/877194?v=4","gravatar_id":"","url":"https://api.github.com/users/enjoylife","html_url":"https://github.com/enjoylife","followers_url":"https://api.github.com/users/enjoylife/followers","following_url":"https://api.github.com/users/enjoylife/following{/other_user}","gists_url":"https://api.github.com/users/enjoylife/gists{/gist_id}","starred_url":"https://api.github.com/users/enjoylife/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/enjoylife/subscriptions","organizations_url":"https://api.github.com/users/enjoylife/orgs","repos_url":"https://api.github.com/users/enjoylife/repos","events_url":"https://api.github.com/users/enjoylife/events{/privacy}","received_events_url":"https://api.github.com/users/enjoylife/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Matthew Clemens","company":"Uber","blog":"mdc.life","location":"Berkeley, CA","email":"matt.d.clemens@gmail.com","hireable":null,"bio":"Try, fail, learn, improve.","twitter_username":null,"public_repos":142,"public_gists":238,"followers":26,"following":17,"created_at":"2011-06-26T19:09:45Z","updated_at":"2026-04-07T20:42:13Z"},"id":"529ab4b1fa8f5f12571b9685e3f9c9b6","created_at":"2016-11-05T19:14:48Z","updated_at":"2016-11-05T19:14:49Z"},{"url":"https://api.github.com/gists/0bea61701fc27e52908b0df36bb04e6f","user":{"login":"Marwar1985","id":16107500,"node_id":"MDQ6VXNlcjE2MTA3NTAw","avatar_url":"https://avatars.githubusercontent.com/u/16107500?v=4","gravatar_id":"","url":"https://api.github.com/users/Marwar1985","html_url":"https://github.com/Marwar1985","followers_url":"https://api.github.com/users/Marwar1985/followers","following_url":"https://api.github.com/users/Marwar1985/following{/other_user}","gists_url":"https://api.github.com/users/Marwar1985/gists{/gist_id}","starred_url":"https://api.github.com/users/Marwar1985/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Marwar1985/subscriptions","organizations_url":"https://api.github.com/users/Marwar1985/orgs","repos_url":"https://api.github.com/users/Marwar1985/repos","events_url":"https://api.github.com/users/Marwar1985/events{/privacy}","received_events_url":"https://api.github.com/users/Marwar1985/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"MarwaAhmed","company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":2,"public_gists":1,"followers":1,"following":0,"created_at":"2015-12-01T20:50:45Z","updated_at":"2026-03-28T13:31:22Z"},"id":"0bea61701fc27e52908b0df36bb04e6f","created_at":"2017-01-22T21:50:54Z","updated_at":"2017-01-22T21:50:55Z"},{"url":"https://api.github.com/gists/60473e64c0c1b585c78a902c2cbfeb91","user":{"login":"MTClass","id":25531791,"node_id":"MDQ6VXNlcjI1NTMxNzkx","avatar_url":"https://avatars.githubusercontent.com/u/25531791?v=4","gravatar_id":"","url":"https://api.github.com/users/MTClass","html_url":"https://github.com/MTClass","followers_url":"https://api.github.com/users/MTClass/followers","following_url":"https://api.github.com/users/MTClass/following{/other_user}","gists_url":"https://api.github.com/users/MTClass/gists{/gist_id}","starred_url":"https://api.github.com/users/MTClass/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MTClass/subscriptions","organizations_url":"https://api.github.com/users/MTClass/orgs","repos_url":"https://api.github.com/users/MTClass/repos","events_url":"https://api.github.com/users/MTClass/events{/privacy}","received_events_url":"https://api.github.com/users/MTClass/received_events","type":"User","user_view_type":"public","site_admin":false,"name":null,"company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":20,"public_gists":117,"followers":0,"following":1,"created_at":"2017-02-03T15:04:50Z","updated_at":"2020-11-25T15:46:47Z"},"id":"60473e64c0c1b585c78a902c2cbfeb91","created_at":"2017-02-10T00:03:44Z","updated_at":"2017-02-10T00:03:44Z"},{"url":"https://api.github.com/gists/5fa901d39ea95133d42d097d9c6b718d","user":{"login":"harish-garg","id":349125,"node_id":"MDQ6VXNlcjM0OTEyNQ==","avatar_url":"https://avatars.githubusercontent.com/u/349125?v=4","gravatar_id":"","url":"https://api.github.com/users/harish-garg","html_url":"https://github.com/harish-garg","followers_url":"https://api.github.com/users/harish-garg/followers","following_url":"https://api.github.com/users/harish-garg/following{/other_user}","gists_url":"https://api.github.com/users/harish-garg/gists{/gist_id}","starred_url":"https://api.github.com/users/harish-garg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/harish-garg/subscriptions","organizations_url":"https://api.github.com/users/harish-garg/orgs","repos_url":"https://api.github.com/users/harish-garg/repos","events_url":"https://api.github.com/users/harish-garg/events{/privacy}","received_events_url":"https://api.github.com/users/harish-garg/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Harish Garg","company":null,"blog":"https://harishgarg.com/","location":"The Internet","email":null,"hireable":true,"bio":"AI + Code for Prediction Markets | Polymarket & Kalshi Edges | Bots, Arb Strategies, Superforecasting Tips | Open-source tools & code drops","twitter_username":"Nibberloo","public_repos":171,"public_gists":20,"followers":137,"following":29,"created_at":"2010-07-30T09:45:41Z","updated_at":"2026-01-01T12:32:19Z"},"id":"5fa901d39ea95133d42d097d9c6b718d","created_at":"2017-02-23T15:06:09Z","updated_at":"2017-02-23T15:06:09Z"},{"url":"https://api.github.com/gists/90a165174c31b2d700726ae5d7a76efb","user":{"login":"freeeve","id":882560,"node_id":"MDQ6VXNlcjg4MjU2MA==","avatar_url":"https://avatars.githubusercontent.com/u/882560?v=4","gravatar_id":"","url":"https://api.github.com/users/freeeve","html_url":"https://github.com/freeeve","followers_url":"https://api.github.com/users/freeeve/followers","following_url":"https://api.github.com/users/freeeve/following{/other_user}","gists_url":"https://api.github.com/users/freeeve/gists{/gist_id}","starred_url":"https://api.github.com/users/freeeve/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/freeeve/subscriptions","organizations_url":"https://api.github.com/users/freeeve/orgs","repos_url":"https://api.github.com/users/freeeve/repos","events_url":"https://api.github.com/users/freeeve/events{/privacy}","received_events_url":"https://api.github.com/users/freeeve/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Eve Freeman","company":null,"blog":"","location":"Linden, VA","email":null,"hireable":null,"bio":"Glowers at you dubiously.\r\n\r\nTip jar: https://venmo.com/u/freeeve","twitter_username":null,"public_repos":182,"public_gists":129,"followers":132,"following":128,"created_at":"2011-06-28T22:01:34Z","updated_at":"2026-02-22T04:54:31Z"},"id":"90a165174c31b2d700726ae5d7a76efb","created_at":"2017-02-27T12:57:43Z","updated_at":"2017-02-27T13:19:01Z"},{"url":"https://api.github.com/gists/575ebaa1dc94c00d2f99b399f4bb946f","user":{"login":"xingliuUT","id":26236258,"node_id":"MDQ6VXNlcjI2MjM2MjU4","avatar_url":"https://avatars.githubusercontent.com/u/26236258?v=4","gravatar_id":"","url":"https://api.github.com/users/xingliuUT","html_url":"https://github.com/xingliuUT","followers_url":"https://api.github.com/users/xingliuUT/followers","following_url":"https://api.github.com/users/xingliuUT/following{/other_user}","gists_url":"https://api.github.com/users/xingliuUT/gists{/gist_id}","starred_url":"https://api.github.com/users/xingliuUT/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/xingliuUT/subscriptions","organizations_url":"https://api.github.com/users/xingliuUT/orgs","repos_url":"https://api.github.com/users/xingliuUT/repos","events_url":"https://api.github.com/users/xingliuUT/events{/privacy}","received_events_url":"https://api.github.com/users/xingliuUT/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Xing Liu","company":"UT Austin","blog":"","location":"Austin, TX","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":5,"public_gists":2,"followers":8,"following":4,"created_at":"2017-03-06T23:52:41Z","updated_at":"2021-11-04T00:59:35Z"},"id":"575ebaa1dc94c00d2f99b399f4bb946f","created_at":"2018-01-29T23:23:17Z","updated_at":"2018-01-29T23:23:17Z"},{"url":"https://api.github.com/gists/e73032778df2e0d49d2b33eb425f91cb","user":{"login":"Callicodes","id":10546399,"node_id":"MDQ6VXNlcjEwNTQ2Mzk5","avatar_url":"https://avatars.githubusercontent.com/u/10546399?v=4","gravatar_id":"","url":"https://api.github.com/users/Callicodes","html_url":"https://github.com/Callicodes","followers_url":"https://api.github.com/users/Callicodes/followers","following_url":"https://api.github.com/users/Callicodes/following{/other_user}","gists_url":"https://api.github.com/users/Callicodes/gists{/gist_id}","starred_url":"https://api.github.com/users/Callicodes/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Callicodes/subscriptions","organizations_url":"https://api.github.com/users/Callicodes/orgs","repos_url":"https://api.github.com/users/Callicodes/repos","events_url":"https://api.github.com/users/Callicodes/events{/privacy}","received_events_url":"https://api.github.com/users/Callicodes/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Callicodes","company":"Callicodes.com","blog":"","location":"London","email":"callicodes@gmail.com","hireable":true,"bio":null,"twitter_username":null,"public_repos":78,"public_gists":3,"followers":3,"following":4,"created_at":"2015-01-15T12:02:57Z","updated_at":"2026-04-01T10:54:22Z"},"id":"e73032778df2e0d49d2b33eb425f91cb","created_at":"2018-04-13T11:21:28Z","updated_at":"2018-04-13T11:21:29Z"},{"url":"https://api.github.com/gists/545b5b62158bb0de40a1fe318738ca15","user":{"login":"olabi","id":167965,"node_id":"MDQ6VXNlcjE2Nzk2NQ==","avatar_url":"https://avatars.githubusercontent.com/u/167965?v=4","gravatar_id":"","url":"https://api.github.com/users/olabi","html_url":"https://github.com/olabi","followers_url":"https://api.github.com/users/olabi/followers","following_url":"https://api.github.com/users/olabi/following{/other_user}","gists_url":"https://api.github.com/users/olabi/gists{/gist_id}","starred_url":"https://api.github.com/users/olabi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/olabi/subscriptions","organizations_url":"https://api.github.com/users/olabi/orgs","repos_url":"https://api.github.com/users/olabi/repos","events_url":"https://api.github.com/users/olabi/events{/privacy}","received_events_url":"https://api.github.com/users/olabi/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Heo, Sung","company":null,"blog":"","location":null,"email":"heosung@gmail.com","hireable":null,"bio":null,"twitter_username":null,"public_repos":224,"public_gists":13,"followers":11,"following":14,"created_at":"2009-12-15T16:37:47Z","updated_at":"2026-04-11T09:29:15Z"},"id":"545b5b62158bb0de40a1fe318738ca15","created_at":"2018-10-18T00:30:12Z","updated_at":"2018-10-31T07:29:03Z"},{"url":"https://api.github.com/gists/7c22d1f288d108dd0d80bfb84a0e3852","user":{"login":"temptemp3","id":23183451,"node_id":"MDQ6VXNlcjIzMTgzNDUx","avatar_url":"https://avatars.githubusercontent.com/u/23183451?v=4","gravatar_id":"","url":"https://api.github.com/users/temptemp3","html_url":"https://github.com/temptemp3","followers_url":"https://api.github.com/users/temptemp3/followers","following_url":"https://api.github.com/users/temptemp3/following{/other_user}","gists_url":"https://api.github.com/users/temptemp3/gists{/gist_id}","starred_url":"https://api.github.com/users/temptemp3/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/temptemp3/subscriptions","organizations_url":"https://api.github.com/users/temptemp3/orgs","repos_url":"https://api.github.com/users/temptemp3/repos","events_url":"https://api.github.com/users/temptemp3/events{/privacy}","received_events_url":"https://api.github.com/users/temptemp3/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Shelly","company":null,"blog":"https://app.envoi.sh/#/shelly.hov.voi","location":null,"email":null,"hireable":true,"bio":"Building decentralized apps for everyone","twitter_username":"NicholasShella2","public_repos":238,"public_gists":27,"followers":79,"following":123,"created_at":"2016-11-01T05:09:08Z","updated_at":"2026-03-12T01:17:11Z"},"id":"7c22d1f288d108dd0d80bfb84a0e3852","created_at":"2019-02-20T14:31:14Z","updated_at":"2019-02-20T14:31:15Z"},{"url":"https://api.github.com/gists/715321b61c1dcbff84cc54f5dad22377","user":{"login":"ix4","id":38112035,"node_id":"MDQ6VXNlcjM4MTEyMDM1","avatar_url":"https://avatars.githubusercontent.com/u/38112035?v=4","gravatar_id":"","url":"https://api.github.com/users/ix4","html_url":"https://github.com/ix4","followers_url":"https://api.github.com/users/ix4/followers","following_url":"https://api.github.com/users/ix4/following{/other_user}","gists_url":"https://api.github.com/users/ix4/gists{/gist_id}","starred_url":"https://api.github.com/users/ix4/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ix4/subscriptions","organizations_url":"https://api.github.com/users/ix4/orgs","repos_url":"https://api.github.com/users/ix4/repos","events_url":"https://api.github.com/users/ix4/events{/privacy}","received_events_url":"https://api.github.com/users/ix4/received_events","type":"User","user_view_type":"public","site_admin":false,"name":null,"company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":12,"public_gists":1448,"followers":67,"following":94,"created_at":"2018-04-05T17:37:06Z","updated_at":"2026-04-13T03:04:38Z"},"id":"715321b61c1dcbff84cc54f5dad22377","created_at":"2019-09-13T09:55:43Z","updated_at":"2019-09-13T09:55:43Z"},{"url":"https://api.github.com/gists/b3267331a5c694a00f9c6f26d9a03e1e","user":{"login":"AliAltan2","id":56866607,"node_id":"MDQ6VXNlcjU2ODY2NjA3","avatar_url":"https://avatars.githubusercontent.com/u/56866607?v=4","gravatar_id":"","url":"https://api.github.com/users/AliAltan2","html_url":"https://github.com/AliAltan2","followers_url":"https://api.github.com/users/AliAltan2/followers","following_url":"https://api.github.com/users/AliAltan2/following{/other_user}","gists_url":"https://api.github.com/users/AliAltan2/gists{/gist_id}","starred_url":"https://api.github.com/users/AliAltan2/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AliAltan2/subscriptions","organizations_url":"https://api.github.com/users/AliAltan2/orgs","repos_url":"https://api.github.com/users/AliAltan2/repos","events_url":"https://api.github.com/users/AliAltan2/events{/privacy}","received_events_url":"https://api.github.com/users/AliAltan2/received_events","type":"User","user_view_type":"public","site_admin":false,"name":null,"company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":7,"public_gists":1,"followers":1,"following":3,"created_at":"2019-10-22T08:19:40Z","updated_at":"2024-08-11T22:44:37Z"},"id":"b3267331a5c694a00f9c6f26d9a03e1e","created_at":"2020-01-13T12:33:08Z","updated_at":"2020-01-13T12:33:09Z"},{"url":"https://api.github.com/gists/73a4ee7312019f659cf0b740abba6808","user":{"login":"kanishkmamgain","id":43132641,"node_id":"MDQ6VXNlcjQzMTMyNjQx","avatar_url":"https://avatars.githubusercontent.com/u/43132641?v=4","gravatar_id":"","url":"https://api.github.com/users/kanishkmamgain","html_url":"https://github.com/kanishkmamgain","followers_url":"https://api.github.com/users/kanishkmamgain/followers","following_url":"https://api.github.com/users/kanishkmamgain/following{/other_user}","gists_url":"https://api.github.com/users/kanishkmamgain/gists{/gist_id}","starred_url":"https://api.github.com/users/kanishkmamgain/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/kanishkmamgain/subscriptions","organizations_url":"https://api.github.com/users/kanishkmamgain/orgs","repos_url":"https://api.github.com/users/kanishkmamgain/repos","events_url":"https://api.github.com/users/kanishkmamgain/events{/privacy}","received_events_url":"https://api.github.com/users/kanishkmamgain/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Kanishk Mamgain","company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":13,"public_gists":1,"followers":0,"following":0,"created_at":"2018-09-10T08:23:53Z","updated_at":"2023-10-13T01:45:53Z"},"id":"73a4ee7312019f659cf0b740abba6808","created_at":"2020-05-05T16:42:15Z","updated_at":"2020-05-05T16:42:15Z"},{"url":"https://api.github.com/gists/2cefe36eb2f41d5145a7e41298efb6bc","user":{"login":"edwardyqliu","id":114708188,"node_id":"U_kgDOBtZO3A","avatar_url":"https://avatars.githubusercontent.com/u/114708188?v=4","gravatar_id":"","url":"https://api.github.com/users/edwardyqliu","html_url":"https://github.com/edwardyqliu","followers_url":"https://api.github.com/users/edwardyqliu/followers","following_url":"https://api.github.com/users/edwardyqliu/following{/other_user}","gists_url":"https://api.github.com/users/edwardyqliu/gists{/gist_id}","starred_url":"https://api.github.com/users/edwardyqliu/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/edwardyqliu/subscriptions","organizations_url":"https://api.github.com/users/edwardyqliu/orgs","repos_url":"https://api.github.com/users/edwardyqliu/repos","events_url":"https://api.github.com/users/edwardyqliu/events{/privacy}","received_events_url":"https://api.github.com/users/edwardyqliu/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Edward Liu","company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":"Penn '26","twitter_username":null,"public_repos":4,"public_gists":1,"followers":2,"following":0,"created_at":"2022-09-29T23:42:12Z","updated_at":"2026-03-29T21:19:55Z"},"id":"2cefe36eb2f41d5145a7e41298efb6bc","created_at":"2023-05-19T13:31:36Z","updated_at":"2023-05-19T13:31:37Z"}],"history":[{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"d422852a871bf88dffb4fcc5fd5ac913ec3cea3a","committed_at":"2020-02-22T20:14:51Z","change_status":{"total":1,"additions":1,"deletions":0},"url":"https://api.github.com/gists/4062085/d422852a871bf88dffb4fcc5fd5ac913ec3cea3a"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"dbd4a66dcadd54fa189f84c106795c644401e753","committed_at":"2016-02-09T01:43:57Z","change_status":{"total":1,"additions":1,"deletions":0},"url":"https://api.github.com/gists/4062085/dbd4a66dcadd54fa189f84c106795c644401e753"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"7945aba2055b140c216ea8f7b3f36af989311ae9","committed_at":"2015-10-31T01:15:08Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/4062085/7945aba2055b140c216ea8f7b3f36af989311ae9"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"27648214d6d08431ddba048c653e29a2f62bec52","committed_at":"2015-06-11T19:31:44Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/4062085/27648214d6d08431ddba048c653e29a2f62bec52"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"47e8d7ea6d446cde559be17d9c09da2a6c80ad1c","committed_at":"2013-03-04T16:33:56Z","change_status":{"total":4,"additions":2,"deletions":2},"url":"https://api.github.com/gists/4062085/47e8d7ea6d446cde559be17d9c09da2a6c80ad1c"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"ac029de728240fa0ca7a12c019287fde75686b20","committed_at":"2012-11-13T03:17:56Z","change_status":{"total":0,"additions":0,"deletions":0},"url":"https://api.github.com/gists/4062085/ac029de728240fa0ca7a12c019287fde75686b20"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"2d68843e9a8985da0e2b452274c6490bfb2f95c1","committed_at":"2012-11-12T21:42:48Z","change_status":{"total":1,"additions":1,"deletions":0},"url":"https://api.github.com/gists/4062085/2d68843e9a8985da0e2b452274c6490bfb2f95c1"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"a53336bda52638e79829cfd6a8ca2fea73683a86","committed_at":"2012-11-12T21:41:36Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/4062085/a53336bda52638e79829cfd6a8ca2fea73683a86"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"fd1f768ceb2afdee33cbc32d6301c540f2fc9e5d","committed_at":"2012-11-12T21:40:09Z","change_status":{"total":2,"additions":1,"deletions":1},"url":"https://api.github.com/gists/4062085/fd1f768ceb2afdee33cbc32d6301c540f2fc9e5d"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"ee5f85636df39328b7782957df260e270d4d417e","committed_at":"2012-11-12T21:39:28Z","change_status":{"total":6,"additions":2,"deletions":4},"url":"https://api.github.com/gists/4062085/ee5f85636df39328b7782957df260e270d4d417e"},{"user":{"login":"mbostock","id":230541,"node_id":"MDQ6VXNlcjIzMDU0MQ==","avatar_url":"https://avatars.githubusercontent.com/u/230541?v=4","gravatar_id":"","url":"https://api.github.com/users/mbostock","html_url":"https://github.com/mbostock","followers_url":"https://api.github.com/users/mbostock/followers","following_url":"https://api.github.com/users/mbostock/following{/other_user}","gists_url":"https://api.github.com/users/mbostock/gists{/gist_id}","starred_url":"https://api.github.com/users/mbostock/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbostock/subscriptions","organizations_url":"https://api.github.com/users/mbostock/orgs","repos_url":"https://api.github.com/users/mbostock/repos","events_url":"https://api.github.com/users/mbostock/events{/privacy}","received_events_url":"https://api.github.com/users/mbostock/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"600f022a692ab52bfcc5f600ab3c2cb89d5a5511","committed_at":"2012-11-12T21:38:13Z","change_status":{},"url":"https://api.github.com/gists/4062085/600f022a692ab52bfcc5f600ab3c2cb89d5a5511"}],"truncated":false}