Merge branch 'master' into time-travel-2

This commit is contained in:
Alex Tsernoh 2022-04-08 00:14:04 +01:00 committed by GitHub
commit 948c0d446c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 238 additions and 9 deletions

View file

@ -11,12 +11,14 @@
credentials = open('credentials', 'r')
client_id = credentials.readline().strip(' \t\n\r')
client_secret = credentials.readline().strip(' \t\n\r')
user = credentials.readline().strip(' \t\n\r')
pw = credentials.readline().strip(' \t\n\r')
reddit = praw.Reddit(client_id=client_id, client_secret=client_secret, user_agent='atlas_bot')
failcount = 0
successcount = 0
totalcount = 0
reddit = praw.Reddit(client_id=client_id, client_secret=client_secret, user_agent='atlas_bot',username=user,password=pw)
has_write_access = not reddit.read_only
if not has_write_access:
print("Warning: No write access. Post flairs will not be updated")
sleep(5)
jsonfile = open("../web/atlas.json", "r", encoding='utf-8')
existing = json.load(jsonfile)
@ -26,8 +28,17 @@
for item in existing:
existing_ids.append(item['id'])
def set_flair(submission, flair):
if has_write_access and submission.link_flair_text != flair:
flair_choices = submission.flair.choices()
flair = next(x for x in flair_choices if x["flair_text_editable"] and flair == x["flair_text"])
submission.flair.select(flair["flair_template_id"])
total_all_flairs = 0
duplicate_count = 0
failcount = 0
successcount = 0
totalcount = 0
outfile.write("[\n")
for submission in reddit.subreddit('placeAtlas2').new(limit=2000):
"""
@ -41,7 +52,8 @@
7. Append to file called "credentials"
8. Copy Secret
9. Append on newline to "credentials" file
10. Run Script
10. If you want flair write access append 2 newlines with username and password (Must be a mod, don't do this if you don't know what you're doing)
11. Run Script
Running Script
1. Input the next ID to use
@ -52,9 +64,10 @@
"""
total_all_flairs += 1
if (submission.id in existing_ids):
set_flair(submission, "Processed Entry")
print("Found first duplicate!")
duplicate_count += 1
if (duplicate_count > 10):
if (duplicate_count > 0):
break
else:
continue
@ -82,9 +95,11 @@
try:
outfile.write(json.dumps(json.loads(text))+" ,\n")
successcount += 1
set_flair(submission, "Processed Entry")
except json.JSONDecodeError:
failfile.write(text+",\n")
failcount += 1
set_flair(submission, "Rejected Entry")
print("written "+submission.id+" submitted "+str(round(time.time()-submission.created_utc))+" seconds ago")
totalcount += 1

102
tools/redditflairset.py Normal file
View file

@ -0,0 +1,102 @@
# Script to retroactively fix flairs
# Only touches things flaired "New entry" that either fail JSON parsing or are already in the atlas
# Otherwise, it leaves them untouched
import praw
import json
import time
import re
import os
credentials = open('credentials', 'r')
client_id = credentials.readline().strip(' \t\n\r')
client_secret = credentials.readline().strip(' \t\n\r')
user = credentials.readline().strip(' \t\n\r')
pw = credentials.readline().strip(' \t\n\r')
reddit = praw.Reddit(client_id=client_id, client_secret=client_secret, user_agent='atlas_bot',username=user,password=pw)
has_write_access = not reddit.read_only
if not has_write_access:
print("No write access, exiting without doing anything")
quit()
jsonfile = open("../web/atlas.json", "r", encoding='utf-8')
existing = json.load(jsonfile)
existing_ids = []
for item in existing:
existing_ids.append(item['id'])
def set_flair(submission, flair):
if has_write_access and submission.link_flair_text != flair:
print(submission.link_flair_text)
print(submission.id)
print(flair)
flair_choices = submission.flair.choices()
flair = next(x for x in flair_choices if x["flair_text_editable"] and flair == x["flair_text"])
submission.flair.select(flair["flair_template_id"])
return 1
return 0
total_all_flairs = 0
rejected_count = 0
processed_count = 0
#for submission in reddit.subreddit('placeAtlas2').new(limit=1000):
#for submission in reddit.subreddit('placeAtlas2').search('flair:"New Entry"',limit=1000,syntax='lucene', sort="top"):
#for submission in reddit.subreddit('placeAtlas2').search('flair:"New Entry"',limit=1000,syntax='lucene', sort="comments"):
#for submission in reddit.subreddit('placeAtlas2').search('flair:"New Entry"',limit=1000,syntax='lucene', sort="hot"):
#for submission in reddit.subreddit('placeAtlas2').search('flair:"New Entry"',limit=1000,syntax='lucene', sort="new"):
#for submission in reddit.subreddit('placeAtlas2').search('flair:"New Entry"',limit=1000,syntax='lucene', sort="relevance"):
"""
Auth setup
1. Head to https://www.reddit.com/prefs/apps
2. Click "create another app"
3. Give it a name and description
4. Select "script"
5. Redirect to http://localhost:8080
6. Copy ID (under Personal Use Script)
7. Append to file called "credentials"
8. Copy Secret
9. Append on newline to "credentials" file
10-. Append 2 newlines with username and password if you want flair write access
11. Run Script
Running Script
1. Input the next ID to use
2. Manually resolve errors in manual_atlas.json
3. Copy temp_atlas.json entries into web/_js/atlas.js
4. Pull Request
"""
total_all_flairs += 1
if (submission.id in existing_ids):
processed_count += set_flair(submission, "Processed Entry")
continue
if(submission.link_flair_text == "New Entry"):
text = submission.selftext
#Old backslash filter:
#text = text.replace("\\", "")
#New one: One \\ escapes a backslash in python's parser
# Two escape it again in the regex parser, so \\\\ is \
# Then anything but " or n is replaced with the first capture group (anything but " or n)
# Test in repl: re.sub("\\\\([^\"n])", "\\1", "\\t < removed slash, t stays and > stays \\n \\\"")
text = re.sub("\\\\([^\"n])", "\\1", text)
try:
text = text.replace("\"id\": 0,", "\"id\": 0,\n\t\t\"submitted_by\": \""+submission.author.name+"\",")
except AttributeError:
text = text.replace("\"id\": 0,", "\"id\": 0,\n\t\t\"submitted_by\": \""+"unknown"+"\",")
lines = text.split("\n")
for i, line in enumerate(lines):
if("\"id\": 0" in line):
lines[i] = line.replace("\"id\": 0", "\"id\": "+"\""+str(submission.id)+"\"")
text = "\n".join(lines)
try:
json.dumps(json.loads(text))
# Do not set processed, we're only updating old entries in atlas or invalid submission flairs and not processing
except json.JSONDecodeError:
rejected_count += set_flair(submission, "Rejected Entry")
print(f"\n\nTotal all flairs:{total_all_flairs}\nUpdated as rejected: {rejected_count}/{total_all_flairs}\nUpdated as processed: {processed_count}/{total_all_flairs}\n")

View file

