<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://www.explainxkcd.com/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=162.158.85.147</id>
		<title>explain xkcd - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://www.explainxkcd.com/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=162.158.85.147"/>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php/Special:Contributions/162.158.85.147"/>
		<updated>2026-05-30T16:14:25Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:1700:_New_Bug&amp;diff=122814</id>
		<title>Talk:1700: New Bug</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:1700:_New_Bug&amp;diff=122814"/>
				<updated>2016-07-04T09:58:51Z</updated>
		
		<summary type="html">&lt;p&gt;162.158.85.147: Added Firefox codemoji infos&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!--Please sign your posts with ~~~~--&amp;gt;&lt;br /&gt;
I'm new. For the explanation: A bug, as in a computer (programming) bug, can be reported and tracked, and many systems allow collaboration on the reporting and tracking of problems, or bugs, in code, and their solutions. Cueball reported a problem (bug) he found in the code, which presumably caused the server (program)&amp;amp;mdash;which he wrote as part of his project&amp;amp;mdash;to try to read the passwords as URLs before storing them. This exposes serious cross-site scripting attacks and other serious security vulnerabilities, and since handling password and user account information usually requires a lot of programming, this would be difficult to fix, which is why the character off-panel suggests burning the project down, as that would be much easier, and would solve any security problems, much more quickly than fixing the bug would. The comment text refers to Cueball's horrid solution to a horrid problem: Instead of solving the problem that is causing the server to read passwords as URLs, he can instead leverage a known problem in the programme which reads URLs which prevents it from reading a particular way of representing text in binary form, by adding a few characters to the user's password that the URL-reading program can't read. This would also &amp;quot;salt&amp;quot; the user's password, which is a security technique that makes passwords harder to figure out when they are stored properly. Cueball thinks this would solve the original problem, and two other problems at the same time, the second problem being the fact that user's passwords aren't salted (a security problem). The third solved problem is difficult to deduce.   &amp;amp;emsp;[[User:Zyzygy|Zyzygy]] 05:40, 29 June 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
: The third bug is the unicode handling, which would need to be solved in order to salt passwords with emoji since these are unicode only character. Although I'm not sure if salting with emoji really increases security since as a rule i'd say nobody uses emoji in their passwords. [[Special:Contributions/162.158.85.123|162.158.85.123]] 06:34, 29 June 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Password: 👍🐎🔋Π [[Special:Contributions/141.101.98.131|141.101.98.131]] 10:11, 29 June 2016 (UTC)&lt;br /&gt;
:::That is a really funny password, [[936: Password Strength|but is it strong ennough?]] :-) --[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 20:22, 29 June 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Actually, nobody using emoji in their password would be reason salting with emoji is MORE effective. Salting doesn't really increase security of single password, but it does increase security of whole password database, because you can hash some string - like, [http://www.telegraph.co.uk/technology/2016/01/26/most-common-passwords-revealed---and-theyre-ridiculously-easy-to/ 123456] and check whole database for users having that as password. If every password is salted with different emoji, this strategy will not work, because while you KNOW which emoji is used - the salt is stored unhashed with the password hash - it's always different so you need to compute new hash for every line in password database. Hashing takes MUCH more time than just comparing strings. And how it's even more effective? Because someone might actually get multiple databases and search for entries with same salt, hoping there will be enough of them to be worth it. And salt with emoji likely wouldn't be so common ... -- [[User:Hkmaly|Hkmaly]] ([[User talk:Hkmaly|talk]]) 09:54, 29 June 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
From 108.162.221.22 (long rant)&lt;br /&gt;
:Two comments: first, the explanation on password salting is incorrect.  The current version says &amp;quot;Salting passwords increases security by adding random data to the passwords which primarily helps defend against dictionary attacks.&amp;quot;.  Password salting only protects against particular kinds of (common) attacks in specific situations.  Most importantly, it is designed to protect passwords only in the event ofa database breach, when a malicious user has gained direct access to the database itself.  Password salting provides no protection when brute force attacks (aka dictionary attacks) are directed at the application itself, as the application automatically takes hashes into account.  Instead, proper password salting randomizes the hash for each password, ensuring that if two users have the same password, they will not have the same hash.  This makes it much more difficult to guess passwords through attack vectors like lookup tables, reverse lookup tables, and rainbow tables.  However, because the salt has to be stored with the password (otherwise the application would not be able to make sense of the hash itself), password salting does not secure passwords against dictionary attacks even in the event that a malicious user has managed to acquire the database itself.  I will update the explanation with a brief description of what password salts do.&lt;br /&gt;
:Finally, I think there is a big misunderstanding throughout this explanation.  In a web services context the &amp;quot;server&amp;quot; (referenced in the comic) is a very different thing than the application that a programmer builds.  A server can refer to either the computer itself or the software that is responsible for responding to web requests and executing the actual application.  In a professional context, the application (which is what cueball would be building) would never be referred to as the &amp;quot;server&amp;quot;.  It is possible that this is a mis-use of terminology on the part of cueball or Randall, but I suspect that the term was used properly and intentionally.  The reason is because if cueball's application is crashing the *server*, it takes the level of incompetence up to completely new (and unusual) levels, in much the same way that he has done in the past.  Normally the programming language used to build the application, the software hosting the application, and the operating system itself have a number of safe guards in place to ensure that if an application misbehaves, the only thing that crashes is the application itself.  For cueball's application to break through all those safeguards and crash the server itself (either the operating system or the web server software) would require cueball to have developed a program that operates *well* outside the bounds of normal procedures.  Just for reference, as someone who has been building web software for over 15 years, I wouldn't even know where to start to crash the server from within an application. It would probably have to involve either exploiting a previously unknown bug in the programming language or some *very* poorly designed system calls.   [[Special:Contributions/108.162.221.22 15:11, 29 June 2016‎ 108.162.221.22]] (Rememeber to sign your comments) &lt;br /&gt;
&lt;br /&gt;
::If you by 'server' means Apache it is not completely unexpected that a sloppy coded extension to Perl or PHP could crash part of the server – and I still maintain mod_perl code that does 'fancy' stuff. I wouldn't be surprised if Cueball still wrote web-application as he did when mod_perl was the hot stuff. Today it is a common setup to have a chain of servers. In the front nginx for SSL termination, maybe an application level firewall filtering out spooky requests,  then Varnish for caching and load-balancing and finally the application server running the actual web-application – all layers implementing the HTTP protocol. Which of these are 'the server'? At least it is often easy for the application developer to make the last server in the chain unresponsive (i.e. crashed). [[User:Pmakholm|Pmakholm]] ([[User talk:Pmakholm|talk]]) 12:08, 1 July 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::Writing an extension to your language of choice would probably be a good way of crashing the server, although I would say that writing extensions to the language itself is not a common thing for most people to do.  I suppose I'm arguing from experience (which is not always accurate) but in years of PHP and python programming I've never once had to write a language extension, nor did I ever need to for my very complicated thesis work.  So I would say that the general point still stands: if Cueball is crashing any part of the server, he is doing things very wrong or at least very different.[[User:Cmancone|Cmancone]] ([[User talk:Cmancone|talk]]) 12:58, 1 July 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Regarding those last two points: sorry for my long unsigned rant.  Didn't realize I wasn't logged in.  Still haven't figured out how to sign comments.  Gonna try it this time. [[User:Cmancone|Cmancone]] ([[User talk:Cmancone|talk]]) 16:51, 29 June 2016 (UTC)&lt;br /&gt;
:You made it ;-) --[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 20:22, 29 June 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Explanation says &amp;quot;There is no reason for password handling code to access urls&amp;quot; but that is somewhat wrong -- Password handling code frequently perform heuristics on the password to assess the strength, for example checking if part of the password is a dictionary word -- similar heuristics could be done to check thatthe password is not a URL, such as &amp;quot;xkcd.com&amp;quot; applying DNS and other internet resources as an extention of the concept of &amp;quot;dictionary&amp;quot;. [[User:Spongebog|Spongebob]] ([[User talk:Spongebog|talk]]) 16:11, 29 June 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
:I think http://xkcd.com/correct/horse/battery/staple/ would be a perfectly fine password, even though it is also an URL – but a heuristic that just looks at the length of the password and if it only contains alphanumeric characters would probably be fooled. Trying to detect the scheme used to generate the password could be helpful in choosing a relevant heuristic for deciding the password strength. Ont the other hand, I would consider it very bad to actually test whether the URL is resolvable in any way that leaks information about the password to the outside. [[User:Pmakholm|Pmakholm]] ([[User talk:Pmakholm|talk]]) 11:11, 1 July 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Currently the explanation says: &amp;quot;Finally, emoji will often include unicode characters, which means that, if one can effectively salt passwords with emoji, then the passwords should be able to be stored in unicode (although that *probably* doesn't require anything outside the Base Multilingual Plane, so that might not need full unicode support after-all).&amp;quot;  I'm fairly convinced that this doesn't make sense and is incorrect.  Regardless of what character encoding the password is in, hashing will convert the entire thing into binary.  This binary is then typically stored as a base64-encoded string in the database.  Ergo, it doesn't matter whether the original password strings were in unicode or not: they will be stored in the database as ascii (or binary), not unicode.  I'm going to go ahead and remove this comment from the explanation.  I'm pretty certain that there isn't enough information in the comic to figure out why salting passwords with emoji would fix a unicode-handling bug in the URL request library.  So I suspect that there is no explanation there: either Cueball is entirely confused and his statement makes no sense, or there is simply not enough information given to help us understand why this solution might fix the problem.  However, I'm not going to make any updates to the explanation about this yet, because perhaps I'm missing something someone else will notice. [[User:Cmancone|Cmancone]] 12:50, 29 June 2016 (ETC)&lt;br /&gt;
:I suspect that the salting with emoji is to ensure that the password does not resolve as a URL (since the library cannot understand the encoding), and thus the issue of the crash is resolved, the issue of unsalted passwords is solved, and the issue of the unicode handling bug is &amp;quot;solved&amp;quot; by virtue of it now being a feature relied on by the system. [[Special:Contributions/173.245.56.68|173.245.56.68]] 20:50, 29 June 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
I removed from the explanation the discussion about how Cueball's system might be checking passwords to see if they are resolvable URLs as a check against weak passwords.  The problem with this explanation is that if that is where the crash was happening, then salting the password with emoji would not fix the crash.  For salting to fix the crash (as Cueball suggests it will) requires that the crash be happening during the hashing process, not during password validation.  The reason is because password validation is performed on the original password itself, while only hashing happens on the salted password.  So for salting to fix the crash it must be happening during hashing, not validation.  If the bug is happening while checking passwords for strength then Cueball's suggestion of fixing it by adding in a salt will not actually fix the crash at all.  It could be that Cueball is simply completely wrong about everything, but I think it makes more sense to go with an explanation where the title text didn't just get everything wrong.[[User:Cmancone|Cmancone]] ([[User talk:Cmancone|talk]]) 13:12, 30 June 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
In the nomenclature I am familiar with mailto:somebody@example.com is a URL.  If you accept that mailto (and other protocols) are also URLs some of the description is untrue.  Fortunately the untrue bits are also unnecessary and can be deleted or generalized.--[[Special:Contributions/108.162.219.11|108.162.219.11]] 04:51, 1 July 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
Definitely a sequel to 1084[[Special:Contributions/108.162.221.92|108.162.221.92]] 08:27, 1 July 2016 (UTC)&lt;br /&gt;
&lt;br /&gt;
The explanation of 'Resolveable URL' is very confusing and mostly wrong, it is mixing up technologies like HTTP and DNS and is confusing FQDN's with URLs. Though admittedly, the term 'resolveable URL' is a bit of a misnomer by itself. URLs are typically not resolved, they contain an FQDN that is resolved via DNS to an IP(v6) address and optionally port. The remainder of the URL can be used to identify a resource on that server, but how this is done and signaled is quite application/protocol dependent (and shouldn't be called 'resolving'). So if you hit a 404 the FQDN actually resolved but the HTTP resource could not be found. A non-resolveable URL would give a browser error like 'unknown host'. [[Special:Contributions/162.158.83.198|162.158.83.198]] 09:59, 1 July 2016 (UTC)&lt;br /&gt;
:Feel free to adjust the text as desired.  I think in this case it is best to understand &amp;quot;Resolvable URL&amp;quot; as Cueball meant it, which (I think) is as any valid URL you might stick in your web browser.  I don't think he meant any of the more technical possible definitions.  In that sense a resolvable URL would be something that points to a server, potentially followed by a resource on the server.  At least, that is how I would think to describe it.  Feel free to give it a go. {{unsigned|Cmancone}}&lt;br /&gt;
&lt;br /&gt;
Around the time this comic was published, Firefox linked on its start-page to https://advocacy.mozilla.org/en-US/encrypt/codemoji/2, where a webapp Codeempji is available. With this webapp one can use emojis to scramble messages with a Caesar-cipher like method. This might be the reason for the emoji reference in the title text.[[Special:Contributions/162.158.85.147|162.158.85.147]] 09:58, 4 July 2016 (UTC)&lt;/div&gt;</summary>
		<author><name>162.158.85.147</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=1688:_Map_Age_Guide&amp;diff=121201</id>
		<title>1688: Map Age Guide</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=1688:_Map_Age_Guide&amp;diff=121201"/>
				<updated>2016-06-02T06:00:53Z</updated>
		
		<summary type="html">&lt;p&gt;162.158.85.147: /* Explanation */ Added explanation for Budapest.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 1688&lt;br /&gt;
| date      = June 1, 2016&lt;br /&gt;
| title     = Map Age Guide&lt;br /&gt;
| image     = map_age_guide.png&lt;br /&gt;
| titletext = Does the screeching chill your blood and herald death? If yes, banshee. If no, seagull.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
*A [http://xkcd.com/1688/large/ larger version] of this image can be found by clicking the image at xkcd.com - the comic's page can also be accessed by clicking on the comic number above.&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Many is still missing.}}&lt;br /&gt;
Flowchart depicting various ways to tell what era a map is from based on present country borders and land forms. (Except in the Not a Political Map Branch (from &amp;quot;Can you see the familiar continents?&amp;quot; downwards), the comic assumes a political map.) Most of the options are very serious, with a few bizarre options (mistaking a seagull and breadbox for a map) or references to things like the {{w|Discworld}} books and Middle-earth, the setting of the Lord Of the Rings series. He also mentions US President Jimmy Carter being attacked by a giant swimming rabbit, an event previously referenced by [[204]].&lt;br /&gt;
&lt;br /&gt;
Additionally, (possible) future maps including a &amp;quot;Radioactive Exclusion Zone&amp;quot; in the place of Colorado are mentioned. It predicts that some kind of nuclear incident will occur in Colorado (possibly at Rulison or Rio Blanco nuclear testing sites) in 2022. It also predicts that the area will be infested by radioactive spiders one year later.&lt;br /&gt;
&lt;br /&gt;
The title text continues the path where the user has confused a seagull for a map by inquiring if the (presumed) seagull might be a banshee based on the effect of its screams.&lt;br /&gt;
&lt;br /&gt;
There is no recursive loop.&lt;br /&gt;
&lt;br /&gt;
(First Draft, please expand.)&lt;br /&gt;
&lt;br /&gt;
Going through the flowchart, taking the leftmost path first, recursively. See {{w|Depth-first search}}. &amp;quot;Prior Date Range&amp;quot; is the range determined immediately before the question, carried over from the previous question; &amp;quot;Question Date Range&amp;quot; is the range each answer choice implies; &amp;quot;New Date Range&amp;quot; is the intersection of the Prior Date Range and the Question Date Range for each choice, and is the range determined by all questions hiherto answered.&lt;br /&gt;
&lt;br /&gt;
{| border =1 width=100% cellpadding=5 class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! # !! Question !! Explanation !! Prior Date Range !! Question Date Range !! New Date Range&lt;br /&gt;
|-&lt;br /&gt;
! 1&lt;br /&gt;
| '''Istanbul or Constantinople'''&lt;br /&gt;
| The largest city in Turkey is famous for having different names at different times or to different people. Variations on both names go back at least 1,000 years. Other names have also been used at various points. {{w|İstanbul}} has been the official name since the 1920's, although Western maps often referred to it as Constantinople as late as the 1960's; on the flowchart, the choice of name appears to go with the 1920's date. The name changes are the subject of a [http://mentalfloss.com/article/60314/original-istanbul-not-constantinople song], originally by the Four Lads, but now mainly known for the They Might Be Giants recording.&lt;br /&gt;
| '''Start here'''&lt;br /&gt;
|&lt;br /&gt;
* Constantinople: -329 - 1928&lt;br /&gt;
* Neither: inconclusive&lt;br /&gt;
* Istanbul: 1928+&lt;br /&gt;
|&lt;br /&gt;
* Constantinople: -329 - 1928 (Go to 2)&lt;br /&gt;
* Neither: inconclusive&lt;br /&gt;
* Istanbul: 1928+&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;6&amp;quot; | '''Note:''' the chart splits here into three divisions, each from a choice in question 1. The Neither Division will attempt to use other indicators to sort maps into one of the other two divisions or branches thereof, or, after 5 failures to find a country, conclude that the &amp;quot;map&amp;quot; in question is not a political map and proceed to find out what it is (the Not a Political Map Branch). The Constantinople and Istanbul Divisions are linear except where the Neither Division joins them as stated above.&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;6&amp;quot; | Constantinople Division&lt;br /&gt;
|-&lt;br /&gt;
! 2&lt;br /&gt;
| '''Do any of these exist?'''&lt;br /&gt;
* '''Independent Canada'''&lt;br /&gt;
* '''US Territory of Alaska'''&lt;br /&gt;
* '''Tokyo'''&lt;br /&gt;
| All these seem to specify a date cut-off of 1867/8, but there are caveats attached to each:&lt;br /&gt;
* Canada gained its independence gradually, but it would appear as its own country on maps some time between the {{w|Constitution Act, 1867}} (which created Canada as a British dominion) and the {{w|Statute of Westminster 1931}} (which made Canada largely self-governing).&lt;br /&gt;
* The {{w|Territory of Alaska}} existed between 1912 (previously, it was a US district) and 1959 (when it became a state). The US has owned Alaska since the 1867 {{w|Alaska Purchase}}, but it was not a territory then.&lt;br /&gt;
* {{w|Tokyo}} was once called Edo. It was renamed Tokyo (which means &amp;quot;Eastern Capital&amp;quot;) when it became the capital in 1868. [https://books.google.com/ngrams/graph?content=Tokyo%2CTokei&amp;amp;year_start=1870&amp;amp;year_end=1880&amp;amp;corpus=15&amp;amp;smoothing=3&amp;amp;share=&amp;amp;direct_url=t1%3B%2CTokyo%3B%2Cc0%3B.t1%3B%2CTokei%3B%2Cc0 Most English books around then] would actually have called it &amp;quot;Tokei&amp;quot;, the Chinese reading. The name Tokyo didn't take off until {{w|Hepburn romanization}} was popularized in the 1880s.&lt;br /&gt;
| -329 - 1928 (From 1)&lt;br /&gt;
|&lt;br /&gt;
* No: 1867-&lt;br /&gt;
* Yes: 1868+&lt;br /&gt;
|&lt;br /&gt;
* No: -329 - 1867 (Go to 3)&lt;br /&gt;
* Yes: 1868 - 1928 (Go to 11)&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;6&amp;quot; | Holy Roman Empire Branch&lt;br /&gt;
|-&lt;br /&gt;
! 3&lt;br /&gt;
| '''The Holy Roman Empire'''&lt;br /&gt;
| The predecessor to modern Germany, the {{w|Holy Roman Empire}} was a union of hundreds of small states in Central Europe. Nationalism and the concept of the {{w|nation state}} hadn't taken off yet, so countries as we know them didn't really exist. There were just small lands, often with keenly contested borders, owned by minor aristocracy who pledged allegiance to one of the big powers. The HRE was dissolved in 1806 after it was invaded by Napoleon, arguably the first leader to realise the potential of making a nation salute a flag.&lt;br /&gt;
| -329 - 1867&lt;br /&gt;
|&lt;br /&gt;
* Yes: 899 - 1806&lt;br /&gt;
* No: 899- or 1806+&lt;br /&gt;
|&lt;br /&gt;
* Yes: 899 - 1806 (Stated in comic as 1805-, since modern map-making was fuzzy as a concept prior) ('''Stop''')&lt;br /&gt;
* No: -329 - 899 or 1806-67 (Go to 4)&lt;br /&gt;
|-&lt;br /&gt;
! 4&lt;br /&gt;
| '''The United States?'''&lt;br /&gt;
| The original 13 colonies declared independence in 1776. A map that does not include ''either'' the HRE ''or'' the USA must be older than the HRE which would put the map some time prior to 1000 AD, when there really were no countries, and English wasn't used yet, hence Randall's comment.&lt;br /&gt;
| -329 - 899 or 1806-67&lt;br /&gt;
|&lt;br /&gt;
* No: 1776-&lt;br /&gt;
* Yes: 1776+&lt;br /&gt;
|&lt;br /&gt;
* No: -329 - 899 (Not stated in comic, since a map in this period is probably not in English, which violates a proviso of the comic) ('''Stop''')&lt;br /&gt;
* Yes: 1806-67 (Go to 5)&lt;br /&gt;
|-&lt;br /&gt;
! 5&lt;br /&gt;
| '''Texas is...&amp;lt;br/&amp;gt;Part of Mexico?&amp;lt;br/&amp;gt;Independent?&amp;lt;br/&amp;gt;Part of the US?'''&lt;br /&gt;
| Mexico occupied the area modern day Texas from around 1718 ([[w:Spanish Texas|when the first permanent Spanish settlements were founded]]) to the {{w|Texas Declaration of Independence}} in 1836 (the comic appearantly cited 1834 as the date) - the land called &amp;quot;Texas&amp;quot; was only a small part of the modern day state. The {{w|Republic of Texas}} only lasted a decade, and joined the US in 1846.&lt;br /&gt;
| 1806-67&lt;br /&gt;
|&lt;br /&gt;
* Part of Mexico: 1718 - 1836&lt;br /&gt;
* Independent: 1836-46&lt;br /&gt;
* Part of the US: 1846+&lt;br /&gt;
|&lt;br /&gt;
* Part of Mexico: 1806-36 (Go to 6)&lt;br /&gt;
* Independent: 1836-46 (stated in comic as 1834-45 - a discrepancy) ('''Stop''')&lt;br /&gt;
* Part of the US: 1846-67 (Go to 9)&lt;br /&gt;
|-&lt;br /&gt;
! 6&lt;br /&gt;
| '''Florida is part of...&amp;lt;br/&amp;gt;Spain?&amp;lt;br/&amp;gt;The US?'''&lt;br /&gt;
| Spain occupied {{w|Florida}} (as East Florida and West Florida) but frankly they didn't actually want it - it was expensive to send people to settle it, and there wasn't much economic value in it. So they gave it to the US for free in the 1819 {{w|Adams–Onís Treaty}} (which took effect in 1821) in exchange for the US giving up parts of Mexico and paying off angry Spanish settlers. (For some reason, the comic treats Florida as part of the US in 1818; see questions 7 and 8.)&lt;br /&gt;
| 1806-36&lt;br /&gt;
|&lt;br /&gt;
* Spain: 1565 - 1763 or 1783 - 1821&lt;br /&gt;
* The US: 1821+&lt;br /&gt;
|&lt;br /&gt;
* Spain: 1806-21 (Go to 7)&lt;br /&gt;
* The US: 1821-36 (Go to 8)&lt;br /&gt;
|-&lt;br /&gt;
! 7&lt;br /&gt;
| '''{{w|Paraguay}}?'''&lt;br /&gt;
| Declared independence from Spain in 1811 (although it might appear on older maps as the Spanish Province of Paraguay).&lt;br /&gt;
| 1806-21&lt;br /&gt;
|&lt;br /&gt;
* No: 1811-&lt;br /&gt;
* Yes: 1811+&lt;br /&gt;
|&lt;br /&gt;
* No: 1806-11 (stated in comic as 1806-10) ('''Stop''')&lt;br /&gt;
* Yes: 1811-21 (stated in comic as 1811-17 - a discrepancy (see question 6)) ('''Stop''')&lt;br /&gt;
|-&lt;br /&gt;
! 8&lt;br /&gt;
| '''{{w|Venezuela}} and/or {{w|Ecuador?}}'''&lt;br /&gt;
| Both declared independence from {{w|Gran Colombia}} (Greater Colombia) in 1830.&lt;br /&gt;
| 1821-36&lt;br /&gt;
|&lt;br /&gt;
* No: 1830-&lt;br /&gt;
* Yes: 1830+&lt;br /&gt;
|&lt;br /&gt;
* No: 1821-30 (stated in comic as 1818-29 - a discrepancy (see question 6)) ('''Stop''')&lt;br /&gt;
* Yes: 1830-36 (stated in comic as 1830-33 - a discrepancy (see question 5)) ('''Stop''')&lt;br /&gt;
|-&lt;br /&gt;
! 9&lt;br /&gt;
| '''Does Russia border the Sea of Japan?'''&lt;br /&gt;
| The 1858 {{w|Treaty of Aigun}} brought the Russian border to the Sea of Japan.&lt;br /&gt;
| 1846-67&lt;br /&gt;
|&lt;br /&gt;
* No: 1858-&lt;br /&gt;
* Yes: 1858+&lt;br /&gt;
|&lt;br /&gt;
* No: 1846-58 (Go to 10)&lt;br /&gt;
* Yes: 1858-67 ('''Stop''')&lt;br /&gt;
|-&lt;br /&gt;
! 10&lt;br /&gt;
| '''The US's southern border looks... &amp;lt;br/&amp;gt; Weird &amp;lt;br/&amp;gt; Normal'''&lt;br /&gt;
| The last southward expansion of the US is the 1854 {{w|Gadsden Purchase}}, where the US bought a chunk of what is now Arizona and New Mexico so they could build a railway that avoided unfavourable terrain. The southern border looks &amp;quot;weird&amp;quot; before that because we are accustomed to the current border shape.&lt;br /&gt;
| 1846-58&lt;br /&gt;
|&lt;br /&gt;
* Weird: 1854-&lt;br /&gt;
* Normal: 1854+&lt;br /&gt;
|&lt;br /&gt;
* Weird: 1846-54 (stated in comic as 1846-53) ('''Stop''')&lt;br /&gt;
* Normal: 1854-58 (stated in comic as 1854-56 - a discrepancy (where is 1857?)) ('''Stop''')&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;6&amp;quot; | South Africa Branch&lt;br /&gt;
|-&lt;br /&gt;
! 11&lt;br /&gt;
| '''{{w|South Africa}}?'''&lt;br /&gt;
| The Union of South Africa was created in 1910, although South Africa was then not yet fully independent from the United Kingdom (which would not happen until 1931).&lt;br /&gt;
| 1868 - 1928&lt;br /&gt;
|&lt;br /&gt;
* No: 1910-&lt;br /&gt;
* Yes: 1910+&lt;br /&gt;
|&lt;br /&gt;
* No: 1868 - 1910 (Go to 12)&lt;br /&gt;
* Yes: 1910-28 (Go to 16)&lt;br /&gt;
|-&lt;br /&gt;
! 12&lt;br /&gt;
| '''Rhodesia?'''&lt;br /&gt;
| The region Rhodesia (or [https://en.wikipedia.org/wiki/Southern_Rhodesia Southern Rhodesia]) was known as South Zambezia until 1895. In the present day it's known as Zimbabwe.&lt;br /&gt;
| 1868 - 1910&lt;br /&gt;
|&lt;br /&gt;
* No: 1895-&lt;br /&gt;
* Yes: 1895+&lt;br /&gt;
|&lt;br /&gt;
* No: 1868-95 (Go to 13)&lt;br /&gt;
* Yes: 1895 - 1910 (Go to 15)&lt;br /&gt;
|-&lt;br /&gt;
! 13&lt;br /&gt;
| '''Is Bolivia landlocked?'''&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
* No: 1884-&lt;br /&gt;
* Yes: 1884+&lt;br /&gt;
|&lt;br /&gt;
* No: (Go to 14)&lt;br /&gt;
* Yes: ('''Stop''')&lt;br /&gt;
|-&lt;br /&gt;
! 14&lt;br /&gt;
| '''&amp;quot;Buda&amp;quot; and &amp;quot;Pest&amp;quot; or &amp;quot;Budapest&amp;quot;?'''&lt;br /&gt;
| Budapest has become the official name of the capital of the Kingdom of Hungary when it was part of Austria-Hungary. Before 1873, it would appear in official records as &amp;quot;Pest-Buda&amp;quot; &amp;amp;mdash; a name that was abandoned because, when printed on maps, the word &amp;quot;Pest&amp;quot; would appear on the &amp;quot;Buda&amp;quot; side, west of the {{w|Danube}} river, and vica versa.&amp;lt;ref&amp;gt;[{{w|[hu:Budapest_nevének_eredete]}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
* Buda and Pest: 1873-&lt;br /&gt;
* Budapest: 1873+&lt;br /&gt;
|&lt;br /&gt;
* Buda and Pest: 1868-1872 ('''Stop''')&lt;br /&gt;
* Budapest: 1873-83 ('''Stop''')&lt;br /&gt;
|-&lt;br /&gt;
! 15&lt;br /&gt;
| '''Is Norway part of Sweden?'''&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
* Yes: &lt;br /&gt;
* No: &lt;br /&gt;
|&lt;br /&gt;
* Yes: ('''Stop''')&lt;br /&gt;
* No: ('''Stop''')&lt;br /&gt;
|-&lt;br /&gt;
! 16&lt;br /&gt;
| '''Austria-Hungary?'''&lt;br /&gt;
|&lt;br /&gt;
| 1910-28&lt;br /&gt;
|&lt;br /&gt;
* Yes: 1918-&lt;br /&gt;
* No: 1919+&lt;br /&gt;
|&lt;br /&gt;
* Yes: 1910 - 1918 (Go to 17)&lt;br /&gt;
* No: (Go to 18)&lt;br /&gt;
|-&lt;br /&gt;
! 17&lt;br /&gt;
| '''Albania?'''&lt;br /&gt;
| Albania declared independence from the Ottoman Empire in 1912.&lt;br /&gt;
| 1910 - 1918 &lt;br /&gt;
|&lt;br /&gt;
* No: 1912-&lt;br /&gt;
* Yes: 1912+&lt;br /&gt;
|&lt;br /&gt;
* No: 1910 - 1912 ('''Stop''')&lt;br /&gt;
* Yes: 1913 - 1918 ('''Stop''')&lt;br /&gt;
|-&lt;br /&gt;
! 18&lt;br /&gt;
| '''Leningrad?'''&lt;br /&gt;
| Before 1924, Leningrad (Saint Petersburg) was named Petrograd.&lt;br /&gt;
| 1919 - 1929&lt;br /&gt;
|&lt;br /&gt;
* No: 1924-&lt;br /&gt;
* Yes: 1924+&lt;br /&gt;
|&lt;br /&gt;
* No: 1919 - 1923 ('''Stop''')&lt;br /&gt;
* Yes: 1924 - 1929 ('''Stop''')&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''&amp;quot;Buda&amp;quot; and &amp;quot;Pest&amp;quot; or &amp;quot;Budapest&amp;quot;''' [https://en.wikipedia.org/wiki/Budapest#Etymology Buda and Pest] were originally two different cities&lt;br /&gt;
&lt;br /&gt;
'''Rhodesia?''' The dates down the chain suggest this is about [https://en.wikipedia.org/wiki/Rhodesia_(region) Rhodesia the Region] not [https://en.wikipedia.org/wiki/Rhodesia Rhodesia the Unrecognized state] nor [https://en.wikipedia.org/wiki/Southern_Rhodesia Southern Rhodesia] the British Colony&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Does the Soviet Union exist?''' &lt;br /&gt;
The Soviet Union is one of the largest countries ever to exist consisting of Russia and large portions of eastern Europe and central Asia. It was a major political force from 1922, when several allied Soviet republics united, to 1991, when it broke up. It's very simple to find on any map that has it.&lt;br /&gt;
&lt;br /&gt;
This question actually appears twice on the graph — once if you choose &amp;quot;Istanbul&amp;quot;, once if you choose &amp;quot;neither&amp;quot;. If you choose Istanbul, it's given that the period in which the Soviet Union does not exist is the period ''after'' the Soviet Union rather than the period before.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Saudi Arabia?'''&lt;br /&gt;
This entry can only be accessed in the Neither branch. Saudi Arabia was established in 1932, so any maps without it would have been from before then.&lt;br /&gt;
&lt;br /&gt;
'''North Korea?'''&lt;br /&gt;
If the Soviet Union does not exist, it was in one of two periods: the period before North Korea existed (which would have been pre-1922), and the period in which North Korea does exist (which would be post-1991). If North Korea does exist, then the period is the same period in which the capital of Turkey was called Istanbul, so they both lead to the same question about Zaire.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== West Africa branch (1930-1991) ===&lt;br /&gt;
&lt;br /&gt;
'''Is most of West Africa a giant French blob?'''&lt;br /&gt;
Before 1960, most of West Africa consisted of a number of French colonies united under [https://en.wikipedia.org/wiki/French_West_Africa French West Africa].&lt;br /&gt;
&lt;br /&gt;
'''Pakistan?'''&lt;br /&gt;
Pakistan was officially recognized as its own country separate from India in 1947.&lt;br /&gt;
&lt;br /&gt;
'''How many Germanys are there?'''&lt;br /&gt;
During WWII, the Nazi Party invaded a large swath of Europe, which would make Nazi Germany huge on the map during that period. After the war, it split up into two countries — West Germany which was part of NATO, and East Germany which was part of the Warsaw Pact.&lt;br /&gt;
&lt;br /&gt;
'''Persia or Iran?'''&lt;br /&gt;
Persia was renamed Iran in 1935.&lt;br /&gt;
&lt;br /&gt;
'''Cambodia?'''&lt;br /&gt;
Cambodia (or Kampuchea) declared independence from France in 1953.&lt;br /&gt;
&lt;br /&gt;
'''Eritrea is a part of...'''&lt;br /&gt;
Eritrea declared independence from Italy in 1952, joining Ethiopia to create the [https://en.wikipedia.org/wiki/Federation_of_Ethiopia_and_Eritrea Federation of Ethiopia and Eritrea].&lt;br /&gt;
&lt;br /&gt;
'''Canada is...'''&lt;br /&gt;
In 1949, the [https://en.wikipedia.org/wiki/Dominion_of_Newfoundland Dominion of Newfoundland] became a part of Canada. Before that, it was marked as its own region on the map, so maps from 1948 and before would have Canada &amp;quot;missing a piece&amp;quot; on its east coast as compared to how it looks today.&lt;br /&gt;
&lt;br /&gt;
'''How many Vietnams are there?'''&lt;br /&gt;
On April 30, 1975, forces from North Vietnam captured Saigon, and reunified the country, in an event known as [https://en.wikipedia.org/wiki/Reunification_Day Reunification Day], which marked the end of the Vietnam War. Maps before this date would have &amp;quot;North Vietnam&amp;quot; and &amp;quot;South Vietnam&amp;quot; on them rather than a single &amp;quot;Vietnam&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
'''Bangladesh?'''&lt;br /&gt;
Bangladesh declared independence from Pakistan in 1972.&lt;br /&gt;
&lt;br /&gt;
'''Is the area south of Lake Victoria...'''&lt;br /&gt;
The area called Tanganyika declared independence from Britain to form its own country in 1961, and unified with Zanzibar to create Tanzania in 1964.&lt;br /&gt;
&lt;br /&gt;
'''The town on I-25 between Albuquerque and El Paso is [Hot Springs 1948-49] or [Truth or Consequences 1950-52]'''&lt;br /&gt;
I-25 didn't exist for any of the years listed for this item, since the Interstate Highway System wasn't launched until 1956.  The highway designation on maps printed during the years listed was U.S. 85.  The town continues to be called &amp;quot;Truth or Consequences&amp;quot;, although locals say that it provides more of the latter than of the former.&lt;br /&gt;
&lt;br /&gt;
This question is also for the wrong time period, as the search tree leading to a British Tanganyika is only the period from 1960-1961.&lt;br /&gt;
&lt;br /&gt;
'''Jimmy Carter is...'''&lt;br /&gt;
On April 20, 1979, Jimmy Carter was attacked by a giant swimming rabbit, a fact referenced in [[204|204: America]]. This fact would not normally be referenced on a map, however, and is simply a joke entry that leads to the next question.&lt;br /&gt;
&lt;br /&gt;
'''The Sinai is part of what country?'''&lt;br /&gt;
In 1979, Israel signed a piece Treaty in which it would gradually retreat from the entire Sinai Peninsula, handing that area to Egypt. This happened over a period of three years, completing in 1982.&lt;br /&gt;
&lt;br /&gt;
'''What's the capital of Micronesia?'''&lt;br /&gt;
The [https://en.wikipedia.org/wiki/Federated_States_of_Micronesia Federated States of Micronesia] are a group of small islands in the Pacific Ocean. Their capital was Kolonia until 1989, when it changed to Palikir, on the same island.&lt;br /&gt;
&lt;br /&gt;
'''Republic of the Upper Volta or Burkina Faso?'''&lt;br /&gt;
Burkina Faso was named the Republic of the Upper Volta until 1984, when the president Thomas Sankara decided to rename it.&lt;br /&gt;
&lt;br /&gt;
'''(Number of Yemens) + (Number of Germanys) = ?'''&lt;br /&gt;
In 1990, two unification events took place: the [https://en.wikipedia.org/wiki/Yemeni_unification Yemeni unification] on May 22, and the [https://en.wikipedia.org/wiki/German_reunification German reunification] on October 3. Before these events, in early 1990, there would have been four Yemens and Germanys total. In mid-1990, when only the Yemeni unification had taken place, there would be one Yemen and two Germanys, for a total of three. and in late 1990, after both events took place, there would be one of each for a total of two.&lt;br /&gt;
&lt;br /&gt;
=== Post-Soviet branch (1991-) ===&lt;br /&gt;
&lt;br /&gt;
'''Zaire?''' &lt;br /&gt;
Zaire was one of a series of names for what is today called the Democratic Republic of the Congo. In 1996 a (successful) revolt began to oust the reigning government from power. As part of this revolution, the country was renamed. The original name change away from 'Congo' was part of an 'Africanisation' naming campaign, although 'Congo' is in origin an authentic African name for the river that set the boundaries of the nation.  &lt;br /&gt;
&lt;br /&gt;
'''Serbia and Montenegro are...'''&lt;br /&gt;
Serbia and Montenegro were a remnant of Yugoslavia. Montenegro voted to become its own country in 2006.&lt;br /&gt;
&lt;br /&gt;
'''East Timor?'''&lt;br /&gt;
East Timor is a nation north of Australia and south east of Indonesia. During the dutch colonization of Indonesia east Timor remained in Portuguese hands. While occupied and annexed by Indonesia since 1976, east Timor retained its own culture and voted for independence, then had a nasty militia action that required UN peacekeeping action, and finally become independent in 2002.&lt;br /&gt;
&lt;br /&gt;
'''How many Sudans are there?'''&lt;br /&gt;
In 2011, after a long history of violence between the two portions of the country (which can be characterized as Islamic vs. Christian and Traditional Religions), South Sudan became independent from its northern neighbor.&lt;br /&gt;
&lt;br /&gt;
'''Is Crimea disputed?'''&lt;br /&gt;
In 2014, a revolution ousted the current Ukrainian president. Crimea had its own civil unrest, and Russian troops exploited the unrest to launch an invasion. A referendum, where many nations, including all member states of the EU, the USA, and Canada, disputed the democratic legitimacy of the referendum, was held during this and ostensibly decided in favor of russian annexation.&lt;br /&gt;
&lt;br /&gt;
====Radioactive Colorado Subbranch====&lt;br /&gt;
&lt;br /&gt;
'''&amp;quot;Colorado&amp;quot; or &amp;quot;Danger—Radioactive Exclusion Zone—Avoid&amp;quot;?'''&lt;br /&gt;
This entry and the one below it are now referring to hypothetical future events: specifically, a huge radioactivity event in Colorado that takes place some time in 2022.&lt;br /&gt;
&lt;br /&gt;
'''Does the warning mention the spiders?'''&lt;br /&gt;
Presumably some time in 2023, the radioactive exclusion zone also becomes infested with mutant spiders.&lt;br /&gt;
&lt;br /&gt;
=== Not a Political Map Branch ===&lt;br /&gt;
&lt;br /&gt;
'''Can you see the familiar continents?'''&lt;br /&gt;
This question asks if the usual continents are present on the map, after the reader has indicated that Jan Mayen is not on the map. This means that either the map is not a political map (in which case it is a satellite image), or it is not a map of Earth at all, in which case the question starts asking about characteristics of fictional maps instead.&lt;br /&gt;
&lt;br /&gt;
==== Topological Map / Satellite Image Subbranch ====&lt;br /&gt;
&lt;br /&gt;
'''This sounds like a physical map or satellite photo.''' &lt;br /&gt;
The following questions are about physical geography. Many of these features are not generally tracked accurately in maps - many maps still show the Aral Sea, even though it's now mostly evaporated - but are clearly visible in photos.&lt;br /&gt;
&lt;br /&gt;
'''Is there a big lake in Southern California? (created by mistake)''' &lt;br /&gt;
[https://en.wikipedia.org/wiki/Salton_Sea Salton Sea] A previously dry lakebed accidentally flooded in 1905 while attempting to increase irrigation to the area from the Colorado River&lt;br /&gt;
&lt;br /&gt;
'''How far East do the American Prairies reach?'''&lt;br /&gt;
The Northwest Territory was incorporated in pieces ~1820s, there may be something more relevant to draw the line at Indiana though.  Likely this [https://en.wikipedia.org/wiki/Indian_removals_in_Indiana]&lt;br /&gt;
&lt;br /&gt;
'''Is there a big lake in the middle of Ghana? (Created on Purpose)'''&lt;br /&gt;
[https://en.wikipedia.org/wiki/Lake_Volta Lake Volta]&lt;br /&gt;
&lt;br /&gt;
====Fitional Map / Non-Map Subbranch====&lt;br /&gt;
&lt;br /&gt;
'''Rivers 'Sirion' or 'Anduin'?'''&lt;br /&gt;
The rivers Sirion and Anduin are part of Middle Earth, the fictional setting of J.R.R. Tolkien's ''Lord of the Rings'' books. If either of these rivers are present on the map, then the map is of Middle Earth, in which case the questions following are questions to determine which age the map is of. If these rivers are not present, then the questions continue trying to determine which fictional world the map represents.&lt;br /&gt;
&lt;br /&gt;
'''Cair Paravel?'''&lt;br /&gt;
[[http://narnia.wikia.com/wiki/Cair_Paravel Cair Paravel]] is the capital of the Kingdom of Narnia.  It is a common point for all the books in the Chronicles of Narnia except for The Magician's Nephew (which covers the period of history before the castle was built).  It is sufficiently important that it would presumably be included in any map accompanying a Narnia book, even if none of the action in the story occurs there.&lt;br /&gt;
&lt;br /&gt;
=====Narnia Subbranch=====&lt;br /&gt;
&lt;br /&gt;
'''Calormen?'''&lt;br /&gt;
[[http://narnia.wikia.com/wiki/Calormen Calormen]] is an foreign empire in the Chronicles of Narnia.  While it was indirectly referenced in the first three books C.S. Lewis published, it was not included in maps until the later books in the series.&lt;br /&gt;
&lt;br /&gt;
'''Weird Recursive Heaven?'''&lt;br /&gt;
This refers to the last book in the Narnia series, The Last Battle, where the protagonists find themselves in [[http://narnia.wikia.com/wiki/Aslan's_Country Aslan's Country]], a glorious afterlife of which Narnia (along with Earth and presumably every other world) is only a shadowy reflection.&lt;br /&gt;
&lt;br /&gt;
'''Lotta Islands?'''&lt;br /&gt;
This refers to [[http://www.charliewstarr.com/_Media/mapdawntreader.gif this map]] from The Voyage of the Dawn Treader, which focused on a ship voyage from Cair Paravel to the eastern edge of the world and back.&lt;br /&gt;
&lt;br /&gt;
'''Beruna (Ford/Bridge)'''&lt;br /&gt;
This refers to [[http://4.bp.blogspot.com/-54_2TDRUbHY/TpJHzFBzmiI/AAAAAAAALOA/q3RnPSvfdJ0/s1600/IMG.jpg the map]] of Narnia originally published in Prince Caspian.  During the time of The Lion, the Witch, and the Wardrobe, the people of Beruna crossed the Great River via a ford, but it had been replaced by a bridge at the beginning of Prince Caspian.  &lt;br /&gt;
&lt;br /&gt;
'''Narnia Subbranch ends'''&lt;br /&gt;
&lt;br /&gt;
'''Mossflower'''&lt;br /&gt;
A forest from the [https://en.wikipedia.org/wiki/Redwall Redwall] book series.&lt;br /&gt;
&lt;br /&gt;
======Not a Map Branch======&lt;br /&gt;
'''Is it larger than a breadbox?''' The most common reference to breadboxes is the phrase &amp;quot;Is it bigger than a breadbox?&amp;quot; when trying to guess what some surprise object may be. However, instead of asking further questions to narrow down the choices, the comic just gives a guess for each response. It is worth noticing that the comic guesses a breadbox itself as something about the same size as a breadbox.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
&lt;br /&gt;
Guide to figuring out the age of an undated world map&lt;br /&gt;
&lt;br /&gt;
(Assuming it's complete, labeled in english, and detailed enough)&lt;br /&gt;
&lt;br /&gt;
Start:&lt;br /&gt;
* Istanbul or Constantinople?&lt;br /&gt;
** Constantinople:&lt;br /&gt;
*** &amp;lt;span id=&amp;quot;canada-alaska-tokyo&amp;quot;&amp;gt;Do any of these exist? Independent Canada; US Territory of Alaska; Tokyo.&amp;lt;/span&amp;gt;&lt;br /&gt;
**** No:&lt;br /&gt;
***** The Holy Roman Empire?&lt;br /&gt;
****** Yes:&lt;br /&gt;
******* 1805 or earlier (before this point, the modern idea of a complete political map of the world gets hard to apply.)&lt;br /&gt;
****** No:&lt;br /&gt;
******* The United States?&lt;br /&gt;
******** No:&lt;br /&gt;
********* How sure are you that this map is in english?&lt;br /&gt;
******** Yes:&lt;br /&gt;
********* Texas is...&lt;br /&gt;
********** Part of Mexico:&lt;br /&gt;
*********** Florida is part of...&lt;br /&gt;
************ Spain:&lt;br /&gt;
************* Paraguay?&lt;br /&gt;
************** No: '''1806-10'''&lt;br /&gt;
************** Yes: '''1811-17'''&lt;br /&gt;
************ The US:&lt;br /&gt;
************* Venezuela and/or ecuador?&lt;br /&gt;
************** No: '''1818-29'''&lt;br /&gt;
************** Yes: '''1830-33'''&lt;br /&gt;
********** Independent: '''1834-45'''&lt;br /&gt;
********** Part of the US:&lt;br /&gt;
*********** Does Russia border the Sea of Japan?&lt;br /&gt;
************ No:&lt;br /&gt;
************* The US's southern border looks...&lt;br /&gt;
************** Weird: '''1846-53'''&lt;br /&gt;
************** Normal: '''1854-56'''&lt;br /&gt;
************ Yes: '''1858-67'''&lt;br /&gt;
**** Yes:&lt;br /&gt;
***** South Africa?&lt;br /&gt;
****** No:&lt;br /&gt;
******* Rhodesia?&lt;br /&gt;
******** No:&lt;br /&gt;
********* Is Bolivia landlocked?&lt;br /&gt;
********** No:&lt;br /&gt;
*********** &amp;quot;Buda&amp;quot; and &amp;quot;Pest&amp;quot; or &amp;quot;Budapest&amp;quot;?&lt;br /&gt;
************ Buda and Pest: '''1868-72'''&lt;br /&gt;
************ Budapest: '''1873-83'''&lt;br /&gt;
********** Yes: '''1884-95'''&lt;br /&gt;
******** Yes:&lt;br /&gt;
********* Is Norway part of Sweden?&lt;br /&gt;
********** Yes: '''1896-1905'''&lt;br /&gt;
********** No: '''1906-09'''&lt;br /&gt;
****** Yes:&lt;br /&gt;
******* Austria-Hungary?&lt;br /&gt;
******** Yes:&lt;br /&gt;
********* Albania?&lt;br /&gt;
********** No: '''1910-12'''&lt;br /&gt;
********** Yes: '''1913-18'''&lt;br /&gt;
******** No:&lt;br /&gt;
********* Leningrad?&lt;br /&gt;
********** No: '''1919-23'''&lt;br /&gt;
********** Yes: '''1924-29'''&lt;br /&gt;
** Neither:&lt;br /&gt;
*** Does the Ottoman Empire exist?&lt;br /&gt;
**** Yes: '''[[#canada-alaska-tokyo]]'''&lt;br /&gt;
**** No:&lt;br /&gt;
***** The Soviet Union?&lt;br /&gt;
****** Yes:&lt;br /&gt;
******* Saudi Arabia?&lt;br /&gt;
******** Yes:&lt;br /&gt;
********* &amp;lt;span id=&amp;quot;west-africa-french-blob&amp;quot;&amp;gt;Is most of West Africa a giant french blob?&amp;lt;/span&amp;gt;&lt;br /&gt;
********** Yes:&lt;br /&gt;
*********** &amp;lt;span id=&amp;quot;bangladesh&amp;quot;&amp;gt;Bangladesh?&amp;lt;/span&amp;gt;&lt;br /&gt;
************ No:&lt;br /&gt;
************* Is the area south of Lake Victoria...&lt;br /&gt;
************** British:&lt;br /&gt;
*************** The town on I-25 between Albuquerque and El Paso is...&lt;br /&gt;
**************** Hot Springs: '''1948-49'''&lt;br /&gt;
**************** Truth or Consequences: '''1950-52'''&lt;br /&gt;
************** Tanganyika: '''1961-64'''&lt;br /&gt;
************** Tanzania: '''1965-71'''&lt;br /&gt;
************ Yes: '''1972-75'''&lt;br /&gt;
********** No:&lt;br /&gt;
*********** How many Vietnams are there?&lt;br /&gt;
************ Two:&lt;br /&gt;
************* [[#bangladesh]]&lt;br /&gt;
************ One:&lt;br /&gt;
************* Jimmy Carter is...&lt;br /&gt;
************** Being attacked by a giant swimming rabbit: '''April 20, 1979'''&lt;br /&gt;
************** Fine:&lt;br /&gt;
*************** The Sinai is part of what country?&lt;br /&gt;
**************** Israel: '''1976-79'''&lt;br /&gt;
**************** Mostly Israel: '''1980'''&lt;br /&gt;
**************** Mostly Egypt: '''1981'''&lt;br /&gt;
**************** Egypt:&lt;br /&gt;
***************** What's the capital of Micronesia?&lt;br /&gt;
****************** Kolonia:&lt;br /&gt;
******************* Republic of the Upper Volta or Burkina Faso?&lt;br /&gt;
******************** Upper Volta: '''1982-84'''&lt;br /&gt;
******************** 1985-88&lt;br /&gt;
****************** Palikir:&lt;br /&gt;
******************* (number of Yemens) + (number of Germanys) = ?&lt;br /&gt;
******************** Four: '''1989-early 1990'''&lt;br /&gt;
******************** Three: '''mid-1990'''&lt;br /&gt;
******************** Two: '''late 1990-1991'''&lt;br /&gt;
******** No: '''1922-1932'''&lt;br /&gt;
****** No:&lt;br /&gt;
******* North Korea?&lt;br /&gt;
******** Yes:&lt;br /&gt;
********* &amp;lt;span id=&amp;quot;zaire&amp;quot;&amp;gt;Zaire? or: '''&amp;quot;Hong Kong (UK)&amp;quot;&amp;lt;/span&amp;gt;'''&lt;br /&gt;
********** Yes: '''1992-96'''&lt;br /&gt;
********** No:&lt;br /&gt;
*********** Serbia/Montenegro are...&lt;br /&gt;
************ One country:&lt;br /&gt;
************* East Timor?&lt;br /&gt;
************** No: '''1997-2001'''&lt;br /&gt;
************** Yes: '''2002-06'''&lt;br /&gt;
************ Two countries:&lt;br /&gt;
************* How many Sudans are there?&lt;br /&gt;
************** One: '''2007-11'''&lt;br /&gt;
************** Two:&lt;br /&gt;
************** Is Crimea disputed?&lt;br /&gt;
*************** Yes:&lt;br /&gt;
**************** &amp;quot;Colorado&amp;quot; or &amp;quot;Danger—Radioactive Exclusion Zone—Avoid&amp;quot;?&lt;br /&gt;
***************** Colorado: '''2014-21'''&lt;br /&gt;
***************** Danger:&lt;br /&gt;
****************** Does the warning mention the spiders?&lt;br /&gt;
******************* No: '''2022'''&lt;br /&gt;
******************* Yes: '''2023 or later'''&lt;br /&gt;
*************** No: '''2012-13'''&lt;br /&gt;
******** No:&lt;br /&gt;
********* Saint Trimble's Island&lt;br /&gt;
********** No:&lt;br /&gt;
*********** Is Jan Mayen part of the Kingdom of Norway?&lt;br /&gt;
************ Not yet:&lt;br /&gt;
************* [[#canada-alaska-tokyo]]&lt;br /&gt;
************ What?&lt;br /&gt;
************* Can you see the familiar continents?&lt;br /&gt;
************** Yes:&lt;br /&gt;
*************** This sounds like a physical map or satellite photo.&lt;br /&gt;
**************** Yes, that's it&lt;br /&gt;
***************** Is Lake Chad missing?&lt;br /&gt;
****************** No:&lt;br /&gt;
******************* How far east do the American Prairies reach?&lt;br /&gt;
******************** Indiana: '''before 1830'''&lt;br /&gt;
******************** The Mississippi: '''1830s-80s'''&lt;br /&gt;
******************** Nebraska:&lt;br /&gt;
********************* Is there a big lake in the middle of Southern California? (created by mistake)&lt;br /&gt;
********************** No: '''1860s-1900s'''&lt;br /&gt;
********************** Yes: '''1910s'''&lt;br /&gt;
******************** What prairies?&lt;br /&gt;
********************* Is there a big lake in the middle of Ghana? (created on purpose)&lt;br /&gt;
********************** No: '''1920s-50s'''&lt;br /&gt;
********************** Yes: '''1960s-70s'''&lt;br /&gt;
****************** Yes:&lt;br /&gt;
******************* Is the Aral Sea missing?&lt;br /&gt;
******************** No: '''1970s-90s'''&lt;br /&gt;
******************** Yes: '''2000s+'''&lt;br /&gt;
************** No:&lt;br /&gt;
*************** Rivers &amp;quot;Sirion&amp;quot; or &amp;quot;Anduin&amp;quot;?&lt;br /&gt;
**************** Yes:&lt;br /&gt;
***************** Mordor?&lt;br /&gt;
****************** No:&lt;br /&gt;
******************* Beleriand?&lt;br /&gt;
******************** Yes: '''First Age'''&lt;br /&gt;
******************** No: '''Early Second Age'''&lt;br /&gt;
****************** Yes:&lt;br /&gt;
******************* Númenor?&lt;br /&gt;
******************** Yes: '''Late Second Age'''&lt;br /&gt;
******************** No:&lt;br /&gt;
********************* The forest east of the Misty Mountains is...&lt;br /&gt;
********************** Greenwood: '''Early Third Age'''&lt;br /&gt;
********************** Mirkwood: '''Late Third Age'''&lt;br /&gt;
********************** The Wood of Greenleaves: '''Fourth Age'''&lt;br /&gt;
**************** No:&lt;br /&gt;
***************** Cair Paravel?&lt;br /&gt;
****************** Yes:&lt;br /&gt;
******************* Calormen?&lt;br /&gt;
******************** No:&lt;br /&gt;
********************* Lotta Islands?&lt;br /&gt;
********************** No:&lt;br /&gt;
*********************** Beruna&lt;br /&gt;
************************ Ford: '''The Lion, the Witch and the Wardrobe'''&lt;br /&gt;
************************ Bridge:&lt;br /&gt;
********************** Yes: '''Prince Caspian'''&lt;br /&gt;
******************** Yes:&lt;br /&gt;
********************* Weird recursive heaven?&lt;br /&gt;
********************** No: '''one of the random later books'''&lt;br /&gt;
********************** Yes: '''The Last Battle'''&lt;br /&gt;
****************** No:&lt;br /&gt;
******************* Mossflower?&lt;br /&gt;
******************** Yes:&lt;br /&gt;
********************* Redwall&lt;br /&gt;
******************** No:&lt;br /&gt;
********************* Is the world on the back of a turtle?&lt;br /&gt;
********************** Yes: '''Discworld'''&lt;br /&gt;
********************** No:&lt;br /&gt;
*********************** Are you ''sure'' this is a map?&lt;br /&gt;
************************ Yes:&lt;br /&gt;
************************* Did you make it yourself?&lt;br /&gt;
************************** Yes:&lt;br /&gt;
*************************** It's very nice.&lt;br /&gt;
**************************** Thank you!&lt;br /&gt;
************************ No:&lt;br /&gt;
************************* Is it trying to bite you?&lt;br /&gt;
************************** No:&lt;br /&gt;
*************************** Is it larger than a breadbox?&lt;br /&gt;
**************************** Yes: '''tuba'''&lt;br /&gt;
**************************** No: '''stapler'''&lt;br /&gt;
**************************** About the same: '''breadbox'''&lt;br /&gt;
************************** Yes:&lt;br /&gt;
*************************** If you let it go, what does it do?&lt;br /&gt;
**************************** Hisses and runs away: '''cat'''&lt;br /&gt;
**************************** Screeches and flaps around the room breaking things: '''seagull'''&lt;br /&gt;
************ Yes:&lt;br /&gt;
************* Pakistan?&lt;br /&gt;
************** No:&lt;br /&gt;
*************** How many Germanys are there?&lt;br /&gt;
**************** One:&lt;br /&gt;
***************** Persia or Iran?&lt;br /&gt;
****************** Persia: '''1930-34'''&lt;br /&gt;
****************** Iran: '''1935-40'''&lt;br /&gt;
**************** One, but it's ''huge'': '''1941-45'''&lt;br /&gt;
**************** Two: '''1946-47'''&lt;br /&gt;
************** Yes:&lt;br /&gt;
*************** Cambodia?&lt;br /&gt;
**************** No:&lt;br /&gt;
***************** Eritrea is part of...&lt;br /&gt;
****************** Italy:&lt;br /&gt;
******************* Canada is...&lt;br /&gt;
******************** Missing a piece: '''1948'''&lt;br /&gt;
******************** Fine: '''1949-52'''&lt;br /&gt;
****************** Ethiopia: '''1952-53'''&lt;br /&gt;
**************** Yes:&lt;br /&gt;
***************** The United Arab Republic?&lt;br /&gt;
****************** No: '''1954-57'''&lt;br /&gt;
****************** Yes: '''1958-60'''&lt;br /&gt;
********** Yes: '''No, I made that one up.'''&lt;br /&gt;
** Istanbul:&lt;br /&gt;
*** Does the Soviet Union exist?&lt;br /&gt;
**** Yes:&lt;br /&gt;
***** [[#west-africa-french-blob]]&lt;br /&gt;
**** No:&lt;br /&gt;
***** [[#zaire]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Large drawings]]&lt;br /&gt;
[[Category:Maps]]&lt;br /&gt;
[[Category:Time]]&lt;br /&gt;
[[Category:Animals]]&lt;br /&gt;
[[Category:Geography]]&lt;br /&gt;
 &amp;lt;!-- Cat and seagull --&amp;gt;&lt;/div&gt;</summary>
		<author><name>162.158.85.147</name></author>	</entry>

	</feed>