-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscript.js
448 lines (400 loc) · 104 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
// ==UserScript==
// @name EGS tweaks
// @version 0.4.5
// @description EGS bells and whistles
// @author /u/kuilin ([email protected])
// @match *://*.egscomics.com/*
// @match *://egscomics.com/*
// @grant none
// @updateURL https://raw.githubusercontent.com/likuilin/egs-greasemonkey-tweaks/master/script.js
// ==/UserScript==
(function() {
'use strict';
// inject entire userscript into page context
// this is fine because the userscript requires no privileged things
// nevertheless it is a workaround
var code =
(function() {
'use strict';
//feel free to edit these
var settings = {
//title replacement format (%asdf% = variable)
titleReplace: true,
titleReplaceString: "%oldTitle%<br>%superArcTitle%:<br>%arcTitle% #%comicId%",
/*
a la .bat, %variable% is variable.
oldTitle = previously what was there in the line
superArcTitle = bold super-arc in dropdown
arcTitle = item in dropdown that this comic is under
slug = the unique identifier (alphanumeric plus dashes) for this comic, part of canon URL
title = the title of this specific comic
(NB: comiccontrol takes the title Dan enters and normalizes it into the slug
the title itself doesn't have to be alphanumeric
for most old comics, it's just the date because the title /was/ the date
but it doesn't have to be - for the question mark in the main series, the title is "Question Mark 01" etc
and for recent ones, it's been Sister3-285 etc)
comicId = the sequential # of the comic (NOT the old ID) as determined by the archive dropdown index, may change if comics are inserted so don't memorize numbers or something
oldComicId = the old comic ID, or nothing if it postdates the cc update
*/
//numerical jumper
//the numerical jumper adds a hash, like #id=123 to all comic pages, and watches that for changes, and initially
//if it doesn't match the new sequence ID of the current comic, and that sequence ID exists, then the page will be redirected to the comic that does match
//this allows a user to jump around comics numerically like how it was possible before the website update that removed ID numbers
numericalJumper: true,
//extra nav buttons
showExtraNavButtons: true,
showPrevArc: true,
showCurArc: true,
showRandom: true,
showHelp: true,
showReddit: true,
showFacebook: true,
showNextArc: true,
moveDefaultNavButtonsAside: false,
//"select a comic" selector modifications
addDefault: true, //insert an entry for where we currently are
prependComicId: true, //prepend the comicId (not the old comic ID) to the select a comic
boldSuperArcs: true, //make the superarcs bold
//top bar cosmetics
autoScrollPastHeader: true,
removeTopExtraSpace: true,
//commentary section
//hideCommentaryIfNoneExists: true, //hide the commentary section if there isn't any //this was actually implemented in the change, yay!
showCommentaryDate: true, //show the previously-shown currently-hidden commentary date and time
addInfoToCommentarySection: true, //add technical info about the current comic below the ad next to the commentary
//keyboard navigation
keyboardNavigation: true,
keyboardNavigationKeys: { //JS keycodes, use -1 to disable
left:37, down:-1, right:39, up:-1 //arrow keys, up and down disabled (not gonna override scrolling as a default lol)
//left:37, down:40, right:39, up:38 //arrow keys, all enabled
//left:65, down:83, right:68, up:87 //uncomment for wasd
}
};
var localStorageHeader = "EGStweaks_save_"
var $ = window.jQuery;
var retry;
$(retry = function () {
//canon-ize the link first
//determine which comic it is (main, sketch, or np) using next or prev button
var urlBase;
if ($(".cc-prev").length > 0) {
//previous button exists
urlBase = $(".cc-prev").attr("href").split("/");
} else if ($(".cc-next").length > 0) {
//next button exists (likely first comic)
urlBase = $(".cc-next").attr("href").split("/");
} else return console.log("No next or previous button found"); //likely not a page with a comic, so we do nothing on those
urlBase.pop();
urlBase = urlBase.join("/") + "/";
//title is provided in title of comic
//notably, slug isn't
var title = $("#cc-comic").attr("title");
if (!title) return console.log("No current title image found");
var urlCheck = urlBase.split("egscomics");
if (urlCheck.length != 2 || (
urlCheck[1] != ".com/comic/" &&
urlCheck[1] != ".com/sketchbook/" &&
urlCheck[1] != ".com/egsnp/")) return console.log("Base URL mismatch");
var section = urlBase.split("/")[3];
//see if we have cached archive dropdown information, to not ping two pages for every requested page because that would be rude
//cache of the /archive page is invalidated and re-ajaxed upon any of:
//* doesn't exist
//* >24 hrs old
//* latest exists and isn't in it
var sectionComics;
var latestSlug = $(".cc-last").attr("href"); //may be undefined if we're currently on the lastest one
if (latestSlug) latestSlug = latestSlug.split("/").pop();
if (!(
(sectionComics = localStorage.getItem(localStorageHeader + section)) &&
(sectionComics = JSON.parse(sectionComics)) &&
(typeof latestSlug == "undefined" ?
sectionComics.by_slug[sectionComics.by_id[sectionComics.ids]].title == title : //if it is undefined, latest title must match
sectionComics.by_slug.hasOwnProperty(latestSlug)) && //if it's not undefined, we have to have the latest slug
(new Date() - sectionComics.updated < 24*60*60*1000))) {
//invalidate and re-fetch sectionComics
sectionComics = {
by_slug: {},
by_id: {},
arcs: {},
super_arcs: {},
updated: +new Date(),
ids: 0
};
console.log("Fetching archive dropdown");
//sometimes urlBase has the wrong protocol
$.ajax(location.origin + urlBase.split("egscomics.com").pop() + "archive").done(function (src) {
//cardinal sinTM - parsing html using regex
var r = /<option value="(?:comic|sketchbook|egsnp)\/([\w-]+)">(.+?) - (.+?)<\/option>/g, match; //tofix if date contains " - "
while (match = r.exec(src)) {
sectionComics.ids++;
sectionComics.by_slug[match[1]] = {
date: match[2],
title: $("<textarea/>").html(match[3]).val(),
id: sectionComics.ids}
sectionComics.by_id[sectionComics.ids] = match[1];
}
r = /<a name="(\d+)"><\/a><div class="cc-storyline-text"><div class="cc-storyline-header"><a href="http(?:s)?:\/\/(?:www)?\.?egscomics\.com\/\w+\/([\w-]+)">([^<]*)<\/a>/g;
while (match = r.exec(src)) {
sectionComics.arcs[match[1]] = {
slug: match[2],
title: $("<textarea/>").html(match[3]).val()
}
}
r = /<a name="(\d+)"><\/a><div class="cc-storyline-header">([^<]*)<\/div>/g;
while (match = r.exec(src)) {
sectionComics.super_arcs[match[1]] = match[2];
}
sectionComics.justNow = false;
localStorage.setItem(localStorageHeader + section, JSON.stringify(sectionComics));
sectionComics.justNow = true;
finishSetup();
});
} else finishSetup();
function fail(message) {
error_message(message);
if (retried || (sectionComics && sectionComics.justNow)) {
return;
} else {
console.log("Reset save, retrying...");
localStorage.setItem("EGStweaks_save_" + section, null);
retried = true;
retry();
}
}
function error_message(message) {
console.log("EGS Tweaks Error: " + message);
$("#leftarea").prepend($("<span/>").text("EGS Tweaks Error: " + message).append(' - Please <a href="https://github.com/likuilin/egs-greasemonkey-tweaks/issues" target="_blank">report this error</a> and mention the URL!<br>'));
}
var slug;
var retried;
retried = false;
//hoisted upwards. called after necessary any refreshing of sectionComics happens
function finishSetup() {
//adding error handling, because i'm lazy
try {
finishSetupRun();
} catch (e) {
fail("Exception in finishSetup: " + e.toString());
console.log(e);
debugger;
}
}
function finishSetupRun() {
//find current slug using title matching
for (var x in sectionComics.by_slug) {
if (!sectionComics.by_slug.hasOwnProperty(x)) continue;
if (sectionComics.by_slug[x].title == title) {
slug = x;
break;
}
}
if (typeof slug == "undefined") fail("Cound not find current title in archive list");
//jump numerically if needed, plus do so on hash change
if (settings.numericalJumper) {
var checkHash = function () {
var hash = window.location.hash.split("=");
if (hash.length >= 2 && hash[0] == "#id") {
hash = parseInt(hash[1]);
if (hash != sectionComics.by_slug[slug].id) {
if (typeof sectionComics.by_id[hash] != "undefined") window.location = urlBase + sectionComics.by_id[hash] + '#id=' + hash;
else error_message("Jumper ID does not correspond to a comic: " + hash);
}
} else {
window.location.replace("#id=" + sectionComics.by_slug[slug].id);
}
}
//numerical jumper only jumps on hash change after page load, not on initial load
//this is to make back-buttoning through hash-change jumps work
window.location.replace("#id=" + sectionComics.by_slug[slug].id);
$(window).on('hashchange', checkHash);
}
//determine current arc using currently selected option
//var selectedEntry = $("select option:selected"); //this doesn't work on back buttoning because the top one is :selected, need to look for the attribute
var selectedEntry;
$("select option").toArray().forEach(e=>{
if ($(e).attr("selected")) selectedEntry = $(e);
});
if (typeof selectedEntry == "undefined") return fail("Unable to get current arc");
//window.associds is created by the page, for the dropdown to use
if (typeof window.associds == "undefined" || !Array.isArray(window.associds)) return fail("Unable to fetch associds - did the dropdown style change?");
var prevArc = window.associds[selectedEntry.prev().val()]
var curArc = window.associds[selectedEntry.val()];
var curArcId = selectedEntry.val();
var nextArc = window.associds[selectedEntry.next().val()];
window.alertHelp = function () {
alert(`This nav bar is added by Kui's EGS Tampermonkey script, by /u/kuilin. These buttons and more are configurable in the script.
< jumps to the 1st page of the previous arc (gray when in first arc)
= jumps to the 1st page of the current arc (gray when on 1st page of current arc)
! jumps to a random comic (this might give you "There is no comic with this ID.", just try again if it does)
? alerts this help message (the one you're reading now)
R opens Reddit to try to find the thread for the comic (button always works, only blue when the comic is deemed likely to have a thread, as the subreddit was created 3 years ago)
F tries to search Facebook for the comic (it's always blue because Facebook makes it weirdly difficult to tell when the group was created)
> jumps to the 1st page of the next arc (gray when on last arc)
Also, arrow keys can be used to navigate - left and right arrow are next and prev comics, arc skipping is configurable.`);
};
window.goToReddit = function () {
var search = [];
var list = lookupOldURLs(slug, section);
if (!list.includes(location.pathname + location.search)) list.push(location.pathname + location.search); //current href sanity check
if (!list.includes(urlBase + slug)) list.push("/" + slug); //current calculated slug sanity check
list.forEach(e=>search.push('url:"www.egscomics.com' + e + '"'));
window.open("https://www.reddit.com/r/elgoonishshive/search?restrict_sr=on&sort=relevance&t=all&syntax=lucene&q=" + encodeURIComponent(search.join(" OR ")));
};
window.goToFacebook = function () { //facebook can unfortunately only search one at once
var list = lookupOldURLs(slug, section);
var search = "";
if (list.length == 0) search = location.href; //if no old URL's, use current location
else search = list[0]; //otherwise use first old URL (usually date, which is usually better?)
window.open('https://www.facebook.com/search/top/?q="'+encodeURIComponent(search)+'"');
};
window.jumpRandom = function () {
window.location = urlBase + sectionComics.by_id[Math.floor(sectionComics.ids * Math.random() - 1)];
};
var arcHop = "";
if (settings.showExtraNavButtons) {
arcHop = [];
if (settings.showPrevArc) arcHop.push(prevArc?('<span style="color:blue;cursor:pointer" onclick="changePage(\'' + prevArc + '\');"><</span>'):'<');
if (settings.showCurArc) arcHop.push(slug!=curArc?('<span style="color:blue;cursor:pointer" onclick="changePage(\'' + curArc + '\');">=</span>'):'=');
if (settings.showRandom) arcHop.push('<span style="color:blue;cursor:pointer" onclick="jumpRandom();">!</span>');
if (settings.showHelp) arcHop.push('<span style="color:blue;cursor:pointer" onclick="alertHelp();">?</span>');
var oldId = getOldId(slug, section);
if (settings.showReddit) arcHop.push('<span style="'+(typeof oldId == "undefined" || (
(section == "comic" && oldId >= 1875) ||
(section == "egsnp" && oldId >=180) ||
(section == "sketchbook" && oldId >=766)
)?'color:blue;':'')+'cursor:pointer" onclick="goToReddit();">R</span>');
if (settings.showFacebook) arcHop.push('<span style="color:blue;cursor:pointer" onclick="goToFacebook();">F</span>');
if (settings.showNextArc) arcHop.push(nextArc?('<span style="color:blue;cursor:pointer" onclick="changePage(\'' + nextArc + '\');">></span>'):'>');
arcHop = arcHop.join(' | ');
$("#chapter-dropdown").prepend($("#cc-comicbody").prev().clone().html(arcHop + "<br>").css("margin-bottom", "10px"));
}
window.changePage = function (newSlug) {
window.location = urlBase + newSlug;
}
var superArcElement = $("select option:selected");
while (superArcElement != undefined && (superArcElement.html().startsWith(" "))) superArcElement = superArcElement.prev();
var superArc = window.associds[+superArcElement.val()];
var superArcId = +superArcElement.val();
var superArcTitle = superArcElement.text();
if (settings.titleReplace) $("#cc-comicbody").prev().html(
settings.titleReplaceString
.split("%oldTitle%").join($("#cc-comicbody").prev().html())
.split("%superArcTitle%").join(superArcTitle)
.split("%arcTitle%").join($("select option:selected").text().trim())
.split("%slug%").join(slug)
.split("%title%").join(sectionComics.by_slug[slug].title)
.split("%comicId%").join(sectionComics.by_slug[slug].id)
.split("%oldComicId%").join(getOldId(slug, section))
+ "<br>" + arcHop
).css("margin-bottom", "10px");
if (settings.moveDefaultNavButtonsAside) {
$("#cc-comicbody").prev().css("width", "inherit");
$(".cc-nav").css("width", "inherit");
}
//add id numbers to select a comic
if (settings.prependComicId) $('select[name="comic-storyline"] option').each((_,e)=>{
//bold superarcs
if (settings.boldSuperArcs && !e.innerHTML.startsWith(" ")) {
$(e).css("font-weight", "bold");
e.innerHTML = " " + e.innerHTML;
}
//the website has a glitch where some select boxes don't have proper associd's... ;-; it's been reported to Dan.
else if (sectionComics.by_slug[window.associds[+e.value]]) e.innerHTML="#"+sectionComics.by_slug[window.associds[+e.value]].id+" "+e.innerHTML
});
//move "select a comic" to where the current comic would be
if (settings.addDefault) $($('select[name="comic-storyline"] option')[0]).clone()
.insertAfter(selectedEntry)
.text((settings.prependComicId?'#' + sectionComics.by_slug[slug].id : '') + ' > Current Location < ')
.css("font-weight","bold")
.attr("selected", 1);
//auto scroll
if (settings.autoScrollPastHeader) $("html, body").scrollTop($(".cc-nav").offset().top-20);
//extra space in left area
if (settings.removeTopExtraSpace) {
if ($("#leftarea div")[0].innerHTML == "") $($("#leftarea div")[0]).remove();
$(".cc-nav").css("padding", 0);
if ($("#chapter-dropdown").next()[0].innerHTML == "") $("#chapter-dropdown").next().remove();
}
//arrow key navigation
if (settings.keyboardNavigation) {
document.addEventListener("keyup", function (e) {
if (e.keyCode == settings.keyboardNavigationKeys.left && $(".cc-prev")[0]) $(".cc-prev")[0].click(); //left
else if (e.keyCode == settings.keyboardNavigationKeys.right && $(".cc-next")[0]) $(".cc-next")[0].click(); //right
else if (e.keyCode == settings.keyboardNavigationKeys.down && nextArc) window.changePage(nextArc); //down
else if (e.keyCode == settings.keyboardNavigationKeys.up && $(".cc-prev").length != 0) {
//up does different things
//if we're currently at the 1st comic in an arc, hop to the previous arc's first comic
//otherwise hop to the 1st comic in the arc
if (curArc == slug) window.changePage(prevArc);
else window.changePage(curArc);
}
});
}
//commentary time
if (settings.showCommentaryDate) $(".cc-publishtime").show();
if (settings.addInfoToCommentarySection) {
var imgUrl = $("#cc-comic").attr("src").split("/").pop();
var linkHelper = function (src, text, alt) {
if (alt == undefined) alt = text;
var href = location.origin + src;
if (href == location.href) return alt;
else return '<a href="' + href + '">' + text + '</a>';
}
$("#boxad").after('<div style="float: right;width: 300px;"><br>Technical Details:' + "<br><br>" +
"Series: " + section + "<br>" +
"Slug: " + slug + "<br>" +
"Seq ID: " + sectionComics.by_slug[slug].id + "<br>" +
"Old ID: " + (oldId ? oldId + ' (' + linkHelper('/' + section.replace("comic", "index") + ".php?id=" + oldId, "Go", "Current") + ')' : "None") + "<br>" +
(location.origin + location.pathname == urlBase + slug ? "Current URL is Canonical" : '<span style="color: red;">Non-Canonical URL</span> (<a href="' + urlBase + slug + '">Go to Canonical</a>)') + "<br>" +
"<br>" +
"Title: " + title + "<br>" +
"Publish Date: " + sectionComics.by_slug[slug].date + "<br>" +
"Image: " + linkHelper('/comics/' + imgUrl, imgUrl) + "<br>" +
"<br>" +
"Super Title: " + sectionComics.super_arcs[superArcId] + "<br>" +
"Super ID: " + superArcId + "<br>" +
"Arc Title: " + sectionComics.arcs[curArcId].title + "<br>" +
"Arc ID: " + curArcId + "<br>" +
(oldId ? "<br>Possible Old URLs:" + "<br>" +
lookupOldURLs(slug, section).map(e=>linkHelper(e, e)).join("<br>") + "<br>": "") + "<br>" +
"Local cache of /archive: " + (sectionComics.justNow ? "Just now" : Math.floor((new Date() - sectionComics.updated) / 1000) + "s ago") + ' (<a href="#" onclick="reloadCache();return false;">Reload</a>)' +
"</div>");
$("#news").css("min-height", "300px");
}
}
window.reloadCache = function () {
localStorage.setItem(localStorageHeader + section, 0);
window.location.reload();
}
function lookupOldURLs(slug, section) {
var oldId = getOldId(slug, section);
if (typeof oldId == "undefined") return []; //not found, probably new
var possiblePrefixes = [];
if (section == "egsnp") possiblePrefixes.push("/egsnp.php");
else if (section == "sketchbook") possiblePrefixes.push("/sketchbook.php");
else if (section == "comic") {
possiblePrefixes.push("/");
possiblePrefixes.push("/index.php");
}
var out = [];
//attempt to treat slug as date
if (slug.length < 11) possiblePrefixes.forEach(e=>out.push(e + "?date=" + slug));
//old ID numbers
possiblePrefixes.forEach(e=>out.push(e + "?id=" + oldId));
return out;
}
function getOldId(slug, section) {
//thank you https://github.com/TBTerra/egs-ids/ for this data
var lookup;
if (section == "egsnp") lookup = {'2004-02-24': 12, '2004-02-26': 13, '2004-02-28': 14, '2004-03-02': 15, '2004-03-04': 16, '2004-03-06': 17, '2004-03-08': 18, '2004-03-11': 19, '2004-03-13': 20, '2004-03-16': 21, '2004-03-18': 22, '2004-03-21': 23, '2004-03-22': 24, '2004-03-24': 25, '2004-03-26': 26, '2004-03-30': 27, '2004-04-01': 28, '2004-04-03': 29, '2004-04-06': 30, '2004-04-08': 31, '2004-04-10': 32, '2004-04-13': 33, '2004-04-15': 34, '2004-04-18': 35, '2004-04-20': 36, '2004-04-22': 37, '2004-04-24': 38, '2004-04-27': 39, '2004-04-29': 40, '2004-05-01': 41, '2004-05-04': 42, '2004-05-06': 43, '2004-05-08': 44, '2004-05-11': 45, '2004-05-13': 46, '2004-05-15': 47, '2004-05-18': 48, '2004-05-20': 49, '2004-05-22': 50, '2004-05-25': 51, '2004-05-27': 52, '2004-05-29': 53, '2004-06-01': 54, '2004-06-03': 55, '2004-06-06': 56, '2004-06-15': 57, '2004-06-17': 58, '2004-06-19': 59, '2004-06-22': 60, '2004-06-24': 61, '2004-06-26': 62, '2004-06-29': 63, '2004-07-01': 64, '2004-07-03': 65, '2004-07-06': 66, '2004-07-08': 67, '2004-07-10': 68, '2004-07-13': 69, '2004-07-15': 70, '2004-07-17': 71, '2004-08-03': 72, '2004-08-05': 73, '2004-08-07': 74, '2004-08-10': 75, '2004-08-12': 76, '2004-08-14': 77, '2004-08-17': 78, '2004-08-19': 79, '2004-08-21': 80, '2004-08-25': 81, '2004-08-27': 82, '2004-08-29': 83, '2004-08-31': 84, '2004-09-02': 85, '2004-09-04': 86, '2004-09-07': 87, '2004-09-10': 88, '2004-09-12': 89, '2004-09-14': 90, '2004-09-16': 91, '2004-09-19': 92, '2004-09-21': 93, '2004-09-23': 94, '2004-09-25': 95, '2005-06-14': 96, '2005-06-16': 97, '2005-06-18': 98, '2005-06-21': 99, '2005-06-23': 100, '2005-06-25': 101, '2005-06-28': 102, '2005-06-30': 103, '2005-07-01': 104, '2005-07-05': 105, '2005-07-07': 106, '2005-07-09': 107, '2005-07-19': 108, '2005-07-22': 109, '2005-07-23': 110, '2005-07-26': 111, '2005-07-28': 112, '2005-07-30': 113, '2005-08-02': 114, '2005-08-05': 115, '2005-08-07': 116, '2005-08-08': 117, '2005-08-10': 118, '2005-08-12': 119, '2005-08-16': 120, '2006-07-17': 121, '2006-07-19': 122, '2006-07-21': 123, '2006-07-25': 124, '2006-07-27': 125, '2006-07-29': 126, '2006-08-01': 127, '2006-08-03': 128, '2006-08-05': 129, '2006-08-08': 130, '2006-08-10': 131, '2006-08-12': 132, '2006-08-15': 133, '2006-08-17': 134, '2006-08-19': 135, '2006-08-22': 136, '2006-08-24': 137, '2006-08-26': 138, '2006-08-29': 139, '2006-08-30': 140, '2006-09-02': 141, '2008-09-08': 142, '2008-09-10': 143, '2008-09-12': 144, '2008-09-15': 145, '2008-09-17': 146, '2008-09-19': 147, '2008-09-22': 148, '2008-09-24': 149, '2008-09-27': 150, '2008-09-29': 151, '2008-10-02': 152, '2008-10-04': 153, '2008-10-07': 154, '2008-10-11': 155, '2008-10-14': 156, '2009-10-27': 1, '2009-10-29': 3, '2009-11-03': 6, '2009-11-05': 2, '2009-11-10': 7, '2009-11-12': 5, '2009-11-17': 8, '2009-11-19': 4, '2009-11-24': 10, '2009-11-26': 9, '2009-12-01': 11, '2009-12-03': 157, '2009-12-08': 158, '2009-12-10': 159, '2009-12-15': 160, '2009-12-17': 161, '2009-12-22': 162, '2009-12-24': 163, '2009-12-29': 164, '2009-12-31': 165, '2010-01-05': 166, '2010-01-07': 167, '2010-01-12': 168, '2010-01-15': 169, '2010-01-19': 170, '2010-01-21': 171, '2010-01-27': 172, '2010-01-29': 173, '2010-02-03': 174, '2010-02-05': 175, '2010-02-10': 177, '2010-02-12': 178, '2010-02-16': 176, '2010-02-19': 179, '2014-08-01': 180, '2014-08-04': 181, '2014-08-06': 182, '2014-08-08': 183, '2014-08-11': 184, '2014-08-13': 185, '2014-08-14': 186, '2014-08-18': 187, '2014-08-19': 188, '2014-08-22': 189, '2014-08-25': 190, '2014-08-26': 191, '2014-08-29': 192, '2014-09-01': 193, '2014-09-03': 194, '2014-09-05': 195, '2014-09-08': 196, '2014-09-10': 197, '2014-09-12': 198, '2014-09-15': 199, '2014-09-17': 200, '2014-09-19': 201, '2014-09-22': 202, '2014-09-24': 203, '2014-09-26': 204, '2014-09-29': 205, '2014-10-01': 206, '2014-10-03': 207, '2014-10-06': 208, '2014-10-08': 209, '2014-10-10': 210, '2014-10-13': 211, '2014-10-15': 212, '2014-10-17': 213, '2014-10-20': 214, '2014-10-22': 215, '2014-10-24': 216, '2014-10-27': 217, '2014-10-29': 218, '2014-10-31': 219, '2014-11-03': 220, '2014-11-05': 221, '2014-11-07': 222, '2014-11-10': 223, '2014-11-12': 224, '2014-11-14': 225, '2014-11-17': 226, '2014-11-19': 227, '2014-11-21': 228, '2014-11-24': 229, '2014-11-26': 230, '2014-11-28': 231, '2014-12-01': 232, '2014-12-03': 233, '2014-12-05': 234, '2014-12-10': 235, '2014-12-11': 236, '2014-12-12': 237, '2014-12-15': 238, '2014-12-17': 239, '2014-12-19': 240, '2014-12-22': 241, '2014-12-24': 242, '2014-12-26': 243, '2014-12-29': 244, '2014-12-31': 245, '2015-01-02': 246, '2015-01-05': 247, '2014-12-07': 248, '2015-01-09': 249, '2015-01-12': 250, '2014-01-15': 251, '2015-01-16': 252, '2015-01-19': 253, '2015-01-21': 254, '2015-01-23': 255, '2015-01-26': 256, '2015-02-28': 257, '2015-01-30': 258, '2015-02-02': 259, '2015-02-04': 260, '2015-02-06': 261, '2015-02-09': 262, '2015-02-11': 263, '2015-02-13': 264, '2015-02-16': 265, '2015-02-18': 266, '2015-02-20': 267, '2015-02-23': 268, '2015-02-15': 269, '2015-02-27': 270, '2015-03-02': 271, '2015-03-04': 272, '2015-03-06': 273, '2015-03-09': 274, '2015-03-11': 275, '2015-03-13': 276, '2015-03-17': 277, '2015-03-18': 278, '2015-03-20': 279, '2015-03-23': 280, '2015-03-25': 281, '2015-03-27': 282, '2015-03-30': 283, '2015-04-01': 284, '2015-04-03': 285, '2015-04-06': 286, '2015-04-08': 287, '2015-04-10': 288, '2015-04-13': 289, '2015-04-15': 290, '2015-04-17': 291, '2015-04-20': 292, '2015-04-22': 293, '2015-05-24': 294, '2015-05-27': 295, '2015-05-28': 296, '2015-05-01': 297, '2015-05-04': 298, '2015-05-06': 299, '2015-05-08': 300, '2015-05-11': 301, '2015-05-013': 302, '2015-05-15': 303, '2015-05-18': 304, '2015-05-20': 305, '2015-05-22': 306, '2015-05-25': 307, '2015-05-27-2': 308, '2015-05-29': 309, '2015-06-01': 310, '2015-06-03': 311, '2015-06-05': 312, '2015-06-08': 313, '2015-06-10': 314, '2015-06-12': 315, '2015-06-15': 316, '2015-06-17': 317, '2015-06-19': 318, '2015-06-22': 319, '2015-06-24': 320, '2015-06-26': 321, '2015-06-29': 322, '2015-07-01': 323, '2015-07-03': 324, '2015-07-06': 325, '2015-07-08': 326, '2015-07-10': 327, '2015-07-13': 328, '2015-07-15': 329, '2015-07-16': 330, '2015-07-20': 331, '2015-07-22': 332, '2015-07-24': 333, '2015-07-27': 334, '2015-07-29': 335, '2015-07-31': 336, '2015-08-03': 337, '2015-08-05': 338, '2015-08-07': 339, '2015-08-10': 340, '2015-08-12': 341, '2015-08-14': 342, '2015-08-17': 343, '2015-08-19': 344, '2015-08-21': 345, '2015-08-24': 346, '2015-08-26': 347, '2015-08-28': 348, '2015-08-31': 349, '2015-19-02': 350, '2015-09-04': 351, '2015-09-07': 352, '2015-09-09': 353, '2015-09-11': 354, '2015-09-14': 355, '2015-09-16': 356, '2015-09-18': 357, '2015-09-21': 358, '2015-09-23': 359, '2015-09-25': 360, '2015-09-28': 361, '2015-09-30': 362, '2015-10-02': 363, '2015-10-05': 364, '2015-10-07': 365, '2015-10-09': 366, '2015-10-12': 367, '2015-10-14': 368, '2015-10-16': 369, '2015-10-19': 370, '2015-10-21': 371, '2015-10-23': 372, '2015-10-26': 373, '2015-10-28': 374, '2015-10-30': 375, '2015-11-02': 376, '2015-11-04': 377, '2015-11-06': 378, '2015-11-09': 379, '2015-11-11': 380, '2015-11-13': 381, '2015-11-16': 382, '2015-11-18': 383, '2015-11-20': 384, '2015-11-23': 385, '2015-11-25': 386, '2015-11-27': 387, '2015-11-30': 388, '2015-12-02': 389, '2015-12-04': 390, '2015-12-07': 391, '2015-12-09': 392, '2015-12-11': 393, '2015-12-14': 394, '2015-12-16': 395, '2015-12-18': 396, '2015-12-21': 397, '2015-12-23': 398, '2015-12-25': 399, '2015-12-28': 400, '2015-12-30': 401, '2016-01-01': 402, '2015-12-04-2': 403, '2016-01-06': 404, '2016-01-08': 405, '2016-01-11': 406, '2016-01-13': 407, '2016-01-14': 408, '2016-01-17': 409, '2016-01-20': 410, '2016-01-22': 411, '2016-01-26': 412, '2016-01-27': 413, '2016-01-29': 414, '2016-02-01': 415, '2016-02-03': 416, '2016-02-05': 417, '2016-02-08': 418, '2016-02-10': 419, '2016-02-12': 420, '2016-02-15': 421, '2016-02-17': 422, '2016-02-19': 423, '2016-02-22': 424, '2016-02-24': 425, '2016-02-26': 426, '2016-02-29': 427, '2016-03-02': 428, '2016-03-04': 429, '2016-03-07': 430, '2016-03-09': 431, '2016-03-11': 432, '2016-03-14': 433, '2016-03-16': 434, '2016-03-18': 435, '2016-03-21-no-tail-yanking': 436, '2016-03-23-would-them-be': 437, '2016-03-25-chibipocalypse': 438, '2016-03-28-friendgeance': 439, '2016-03-30-you39ve-lost-karma': 440, '2016-04-01-noble-quest': 441, '2016-04-04-silver-tongue': 442, '2016-04-06': 443, '2016-04-08-outsourcing': 444, '2016-04-11-ai-with-af': 445, '2016-04-13-sales-pitch': 446, '2016-04-15-lizard-battle': 447, '2016-04-18-thank-you-very-much': 448, '2016-04-20-i39ll-be-there-for-you': 449, '2016-04-22-or-not': 450, '2016-04-25-bro': 451, '2016-04-27-oh-bro-no': 452, '2016-04-29-welp': 453, '2016-05-02': 454, '2016-05-04-bar-trolling': 455, '2016-05-06-milking-it': 456, '2016-04-09-dun-dun-dun': 457, '2016-05-11-deduction-rush': 458, '206-05-13-solved': 459, '2016-05-16-legendary-roach': 460, '2016-05-18-end-of-an-era': 461, '2016-05-20': 462, '2016-05-23': 463, '2016-05-25': 464, '2015-05-27-3': 465, '2016-05-30': 466, '2016-06-01': 467, '2016-06-03': 468, '2016-06-06': 469, '2016-06-08': 470, '2016-06-10': 471, '2016-06-13': 472, '2016-06-15': 473, '2016-06-17': 474, '2016-06-20': 475, '2016-06-22': 476, '2016-06-24': 477, '2016-06-27': 478, '2016-06-29': 479, '2016-07-01': 480, '2016-07-04': 481, '2016-08-06': 482, '2016-07-08': 483, '2016-07-11': 484, '2016-07-13': 485, '2016-07-15': 486, '2016-07-18': 487, '2016-07-20': 488, '2016-07-22': 489, '2016-06-25': 490, '2016-07-27': 491, '2016-07-29': 492, '2016-08-01': 493, '2016-08-04': 494, '2016-08-05': 495, '2016-08-08': 496, '2016-08-10': 497, '2016-08-12': 498, '2016-08-15': 499, '2016-08-17': 500, '2016-08-19': 501, '2016-08-22': 502, '2016-08-24': 503, '2016-08-26': 504, '2016-08-29': 505, '2016-08-31': 506, '2016-08-02': 507, '2016-09-05': 508, '2016-09-16': 509, '2016-09-09': 510, '2016-09-12': 511, '2016-09-14': 512, '2016-09-16-2': 513, '2016-09-19': 514, '2016-09-21': 515, '2016-09-23': 516, '2016-09-26': 517, '2016-09-28': 518, '2016-09-30': 519, '2016-10-03': 520, '2016-10-05': 521, '2016-10-07': 522, '2016-10-10': 523, '2016-10-12': 524, '2016-10-14': 525, '2016-10-17': 526, '2016-10-19': 527, '2016-10-21': 528, '2016-10-24': 529, '2016-10-26': 530, '2016-10-28': 531, '2016-10-31': 532, '2016-11-02': 533, '2016-11-04': 534, '2016-10-07-2': 535, '2016-11-09': 536, '2016-11-11': 537, '2016-11-14': 538, '2016-11-16': 539, '2016-11-18': 540, '2016-11-21': 541, '2016-11-23': 542, '2016-11-25': 543, '2016-11-28': 544, '2016-11-30': 545, '2016-12-02': 546, '2016-12-05': 547, '2016-12-07': 548, '2016-12-09': 549, '2016-12-12': 550, '2016-12-14': 551, '2016-12-16': 552, '2016-12-19': 553, '2016-12-21': 554, '2106-12-23': 555, '2016-12-26': 556, '2016-12-08': 557, '2016-12-30': 558, '2017-01-02': 559, '2017-01-04': 560, '2017-01-06': 561, '2016-01-09': 562, '2017-01-11': 563, '2017-01-13': 564, '2016-01-16': 565, '2017-01-18': 566, '2017-01-20': 567, '2017-01-23': 568, '2017-01-25': 569, '2017-01-27': 570, '2017-01-30': 571, '2017-02-01': 572, '2017-02-03': 573, '2017-02-06': 574, '2017-02-08': 575, '2017-02-10': 576, '2017-02-13': 577, '2017-02-15': 578, '2017-02-17': 579, '2017-02-20': 580, '2017-02-22': 581, '2017-02-24': 582, '2017-02-27': 583, '2017-03-01': 584, '2017-03-03': 585, '2017-03-06': 586, '2017-03-08': 587, '2017-03-10': 588, '2017-03-13': 589, '2017-03-15': 590, '2017-03-17': 591, '2017-03-20': 592, '2017-03-22': 593, '2017-03-24': 594, '2017-03-27': 595, '2017-03-29': 596, '2017-03-31': 597, '2017-03-03-2': 598, '2017-04-05': 599, '2017-04-037': 600, '2017-04-10-fun-at-work-1': 601, '2017-04-12-fun-at-work-2': 602, '2017-04-14-fun-at-work-3': 603, '2017-04-17-fun-at-work-4': 604, '2017-04-19-fun-at-work-5': 605, '2018-04-21-fun-at-work-6': 606, '2017-04-24-fun-at-work-7': 607, '2017-04-26-fun-at-work-8': 608, '2017-04-28-fun-at-work-8': 609, '2017-05-01-fun-at-work-10': 610, '2017-05-03-fun-at-work-11': 611, '2017-05-05-fun-at-work-12': 612, '201-05-08-fun-at-work-13': 613, '2017-05-10-fun-at-work-14': 614, '2017-05-12-fun-at-work-15': 615, '2017-05-15-fun-at-work-16': 616, '2017-05-17-fun-at-work-17': 617, '2017-05-19': 618, '2017-05-17-ellen-demo-1': 619, '2017-05-24-ellen-demo-2': 620, '2017-05-26-ellen-demo-3': 621, '2017-05-29-ellen-demo-4': 622, '2017-05-31-ellen-demo-5': 623, '2017-06-02-ellen-demo-6': 624, '2017-06-05-ellen-demo-7': 625, '2017-06-07-ellen-demo-8': 626, '2017-06-09-ellen-demo-9': 627, '2017-06-12-ellen-demo-10': 628, '2017-06-14-ellen-demo-11': 629, '2017-06-16-ellen-demo-12': 630, '2017-06-19-ellen-demo-13': 631, '2017-06-21-ellen-demo-14': 632, '2017-07-23-ellen-demo-15': 633, '2017-06-26-ellen-demo-16': 634, '2017-07-28-ellen-demo-17': 635, '2017-06-30-ellen-demo-18': 636, '2017-07-03-ellen-demo-19': 637, '2017-07-05-ellen-demo-20': 638, '2017-07-07-ellen-demo-21': 639, '2017-07-10-ellen-demo-22': 640, '2017-07-12-ellen-demo-23': 641, '2017-07-14-ellen-demo-24': 642, '2017-07-17-ellen-demo-25': 643, '2017-07-19-ellen-demo-26': 644, '2017-07-21-ellen-demo-27': 645, '2017-07-24-ellen-demo-28': 646, '2017-07-26-ellen-demo-29': 647, '2017-07-28-ellen-demo-30': 648, '2017-07-31-goonmanji-2-01': 649, '2017-08-02-goonmanji-2-02': 650, '2017-08-04-goonmanji-2-03': 651, '2017-08-08-goonmanji-2-04': 652, '2017-08-07-goonmanji-2-05': 653, '2017-08-11-goonmanji-2-06': 654, '2017-08-14-goonmanji-2-07': 655, '2017-08-16-goonmanji-2-08': 656, '2018-08-18-goonmanji-2-09': 657, '2017-08-21-goonmanji-2-10': 658, '2017-08-23-goonmanji-2-11': 659, '2017-08-25-goonmanji-2-12': 660, '2017-08-30': 661, '2017-09-01': 662, '2017-09-04': 663, '2017-09-06': 664, '2017-09-08': 665, '2017-09-11': 666, '2017-09-13': 667, '2017-09-15': 668, '2017-09-18': 670, '2017-09-20': 669, '2017-09-25': 671, '2017-09-27': 672, '2017-09-29': 673, '2017-10-02': 674, '2017-10-04': 675, '2017-10-06': 676, '2017-10-09': 677, '2017-10-11': 678, '2017-10-13': 679, '2017-10-16': 680, '2017-10-18': 681, '2017-10-20': 682, '2017-10-23': 683, '2017-10-25': 684, '2017-10-27': 685, '2017-10-30': 686, '2017-11-01': 687, '2017-11-03': 688, '2017-11-06': 689, '2017-11-08': 690, '2017-11-10': 691, '2017-11-13': 692, '2017-11-15': 693, '2017-11-17': 694, '2017-11-17-2': 695, '2017-11-22': 696, '2017-11-24': 697, '2017-11-247': 698, '2017-11-29': 699, '2017-12-01': 700, '2017-12-04': 701, '2017-12-06': 702, '2017-12-08': 703, '2017-12-11': 704, '2017-12-13': 705, '2017-12-15': 706, '2017-12-18': 707, '2017-12-20': 708, '2017-12-22': 709, '2017-12-25': 710, '2017-12-27': 711, '2017-12-29': 712, '2018-01-01': 713, '2018-01-03': 714, '2018-01-05': 715, '2018-01-08': 716, '2018-01-10': 717, '2018-01-12': 718, '2018-01-15': 719, '2018-01-17': 720, '2018-01-19': 721, '2018-01-22': 722, '2018-01-24': 723, '2018-01-26': 724, '2018-01-29': 725, '2018-01-31': 726, '2018-02-02': 727, '2018-02-05': 728, '2018-02-07': 729, '2018-02-09': 730, '2018-02-12': 731, '2018-02-14': 732, '2018-02-16': 733, '2018-02-19': 734, '2018-02-21': 735, '2018-02-23': 736, '2018-02-26': 737, '2018-02-28': 738, '2018-03-02': 739, '2018-03-05': 740, '2018-03-07': 741, '2018-03-09': 742, '2018-03-12': 743, '2018-03-14': 744, '2018-03-16': 745, '2018-03-21': 746, '2018-03-21-2': 747, '2018-03-23': 748, '2018-03-26': 749, '2018-03-28': 750, '2018-03-30': 751, '2018-04-02': 752, '2018-04-04': 753, '2018-04-09': 754, '2018-04-11': 755, '2018-04-13': 756, '2018-04-16': 757, '2018-04-18': 758, '2018-04-20': 759, '2018-04-23': 760, '2018-04-25': 761, '2018-04-27': 762, '2018-04-30': 763, '2018-05-02': 764, '2018-05-04': 765, '2018-04-07': 766, '2018-05-10': 767, '2018-05-14': 768, '2018-05-16': 769, '2018-05-18': 770, '2018-05-21': 771};
else if (section == "comic") lookup = {'2002-01-21': 1, '2002-01-22': 2, '2002-01-23': 3, '2002-01-24': 4, '2002-01-25': 5, '2002-01-26': 6, '2002-01-27': 7, '2002-01-28': 8, '2002-01-29': 9, '2002-01-30': 10, '2002-01-31': 11, '2002-02-01': 12, '2002-02-02': 13, '2002-02-03': 21, '2002-02-04': 14, '2002-02-05': 15, '2002-02-06': 16, '2002-02-07': 17, '2002-02-08': 18, '2002-02-09': 19, '2002-02-10': 20, '2002-02-11': 22, '2002-02-12': 23, '2002-02-13': 24, '2002-02-14': 25, '2002-02-15': 26, '2002-02-16': 27, '2002-02-17': 48, '2002-02-18': 28, '2002-02-19': 29, '2002-02-20': 30, '2002-02-21': 31, '2002-02-22': 32, '2002-02-23': 33, '2002-02-24': 47, '2002-02-25': 34, '2002-02-26': 35, '2002-02-27': 36, '2002-02-28': 37, '2002-03-01': 38, '2002-03-02': 39, '2002-03-03': 46, '2002-03-04': 40, '2002-03-05': 41, '2002-03-06': 42, '2002-03-07': 43, '2002-03-08': 44, '2002-03-09': 45, '2002-03-10': 49, '2002-03-11': 50, '2002-03-12': 51, '2002-03-13': 52, '2002-03-14': 53, '2002-03-15': 54, '2002-03-16': 55, '2002-03-17': 62, '2002-03-18': 56, '2002-03-19': 57, '2002-03-20': 58, '2002-03-21': 59, '2002-03-22': 60, '2002-03-23': 61, '2002-03-24': 63, '2002-03-25': 64, '2002-03-26': 65, '2002-03-27': 66, '2002-03-28': 67, '2002-03-29': 68, '2002-03-30': 69, '2002-03-31': 70, '2002-04-01': 71, '2002-04-02': 72, '2002-04-03': 73, '2002-04-04': 74, '2002-04-05': 75, '2002-04-06': 76, '2002-04-07': 104, '2002-04-08': 77, '2002-04-09': 78, '2002-04-10': 79, '2002-04-11': 80, '2002-04-12': 81, '2002-04-13': 82, '2002-04-14': 83, '2002-04-15': 84, '2002-04-16': 85, '2002-04-17': 86, '2002-04-18': 87, '2002-04-19': 88, '2002-04-20': 89, '2002-04-21': 90, '2002-04-22': 91, '2002-04-23': 92, '2002-04-24': 93, '2002-04-25': 94, '2002-04-26': 95, '2002-04-27': 96, '2002-04-28': 97, '2002-04-29': 98, '2002-04-30': 99, '2002-05-01': 100, '2002-05-02': 101, '2002-05-03': 102, '2002-05-04': 103, '2002-05-05': 105, '2002-05-06': 106, '2002-05-07': 107, '2002-05-08': 108, '2002-05-09': 109, '2002-05-10': 110, '2002-05-11': 111, '2002-05-12': 112, '2002-05-13': 113, '2002-05-14': 114, '2002-05-15': 115, '2002-05-16': 116, '2002-05-17': 117, '2002-05-18': 118, '2002-05-19': 119, '2002-05-20': 120, '2002-05-21': 121, '2002-05-22': 122, '2002-05-23': 123, '2002-05-24': 124, '2002-05-25': 125, '2002-05-26': 126, '2002-05-27': 127, '2002-05-28': 128, '2002-05-29': 129, '2002-05-30': 130, '2002-05-31': 131, '2002-06-01': 132, '2002-06-02': 133, '2002-06-03': 134, '2002-06-04': 135, '2002-06-05': 136, '2002-06-06': 137, '2002-06-07': 138, '2002-06-08': 139, '2002-06-09': 140, '2002-06-10': 141, '2002-06-11': 142, '2002-06-12': 143, '2002-06-13': 144, '2002-06-14': 145, '2002-06-15': 146, '2002-06-16': 147, '2002-06-17': 148, '2002-06-18': 149, '2002-06-19': 150, '2002-06-20': 151, '2002-06-21': 152, '2002-06-22': 153, '2002-06-23': 154, '2002-06-24': 155, '2002-06-25': 156, '2002-06-26': 157, '2002-06-27': 158, '2002-06-28': 159, '2002-06-29': 160, '2002-06-30': 161, '2002-07-05': 162, '2002-07-06': 163, '2002-07-07': 164, '2002-07-08': 165, '2002-07-09': 166, '2002-07-10': 167, '2002-07-11': 168, '2002-07-12': 169, '2002-07-13': 170, '2002-07-15': 171, '2002-07-16': 172, '2002-07-17': 173, '2002-07-18': 174, '2002-07-19': 175, '2002-07-20': 176, '2002-07-22': 177, '2002-07-23': 178, '2002-07-24': 179, '2002-07-25': 180, '2002-07-26': 181, '2002-07-27': 182, '2002-07-29': 183, '2002-07-30': 184, '2002-07-31': 185, '2002-08-01': 186, '2002-08-02': 187, '2002-08-03': 188, '2002-08-05': 189, '2002-08-06': 190, '2002-08-07': 191, '2002-08-08': 192, '2002-08-12': 193, '2002-08-14': 194, '2002-08-16': 195, '2002-08-19': 196, '2002-08-21': 197, '2002-08-23': 198, '2002-08-26': 199, '2002-08-28': 200, '2002-08-30': 201, '2002-09-02': 202, '2002-09-04': 203, '2002-09-06': 204, '2002-09-09': 205, '2002-09-11': 206, '2002-09-13': 207, '2002-09-18': 208, '2002-09-20': 209, '2002-09-23': 210, '2002-09-25': 211, '2002-09-27': 212, '2002-09-30': 213, '2002-10-02': 214, '2002-10-05': 215, '2002-10-07': 216, '2002-10-09': 217, '2002-10-12': 218, '2002-10-14': 219, '2002-10-16': 220, '2002-10-18': 221, '2002-10-22': 222, '2002-10-24': 223, '2002-10-26': 224, '2002-10-29': 225, '2002-10-31': 226, '2002-11-02': 227, '2002-11-07': 228, '2002-11-09': 229, '2002-11-13': 230, '2002-11-14': 231, '2002-11-16': 232, '2002-11-18': 233, '2002-11-19': 234, '2002-11-21': 235, '2002-11-26': 236, '2002-11-28': 237, '2002-11-30': 238, '2002-12-03': 239, '2002-12-05': 240, '2002-12-07': 241, '2002-12-08': 242, '2002-12-10': 243, '2002-12-12': 244, '2002-12-14': 245, '2002-12-16': 246, '2002-12-17': 247, '2002-12-18': 248, '2002-12-20': 249, '2002-12-23': 250, '2002-12-24': 251, '2002-12-25': 252, '2002-12-27': 253, '2003-01-01': 254, '2003-01-02': 255, '2003-01-03': 256, '2003-01-06': 257, '2003-01-07': 258, '2003-01-08': 259, '2003-01-09': 260, '2003-01-10': 261, '2003-01-13': 262, '2003-01-14': 263, '2003-01-15': 264, '2003-01-16': 265, '2003-01-22': 266, '2003-01-23': 267, '2003-01-24': 268, '2003-01-27': 269, '2003-01-28': 270, '2003-01-29': 271, '2003-01-31': 272, '2003-02-03': 273, '2003-02-04': 274, '2003-02-05': 275, '2003-02-06': 276, '2003-02-10': 277, '2003-02-12': 278, '2003-02-14': 279, '2003-02-15': 280, '2003-02-17': 281, '2003-02-19': 282, '2003-02-21': 283, '2003-03-03': 284, '2003-03-04': 285, '2003-03-05': 286, '2003-03-06': 287, '2003-03-07': 288, '2003-03-10': 289, '2003-03-11': 290, '2003-03-12': 291, '2003-03-13': 292, '2003-03-14': 293, '2003-03-17': 294, '2003-03-18': 295, '2003-03-19': 296, '2003-03-20': 297, '2003-03-24': 298, '2003-03-25': 299, '2003-03-26': 300, '2003-03-27': 301, '2003-03-31': 302, '2003-04-01': 303, '2003-04-02': 304, '2003-04-03': 305, '2003-04-04': 306, '2003-04-07': 307, '2003-04-08': 308, '2003-04-09': 309, '2003-04-10': 310, '2003-04-14': 311, '2003-04-15': 312, '2003-04-16': 313, '2003-04-17': 314, '2003-04-21': 315, '2003-04-22': 316, '2003-04-23': 317, '2003-04-24': 318, '2003-04-25': 319, '2003-04-28': 320, '2003-04-29': 321, '2003-04-30': 322, '2003-05-01': 323, '2003-05-02': 324, '2003-05-05': 325, '2003-05-06': 326, '2003-05-07': 327, '2003-05-08': 328, '2003-05-09': 329, '2003-05-12': 330, '2003-05-13': 331, '2003-05-14': 332, '2003-05-15': 333, '2003-05-17': 334, '2003-05-19': 335, '2003-05-20': 336, '2003-05-21': 337, '2003-05-22': 338, '2003-05-23': 339, '2003-05-26': 340, '2003-05-27': 341, '2003-05-28': 342, '2003-05-29': 343, '2003-05-31': 344, '2003-06-02': 345, '2003-06-04': 346, '2003-06-05': 347, '2003-06-06': 348, '2003-06-07': 349, '2003-06-09': 350, '2003-06-10': 351, '2003-06-11': 352, '2003-06-12': 353, '2003-06-13': 354, '2003-06-18': 355, '2003-06-19': 356, '2003-06-20': 357, '2003-06-21': 358, '2003-06-22': 359, '2003-06-23': 360, '2003-06-24': 361, '2003-06-25': 362, '2003-06-26': 363, '2003-06-27': 364, '2003-06-30': 365, '2003-07-01': 366, '2003-07-02': 367, '2003-07-03': 368, '2003-07-04': 369, '2003-07-07': 370, '2003-07-08': 371, '2003-07-09': 372, '2003-07-10': 373, '2003-07-11': 374, '2003-07-14': 375, '2003-07-15': 376, '2003-07-16': 377, '2003-07-17': 378, '2003-07-18': 379, '2003-07-21': 380, '2003-07-22': 381, '2003-07-23': 382, '2003-07-24': 383, '2003-07-25': 384, '2003-07-28': 385, '2003-07-29': 386, '2003-07-30': 387, '2003-07-31': 388, '2003-08-01': 389, '2003-08-04': 390, '2003-08-05': 391, '2003-08-06': 392, '2003-08-07': 393, '2003-08-08': 394, '2003-08-11': 395, '2003-08-12': 396, '2003-08-13': 397, '2003-08-14': 398, '2003-08-15': 399, '2003-08-18': 400, '2003-08-19': 401, '2003-08-20': 402, '2003-08-21': 403, '2003-08-22': 404, '2003-08-25': 405, '2003-08-26': 406, '2003-08-27': 407, '2003-08-28': 408, '2003-08-29': 409, '2003-09-01': 410, '2003-09-02': 411, '2003-09-03': 412, '2003-09-04': 413, '2003-09-08': 414, '2003-09-09': 415, '2003-09-10': 416, '2003-09-12': 417, '2003-09-15': 418, '2003-09-16': 419, '2003-09-17': 420, '2003-09-18': 421, '2003-09-19': 422, '2003-09-22': 423, '2003-09-23': 424, '2003-09-24': 425, '2003-09-25': 426, '2003-09-26': 427, '2003-09-30': 428, '2003-10-01': 429, '2003-10-02': 430, '2003-10-03': 431, '2003-10-06': 432, '2003-10-07': 433, '2003-10-08': 434, '2003-10-09': 435, '2003-10-10': 436, '2003-10-13': 437, '2003-10-14': 438, '2003-10-16': 439, '2003-10-17': 440, '2003-10-20': 441, '2003-10-21': 442, '2003-10-22': 443, '2003-10-23': 444, '2003-10-24': 445, '2003-10-27': 446, '2003-10-28': 447, '2003-10-29': 448, '2003-10-30': 449, '2003-10-31': 450, '2003-11-03': 451, '2003-11-04': 452, '2003-11-05': 453, '2003-11-06': 454, '2003-11-07': 455, '2003-11-10': 456, '2003-11-11': 457, '2003-11-12': 458, '2003-11-13': 459, '2003-11-14': 460, '2003-11-17': 461, '2003-11-18': 462, '2003-11-19': 463, '2003-11-21': 464, '2003-11-24': 465, '2003-11-25': 466, '2003-11-27': 467, '2003-11-28': 468, '2003-12-01': 469, '2003-12-02': 470, '2003-12-03': 471, '2003-12-04': 472, '2003-12-05': 473, '2003-12-08': 474, '2003-12-09': 475, '2003-12-11': 476, '2003-12-15': 477, '2003-12-17': 478, '2003-12-19': 479, '2003-12-22': 480, '2003-12-24': 481, '2003-12-29': 482, '2003-12-31': 483, '2004-01-02': 484, '2004-01-05': 485, '2004-01-07': 486, '2004-01-09': 487, '2004-01-12': 488, '2004-01-13': 489, '2004-01-14': 490, '2004-01-16': 491, '2004-01-20': 492, '2004-01-22': 493, '2004-01-24': 494, '2004-01-26': 495, '2004-01-28': 496, '2004-01-31': 497, '2004-02-02': 498, '2004-02-04': 499, '2004-02-06': 500, '2004-02-08': 501, '2004-02-09': 502, '2004-02-12': 503, '2004-02-14': 504, '2004-02-16': 505, '2004-02-18': 506, '2004-02-20': 507, '2004-02-23': 508, '2004-02-25': 509, '2004-02-27': 510, '2004-03-01': 511, '2004-03-03': 512, '2004-03-05': 513, '2004-03-08': 514, '2004-03-10': 515, '2004-03-12': 516, '2004-03-15': 517, '2004-03-17': 518, '2004-03-20': 519, '2004-03-23': 520, '2004-03-25': 521, '2004-03-27': 522, '2004-03-29': 523, '2004-04-02': 524, '2004-04-05': 525, '2004-04-07': 526, '2004-04-09': 527, '2004-04-12': 528, '2004-04-14': 529, '2004-04-17': 530, '2004-04-19': 531, '2004-04-20': 532, '2004-04-21': 533, '2004-04-22': 534, '2004-04-26': 535, '2004-04-28': 536, '2004-04-30': 537, '2004-05-03': 538, '2004-05-05': 539, '2004-05-07': 540, '2004-05-10': 541, '2004-05-12': 542, '2004-05-14': 543, '2004-05-17': 544, '2004-05-18': 545, '2004-05-19': 546, '2004-05-21': 547, '2004-05-24': 548, '2004-05-28': 549, '2004-05-31': 550, '2004-06-02': 551, '2004-06-07': 552, '2004-06-13': 553, '2004-06-14': 554, '2004-06-18': 555, '2004-06-20': 556, '2004-06-21': 557, '2004-06-23': 558, '2004-06-25': 559, '2004-06-28': 560, '2004-06-30': 561, '2004-07-02': 562, '2004-07-05': 563, '2004-07-07': 564, '2004-07-09': 565, '2004-07-12': 566, '2004-07-14': 567, '2004-07-16': 568, '2004-07-19': 1036, '2004-07-21': 1037, '2004-07-23': 1038, '2004-07-26': 1039, '2004-07-28': 1040, '2004-07-30': 1041, '2004-08-02': 569, '2004-08-04': 570, '2004-08-06': 571, '2004-08-09': 572, '2004-08-11': 573, '2004-08-13': 574, '2004-08-16': 575, '2004-08-18': 576, '2004-08-20': 577, '2004-08-24': 578, '2004-08-26': 579, '2004-08-28': 580, '2004-08-30': 581, '2004-09-01': 582, '2004-09-03': 583, '2004-09-06': 584, '2004-09-13': 585, '2004-09-15': 586, '2004-09-20': 587, '2004-09-22': 588, '2004-09-27': 589, '2004-09-29': 590, '2004-10-01': 591, '2004-10-04': 592, '2004-10-18': 593, '2004-10-20': 594, '2004-10-22': 595, '2004-10-25': 596, '2004-10-27': 597, '2004-10-29': 598, '2004-11-01': 599, '2004-11-04': 600, '2004-11-09': 601, '2004-11-11': 602, '2004-11-13': 603, '2004-11-15': 604, '2004-11-17': 605, '2004-12-01': 606, '2004-12-03': 607, '2004-12-06': 608, '2004-12-08': 609, '2004-12-13': 610, '2004-12-17': 611, '2005-01-03': 612, '2005-01-05': 613, '2005-01-07': 614, '2005-01-10': 615, '2005-01-12': 616, '2005-01-14': 617, '2005-01-17': 618, '2005-01-19': 619, '2005-01-24': 620, '2005-01-26': 621, '2005-01-28': 622, '2005-02-07': 623, '2005-02-09': 624, '2005-02-11': 625, '2005-02-14': 626, '2005-02-16': 627, '2005-02-18': 628, '2005-02-21': 629, '2005-02-23': 630, '2005-02-25': 631, '2005-02-28': 632, '2005-03-02': 633, '2005-03-04': 634, '2005-03-07': 635, '2005-03-09': 636, '2005-03-16': 637, '2005-03-18': 638, '2005-03-21': 639, '2005-03-23': 640, '2005-03-25': 641, '2005-03-28': 642, '2005-03-30': 643, '2005-04-01': 644, '2005-04-06': 645, '2005-04-08': 646, '2005-04-13': 647, '2005-04-15': 648, '2005-04-19': 649, '2005-04-21': 650, '2005-04-23': 651, '2005-04-25': 652, '2005-04-27': 653, '2005-04-29': 654, '2005-05-04': 655, '2005-05-05': 656, '2005-05-09': 657, '2005-05-11': 658, '2005-05-13': 659, '2005-05-16': 660, '2005-05-18': 661, '2005-05-20': 662, '2005-05-23': 663, '2005-05-25': 664, '2005-05-27': 665, '2005-05-30': 666, '2005-06-02': 667, '2005-06-04': 668, '2005-06-06': 669, '2005-06-08': 670, '2005-06-10': 671, '2005-06-13': 672, '2005-06-15': 673, '2005-06-17': 674, '2005-06-22': 675, '2005-06-24': 676, '2005-06-27': 677, '2005-06-30': 678, '2005-07-01': 679, '2005-07-03': 680, '2005-07-06': 681, '2005-07-09': 682, '2005-07-21': 683, '2005-07-23': 684, '2005-07-25': 685, '2005-07-27': 686, '2005-07-29': 687, '2005-08-01': 688, '2005-08-04': 689, '2005-08-06': 690, '2005-08-09': 691, '2005-08-11': 692, '2005-08-13': 693, '2005-08-16': 694, '2005-08-18': 695, '2005-08-20': 696, '2005-08-24': 697, '2005-08-26': 698, '2005-08-31': 699, '2005-09-02': 700, '2005-09-06': 701, '2005-09-08': 702, '2005-09-10': 703, '2005-09-13': 704, '2005-09-28': 705, '2005-10-01': 706, '2005-10-03': 707, '2005-10-05': 708, '2005-10-07': 709, '2005-10-10': 710, '2005-10-12': 711, '2005-10-15': 712, '2005-10-17': 713, '2005-10-19': 714, '2005-10-21': 715, '2005-10-24': 716, '2005-10-26': 717, '2005-10-30': 718, '2005-11-01': 719, '2005-11-04': 720, '2005-11-07': 721, '2005-11-09': 722, '2005-11-11': 723, '2005-11-16': 724, '2005-11-18': 725, '2005-11-21': 726, '2005-11-25': 727, '2005-12-02': 728, '2005-12-05': 729, '2005-12-07': 730, '2005-12-12': 731, '2005-12-14': 732, '2005-12-16': 733, '2005-12-21': 734, '2005-12-28': 735, '2005-12-30': 736, '2006-01-02': 737, '2006-01-04': 738, '2006-01-06': 739, '2006-01-09': 740, '2006-01-11': 741, '2006-01-13': 742, '2006-01-16': 743, '2006-01-18': 744, '2006-01-20': 745, '2006-01-30': 746, '2006-02-01': 747, '2006-02-03': 748, '2006-02-06': 749, '2006-02-08': 750, '2006-02-10': 751, '2006-02-13': 752, '2006-02-15': 753, '2006-02-22': 754, '2006-02-24': 755, '2006-02-27': 756, '2006-03-03': 757, '2006-03-06': 758, '2006-03-10': 759, '2006-03-13': 760, '2006-03-15': 761, '2006-03-20': 762, '2006-03-22': 763, '2006-03-24': 764, '2006-03-27': 765, '2006-03-29': 766, '2006-03-31': 767, '2006-04-05': 768, '2006-04-07': 769, '2006-04-17': 770, '2006-04-20': 771, '2006-05-03': 772, '2006-05-05': 773, '2006-05-08': 774, '2006-05-12': 775, '2006-05-15': 776, '2006-05-22': 777, '2006-05-26': 778, '2006-05-29': 779, '2006-05-31': 780, '2006-06-05': 781, '2006-06-07': 782, '2006-06-09': 783, '2006-06-12': 784, '2006-06-14': 785, '2006-06-21': 786, '2006-06-23': 787, '2006-06-26': 788, '2006-06-28': 789, '2006-07-03': 790, '2006-07-06': 791, '2006-07-10': 792, '2006-07-12': 793, '2006-07-28': 794, '2006-07-31': 795, '2006-08-02': 796, '2006-08-04': 797, '2006-08-07': 798, '2006-08-09': 799, '2006-08-14': 800, '2006-08-16': 801, '2006-08-21': 802, '2006-08-25': 803, '2006-08-28': 804, '2006-08-31': 805, '2006-09-04': 806, '2006-09-11': 807, '2006-09-13': 808, '2006-09-18': 809, '2006-09-20': 810, '2006-09-29': 811, '2006-10-02': 1042, '2006-10-04': 1043, '2006-10-06': 1044, '2006-10-09': 1045, '2006-10-11': 1046, '2006-10-13': 1047, '2006-10-16': 1048, '2006-10-18': 1049, '2006-10-20': 1050, '2006-10-23': 812, '2006-10-25': 813, '2006-10-27': 814, '2006-10-30': 815, '2006-11-01': 816, '2006-11-06': 817, '2006-11-13': 818, '2006-12-29': 819, '2007-01-01': 820, '2007-01-03': 821, '2007-01-05': 822, '2007-01-08': 823, '2007-01-10': 824, '2007-01-12': 825, '2007-01-15': 826, '2007-01-17': 827, '2007-01-19': 828, '2007-01-23': 829, '2007-01-25': 830, '2007-01-29': 831, '2007-01-31': 832, '2007-02-02': 833, '2007-02-05': 834, '2007-02-07': 835, '2007-02-09': 836, '2007-02-12': 837, '2007-02-19': 838, '2007-02-23': 839, '2007-02-26': 840, '2007-03-05': 841, '2007-03-08': 842, '2007-03-10': 843, '2007-03-13': 844, '2007-03-17': 845, '2007-03-20': 846, '2007-03-22': 847, '2007-03-27': 848, '2007-03-31': 849, '2007-04-11': 850, '2007-04-15': 851, '2007-04-18': 852, '2007-04-21': 853, '2007-05-01': 854, '2007-05-03': 855, '2007-05-08': 856, '2007-05-16': 857, '2007-05-23': 858, '2007-05-31': 859, '2007-06-02': 860, '2007-06-05': 861, '2007-06-09': 862, '2007-06-12': 863, '2007-06-19': 864, '2007-08-02': 865, '2007-08-07': 866, '2007-08-10': 867, '2007-08-14': 893, '2007-08-17': 894, '2007-08-21': 895, '2007-08-31': 896, '2007-09-07': 897, '2007-09-11': 898, '2007-09-14': 899, '2007-09-18': 900, '2007-09-21': 901, '2007-09-29': 902, '2007-10-06': 868, '2007-10-10': 869, '2007-10-13': 870, '2007-10-20': 871, '2007-10-24': 872, '2007-11-16': 873, '2007-11-24': 874, '2007-12-17': 875, '2007-12-23': 876, '2008-01-08': 877, '2008-01-11': 878, '2008-01-15': 879, '2008-01-18': 880, '2008-01-25': 881, '2008-01-29': 882, '2008-02-01': 883, '2008-02-05': 884, '2008-02-12': 885, '2008-02-22': 886, '2008-02-27': 887, '2008-04-07': 888, '2008-04-09': 889, '2008-04-11': 890, '2008-04-14': 891, '2008-04-16': 892, '2008-04-18': 909, '2008-04-21': 910, '2008-04-23': 911, '2008-04-25': 912, '2008-04-28': 913, '2008-04-30': 914, '2008-05-02': 915, '2008-05-05': 916, '2008-05-07': 917, '2008-05-09': 918, '2008-05-12': 919, '2008-05-14': 920, '2008-05-19': 921, '2008-05-21': 922, '2008-05-23': 923, '2008-05-26': 924, '2008-05-28': 925, '2008-05-30': 926, '2008-06-02': 927, '2008-06-04': 928, '2008-06-06': 929, '2008-06-09': 930, '2008-06-11': 931, '2008-06-13': 932, '2008-06-16': 933, '2008-06-18': 934, '2008-06-20': 935, '2008-06-23': 936, '2008-06-25': 937, '2008-06-27': 938, '2008-06-30': 939, '2008-07-02': 940, '2008-07-04': 941, '2008-07-07': 942, '2008-07-09': 943, '2008-07-11': 944, '2008-07-14': 945, '2008-07-16': 946, '2008-07-18': 947, '2008-07-21': 948, '2008-07-23': 949, '2008-07-25': 950, '2008-07-28': 951, '2008-07-30': 952, '2008-08-01': 953, '2008-08-04': 954, '2008-08-06': 955, '2008-08-08': 956, '2008-08-19': 957, '2008-08-21': 958, '2008-08-25': 959, '2008-08-27': 960, '2008-08-29': 961, '2008-09-01': 962, '2008-09-03': 963, '2008-11-04': 964, '2008-11-06': 965, '2008-11-11': 966, '2008-11-13': 967, '2008-11-18': 968, '2008-11-22': 969, '2008-11-26': 970, '2008-12-03': 971, '2009-01-13': 972, '2009-01-15': 973, '2009-01-20': 974, '2009-01-22': 975, '2009-02-10': 976, '2009-02-13': 977, '2009-02-17': 903, '2009-02-21': 904, '2009-02-27': 905, '2009-03-03': 906, '2009-03-06': 907, '2009-03-10': 908, '2009-03-12': 978, '2009-03-17': 979, '2009-03-19': 980, '2009-03-21': 981, '2009-03-26': 982, '2009-03-28': 983, '2009-03-31': 984, '2009-04-14': 985, '2009-04-18': 986, '2009-05-19': 987, '2009-05-22': 988, '2009-05-26': 989, '2009-05-30': 990, '2009-06-03': 991, '2009-06-06': 992, '2009-06-09': 993, '2009-06-13': 994, '2009-06-18': 995, '2009-06-25': 996, '2009-06-30': 997, '2009-07-04': 998, '2009-07-08': 999, '2009-07-16': 1000, '2009-07-20': 1001, '2009-07-24': 1002, '2009-08-12': 1003, '2009-08-18': 1004, '2009-08-23': 1005, '2009-08-26': 1006, '2009-09-02': 1007, '2009-09-05': 1008, '2009-09-15': 1009, '2009-09-17': 1010, '2009-09-27': 1011, '2009-10-03': 1012, '2009-10-08': 1015, '2009-10-09': 1013, '2009-10-14': 1014, '2009-10-20': 1016, '2009-10-22': 1017, '2009-10-26': 1018, '2009-10-29': 1019, '2009-11-03': 1020, '2009-11-06': 1021, '2009-11-11': 1022, '2009-11-13': 1023, '2009-11-19': 1024, '2009-11-24': 1025, '2009-12-01': 1026, '2009-12-12': 1027, '2009-12-18': 1028, '2009-12-24': 1029, '2009-12-29': 1030, '2010-01-06': 1031, '2010-01-11': 1032, '2010-01-14': 1033, '2010-01-19': 1034, '2010-01-21': 1035, '2010-01-26': 1051, '2010-01-28': 1052, '2010-02-02': 1053, '2010-02-04': 1054, '2010-02-09': 1055, '2010-02-11': 1056, '2010-02-16': 1057, '2010-02-19': 1058, '2010-02-23': 1059, '2010-02-26': 1060, '2010-03-01': 1061, '2010-03-03': 1062, '2010-03-05': 1063, '2010-03-08': 1064, '2010-03-10': 1065, '2010-03-12': 1066, '2010-03-15': 1067, '2010-03-17': 1068, '2010-03-19': 1069, '2010-03-22': 1070, '2010-03-24': 1071, '2010-03-26': 1072, '2010-03-29': 1073, '2010-03-31': 1074, '2010-04-02': 1075, '2010-04-05': 1076, '2010-04-07': 1077, '2010-04-09': 1078, '2010-04-12': 1079, '2010-04-14': 1080, '2010-04-16': 1081, '2010-04-19': 1082, '2010-04-21': 1083, '2010-04-23': 1084, '2010-04-26': 1085, '2010-04-28': 1086, '2010-04-30': 1087, '2010-05-03': 1088, '2010-05-05': 1089, '2010-05-07': 1090, '2010-05-10': 1091, '2010-05-12': 1092, '2010-05-14': 1093, '2010-05-17': 1094, '2010-05-19': 1095, '2010-05-21': 1096, '2010-05-24': 1097, '2010-05-26': 1098, '2010-05-28': 1099, '2010-05-31': 1100, '2010-06-02': 1101, '2010-06-04': 1102, '2010-06-07': 1103, '2010-06-09': 1104, '2010-06-11': 1105, '2010-06-14': 1106, '2010-06-16': 1107, '2010-06-21': 1108, '2010-06-23': 1109, '2010-06-25': 1110, '2010-06-28': 1111, '2010-06-30': 1112, '2010-07-02': 1113, '2010-07-07': 1114, '2010-07-09': 1115, '2010-07-12': 1116, '2010-07-14': 1117, '2010-07-19': 1118, '2010-07-21': 1119, '2010-07-23': 1120, '2010-07-26': 1121, '2010-07-28': 1122, '2010-07-30': 1123, '2010-08-02': 1124, '2010-08-05': 1125, '2010-08-09': 1126, '2010-08-11': 1127, '2010-08-13': 1128, '2010-08-16': 1129, '2010-08-18': 1130, '2010-08-20': 1131, '2010-08-23': 1132, '2010-08-25': 1133, '2010-08-27': 1134, '2010-08-30': 1135, '2010-09-01': 1136, '2010-09-03': 1137, '2010-09-06': 1138, '2010-09-08': 1139, '2010-09-10': 1140, '2010-09-13': 1141, '2010-09-15': 1142, '2010-09-17': 1143, '2010-09-20': 1144, '2010-09-22': 1145, '2010-09-24': 1146, '2010-09-27': 1147, '2010-09-29': 1148, '2010-10-01': 1149, '2010-10-04': 1150, '2010-10-06': 1151, '2010-10-08': 1152, '2010-10-11': 1153, '2010-10-13': 1154, '2010-10-15': 1155, '2010-10-18': 1156, '2010-10-20': 1157, '2010-10-22': 1158, '2010-10-25': 1159, '2010-10-29': 1160, '2010-11-01': 1161, '2010-11-03': 1162, '2010-11-05': 1163, '2010-11-08': 1164, '2010-11-10': 1165, '2010-11-12': 1166, '2010-11-15': 1167, '2010-11-17': 1168, '2010-11-19': 1169, '2010-11-22': 1170, '2010-11-25': 1171, '2010-11-29': 1172, '2010-12-01': 1173, '2010-12-03': 1174, '2010-12-06': 1175, '2010-12-08': 1176, '2010-12-10': 1177, '2010-12-13': 1178, '2010-12-15': 1179, '2010-12-17': 1180, '2010-12-20': 1181, '2010-12-22': 1182, '2010-12-27': 1183, '2010-12-29': 1184, '2010-12-31': 1185, '2011-01-03': 1186, '2011-01-05': 1187, '2011-01-07': 1188, '2011-01-10': 1189, '2011-01-12': 1190, '2011-01-14': 1191, '2011-01-17': 1192, '2011-01-19': 1193, '2011-01-21': 1194, '2011-01-24': 1195, '2011-01-26': 1196, '2011-01-28': 1197, '2011-01-31': 1198, '2011-02-02': 1199, '2011-02-04': 1200, '2011-02-07': 1201, '2011-02-09': 1202, '2011-02-11': 1203, '2011-02-14': 1204, '2011-02-16': 1205, '2011-02-18': 1206, '2011-02-21': 1207, '2011-02-23': 1208, '2011-02-25': 1209, '2011-02-28': 1210, '2011-03-02': 1211, '2011-03-07': 1212, '2011-03-09': 1213, '2011-03-14': 1214, '2011-03-16': 1215, '2011-03-18': 1216, '2011-03-21': 1217, '2011-03-23': 1218, '2011-03-25': 1219, '2011-03-28': 1220, '2011-03-30': 1221, '2011-04-01': 1222, '2011-04-04': 1223, '2011-04-06': 1224, '2011-04-08': 1225, '2011-04-11': 1226, '2011-04-13': 1227, '2011-04-15': 1228, '2011-04-18': 1229, '2011-04-19': 1230, '2011-04-20': 1231, '2011-04-21': 1232, '2011-04-22': 1233, '2011-04-25': 1234, '2011-04-26': 1235, '2011-04-27': 1236, '2011-04-28': 1237, '2011-04-29': 1238, '2011-05-03': 1240, '2011-05-04': 1239, '2011-05-05': 1241, '2011-05-06': 1242, '2011-05-09': 1243, '2011-05-10': 1244, '2011-05-11': 1245, '2011-05-12': 1246, '2011-05-13': 1247, '2011-05-16': 1248, '2011-05-17': 1249, '2011-05-18': 1250, '2011-05-19': 1251, '2011-05-20': 1252, '2011-05-23': 1253, '2011-05-24': 1254, '2011-05-25': 1255, '2011-05-26': 1256, '2011-05-27': 1257, '2011-05-30': 1258, '2011-06-01': 1259, '2011-06-02': 1260, '2011-06-03': 1261, '2011-06-06': 1262, '2011-06-07': 1263, '2011-06-08': 1264, '2011-06-10': 1265, '2011-06-13': 1266, '2011-06-14': 1267, '2011-06-15': 1268, '2011-06-17': 1269, '2011-06-20': 1270, '2011-06-22': 1271, '2011-06-23': 1272, '2011-06-24': 1273, '2011-06-27': 1274, '2011-06-28': 1275, '2011-06-29': 1276, '2011-06-30': 1277, '2011-07-01': 1278, '2011-07-04': 1279, '2011-07-05': 1280, '2011-07-06': 1281, '2011-07-07': 1282, '2011-07-08': 1283, '2011-07-11': 1284, '2011-07-14': 1285, '2011-07-15': 1286, '2011-07-18': 1287, '2011-07-19': 1288, '2011-07-20': 1289, '2011-07-22': 1290, '2011-07-25': 1291, '2011-07-26': 1292, '2011-07-27': 1293, '2011-07-28': 1294, '2011-07-29': 1295, '2011-08-01': 1296, '2011-08-02': 1297, '2011-08-03': 1298, '2011-08-05': 1299, '2011-08-08': 1300, '2011-08-09': 1301, '2011-08-11': 1302, '2011-08-12': 1303, '2011-08-15': 1304, '2011-08-16': 1305, '2011-08-18': 1306, '2011-08-19': 1307, '2011-08-22': 1308, '2011-08-23': 1309, '2011-08-25': 1310, '2011-08-29': 1311, '2011-08-30': 1312, '2011-09-01': 1313, '2011-09-02': 1314, '2011-09-07': 1315, '2011-09-08': 1316, '2011-09-09': 1317, '2011-09-12': 1318, '2011-09-14': 1319, '2011-09-16': 1320, '2011-09-20': 1321, '2011-09-22': 1322, '2011-09-26': 1323, '2011-09-27': 1324, '2011-09-29': 1325, '2011-09-30': 1326, '2011-10-03': 1327, '2011-10-07': 1328, '2011-10-10': 1329, '2011-10-12': 1330, '2011-10-14': 1331, '2011-10-17': 1332, '2011-10-19': 1333, '2011-10-21': 1334, '2011-10-24': 1335, '2011-10-25': 1336, '2011-10-27': 1337, '2011-10-28': 1338, '2011-10-31': 1339, '2011-11-01': 1340, '2011-11-03': 1341, '2011-11-04': 1342, '2011-11-07': 1343, '2011-11-09': 1344, '2011-11-11': 1345, '2011-11-14': 1346, '2011-11-15': 1347, '2011-11-17': 1348, '2011-11-18': 1349, '2011-11-21': 1350, '2011-11-22': 1351, '2011-11-24': 1352, '2011-11-28': 1353, '2011-11-29': 1354, '2011-12-01': 1355, '2011-12-02': 1356, '2011-12-05': 1357, '2011-12-06': 1358, '2011-12-08': 1359, '2011-12-09': 1360, '2011-12-12': 1361, '2011-12-13': 1362, '2011-12-15': 1363, '2011-12-16': 1364, '2011-12-19': 1365, '2011-12-20': 1366, '2011-12-22': 1367, '2011-12-23': 1368, '2011-12-27': 1369, '2011-12-29': 1370, '2011-12-30': 1371, '2012-01-02': 1372, '2012-01-03': 1373, '2012-01-05': 1374, '2012-01-06': 1375, '2012-01-09': 1376, '2012-01-10': 1377, '2012-01-12': 1378, '2012-01-16': 1379, '2012-01-17': 1380, '2012-01-19': 1381, '2012-01-20': 1382, '2012-01-23': 1383, '2012-01-24': 1384, '2012-01-26': 1385, '2012-01-30': 1386, '2012-01-31': 1387, '2012-02-02': 1388, '2012-02-03': 1389, '2012-02-06': 1390, '2012-02-07': 1391, '2012-02-09': 1392, '2012-02-10': 1393, '2012-02-13': 1394, '2012-02-14': 1395, '2012-02-16': 1396, '2012-02-17': 1397, '2012-02-20': 1398, '2012-02-22': 1399, '2012-02-24': 1400, '2012-02-27': 1401, '2012-02-29': 1402, '2012-03-02': 1403, '2012-03-05': 1404, '2012-03-06': 1405, '2012-03-08': 1406, '2012-03-09': 1407, '2012-03-12': 1408, '2012-03-13': 1409, '2012-03-15': 1410, '2012-03-16': 1411, '2012-03-19': 1412, '2012-03-20': 1413, '2012-03-22': 1414, '2012-03-23': 1415, '2012-03-26': 1416, '2012-03-28': 1417, '2012-03-30': 1418, '2012-04-02': 1419, '2012-04-03': 1420, '2012-04-05': 1421, '2012-04-06': 1422, '2012-04-09': 1423, '2012-04-10': 1424, '2012-04-13': 1425, '2012-04-16': 1426, '2012-04-17': 1427, '2012-04-19': 1428, '2012-04-20': 1429, '2012-04-23': 1430, '2012-04-24': 1431, '2012-04-26': 1432, '2012-04-27': 1433, '2012-04-30': 1434, '2012-05-02': 1435, '2012-05-04': 1436, '2012-05-07': 1437, '2012-05-09': 1438, '2012-05-11': 1439, '2012-05-14': 1440, '2012-05-15': 1441, '2012-05-17': 1442, '2012-05-18': 1443, '2012-05-21': 1444, '2012-05-22': 1445, '2012-05-25': 1446, '2012-05-28': 1447, '2012-05-29': 1448, '2012-05-31': 1449, '2012-06-01': 1450, '2012-06-04': 1451, '2012-06-06': 1452, '2012-06-08': 1453, '2012-06-11': 1454, '2012-06-13': 1455, '2012-06-15': 1456, '2012-06-18': 1457, '2012-06-20': 1458, '2012-06-22': 1459, '2012-06-25': 1460, '2012-06-26': 1461, '2012-06-28': 1462, '2012-06-29': 1463, '2012-07-02': 1464, '2012-07-03': 1465, '2012-07-05': 1466, '2012-07-06': 1467, '2012-07-09': 1468, '2012-07-10': 1469, '2012-07-12': 1470, '2012-07-13': 1471, '2012-07-16': 1472, '2012-07-17': 1473, '2012-07-19': 1474, '2012-07-20': 1475, '2012-07-30': 1476, '2012-07-31': 1477, '2012-08-02': 1478, '2012-08-03': 1479, '2012-08-06': 1480, '2012-08-07': 1481, '2012-08-09': 1482, '2012-08-10': 1483, '2012-08-13': 1484, '2012-08-14': 1485, '2012-08-15': 1486, '2012-08-17': 1487, '2012-08-20': 1488, '2012-08-21': 1489, '2012-08-27': 1490, '2012-08-28': 1491, '2012-08-30': 1492, '2012-08-31': 1493, '2012-09-03': 1494, '2012-09-04': 1495, '2012-09-06': 1496, '2012-09-07': 1497, '2012-09-10': 1498, '2012-09-11': 1499, '2012-09-13': 1500, '2012-09-17': 1501, '2012-09-18': 1502, '2012-09-20': 1503, '2012-09-21': 1504, '2012-09-24': 1505, '2012-09-25': 1506, '2012-09-27': 1507, '2012-09-28': 1508, '2012-10-01': 1509, '2012-10-03': 1510, '2012-10-05': 1511, '2012-10-15': 1512, '2012-10-17': 1513, '2012-10-19': 1514, '2012-10-22': 1515, '2012-10-23': 1516, '2012-10-26': 1517, '2012-10-29': 1518, '2012-10-31': 1519, '2012-11-02': 1520, '2012-11-12': 1521, '2012-11-14': 1522, '2012-11-16': 1523, '2012-11-19': 1524, '2012-11-21': 1525, '2012-11-23': 1526, '2012-11-26': 1527, '2012-11-28': 1528, '2012-11-30': 1529, '2012-12-03': 1530, '2012-12-07': 1531, '2012-12-10': 1532, '2012-12-12': 1533, '2012-12-14': 1534, '2012-12-17': 1535, '2012-12-19': 1536, '2012-12-21': 1537, '2012-12-31': 1538, '2013-01-02': 1539, '2013-01-04': 1540, '2013-01-07': 1541, '2013-01-09': 1542, '2013-01-11': 1543, '2013-01-14': 1544, '2013-01-16': 1545, '2013-01-18': 1546, '2013-01-21': 1547, '2013-01-22': 1548, '2013-01-23': 1549, '2013-01-24': 1550, '2013-01-25': 1551, '2013-01-28': 1552, '2013-01-30': 1553, '2013-02-01': 1554, '2013-02-04': 1555, '2013-02-05': 1556, '2013-02-06': 1557, '2013-02-07': 1558, '2013-02-08': 1559, '2013-02-11': 1560, '2013-02-12': 1561, '2013-02-14': 1562, '2013-02-15': 1563, '2013-02-18': 1564, '2013-02-19': 1565, '2013-02-21': 1566, '2013-02-22': 1567, '2013-02-25': 1568, '2013-02-26': 1569, '2013-02-27': 1570, '2013-02-28': 1571, '2013-03-01': 1572, '2013-03-04': 1573, '2013-03-05': 1574, '2013-03-06': 1575, '2013-03-07': 1576, '2013-03-08': 1577, '2013-03-11': 1578, '2013-03-12': 1579, '2013-03-13': 1580, '2013-03-14': 1581, '2013-03-15': 1582, '2013-03-18': 1583, '2013-03-19': 1584, '2013-03-20': 1585, '2013-03-21': 1586, '2013-03-22': 1587, '2013-03-25': 1588, '2013-03-26': 1589, '2013-03-27': 1590, '2013-03-28': 1591, '2013-03-29': 1592, '2013-04-01': 1593, '2013-04-02': 1594, '2013-04-03': 1595, '2013-04-04': 1596, '2013-04-05': 1597, '2013-04-08': 1598, '2013-04-09': 1599, '2013-04-10': 1600, '2013-04-11': 1601, '2013-04-12': 1602, '2013-04-15': 1603, '2013-04-16': 1604, '2013-04-17': 1605, '2013-04-22': 1606, '2013-04-23': 1607, '2013-04-24': 1608, '2013-04-25': 1609, '2013-04-26': 1610, '2013-04-29': 1611, '2013-04-30': 1612, '2013-05-01': 1613, '2013-05-02': 1614, '2013-05-03': 1615, '2013-05-06': 1616, '2013-05-07': 1617, '2013-05-08': 1618, '2013-05-09': 1619, '2013-05-10': 1620, '2013-05-13': 1621, '2013-05-15': 1622, '2013-05-17': 1623, '2013-05-20': 1624, '2013-05-22': 1625, '2013-05-24': 1626, '2013-05-27': 1627, '2013-05-28': 1628, '2013-05-29': 1629, '2013-05-30': 1630, '2013-05-31': 1631, '2013-06-03': 1632, '2013-06-04': 1633, '2013-06-05': 1634, '2013-06-06': 1635, '2013-06-07': 1636, '2013-06-10': 1637, '2013-06-11': 1638, '2013-06-12': 1639, '2013-06-13': 1640, '2013-06-14': 1641, '2013-06-17': 1642, '2013-06-18': 1643, '2013-06-19': 1644, '2013-06-20': 1645, '2013-06-21': 1646, '2013-06-24': 1647, '2013-06-25': 1648, '2013-06-26': 1649, '2013-06-27': 1650, '2013-06-28': 1651, '2013-07-01': 1652, '2013-07-02': 1653, '2013-07-03': 1654, '2013-07-04': 1655, '2013-07-05': 1656, '2013-07-08': 1657, '2013-07-09': 1658, '2013-07-10': 1659, '2013-07-11': 1660, '2013-07-12': 1661, '2013-07-15': 1662, '2013-07-16': 1663, '2013-07-17': 1664, '2013-07-18': 1665, '2013-07-19': 1666, '2013-07-22': 1667, '2013-07-23': 1668, '2013-07-24': 1669, '2013-07-25': 1670, '2013-07-26': 1671, '2013-07-29': 1672, '2013-07-30': 1673, '2013-07-31': 1674, '2013-08-01': 1675, '2013-08-02': 1676, '2013-08-05': 1677, '2013-08-06': 1678, '2013-08-07': 1679, '2013-08-08': 1680, '2013-08-09': 1681, '2013-08-12': 1682, '2013-08-13': 1683, '2013-08-14': 1684, '2013-08-15': 1685, '2013-08-16': 1686, '2013-08-19': 1687, '2013-08-20': 1688, '2013-08-21': 1689, '2013-08-22': 1690, '2013-08-23': 1691, '2013-08-26': 1692, '2013-08-27': 1693, '2013-08-28': 1694, '2013-08-29': 1695, '2013-08-30': 1696, '2013-09-02': 1697, '2013-09-03': 1698, '2013-09-04': 1699, '2013-09-05': 1700, '2013-09-06': 1701, '2013-09-09': 1702, '2013-09-10': 1703, '2013-09-11': 1704, '2013-09-12': 1705, '2013-09-13': 1706, '2013-09-16': 1707, '2013-09-17': 1708, '2013-09-18': 1709, '2013-09-19': 1710, '2013-09-20': 1711, '2013-09-23': 1712, '2013-09-24': 1713, '2013-09-25': 1714, '2013-09-26': 1715, '2013-09-27': 1716, '2013-09-30': 1717, '2013-10-01': 1718, '2013-10-02': 1719, '2013-10-03': 1720, '2013-10-04': 1721, '2013-10-07': 1722, '2013-10-08': 1723, '2013-10-09': 1724, '2013-10-10': 1725, '2013-10-11': 1726, '2013-10-14': 1727, '2013-10-15': 1728, '2013-10-16': 1729, '2013-10-17': 1730, '2013-10-18': 1731, '2013-10-20': 1732, '2013-10-22': 1733, '2013-10-23': 1734, '2013-10-24': 1735, '2013-10-25': 1736, '2013-10-28': 1737, '2013-10-29': 1738, '2013-10-30': 1739, '2013-10-31': 1740, '2013-11-01': 1741, '2013-11-04': 1742, '2013-11-05': 1743, '2013-11-06': 1744, '2013-11-07': 1745, '2013-11-08': 1746, '2013-11-11': 1747, '2013-11-12': 1748, '2013-11-13': 1749, '2013-11-14': 1750, '2013-11-15': 1751, '2013-11-18': 1752, '2013-11-19': 1753, '2013-11-20': 1754, '2013-11-21': 1755, '2013-11-22': 1756, '2013-11-25': 1757, '2013-11-26': 1758, '2013-11-27': 1759, '2013-11-29': 1760, '2013-12-02': 1761, '2013-12-03': 1762, '2013-12-04': 1763, '2013-12-05': 1764, '2013-12-06': 1765, '2013-12-09': 1767, '2013-12-10': 1766, '2013-12-11': 1768, '2013-12-13': 1769, '2013-12-16': 1770, '2013-12-17': 1771, '2013-12-18': 1772, '2013-12-19': 1773, '2013-12-20': 1774, '2013-12-23': 1775, '2013-12-24': 1776, '2013-12-26': 1777, '2013-12-27': 1778, '2013-12-30': 1779, '2013-12-31': 1780, '2014-01-01': 1781, '2014-01-02': 1782, '2014-01-03': 1783, '2014-01-06': 1784, '2014-01-08': 1785, '2014-01-10': 1786, '2014-01-13': 1787, '2014-01-14': 1788, '2014-01-15': 1789, '2014-01-16': 1790, '2014-01-17': 1791, '2014-01-20': 1792, '2014-01-21': 1793, '2014-01-22': 1794, '2014-01-23': 1795, '2014-01-24': 1796, '2014-01-27': 1797, '2014-01-28': 1798, '2014-01-29': 1799, '2014-01-30': 1800, '2014-01-31': 1801, '2014-02-03': 1802, '2014-02-04': 1803, '2014-02-05': 1804, '2014-02-06': 1805, '2014-02-07': 1806, '2014-02-10': 1807, '2014-02-14': 1808, '2014-02-14-2': 1809, '2014-02-17': 1810, '2014-02-18': 1811, '2014-02-19': 1812, '2014-02-20': 1813, '2014-02-21': 1814, '2014-02-24': 1815, '2014-02-25': 1816, '2014-02-26': 1817, '2014-02-27': 1818, '2014-03-03': 1819, '2014-03-04': 1820, '2014-03-05': 1821, '2014-03-06': 1822, '2014-03-07': 1823, '2014-03-10': 1824, '2014-03-11': 1825, '2014-03-12': 1826, '2014-03-13': 1827, '2014-03-14': 1828, '2014-03-17': 1829, '2014-03-18': 1830, '2014-03-19': 1831, '2014-03-20': 1832, '2014-03-21': 1833, '2014-03-24': 1834, '2014-03-25': 1835, '2014-03-26': 1836, '2014-03-31': 1837, '2014-04-01': 1838, '2014-04-03': 1839, '2014-04-04': 1840, '04-07-2014': 1841, '2014-04-09': 1842, '2014-04-11': 1843, '2014-04-14': 1844, '2014-04-15': 1845, '2014-04-16': 1846, '2014-04-17': 1847, '2014-04-18': 1848, '2014-04-21': 1849, '2014-04-22': 1850, '2014-04-23': 1851, '2014-04-24': 1852, '2014-04-28': 1853, '2014-04-29': 1854, '2014-04-30': 1855, '2014-05-01': 1856, '2014-05-02': 1857, '2014-05-05': 1858, '2014-05-06': 1859, '2014-05-07': 1860, '2014-05-09': 1861, '2014-05-12': 1862, '2014-05-13': 1863, '2014-05-14': 1864, '2014-05-15': 1865, '2015-05-16': 1866, '2014-05-19': 1867, '2014-05-20': 1868, '2014-05-22': 1869, '2014-05-23': 1870, '2014-05-26': 1871, '2014-05-27': 1872, '2014-05-28': 1873, '2014-05-29': 1874, '2014-05-30': 1875, '2014-06-02': 1876, '2014-06-03': 1877, '2014-06-04': 1878, '2014-06-05': 1879, '2014-06-09': 1880, '2015-06-10': 1881, '2014-06-11': 1882, '2014-06-12': 1883, '2014-06-13': 1884, '2014-06-16': 1885, '2014-06-17': 1886, '2014-06-18': 1887, '2014-06-19': 1888, '2014-06-20': 1889, '2014-06-23': 1890, '2014-06-24': 1891, '2014-06-25': 1892, '2014-06-26': 1893, '2014-06-27': 1894, '2014-06-30': 1895, '2014-07-01': 1896, '2014-07-03': 1897, '2014-07-04': 1898, '2014-07-07': 1899, '2014-07-08': 1900, '2014-07-09': 1901, '2014-07-10': 1902, '2014-07-11': 1903, '2014-07-14': 1904, '2014-07-15': 1905, '2014-07-15-2': 1906, '2014-07-17': 1907, '2014-07-18': 1908, '2014-07-21': 1909, '2014-07-22': 1910, '2014-07-23': 1911, '2014-07-24': 1912, '2014-07-25': 1913, '2014-07-28': 1914, '2014-07-29': 1915, '2014-07-29-2': 1916, '2014-07-31': 1917, '2014-08-01': 1918, '2014-08-04': 1919, '2014-08-05': 1920, '2014-08-06': 1921, '2014-08-07': 1922, '2014-08-08': 1923, '2014-08-11': 1924, '2014-08-12': 1925, '2014-08-13': 1926, '2014-08-14': 1927, '2014-08-15': 1928, '2014-08-18': 1929, '2014-08-19': 1930, '2014-08-20': 1931, '2014-08-21': 1932, '2014-08-22': 1933, '2014-08-25': 1934, '2014-08-26': 1935, '2014-08-27': 1936, '2014-08-28': 1937, '2014-08-29': 1938, '2014-09-01': 1939, '2014-09-02': 1940, '2014-09-03': 1941, '2014-09-04': 1942, '2014-09-05': 1943, '2014-09-08': 1944, '2014-09-09': 1945, '2014-09-10': 1946, '2014-09-11': 1947, '2014-09-12': 1948, '2014-09-16': 1949, '2014-09-16-2': 1950, '2014-09-18': 1951, '2014-09-19': 1952, '2014-09-22': 1953, '2014-09-23': 1954, '2014-09-25': 1955, '2014-09-26': 1956, '2014-09-29': 1957, '2014-10-01': 1958, '2014-10-06': 1959, '2014-10-07': 1960, '2014-10-08': 1961, '2014-10-09': 1962, '2014-10-10': 1963, '2014-10-13': 1964, '2014-10-14': 1965, '2014-10-16': 1966, '2014-10-17': 1967, '2010-10-20-2': 1968, '2014-10-21': 1969, '2014-10-23': 1970, '2014-10-24': 1971, '2014-10-27': 1972, '2014-10-29': 1973, '2014-10-31': 1974, '2014-11-03': 1975, '2014-11-04': 1976, '2014-11-05': 1977, '2014-11-06': 1978, '2014-11-10': 1979, '2014-11-11': 1980, '2014-11-13': 1981, '2014-11-14': 1982, '2014-11-17': 1983, '2014-11-18': 1984, '2014-11-19': 1985, '2014-11-20': 1986, '2014-11-21': 1987, '2014-11-24': 1988, '2014-11-25': 1989, '2014-11-26': 1990, '2014-12-03': 1991, '2014-12-04': 1992, '2014-12-09': 1993, '2014-12-10': 1994, '2014-12-15': 1995, '2014-12-16': 1996, '2014-12-17': 1997, '2014-12-18': 1998, '2014-12-19': 1999, '2014-12-29': 2000, '2014-12-30': 2001, '2014-12-31': 2002, '2015-01-02': 2003, '2014-12-05': 2004, '2015-01-07': 2006, '2015-01-08': 2007, '2015-01-09': 2008, '2015-01-12': 2009, '2014-01-14-2': 2010, '2014-12-16-2': 2012, '2015-01-19': 2013, '2015-01-22': 2014, '2015-01-27': 2015, '2015-01-29': 2016, '2015-02-02': 2017, '2015-02-04': 2018, '2015-02-06': 2019, '2015-02-09': 2020, '2015-02-11': 2021, '2015-02-13': 2022, '2015-03-02': 2023, '2015-03-04': 2024, '2015-03-06': 2025, '2015-03-09': 2026, '2015-03-11': 2027, '2015-03-13': 2028, '2015-03-16': 2029, '2015-03-18': 2030, '2015-03-20': 2031, '2015-03-23': 2032, '2015-03-27': 2033, '2015-03-30': 2034, '2015-04-02': 2035, '2015-04-03': 2036, '2015-03-06-2': 2037, '2015-04-08': 2038, '2015-04-10': 2040, '2015-04-13': 2041, '2015-04-15': 2042, '2015-04-17': 2043, '2015-04-20': 2044, '2015-05-23': 2045, '2015-05-27': 2046, '2015-05-29': 2047, '2015-05-01': 2048, '2015-05-04': 2049, '2015-05-06': 2050, '2015-05-08': 2051, '2015-05-11': 2052, '2015-05-13': 2053, '2015-05-15': 2054, '2015-05-18': 2055, '2015-05-22': 2056, '2015-05-25': 2057, '2015-05-27-2': 2058, '2015-06-08': 2059, '2015-06-10-2': 2060, '2015-06-12': 2061, '2015-06-15': 2062, '2015-06-17': 2063, '2015-06-19': 2064, '2015-06-22': 2065, '2015-06-24': 2066, '2015-06-26': 2067, '2015-06-29': 2068, '2015-07-01': 2069, '2015-07-03': 2070, '2015-07-06': 2071, '2015-07-08': 2072, '2015-07-10': 2073, '2015-07-13': 2074, '2015-07-15': 2075, '2015-07-17': 2076, '2015-07-22': 2077, '2015-07-24': 2078, '2015-07-27': 2079, '2015-07-29': 2080, '2015-07-31': 2081, '2015-08-03': 2083, '2015-08-04': 2084, '2015-08-07': 2082, '2015-08-10': 2085, '2015-08-12': 2086, '2015-08-17': 2087, '2015-08-20': 2088, '2015-08-24': 2089, '2015-08-26': 2090, '2015-08-26-2': 2091, '2015-08-31': 2092, '2015-09-02': 2093, '2015-09-04': 2094, '2015-09-07': 2095, '2015-09-09': 2096, '2015-09-11': 2097, '2015-09-14': 2098, '2015-09-16': 2099, '2015-09-18': 2100, '2015-09-21': 2101, '2015-09-23': 2102, '2015-09-25': 2103, '2015-09-28': 2104, '2015-09-30': 2105, '2015-10-02': 2106, '2015-10-05': 2107, '2015-10-07': 2108, '2015-10-09': 2109, '2015-10-12': 2110, '2015-10-15': 2111, '2015-10-19': 2112, '2015-10-21': 2113, '2015-10-23': 2114, '2015-10-26': 2115, '2015-10-29': 2116, '2015-11-02': 2117, '2015-11-04': 2118, '2015-11-06': 2119, '2015-11-09': 2120, '2015-11-11': 2121, '2015-11-13': 2122, '2015-11-16': 2123, '2015-11-18': 2124, '2015-11-20': 2125, '2015-11-23': 2126, '2015-11-25': 2127, '2015-11-30': 2128, '2015-12-02': 2129, '2015-12-04': 2130, '2015-12-07': 2131, '2015-12-09': 2132, '2015-12-11': 2133, '2015-12-14': 2134, '2015-12-16': 2135, '2015-12-18': 2136, '2015-12-21': 2137, '2015-12-23': 2138, '2015-12-28': 2139, '2015-12-30': 2140, '2015-12-04-2': 2141, '2016-01-06': 2143, '2015-01-08-2': 2144, '2015-01-11': 2145, '2016-01-13': 2146, '2016-01-15': 2147, '2016-01-18': 2142, '2016-01-22': 2148, '2016-01-25': 2149, '2016-01-27': 2150, '2016-01-29': 2151, '2016-02-03': 2152, '2016-02-05': 2153, '2016-02-08': 2154, '2016-02-10': 2155, '2016-02-12': 2156, '2016-02-15': 2157, '2016-02-17': 2158, '2016-02-19': 2159, '2016-02-22': 2160, '2016-02-24': 2161, '2016-03-01': 2162, '2016-03-03': 2163, '2016-03-07': 2164, '2016-03-09': 2165, '2016-03-11': 2166, '2016-03-14': 2167, '2016-03-16': 2168, '2016-03-18': 2169, '2016-03-21': 2170, '2019-03-23': 2171, '20xx-03-25': 2172, '2016-03-28-checking-in': 2173, '2016-03-30-critical-information': 2174, '2016-04-01-return-in-the-avengers': 2175, '2016-04-04-best-power': 2176, '2016-04-06-bon-voyage': 2177, '2016-04-08-maybe': 2178, '2016-04-11-nothing-can-go-wrong': 2179, '2016-04-13-who-watches': 2180, '2016-04-15-t-minus-one': 2181, '2016-04-18-pi': 2182, '2016-04-20-i-trust-him': 2183, '2016-04-25': 2184, '2016-04-27-magic-weapon-expert': 2185, '2046-05-03-more-info-needed': 2186, '2016-05-06-pull-the-strings': 2187, '2016-04-09': 2188, '2016-05-11-reunion': 2189, '2016-05-13-contrast': 2190, '2016-05-16-soon': 2191, 'question-mark-01': 2236, 'question-mark-02': 2237, 'question-mark-03': 2238, 'question-mark-04': 2239, 'question-mark-05': 2240, 'question-mark-06': 2241, 'question-mark-07': 2242, 'question-mark-08': 2243, 'question-mark-09': 2244, 'question-mark-10': 2245, '2016-05-23': 2192, '2016-05-25': 2193, '2016-05-27': 2194, '2016-05-30': 2195, '2016-06-02': 2196, '2016-06-03': 2197, '2016-06-06': 2198, '2016-06-08': 2199, '2016-06-10': 2200, '2016-06-014': 2201, '2016-06-15': 2202, '2016-06-17': 2203, '2016-06-20': 2204, '2016-06-22': 2205, '2016-06-24': 2206, '2016-06-27': 2207, '2016-06-29': 2208, '2016-07-01': 2209, '2016-06-04': 2210, '2016-07-06': 2211, '2016-07-08': 2212, '2016-07-11': 2213, '2016-07-13': 2214, '2016-07-18': 2215, '2016-07-20': 2216, '2016-07-22': 2217, '2016-07-25': 2218, '2016-07-27': 2219, '2016-07-29': 2220, '2016-08-01': 2221, '2016-08-03': 2222, '2016-08-05': 2223, '2016-08-08': 2224, '2016-08-10': 2225, '2016-08-12': 2226, '2016-08-15': 2227, '2016-08-17': 2228, '2016-08-19': 2229, '2016-08-22': 2230, '2016-08-26': 2231, '2016-08-29': 2232, '2016-08-31': 2233, '2016-09-02': 2234, '2016-08-059': 2235, '2016-09-07': 2246, '2016-09-09': 2247, '2016-09-12': 2248, '2016-09-14': 2249, '2016-09-16': 2250, '2016-09-19': 2251, '2016-09-21': 2252, '2016-09-23': 2253, '2016-09-26': 2254, '2016-09-28': 2255, '2016-0930': 2256, '2016-10-03': 2257, '2016-10-05': 2258, '2016-10-07': 2259, '2016-10-16': 2260, '2016-10-12': 2261, '2016-10-14': 2262, '2016-10-17': 2263, '2016-10-19': 2264, '2016-10-21': 2265, '2016-10-24': 2266, '2016-10-26': 2267, '2016-10-28': 2268, '2016-10-31': 2269, '2016-11-02': 2270, '2016-11-04': 2271, '2016-11-07': 2272, '2016-11-11': 2273, '2016-11-14': 2274, '2016-11-16': 2275, '2016-11-18': 2276, '2016-11-21': 2277, '2016-11-23': 2278, '2016-11-25': 2279, '2016-11-28': 2280, '2016-11-30': 2281, '2016-12-02': 2282, '2016-12-05': 2283, '2016-12-07': 2284, '2016-12-09': 2285, '2016-12-12': 2286, '2016-12-14': 2287, '2016-12-16': 2288, '2016-12-19': 2289, '2016-12-21': 2290, '2016-12-23': 2291, '2016-12-27': 2292, '2016-12-29': 2293, '2017-01-02': 2294, '2017-01-04': 2295, '2017-01-06': 2296, '2017-01-09': 2297, '2017-01-11': 2298, '2017-01-13': 2299, '2017-01-16': 2300, '2017-01-20': 2301, '2016-01-23': 2302, '2017-01-27': 2303, '2017-01-27-2': 2304, '2017-01-30': 2305, '2017-02-01': 2306, '2017-02-03': 2307, '2017-02-06': 2308, '2017-02-08': 2309, '2017-02-10': 2310, '2017-02-13': 2311, '2017-02-15': 2312, '2017-02-20': 2313, '2017-02-22': 2314, '2017-02-24': 2315, '2017-02-27': 2316, '2017-03-01': 2317, '2017-03-03': 2318, '2017-03-06': 2319, '2017-03-07': 2320, '2017-03-10': 2321, '2017-03-13': 2322, '2017-03-15': 2323, '2017-03-17': 2324, '2017-03-20': 2325, '2017-03-22': 2326, '2017-03-27': 2327, '2017-03-29': 2328, '2017-03-31': 2329, '2017-04-03': 2330, '2017-04-05': 2331, '2017-04-07': 2332, '2017-04-10': 2333, '2017-04-12': 2334, '2017-04-14': 2335, '2107-04-17': 2336, '2017-04-19': 2337, '2017-04-21': 2338, '2017-04-24': 2339, '2017-04-26': 2340, '2017-04-28': 2341, '2017-05-01': 2342, '2017-05-03': 2343, '2017-05-05': 2344, '2017-05-08': 2345, '2017-05-10': 2346, '2017-05-12': 2347, '2017-05-15': 2348, '2017-05-18': 2349, '2017-05-22': 2350, '2017-05-24': 2351, '2017-05-26': 2352, '2017-05-29': 2353, '2017-05-31': 2354, '2017-06-02': 2355, '2017-06-05': 2356, '2017-06-07': 2357, '2017-06-09': 2358, '2017-06-12': 2359, '2017-06-14': 2360, '2017-06-16': 2361, '2017-06-19': 2362, '2017-06-21': 2363, '2017-06-23': 2364, '2017-06-26': 2365, '2017-06-28': 2366, '2017-06-30': 2367, '2017-07-03': 2368, '2017-07-05': 2369, '2017-07-07': 2370, '2017-07-10': 2371, '2017-07-12': 2372, '2017-07-14': 2373, '2017-07-17': 2374, '2017-07-19': 2375, '2017-07-21': 2376, '2017-07-24': 2377, '2017-07-26': 2378, '2017-07-28': 2379, '2017-07-31': 2380, '2017-08-22': 2381, '2017-08-04': 2382, '2017-08-07': 2383, '2017-08-11': 2384, '2017-08-14': 2385, '2017-08-16': 2386, '2017-08-017': 2387, '2017-08-21': 2388, '2017-08-23': 2389, '2017-08-25': 2390, '2017-08-30': 2391, '2017-09-01': 2392, '2017-09-04': 2393, '2017-09-06': 2394, '2017-09-08': 2395, '2017-09-11': 2396, '2017-09-13': 2397, '2017-09-15': 2398, '2017-09-18': 2399, '2017-09-20': 2400, '2017-09-25': 2401, '2017-09-27': 2402, '2017-09-29': 2403, '2017-10-02': 2404, '2017-10-04': 2405, '2017-10-06': 2406, '2017-10-09': 2407, '2017-10-11': 2408, '2017-10-13': 2409, '2017-10-16': 2410, '2017-10-17': 2411, '2017-10-20': 2412, '2017-10-23': 2413, '2017-10-25': 2414, '2017-10-27': 2415, '2017-10-30': 2416, '2017-11-01': 2417, '2017-11-03': 2418, '2017-11-06': 2419, '2017-11-08': 2420, '2017-11-10': 2421, '2017-11-13': 2422, '2017-11-15': 2423, '2017-11-17': 2424, '2017-11-20': 2425, '2017-11-22': 2426, '2017-11-24': 2427, '2017-11-27': 2428, '2017-11-29': 2429, '2017-12-04': 2430, '2017-12-06': 2431, '2017-12-08': 2432, '2017-12-11': 2433, '2017-1213': 2434, '2017-12-15': 2435, '2017-12-18': 2436, '2017-12-20': 2437, '2017-12-22': 2438, '2017-12-27': 2439, '2017-12-29': 2440, '2018-01-01': 2441, '2018-01-03': 2442, '2018-01-05': 2443, '2018-01-08': 2444, '2018-01-10': 2445, '2018-01-12': 2446, '2018-01-15': 2447, '2018-01-17': 2448, '2018-01-19': 2449, '2018-01-22': 2450, '2018-01-24': 2451, '2018-01-26': 2452, '2018-01-29': 2453, '2018-01-31': 2454, '2018-02-02': 2455, '2018-02-05': 2456, '2018-02-07': 2457, '2018-02-09': 2458, '2018-02-12': 2459, '2018-02-14': 2460, '2018-02-16': 2461, '2018-02-19': 2462, '2018-02-21': 2463, '2018-02-23': 2464, '2018-02-26': 2465, '2018-02-28': 2466, '2018-03-02': 2467, '2018-03-05': 2468, '2018-03-07': 2469, '2018-03-09': 2470, '2018-03-12': 2471, '2018-03-14': 2472, '2018-03-16': 2473, '2018-03-19': 2474, '2018-03-21': 2475, '2018-03-23': 2476, '2018-03-26': 2477, '2018-03-28': 2478, '2018-03-30': 2479, '2018-04-02': 2480, '2018-04-04': 2481, '2018-04-06': 2482, '2018-04-09': 2483, '2018-04-11': 2484, '2018-04-13': 2485, '2018-04-16': 2486, '2018-04-18': 2487, '2018-04-20': 2488, '2018-04-23': 2489, '2018-04-25': 2490, '2018-04-27': 2491, '2018-04-30': 2492, '2018-05-02': 2493, '2018-05-04': 2494, '2018-04-07': 2495, '2018-05-09': 2496, '2018-04-11-2': 2497, '2018-05-14': 2498, '2018-05-16': 2499, '2018-05-18': 2500, '2018-05-24': 2501};
else if (section == "sketchbook") lookup = {'2002-07-01': 79, '2002-07-02': 80, '2002-07-03': 81, '2002-07-04': 82, '2002-07-14': 83, '2002-07-21': 84, '2002-07-28': 85, '2002-08-04': 86, '2002-08-11': 87, '2002-08-18': 88, '2002-08-25': 89, '2002-09-01': 90, '2002-09-08': 91, '2002-09-15': 92, '2002-09-16': 93, '2002-09-22': 94, '2002-09-29': 95, '2002-10-06': 96, '2002-10-13': 97, '2002-10-20': 98, '2002-10-27': 99, '2002-11-03': 100, '2002-11-05': 101, '2002-11-17': 102, '2002-11-23': 103, '2002-12-01': 104, '2002-12-09': 105, '2002-12-22': 106, '2002-12-30': 107, '2003-01-05': 108, '2003-01-12': 109, '2003-01-17': 110, '2003-01-20': 111, '2003-01-21': 112, '2003-01-26': 113, '2003-01-30': 114, '2003-02-09': 115, '2003-02-11': 116, '2003-02-18': 117, '2003-02-23': 118, '2003-02-24': 119, '2003-02-25': 120, '2003-02-26': 121, '2003-02-27': 122, '2003-02-28': 123, '2003-03-02': 124, '2003-03-21': 125, '2003-03-23': 126, '2003-03-28': 127, '2003-03-30': 128, '2003-04-06': 129, '2003-04-11': 130, '2003-04-13': 131, '2003-04-18': 132, '2003-04-20': 133, '2003-04-27': 134, '2003-05-04': 135, '2003-05-11': 136, '2003-05-16': 137, '2003-05-25': 138, '2003-06-03': 139, '2003-06-08': 140, '2003-06-17': 141, '2003-07-20': 142, '2003-07-27': 143, '2003-08-20': 144, '2003-09-05': 145, '2003-09-07': 146, '2003-09-11': 147, '2003-09-21': 148, '2003-09-27': 149, '2003-10-05': 150, '2003-10-12': 151, '2003-10-19': 152, '2003-10-26': 153, '2003-10-31': 154, '2003-11-02': 155, '2003-11-09': 156, '2003-11-16': 157, '2003-11-23': 158, '2003-11-30': 159, '2003-12-07': 160, '2003-12-12': 161, '2003-12-14': 162, '2003-12-16': 163, '2003-12-18': 164, '2003-12-23': 165, '2003-12-25': 166, '2003-12-30': 167, '2004-01-01': 168, '2004-01-06': 169, '2004-01-08': 170, '2004-01-13': 171, '2004-01-15': 172, '2004-01-19': 173, '2004-01-21': 174, '2004-01-23': 175, '2004-01-27': 176, '2004-01-29': 177, '2004-01-30': 178, '2004-02-03': 179, '2004-02-05': 180, '2004-02-10': 181, '2004-02-11': 182, '2004-02-13': 183, '2004-02-18': 184, '2004-02-24': 185, '2004-02-29': 186, '2004-03-07': 187, '2004-03-14': 188, '2004-03-31': 189, '2004-04-04': 190, '2004-04-11': 191, '2004-04-25': 192, '2004-04-29': 193, '2004-05-02': 194, '2004-05-09': 195, '2004-05-16': 196, '2004-05-23': 197, '2004-05-30': 198, '2004-06-04': 199, '2004-06-05': 200, '2004-06-08': 201, '2004-06-09': 202, '2004-06-11': 203, '2004-06-12': 204, '2004-06-16': 205, '2004-06-26': 206, '2004-07-04': 207, '2004-07-11': 208, '2004-07-18': 209, '2004-07-20': 210, '2004-07-22': 211, '2004-07-24': 212, '2004-07-25': 213, '2004-07-27': 214, '2004-07-29': 215, '2004-07-31': 216, '2004-08-01': 217, '2004-08-08': 218, '2004-08-15': 219, '2004-08-22': 220, '2004-08-23': 221, '2004-09-01': 222, '2004-09-05': 223, '2004-09-08': 224, '2004-09-09': 225, '2004-09-17': 226, '2004-10-06': 227, '2004-10-08': 228, '2004-10-11': 229, '2004-10-13': 230, '2004-10-15': 231, '2004-10-31': 232, '2004-11-05': 233, '2004-11-14': 234, '2004-11-19': 235, '2004-11-22': 236, '2004-11-25': 237, '2004-11-29': 238, '2004-11-30': 239, '2004-12-10': 240, '2004-12-15': 241, '2004-12-20': 242, '2004-12-22': 243, '2004-12-24': 244, '2004-12-27': 245, '2004-12-29': 246, '2004-12-31': 247, '2005-01-21': 248, '2005-02-01': 249, '2005-02-03': 250, '2005-02-05': 251, '2005-02-18': 252, '2005-03-11': 253, '2005-03-14': 254, '2005-04-29': 255, '2005-05-17': 256, '2005-06-20': 257, '2005-07-11': 258, '2005-07-12': 259, '2005-07-13': 260, '2005-07-14': 261, '2005-07-15': 262, '2005-07-18': 263, '2005-07-19': 264, '2005-07-29': 265, '2005-08-03': 266, '2005-08-05': 267, '2005-08-06': 268, '2005-08-17': 269, '2005-08-18': 270, '2005-08-19': 271, '2005-08-22': 272, '2005-08-23': 273, '2005-08-25': 274, '2005-08-27': 275, '2005-08-29': 276, '2005-08-30': 277, '2005-09-01': 278, '2005-09-03': 279, '2005-09-05': 280, '2005-09-07': 281, '2005-09-09': 282, '2005-09-12': 283, '2005-09-13': 284, '2005-09-15': 285, '2005-09-16': 286, '2005-09-17': 287, '2005-09-19': 288, '2005-09-20': 289, '2005-09-21': 290, '2005-09-22': 291, '2005-09-23': 292, '2005-09-24': 293, '2005-09-25': 294, '2005-09-26': 295, '2005-10-13': 296, '2005-10-17': 297, '2005-10-27': 298, '2005-10-28': 299, '2005-10-31': 300, '2005-11-03': 301, '2005-11-05': 302, '2005-11-07': 303, '2005-11-15': 304, '2005-11-23': 305, '2005-11-28': 306, '2005-11-30': 307, '2005-12-07': 308, '2005-12-09': 309, '2005-12-19': 310, '2005-12-23': 311, '2005-12-26': 312, '2006-01-15': 313, '2006-01-21': 314, '2006-01-22': 315, '2006-01-23': 316, '2006-01-25': 317, '2006-01-26': 318, '2006-01-27': 319, '2006-01-29': 320, '2006-02-05': 321, '2006-02-06': 322, '2006-02-12': 323, '2006-02-14': 324, '2006-02-17': 325, '2006-02-18': 326, '2006-02-20': 327, '2006-03-01': 328, '2006-03-05': 329, '2006-03-08': 330, '2006-03-12': 331, '2006-03-17': 332, '2006-03-19': 333, '2006-03-26': 334, '2006-04-02': 335, '2006-04-03': 336, '2006-04-08': 337, '2006-04-10': 338, '2006-04-12': 339, '2006-04-14': 340, '2006-04-16': 341, '2006-04-23': 342, '2006-04-24': 343, '2006-04-26': 344, '2006-04-28': 345, '2006-04-30': 346, '2006-05-01': 347, '2006-05-07': 348, '2006-05-10': 349, '2006-05-17': 350, '2006-05-18': 351, '2006-05-24': 352, '2006-06-02': 353, '2006-06-16': 354, '2006-06-19': 355, '2006-06-30': 356, '2006-07-01': 357, '2006-07-02': 358, '2006-07-08': 359, '2006-07-14': 360, '2006-08-02': 361, '2006-08-11': 362, '2006-08-18': 363, '2006-08-23': 364, '2006-09-01': 365, '2006-09-06': 366, '2006-09-07': 367, '2006-09-15': 368, '2006-09-22': 369, '2006-09-25': 370, '2006-09-27': 371, '2006-10-23': 372, '2006-11-03': 373, '2006-11-08': 374, '2006-11-10': 375, '2006-11-15': 376, '2006-11-17': 377, '2006-11-20': 378, '2006-11-22': 379, '2006-11-24': 380, '2006-11-27': 381, '2006-11-29': 382, '2006-12-01': 383, '2006-12-04': 384, '2006-12-06': 385, '2006-12-08': 386, '2006-12-11': 387, '2006-12-13': 388, '2006-12-15': 389, '2006-12-18': 390, '2006-12-20': 391, '2006-12-22': 392, '2006-12-25': 393, '2006-12-27': 394, '2007-01-21': 395, '2007-02-02': 396, '2007-02-14': 397, '2007-02-16': 398, '2007-02-18': 399, '2007-02-21': 400, '2007-02-23': 401, '2007-02-28': 402, '2007-03-02': 403, '2007-03-15': 404, '2007-03-24': 405, '2007-03-29': 406, '2007-04-05': 407, '2007-04-07': 408, '2007-04-14': 409, '2007-04-24': 410, '2007-04-26': 411, '2007-04-28': 412, '2007-05-05': 413, '2007-05-10': 414, '2007-05-12': 415, '2007-05-19': 416, '2007-05-26': 417, '2007-05-29': 418, '2007-06-07': 419, '2007-06-14': 420, '2007-06-17': 421, '2007-06-21': 422, '2007-06-23': 423, '2007-07-03': 424, '2007-07-05': 425, '2007-07-07': 426, '2007-07-10': 427, '2007-07-12': 428, '2007-07-17': 429, '2007-07-19': 430, '2007-07-24': 431, '2007-07-26': 432, '2007-08-24': 433, '2007-08-28': 434, '2007-09-05': 435, '2007-09-25': 436, '2007-10-02': 437, '2007-10-17': 438, '2007-10-27': 439, '2007-10-31': 440, '2007-11-03': 441, '2007-11-07': 442, '2007-11-10': 443, '2007-11-12': 444, '2007-12-03': 445, '2007-12-07': 446, '2007-12-08': 447, '2007-12-09': 448, '2007-12-15': 449, '2007-12-25': 450, '2008-01-02': 451, '2008-01-21': 452, '2008-02-08': 453, '2008-02-15': 454, '2008-02-18': 455, '2008-02-29': 456, '2008-03-05': 457, '2008-03-09': 458, '2008-03-17': 459, '2008-03-31': 460, '2008-04-01': 461, '2008-04-02': 462, '2008-04-03': 463, '2008-04-04': 464, '2008-04-28': 465, '2008-05-16': 466, '2008-08-11': 467, '2008-08-12': 468, '2008-08-13': 469, '2008-08-14': 470, '2008-08-15': 471, '2008-08-18': 472, '2008-08-20': 473, '2008-08-22': 474, '2008-09-05': 475, '2008-10-09': 476, '2008-10-16': 477, '2008-10-18': 478, '2008-10-21': 479, '2008-10-23': 480, '2008-10-25': 481, '2008-11-20': 482, '2008-11-29': 483, '2008-12-08': 484, '2008-12-10': 485, '2008-12-12': 486, '2008-12-15': 487, '2008-12-17': 488, '2008-12-19': 489, '2008-12-23': 490, '2008-12-25': 491, '2008-12-30': 492, '2009-01-01': 493, '2009-01-06': 494, '2009-01-27': 495, '2009-01-29': 496, '2009-02-03': 497, '2009-02-05': 498, '2009-02-20': 499, '2009-02-24': 500, '2009-03-15': 501, '2009-03-25': 502, '2009-04-02': 503, '2009-04-11': 504, '2009-04-16': 505, '2009-04-23': 506, '2009-05-01': 507, '2009-05-14': 508, '2009-06-13': 509, '2009-06-15': 510, '2009-06-16': 511, '2009-06-19': 512, '2009-07-22': 513, '2009-08-01': 514, '2009-08-06': 515, '2009-12-15': 516, '2010-02-17': 517, '2010-03-25': 518, '2010-03-26': 519, '2010-03-30': 520, '2010-04-01': 521, '2010-04-06': 522, '2010-04-08': 523, '2010-04-13': 524, '2010-04-15': 525, '2010-04-20': 526, '2010-04-22': 527, '2010-04-27': 528, '2010-04-29': 529, '2010-05-03': 530, '2010-05-06': 531, '2010-05-11': 532, '2010-05-13': 533, '2010-05-18': 534, '2010-05-20': 535, '2010-05-25': 536, '2010-05-27': 537, '2010-06-01': 538, '2010-06-03': 539, '2010-06-08': 540, '2010-06-10': 541, '2010-06-15': 542, '2010-06-17': 543, '2010-06-22': 544, '2010-06-24': 545, '2010-06-29': 546, '2010-07-01': 547, '2010-07-06': 548, '2010-07-08': 549, '2010-07-13': 550, '2010-07-15': 551, '2010-07-16': 552, '2010-07-20': 553, '2010-07-22': 554, '2010-07-27': 555, '2010-07-29': 556, '2010-08-03': 557, '2010-08-04': 558, '2010-08-06': 559, '2010-08-10': 560, '2010-08-12': 561, '2010-08-17': 562, '2010-08-19': 563, '2010-08-24': 564, '2010-08-26': 565, '2010-08-31': 566, '2010-09-02': 567, '2010-09-07': 568, '2010-09-09': 569, '2010-09-14': 570, '2010-09-16': 571, '2010-09-21': 572, '2010-09-23': 573, '2010-09-28': 574, '2010-09-30': 575, '2010-10-05': 576, '2010-10-07': 577, '2010-10-12': 578, '2010-10-14': 579, '2010-10-19': 580, '2010-10-21': 581, '2010-10-26': 582, '2010-10-28': 583, '2010-11-02': 584, '2010-11-04': 585, '2010-11-09': 586, '2010-11-11': 587, '2010-11-16': 588, '2010-11-18': 589, '2010-11-23': 590, '2010-11-24': 591, '2010-11-26': 592, '2010-11-30': 593, '2010-12-02': 594, '2010-12-07': 595, '2010-12-09': 596, '2010-12-14': 597, '2010-12-16': 598, '2010-12-21': 599, '2010-12-23': 600, '2010-12-24': 601, '2010-12-28': 602, '2010-12-30': 603, '2011-01-04': 1, '2011-01-06': 2, '2011-01-11': 3, '2011-01-13': 4, '2011-01-18': 5, '2011-01-20': 6, '2011-01-25': 7, '2011-01-27': 8, '2011-02-01': 9, '2011-02-03': 10, '2011-02-08': 11, '2011-02-10': 12, '2011-02-15': 13, '2011-02-17': 14, '2011-02-22': 15, '2011-02-24': 16, '2011-03-01': 17, '2011-03-03': 18, '2011-03-08': 19, '2011-03-10': 20, '2011-03-11': 21, '2011-03-15': 22, '2011-03-17': 23, '2011-03-22': 24, '2011-03-24': 25, '2011-03-29': 26, '2011-03-31': 27, '2011-04-05': 28, '2011-04-07': 29, '2011-04-12': 30, '2011-04-14': 31, '2011-04-19': 32, '2011-04-23': 33, '2011-04-30': 34, '2011-05-02': 36, '2011-05-07': 35, '2011-05-14': 37, '2011-05-21': 38, '2011-05-28': 39, '2011-05-31': 40, '2011-06-04': 41, '2011-06-09': 42, '2011-06-11': 43, '2011-06-16': 44, '2011-06-18': 45, '2011-06-21': 46, '2011-07-13': 47, '2011-07-21': 48, '2011-08-04': 49, '2011-08-17': 50, '2011-08-24': 51, '2011-08-26': 52, '2011-08-31': 53, '2011-09-05': 54, '2011-09-06': 55, '2011-09-13': 56, '2011-09-15': 57, '2011-09-21': 58, '2011-09-23': 59, '2011-09-28': 60, '2011-10-04': 61, '2011-10-06': 62, '2011-10-11': 63, '2011-10-13': 64, '2011-10-18': 65, '2011-10-20': 66, '2011-10-26': 67, '2011-11-02': 68, '2011-11-08': 69, '2011-11-10': 70, '2011-11-16': 71, '2011-11-23': 72, '2011-11-30': 73, '2011-12-07': 74, '2011-12-14': 75, '2011-12-21': 76, '2011-12-26': 77, '2011-12-28': 78, '2012-01-04': 604, '2012-01-11': 605, '2012-01-13': 606, '2012-01-18': 607, '2012-01-21': 608, '2012-01-25': 609, '2012-01-27': 610, '2012-02-01': 611, '2012-02-08': 612, '2012-02-15': 613, '2012-02-21': 614, '2012-02-23': 615, '2012-02-28': 616, '2012-02-29': 617, '2012-03-07': 618, '2012-03-14': 619, '2012-03-21': 620, '2012-03-27': 621, '2012-03-29': 622, '2012-04-04': 623, '2012-04-11': 624, '2012-04-12': 625, '2012-04-18': 626, '2012-04-25': 627, '2012-05-01': 628, '2012-05-03': 629, '2012-05-08': 630, '2012-05-10': 631, '2012-05-15': 632, '2012-05-23': 633, '2012-05-24': 634, '2012-05-30': 635, '2012-06-05': 636, '2012-06-07': 637, '2012-06-12': 638, '2012-06-14': 639, '2012-06-17': 640, '2012-06-19': 641, '2012-06-21': 642, '2012-06-27': 643, '2012-07-04': 644, '2012-07-11': 645, '2012-07-18': 646, '2012-07-23': 647, '2012-07-24': 648, '2012-07-25': 649, '2012-07-26': 650, '2012-07-27': 651, '2012-08-01': 652, '2012-08-08': 653, '2012-08-15': 654, '2012-08-22': 655, '2012-08-23': 656, '2012-08-24': 657, '2012-08-29': 658, '2012-09-05': 659, '2012-09-12': 660, '2012-09-14': 661, '2012-09-19': 662, '2012-09-26': 663, '2012-10-02': 664, '2012-10-04': 665, '2012-10-08': 666, '2012-10-09': 667, '2012-10-10': 668, '2012-10-11': 669, '2012-10-12': 670, '2012-10-18': 671, '2012-10-24': 672, '2012-10-25': 673, '2012-10-30': 674, '2012-11-01': 675, '2012-11-05': 676, '2012-11-06': 677, '2012-11-12': 678, '2012-11-09': 679, '2012-11-13': 680, '2012-11-15': 681, '2012-11-20': 682, '2012-11-22': 683, '2012-11-29': 684, '2012-12-05': 685, '2012-12-06': 686, '2012-12-11': 687, '2012-12-13': 688, '2012-12-18': 689, '2012-12-20': 690, '2012-12-24': 691, '2012-12-26': 692, '2012-12-28': 693, '2013-01-01': 694, '2013-01-03': 695, '2013-01-08': 696, '2013-01-10': 697, '2013-01-15': 698, '2013-01-17': 699, '2013-01-22': 700, '2013-01-24': 701, '2013-01-29': 702, '2013-01-31': 703, '2013-02-07': 704, '2013-02-13': 705, '2013-02-20': 706, '2013-04-18': 707, '2013-08-31-hair-growth-mishap': 708, '2013-09-01-party-crasher': 709, '2013-09-07': 710, '2013-09-08': 711, '2013-09-14': 712, '2013-09-15': 713, '2013-09-21': 714, '2013-09-22': 715, '2013-09-28': 716, '2013-09-29': 717, '2013-10-04': 718, '2013-10-06': 719, '2013-10-12': 720, '2013-10-13': 721, '2013-10-19': 722, '2013-10-20': 723, '2013-10-26': 724, '2013-10-27': 725, '2013-11-02': 726, '2013-11-03': 727, '2013-11-09': 728, '2013-11-10': 729, '2013-11-15': 730, '2013-11-17': 731, '2013-11-23': 732, '2013-11-24': 733, '2013-11-30': 734, '2013-12-01': 735, '2013-12-07': 736, '2013-12-08': 737, '2013-12-12': 738, '2013-12-14': 739, '2013-12-15': 740, '2013-12-21': 741, '2013-12-22': 742, '2013-12-25': 743, '2013-12-28': 744, '2013-12-29': 745, '2014-01-04': 746, '2014-01-05': 747, '2014-01-11': 748, '2014-01-12': 749, '2014-01-18': 750, '2014-01-19': 751, '2014-01-25': 752, '2014-01-26': 753, '2014-02-01': 754, '2014-02-02': 755, '2014-02-08': 756, '2014-02-09': 757, '2014-02-15': 758, '2014-02-16': 759, '2014-02-22': 760, '2014-02-23': 761, '2014-02-28': 762, '2014-03-27': 763, '2014-03-14': 764, '2014-05-21': 765, '2015-06-06': 766, '2014-07-05': 767, 'so-girly-tedd': 768, '2014-07-30': 769, '2014-07-31': 770, '2014-08-13': 771, '2014-08-14': 772, '2014-08-15': 773, '2014-08-18': 774, '2014-08-19': 775, '2014-08-20': 776, '2014-08-21': 777, '2014-08-22': 778, '2014-08-25': 779, '2014-08-26': 780, '2014-08-27': 781, '2014-08-28': 782, '2014-08-29': 783, '2014-09-03': 784, '2014-09-04': 785, '2014-09-05': 786, '2014-09-08': 787, '2014-09-09': 788, '2014-09-11': 789, '2014-09-12': 790, '2014-09-15': 791, '2014-09-16': 792, '2014-09-17': 793, '2014-09-18': 794, '2014-09-19': 795, '2014-09-22': 796, '2014-09-23': 797, '2014-09-24': 798, '2014-09-25': 799, '2014-09-26': 800, '2014-09-29': 801, '2014-09-30': 802, '2014-09-30b': 803, '2014-10-02': 804, '2014-10-07': 805, '2014-10-08': 806, '2014-10-09': 808, '2014-10-10': 809, '2014-10-13': 810, '2014-10-14': 811, '2014-10-15': 813, '2014-10-16': 812, '2014-10-08-2': 807, '2014-10-20': 814, '2014-10-21': 815, '2014-10-24': 816, '2014-10-27': 817, '2014-10-28': 818, '2014-10-31-1-of-4': 819, '2014-10-31-2-of-4': 820, '2014-10-31-3-of-4': 821, '2014-10-31-4-of-4': 822, '2014-11-03': 823, '2014-11-04': 824, '2014-11-05': 825, '2014-11-12': 826, '2014-12-08': 827, '2014-11-08-02': 828, '2014-11-08-03': 829, '2014-11-08-04': 830, '2014-11-08-05': 831, '2014-11-08-06': 832, '2014-11-08-07': 833, '2014-11-08-08': 834, '2014-11-08-09': 835, '2014-11-08-10': 836, '2014-12-08-11': 837, '2014-12-08-12': 838, '2014-12-08-13': 839, '2014-12-08-14': 840, '2014-12-08-15': 841, '2014-12-08-16': 842, '2014-12-08-17': 843, '2014-12-22': 844, '2014-12-23': 845, '2014-12-25': 846, '2014-12-26': 847, '2014-12-31-01': 848, '2014-12-13': 849, '2015-01-15': 850, '2015-02-19': 851, '2015-02-23': 852, '2015-02-26': 853, '2015-03-19': 854, '2015-03-23': 855, '2015-03-26': 856, '2015-05-26-book-thief': 857, '2015-06-02-susan-the-hedgehog': 858, '2015-06-03': 859, '2015-06-10': 860, '2015-06-16-1-of-2-wizard-sarah-2': 861, '2015-06-16-2-of-2-chrono-grace': 862, '2015-06-18-link-grace': 863, '2015-06-23-sort-of-elliot': 864, '2015-06-25-stay-a-while': 865, '2015-06-30': 866, '2015-07-02-fresh-v5-greg': 867, '2015-07-07-nanasajayne': 868, '2015-07-14-sorceress-sarah': 869, '2015-08-06': 870, '2015-08-11': 871, '2015-08-13': 872, '2015-08-18': 873, '2015-08-25-1-of-2': 874, '2015-08-25-2-of-2': 875, '2015-09-01': 876, '2016-02-11': 877, '2016-04-05-triumphant-magical-girl-grace-and-defeated-steampunk-greg': 878, '2016-04-07': 879, '2016-04-12-costume-party': 880, '2016-04-14': 881, '2016-04-19-maximum-shipping': 882, '2016-04-21-fv5-greg-and-justin-workout': 883, '2017-10-31-trick-or-grace': 884, '2017-11-02-sorceress-rhoda': 885, '2017-11-27-cool-off-and-be-hot': 886, '2017-12-25-remote-control': 887, '2018-01-01-bunny-susan-carrot-rocket-magic-fun-ride': 888, '2018-01-02-new-student-diane': 889, '2018-01-25-girls-day-out': 890, '2018-01-29-you39ve-won-the-game': 891, '2018-01-31-kitty-ashley': 892, '2018-02-02-make-kitty-a-kitty': 893, '2018-02-05-beach-trip': 894, '2018-02-12-nase-fv5-sarah-and-elliot': 895};
else return undefined;
return lookup[slug];
}
});
});
var script = document.createElement('script');
script.textContent = '(' + code.toString() + ')();';
document.body.appendChild(script);
})();