@ -6823,7 +6823,6 @@
{"id": "txuuvt", "submitted_by": "K1t_Cat", "name": "Remnants of the old Greek flag", "description": "", "website": "", "subreddit": "", "center": [358.5, 165.5], "path": [[348.5, 161.5], [367.5, 161.5], [367.5, 168.5], [348.5, 168.5], [348.5, 161.5]]},
{"id": "txuuo2", "submitted_by": "yotsubashi19", "name": "Pomu Rainpuff", "description": "A member of LazuLight, the first wave of VTubers from NIJISANJI's English branch. She's Pomu!", "website": "https://www.youtube.com/channel/UCP4nMSTdwU1KqYWu3UH5DHQ", "subreddit": "/r/Nijisanji", "center": [1892.5, 739.5], "path": [[1893.5, 743.5], [1886.5, 743.5], [1885.5, 741.5], [1888.5, 738.5], [1887.5, 735.5], [1890.5, 734.5], [1892.5, 738.5], [1894.5, 735.5], [1894.5, 734.5], [1896.5, 734.5], [1897.5, 735.5], [1895.5, 737.5], [1900.5, 741.5], [1899.5, 743.5]]},
{"id": "txuudl", "submitted_by": "Difficult_Basil2254", "name": "canary island flag", "description": "The Canary Islands are an archipelago located in the Atlantic Ocean that forms a Spanish autonomous community in Northwest Africa, with the status of historical nationality. It is also one of the outermost regions of the European Union.", "website": "https://es.wikipedia.org/wiki/Canarias", "subreddit": "", "center": [1070.5, 1376.5], "path": [[1066.5, 1368.5], [1065.5, 1386.5], [1076.5, 1368.5], [1075.5, 1369.5], [1065.5, 1368.5], [1065.5, 1387.5], [1076.5, 1386.5], [1076.5, 1368.5], [1076.5, 1368.5], [1070.5, 1368.5]]},
{"id": "txutus", "submitted_by": "ShawermaBox", "name": "Vandalism", "description": "Previously, this space was occupied by an Israeli flag, but changed to a Palestinian flag, then back to an Israeli flag, and then finally to a Palestinian flag. Pro-Israel & pro-Palestine leaders came to an agreement to not attack one another afterwards. Yet, one blue dot remains - which was placed in a portion of the Palestinian flag which is all white (which is also all white on an Israeli flag), in an effort to vandalize it. ", "website": "", "subreddit": "", "center": [56.5, 661.5], "path": [[55.5, 660.5], [57.5, 660.5], [57.5, 662.5], [55.5, 662.5], [55.5, 660.5], [55.5, 660.5]]},
{"id": "txusul", "submitted_by": "AccordingClassroom30", "name": "Slovenian Flag", "description": "A shorter version was placed in the early stages of Place and was expanded to it's final lenght towards the end of the first day. Altho tryes to expand the white part of the flag were halted multiple times by Germany, an agrerement was proposed and accepted to have Bernd das Brot's beer foam spill into the white part of the flag. It was briefly invaded by the Cool S pattern after the second expansion, but quickly reconstructed and additional pixel art was added to the flag.", "website": "", "subreddit": "/r/slovenia", "center": [288.5, 879.5], "path": [[216.5, 868.5], [216.5, 888.5], [353.5, 888.5], [353.5, 886.5], [354.5, 885.5], [355.5, 884.5], [356.5, 883.5], [357.5, 883.5], [358.5, 884.5], [358.5, 868.5], [297.5, 868.5], [297.5, 874.5], [296.5, 875.5], [295.5, 875.5], [294.5, 876.5], [293.5, 877.5], [291.5, 879.5], [289.5, 879.5], [288.5, 880.5], [287.5, 880.5], [286.5, 881.5], [282.5, 881.5], [281.5, 882.5], [280.5, 882.5], [279.5, 883.5], [278.5, 883.5], [277.5, 884.5], [273.5, 884.5], [272.5, 883.5], [271.5, 883.5], [270.5, 882.5], [269.5, 882.5], [268.5, 881.5], [264.5, 881.5], [263.5, 880.5], [262.5, 880.5], [261.5, 879.5], [259.5, 879.5], [258.5, 878.5], [255.5, 875.5], [255.5, 875.5], [254.5, 875.5], [253.5, 874.5], [253.5, 865.5], [238.5, 865.5], [237.5, 866.5], [237.5, 867.5], [236.5, 868.5], [236.5, 869.5], [235.5, 870.5], [229.5, 870.5], [228.5, 869.5], [227.5, 869.5], [226.5, 868.5], [225.5, 867.5], [218.5, 867.5], [218.5, 868.5], [216.5, 868.5]]},
{"id": "txusjm", "submitted_by": "baga1706", "name": "TTC", "description": "The most powerful school in the world\nSCI<TTC\nMorgyd\u017c", "website": "", "subreddit": "", "center": [878.5, 1738.5], "path": [[868.5, 1735.5], [887.5, 1735.5], [887.5, 1741.5], [868.5, 1741.5]]},
{"id": "txursh", "submitted_by": "Bloemist", "name": "Color Wheel", "description": "Tiny color wheel by u/Bloemist", "website": "", "subreddit": "", "center": [1169.5, 476.5], "path": [[1166.5, 473.5], [1172.5, 473.5], [1172.5, 479.5], [1166.5, 479.5]]},
@ -7481,6 +7480,119 @@
{"id": "ty5mtw", "submitted_by": "AnonymousRandPerson", "name": "United States-Argentina hearts", "description": "Hearts depicting the flags of the United States and Argentina.", "website": "", "subreddit": "/r/AmericanFlagInPlace, /r/argentina", "center": [1774.5, 1844.5], "path": [[1771.5, 1819.5], [1769.5, 1821.5], [1769.5, 1867.5], [1773.5, 1870.5], [1775.5, 1870.5], [1779.5, 1866.5], [1779.5, 1821.5], [1777.5, 1819.5]]},
{"id": "ty5la5", "submitted_by": "nelabyrinth", "name": "LordKebun Logo", "description": "Logo of the GTARP streamer LordKebun who plays the character Mr. K, leader of Chang Gang, in GTARP server NoPixel.", "website": "", "subreddit": "r/Chang_Gang", "center": [418.5, 1057.5], "path": [[406.5, 1045.5], [429.5, 1045.5], [429.5, 1069.5], [406.5, 1069.5], [406.5, 1045.5]]},
{"id": "ty5l8q", "submitted_by": "HonestPollution623", "name": "Grass Minecraft", "description": "Grass is a non-solid plant block that has wheat seeds as a drop. Its color is biome-dependent, and matches the color of grass blocks. Tall grass [a] is a two-block high variety of grass. Ferns are variants of grass found only in certain biomes and have the same characteristics as grass.", "website": "", "subreddit": "/r/Minecraft", "center": [445.5, 1490.5], "path": [[442.5, 1487.5], [448.5, 1487.5], [448.5, 1492.5], [442.5, 1493.5], [442.5, 1487.5]]},
{"id": "ty5hb7", "submitted_by": "HonestPollution623", "name": "Pokeball", "description": "This type of Pok\u00e9 Ball is the weakest and the only type that is typically available at the beginning of the Pok\u00e9mon games. It has a catch rate modifier of \u00d71 in the catch formula.", "website": "", "subreddit": "/r/pokemon", "center": [0.5, 0.5], "path": []}
{"id": "ty5hb7", "submitted_by": "HonestPollution623", "name": "Pokeball", "description": "This type of Pok\u00e9 Ball is the weakest and the only type that is typically available at the beginning of the Pok\u00e9mon games. It has a catch rate modifier of \u00d71 in the catch formula.", "website": "", "subreddit": "/r/pokemon", "center": [0.5, 0.5], "path": []} ,
{"id": "tykxd8", "submitted_by": "JacobsDevelop", "name": "Portal 2: Desolation", "description": "Omega is a logo of Portal 2 called Desolation. First logo that was made on r/place was covered up so we agreed to make it on Monkeytype logo. After we got permission from them we made it and kept it to the end.", "website": "https://www.emberspark.games/desolation", "subreddit": "", "center": [647.5, 1327.5], "path": [[644.5, 1324.5], [644.5, 1329.5], [649.5, 1329.5], [649.5, 1324.5]]},
{"id": "tykwut", "submitted_by": "Chiweenies2", "name": "r/FSSH subreddit logo", "description": "A redirect subreddit for r/PlaceFishCult as FSSH was easier to make fit in a small space.", "website": "", "subreddit": "r/FSSH", "center": [451.5, 907.5], "path": [[449.5, 901.5], [452.5, 901.5], [452.5, 913.5], [449.5, 913.5]]},
{"id": "tykv4f", "submitted_by": "Chiweenies2", "name": "Lithuania Fish", "description": "A fish based on the flag of Lithuania.", "website": "", "subreddit": "r/PlaceFishCult", "center": [470.5, 898.5], "path": [[468.5, 897.5], [471.5, 897.5], [471.5, 899.5], [468.5, 899.5]]},
{"id": "tykup9", "submitted_by": "buzdolabimotoru", "name": "Tiny Maldives Flag", "description": "A very tiny Maldives flag at near of Bar\u0131\u015f Man\u00e7o", "website": "", "subreddit": "", "center": [749.5, 1896.5], "path": [[747.5, 1892.5], [751.5, 1892.5], [751.5, 1899.5], [747.5, 1899.5]]},
{"id": "tykuec", "submitted_by": "Chiweenies2", "name": "Hooty Fish", "description": "A fish based on the Owl House character Hooty.", "website": "", "subreddit": "r/PlaceFishCult", "center": [0.5, 0.5], "path": []},
{"id": "tyku9q", "submitted_by": "Captain_H0tdog", "name": "Joey from Fortnite", "description": "Joey is a legendary outfit from chapter 2 season 7 of Fortnite: Battle Royale.", "website": "", "subreddit": "", "center": [28.5, 1089.5], "path": [[24.5, 1084.5], [24.5, 1093.5], [31.5, 1093.5], [31.5, 1084.5], [24.5, 1084.5]]},
{"id": "tykt2i", "submitted_by": "Etta3413", "name": "Southern Lattice Meloetta Memorial", "description": "A small memorial to the Meloetta sprite that had been located at the bottom of the Southern Lattice, which was destroyed by an overnight attack which took over much of the Southern Lattice.", "website": "", "subreddit": "", "center": [1521.5, 1514.5], "path": [[1517.5, 1510.5], [1521.5, 1510.5], [1521.5, 1511.5], [1525.5, 1511.5], [1525.5, 1514.5], [1524.5, 1514.5], [1524.5, 1517.5], [1520.5, 1517.5], [1520.5, 1516.5], [1516.5, 1516.5], [1516.5, 1513.5], [1517.5, 1513.5]]},
{"id": "tykrsh", "submitted_by": "Chiweenies2", "name": "Two Fish Kissing", "description": "Two fish who are kissing and in love with each other.", "website": "", "subreddit": "r/PlaceFishCult", "center": [286.5, 1639.5], "path": [[282.5, 1638.5], [289.5, 1638.5], [289.5, 1640.5], [282.5, 1640.5]]},
{"id": "tykqmy", "submitted_by": "Chiweenies2", "name": "Treasure Chest", "description": "I wonder what's inside?", "website": "", "subreddit": "r/PlaceFishCult", "center": [288.5, 1649.5], "path": [[287.5, 1648.5], [289.5, 1648.5], [289.5, 1649.5], [287.5, 1649.5]]},
{"id": "tykqht", "submitted_by": "Infinite-Dog-816", "name": "incomplete flag of Azerbaijan", "description": "white crescent and an eight-pointed star are missing in flag", "website": "https://en.wikipedia.org/wiki/Flag_of_Azerbaijan", "subreddit": "https://www.reddit.com/r/azerbaijan", "center": [1426.5, 1649.5], "path": [[1416.5, 1644.5], [1436.5, 1644.5], [1436.5, 1653.5], [1415.5, 1653.5]]},
{"id": "tykpmk", "submitted_by": "buzdolabimotoru", "name": "Persian Gulf", "description": "A sea at southern Iran. Seen in Iran map on Iran flag. USA likes here :)", "website": "", "subreddit": "", "center": [89.5, 303.5], "path": [[79.5, 297.5], [78.5, 297.5], [78.5, 299.5], [79.5, 299.5], [79.5, 302.5], [80.5, 302.5], [80.5, 304.5], [81.5, 305.5], [81.5, 306.5], [87.5, 306.5], [87.5, 305.5], [92.5, 305.5], [92.5, 306.5], [101.5, 306.5], [101.5, 305.5], [103.5, 303.5], [103.5, 302.5], [101.5, 302.5], [101.5, 303.5], [94.5, 303.5], [94.5, 302.5], [91.5, 302.5], [91.5, 301.5], [89.5, 301.5], [89.5, 302.5], [83.5, 302.5], [83.5, 301.5], [82.5, 300.5], [81.5, 300.5], [80.5, 299.5], [79.5, 298.5]]},
{"id": "tykpec", "submitted_by": "Etta3413", "name": "North Lattice Meloetta Memorial", "description": "A small memorial to the Meloetta sprite that used to be located just to the south, which was destroyed by Twitch streamer Asmongold having his viewers build a massive potfriend art on top of it not long before the second expansion of the canvas. ", "website": "", "subreddit": "", "center": [1058.5, 438.5], "path": [[1058.5, 434.5], [1054.5, 434.5], [1054.5, 437.5], [1053.5, 437.5], [1053.5, 440.5], [1057.5, 440.5], [1057.5, 441.5], [1061.5, 441.5], [1061.5, 438.5], [1062.5, 438.5], [1062.5, 435.5], [1058.5, 435.5]]},
{"id": "tykorp", "submitted_by": "glongv3", "name": "Leoncold", "description": "a famous peruvian streamer more knowing lke the frozen of frozen :v ", "website": "https://trovo.live/leoncraft", "subreddit": "", "center": [1601.5, 1653.5], "path": [[1597.5, 1649.5], [1597.5, 1657.5], [1605.5, 1657.5], [1605.5, 1649.5]]},
{"id": "tykoij", "submitted_by": "MatosPC", "name": "Team Del Sensei's Logo", "description": "Group of friends that was created several years ago, some of the remain and active members are: RekIaR (creator), IsaiVC, iTzElectro_O, MatosPC\nLogo made by MatosPC", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []},
{"id": "tyknu6", "submitted_by": "buzdolabimotoru", "name": "Lake Peipsi", "description": "Lake Peipsi is located south of the Gulf of Finland on the border between the Republic of Estonia and Russian Federation, being the largest international lake in Europe.", "website": "", "subreddit": "", "center": [1950.5, 115.5], "path": [[1952.5, 109.5], [1949.5, 109.5], [1947.5, 111.5], [1947.5, 112.5], [1948.5, 113.5], [1948.5, 115.5], [1949.5, 116.5], [1949.5, 118.5], [1950.5, 118.5], [1950.5, 121.5], [1951.5, 121.5], [1951.5, 123.5], [1952.5, 123.5]]},
{"id": "tykl9x", "submitted_by": "Chiweenies2", "name": "Big Fish", "description": "A highly detailed and massive fish.", "website": "", "subreddit": "r/PlaceFishCult", "center": [1433.5, 921.5], "path": [[1428.5, 921.5], [1432.5, 917.5], [1437.5, 918.5], [1437.5, 923.5], [1432.5, 924.5]]},
{"id": "tykkap", "submitted_by": "Chiweenies2", "name": "BIG CRAB", "description": "A crab is happens to be of humongous size.", "website": "", "subreddit": "r/PlaceFishCult", "center": [1445.5, 956.5], "path": [[1441.5, 952.5], [1445.5, 955.5], [1449.5, 952.5], [1447.5, 958.5], [1443.5, 958.5]]},
{"id": "tykk71", "submitted_by": "NachoDipFan", "name": "Finn the Human", "description": "A mini version of a cartoon character Finn the Human from Adventure Time", "website": "", "subreddit": "/r/adventuretime", "center": [182.5, 69.5], "path": [[179.5, 65.5], [179.5, 72.5], [185.5, 72.5], [185.5, 65.5], [185.5, 65.5], [179.5, 65.5], [179.5, 65.5]]},
{"id": "tykj4c", "submitted_by": "Chiweenies2", "name": "No fin", "description": "A fish who unfortunately lost a fin.", "website": "", "subreddit": "r/PlaceFishCult", "center": [1442.5, 919.5], "path": [[1441.5, 918.5], [1444.5, 918.5], [1442.5, 920.5], [1441.5, 919.5]]},
{"id": "tykicd", "submitted_by": "Who_Diamond", "name": "Snoo Easter Egg", "description": "On the original r/place, there was depicted two Snoo (Reddit's mascot) and a dog looking off the edge of the map while on a sled. Though not shown in the atlas, it can still be seen here on the time-lapse (https://www.reddit.com/r/place/?cx=3&cy=0&px=6&ts=1649112460185).", "website": "", "subreddit": "", "center": [2.5, 1.5], "path": [[0.5, -1.5], [0.5, 0.5], [4.5, 0.5], [4.5, 2.5], [0.5, 2.5]]},
{"id": "tyki1z", "submitted_by": "Chiweenies2", "name": "Kissing Fish", "description": "Two fish who are in love. The pink fish is named Princess and the green fish is named Prince.", "website": "", "subreddit": "r/PlaceFishCult", "center": [1442.5, 923.5], "path": [[1438.5, 922.5], [1445.5, 922.5], [1445.5, 924.5], [1438.5, 924.5]]},
{"id": "tykhuc", "submitted_by": "Rubi-neverstops", "name": "Spanish Mini Flag ", "description": "Another territory of spain on place made by the spaniards. rUbI", "website": "", "subreddit": "/r/esplace", "center": [1992.5, 1319.5], "path": [[1985.5, 1318.5], [2000.5, 1318.5], [1999.5, 1320.5], [1985.5, 1320.5], [1985.5, 1318.5], [1999.5, 1320.5], [1999.5, 1320.5]]},
{"id": "tykgnk", "submitted_by": "Chiweenies2", "name": "Cornelius", "description": "A red happy dancing crab named Cornelius.", "website": "", "subreddit": "r/PlaceFishCult", "center": [1436.5, 932.5], "path": [[1434.5, 934.5], [1433.5, 931.5], [1434.5, 930.5], [1438.5, 931.5], [1438.5, 934.5]]},
{"id": "tykfkb", "submitted_by": "Chiweenies2", "name": "Mr. Puff", "description": "A front-facing pufferfish named Mr. Puff.", "website": "", "subreddit": "r/PlaceFishCult", "center": [0.5, 0.5], "path": []},
{"id": "tykdr5", "submitted_by": "Chiweenies2", "name": "Mari", "description": "A multi-colored fish named Mari.", "website": "", "subreddit": "r/PlaceFishCult", "center": [301.5, 1627.5], "path": [[299.5, 1626.5], [302.5, 1626.5], [302.5, 1628.5], [299.5, 1628.5]]},
{"id": "tykdob", "submitted_by": "Chiweenies2", "name": "Lime", "description": "A lime fish named Lime.", "website": "", "subreddit": "r/PlaceFishCult", "center": [307.5, 1626.5], "path": [[305.5, 1625.5], [308.5, 1625.5], [308.5, 1627.5], [305.5, 1627.5]]},
{"id": "tykbzd", "submitted_by": "Chiweenies2", "name": "Hugh", "description": "A purple fish named Hugh.", "website": "", "subreddit": "r/PlaceFishCult", "center": [296.5, 1632.5], "path": [[294.5, 1631.5], [297.5, 1631.5], [297.5, 1633.5], [294.5, 1633.5]]},
{"id": "tykahb", "submitted_by": "Chiweenies2", "name": "Doh", "description": "A teal fish with a purple stripe named Doh.", "website": "", "subreddit": "r/PlaceFishCult", "center": [291.5, 1631.5], "path": [[289.5, 1630.5], [292.5, 1630.5], [292.5, 1632.5], [289.5, 1632.5]]},
{"id": "tyk9je", "submitted_by": "Chiweenies2", "name": "Deutscher Fisch", "description": "A German fish from the city of Rostock.", "website": "", "subreddit": "r/PlaceFishCult", "center": [291.5, 1626.5], "path": [[289.5, 1625.5], [292.5, 1625.5], [292.5, 1627.5], [289.5, 1627.5]]},
{"id": "tyk740", "submitted_by": "Chiweenies2", "name": "Chip", "description": "A teal gradient fish named Chip.", "website": "", "subreddit": "r/PlaceFishCult", "center": [285.5, 1627.5], "path": [[283.5, 1628.5], [283.5, 1626.5], [286.5, 1626.5], [286.5, 1628.5]]},
{"id": "tyk6ov", "submitted_by": "Andyangel98", "name": "First Romanian Flag", "description": "First Romanian Flag. It was replaced with Polish Flag in the end. The flag contained the Romanian coat of arms, a Dacia car, and other element specific to Romanian countrie.", "website": "", "subreddit": "", "center": [734.5, 179.5], "path": [[636.5, 138.5], [828.5, 139.5], [826.5, 199.5], [785.5, 197.5], [784.5, 240.5], [713.5, 237.5], [711.5, 217.5], [688.5, 198.5], [636.5, 199.5]]},
{"id": "tyk659", "submitted_by": "Chiweenies2", "name": "Squiggles", "description": "Squiggles is a neon tetra.", "website": "", "subreddit": "r/PlaceFishCult", "center": [285.5, 1631.5], "path": [[283.5, 1630.5], [286.5, 1630.5], [286.5, 1632.5], [283.5, 1632.5]]},
{"id": "tyk0w3", "submitted_by": "Chiweenies2", "name": "Nero", "description": "A fish named Nero based off of the pansexual pride flag.", "website": "", "subreddit": "r/PlaceFishCult", "center": [288.5, 1642.5], "path": [[286.5, 1641.5], [289.5, 1641.5], [289.5, 1643.5], [286.5, 1643.5]]},
{"id": "tyjzpf", "submitted_by": "Chiweenies2", "name": "Frog", "description": "A nice little green frog.", "website": "", "subreddit": "r/PlaceFishCult", "center": [284.5, 1647.5], "path": [[282.5, 1644.5], [286.5, 1644.5], [286.5, 1649.5], [282.5, 1649.5]]},
{"id": "tyjyx0", "submitted_by": "AllGussiedUp", "name": "Villa Maria Halll", "description": "The initials and colors of Villa Maria Hall: home of Drum Squad, SNATR, and the Auction at Oregon's University of Portland. Villa Viri Superbi.", "website": "www.up.edu", "subreddit": "", "center": [1720.5, 377.5], "path": [[1717.5, 372.5], [1718.5, 382.5], [1722.5, 382.5], [1722.5, 372.5], [1717.5, 372.5]]},
{"id": "tyjyk7", "submitted_by": "buzdolabimotoru", "name": "Hiiumaa", "description": "Second largest island in Estonia", "website": "", "subreddit": "", "center": [1912.5, 109.5], "path": [[1911.5, 112.5], [1909.5, 110.5], [1908.5, 109.5], [1912.5, 106.5], [1915.5, 109.5]]},
{"id": "tyjyk2", "submitted_by": "Torbots1197", "name": "TorBots Team 1197", "description": "A robotics team in the First Robotics Competition (FRC) program based in Torrance, California. Directly adjacent to it are other FRC teams from different high schools around the world.", "website": "https://torbots.wixsite.com/mysite", "subreddit": "/r/TorBots1197", "center": [1139.5, 1636.5], "path": [[1133.5, 1632.5], [1145.5, 1632.5], [1145.5, 1639.5], [1133.5, 1639.5], [1133.5, 1632.5]]},
{"id": "tyjyjm", "submitted_by": "Chiweenies2", "name": "Trans Fish", "description": "A fish designed of off the transgender pride flag.", "website": "", "subreddit": "r/PlaceFishCult", "center": [296.5, 1628.5], "path": [[293.5, 1628.5], [297.5, 1626.5], [297.5, 1630.5]]},
{"id": "tyjyfk", "submitted_by": "exer121", "name": "Catalan - toki pona heart", "description": "A heart made by the toki pona and catalan community for his friendship", "website": "", "subreddit": "r/tokipona, r/catalunya", "center": [740.5, 346.5], "path": [[737.5, 345.5], [738.5, 348.5], [740.5, 349.5], [741.5, 349.5], [742.5, 347.5], [743.5, 345.5], [741.5, 344.5], [740.5, 345.5], [738.5, 344.5]]},
{"id": "tyjwx6", "submitted_by": "buzdolabimotoru", "name": "Saaremaa", "description": "Largest island of Estonia", "website": "", "subreddit": "", "center": [1910.5, 118.5], "path": [[1906.5, 123.5], [1907.5, 124.5], [1908.5, 124.5], [1909.5, 123.5], [1909.5, 121.5], [1910.5, 121.5], [1910.5, 120.5], [1914.5, 120.5], [1915.5, 119.5], [1916.5, 118.5], [1916.5, 115.5], [1917.5, 115.5], [1917.5, 114.5], [1916.5, 114.5], [1915.5, 116.5], [1914.5, 115.5], [1913.5, 114.5], [1912.5, 114.5], [1911.5, 115.5], [1909.5, 115.5], [1908.5, 116.5], [1905.5, 116.5], [1906.5, 117.5], [1906.5, 118.5], [1905.5, 118.5], [1905.5, 120.5], [1907.5, 122.5]]},
{"id": "tyjwck", "submitted_by": "lolrofl_", "name": "LOL", "description": "LOL, or lol, is an initialism for laughing out loud and a popular element of Internet slang.", "website": "", "subreddit": "", "center": [1075.5, 1672.5], "path": [[1070.5, 1669.5], [1080.5, 1669.5], [1080.5, 1675.5], [1070.5, 1675.5]]},
{"id": "tyjvki", "submitted_by": "buzdolabimotoru", "name": "Talinn - Riga line", "description": "A golden line that shows Talinn and Riga, capitals of Estonia and Latvia", "website": "", "subreddit": "", "center": [1934.5, 120.5], "path": [[1930.5, 105.5], [1930.5, 109.5], [1934.5, 114.5], [1934.5, 117.5], [1935.5, 117.5], [1935.5, 119.5], [1934.5, 123.5], [1934.5, 126.5], [1927.5, 134.5], [1928.5, 135.5], [1929.5, 135.5], [1932.5, 133.5], [1935.5, 130.5], [1937.5, 126.5], [1937.5, 121.5], [1938.5, 115.5], [1933.5, 105.5]]},
{"id": "tyju45", "submitted_by": "buzdolabimotoru", "name": "Riga - Vilnus line", "description": "A golden line that connects Riga and Vilnus, capitals of Latvia and Lithuania", "website": "", "subreddit": "", "center": [1925.5, 153.5], "path": [[1923.5, 139.5], [1922.5, 140.5], [1922.5, 151.5], [1927.5, 163.5], [1929.5, 163.5], [1929.5, 161.5], [1928.5, 159.5], [1924.5, 150.5]]},
{"id": "tyjrvn", "submitted_by": "trbinsc", "name": "Rocket Lab Electron Rocket", "description": "Rocket Lab's Electron small-satellite launch vehicle, drawn roughly to scale with the nearby SpaceX Starship.", "website": "", "subreddit": "/r/RocketLab/", "center": [826.5, 674.5], "path": [[825.5, 668.5], [827.5, 668.5], [827.5, 679.5], [825.5, 679.5], [825.5, 679.5], [825.5, 679.5]]},
{"id": "tyjrt9", "submitted_by": "buzdolabimotoru", "name": "Baltic Sea", "description": "The sea between Baltics, Scandinavia and Northern Europe. Its third smallest sea after Aegean Sea and Marmara Sea. And it is the only sea in the \"place\"", "website": "", "subreddit": "", "center": [1904.5, 130.5], "path": [[1912.5, 166.5], [1913.5, 171.5], [1896.5, 172.5], [1896.5, 167.5], [1895.5, 166.5], [1895.5, 162.5], [1896.5, 161.5], [1896.5, 158.5], [1895.5, 157.5], [1895.5, 153.5], [1894.5, 153.5], [1893.5, 153.5], [1893.5, 150.5], [1898.5, 151.5], [1897.5, 144.5], [1892.5, 143.5], [1888.5, 142.5], [1887.5, 115.5], [1891.5, 115.5], [1901.5, 114.5], [1901.5, 104.5], [1918.5, 103.5], [1918.5, 110.5], [1919.5, 111.5], [1920.5, 113.5], [1919.5, 113.5], [1919.5, 118.5], [1920.5, 118.5], [1921.5, 120.5], [1923.5, 121.5], [1924.5, 119.5], [1926.5, 119.5], [1927.5, 121.5], [1925.5, 121.5], [1925.5, 133.5], [1920.5, 138.5], [1917.5, 136.5], [1917.5, 133.5], [1912.5, 126.5], [1904.5, 129.5], [1902.5, 138.5], [1899.5, 141.5], [1900.5, 151.5], [1899.5, 156.5], [1900.5, 159.5], [1899.5, 163.5], [1902.5, 162.5], [1904.5, 163.5], [1904.5, 164.5], [1905.5, 165.5]]},
{"id": "tyjn0w", "submitted_by": "buzdolabimotoru", "name": "Star of Vilnus", "description": "A shiny golden star that shows Vilnus, capital and the largest city of Lithuania", "website": "", "subreddit": "", "center": [1931.5, 165.5], "path": [[1930.5, 161.5], [1929.5, 162.5], [1929.5, 163.5], [1927.5, 163.5], [1926.5, 164.5], [1928.5, 166.5], [1927.5, 167.5], [1927.5, 168.5], [1928.5, 169.5], [1929.5, 169.5], [1930.5, 168.5], [1931.5, 168.5], [1932.5, 169.5], [1933.5, 169.5], [1934.5, 168.5], [1934.5, 167.5], [1933.5, 166.5], [1935.5, 164.5], [1934.5, 163.5], [1932.5, 163.5], [1932.5, 162.5], [1931.5, 161.5]]},
{"id": "tyjkqj", "submitted_by": "buzdolabimotoru", "name": "Big Ben", "description": "The \"Big Ben\", its name of just clock and not the Tower. And it is worlds secong biggest four faced clock. It is located in the Westminster Palace.", "website": "", "subreddit": "", "center": [695.5, 526.5], "path": [[692.5, 523.5], [692.5, 529.5], [698.5, 529.5], [698.5, 523.5]]},
{"id": "tyjhfq", "submitted_by": "Datal24", "name": "ConterPoto", "description": "An emote from the mexican youtuber/streamer Conterstine, member of elitecraft", "website": "https://www.twitch.tv/conterstine", "subreddit": "", "center": [1784.5, 1405.5], "path": [[1766.5, 1387.5], [1802.5, 1387.5], [1802.5, 1423.5], [1766.5, 1423.5], [1766.5, 1387.5]]},
{"id": "tyjh8s", "submitted_by": "LuiguSefirosu", "name": "Pewdiepie Waves", "description": "After losing a spot, a few people on the Pewdiepie Discord banded together to try a last ditch attempt at creating a small piece dedicated to Felix Arvid Ulf Kjellberg.", "website": "", "subreddit": "https://www.reddit.com/r/PewdiepieSubmissions/", "center": [0.5, 0.5], "path": []},
{"id": "tyjfuu", "submitted_by": "sethandthecrew", "name": "Yandhi, Kanye West", "description": "Originally going to be released in 2018 after West's made ye and Kids See Ghosts with Kid Cudi in Jackson Hole Wyoming as well as mainline produce 3 other albums. However after a rant on Saturday Night live, it was delayed, then delayed even more. It would eventfully turn into Jesus is King a year later with a few songs from Yandhi being reused with different vocals. Such as Selah, which was named Charkas during Yandhi, and Use This Gospel, which was named Law of Attraction during Yandhi made the final cut. Hurricane was originally set to release on Yandhi, made it on West's 2021 studio album, Donda, which the song would win a grammy. Many songs were cut from the final album, such as New Body with Nicki Minaj, and I Kill For Fun with YNW Kelly, who would ironcally be charged for murder months after the song was recorded. ( ", "website": "", "subreddit": "/r/westsubever", "center": [30.5, 814.5], "path": [[13.5, 799.5], [47.5, 799.5], [47.5, 830.5], [14.5, 830.5]]},
{"id": "tyjfmv", "submitted_by": "buzdolabimotoru", "name": "Star of Talinn", "description": "A gold star shows the Talinn, the capital city of Estonia", "website": "", "subreddit": "", "center": [1932.5, 102.5], "path": [[1927.5, 100.5], [1928.5, 101.5], [1929.5, 102.5], [1928.5, 103.5], [1928.5, 104.5], [1929.5, 105.5], [1930.5, 105.5], [1931.5, 104.5], [1932.5, 104.5], [1933.5, 105.5], [1934.5, 105.5], [1935.5, 104.5], [1935.5, 103.5], [1934.5, 102.5], [1936.5, 100.5], [1936.5, 99.5], [1928.5, 99.5]]},
{"id": "tyjfe7", "submitted_by": "dcawska", "name": "Idee HG", "description": "logo of lyc\u00e9e ferney by yann, noah, mathis, karel and demian", "website": "", "subreddit": "", "center": [856.5, 1633.5], "path": [[854.5, 1631.5], [854.5, 1635.5], [858.5, 1635.5], [858.5, 1631.5]]},
{"id": "tyjeke", "submitted_by": "buzdolabimotoru", "name": "Star of Riga", "description": "A star that shows Riga, the capital of Latvia", "website": "", "subreddit": "", "center": [1923.5, 136.5], "path": [[1923.5, 132.5], [1922.5, 133.5], [1921.5, 134.5], [1920.5, 134.5], [1919.5, 135.5], [1921.5, 137.5], [1920.5, 138.5], [1920.5, 139.5], [1921.5, 140.5], [1922.5, 140.5], [1923.5, 139.5], [1924.5, 139.5], [1925.5, 140.5], [1926.5, 140.5], [1927.5, 139.5], [1927.5, 138.5], [1926.5, 137.5], [1927.5, 136.5], [1928.5, 135.5], [1927.5, 134.5], [1925.5, 134.5], [1925.5, 133.5], [1924.5, 132.5]]},
{"id": "tyjddt", "submitted_by": "Mundane_Rice_8106", "name": "Pikachu", "description": "A small but fierce pikachu, it was suprised by the incoming white void", "website": "", "subreddit": "", "center": [1363.5, 121.5], "path": [[1359.5, 118.5], [1367.5, 118.5], [1367.5, 125.5], [1361.5, 125.5], [1360.5, 124.5], [1360.5, 122.5], [1359.5, 122.5], [1359.5, 122.5], [1359.5, 121.5], [1359.5, 120.5], [1359.5, 119.5], [1360.5, 118.5], [1365.5, 118.5]]},
{"id": "tyjd7a", "submitted_by": "buzdolabimotoru", "name": "Map of Lithuania", "description": "Map of Lithuania with Latvia and Belarus. It has a star that shows Vilnus, capital of Lithuania.", "website": "", "subreddit": "", "center": [1922.5, 160.5], "path": [[1944.5, 156.5], [1944.5, 159.5], [1943.5, 159.5], [1943.5, 161.5], [1942.5, 161.5], [1943.5, 161.5], [1944.5, 162.5], [1944.5, 164.5], [1941.5, 164.5], [1941.5, 165.5], [1940.5, 165.5], [1940.5, 165.5], [1940.5, 166.5], [1938.5, 166.5], [1938.5, 167.5], [1939.5, 168.5], [1938.5, 167.5], [1937.5, 167.5], [1937.5, 171.5], [1936.5, 171.5], [1931.5, 175.5], [1930.5, 176.5], [1929.5, 176.5], [1928.5, 177.5], [1927.5, 178.5], [1926.5, 177.5], [1923.5, 177.5], [1923.5, 176.5], [1922.5, 176.5], [1921.5, 175.5], [1920.5, 174.5], [1919.5, 174.5], [1919.5, 173.5], [1918.5, 173.5], [1918.5, 172.5], [1915.5, 169.5], [1912.5, 169.5], [1912.5, 166.5], [1910.5, 166.5], [1910.5, 165.5], [1905.5, 165.5], [1905.5, 164.5], [1904.5, 164.5], [1904.5, 163.5], [1902.5, 163.5], [1902.5, 162.5], [1900.5, 162.5], [1899.5, 163.5], [1899.5, 159.5], [1900.5, 158.5], [1899.5, 157.5], [1899.5, 151.5], [1900.5, 151.5], [1901.5, 150.5], [1901.5, 149.5], [1903.5, 147.5], [1906.5, 147.5], [1907.5, 146.5], [1910.5, 146.5], [1910.5, 147.5], [1912.5, 147.5], [1912.5, 146.5], [1913.5, 146.5], [1913.5, 147.5], [1914.5, 147.5], [1914.5, 148.5], [1915.5, 148.5], [1915.5, 147.5], [1922.5, 147.5], [1922.5, 148.5], [1925.5, 148.5], [1926.5, 148.5], [1927.5, 146.5], [1929.5, 146.5], [1929.5, 145.5], [1930.5, 145.5], [1930.5, 148.5], [1931.5, 148.5], [1931.5, 149.5], [1934.5, 149.5], [1934.5, 150.5]]},
{"id": "tyjbpx", "submitted_by": "_Totorotrip_", "name": "Singapore mini flag", "description": "A flag as cute as Singapore, lah!", "website": "https://en.wikipedia.org/wiki/Singapore", "subreddit": "r/singapore", "center": [1121.5, 1600.5], "path": [[1120.5, 1599.5], [1122.5, 1599.5], [1122.5, 1600.5], [1120.5, 1600.5]]},
{"id": "tyjam8", "submitted_by": "buzdolabimotoru", "name": "Map of Latvia", "description": "Latvian map with other baltic countries. It has a star that shows Riga, capital of Latvia.", "website": "", "subreddit": "", "center": [1929.5, 139.5], "path": [[1949.5, 129.5], [1952.5, 133.5], [1953.5, 133.5], [1953.5, 141.5], [1954.5, 141.5], [1954.5, 151.5], [1953.5, 151.5], [1953.5, 152.5], [1950.5, 155.5], [1945.5, 155.5], [1945.5, 156.5], [1942.5, 156.5], [1942.5, 155.5], [1941.5, 155.5], [1941.5, 154.5], [1938.5, 152.5], [1937.5, 152.5], [1937.5, 151.5], [1935.5, 151.5], [1934.5, 150.5], [1931.5, 150.5], [1931.5, 148.5], [1930.5, 148.5], [1930.5, 145.5], [1929.5, 145.5], [1925.5, 148.5], [1921.5, 148.5], [1921.5, 147.5], [1915.5, 147.5], [1915.5, 148.5], [1914.5, 148.5], [1914.5, 147.5], [1910.5, 147.5], [1910.5, 146.5], [1906.5, 146.5], [1906.5, 147.5], [1903.5, 147.5], [1902.5, 149.5], [1901.5, 149.5], [1901.5, 151.5], [1900.5, 151.5], [1899.5, 151.5], [1899.5, 140.5], [1901.5, 140.5], [1900.5, 139.5], [1901.5, 139.5], [1901.5, 138.5], [1902.5, 138.5], [1902.5, 137.5], [1903.5, 137.5], [1903.5, 131.5], [1904.5, 131.5], [1904.5, 129.5], [1905.5, 129.5], [1905.5, 128.5], [1909.5, 128.5], [1909.5, 127.5], [1910.5, 127.5], [1910.5, 126.5], [1912.5, 126.5], [1917.5, 125.5], [1918.5, 124.5], [1919.5, 125.5], [1918.5, 126.5], [1912.5, 126.5], [1912.5, 128.5], [1912.5, 129.5], [1913.5, 129.5], [1913.5, 130.5], [1914.5, 130.5], [1914.5, 131.5], [1915.5, 131.5], [1915.5, 132.5], [1916.5, 132.5], [1916.5, 133.5], [1917.5, 133.5], [1917.5, 137.5], [1918.5, 136.5], [1918.5, 137.5], [1919.5, 137.5], [1919.5, 138.5], [1920.5, 138.5], [1920.5, 139.5], [1921.5, 138.5], [1921.5, 137.5], [1923.5, 137.5], [1923.5, 136.5], [1925.5, 136.5], [1925.5, 134.5], [1925.5, 125.5], [1926.5, 124.5], [1928.5, 123.5], [1930.5, 122.5], [1933.5, 121.5], [1934.5, 122.5], [1936.5, 124.5], [1943.5, 131.5], [1945.5, 130.5], [1946.5, 129.5]]},
{"id": "tyj9m0", "submitted_by": "_Totorotrip_", "name": "Cordoba flag (Arg) ", "description": "Flag of the best prooovince and future capital of Chetoslovakia.", "website": "https://es.wikipedia.org/wiki/Fernet_con_coca", "subreddit": "r/argentina", "center": [1121.5, 1597.5], "path": [[1120.5, 1598.5], [1120.5, 1596.5], [1122.5, 1596.5], [1122.5, 1598.5]]},
{"id": "tyj81g", "submitted_by": "encryptedunicorn", "name": "Cannabis leaf 420", "description": "A cannabis leaf with the number 420 on it created by the r/trees reddit community\n\n420 stands for the weed holiday celebrated on the 20th of April.\n\nr/trees is a cannabis community on reddit. They switched their subreddit name with r/marijuanaenthusiasts", "website": "", "subreddit": "r/trees", "center": [735.5, 414.5], "path": [[719.5, 428.5], [719.5, 399.5], [751.5, 399.5], [751.5, 428.5]]},
{"id": "tyj7e8", "submitted_by": "buzdolabimotoru", "name": "Map of Estonia", "description": "A map shows Estonian map with a star on Talinn, capital of Estonia.", "website": "", "subreddit": "", "center": [1934.5, 113.5], "path": [[1928.5, 99.5], [1952.5, 99.5], [1952.5, 101.5], [1953.5, 101.5], [1953.5, 106.5], [1952.5, 106.5], [1952.5, 109.5], [1948.5, 109.5], [1948.5, 110.5], [1947.5, 110.5], [1947.5, 113.5], [1948.5, 113.5], [1948.5, 116.5], [1949.5, 116.5], [1949.5, 118.5], [1950.5, 118.5], [1950.5, 121.5], [1951.5, 121.5], [1951.5, 126.5], [1950.5, 126.5], [1950.5, 128.5], [1949.5, 128.5], [1949.5, 130.5], [1947.5, 130.5], [1947.5, 129.5], [1945.5, 129.5], [1945.5, 130.5], [1944.5, 130.5], [1944.5, 131.5], [1943.5, 131.5], [1943.5, 130.5], [1942.5, 130.5], [1942.5, 129.5], [1941.5, 129.5], [1941.5, 128.5], [1940.5, 128.5], [1940.5, 127.5], [1939.5, 127.5], [1939.5, 126.5], [1939.5, 125.5], [1938.5, 126.5], [1938.5, 125.5], [1937.5, 125.5], [1937.5, 124.5], [1936.5, 124.5], [1936.5, 123.5], [1935.5, 122.5], [1933.5, 122.5], [1933.5, 121.5], [1932.5, 121.5], [1932.5, 122.5], [1930.5, 122.5], [1930.5, 123.5], [1927.5, 123.5], [1927.5, 124.5], [1926.5, 124.5], [1926.5, 125.5], [1925.5, 125.5], [1925.5, 121.5], [1926.5, 121.5], [1926.5, 119.5], [1923.5, 119.5], [1923.5, 120.5], [1921.5, 120.5], [1921.5, 119.5], [1921.5, 118.5], [1920.5, 118.5], [1920.5, 116.5], [1919.5, 116.5], [1919.5, 115.5], [1917.5, 115.5], [1916.5, 115.5], [1916.5, 118.5], [1915.5, 118.5], [1915.5, 119.5], [1914.5, 119.5], [1914.5, 120.5], [1910.5, 120.5], [1910.5, 121.5], [1909.5, 121.5], [1909.5, 123.5], [1908.5, 123.5], [1908.5, 124.5], [1907.5, 124.5], [1907.5, 123.5], [1906.5, 123.5], [1907.5, 122.5], [1907.5, 121.5], [1906.5, 121.5], [1906.5, 120.5], [1905.5, 120.5], [1905.5, 118.5], [1906.5, 118.5], [1906.5, 117.5], [1905.5, 116.5], [1908.5, 116.5], [1909.5, 115.5], [1911.5, 115.5], [1912.5, 114.5], [1911.5, 112.5], [1911.5, 111.5], [1911.5, 110.5], [1910.5, 110.5], [1910.5, 109.5], [1908.5, 109.5], [1910.5, 109.5], [1910.5, 108.5], [1911.5, 108.5], [1911.5, 107.5], [1912.5, 107.5], [1912.5, 106.5], [1914.5, 108.5], [1914.5, 109.5], [1915.5, 109.5], [1914.5, 110.5], [1915.5, 110.5], [1915.5, 109.5], [1915.5, 111.5], [1915.5, 111.5], [1918.5, 110.5], [1918.5, 104.5], [1920.5, 104.5], [1922.5, 102.5], [1922.5, 102.5], [1923.5, 102.5], [1923.5, 103.5], [1925.5, 103.5], [1925.5, 102.5], [1926.5, 102.5], [1927.5, 101.5], [1928.5, 99.5]]},
{"id": "tyixc7", "submitted_by": "AccordingClassroom30", "name": "Schleswig-Holstein", "description": "Coat of arms of the German state Schleswig-Holstein.", "website": "", "subreddit": "", "center": [1198.5, 1128.5], "path": [[1193.5, 1123.5], [1193.5, 1130.5], [1196.5, 1133.5], [1200.5, 1133.5], [1203.5, 1130.5], [1203.5, 1123.5]]},
{"id": "tyiwcb", "submitted_by": "AccordingClassroom30", "name": "Bremen", "description": "Coat of arms of the German state Bremen.", "website": "", "subreddit": "", "center": [1388.5, 1133.5], "path": [[1382.5, 1128.5], [1384.5, 1130.5], [1383.5, 1131.5], [1383.5, 1138.5], [1385.5, 1140.5], [1390.5, 1140.5], [1392.5, 1138.5], [1392.5, 1131.5], [1391.5, 1130.5], [1393.5, 1128.5], [1391.5, 1128.5], [1389.5, 1126.5], [1388.5, 1127.5], [1387.5, 1127.5], [1386.5, 1126.5], [1384.5, 1128.5], [1383.5, 1128.5]]},
{"id": "tyiv6x", "submitted_by": "AccordingClassroom30", "name": "Hesse", "description": "Coat of arms of the German state Hesse.", "website": "", "subreddit": "", "center": [1375.5, 1131.5], "path": [[1369.5, 1126.5], [1369.5, 1127.5], [1370.5, 1128.5], [1370.5, 1134.5], [1373.5, 1137.5], [1376.5, 1137.5], [1379.5, 1134.5], [1379.5, 1128.5], [1380.5, 1127.5], [1380.5, 1126.5], [1379.5, 1126.5], [1378.5, 1127.5], [1377.5, 1126.5], [1376.5, 1127.5], [1375.5, 1126.5], [1374.5, 1126.5], [1373.5, 1127.5], [1372.5, 1126.5], [1371.5, 1127.5], [1370.5, 1126.5]]},
{"id": "tyiuz9", "submitted_by": "buzdolabimotoru", "name": "Teaspoon", "description": "Teaspoon is a small spoon for mix the sugar in tea. It holds about 2ml. The size of a teaspoon can actually range from 2.5 to 7.3 ml, it is equal to 1/3 tablespoon.", "website": "", "subreddit": "", "center": [1047.5, 149.5], "path": [[1044.5, 151.5], [1043.5, 152.5], [1043.5, 153.5], [1041.5, 153.5], [1041.5, 154.5], [1039.5, 154.5], [1039.5, 155.5], [1038.5, 155.5], [1038.5, 160.5], [1043.5, 160.5], [1043.5, 159.5], [1044.5, 159.5], [1044.5, 158.5], [1045.5, 158.5], [1045.5, 157.5], [1046.5, 157.5], [1046.5, 156.5], [1047.5, 156.5], [1047.5, 151.5], [1048.5, 151.5], [1048.5, 149.5], [1048.5, 148.5], [1049.5, 148.5], [1049.5, 147.5], [1050.5, 147.5], [1050.5, 146.5], [1051.5, 146.5], [1051.5, 145.5], [1051.5, 144.5], [1053.5, 144.5], [1053.5, 141.5], [1054.5, 141.5], [1054.5, 140.5], [1055.5, 140.5], [1055.5, 139.5], [1056.5, 139.5], [1056.5, 137.5], [1057.5, 137.5], [1057.5, 135.5], [1058.5, 135.5], [1058.5, 134.5], [1059.5, 134.5], [1058.5, 134.5], [1058.5, 133.5], [1058.5, 132.5], [1059.5, 132.5], [1059.5, 130.5], [1061.5, 130.5], [1061.5, 129.5], [1060.5, 129.5], [1060.5, 128.5], [1058.5, 130.5], [1058.5, 131.5], [1057.5, 131.5], [1057.5, 134.5], [1056.5, 134.5], [1056.5, 135.5], [1055.5, 135.5], [1055.5, 137.5], [1054.5, 137.5], [1054.5, 138.5], [1053.5, 138.5], [1053.5, 140.5], [1052.5, 140.5], [1052.5, 141.5], [1051.5, 141.5], [1051.5, 142.5], [1046.5, 148.5], [1046.5, 149.5], [1046.5, 150.5], [1045.5, 150.5]]},
{"id": "tyiue1", "submitted_by": "AccordingClassroom30", "name": "Berlin", "description": "Coat of arms of the German state Berlin.", "website": "", "subreddit": "", "center": [1361.5, 1131.5], "path": [[1356.5, 1126.5], [1356.5, 1127.5], [1357.5, 1128.5], [1357.5, 1135.5], [1359.5, 1137.5], [1363.5, 1137.5], [1365.5, 1135.5], [1365.5, 1128.5], [1366.5, 1127.5], [1366.5, 1126.5], [1365.5, 1126.5], [1364.5, 1127.5], [1363.5, 1126.5], [1362.5, 1127.5], [1361.5, 1126.5], [1360.5, 1127.5], [1359.5, 1126.5], [1358.5, 1127.5], [1357.5, 1126.5], [1356.5, 1126.5]]},
{"id": "tyiudp", "submitted_by": "Stepdaddy1", "name": "Expansion of the flag of Denmark", "description": "An expansion of the flag of denmark into r/FNAF's territory\n\n", "website": "", "subreddit": "/r/Denmark", "center": [648.5, 290.5], "path": [[639.5, 286.5], [657.5, 286.5], [657.5, 293.5], [639.5, 293.5], [639.5, 287.5]]},
{"id": "tyitjj", "submitted_by": "AccordingClassroom30", "name": "Bavaria", "description": "Coat of arms of the German state Bavaria.", "website": "", "subreddit": "", "center": [1350.5, 1131.5], "path": [[1346.5, 1126.5], [1346.5, 1134.5], [1348.5, 1136.5], [1352.5, 1136.5], [1354.5, 1134.5], [1354.5, 1126.5], [1353.5, 1126.5], [1352.5, 1127.5], [1351.5, 1126.5], [1350.5, 1127.5], [1349.5, 1126.5], [1348.5, 1127.5], [1347.5, 1126.5], [1346.5, 1126.5]]},
{"id": "tyisna", "submitted_by": "AccordingClassroom30", "name": "Rhineland-Palatinate", "description": "Coat of arms of the German state Rhineland-Palatinate.", "website": "", "subreddit": "", "center": [1339.5, 1131.5], "path": [[1334.5, 1126.5], [1334.5, 1127.5], [1335.5, 1128.5], [1335.5, 1134.5], [1338.5, 1137.5], [1340.5, 1137.5], [1343.5, 1134.5], [1343.5, 1128.5], [1344.5, 1127.5], [1344.5, 1126.5], [1343.5, 1126.5], [1342.5, 1127.5], [1341.5, 1126.5], [1340.5, 1127.5], [1339.5, 1126.5], [1338.5, 1127.5], [1337.5, 1126.5], [1336.5, 1127.5], [1335.5, 1126.5]]},
{"id": "tyire3", "submitted_by": "AccordingClassroom30", "name": "Lower Saxony", "description": "Coat of arms of the German state Lower Saxony", "website": "", "subreddit": "", "center": [1266.5, 1128.5], "path": [[1261.5, 1123.5], [1261.5, 1131.5], [1262.5, 1132.5], [1262.5, 1133.5], [1263.5, 1134.5], [1268.5, 1134.5], [1269.5, 1133.5], [1269.5, 1132.5], [1270.5, 1131.5], [1270.5, 1123.5]]},
{"id": "tyipsz", "submitted_by": "AccordingClassroom30", "name": "Hamburg", "description": "Coat of arms of the German state Hamburg.", "website": "", "subreddit": "", "center": [1254.5, 1127.5], "path": [[1250.5, 1123.5], [1250.5, 1130.5], [1253.5, 1133.5], [1255.5, 1133.5], [1258.5, 1130.5], [1258.5, 1123.5]]},
{"id": "tyiowu", "submitted_by": "AccordingClassroom30", "name": "Baden-W\u00fcrttemberg", "description": "Coat of arms of the German state Baden-W\u00fcrttemberg.", "website": "", "subreddit": "", "center": [1244.5, 1128.5], "path": [[1239.5, 1123.5], [1239.5, 1129.5], [1240.5, 1130.5], [1240.5, 1131.5], [1241.5, 1132.5], [1241.5, 1133.5], [1242.5, 1134.5], [1245.5, 1134.5], [1246.5, 1133.5], [1246.5, 1132.5], [1247.5, 1131.5], [1247.5, 1130.5], [1248.5, 1129.5], [1248.5, 1123.5], [1246.5, 1125.5], [1244.5, 1123.5], [1243.5, 1123.5], [1241.5, 1125.5], [1239.5, 1123.5]]},
{"id": "tyio0x", "submitted_by": "Stepdaddy1", "name": "Kaj cake", "description": "A danish cake known as Kaj cake due to its resemblance of popular kid show character Kaj who is also on the canvas.", "website": "https://da.wikipedia.org/wiki/Kajkage", "subreddit": "/r/Denmark", "center": [375.5, 153.5], "path": [[371.5, 151.5], [376.5, 149.5], [379.5, 155.5], [371.5, 155.5], [371.5, 151.5], [371.5, 152.5], [371.5, 152.5]]},
{"id": "tyintc", "submitted_by": "AccordingClassroom30", "name": "Mecklenburg-Vorpommern", "description": "Coat of arms of the German state Mecklenburg-Vorpommern.", "website": "", "subreddit": "", "center": [1233.5, 1128.5], "path": [[1228.5, 1123.5], [1228.5, 1131.5], [1229.5, 1132.5], [1229.5, 1133.5], [1230.5, 1134.5], [1235.5, 1134.5], [1236.5, 1133.5], [1236.5, 1132.5], [1237.5, 1131.5], [1237.5, 1123.5]]},
{"id": "tyinfq", "submitted_by": "RUB_23", "name": "Unfinished Francesinha", "description": "Francesinah is a typical sandwish in Portugal that originated in Porto town.", "website": "", "subreddit": "r/portugal", "center": [1481.5, 1834.5], "path": [[1479.5, 1829.5], [1476.5, 1830.5], [1474.5, 1838.5], [1476.5, 1839.5], [1479.5, 1840.5], [1489.5, 1835.5], [1483.5, 1828.5], [1481.5, 1828.5]]},
{"id": "tyinbg", "submitted_by": "QuarterTarget", "name": "Formerly Swiss Italian and Ukrainian Flag", "description": "This area originally held a flag of Canton Zug, Switzerland, in an last minute plan by the swiss place group to scatter canton flags around the map. Most were deleted instantly with the only two being actually made, a zurich flag invaded by the mexicans, and this one. The flag stayed up for about 5 hours, despite only being made by one person. A Ukrainian flag was added soon after. Around two hours before the end of r/place. The flag of Zug was replaced by an Italian flag", "website": "", "subreddit": "several", "center": [1364.5, 759.5], "path": [[1362.5, 753.5], [1365.5, 753.5], [1365.5, 765.5], [1362.5, 765.5], [1363.5, 765.5]]},
{"id": "tyimjg", "submitted_by": "AccordingClassroom30", "name": "North Rhine-Westphalia", "description": "Coat of arms of the German state North Rhine-Westphalia", "website": "", "subreddit": "", "center": [1210.5, 1128.5], "path": [[1205.5, 1123.5], [1205.5, 1131.5], [1206.5, 1132.5], [1206.5, 1133.5], [1207.5, 1134.5], [1212.5, 1134.5], [1213.5, 1133.5], [1213.5, 1132.5], [1214.5, 1131.5], [1214.5, 1123.5]]},
{"id": "tyil6x", "submitted_by": "horssentc", "name": "Sun", "description": "The sun, the sun is that big yellow thing in the sky, you can see it from anywhere in the world, including Brazil.", "website": "https://en.wikipedia.org/wiki/Sun", "subreddit": "r/sun", "center": [1265.5, 576.5], "path": [[1269.5, 584.5], [1262.5, 584.5], [1258.5, 579.5], [1258.5, 573.5], [1261.5, 569.5], [1268.5, 569.5], [1271.5, 571.5], [1271.5, 574.5], [1270.5, 575.5], [1270.5, 583.5], [1270.5, 584.5]]},
{"id": "tyijo6", "submitted_by": "davinkradav", "name": "Arkadia", "description": "Arkadia is a series created in 2021 for Spanish and Latin American streamers based on the videogame Ark, which they had to make tribes to survive with dinosaurs and game bosses.\nIt was founded mostly by the Spanish streamer NexxuzHD.\nThe logo was created by the community of the twitch streamer Mayichi, who was the driving force behind creating this series.\nIts name is created with the first three letters of the game itself (ARK: Survival Evolved), and by Arcadia, an imaginary country created in the Renaissance. In April 2022 the series continues with the name of Arkadia 2.\n", "website": "", "subreddit": "", "center": [1858.5, 1198.5], "path": [[1835.5, 1179.5], [1836.5, 1217.5], [1880.5, 1216.5], [1880.5, 1180.5]]},
{"id": "tyiizn", "submitted_by": "QuarterTarget", "name": "Swiss Area", "description": "This area contained the following:\nLogo of the SBB CFF, a picture of Pingu saying Noot Noot, a jamaican flag, an algerian flag and a lesbian pride flag. The Cereberus/Buddha area invaded using bots. The whole area was rendered pink in less than 20 SECONDS", "website": "", "subreddit": "r/SwissNeutralityZone", "center": [1347.5, 733.5], "path": [[1329.5, 754.5], [1366.5, 753.5], [1365.5, 712.5], [1329.5, 711.5], [1330.5, 711.5], [1329.5, 711.5]]},
{"id": "tyiiz9", "submitted_by": "AccordingClassroom30", "name": "Thuringia", "description": "Coat of arms of the German state Thuringia", "website": "", "subreddit": "", "center": [1186.5, 1128.5], "path": [[1181.5, 1123.5], [1181.5, 1131.5], [1182.5, 1132.5], [1183.5, 1132.5], [1184.5, 1133.5], [1185.5, 1133.5], [1186.5, 1134.5], [1187.5, 1133.5], [1188.5, 1133.5], [1189.5, 1132.5], [1190.5, 1132.5], [1191.5, 1131.5], [1191.5, 1123.5]]},
{"id": "tyiinc", "submitted_by": "Spenchjo", "name": "ASL \"I love you\" \ud83e\udd1f\ud83c\udffe", "description": "A sign for \"I love you\" in American Sign Language (ASL). A combination of the letters I, L and Y in the American manual alphabet.\n\nMade to represent r/asl and r/deaf, with cooperation of r/tokipona and r/PixelDungeon, as requested by a deaf member of r/tokipona.", "website": "", "subreddit": "r/asl, r/deaf", "center": [1732.5, 236.5], "path": [[1728.5, 234.5], [1728.5, 238.5], [1731.5, 241.5], [1733.5, 241.5], [1737.5, 237.5], [1737.5, 236.5], [1735.5, 234.5], [1735.5, 233.5], [1733.5, 231.5], [1731.5, 233.5], [1730.5, 232.5]]},
{"id": "tyii05", "submitted_by": "buzdolabimotoru", "name": "Tiny Ukraine flag", "description": "Yes, it is very small with 6 pixels.", "website": "", "subreddit": "", "center": [100.5, 813.5], "path": [[99.5, 812.5], [99.5, 813.5], [101.5, 813.5], [101.5, 812.5]]},
{"id": "tyih1b", "submitted_by": "AccordingClassroom30", "name": "Saarland", "description": "Coat of arms of the German state Saarland", "website": "", "subreddit": "", "center": [1174.5, 1127.5], "path": [[1169.5, 1123.5], [1169.5, 1129.5], [1171.5, 1132.5], [1172.5, 1132.5], [1173.5, 1133.5], [1175.5, 1133.5], [1176.5, 1132.5], [1177.5, 1132.5], [1178.5, 1131.5], [1178.5, 1130.5], [1179.5, 1129.5], [1179.5, 1123.5]]},
{"id": "tyifw1", "submitted_by": "AccordingClassroom30", "name": "Saxony-Anhalt", "description": "Coat of arms of the German state Saxony-Anhalt.", "website": "", "subreddit": "", "center": [1162.5, 1128.5], "path": [[1157.5, 1123.5], [1167.5, 1123.5], [1167.5, 1130.5], [1164.5, 1133.5], [1160.5, 1133.5], [1157.5, 1130.5]]},
{"id": "tyifat", "submitted_by": "buzdolabimotoru", "name": "Bridge of Bo\u011fazi\u00e7i", "description": "A bridge in Bophorus. It connects Europe and Asia. It drawed for show cultural things of Turkey", "website": "", "subreddit": "", "center": [310.5, 432.5], "path": [[300.5, 415.5], [300.5, 449.5], [306.5, 449.5], [306.5, 439.5], [326.5, 439.5], [326.5, 431.5], [324.5, 431.5], [324.5, 430.5], [324.5, 431.5], [322.5, 431.5], [322.5, 429.5], [321.5, 429.5], [321.5, 428.5], [320.5, 428.5], [320.5, 427.5], [318.5, 427.5], [318.5, 426.5], [317.5, 426.5], [317.5, 425.5], [315.5, 425.5], [315.5, 424.5], [314.5, 424.5], [314.5, 423.5], [313.5, 423.5], [313.5, 422.5], [312.5, 422.5], [312.5, 421.5], [310.5, 421.5], [310.5, 420.5], [308.5, 420.5], [308.5, 418.5], [307.5, 418.5], [307.5, 415.5], [307.5, 417.5], [300.5, 417.5]]},
{"id": "tyief0", "submitted_by": "AccordingClassroom30", "name": "Brandenburg ", "description": "The Coat of arms of the German state Brandenburg.\n", "website": "", "subreddit": "", "center": [1221.5, 1128.5], "path": [[1216.5, 1123.5], [1216.5, 1131.5], [1219.5, 1134.5], [1223.5, 1134.5], [1226.5, 1131.5], [1226.5, 1123.5]]},
{"id": "tyiag4", "submitted_by": "BreadFlops", "name": "Lorca's castle", "description": "Made by Lorca's 3 city habitants that managed to get their city's castle banner just in time before the witheout.\n\n\nMade by BreadFlops, VIRVeX and Peri", "website": "", "subreddit": "", "center": [308.5, 1856.5], "path": [[305.5, 1850.5], [311.5, 1850.5], [311.5, 1861.5], [305.5, 1861.5]]},
{"id": "tyi575", "submitted_by": "bup23", "name": "Territorial.io", "description": "This is the logo of an .io game where you try to take over a map on your own or with a team.", "website": "territorial.io", "subreddit": "", "center": [305.5, 1887.5], "path": [[302.5, 1884.5], [302.5, 1884.5], [302.5, 1884.5], [302.5, 1884.5], [302.5, 1885.5], [302.5, 1889.5], [302.5, 1890.5], [308.5, 1884.5], [305.5, 1884.5], [303.5, 1884.5], [302.5, 1884.5], [302.5, 1884.5], [302.5, 1885.5], [302.5, 1885.5], [302.5, 1890.5], [308.5, 1890.5], [308.5, 1884.5], [304.5, 1884.5], [304.5, 1888.5], [301.5, 1890.5], [301.5, 1891.5], [302.5, 1891.5], [303.5, 1891.5], [304.5, 1891.5], [305.5, 1891.5], [306.5, 1891.5], [307.5, 1891.5], [308.5, 1891.5], [309.5, 1891.5], [309.5, 1890.5], [309.5, 1888.5], [309.5, 1883.5], [301.5, 1883.5], [301.5, 1891.5], [301.5, 1883.5]]},
{"id": "tyi0hn", "submitted_by": "Responsible_Tie7242", "name": "Batman", "description": "Batman got destroyed by GTA V people in the last hour of r/place, but if given more prep time, he would have won like he always does. Because he's Batman", "website": "", "subreddit": "r/Batman", "center": [556.5, 1400.5], "path": [[545.5, 1393.5], [567.5, 1393.5], [568.5, 1407.5], [545.5, 1407.5]]},
{"id": "tyhy2a", "submitted_by": "bubbasplat", "name": "LeSneak", "description": "Originally an image of LeChuck from Monkey Island however the space was overtaken. \n\nHis evil undead eyes still remain to haunt the souls of those who dared to battle him. ", "website": "https://returntomonkeyisland.com/", "subreddit": "r/MonkeyIsland", "center": [528.5, 1185.5], "path": [[535.5, 1184.5], [521.5, 1184.5], [522.5, 1187.5], [535.5, 1187.5], [535.5, 1184.5]]},
{"id": "tyhxl0", "submitted_by": "Rillacle", "name": "Ratge Heart", "description": "The symbol of Alliance between the streamers Franqitom and MOONMOON", "website": "", "subreddit": "", "center": [1680.5, 1021.5], "path": [[1673.5, 1023.5], [1679.5, 1029.5], [1680.5, 1029.5], [1688.5, 1021.5], [1688.5, 1017.5], [1687.5, 1017.5], [1687.5, 1016.5], [1686.5, 1016.5], [1686.5, 1015.5], [1682.5, 1015.5], [1682.5, 1016.5], [1679.5, 1016.5], [1679.5, 1015.5], [1675.5, 1015.5], [1675.5, 1016.5], [1674.5, 1016.5], [1674.5, 1017.5], [1673.5, 1017.5], [1673.5, 1023.5]]},
{"id": "tyhvko", "submitted_by": "Yewolf59", "name": "La Heczone", "description": "A french Discord server of friends who play minecraft and other games ! We were also in alliance with MCSR and all", "website": "https://discord.gg/VjH2RCpcTg", "subreddit": "", "center": [1512.5, 1504.5], "path": [[1506.5, 1499.5], [1517.5, 1499.5], [1517.5, 1509.5], [1507.5, 1509.5], [1506.5, 1499.5]]},
{"id": "tyht9r", "submitted_by": "bubbasplat", "name": "Le(s)Chuck(s)", "description": "Evil undead pirate captain LeChuck from the point & click adventure series Monkey Island. \n\nHe is unfinished as we were working on him as the time run out. \n\nHe is doubled up as we were being attacked by the blue X and decided to shift him down. Due to this battle, from this day forth we have decided to use Y to mark buried treasure.\n\nThis was our last ditch effort to get him on the canvas after 2 previous iterations were wiped out by larger factions. \n\n", "website": "https://returntomonkeyisland.com/", "subreddit": "r/MonkeyIsland", "center": [1925.5, 970.5], "path": [[1934.5, 956.5], [1916.5, 956.5], [1917.5, 984.5], [1934.5, 984.5], [1934.5, 956.5]]},
{"id": "tyht6k", "submitted_by": "AnonymousRandPerson", "name": "Poland-India-Denmark heart", "description": "A heart depicting the flags of Poland, India, and Denmark.", "website": "", "subreddit": "/r/Poland, /r/PlaceIndia, /r/Denmark", "center": [536.5, 343.5], "path": [[532.5, 338.5], [529.5, 341.5], [529.5, 343.5], [535.5, 349.5], [537.5, 349.5], [543.5, 343.5], [543.5, 341.5], [540.5, 338.5], [538.5, 338.5], [537.5, 339.5], [535.5, 339.5], [534.5, 338.5], [532.5, 338.5]]},
{"id": "tyht0x", "submitted_by": "Vany-vonne", "name": "Crewmates in love", "description": "Dos tripulantes atrapados en el espacio disfrutan de sus ultimos momentos juntos antes de ser consumidos por The Void.", "website": "", "subreddit": "", "center": [1041.5, 1187.5], "path": [[1041.5, 1181.5], [1043.5, 1182.5], [1048.5, 1186.5], [1049.5, 1181.5], [1033.5, 1182.5], [1034.5, 1193.5], [1050.5, 1193.5], [1048.5, 1184.5], [1048.5, 1184.5]]},
{"id": "tyhs7d", "submitted_by": "AnonymousRandPerson", "name": "Denmark-India heart", "description": "A heart depicting the flags of Denmark and India", "website": "", "subreddit": "/r/IndiaPlace, /r/Denmark", "center": [536.5, 317.5], "path": [[533.5, 313.5], [531.5, 315.5], [531.5, 317.5], [536.5, 322.5], [541.5, 317.5], [541.5, 315.5], [539.5, 313.5], [538.5, 313.5], [537.5, 314.5], [535.5, 314.5], [534.5, 313.5]]},
{"id": "tyhpo5", "submitted_by": "FappingFapOhFapFappy", "name": "Eye of KomodoHype", "description": "KomodoHype is a global emote on twitch built by the 'Komodo Tribe' which consisted of twitch chatter Lord fartamor and Ludwig's prechat. After being destroyed by void only the eye remained in this spot with its allies the carrot farm and shrimps", "website": "https://www.twitch.tv/ludwig", "subreddit": "", "center": [1734.5, 1431.5], "path": [[1731.5, 1428.5], [1736.5, 1428.5], [1736.5, 1433.5], [1731.5, 1433.5]]},
{"id": "tyhn9a", "submitted_by": "AnonymousRandPerson", "name": "India heart", "description": "Heart depicting the flag of India.", "website": "https://en.wikipedia.org/wiki/India", "subreddit": "/r/IndiaPlace", "center": [237.5, 321.5], "path": [[234.5, 316.5], [231.5, 319.5], [231.5, 321.5], [237.5, 327.5], [243.5, 321.5], [243.5, 319.5], [240.5, 316.5], [239.5, 316.5], [238.5, 317.5], [236.5, 317.5], [235.5, 316.5], [234.5, 316.5]]},
{"id": "tyhm45", "submitted_by": "CoLLiNePhILLCollinS", "name": "Light Fury", "description": "Before the north moroccan expansion, there was Light Fury one of the main character of movie How to Train Your Dragon: The Hidden World.\n\nRIP", "website": "", "subreddit": "https://www.reddit.com/r/httyd/", "center": [1646.5, 785.5], "path": [[1634.5, 770.5], [1634.5, 800.5], [1657.5, 800.5], [1657.5, 770.5]]},
{"id": "tyhl8q", "submitted_by": "Babyhuehnchen", "name": "Pair of Mallards", "description": "A male (right) and female (left) mallard duck with a little heart above them. Mallards are the most common duck species in central Europe. Very small yet very precious", "website": "[https://en.wikipedia.org/wiki/Mallard](https://en.wikipedia.org/wiki/Mallard)", "subreddit": "", "center": [588.5, 28.5], "path": [[589.5, 21.5], [587.5, 21.5], [587.5, 22.5], [582.5, 22.5], [582.5, 23.5], [581.5, 23.5], [581.5, 26.5], [580.5, 26.5], [580.5, 25.5], [579.5, 25.5], [579.5, 24.5], [577.5, 24.5], [577.5, 25.5], [575.5, 25.5], [575.5, 26.5], [574.5, 26.5], [574.5, 27.5], [573.5, 27.5], [573.5, 29.5], [574.5, 29.5], [574.5, 30.5], [575.5, 30.5], [575.5, 31.5], [577.5, 31.5], [577.5, 32.5], [578.5, 32.5], [578.5, 33.5], [580.5, 33.5], [580.5, 34.5], [586.5, 34.5], [586.5, 33.5], [587.5, 33.5], [587.5, 29.5], [586.5, 29.5], [586.5, 29.5], [586.5, 27.5], [588.5, 27.5], [588.5, 25.5], [589.5, 25.5], [590.5, 25.5], [590.5, 26.5], [590.5, 27.5], [593.5, 27.5], [593.5, 28.5], [592.5, 28.5], [592.5, 29.5], [591.5, 29.5], [591.5, 32.5], [592.5, 32.5], [592.5, 33.5], [593.5, 33.5], [593.5, 34.5], [598.5, 34.5], [598.5, 33.5], [599.5, 33.5], [600.5, 33.5], [600.5, 32.5], [602.5, 31.5], [603.5, 31.5], [603.5, 30.5], [604.5, 30.5], [604.5, 29.5], [605.5, 29.5], [605.5, 27.5], [604.5, 27.5], [604.5, 26.5], [600.5, 26.5], [600.5, 27.5], [597.5, 27.5], [597.5, 24.5], [596.5, 24.5], [596.5, 23.5], [593.5, 23.5], [593.5, 24.5], [591.5, 24.5], [591.5, 21.5], [589.5, 21.5]]},
{"id": "tyhg8j", "submitted_by": "Spiritual-Dot-2943", "name": "Falta Mayor X", "description": "Falta Mayor X (Major Foul X) it's a music band, an esports team, a streaming group, and a bunch of friends who like to hang out. this is our mark on internet history.\n", "website": "https://www.facebook.com/FaltaMayorX", "subreddit": "", "center": [1919.5, 1369.5], "path": [[1913.5, 1366.5], [1924.5, 1366.5], [1924.5, 1371.5], [1913.5, 1371.5]]},
{"id": "tyhaw7", "submitted_by": "Elrimchik", "name": "Alisa", "description": "Almost built Alisa from the game Everlasting Summer\n\nRussian streamer Bratishkinoff started building Alice for the first time, but he didn't do it well because the whole Reddit tried to undress her. Due to censorship, Reddit painted it over. Mizkif took over when Reddit painted it over. But still, at the end of the game, Bratishkinoff managed to rebuild it for a long time.", "website": "https://www.twitch.tv/bratishkinoff", "subreddit": "r/89SQUAD89", "center": [1386.5, 1433.5], "path": [[1414.5, 1404.5], [1423.5, 1373.5], [1404.5, 1356.5], [1379.5, 1358.5], [1358.5, 1372.5], [1354.5, 1387.5], [1359.5, 1397.5], [1346.5, 1407.5], [1343.5, 1443.5], [1337.5, 1475.5], [1354.5, 1496.5], [1409.5, 1497.5], [1435.5, 1469.5], [1429.5, 1442.5], [1429.5, 1420.5], [1413.5, 1412.5]]},
{"id": "tyhaib", "submitted_by": "LookIAmANormalPerson", "name": "Pwitain Flag", "description": "Flag of the glorious nation of Pwitain.\nPwitain is a fictional country created by Pwerrr.", "website": "https://cdn.discordapp.com/attachments/567382423512285184/849244422910246912/IMG_20210531_202453.jpg", "subreddit": "r/oddlof", "center": [1794.5, 937.5], "path": [[1792.5, 936.5], [1792.5, 936.5], [1796.5, 936.5], [1796.5, 938.5], [1792.5, 938.5]]},
{"id": "tyh7ux", "submitted_by": "AnonymousRandPerson", "name": "United States-Argentina hearts", "description": "Hearts depicting the flags of the United States and Argentina.", "website": "", "subreddit": "/r/AmericanFlagInPlace, /r/argentina", "center": [1774.5, 1844.5], "path": [[1771.5, 1819.5], [1769.5, 1821.5], [1769.5, 1867.5], [1773.5, 1870.5], [1775.5, 1870.5], [1779.5, 1866.5], [1779.5, 1821.5], [1777.5, 1819.5]]},
{"id": "tyh3s8", "submitted_by": "AnonymousRandPerson", "name": "Country purple girl", "description": "The national flower of Costa Rica.", "website": "https://en.wikipedia.org/wiki/Guarianthe_skinneri", "subreddit": "/r/Ticos, /r/costarica", "center": [1611.5, 438.5], "path": [[1612.5, 427.5], [1606.5, 434.5], [1602.5, 434.5], [1602.5, 437.5], [1604.5, 437.5], [1604.5, 440.5], [1603.5, 441.5], [1603.5, 445.5], [1605.5, 445.5], [1605.5, 446.5], [1617.5, 446.5], [1620.5, 443.5], [1620.5, 440.5], [1619.5, 439.5], [1619.5, 436.5], [1620.5, 436.5], [1620.5, 433.5], [1615.5, 433.5], [1615.5, 430.5], [1612.5, 427.5]]},
{"id": "tyh1sa", "submitted_by": "AnonymousRandPerson", "name": "Hummingbird", "description": "One of the smallest species of birds.", "website": "https://en.wikipedia.org/wiki/Hummingbird", "subreddit": "/r/Ticos, /r/costarica", "center": [1594.5, 439.5], "path": [[1589.5, 432.5], [1587.5, 434.5], [1589.5, 436.5], [1589.5, 437.5], [1590.5, 438.5], [1590.5, 441.5], [1591.5, 442.5], [1591.5, 443.5], [1590.5, 444.5], [1589.5, 444.5], [1588.5, 445.5], [1589.5, 446.5], [1592.5, 446.5], [1593.5, 445.5], [1594.5, 445.5], [1598.5, 441.5], [1598.5, 439.5], [1599.5, 438.5], [1602.5, 438.5], [1602.5, 436.5], [1598.5, 436.5], [1597.5, 435.5], [1595.5, 435.5], [1594.5, 436.5], [1593.5, 436.5]]},
{"id": "tygz3c", "submitted_by": "AnonymousRandPerson", "name": "Sloth", "description": "A national symbol of Costa Rica.", "website": "https://en.wikipedia.org/wiki/Sloth", "subreddit": "/r/Ticos, /r/costarica", "center": [1569.5, 437.5], "path": [[1567.5, 429.5], [1567.5, 432.5], [1560.5, 432.5], [1557.5, 435.5], [1557.5, 437.5], [1561.5, 441.5], [1563.5, 441.5], [1567.5, 445.5], [1571.5, 445.5], [1573.5, 443.5], [1574.5, 443.5], [1578.5, 440.5], [1577.5, 439.5], [1579.5, 439.5], [1579.5, 433.5], [1577.5, 433.5], [1577.5, 430.5], [1574.5, 430.5], [1574.5, 433.5], [1570.5, 433.5], [1570.5, 429.5], [1567.5, 429.5]]},
{"id": "tygy8t", "submitted_by": "AnonymousRandPerson", "name": "Lizano sauce", "description": "A common condiment in Costa Rica.", "website": "https://en.wikipedia.org/wiki/Lizano_sauce", "subreddit": "/r/Ticos, /r/costarica", "center": [1455.5, 438.5], "path": [[1453.5, 427.5], [1453.5, 433.5], [1452.5, 434.5], [1452.5, 435.5], [1451.5, 436.5], [1451.5, 446.5], [1458.5, 446.5], [1458.5, 436.5], [1457.5, 435.5], [1457.5, 434.5], [1456.5, 433.5], [1456.5, 427.5], [1453.5, 427.5]]},
{"id": "tygwx7", "submitted_by": "AnonymousRandPerson", "name": "\u00a1Pura vida!", "description": "A popular greeting and slogan in Costa Rica that means 'pure life' or 'simple life'.", "website": "https://costarica.org/people/pura-vida/", "subreddit": "/r/Ticos, /r/costarica", "center": [1502.5, 437.5], "path": [[1472.5, 433.5], [1472.5, 440.5], [1532.5, 440.5], [1532.5, 433.5], [1472.5, 433.5]]},
{"id": "tygveq", "submitted_by": "aarnens", "name": "Moominhouse", "description": "The Moominhouse is the house of the iconic Finnish trolls called Moomins. The character on the right is Niiskuneiti, one of the central characters.", "website": "https://www.moomin.com/en/explore-moominvalley/moominhouse/", "subreddit": "/r/Suomi", "center": [563.5, 190.5], "path": [[537.5, 202.5], [541.5, 202.5], [544.5, 205.5], [557.5, 205.5], [563.5, 202.5], [587.5, 202.5], [594.5, 197.5], [595.5, 193.5], [593.5, 192.5], [592.5, 184.5], [588.5, 184.5], [584.5, 188.5], [581.5, 184.5], [577.5, 184.5], [572.5, 191.5], [569.5, 188.5], [570.5, 181.5], [563.5, 174.5], [580.5, 175.5], [580.5, 171.5], [577.5, 170.5], [562.5, 170.5], [561.5, 171.5], [561.5, 175.5], [559.5, 177.5], [557.5, 172.5], [555.5, 176.5], [548.5, 176.5], [544.5, 181.5], [539.5, 181.5], [536.5, 187.5]]},
{"id": "tygte9", "submitted_by": "AnonymousRandPerson", "name": "Red-eyed tree frog", "description": "A frog native to Central American countries including Costa Rica.", "website": "https://en.wikipedia.org/wiki/Agalychnis_callidryas", "subreddit": "/r/Ticos, /r/costarica", "center": [1435.5, 436.5], "path": [[1431.5, 429.5], [1429.5, 431.5], [1429.5, 432.5], [1428.5, 433.5], [1428.5, 434.5], [1429.5, 435.5], [1429.5, 436.5], [1428.5, 436.5], [1426.5, 438.5], [1426.5, 442.5], [1431.5, 442.5], [1431.5, 440.5], [1432.5, 440.5], [1433.5, 441.5], [1436.5, 441.5], [1437.5, 440.5], [1438.5, 440.5], [1438.5, 442.5], [1443.5, 442.5], [1443.5, 438.5], [1441.5, 436.5], [1441.5, 433.5], [1440.5, 432.5], [1440.5, 431.5], [1438.5, 429.5], [1437.5, 430.5], [1432.5, 430.5]]},
{"id": "tygrix", "submitted_by": "AnonymousRandPerson", "name": "Arenal Volcano eruption", "description": "A volcano in Costa Rica that erupted in 1968, killing 87 people and burying 3 villages.", "website": "https://en.wikipedia.org/wiki/Arenal_Volcano#July_29,_1968", "subreddit": "/r/Ticos, /r/costarica", "center": [1413.5, 438.5], "path": [[1416.5, 426.5], [1414.5, 428.5], [1413.5, 428.5], [1412.5, 429.5], [1412.5, 430.5], [1410.5, 432.5], [1410.5, 433.5], [1406.5, 437.5], [1406.5, 438.5], [1405.5, 439.5], [1405.5, 440.5], [1403.5, 442.5], [1402.5, 442.5], [1399.5, 445.5], [1399.5, 446.5], [1424.5, 446.5], [1424.5, 445.5], [1422.5, 443.5], [1421.5, 443.5], [1417.5, 439.5], [1417.5, 438.5], [1414.5, 435.5], [1414.5, 434.5], [1417.5, 434.5], [1419.5, 432.5], [1420.5, 432.5], [1422.5, 430.5], [1422.5, 429.5], [1424.5, 427.5], [1423.5, 426.5], [1416.5, 426.5]]},
{"id": "tygr18", "submitted_by": "Icy-Ad3530", "name": "Leoncock", "description": "British streamer currently living in Peru", "website": "https://trovo.live/leoncraft", "subreddit": "", "center": [1602.5, 1654.5], "path": [[1598.5, 1650.5], [1605.5, 1650.5], [1605.5, 1657.5], [1598.5, 1657.5]]}
]