Editing User:452

Jump to: navigation, search

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.
Latest revision Your text
Line 1: Line 1:
 
==Status==
 
==Status==
*18:30, 4 July 2015 (UTC) Off-line. I'm no longer running my script, as it's just finding fewer and fewer results, likely because there are fewer and fewer people adding new content.  Others are free to use my script.
+
*Welp, I was being lazy and hadn't updated in a while, and my browser crashed, losing a day's results. Resuming with previously saving data... (Incidentally, the browser crash is unrelated to the script running.)
 +
 
 +
Import functions implemented, all saved feed data reloaded, script running again.
 +
 
 +
I am no longer monitoring "pick an image"/"pick a caption" overlap, as it was over 95% anyway, and I was only updating this page with the ''unique'' prompt/captions not found in the feed.
  
 
;Phase 1.
 
;Phase 1.
:Saving reasons, usernames and text only.   No images or permalinks IDs saved.
+
:Saving reasons, usernames and text only. No images or permalinks IDs have been saved.
 
*All usernames have been found
 
*All usernames have been found
 
*All reasons for data loss have been found
 
*All reasons for data loss have been found
 
*The overlap between feed and prompt text is over 95%
 
*The overlap between feed and prompt text is over 95%
  
;Phase 2.
+
;Phase 2. (Running)
 
:Saving permalink and images IDs
 
:Saving permalink and images IDs
 
*The image and text associated with permalinks never changes.
 
*The image and text associated with permalinks never changes.
 
(I probably should have been saving the permalinks this whole time.)
 
(I probably should have been saving the permalinks this whole time.)
  
===Count history===
+
----
*04-22: [25474] (unique: 2167) +80  /9
+
Old status updates:
*04-21: [25396] (unique: 2158) +50  /4
 
*04-20: [25349] (unique: 2154) +60  /5
 
*04-19: [25281] (unique: 2149) +100 /3
 
*04-18: [25186] (unique: 2146) +100 /14
 
*04-17: [25046] (unique: 2132) +100 /7
 
*04-16: [24904] (unique: 2125) +200 /3
 
*04-15: [24727] (unique: 2122) +400 /15
 
*04-14: [24370] (unique: 2107) +500 /18
 
*04-13: [23886] (unique: 2089) +700 /13
 
*04-12: [23145] (unique: 2076) +800
 
*04-11: [22332]               
 
 
 
===Old status===
 
 
*<s>Edit: "ERR_CONNECTION_REFUSED". :(</s> - Apparently it was happening for everyone, back to normal. Resuming at 1 request per 30 seconds just in case.
 
*<s>Edit: "ERR_CONNECTION_REFUSED". :(</s> - Apparently it was happening for everyone, back to normal. Resuming at 1 request per 30 seconds just in case.
*Well, fuck.  I hit the 2mb page limit at 10217 [[1506:_xkcloud/Table of Permalinks|Permalinks]].
+
*Well, fuck.  I hit the 2mb page limit at 10217 [[1506:_xkcloud/Permalinks|Permalinks]].
 
*After finding 17000 permalinks, my script has slowed down considerably, and is finding new content much less often.
 
*After finding 17000 permalinks, my script has slowed down considerably, and is finding new content much less often.
 
*I'm glad I had already updated the wiki today, because my browser just crashed and I lost my array.  The fact that I've been keeping all ''unique'' data on the wiki means I can (mostly) rebuild my arrays and continue from where I left off.
 
*I'm glad I had already updated the wiki today, because my browser just crashed and I lost my array.  The fact that I've been keeping all ''unique'' data on the wiki means I can (mostly) rebuild my arrays and continue from where I left off.
*Import functions implemented, all saved feed data reloaded, script running again. I am no longer monitoring "pick an image"/"pick a caption" overlap, as it was over 95% anyway, and I was only updating this page with the ''unique'' prompt/captions not found in the feed.
 
*Welp, I was being lazy and hadn't updated in a while, and my browser crashed, losing a day's results. Resuming with previously saving data... (Incidentally, the browser crash is unrelated to the script running.)
 
*As can be seen by looking at the changes to the counts as I update each day, there is new content much less often.  Less than 100 new feed entries per day. On average, one every 14 mins. My script checks every 30 seconds, and it has currently been 50 minutes since any new content was found. (As I was typing this, a new feed entry was found, so it was almost exactly 50 minutes.)
 
*For the last several days, no new prompt content has been found, and the only feed content which has been found is content which was previously found in the prompts.  Unfortunately, at the current rate of discovery, it will take until at least September to find feed ids for all known prompt content.
 
  
 
==Feed==
 
==Feed==
Line 71: Line 58:
 
*V4 Added ability to preload content into arrays, including feed_ids
 
*V4 Added ability to preload content into arrays, including feed_ids
 
*V4.1 removed functions to compare "pick an image" and "pick a caption" prompts, merged separate prompt arrays, added functions to compare these to the feed instead.
 
*V4.1 removed functions to compare "pick an image" and "pick a caption" prompts, merged separate prompt arrays, added functions to compare these to the feed instead.
*V4.2 saving new feedids to local storage, added restore() function to reload these.
 
  
 
  <nowiki>xkcd = {
 
  <nowiki>xkcd = {
Line 127: Line 113:
 
$("#ctitle").html((new Date()).toLocaleTimeString()
 
$("#ctitle").html((new Date()).toLocaleTimeString()
 
+"<br>Last found : "+last
 
+"<br>Last found : "+last
+"<br>feed_ids: "+(Object.keys(xkcd.feed_ids).length+1)
+
+"<br>feed_ids: "+Object.keys(xkcd.feed_ids).length
 
+"<br>prompt_captions: "+xkcd.prompt_captions.length
 
+"<br>prompt_captions: "+xkcd.prompt_captions.length
 
+"<br>prompt_images: "+xkcd.prompt_images.length
 
+"<br>prompt_images: "+xkcd.prompt_images.length
Line 141: Line 127:
 
}
 
}
  
function next(recheck) {
+
function next() {
if (!recheck) recheck = "";
+
$.getJSON('http://c0.xkcd.com/xb/feed').done(function (data) {
$.getJSON('http://c0.xkcd.com/xb/feed/'+recheck).done(function (data) {
+
additem("prompt_reasons", data.prompt.reason);
if (typeof data.prompt != "undefined") {
+
additem("prompt_posters", data.prompt.poster);
          additem("prompt_reasons", data.prompt.reason);
 
  additem("prompt_posters", data.prompt.poster);
 
  
  additem("prompt_images", data.prompt.img_id);
+
additem("prompt_images", data.prompt.img_id);
  additem("prompt_captions", data.prompt.text);
+
additem("prompt_captions", data.prompt.text);
  if (typeof data.prompt.album != "undefined")
+
if (typeof data.prompt.album != "undefined")
 
for(i in data.prompt.album)
 
for(i in data.prompt.album)
 
additem("prompt_images", data.prompt.album[i]);
 
additem("prompt_images", data.prompt.album[i]);
  
  if (typeof data.prompt.captions != "undefined")
+
if (typeof data.prompt.captions != "undefined")
 
for(i in data.prompt.captions)
 
for(i in data.prompt.captions)
 
additem("prompt_captions", data.prompt.captions[i]);
 
additem("prompt_captions", data.prompt.captions[i]);
        }
+
 
        if (data.text) data.feed = new Array(data);
 
 
for(i in data.feed) {
 
for(i in data.feed) {
 
additem("feed_posters", data.feed[i].poster);
 
additem("feed_posters", data.feed[i].poster);
Line 176: Line 159:
 
  }
 
  }
 
} else {
 
} else {
tempNew = JSON.parse(localStorage.getItem('NewFeedIDs'));
 
if (tempNew == null) tempNew = new Array();
 
if (tempNew.indexOf(data.feed[i].id) == -1)
 
tempNew.push(data.feed[i].id);
 
localStorage.setItem('NewFeedIDs', JSON.stringify(tempNew));
 
 
updatecounts("feed_id : "+(Object.keys(xkcd.feed_ids).length+1)+" : "+data.feed[i].id);
 
updatecounts("feed_id : "+(Object.keys(xkcd.feed_ids).length+1)+" : "+data.feed[i].id);
 
}
 
}
Line 255: Line 233:
 
       if (temparray.length > 2) temparray.shift();
 
       if (temparray.length > 2) temparray.shift();
 
       mergearrays(xkcd[which], temparray);
 
       mergearrays(xkcd[which], temparray);
      $("#desc").html("Loaded "+temparray.length+" into "+which);
 
 
       temparray = [];
 
       temparray = [];
 
     break;
 
     break;
Line 378: Line 355:
 
}
 
}
  
function restore() {
+
function xkcdout() {
window.tempOld = JSON.parse(localStorage.getItem('NewFeedIDs'));
+
xkcd.oldids = [];
if (window.tempOld == null) window.tempOld = new Array();
+
for(j in xkcd.feed_ids) xkcd.oldids.push({ id:j, img:xkcd.feed_ids[j].img, text:xkcd.feed_ids[j].text });
restoreLoop();
+
 
 +
$("#magic textarea").val("xkcdold = "+JSON.stringify(xkcd));
 +
delete xkcd.oldids;
 
}
 
}
function restoreLoop() {
+
function xkcdin() {
if (window.tempOld.length) {
+
for(i in xkcd) xkcd[i] = xkcdold[i];
next(window.tempOld.pop());
+
for(i in xkcdold.oldids) xkcd.feed_ids[xkcdold.oldids[i].id] = { img: xkcdold.oldids[i].img, text: xkcdold.oldids[i].text }
window.clearTimeout(window.nextTimer);
+
delete xkcd.oldids;
window.nextTimer = setTimeout('restoreLoop()', 5000);
+
delete xkcdold;
}
 
 
}
 
}
 
</nowiki>
 
</nowiki>
Line 407: Line 385:
 
*feed_posters: [205] - None new.
 
*feed_posters: [205] - None new.
  
*feed_table: [2252] (See [[1506:_xkcloud/Table_of_Permalinks]])
+
*feed_id: [24370] (unique: 2107) (See [[1506:_xkcloud/Permalinks]])
*feed_id: [26733] (See [[1506:_xkcloud/List_of_Permalinks]])
 
  
*feed_images: [1528]
+
*feed_images: [1428]
*prompt_images: [1697] (crashed and found again)
+
*prompt_images not found in the feed: [261]
*prompt_images without permalinks: [169]
 
  
*feed_text: [1993]
+
*feed_text: [1876]
*prompt_captions: [2287] (crashed and found again)
+
*prompt_captions not found in the feed: [402]
*prompt_captions without permalinks: [295]
 
 
 
Note: prompt_images and prompt_captions reset when my browser crashes, so it is ''not'' supposed to equal feed+without permalinks. I've re-added them here so I can keep track of daily changes.
 
  
 
===prompt_reasons===
 
===prompt_reasons===
Line 531: Line 504:
 
# YOU MUST CONSTRUCT ADDITIONAL PYLONS
 
# YOU MUST CONSTRUCT ADDITIONAL PYLONS
  
===Captions ===
+
===Captions===
This is the combined list of all captions I have found, in the feed and in prompts.
+
This is the combined list of all 2278 captions I have found, in the feed and in prompts.
  
 
#  (ღ˘⌣˘ღ)
 
#  (ღ˘⌣˘ღ)
Line 564: Line 537:
 
# “Uh, hey, baby.” “Damn we’re smooth.” “We’re gonna score”
 
# “Uh, hey, baby.” “Damn we’re smooth.” “We’re gonna score”
 
# ((╬ಠิ﹏ಠิ))
 
# ((╬ಠิ﹏ಠิ))
# (ღ˘⌣˘ღ)
 
 
# [Metal Gear sound effect]
 
# [Metal Gear sound effect]
 
# [USER BANNED FOR THIS TEXT]
 
# [USER BANNED FOR THIS TEXT]
Line 679: Line 651:
 
# 500 gold for the private show
 
# 500 gold for the private show
 
# 5th of November went too far this year
 
# 5th of November went too far this year
# 7 amazing ways of taking off your pants that will surprise you!
 
 
# 8.5 hours later...
 
# 8.5 hours later...
 
# 9 out of 10 scientists couldn't solve this equation
 
# 9 out of 10 scientists couldn't solve this equation
Line 736: Line 707:
 
# ancient skull loses eye socket in fencing accident
 
# ancient skull loses eye socket in fencing accident
 
# and a bluetooth made of pretzel sticks
 
# and a bluetooth made of pretzel sticks
# And so it began...
 
 
# And so the hunt begins!
 
# And so the hunt begins!
 
# and suddenly, popcorn
 
# and suddenly, popcorn
Line 858: Line 828:
 
# bowTieght!
 
# bowTieght!
 
# Boy, I tell you what. I bet the roads on the moon ain't this smooth.  
 
# Boy, I tell you what. I bet the roads on the moon ain't this smooth.  
# Brb, burning house down
 
 
# breakfast in 'merica
 
# breakfast in 'merica
 
# Breaking: World in terror as alien from "Blue (Da Ba Dee)" video lands on Earth, announces world tour
 
# Breaking: World in terror as alien from "Blue (Da Ba Dee)" video lands on Earth, announces world tour
Line 1,146: Line 1,115:
 
# Get that camera out of my face!
 
# Get that camera out of my face!
 
# get your ass to mars
 
# get your ass to mars
# Giant sentient banana found in space
 
 
# go home chitty chitty bang bang you are drunk
 
# go home chitty chitty bang bang you are drunk
 
# Go home Dumbledore. You're Drunk
 
# Go home Dumbledore. You're Drunk
Line 1,251: Line 1,219:
 
# Hoping this makes it past customs
 
# Hoping this makes it past customs
 
# horses can't use chalk. stupid horse.
 
# horses can't use chalk. stupid horse.
 +
# H̪̬͚̲̥̠̗̻̿ͦͧ̂͟E͚̞͋͛ ͕͇̦̻͓̻̳́ͫ͌̆͌̽C̢̊ͯ͏̵̣͈̣̯̯͔O͚̲͓͎̟̳̱͐̊̈̽ͪ̓ͪ͞M͖͔̗̮̎̈́͑̏͡È̸̝̹̲̍ͦͤͦ̋̎̀͞ͅS̢̫̮͙̟̭̀̿͜
 
# H̪̬͚̲̥̠̗̻̿ͦͧ̂͟E͚̞͋͛ ͕͇̦̻͓̻̳́ͫ͌̆͌̽C̢̊ͯ͏̵̣͈̣̯̯͔O͚̲͓͎̟̳̱͐̊̈̽ͪ̓ͪ͞M͖͔̗̮̎̈́͑̏͡È̸̝̹̲̍ͦͤͦ̋̎̀͞ͅS̢̫̮͙̟̭̀̿͜
 
# H̪̬͚̲̥̠̗̻̿ͦͧ̂͟E͚̞͋͛ ͕͇̦̻͓̻̳́ͫ͌̆͌̽C̢̊ͯ͏̵̣͈̣̯̯͔O͚̲͓͎̟̳̱͐̊̈̽ͪ̓ͪ͞M͖͔̗̮̎̈́͑̏͡È̸̝̹̲̍ͦͤͦ̋̎̀͞ͅS̢̫̮͙̟̭̀̿͜
 
# Houston, we are the problem
 
# Houston, we are the problem
Line 1,263: Line 1,232:
 
# how do you get the screensaver off?
 
# how do you get the screensaver off?
 
# How does this work again?
 
# How does this work again?
# How Else dID you think they make Toothpicks?
 
 
# How is this still a thing?
 
# How is this still a thing?
 
# How many can there be?
 
# How many can there be?
Line 1,337: Line 1,305:
 
# I found a three fingered kitten!
 
# I found a three fingered kitten!
 
# I found it!!!!!!!
 
# I found it!!!!!!!
# I found the missing pieces!
 
 
# i found this ancient manuscript. can anyone translate it?
 
# i found this ancient manuscript. can anyone translate it?
 
# I found this in my navel, should I be worried?
 
# I found this in my navel, should I be worried?
Line 1,513: Line 1,480:
 
# I've got a tombstone disposition and a graveyard mind.
 
# I've got a tombstone disposition and a graveyard mind.
 
# i've got hurt feelings  
 
# i've got hurt feelings  
 +
# I've made a huge mistake
 
# i've made a huge mistake
 
# i've made a huge mistake
# I've made a huge mistake
 
 
# I've never been so aware of my own hunger
 
# I've never been so aware of my own hunger
 
# i've never felt so alone.
 
# i've never felt so alone.
Line 1,616: Line 1,583:
 
# it's pretty dark in this box
 
# it's pretty dark in this box
 
# It's smaller on the outside
 
# It's smaller on the outside
# It's the great pumpkin, Charlie Brown!
 
 
# It's the little things
 
# It's the little things
 
# it's the minecraft world
 
# it's the minecraft world
Line 1,699: Line 1,665:
 
# Look guys! I'm Vincent Van Gogh!  
 
# Look guys! I'm Vincent Van Gogh!  
 
# Look I genehacked a cowhorse!
 
# Look I genehacked a cowhorse!
# look into my eyes, look deep into my eyes.
 
 
# look ma, no hands!
 
# look ma, no hands!
 
# Look man, it's never gonna happen
 
# Look man, it's never gonna happen
Line 1,948: Line 1,913:
 
# OH GOD HOW DO I COMPUTER?!?!?!!
 
# OH GOD HOW DO I COMPUTER?!?!?!!
 
# Oh god is it still following me?
 
# Oh god is it still following me?
# OH GOD SPIDERS
 
 
# OH GOD WHAT HAVE I DONE
 
# OH GOD WHAT HAVE I DONE
 
# OH GOD WHAT HAVE I DONE?!
 
# OH GOD WHAT HAVE I DONE?!
Line 1,962: Line 1,926:
 
# Oh no, it's the moon
 
# Oh no, it's the moon
 
# Oh No! Not again!
 
# Oh No! Not again!
 +
# Oh no! Not Again.
 
# Oh no! Not again.
 
# Oh no! Not again.
# Oh no! Not Again.
 
 
# Oh shit, not again.
 
# Oh shit, not again.
 
# Oh, Canada...
 
# Oh, Canada...
Line 2,378: Line 2,342:
 
# the rest is darkness and decay
 
# the rest is darkness and decay
 
# The Return to the escape from Skull Emerald Island IV: The Re-Escapening
 
# The Return to the escape from Skull Emerald Island IV: The Re-Escapening
# The ritual has begun.
 
 
# The rook is getting closer. Help me.
 
# The rook is getting closer. Help me.
 
# the saddest moment of my childhood
 
# the saddest moment of my childhood
Line 2,713: Line 2,676:
 
# When you get a perfect score on your test
 
# When you get a perfect score on your test
 
# when you give a chicken hgh, weird things happen.
 
# when you give a chicken hgh, weird things happen.
 +
# When you see it...
 
# when you see it...
 
# when you see it...
# When you see it...
 
 
# Where are the three sea shells?  
 
# Where are the three sea shells?  
 
# Where did THAT come from?
 
# Where did THAT come from?
Line 2,823: Line 2,786:
 
# 突っ込むところもねい!
 
# 突っ込むところもねい!
  
===Captions without permalinks ===
+
===Captions without permalinks===
 
Some of these captions were found in the feed text before I started recording permalinks, others have been found in the prompt.
 
Some of these captions were found in the feed text before I started recording permalinks, others have been found in the prompt.
  
 
It is my expectation that these will eventually be found again, associated with permalinks.  Saving here temporarily.
 
It is my expectation that these will eventually be found again, associated with permalinks.  Saving here temporarily.
 
  
 
#  (ღ˘⌣˘ღ)
 
#  (ღ˘⌣˘ღ)
 
# ...just no.
 
# ...just no.
 +
# ...monsters from the id...
 +
# 'Murica, hell yeah!
 
# "AS the ancient Israelites broke Mana, we shall break frosted pastries"
 
# "AS the ancient Israelites broke Mana, we shall break frosted pastries"
 
# "Cat-like Reflexes"
 
# "Cat-like Reflexes"
 
# "I Never watch porn"
 
# "I Never watch porn"
# (ღ˘⌣˘ღ)
+
# "Oh Sword-chan" "Yes Gun-Kun?"
 
# *glomp*
 
# *glomp*
 
# #beatingheartinabox
 
# #beatingheartinabox
 +
# #Canadian internet #price gouging
 
# #drbalanced
 
# #drbalanced
 
# #essentialsupplies
 
# #essentialsupplies
Line 2,848: Line 2,813:
 
# #underkill
 
# #underkill
 
# <reported for inappropriate content>
 
# <reported for inappropriate content>
 +
# ▒☺▒
 
# 100% legit free hugs
 
# 100% legit free hugs
 
# 15 Mindblowing facts that prove jaws was real
 
# 15 Mindblowing facts that prove jaws was real
 
# 500 gold for the private show
 
# 500 gold for the private show
# 7 amazing ways of taking off your pants that will surprise you!
+
# A delicate pear
 
# A kid peed in the ball pit, I took action
 
# A kid peed in the ball pit, I took action
 
# A land war in asia
 
# A land war in asia
 
# Aaaaaaaaaah
 
# Aaaaaaaaaah
 +
# Aesthetic.
 
# All these science spheres are made out of asbestos, by the way. Keeps out the rats. Let us know if you feel a shortness of breath, a persistent dry cough, or your heart stopping. Because that's not part of the test. That's asbestos.
 
# All these science spheres are made out of asbestos, by the way. Keeps out the rats. Let us know if you feel a shortness of breath, a persistent dry cough, or your heart stopping. Because that's not part of the test. That's asbestos.
 +
# All these science spheres are made out of asbestos, by the way. Keeps out the rats. Let us know if you feel a shortness of breath, a persistent dry cough, or your heart stopping. Because that's not part of the test. That's asbestos.
 
# always darekst before the dawn
 
# always darekst before the dawn
 
# Amazing! Discovery! on mars!
 
# Amazing! Discovery! on mars!
# And so it began...
+
# and a bluetooth made of pretzel sticks
 
# and that is the story of the very angry caterpillar
 
# and that is the story of the very angry caterpillar
 
# And then, you lightly drill the oven for 15 minutes on high
 
# And then, you lightly drill the oven for 15 minutes on high
Line 2,866: Line 2,834:
 
# Ants close in on the tender eye-flesh
 
# Ants close in on the tender eye-flesh
 
# astonishing how xenia flew that plane
 
# astonishing how xenia flew that plane
 +
# at last, validation
 
# At least it stopped bleeding acid
 
# At least it stopped bleeding acid
 +
# At that moment, something snapped.
 +
# Attracted to black holes, HELP!
 
# Aw, man, I hate gelatinous cubes...
 
# Aw, man, I hate gelatinous cubes...
 
# awkward! . . .
 
# awkward! . . .
 
# best easter ever
 
# best easter ever
 +
# best snowman ever!
 
# big black orb #shit #soyuzfail
 
# big black orb #shit #soyuzfail
 +
# Bird seed companies HATE him
 
# bob ross has only become more powerful in death
 
# bob ross has only become more powerful in death
# Brb, burning house down
+
# Bonehenge
 +
# breakfast in 'merica
 +
# Brittish think tank
 
# BUT WHERE DOES THE BLOOD GO?
 
# BUT WHERE DOES THE BLOOD GO?
 
# Cant sleep, clowns will kill me. Cant sleep, clowns will ...
 
# Cant sleep, clowns will kill me. Cant sleep, clowns will ...
 +
# captcha: Enter picture description
 
# Catman
 
# Catman
 
# CERN proves existence of "the force"
 
# CERN proves existence of "the force"
Line 2,886: Line 2,862:
 
# cuteness depleted after 20 pictures!! #ripoff
 
# cuteness depleted after 20 pictures!! #ripoff
 
# damnit, another drunken tree in the road
 
# damnit, another drunken tree in the road
 +
# Danger: low clearance
 
# Dawn of the Bread
 
# Dawn of the Bread
 
# Dawn of the last day: 24 hours remain.
 
# Dawn of the last day: 24 hours remain.
Line 2,891: Line 2,868:
 
# Day:38 Bird Disguise works, No one knows I am a Worm
 
# Day:38 Bird Disguise works, No one knows I am a Worm
 
# Did i remember to lock the car?
 
# Did i remember to lock the car?
# Does my hair look like it's thinning?
+
# Dispatch, I'm not Really Sure we have a Violation Number for this one
 +
# Do the Harlem Shake
 +
# do you reckon i can feed this to my pet spider?
 +
# Doctor whheeeeeeeeee
 +
# does anyone know how to get rid of eye worms?
 +
# Does my hair look like it's thinning?
 
# Does this look infected?
 
# Does this look infected?
 
# Doing Laundry on the TARDIS is hard. It's why companions wear the same clothes.
 
# Doing Laundry on the TARDIS is hard. It's why companions wear the same clothes.
Line 2,905: Line 2,887:
 
# FACESWAP  lol
 
# FACESWAP  lol
 
# First day at school
 
# First day at school
 +
# Fish hooks REALLY REALLY HURT
 
# fond this creepy ass painting in my basement. how much do you guys think it's worth ?
 
# fond this creepy ass painting in my basement. how much do you guys think it's worth ?
 
# Forgot to blow out my candles before I cut the cake
 
# Forgot to blow out my candles before I cut the cake
 +
# found this at a novelty store
 
# fourier transforms are too hard!!
 
# fourier transforms are too hard!!
 
# free the beast!
 
# free the beast!
 +
# Freedom in a nutshell.
 
# Gentlemen, fire up your emacs buffers
 
# Gentlemen, fire up your emacs buffers
 
# Gentlemen, WITH OUR ENHANCED surveillance WE NOW KNOW WHAT THE ENEMY IS DOING, BUT WE STILL DON'T KNOW WHY?
 
# Gentlemen, WITH OUR ENHANCED surveillance WE NOW KNOW WHAT THE ENEMY IS DOING, BUT WE STILL DON'T KNOW WHY?
 +
# Gentlemen.  If you find it you are set for life.
 
# George insisted there were better things to worry about, but I had a feeling this was important.
 
# George insisted there were better things to worry about, but I had a feeling this was important.
 
# get spare glasses before meeting rod serling
 
# get spare glasses before meeting rod serling
# Giant sentient banana found in space
 
 
# God i love sesame street
 
# God i love sesame street
 
# God Save The Queen
 
# God Save The Queen
 
# good old troubleshootin'
 
# good old troubleshootin'
 
# got Peanut allergies #yolo #swag
 
# got Peanut allergies #yolo #swag
 +
# got to meet with charlie sheen
 
# gotta take big ben down a peg
 
# gotta take big ben down a peg
 +
# Gravedigging time
 
# Guys, I Found a Unicorn!
 
# Guys, I Found a Unicorn!
 +
# Guys, this picture is awful
 
# haha! i am dead inside!
 
# haha! i am dead inside!
 
# has anyone seen my force field generator?
 
# has anyone seen my force field generator?
Line 2,928: Line 2,916:
 
# hello you're on car talk
 
# hello you're on car talk
 
# help being attacked by wormsaaaaaagghh
 
# help being attacked by wormsaaaaaagghh
 +
# Help! HELP! I need an adult
 
# Heres a pic of a wild catus, who just saw a balloon
 
# Heres a pic of a wild catus, who just saw a balloon
 
# Hey there cutie
 
# Hey there cutie
Line 2,936: Line 2,925:
 
# His name is robert palmer.
 
# His name is robert palmer.
 
# Honest, officer, that's what happened!
 
# Honest, officer, that's what happened!
 +
# H̪̬͚̲̥̠̗̻̿ͦͧ̂͟E͚̞͋͛ ͕͇̦̻͓̻̳́ͫ͌̆͌̽C̢̊ͯ͏̵̣͈̣̯̯͔O͚̲͓͎̟̳̱͐̊̈̽ͪ̓ͪ͞M͖͔̗̮̎̈́͑̏͡È̸̝̹̲̍ͦͤͦ̋̎̀͞ͅS̢̫̮͙̟̭̀̿͜
 +
# H̪̬͚̲̥̠̗̻̿ͦͧ̂͟E͚̞͋͛ ͕͇̦̻͓̻̳́ͫ͌̆͌̽C̢̊ͯ͏̵̣͈̣̯̯͔O͚̲͓͎̟̳̱͐̊̈̽ͪ̓ͪ͞M͖͔̗̮̎̈́͑̏͡È̸̝̹̲̍ͦͤͦ̋̎̀͞ͅS̢̫̮͙̟̭̀̿͜
 
# how do i resize the city?
 
# how do i resize the city?
 
# Hunka Hunka burnin' steel
 
# Hunka Hunka burnin' steel
Line 2,943: Line 2,934:
 
# I can control the BEES! But I only make them turn right
 
# I can control the BEES! But I only make them turn right
 
# I Don't believe in primordial black holes... I don't believe in primordial black holes...
 
# I Don't believe in primordial black holes... I don't believe in primordial black holes...
 +
# i don't even remember taking this pic!
 
# i don't have time for this!
 
# i don't have time for this!
# I found the missing pieces!
+
# I don't see how sniffing this globe will help my complexion, but I'll try anything at this point.
 +
# i donna think it means what you think it means
 +
# I fixed it guys
 +
# i found this ancient manuscript. can anyone translate it?
 +
# I found this on my arm when I woke up this morning. Can anyone tell me what it is?!
 
# I got the keys to the city.
 
# I got the keys to the city.
 
# i hate
 
# i hate
 +
# i hate you.  die in a fire.
 +
# I hear someone yelling at me... i have no idea why
 +
# I immediately regret eating that
 
# I knew it wasn't cheese after the first bite, but i didn't want to be rude to God. He worked so hard on it.
 
# I knew it wasn't cheese after the first bite, but i didn't want to be rude to God. He worked so hard on it.
 
# i love my family
 
# i love my family
 +
# I never get a space ship, I never get anything!
 
# i refuse to regret this decision
 
# i refuse to regret this decision
 
# I think I have too many swords
 
# I think I have too many swords
Line 2,954: Line 2,954:
 
# i thought maybe if I uninstalled flash...
 
# i thought maybe if I uninstalled flash...
 
# I was an adventurer like you, but then i took an arrow to the knee
 
# I was an adventurer like you, but then i took an arrow to the knee
 +
# I was going to eat it, but then I found Out It had Gluten
 
# I was making a mind map but I fell off the edge...
 
# I was making a mind map but I fell off the edge...
 
# i was told this came with a bowl of soup.
 
# i was told this came with a bowl of soup.
Line 2,959: Line 2,960:
 
# I wish this was fake...
 
# I wish this was fake...
 
# I woke up sleeping next to this. #yolo
 
# I woke up sleeping next to this. #yolo
 +
# I'll never fit in!
 
# i'M 12 AND WHAT IS THIS?
 
# i'M 12 AND WHAT IS THIS?
 +
# I'm a bird lol
 
# i'm being ironic
 
# i'm being ironic
 
# i'm really diggin' your shovel
 
# i'm really diggin' your shovel
 +
# i'm so funny and original
 
# i've got hurt feelings  
 
# i've got hurt feelings  
 
# I've never felt so empty before
 
# I've never felt so empty before
 +
# if democracy fails you can count on stalin!
 
# if only i had friends...
 
# if only i had friends...
 
# If you've got a moustache...
 
# If you've got a moustache...
Line 2,980: Line 2,985:
 
# Jet fuel *can* melt steal beams.
 
# Jet fuel *can* melt steal beams.
 
# Joining the illuminati was the best decision EVER!
 
# Joining the illuminati was the best decision EVER!
 +
# Just another standard morning coffee
 +
# Just not myself today.
 +
# keep on truckin...
 
# Khan!
 
# Khan!
 
# ladies
 
# ladies
 
# lemme at dem boigas!!!
 
# lemme at dem boigas!!!
 +
# Lemons don't smell like cheese when you burn them.
 +
# Life is a matter of perspective, really.
 
# Life on the moon.
 
# Life on the moon.
 
# Like a G6, baby, like a g6
 
# Like a G6, baby, like a g6
 
# Likes grains of sand in an hourglass...
 
# Likes grains of sand in an hourglass...
 
# linux compatible toaster at last!
 
# linux compatible toaster at last!
 +
# Look man, it's never gonna happen
 
# Lost in Space...
 
# Lost in Space...
 
# lost my comb again... gonna have to go to work looking like a sexy hobo instead of a sexy businessman
 
# lost my comb again... gonna have to go to work looking like a sexy hobo instead of a sexy businessman
 +
# lost, no gps. does anyone recognize this landmark?
 +
# Luuunch-Tiiiiiime
 
# Malkovich Malkovich Malkovich
 
# Malkovich Malkovich Malkovich
 +
# man it's hot today
 
# Massive orgy reaches climax
 
# Massive orgy reaches climax
 
# Maybe this counts as clean energy
 
# Maybe this counts as clean energy
 +
# Meet fluffy, just showed up at my door one night
 
# Meow what seems to be the problem?
 
# Meow what seems to be the problem?
 
# Mmm... Vegemite
 
# Mmm... Vegemite
Line 2,999: Line 3,014:
 
# My boss said to use my head to find a lighter alloy for our product. I think I did something wrong.
 
# My boss said to use my head to find a lighter alloy for our product. I think I did something wrong.
 
# my castles stand on pillars of sand
 
# my castles stand on pillars of sand
 +
# my edvard munch housen syndrome is acting up
 
# my euler circuit is alive!
 
# my euler circuit is alive!
 
# My girlfriend thinks I need to shave my beard.  Thoughts?
 
# My girlfriend thinks I need to shave my beard.  Thoughts?
 
# My God do I hate being right all the time
 
# My God do I hate being right all the time
 
# my new app for power outages - may need to rethink this.
 
# my new app for power outages - may need to rethink this.
 +
# My roomba is slower than normal
 +
# My roommate ordered pizza - I didn't save him any.
 
# My trip to Europe #selfie
 
# My trip to Europe #selfie
 
# Never divide by zero
 
# Never divide by zero
 
# new drupal logo
 
# new drupal logo
 +
# new member of the family
 
# New microwave over cures/causes cancer!
 
# New microwave over cures/causes cancer!
 
# new president misuses "literal", becomes a duck
 
# new president misuses "literal", becomes a duck
 
# No good deed goes unpunished
 
# No good deed goes unpunished
 
# Nom nom nom
 
# Nom nom nom
 +
# Northrop Grumman has released the world's first Macrowave Oven. Enclosed in this prototype is the entire nation of iran.
 
# Not all dreams can come true
 
# Not all dreams can come true
 
# Not even once
 
# Not even once
 
# Not even once...
 
# Not even once...
 +
# not sure whether or not to tip him
 +
# Note 2: Use a frozen potato
 
# Nothing to see here.
 
# Nothing to see here.
 +
# Now that I am an adult I can decide what that means.
 
# Now where did i leave my ocarina. . .
 
# Now where did i leave my ocarina. . .
# OH GOD SPIDERS
+
# Officer, You could arrest me, but just this once, let's Just Hug it Out.
 
# oh, god, why?
 
# oh, god, why?
 +
# Ok, playing soccer in a snowstorm MIGHT not be the best idea ever
 +
# On what planet is this an acceptable shade tree? #Goaway
 +
# Only way to be sure #nukefromorbit
 
# Open wide!
 
# Open wide!
 
# ouch!
 
# ouch!
 +
# Pac-man's missing piece
 
# peacekeeping mission is a total success
 
# peacekeeping mission is a total success
 
# photobombed again
 
# photobombed again
 +
# Picked this up at the thrift shop
 
# Please. Save yourself.
 
# Please. Save yourself.
 
# Prius Love
 
# Prius Love
Line 3,026: Line 3,054:
 
# pronounced duh-jango
 
# pronounced duh-jango
 
# Proof that dinosaurs and humans coexisted
 
# Proof that dinosaurs and humans coexisted
 +
# proof that we didn't actually land on the moon. Americans are sheep
 
# QWANTZ Fanfic
 
# QWANTZ Fanfic
 
# Rabbits are vicious creatures when their data are stolen
 
# Rabbits are vicious creatures when their data are stolen
Line 3,037: Line 3,066:
 
# Rocket pseudo-science!
 
# Rocket pseudo-science!
 
# rodeo!!
 
# rodeo!!
 +
# rofl
 
# Roll of toilet paper reacts to US Deficit
 
# Roll of toilet paper reacts to US Deficit
 
# Saw this outside last night. Is it dangerous?
 
# Saw this outside last night. Is it dangerous?
 
# Sheena, who dis
 
# Sheena, who dis
 +
# Ships that pass in the night, and speak each other in passing
 +
# SINgle mom discovers incredible way to overthrow capitalism. you won't believe it!
 +
# Skydiving #photobomb #shark #AAAAAAAAAAAAAAAAAAA
 
# slippin' into the future
 
# slippin' into the future
 
# smile for the camera!
 
# smile for the camera!
Line 3,045: Line 3,078:
 
# So it's true, then.  
 
# So it's true, then.  
 
# So long, and thanks for the fistbumps
 
# So long, and thanks for the fistbumps
 +
# so much for your "Democracy"
 
# So that happened
 
# So that happened
 
# So this happened.
 
# So this happened.
 +
# So... the other day, I was minding my own business...you'll never guess what happened next!
 
# solve all your problems with hemlock
 
# solve all your problems with hemlock
 
# Somebody sneezed in the Bathtub
 
# Somebody sneezed in the Bathtub
 
# Somehow the welcome mat ended up inside the house.
 
# Somehow the welcome mat ended up inside the house.
 +
# someone take this banana off my face
 
# steel beams taste best with a dallop of gasoline
 
# steel beams taste best with a dallop of gasoline
 +
# Still no martians
 +
# Stop! Hammer time!
 +
# straight out of the hacker's jargon file!
 
# Strangely, my patients don't like this new couch.
 
# Strangely, my patients don't like this new couch.
 +
# Stupid Bird!
 +
# Sunrise over the La brea tar pits! #majestic
 
# Support my kick-starter! A whole new devise with bluetooth and a button!
 
# Support my kick-starter! A whole new devise with bluetooth and a button!
 
# Sweet, they new red shirts are on sale again!
 
# Sweet, they new red shirts are on sale again!
 +
# Take my money!
 
# Ted Cruz imagines himself like this and things it's normal.
 
# Ted Cruz imagines himself like this and things it's normal.
 
# Testing my new high-contrast filter outside the unicyclist meet up
 
# Testing my new high-contrast filter outside the unicyclist meet up
 
# That's the princess I want to save
 
# That's the princess I want to save
 +
# thats what she said
 +
# The answer is blowing in the wind...
 +
# THE BEES!!!!!
 
# the best stars are sky stars!
 
# the best stars are sky stars!
 
# The castle was in you, all along!
 
# The castle was in you, all along!
 +
# The Earth is a very small stage in a vast cosmic arena. Think of the rivers of blood spilled by all those generals and emperors so that in glory and triumph they could become the momentary masters of a fraction of a dot.
 
# The gang destroyed the context
 
# The gang destroyed the context
 +
# The hills are alive!
 
# The little prince is full of siht
 
# The little prince is full of siht
 
# The machine was supposed to show the future, but it never turned on. I was horrified to realize this wasn't because it was broken.
 
# The machine was supposed to show the future, but it never turned on. I was horrified to realize this wasn't because it was broken.
 +
# The man leaned in close, and that was when she discovered he had clockwork eyes!
 +
# The Mitochondria is the powerhouse of the cell
 
# The most diabolical teamup in history
 
# The most diabolical teamup in history
 
# The new Doctor Who is quite the quack.
 
# The new Doctor Who is quite the quack.
 
# the oceans are made of sky tears
 
# the oceans are made of sky tears
 +
# The one true way
 
# the prophecy was true !
 
# the prophecy was true !
# The ritual has begun.
+
# The world isn't Flat, it's Sharp
 
# the zoidberg axis
 
# the zoidberg axis
 +
# There is a whole other world in my navel
 
# There is no way you can back up that claim. And that's okay.
 
# There is no way you can back up that claim. And that's okay.
 
# There's no more time!
 
# There's no more time!
Line 3,073: Line 3,124:
 
# these pretzels are making me thirsty.
 
# these pretzels are making me thirsty.
 
# They can see me!  
 
# They can see me!  
 +
# they had no idea the damage they had done
 
# They're watching us.
 
# They're watching us.
 
# this guy can't believe what i'm doing.
 
# this guy can't believe what i'm doing.
 +
# this is for all you haters who said i'd never make it as a conductor.
 
# THIS IS FOR KIBO!
 
# THIS IS FOR KIBO!
 +
# tHis is not what i was looking for
 +
# This is the last hetero-normative domino Game i plan to attend
 
# this is the last time i go skiing @mammoth
 
# this is the last time i go skiing @mammoth
 
# This is the second worst day of my life.
 
# This is the second worst day of my life.
Line 3,082: Line 3,137:
 
# This is why I don't order take-out
 
# This is why I don't order take-out
 
# This one weird object blocks out the light!
 
# This one weird object blocks out the light!
 +
# This song describes me perfectly
 
# This wasn't a problem back in the usenet days
 
# This wasn't a problem back in the usenet days
 
# This would be a great Emoji
 
# This would be a great Emoji
 +
# Thorax Cluster
 
# Those Eyes! @_@
 
# Those Eyes! @_@
 
# Ticks, it's what's for breakfast.
 
# Ticks, it's what's for breakfast.
 +
# Time time time time
 
# Time to end the trial run, this was a failure. abort!
 
# Time to end the trial run, this was a failure. abort!
 
# To avoid going bankrupt, Polaroid activates its subliminal message feature on old photographs to try to get more buyers,
 
# To avoid going bankrupt, Polaroid activates its subliminal message feature on old photographs to try to get more buyers,
Line 3,091: Line 3,149:
 
# Too many in line. I'll come back later.
 
# Too many in line. I'll come back later.
 
# Too many potatoes, not enough butter
 
# Too many potatoes, not enough butter
 +
# transformers, electrical devices that transfer energy between two or more circuits through electromagnetic induction
 
# Two days on this new diet. How do I look?
 
# Two days on this new diet. How do I look?
 
# Ugh, I hate how people take pictures instead of just enjoying the view.
 
# Ugh, I hate how people take pictures instead of just enjoying the view.
Line 3,096: Line 3,155:
 
# unsubscribe
 
# unsubscribe
 
# vinyls were always better!
 
# vinyls were always better!
 +
# visual from Most important meeting today
 
# Wake up sheeple!!!!!!!1
 
# Wake up sheeple!!!!!!!1
 +
# Walrus!
 
# We look into each other's  eyes as we drive. it's to show our love.
 
# We look into each other's  eyes as we drive. it's to show our love.
 
# we need to keep our sex life fresh
 
# we need to keep our sex life fresh
Line 3,102: Line 3,163:
 
# Well, here's a real cock-up.
 
# Well, here's a real cock-up.
 
# well, the keys are definitely lost....
 
# well, the keys are definitely lost....
 +
# Welp, there's your problem
 
# what are you complaining about?  three legs are inherently stable!
 
# what are you complaining about?  three legs are inherently stable!
 
# What do we really know about the dark side of the moon?
 
# What do we really know about the dark side of the moon?
 
# What do you mean, don't talk about fight club?  That's just stupid.
 
# What do you mean, don't talk about fight club?  That's just stupid.
 +
# what has begun cannot be undone. God and devil alike has forsaken us.
 
# what is in the box?  Only pain.
 
# what is in the box?  Only pain.
 
# what the sun looks like!
 
# what the sun looks like!
 
# when did i put on a bow tie???
 
# when did i put on a bow tie???
 +
# When he keeps trying to talk to you...
 
# When I grow up I am *so* getting out of here
 
# When I grow up I am *so* getting out of here
 
# when they said samurai robot i thought they meant something else!
 
# when they said samurai robot i thought they meant something else!
Line 3,113: Line 3,177:
 
# who ate half my cookie?
 
# who ate half my cookie?
 
# Who dropped this? This is no way to run a student council!!
 
# Who dropped this? This is no way to run a student council!!
 +
# Who is the latest person to be offended by "duck Dynasty"
 +
# Who needs the Chunnel?
 +
# Who wants an omelette?
 +
# Who's that Pokémon?
 
# Why can't I eat all this chicken?
 
# Why can't I eat all this chicken?
 
# Why did the cypress cross the road?
 
# Why did the cypress cross the road?
Line 3,118: Line 3,186:
 
# Words, words, words
 
# Words, words, words
 
# Worlds saddest bomber drops worlds happiest payload
 
# Worlds saddest bomber drops worlds happiest payload
 +
# Worst roomMate Ever
 
# Yay, worms!
 
# Yay, worms!
 
# Yesterday was not good
 
# Yesterday was not good
Line 3,125: Line 3,194:
 
# ඏ
 
# ඏ
  
===Images without permalinks ===
+
===Images without permalinks===
 
Images in the prompt which have not been found in the feed
 
Images in the prompt which have not been found in the feed
  
 
# 00154572-02e2-5e63-a3e4-bde3ab4b1934
 
# 00154572-02e2-5e63-a3e4-bde3ab4b1934
 
# 046bc891-392e-58ac-880d-d202b3810bdd
 
# 046bc891-392e-58ac-880d-d202b3810bdd
 +
# 04a3c76d-3b34-53e7-bc15-b2986ed8bc68
 +
# 054b21bd-e1df-510f-909a-c4752ceae387
 +
# 06e5dfa0-ace5-5d54-8fe3-14053e865b0a
 +
# 07ce4694-dd81-5412-bb7b-4b18d3d276c6
 
# 08584d88-4186-5ea6-bc49-5f1f796d37de
 
# 08584d88-4186-5ea6-bc49-5f1f796d37de
# 08757175-c59e-52a6-9fc9-9c72e473ceba
+
# 09bc00c3-cd5c-581c-8576-51bc9c2d18f8
# 0b148e1f-e4bc-5100-92fc-5ec84c20eecc
 
 
# 0d3b2461-d927-5d99-969a-c6a52d071461
 
# 0d3b2461-d927-5d99-969a-c6a52d071461
 +
# 0d940fd9-aa0f-55dd-9303-ea70881bd416
 
# 0ecdc175-34e2-563f-a290-33c0f5549420
 
# 0ecdc175-34e2-563f-a290-33c0f5549420
 
# 0ef43321-8a3f-5afb-912e-d4439a64f8a1
 
# 0ef43321-8a3f-5afb-912e-d4439a64f8a1
 +
# 0f467766-e76c-577a-a684-b92aeeeed247
 
# 102a8fef-0b03-51c9-8ace-0017f18ed7d1
 
# 102a8fef-0b03-51c9-8ace-0017f18ed7d1
 +
# 1133ba55-d13d-549c-8178-ac459ea06674
 +
# 1191e8c5-ab1c-5068-9f08-c9202b124ccf
 
# 135ec01b-fa2c-5eb6-9354-87c4c3e12f63
 
# 135ec01b-fa2c-5eb6-9354-87c4c3e12f63
 +
# 139ece97-e1f5-569e-96bb-2b2caabfe097
 
# 172832dd-7c7c-5640-aefa-3e0d142ea1c8
 
# 172832dd-7c7c-5640-aefa-3e0d142ea1c8
 +
# 1770e9b4-15cd-5f11-b9f3-77e3f2fbd5ad
 
# 17ae1505-dc66-5fa6-b6fc-76e2e571dcca
 
# 17ae1505-dc66-5fa6-b6fc-76e2e571dcca
 +
# 1978eb6c-d503-5be1-b5f7-14b3597bc0b4
 
# 1def8ba2-ed1f-5049-a814-ce84cd7a9f7b
 
# 1def8ba2-ed1f-5049-a814-ce84cd7a9f7b
 +
# 1e078b88-0722-5e0e-a965-3f4cb185b4aa
 
# 1f420516-0eda-50f0-80db-d675525278e9
 
# 1f420516-0eda-50f0-80db-d675525278e9
 +
# 1fa4a82b-a924-51af-ac9b-8b6278674dd8
 
# 209a35ed-6e02-544b-952b-d4d0615d8c3c
 
# 209a35ed-6e02-544b-952b-d4d0615d8c3c
 
# 2133fa57-71c7-52ad-93be-adebb04251a9
 
# 2133fa57-71c7-52ad-93be-adebb04251a9
 
# 2158ef67-cc5c-52aa-b437-87ad938d5430
 
# 2158ef67-cc5c-52aa-b437-87ad938d5430
 +
# 21acf461-4c21-5ed1-be15-42c543846428
 +
# 226cb5b8-a50a-581e-8c84-22ca9362bda8
 
# 23000a39-d407-5fd7-9956-3d90a0bc283c
 
# 23000a39-d407-5fd7-9956-3d90a0bc283c
 
# 23029be0-b127-5777-912f-664613740e58
 
# 23029be0-b127-5777-912f-664613740e58
 
# 230e82f1-3a97-5657-93b4-a1538237a7bd
 
# 230e82f1-3a97-5657-93b4-a1538237a7bd
 +
# 23b2a7c8-9072-5298-bd80-e45ce7bb2e95
 
# 25da16d6-e6a6-52a5-8507-91f2e4e68875
 
# 25da16d6-e6a6-52a5-8507-91f2e4e68875
 +
# 26d636f3-99a8-5599-b359-3630e827d3b0
 +
# 271a81e4-69fb-5835-b1b2-f76a9c1c18a3
 
# 27773d87-9fc1-5fa3-945d-8602b334d630
 
# 27773d87-9fc1-5fa3-945d-8602b334d630
 +
# 28471b6f-ac36-51e2-8ecd-2a1f33aed846
 
# 2904fcef-5c88-58e6-b651-c8db16da8b4e
 
# 2904fcef-5c88-58e6-b651-c8db16da8b4e
 
# 29a80edb-16d6-5da1-9d7c-34f80c7826d8
 
# 29a80edb-16d6-5da1-9d7c-34f80c7826d8
 +
# 2a783fdb-c227-5c7c-8421-4f7177764f53
 
# 2aad5103-42b4-5836-a997-9c5d41ef18d0
 
# 2aad5103-42b4-5836-a997-9c5d41ef18d0
 
# 2ca667ea-3e06-5b04-ae11-c2e81ed10333
 
# 2ca667ea-3e06-5b04-ae11-c2e81ed10333
 +
# 2ccd91a0-b4f9-5b54-972f-233c927fcb31
 
# 2cd3e0f7-2009-52d2-b526-d34fb21723fe
 
# 2cd3e0f7-2009-52d2-b526-d34fb21723fe
 +
# 31112eab-0e76-594b-8423-01ce84c015b0
 +
# 31a5826c-b1cd-500e-91e8-8676e54b93d9
 +
# 31c17890-85e1-5bcb-9684-92812705ada0
 +
# 323ea15d-db8e-5d48-a714-29559414abc8
 +
# 3399fab2-14c5-51d5-b67f-dec3accb53be
 
# 35327ccb-4c06-5054-b3a1-b1871ac0c928
 
# 35327ccb-4c06-5054-b3a1-b1871ac0c928
 
# 35547760-624c-5f0f-aa6f-05827e5396dd
 
# 35547760-624c-5f0f-aa6f-05827e5396dd
 
# 3602c6d2-660d-5d6f-b3bf-8aad19c3c492
 
# 3602c6d2-660d-5d6f-b3bf-8aad19c3c492
 
# 37e8070f-4690-5a1e-9118-3b0a4e4af248
 
# 37e8070f-4690-5a1e-9118-3b0a4e4af248
 +
# 38637656-e9f4-5046-a64f-3f6ca5506d41
 
# 38ed173d-7a12-5294-80cb-03deb8896dfc
 
# 38ed173d-7a12-5294-80cb-03deb8896dfc
 
# 39540864-cfcb-5819-bdd9-16f314fa7aa4
 
# 39540864-cfcb-5819-bdd9-16f314fa7aa4
 +
# 3a71801b-0b63-5f9e-87a6-0f980ded561f
 
# 3b3aed58-a224-50be-9129-ba20483846b6
 
# 3b3aed58-a224-50be-9129-ba20483846b6
 +
# 3be6c1b8-4e09-5bd0-94a3-203bd0707528
 +
# 3caf77e7-b96e-5363-99e3-0d234ec67c43
 
# 3d9ffba2-c0f6-5fcb-b3b2-ee8795c1f720
 
# 3d9ffba2-c0f6-5fcb-b3b2-ee8795c1f720
 
# 3e62ef75-49ce-5e12-bd8a-b173a9c4269d
 
# 3e62ef75-49ce-5e12-bd8a-b173a9c4269d
Line 3,169: Line 3,267:
 
# 4334a9ee-88d9-5be8-b019-723c34e7a83f
 
# 4334a9ee-88d9-5be8-b019-723c34e7a83f
 
# 43637145-5846-5213-bbd2-62c51fc68393
 
# 43637145-5846-5213-bbd2-62c51fc68393
 +
# 45427ebc-08c6-5f91-82f7-fd45299fc6cf
 
# 464e554b-b208-5249-8f37-64ce5e075d9d
 
# 464e554b-b208-5249-8f37-64ce5e075d9d
 +
# 46bc2322-3258-5806-90c3-5e3a6f0a97df
 
# 4912282c-ec7a-5a0d-9e6e-10d3418ab330
 
# 4912282c-ec7a-5a0d-9e6e-10d3418ab330
 
# 49a75cc1-bd31-5e44-9b08-d43f91c666de
 
# 49a75cc1-bd31-5e44-9b08-d43f91c666de
 
# 49de1a38-5ca8-5831-a90f-e676aed4bbc6
 
# 49de1a38-5ca8-5831-a90f-e676aed4bbc6
 +
# 4aac8ade-7083-50c2-ad45-9cd76ca5646a
 
# 4b0d6770-c68c-5d87-9cc7-d33fae6dc98e
 
# 4b0d6770-c68c-5d87-9cc7-d33fae6dc98e
 
# 4b963434-6486-5baf-a02b-e2ba5fd2ebd8
 
# 4b963434-6486-5baf-a02b-e2ba5fd2ebd8
 +
# 4c59248b-03c7-51ca-a674-ee4ae89cd080
 +
# 4d6e744a-f149-595a-9dc7-557c339bd830
 +
# 4fb0d6a4-3835-5cae-a070-2c13fb98dd2f
 +
# 5175aa99-1b6d-5fd2-9133-295ba903b9f0
 +
# 53a4f11b-6424-56c9-9f7b-13e7f7b6f27d
 +
# 54668c48-e6ce-5fb0-a827-b6679d70703d
 +
# 55278a87-06e9-5b18-96bf-502e98256e3a
 
# 553d2e98-2bcb-516d-8eaf-5442f1c9d0d6
 
# 553d2e98-2bcb-516d-8eaf-5442f1c9d0d6
 
# 56f3037e-639d-5011-8fee-c4b0912baa83
 
# 56f3037e-639d-5011-8fee-c4b0912baa83
 
# 57c2fed8-6e80-5c80-a398-0edfc27cf754
 
# 57c2fed8-6e80-5c80-a398-0edfc27cf754
 +
# 5a4059be-7068-5d76-93f7-e302410146b2
 
# 5a8d1f9a-b07d-5a7b-be1e-525b50d5258c
 
# 5a8d1f9a-b07d-5a7b-be1e-525b50d5258c
 
# 5c39d369-cba1-59d8-965b-d1b068809e6b
 
# 5c39d369-cba1-59d8-965b-d1b068809e6b
 
# 5dd8151e-6bab-5302-8c3e-611ae32825b7
 
# 5dd8151e-6bab-5302-8c3e-611ae32825b7
# 64edaa0d-1f4f-5ebe-a9c7-de0f2eabf74d
+
# 5fdfa410-6a6f-54b7-8246-f28bfae2260b
 
# 65c4a415-ada8-5487-8c67-59ad4bdac78f
 
# 65c4a415-ada8-5487-8c67-59ad4bdac78f
 
# 65e7cf48-31dd-546f-98b1-d235ef5c9100
 
# 65e7cf48-31dd-546f-98b1-d235ef5c9100
Line 3,187: Line 3,296:
 
# 673eec8a-d30a-5f43-a3b0-8535a9b464e7
 
# 673eec8a-d30a-5f43-a3b0-8535a9b464e7
 
# 67d13536-af25-5a31-b81e-021e2e9676f5
 
# 67d13536-af25-5a31-b81e-021e2e9676f5
 +
# 6906dd42-3359-51ef-8793-fde50ce0de4a
 
# 6b1a016b-877b-5451-b250-e979e72ea44a
 
# 6b1a016b-877b-5451-b250-e979e72ea44a
 
# 6b7cd4ef-9ee9-50d5-8d77-493dbbadcb9f
 
# 6b7cd4ef-9ee9-50d5-8d77-493dbbadcb9f
Line 3,195: Line 3,305:
 
# 6f7c3202-9bc7-5bbf-8bb9-d0ead792c632
 
# 6f7c3202-9bc7-5bbf-8bb9-d0ead792c632
 
# 6fd02b30-262e-5c45-b966-1e1550446dbf
 
# 6fd02b30-262e-5c45-b966-1e1550446dbf
 +
# 6fffecf3-6aba-5b56-87d8-8c14620c97ab
 
# 713a7c42-fbf3-5305-b821-ffd5f871bd84
 
# 713a7c42-fbf3-5305-b821-ffd5f871bd84
 
# 71405975-e88a-5bc8-bb33-58201ed52528
 
# 71405975-e88a-5bc8-bb33-58201ed52528
 +
# 72117cde-9cc1-5e95-b898-05f68e495551
 
# 725e2413-9cf9-562f-9bad-4231fea16e28
 
# 725e2413-9cf9-562f-9bad-4231fea16e28
 
# 726847dc-c652-5ef6-8696-53830c0a1e2b
 
# 726847dc-c652-5ef6-8696-53830c0a1e2b
 
# 72f1f6f8-d49a-50f4-85ef-5f571240bd09
 
# 72f1f6f8-d49a-50f4-85ef-5f571240bd09
 +
# 7526e1d0-9c2a-548a-8146-360ff8e387e3
 +
# 771dba15-d33d-528a-9ada-74ad6d008b46
 
# 773eee34-46e4-5b3f-a653-9371796e8b58
 
# 773eee34-46e4-5b3f-a653-9371796e8b58
 
# 7d60a449-d8d8-5444-9ba2-6f1c98edd903
 
# 7d60a449-d8d8-5444-9ba2-6f1c98edd903
 
# 7ea6bc06-01e7-5915-b6c1-1141386bb99c
 
# 7ea6bc06-01e7-5915-b6c1-1141386bb99c
 +
# 7f5f6aff-3e4c-54a1-a878-ecab86e87dfd
 
# 81dde1b4-ed9b-5925-a879-70efb841d5fd
 
# 81dde1b4-ed9b-5925-a879-70efb841d5fd
 +
# 8487ad8c-8c66-5fa1-b70e-60cd9ebbef56
 
# 85dd384f-37bf-5365-af59-78a0cb78aed8
 
# 85dd384f-37bf-5365-af59-78a0cb78aed8
 
# 86cc4be5-f25e-5289-8566-602b9d6e634a
 
# 86cc4be5-f25e-5289-8566-602b9d6e634a
 +
# 87871616-d2cd-54df-8ef0-92333070570d
 
# 882bc233-3966-5d04-bccb-ae2e0e5e763b
 
# 882bc233-3966-5d04-bccb-ae2e0e5e763b
 
# 895b2fec-6090-50b3-b736-12915362995c
 
# 895b2fec-6090-50b3-b736-12915362995c
 
# 898a37b4-252d-54bd-933e-c456f95dadee
 
# 898a37b4-252d-54bd-933e-c456f95dadee
 
# 8a4ca1ad-96aa-569b-8bde-8c57ea815ae9
 
# 8a4ca1ad-96aa-569b-8bde-8c57ea815ae9
# 8a58ccb4-f327-592a-b946-72d7a56d9d2e
+
# 8d0e0384-d7f7-5c9d-b974-2999e093cf0e
 
# 8e1b0bfa-bc19-5cf8-888c-d31247c71190
 
# 8e1b0bfa-bc19-5cf8-888c-d31247c71190
 +
# 8ec27cba-7d93-5714-8a79-5dabbc0d204e
 
# 8f7d83f9-7007-5f7b-901b-bcb35f900859
 
# 8f7d83f9-7007-5f7b-901b-bcb35f900859
 +
# 8fff59db-1eb5-5623-9fad-de9799256792
 
# 900af948-f3f8-5d21-b015-6667461dd215
 
# 900af948-f3f8-5d21-b015-6667461dd215
 
# 903f52cf-cb81-5c26-97f7-7d87a6d3b243
 
# 903f52cf-cb81-5c26-97f7-7d87a6d3b243
 
# 91168585-a6ee-5b76-ba2b-c41f5685180c
 
# 91168585-a6ee-5b76-ba2b-c41f5685180c
 +
# 9202a4a5-c39b-5d43-8008-3fe1cee150de
 
# 935e73e9-ecf1-5d4f-8668-8fb907cdee4f
 
# 935e73e9-ecf1-5d4f-8668-8fb907cdee4f
 +
# 93de036a-5003-5aec-9f71-147c94f77bfe
 +
# 9417f30f-722c-596f-836d-f7ef871ae43b
 
# 9491599b-459c-5e6e-9ee0-d85a0497ef55
 
# 9491599b-459c-5e6e-9ee0-d85a0497ef55
 +
# 9588d056-d8f3-5ec4-b1b3-d2535e89e433
 
# 97127900-4d61-591a-95c8-851ad788386c
 
# 97127900-4d61-591a-95c8-851ad788386c
 
# 995623b5-4ded-5315-9f2d-f44a0db0ee7c
 
# 995623b5-4ded-5315-9f2d-f44a0db0ee7c
 +
# 9c1e8ce6-138b-591f-b56f-62e84e525fed
 
# 9d1b6f68-d4ea-5932-8b47-d05b142a72ee
 
# 9d1b6f68-d4ea-5932-8b47-d05b142a72ee
 
# 9e4ad090-7e0e-5aa7-9a55-8e0bb0b8ea8b
 
# 9e4ad090-7e0e-5aa7-9a55-8e0bb0b8ea8b
Line 3,225: Line 3,349:
 
# 9fac5c76-ef99-5c5c-a8ed-b36fa44e50bf
 
# 9fac5c76-ef99-5c5c-a8ed-b36fa44e50bf
 
# a0bc51e1-ff72-56b8-8574-a4204759a872
 
# a0bc51e1-ff72-56b8-8574-a4204759a872
 +
# a0e7740c-2c9a-57b4-9845-023c6bdfcfd4
 
# a1c63d58-b0b6-5029-bc8a-b0318119f506
 
# a1c63d58-b0b6-5029-bc8a-b0318119f506
 
# a399201b-61ec-5bc2-8041-57fdbcb572cd
 
# a399201b-61ec-5bc2-8041-57fdbcb572cd
 +
# a5038a98-548c-5e47-a299-58ee3a017008
 
# a5dce98e-3e17-555e-b67c-4448bad354bc
 
# a5dce98e-3e17-555e-b67c-4448bad354bc
 +
# a65af6a9-250a-5e4a-bedf-b6cd35e6beab
 
# a8bd5dc6-24a0-516f-862a-dbef66f9f688
 
# a8bd5dc6-24a0-516f-862a-dbef66f9f688
 +
# a94ee7fa-e13a-5428-b2ba-9132fcca1e40
 
# ab1d561b-6bfa-5686-97a8-259ed0e4b200
 
# ab1d561b-6bfa-5686-97a8-259ed0e4b200
 +
# ac32ed82-bfa6-5942-aeba-9a13a2c126dd
 
# acebb7e3-9d07-5c49-85b7-7adfc8fc41fd
 
# acebb7e3-9d07-5c49-85b7-7adfc8fc41fd
 +
# ae52c6bb-7caa-5556-8c0c-8fa29f2c3b55
 
# ae5f5094-3168-546b-84ca-22c8b80d5922
 
# ae5f5094-3168-546b-84ca-22c8b80d5922
 
# b09c0be6-756d-52a8-97a0-db71a93d0a1d
 
# b09c0be6-756d-52a8-97a0-db71a93d0a1d
 
# b337d406-6624-57cb-95cd-dd68431ee649
 
# b337d406-6624-57cb-95cd-dd68431ee649
 
# b3404349-725f-5b2a-b9c7-dceae37d53ba
 
# b3404349-725f-5b2a-b9c7-dceae37d53ba
 +
# b4246a88-f0ba-5f42-a325-9e908c1e588b
 
# b45835d7-ea26-548c-b904-ae20f678e131
 
# b45835d7-ea26-548c-b904-ae20f678e131
 
# b4a40718-739a-5580-95be-52ac57cf80ac
 
# b4a40718-739a-5580-95be-52ac57cf80ac
 +
# b540ad4a-1c94-5191-aa80-ba12456cb80d
 
# b67a51a3-938e-5ce3-83df-cb623f278864
 
# b67a51a3-938e-5ce3-83df-cb623f278864
 
# b832f9a3-fc8c-532d-b1f7-d7b9dd0e2d6e
 
# b832f9a3-fc8c-532d-b1f7-d7b9dd0e2d6e
 
# b8976cf8-d5d0-5c24-a5eb-bc40190f85fd
 
# b8976cf8-d5d0-5c24-a5eb-bc40190f85fd
# ba1421d7-bbee-54c1-8026-bd95cfedc92b
 
 
# ba89ae53-04bf-5a43-9489-f41b20d42f8f
 
# ba89ae53-04bf-5a43-9489-f41b20d42f8f
 
# bad65b6f-9a98-559f-bcd0-5844ee3cc5ee
 
# bad65b6f-9a98-559f-bcd0-5844ee3cc5ee
 +
# baea3619-0f75-588a-a70d-23a479acc2e4
 
# bb76621a-ed64-57ff-bb30-eaf319c66381
 
# bb76621a-ed64-57ff-bb30-eaf319c66381
 +
# bc0c82ac-46db-5a05-b414-909d705e6e2a
 
# bdae9e2c-8c92-50ba-92da-c0235955c36b
 
# bdae9e2c-8c92-50ba-92da-c0235955c36b
 +
# bdeb71c2-0c6f-52a3-bb69-eda21a85ca77
 +
# bef19f3a-b1d1-588d-b4f6-01b4a4a15226
 +
# c112436c-8ce4-50e3-a809-24039adfde43
 +
# c19a04d6-7f2f-5c8a-b864-2e3dccfd295e
 +
# c20e2bda-511a-5e8c-8cd2-0a925e516dfd
 
# c35556ad-67f0-5b66-9276-73e07117c329
 
# c35556ad-67f0-5b66-9276-73e07117c329
 
# c3be6486-bf0a-5d4c-98f9-e09b7a48cd02
 
# c3be6486-bf0a-5d4c-98f9-e09b7a48cd02
 +
# c400fadd-1c5f-514d-888b-8435d69fc621
 
# c53125eb-36f2-58f6-b890-3fdddbb02219
 
# c53125eb-36f2-58f6-b890-3fdddbb02219
 +
# c58a5275-dfbd-5096-9683-d0e8bbc0b9c9
 +
# c6702427-bd40-58f9-8df4-d097dc8ab169
 +
# c6df54d7-78ca-54ef-9d7e-212b2307a09f
 +
# c85fdca6-34eb-55b4-aa82-d57e8cc21915
 
# c92343f2-bc7f-538c-ae59-051331c561b7
 
# c92343f2-bc7f-538c-ae59-051331c561b7
 
# ca8f102e-4186-5b9b-90ad-a562e0009d73
 
# ca8f102e-4186-5b9b-90ad-a562e0009d73
 +
# caf01eac-7b35-59b4-886f-3e378fe3e0a5
 
# cbd65958-d879-5f15-a21b-b5685d30d9bd
 
# cbd65958-d879-5f15-a21b-b5685d30d9bd
 +
# cd27b5b7-6c20-56c9-8897-47f2f37822e2
 +
# cd54ab7c-e490-5d58-a295-5478015d1184
 
# ce035b77-82af-583b-a3e8-e84a6aee60a7
 
# ce035b77-82af-583b-a3e8-e84a6aee60a7
 
# cfaeca24-0887-5d13-acd0-70e475f6551b
 
# cfaeca24-0887-5d13-acd0-70e475f6551b
Line 3,257: Line 3,403:
 
# d001ee75-ce44-56e9-8b22-6110cc2a2a17
 
# d001ee75-ce44-56e9-8b22-6110cc2a2a17
 
# d0d56e0e-46df-5679-a082-3034b64e5197
 
# d0d56e0e-46df-5679-a082-3034b64e5197
 +
# d220e9c0-d4df-5cb9-a22e-a1fffc52f48c
 
# d4163e0b-71c3-5b98-bc28-fe6ad6c1cbe3
 
# d4163e0b-71c3-5b98-bc28-fe6ad6c1cbe3
 
# d5efa477-cc71-5302-b79a-3be14615bb6d
 
# d5efa477-cc71-5302-b79a-3be14615bb6d
 +
# d7b04463-0909-5038-9e8d-37087ed65a51
 
# d840aefe-d163-5e9d-bbf7-346a1a93207c
 
# d840aefe-d163-5e9d-bbf7-346a1a93207c
 
# d87b4b0d-1af7-521d-93e5-705b9c064b4e
 
# d87b4b0d-1af7-521d-93e5-705b9c064b4e
Line 3,264: Line 3,412:
 
# d8d79c97-5aee-5ae5-a3fe-e7da0eae4cfc
 
# d8d79c97-5aee-5ae5-a3fe-e7da0eae4cfc
 
# d96c5875-533d-5a16-8199-50942d5d8f0d
 
# d96c5875-533d-5a16-8199-50942d5d8f0d
 +
# da0dbf7b-f6db-5412-b0b1-0f3b58223a06
 
# da7fbaeb-34ab-5de8-8dab-8c43dbb78ed9
 
# da7fbaeb-34ab-5de8-8dab-8c43dbb78ed9
 +
# dbb1b115-6808-50db-8cb3-e2e1a1cc4c97
 
# dc2e5974-2afb-5c81-a0f3-6882fbfaaccf
 
# dc2e5974-2afb-5c81-a0f3-6882fbfaaccf
 
# ddc27138-5274-5187-a396-98524911e10d
 
# ddc27138-5274-5187-a396-98524911e10d
 +
# ddf1e56e-ea62-5dde-90ec-9f4960cfd90f
 +
# de6fa1d4-b943-5108-8e56-cac3bd57f24c
 
# df22fe73-a4af-5b9a-bcd6-5803594329d0
 
# df22fe73-a4af-5b9a-bcd6-5803594329d0
 
# e21b7bd5-3f7f-5595-80d4-e32eccd37d60
 
# e21b7bd5-3f7f-5595-80d4-e32eccd37d60
 
# e2c76ec3-2530-553e-8513-52825fc415f5
 
# e2c76ec3-2530-553e-8513-52825fc415f5
 +
# e3bcd047-5c79-5747-8e0e-98d4e0fa74a6
 
# e3fc783d-50bf-5c28-813f-42aa6cd5d945
 
# e3fc783d-50bf-5c28-813f-42aa6cd5d945
 
# e557518b-75b2-5a55-86e0-a1f9555e857e
 
# e557518b-75b2-5a55-86e0-a1f9555e857e
 +
# e6a1270d-edd6-5908-a76b-9518a7177d7f
 
# e70090a8-06bc-5f4d-8961-fe8799a7f758
 
# e70090a8-06bc-5f4d-8961-fe8799a7f758
 
# e7b40c39-aa6e-5077-9689-a261b39e070f
 
# e7b40c39-aa6e-5077-9689-a261b39e070f
Line 3,278: Line 3,432:
 
# ea77fda6-fc06-5f5b-a48a-a5294dfc9396
 
# ea77fda6-fc06-5f5b-a48a-a5294dfc9396
 
# eb5dffc4-fa51-5a2d-880f-35ab1391f8c8
 
# eb5dffc4-fa51-5a2d-880f-35ab1391f8c8
 +
# ec2af67a-0d66-578e-a295-4aeeb94908ca
 
# ec989eb9-12d4-5725-8711-99bc216282c2
 
# ec989eb9-12d4-5725-8711-99bc216282c2
 +
# ecba356d-cf0a-5dfa-b1db-f23b28dce404
 +
# ed385f97-ae69-5655-884c-542298d741b7
 
# ee1440c2-a7c8-5856-8bb9-b1d2ad39f9a6
 
# ee1440c2-a7c8-5856-8bb9-b1d2ad39f9a6
 +
# eecbc3ed-f227-5334-9392-097417f82396
 
# f076aac5-ca8c-5cfc-80e9-00c006f6562b
 
# f076aac5-ca8c-5cfc-80e9-00c006f6562b
 
# f0d43ac6-b030-539a-8fd4-1799c01edca2
 
# f0d43ac6-b030-539a-8fd4-1799c01edca2
Line 3,287: Line 3,445:
 
# f2c50136-40db-54f8-bc92-deebabf69dee
 
# f2c50136-40db-54f8-bc92-deebabf69dee
 
# f2d510b5-6bab-5c69-a045-806ce2cb4d5a
 
# f2d510b5-6bab-5c69-a045-806ce2cb4d5a
 +
# f3462dbd-c8e8-5496-b75c-fe82a33ffaa3
 
# f3917274-b91c-5846-bee4-d928b3f15d92
 
# f3917274-b91c-5846-bee4-d928b3f15d92
 +
# f3ad957c-d149-5d4f-baf0-4b06a0167e25
 
# f58a17c8-24bd-59f6-a189-7231bf3b74f1
 
# f58a17c8-24bd-59f6-a189-7231bf3b74f1
 
# f61c519b-7315-5061-a763-8057b3ba6fb5
 
# f61c519b-7315-5061-a763-8057b3ba6fb5
Line 3,297: Line 3,457:
 
# fd1b32fc-7422-56ea-9e31-995ba9a26893
 
# fd1b32fc-7422-56ea-9e31-995ba9a26893
 
# fdb3fea3-4555-581b-ba1b-58baecc3e1c4
 
# fdb3fea3-4555-581b-ba1b-58baecc3e1c4
 +
# fe863a5b-275b-5ace-85f0-9c311536d1a4

Please note that all contributions to explain xkcd may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see explain xkcd:Copyrights for details). Do not submit copyrighted work without permission!

To protect the wiki against automated edit spam, we kindly ask you to solve the following CAPTCHA:

Cancel | Editing help (opens in new window)