Skip to content

Instantly share code, notes, and snippets.

@jenningsanderson
Last active October 26, 2016 00:05
Show Gist options
  • Save jenningsanderson/5e135499f0d101791b732359cafe3e80 to your computer and use it in GitHub Desktop.
Save jenningsanderson/5e135499f0d101791b732359cafe3e80 to your computer and use it in GitHub Desktop.
Weekly / Monthly Boundaries for OSM History Exports
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Historical Snapshot OSM-QA-Tiles\n",
"\n",
"The historical osm-qa-tiles available at [osmlab.github.io/osm-qa-tiles/historic.html](http://osmlab.github.io/osm-qa-tiles/historic.html) are cumulative snapshots at every new year.\n",
"\n",
"## Questions\n",
"1. Is it possible to create a full-history tileset?\n",
"1. If it's prohibitively difficult to create a full-history tileset, is it possible to create these same historical snapshots at smaller intervals.\n",
" - Can we do something more similar to `diffs` where monthly or weekly snapshots only include edits that happened during that time? (ie, are not cumulative?)\n",
" - If this is not possible, then simply extending the current design to support *monthly* snapshots as they are is a good intermediate step."
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"undefined"
]
},
"execution_count": 1,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"var fs = require('fs')\n",
"var _ = require('lodash')"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Method 1: Create Monthly Snapshots (Get monthly timestamps)"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"undefined"
]
},
"execution_count": 2,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"outFile = new fs.createWriteStream('osm-export-dates-monthly.txt')\n",
"_.range(2005,2017).forEach(function(year){\n",
" _.range(1,13).forEach(function(month){\n",
" if (month<10){\n",
" month = \"0\"+month\n",
" }\n",
" date_str = year + \"-\" + month + \"-01T00:00:00Z\"\n",
" //test that it's within our time...\n",
" if (Date.parse(date_str) < Date.now()){\n",
" outFile.write(date_str+\"\\n\")\n",
" }\n",
" })\n",
"})"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Method 2: Create Weekly Snapshots (Reset every New Year)"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"undefined"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"var outFile = new fs.createWriteStream('osm-export-dates-weekly.txt')\n",
"\n",
"_.range(2005,2017).forEach(function(year){\n",
" beg_of_year = Date.parse(year+\"-01-01T00:00:00Z\")\n",
" end_of_year = Date.parse(year+1+\"-01-01T00:00:00Z\")\n",
" \n",
" outFile.write(new Date(beg_of_year).toISOString()+\"\\n\")\n",
"\n",
" var nextWeek = new Date(new Date(beg_of_year).getTime() + (7 * 86400000))\n",
" \n",
" while(nextWeek <= end_of_year - (6 * 86400000)){\n",
" outFile.write(nextWeek.toISOString() + \"\\n\")\n",
" nextWeek = new Date(nextWeek.getTime() + (7 * 86400000))\n",
" if (nextWeek > Date.now()){break}\n",
" }\n",
"})"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Javascript (Node.js)",
"language": "javascript",
"name": "javascript"
},
"language_info": {
"file_extension": ".js",
"mimetype": "application/javascript",
"name": "javascript",
"version": "6.4.0"
}
},
"nbformat": 4,
"nbformat_minor": 1
}
2005-01-01T00:00:00Z
2005-02-01T00:00:00Z
2005-03-01T00:00:00Z
2005-04-01T00:00:00Z
2005-05-01T00:00:00Z
2005-06-01T00:00:00Z
2005-07-01T00:00:00Z
2005-08-01T00:00:00Z
2005-09-01T00:00:00Z
2005-10-01T00:00:00Z
2005-11-01T00:00:00Z
2005-12-01T00:00:00Z
2006-01-01T00:00:00Z
2006-02-01T00:00:00Z
2006-03-01T00:00:00Z
2006-04-01T00:00:00Z
2006-05-01T00:00:00Z
2006-06-01T00:00:00Z
2006-07-01T00:00:00Z
2006-08-01T00:00:00Z
2006-09-01T00:00:00Z
2006-10-01T00:00:00Z
2006-11-01T00:00:00Z
2006-12-01T00:00:00Z
2007-01-01T00:00:00Z
2007-02-01T00:00:00Z
2007-03-01T00:00:00Z
2007-04-01T00:00:00Z
2007-05-01T00:00:00Z
2007-06-01T00:00:00Z
2007-07-01T00:00:00Z
2007-08-01T00:00:00Z
2007-09-01T00:00:00Z
2007-10-01T00:00:00Z
2007-11-01T00:00:00Z
2007-12-01T00:00:00Z
2008-01-01T00:00:00Z
2008-02-01T00:00:00Z
2008-03-01T00:00:00Z
2008-04-01T00:00:00Z
2008-05-01T00:00:00Z
2008-06-01T00:00:00Z
2008-07-01T00:00:00Z
2008-08-01T00:00:00Z
2008-09-01T00:00:00Z
2008-10-01T00:00:00Z
2008-11-01T00:00:00Z
2008-12-01T00:00:00Z
2009-01-01T00:00:00Z
2009-02-01T00:00:00Z
2009-03-01T00:00:00Z
2009-04-01T00:00:00Z
2009-05-01T00:00:00Z
2009-06-01T00:00:00Z
2009-07-01T00:00:00Z
2009-08-01T00:00:00Z
2009-09-01T00:00:00Z
2009-10-01T00:00:00Z
2009-11-01T00:00:00Z
2009-12-01T00:00:00Z
2010-01-01T00:00:00Z
2010-02-01T00:00:00Z
2010-03-01T00:00:00Z
2010-04-01T00:00:00Z
2010-05-01T00:00:00Z
2010-06-01T00:00:00Z
2010-07-01T00:00:00Z
2010-08-01T00:00:00Z
2010-09-01T00:00:00Z
2010-10-01T00:00:00Z
2010-11-01T00:00:00Z
2010-12-01T00:00:00Z
2011-01-01T00:00:00Z
2011-02-01T00:00:00Z
2011-03-01T00:00:00Z
2011-04-01T00:00:00Z
2011-05-01T00:00:00Z
2011-06-01T00:00:00Z
2011-07-01T00:00:00Z
2011-08-01T00:00:00Z
2011-09-01T00:00:00Z
2011-10-01T00:00:00Z
2011-11-01T00:00:00Z
2011-12-01T00:00:00Z
2012-01-01T00:00:00Z
2012-02-01T00:00:00Z
2012-03-01T00:00:00Z
2012-04-01T00:00:00Z
2012-05-01T00:00:00Z
2012-06-01T00:00:00Z
2012-07-01T00:00:00Z
2012-08-01T00:00:00Z
2012-09-01T00:00:00Z
2012-10-01T00:00:00Z
2012-11-01T00:00:00Z
2012-12-01T00:00:00Z
2013-01-01T00:00:00Z
2013-02-01T00:00:00Z
2013-03-01T00:00:00Z
2013-04-01T00:00:00Z
2013-05-01T00:00:00Z
2013-06-01T00:00:00Z
2013-07-01T00:00:00Z
2013-08-01T00:00:00Z
2013-09-01T00:00:00Z
2013-10-01T00:00:00Z
2013-11-01T00:00:00Z
2013-12-01T00:00:00Z
2014-01-01T00:00:00Z
2014-02-01T00:00:00Z
2014-03-01T00:00:00Z
2014-04-01T00:00:00Z
2014-05-01T00:00:00Z
2014-06-01T00:00:00Z
2014-07-01T00:00:00Z
2014-08-01T00:00:00Z
2014-09-01T00:00:00Z
2014-10-01T00:00:00Z
2014-11-01T00:00:00Z
2014-12-01T00:00:00Z
2015-01-01T00:00:00Z
2015-02-01T00:00:00Z
2015-03-01T00:00:00Z
2015-04-01T00:00:00Z
2015-05-01T00:00:00Z
2015-06-01T00:00:00Z
2015-07-01T00:00:00Z
2015-08-01T00:00:00Z
2015-09-01T00:00:00Z
2015-10-01T00:00:00Z
2015-11-01T00:00:00Z
2015-12-01T00:00:00Z
2016-01-01T00:00:00Z
2016-02-01T00:00:00Z
2016-03-01T00:00:00Z
2016-04-01T00:00:00Z
2016-05-01T00:00:00Z
2016-06-01T00:00:00Z
2016-07-01T00:00:00Z
2016-08-01T00:00:00Z
2016-09-01T00:00:00Z
2016-10-01T00:00:00Z
2005-01-01T00:00:00.000Z
2005-01-08T00:00:00.000Z
2005-01-15T00:00:00.000Z
2005-01-22T00:00:00.000Z
2005-01-29T00:00:00.000Z
2005-02-05T00:00:00.000Z
2005-02-12T00:00:00.000Z
2005-02-19T00:00:00.000Z
2005-02-26T00:00:00.000Z
2005-03-05T00:00:00.000Z
2005-03-12T00:00:00.000Z
2005-03-19T00:00:00.000Z
2005-03-26T00:00:00.000Z
2005-04-02T00:00:00.000Z
2005-04-09T00:00:00.000Z
2005-04-16T00:00:00.000Z
2005-04-23T00:00:00.000Z
2005-04-30T00:00:00.000Z
2005-05-07T00:00:00.000Z
2005-05-14T00:00:00.000Z
2005-05-21T00:00:00.000Z
2005-05-28T00:00:00.000Z
2005-06-04T00:00:00.000Z
2005-06-11T00:00:00.000Z
2005-06-18T00:00:00.000Z
2005-06-25T00:00:00.000Z
2005-07-02T00:00:00.000Z
2005-07-09T00:00:00.000Z
2005-07-16T00:00:00.000Z
2005-07-23T00:00:00.000Z
2005-07-30T00:00:00.000Z
2005-08-06T00:00:00.000Z
2005-08-13T00:00:00.000Z
2005-08-20T00:00:00.000Z
2005-08-27T00:00:00.000Z
2005-09-03T00:00:00.000Z
2005-09-10T00:00:00.000Z
2005-09-17T00:00:00.000Z
2005-09-24T00:00:00.000Z
2005-10-01T00:00:00.000Z
2005-10-08T00:00:00.000Z
2005-10-15T00:00:00.000Z
2005-10-22T00:00:00.000Z
2005-10-29T00:00:00.000Z
2005-11-05T00:00:00.000Z
2005-11-12T00:00:00.000Z
2005-11-19T00:00:00.000Z
2005-11-26T00:00:00.000Z
2005-12-03T00:00:00.000Z
2005-12-10T00:00:00.000Z
2005-12-17T00:00:00.000Z
2005-12-24T00:00:00.000Z
2006-01-01T00:00:00.000Z
2006-01-08T00:00:00.000Z
2006-01-15T00:00:00.000Z
2006-01-22T00:00:00.000Z
2006-01-29T00:00:00.000Z
2006-02-05T00:00:00.000Z
2006-02-12T00:00:00.000Z
2006-02-19T00:00:00.000Z
2006-02-26T00:00:00.000Z
2006-03-05T00:00:00.000Z
2006-03-12T00:00:00.000Z
2006-03-19T00:00:00.000Z
2006-03-26T00:00:00.000Z
2006-04-02T00:00:00.000Z
2006-04-09T00:00:00.000Z
2006-04-16T00:00:00.000Z
2006-04-23T00:00:00.000Z
2006-04-30T00:00:00.000Z
2006-05-07T00:00:00.000Z
2006-05-14T00:00:00.000Z
2006-05-21T00:00:00.000Z
2006-05-28T00:00:00.000Z
2006-06-04T00:00:00.000Z
2006-06-11T00:00:00.000Z
2006-06-18T00:00:00.000Z
2006-06-25T00:00:00.000Z
2006-07-02T00:00:00.000Z
2006-07-09T00:00:00.000Z
2006-07-16T00:00:00.000Z
2006-07-23T00:00:00.000Z
2006-07-30T00:00:00.000Z
2006-08-06T00:00:00.000Z
2006-08-13T00:00:00.000Z
2006-08-20T00:00:00.000Z
2006-08-27T00:00:00.000Z
2006-09-03T00:00:00.000Z
2006-09-10T00:00:00.000Z
2006-09-17T00:00:00.000Z
2006-09-24T00:00:00.000Z
2006-10-01T00:00:00.000Z
2006-10-08T00:00:00.000Z
2006-10-15T00:00:00.000Z
2006-10-22T00:00:00.000Z
2006-10-29T00:00:00.000Z
2006-11-05T00:00:00.000Z
2006-11-12T00:00:00.000Z
2006-11-19T00:00:00.000Z
2006-11-26T00:00:00.000Z
2006-12-03T00:00:00.000Z
2006-12-10T00:00:00.000Z
2006-12-17T00:00:00.000Z
2006-12-24T00:00:00.000Z
2007-01-01T00:00:00.000Z
2007-01-08T00:00:00.000Z
2007-01-15T00:00:00.000Z
2007-01-22T00:00:00.000Z
2007-01-29T00:00:00.000Z
2007-02-05T00:00:00.000Z
2007-02-12T00:00:00.000Z
2007-02-19T00:00:00.000Z
2007-02-26T00:00:00.000Z
2007-03-05T00:00:00.000Z
2007-03-12T00:00:00.000Z
2007-03-19T00:00:00.000Z
2007-03-26T00:00:00.000Z
2007-04-02T00:00:00.000Z
2007-04-09T00:00:00.000Z
2007-04-16T00:00:00.000Z
2007-04-23T00:00:00.000Z
2007-04-30T00:00:00.000Z
2007-05-07T00:00:00.000Z
2007-05-14T00:00:00.000Z
2007-05-21T00:00:00.000Z
2007-05-28T00:00:00.000Z
2007-06-04T00:00:00.000Z
2007-06-11T00:00:00.000Z
2007-06-18T00:00:00.000Z
2007-06-25T00:00:00.000Z
2007-07-02T00:00:00.000Z
2007-07-09T00:00:00.000Z
2007-07-16T00:00:00.000Z
2007-07-23T00:00:00.000Z
2007-07-30T00:00:00.000Z
2007-08-06T00:00:00.000Z
2007-08-13T00:00:00.000Z
2007-08-20T00:00:00.000Z
2007-08-27T00:00:00.000Z
2007-09-03T00:00:00.000Z
2007-09-10T00:00:00.000Z
2007-09-17T00:00:00.000Z
2007-09-24T00:00:00.000Z
2007-10-01T00:00:00.000Z
2007-10-08T00:00:00.000Z
2007-10-15T00:00:00.000Z
2007-10-22T00:00:00.000Z
2007-10-29T00:00:00.000Z
2007-11-05T00:00:00.000Z
2007-11-12T00:00:00.000Z
2007-11-19T00:00:00.000Z
2007-11-26T00:00:00.000Z
2007-12-03T00:00:00.000Z
2007-12-10T00:00:00.000Z
2007-12-17T00:00:00.000Z
2007-12-24T00:00:00.000Z
2008-01-01T00:00:00.000Z
2008-01-08T00:00:00.000Z
2008-01-15T00:00:00.000Z
2008-01-22T00:00:00.000Z
2008-01-29T00:00:00.000Z
2008-02-05T00:00:00.000Z
2008-02-12T00:00:00.000Z
2008-02-19T00:00:00.000Z
2008-02-26T00:00:00.000Z
2008-03-04T00:00:00.000Z
2008-03-11T00:00:00.000Z
2008-03-18T00:00:00.000Z
2008-03-25T00:00:00.000Z
2008-04-01T00:00:00.000Z
2008-04-08T00:00:00.000Z
2008-04-15T00:00:00.000Z
2008-04-22T00:00:00.000Z
2008-04-29T00:00:00.000Z
2008-05-06T00:00:00.000Z
2008-05-13T00:00:00.000Z
2008-05-20T00:00:00.000Z
2008-05-27T00:00:00.000Z
2008-06-03T00:00:00.000Z
2008-06-10T00:00:00.000Z
2008-06-17T00:00:00.000Z
2008-06-24T00:00:00.000Z
2008-07-01T00:00:00.000Z
2008-07-08T00:00:00.000Z
2008-07-15T00:00:00.000Z
2008-07-22T00:00:00.000Z
2008-07-29T00:00:00.000Z
2008-08-05T00:00:00.000Z
2008-08-12T00:00:00.000Z
2008-08-19T00:00:00.000Z
2008-08-26T00:00:00.000Z
2008-09-02T00:00:00.000Z
2008-09-09T00:00:00.000Z
2008-09-16T00:00:00.000Z
2008-09-23T00:00:00.000Z
2008-09-30T00:00:00.000Z
2008-10-07T00:00:00.000Z
2008-10-14T00:00:00.000Z
2008-10-21T00:00:00.000Z
2008-10-28T00:00:00.000Z
2008-11-04T00:00:00.000Z
2008-11-11T00:00:00.000Z
2008-11-18T00:00:00.000Z
2008-11-25T00:00:00.000Z
2008-12-02T00:00:00.000Z
2008-12-09T00:00:00.000Z
2008-12-16T00:00:00.000Z
2008-12-23T00:00:00.000Z
2009-01-01T00:00:00.000Z
2009-01-08T00:00:00.000Z
2009-01-15T00:00:00.000Z
2009-01-22T00:00:00.000Z
2009-01-29T00:00:00.000Z
2009-02-05T00:00:00.000Z
2009-02-12T00:00:00.000Z
2009-02-19T00:00:00.000Z
2009-02-26T00:00:00.000Z
2009-03-05T00:00:00.000Z
2009-03-12T00:00:00.000Z
2009-03-19T00:00:00.000Z
2009-03-26T00:00:00.000Z
2009-04-02T00:00:00.000Z
2009-04-09T00:00:00.000Z
2009-04-16T00:00:00.000Z
2009-04-23T00:00:00.000Z
2009-04-30T00:00:00.000Z
2009-05-07T00:00:00.000Z
2009-05-14T00:00:00.000Z
2009-05-21T00:00:00.000Z
2009-05-28T00:00:00.000Z
2009-06-04T00:00:00.000Z
2009-06-11T00:00:00.000Z
2009-06-18T00:00:00.000Z
2009-06-25T00:00:00.000Z
2009-07-02T00:00:00.000Z
2009-07-09T00:00:00.000Z
2009-07-16T00:00:00.000Z
2009-07-23T00:00:00.000Z
2009-07-30T00:00:00.000Z
2009-08-06T00:00:00.000Z
2009-08-13T00:00:00.000Z
2009-08-20T00:00:00.000Z
2009-08-27T00:00:00.000Z
2009-09-03T00:00:00.000Z
2009-09-10T00:00:00.000Z
2009-09-17T00:00:00.000Z
2009-09-24T00:00:00.000Z
2009-10-01T00:00:00.000Z
2009-10-08T00:00:00.000Z
2009-10-15T00:00:00.000Z
2009-10-22T00:00:00.000Z
2009-10-29T00:00:00.000Z
2009-11-05T00:00:00.000Z
2009-11-12T00:00:00.000Z
2009-11-19T00:00:00.000Z
2009-11-26T00:00:00.000Z
2009-12-03T00:00:00.000Z
2009-12-10T00:00:00.000Z
2009-12-17T00:00:00.000Z
2009-12-24T00:00:00.000Z
2010-01-01T00:00:00.000Z
2010-01-08T00:00:00.000Z
2010-01-15T00:00:00.000Z
2010-01-22T00:00:00.000Z
2010-01-29T00:00:00.000Z
2010-02-05T00:00:00.000Z
2010-02-12T00:00:00.000Z
2010-02-19T00:00:00.000Z
2010-02-26T00:00:00.000Z
2010-03-05T00:00:00.000Z
2010-03-12T00:00:00.000Z
2010-03-19T00:00:00.000Z
2010-03-26T00:00:00.000Z
2010-04-02T00:00:00.000Z
2010-04-09T00:00:00.000Z
2010-04-16T00:00:00.000Z
2010-04-23T00:00:00.000Z
2010-04-30T00:00:00.000Z
2010-05-07T00:00:00.000Z
2010-05-14T00:00:00.000Z
2010-05-21T00:00:00.000Z
2010-05-28T00:00:00.000Z
2010-06-04T00:00:00.000Z
2010-06-11T00:00:00.000Z
2010-06-18T00:00:00.000Z
2010-06-25T00:00:00.000Z
2010-07-02T00:00:00.000Z
2010-07-09T00:00:00.000Z
2010-07-16T00:00:00.000Z
2010-07-23T00:00:00.000Z
2010-07-30T00:00:00.000Z
2010-08-06T00:00:00.000Z
2010-08-13T00:00:00.000Z
2010-08-20T00:00:00.000Z
2010-08-27T00:00:00.000Z
2010-09-03T00:00:00.000Z
2010-09-10T00:00:00.000Z
2010-09-17T00:00:00.000Z
2010-09-24T00:00:00.000Z
2010-10-01T00:00:00.000Z
2010-10-08T00:00:00.000Z
2010-10-15T00:00:00.000Z
2010-10-22T00:00:00.000Z
2010-10-29T00:00:00.000Z
2010-11-05T00:00:00.000Z
2010-11-12T00:00:00.000Z
2010-11-19T00:00:00.000Z
2010-11-26T00:00:00.000Z
2010-12-03T00:00:00.000Z
2010-12-10T00:00:00.000Z
2010-12-17T00:00:00.000Z
2010-12-24T00:00:00.000Z
2011-01-01T00:00:00.000Z
2011-01-08T00:00:00.000Z
2011-01-15T00:00:00.000Z
2011-01-22T00:00:00.000Z
2011-01-29T00:00:00.000Z
2011-02-05T00:00:00.000Z
2011-02-12T00:00:00.000Z
2011-02-19T00:00:00.000Z
2011-02-26T00:00:00.000Z
2011-03-05T00:00:00.000Z
2011-03-12T00:00:00.000Z
2011-03-19T00:00:00.000Z
2011-03-26T00:00:00.000Z
2011-04-02T00:00:00.000Z
2011-04-09T00:00:00.000Z
2011-04-16T00:00:00.000Z
2011-04-23T00:00:00.000Z
2011-04-30T00:00:00.000Z
2011-05-07T00:00:00.000Z
2011-05-14T00:00:00.000Z
2011-05-21T00:00:00.000Z
2011-05-28T00:00:00.000Z
2011-06-04T00:00:00.000Z
2011-06-11T00:00:00.000Z
2011-06-18T00:00:00.000Z
2011-06-25T00:00:00.000Z
2011-07-02T00:00:00.000Z
2011-07-09T00:00:00.000Z
2011-07-16T00:00:00.000Z
2011-07-23T00:00:00.000Z
2011-07-30T00:00:00.000Z
2011-08-06T00:00:00.000Z
2011-08-13T00:00:00.000Z
2011-08-20T00:00:00.000Z
2011-08-27T00:00:00.000Z
2011-09-03T00:00:00.000Z
2011-09-10T00:00:00.000Z
2011-09-17T00:00:00.000Z
2011-09-24T00:00:00.000Z
2011-10-01T00:00:00.000Z
2011-10-08T00:00:00.000Z
2011-10-15T00:00:00.000Z
2011-10-22T00:00:00.000Z
2011-10-29T00:00:00.000Z
2011-11-05T00:00:00.000Z
2011-11-12T00:00:00.000Z
2011-11-19T00:00:00.000Z
2011-11-26T00:00:00.000Z
2011-12-03T00:00:00.000Z
2011-12-10T00:00:00.000Z
2011-12-17T00:00:00.000Z
2011-12-24T00:00:00.000Z
2012-01-01T00:00:00.000Z
2012-01-08T00:00:00.000Z
2012-01-15T00:00:00.000Z
2012-01-22T00:00:00.000Z
2012-01-29T00:00:00.000Z
2012-02-05T00:00:00.000Z
2012-02-12T00:00:00.000Z
2012-02-19T00:00:00.000Z
2012-02-26T00:00:00.000Z
2012-03-04T00:00:00.000Z
2012-03-11T00:00:00.000Z
2012-03-18T00:00:00.000Z
2012-03-25T00:00:00.000Z
2012-04-01T00:00:00.000Z
2012-04-08T00:00:00.000Z
2012-04-15T00:00:00.000Z
2012-04-22T00:00:00.000Z
2012-04-29T00:00:00.000Z
2012-05-06T00:00:00.000Z
2012-05-13T00:00:00.000Z
2012-05-20T00:00:00.000Z
2012-05-27T00:00:00.000Z
2012-06-03T00:00:00.000Z
2012-06-10T00:00:00.000Z
2012-06-17T00:00:00.000Z
2012-06-24T00:00:00.000Z
2012-07-01T00:00:00.000Z
2012-07-08T00:00:00.000Z
2012-07-15T00:00:00.000Z
2012-07-22T00:00:00.000Z
2012-07-29T00:00:00.000Z
2012-08-05T00:00:00.000Z
2012-08-12T00:00:00.000Z
2012-08-19T00:00:00.000Z
2012-08-26T00:00:00.000Z
2012-09-02T00:00:00.000Z
2012-09-09T00:00:00.000Z
2012-09-16T00:00:00.000Z
2012-09-23T00:00:00.000Z
2012-09-30T00:00:00.000Z
2012-10-07T00:00:00.000Z
2012-10-14T00:00:00.000Z
2012-10-21T00:00:00.000Z
2012-10-28T00:00:00.000Z
2012-11-04T00:00:00.000Z
2012-11-11T00:00:00.000Z
2012-11-18T00:00:00.000Z
2012-11-25T00:00:00.000Z
2012-12-02T00:00:00.000Z
2012-12-09T00:00:00.000Z
2012-12-16T00:00:00.000Z
2012-12-23T00:00:00.000Z
2013-01-01T00:00:00.000Z
2013-01-08T00:00:00.000Z
2013-01-15T00:00:00.000Z
2013-01-22T00:00:00.000Z
2013-01-29T00:00:00.000Z
2013-02-05T00:00:00.000Z
2013-02-12T00:00:00.000Z
2013-02-19T00:00:00.000Z
2013-02-26T00:00:00.000Z
2013-03-05T00:00:00.000Z
2013-03-12T00:00:00.000Z
2013-03-19T00:00:00.000Z
2013-03-26T00:00:00.000Z
2013-04-02T00:00:00.000Z
2013-04-09T00:00:00.000Z
2013-04-16T00:00:00.000Z
2013-04-23T00:00:00.000Z
2013-04-30T00:00:00.000Z
2013-05-07T00:00:00.000Z
2013-05-14T00:00:00.000Z
2013-05-21T00:00:00.000Z
2013-05-28T00:00:00.000Z
2013-06-04T00:00:00.000Z
2013-06-11T00:00:00.000Z
2013-06-18T00:00:00.000Z
2013-06-25T00:00:00.000Z
2013-07-02T00:00:00.000Z
2013-07-09T00:00:00.000Z
2013-07-16T00:00:00.000Z
2013-07-23T00:00:00.000Z
2013-07-30T00:00:00.000Z
2013-08-06T00:00:00.000Z
2013-08-13T00:00:00.000Z
2013-08-20T00:00:00.000Z
2013-08-27T00:00:00.000Z
2013-09-03T00:00:00.000Z
2013-09-10T00:00:00.000Z
2013-09-17T00:00:00.000Z
2013-09-24T00:00:00.000Z
2013-10-01T00:00:00.000Z
2013-10-08T00:00:00.000Z
2013-10-15T00:00:00.000Z
2013-10-22T00:00:00.000Z
2013-10-29T00:00:00.000Z
2013-11-05T00:00:00.000Z
2013-11-12T00:00:00.000Z
2013-11-19T00:00:00.000Z
2013-11-26T00:00:00.000Z
2013-12-03T00:00:00.000Z
2013-12-10T00:00:00.000Z
2013-12-17T00:00:00.000Z
2013-12-24T00:00:00.000Z
2014-01-01T00:00:00.000Z
2014-01-08T00:00:00.000Z
2014-01-15T00:00:00.000Z
2014-01-22T00:00:00.000Z
2014-01-29T00:00:00.000Z
2014-02-05T00:00:00.000Z
2014-02-12T00:00:00.000Z
2014-02-19T00:00:00.000Z
2014-02-26T00:00:00.000Z
2014-03-05T00:00:00.000Z
2014-03-12T00:00:00.000Z
2014-03-19T00:00:00.000Z
2014-03-26T00:00:00.000Z
2014-04-02T00:00:00.000Z
2014-04-09T00:00:00.000Z
2014-04-16T00:00:00.000Z
2014-04-23T00:00:00.000Z
2014-04-30T00:00:00.000Z
2014-05-07T00:00:00.000Z
2014-05-14T00:00:00.000Z
2014-05-21T00:00:00.000Z
2014-05-28T00:00:00.000Z
2014-06-04T00:00:00.000Z
2014-06-11T00:00:00.000Z
2014-06-18T00:00:00.000Z
2014-06-25T00:00:00.000Z
2014-07-02T00:00:00.000Z
2014-07-09T00:00:00.000Z
2014-07-16T00:00:00.000Z
2014-07-23T00:00:00.000Z
2014-07-30T00:00:00.000Z
2014-08-06T00:00:00.000Z
2014-08-13T00:00:00.000Z
2014-08-20T00:00:00.000Z
2014-08-27T00:00:00.000Z
2014-09-03T00:00:00.000Z
2014-09-10T00:00:00.000Z
2014-09-17T00:00:00.000Z
2014-09-24T00:00:00.000Z
2014-10-01T00:00:00.000Z
2014-10-08T00:00:00.000Z
2014-10-15T00:00:00.000Z
2014-10-22T00:00:00.000Z
2014-10-29T00:00:00.000Z
2014-11-05T00:00:00.000Z
2014-11-12T00:00:00.000Z
2014-11-19T00:00:00.000Z
2014-11-26T00:00:00.000Z
2014-12-03T00:00:00.000Z
2014-12-10T00:00:00.000Z
2014-12-17T00:00:00.000Z
2014-12-24T00:00:00.000Z
2015-01-01T00:00:00.000Z
2015-01-08T00:00:00.000Z
2015-01-15T00:00:00.000Z
2015-01-22T00:00:00.000Z
2015-01-29T00:00:00.000Z
2015-02-05T00:00:00.000Z
2015-02-12T00:00:00.000Z
2015-02-19T00:00:00.000Z
2015-02-26T00:00:00.000Z
2015-03-05T00:00:00.000Z
2015-03-12T00:00:00.000Z
2015-03-19T00:00:00.000Z
2015-03-26T00:00:00.000Z
2015-04-02T00:00:00.000Z
2015-04-09T00:00:00.000Z
2015-04-16T00:00:00.000Z
2015-04-23T00:00:00.000Z
2015-04-30T00:00:00.000Z
2015-05-07T00:00:00.000Z
2015-05-14T00:00:00.000Z
2015-05-21T00:00:00.000Z
2015-05-28T00:00:00.000Z
2015-06-04T00:00:00.000Z
2015-06-11T00:00:00.000Z
2015-06-18T00:00:00.000Z
2015-06-25T00:00:00.000Z
2015-07-02T00:00:00.000Z
2015-07-09T00:00:00.000Z
2015-07-16T00:00:00.000Z
2015-07-23T00:00:00.000Z
2015-07-30T00:00:00.000Z
2015-08-06T00:00:00.000Z
2015-08-13T00:00:00.000Z
2015-08-20T00:00:00.000Z
2015-08-27T00:00:00.000Z
2015-09-03T00:00:00.000Z
2015-09-10T00:00:00.000Z
2015-09-17T00:00:00.000Z
2015-09-24T00:00:00.000Z
2015-10-01T00:00:00.000Z
2015-10-08T00:00:00.000Z
2015-10-15T00:00:00.000Z
2015-10-22T00:00:00.000Z
2015-10-29T00:00:00.000Z
2015-11-05T00:00:00.000Z
2015-11-12T00:00:00.000Z
2015-11-19T00:00:00.000Z
2015-11-26T00:00:00.000Z
2015-12-03T00:00:00.000Z
2015-12-10T00:00:00.000Z
2015-12-17T00:00:00.000Z
2015-12-24T00:00:00.000Z
2016-01-01T00:00:00.000Z
2016-01-08T00:00:00.000Z
2016-01-15T00:00:00.000Z
2016-01-22T00:00:00.000Z
2016-01-29T00:00:00.000Z
2016-02-05T00:00:00.000Z
2016-02-12T00:00:00.000Z
2016-02-19T00:00:00.000Z
2016-02-26T00:00:00.000Z
2016-03-04T00:00:00.000Z
2016-03-11T00:00:00.000Z
2016-03-18T00:00:00.000Z
2016-03-25T00:00:00.000Z
2016-04-01T00:00:00.000Z
2016-04-08T00:00:00.000Z
2016-04-15T00:00:00.000Z
2016-04-22T00:00:00.000Z
2016-04-29T00:00:00.000Z
2016-05-06T00:00:00.000Z
2016-05-13T00:00:00.000Z
2016-05-20T00:00:00.000Z
2016-05-27T00:00:00.000Z
2016-06-03T00:00:00.000Z
2016-06-10T00:00:00.000Z
2016-06-17T00:00:00.000Z
2016-06-24T00:00:00.000Z
2016-07-01T00:00:00.000Z
2016-07-08T00:00:00.000Z
2016-07-15T00:00:00.000Z
2016-07-22T00:00:00.000Z
2016-07-29T00:00:00.000Z
2016-08-05T00:00:00.000Z
2016-08-12T00:00:00.000Z
2016-08-19T00:00:00.000Z
2016-08-26T00:00:00.000Z
2016-09-02T00:00:00.000Z
2016-09-09T00:00:00.000Z
2016-09-16T00:00:00.000Z
2016-09-23T00:00:00.000Z
2016-09-30T00:00:00.000Z
2016-10-07T00:00:00.000Z
2016-10-14T00:00:00.000Z
2016-10-21T00:00:00.000Z
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment