diff --git a/tools/redditcrawl.py b/tools/redditcrawl.py index bd7101a2..1f7b2f9b 100755 --- a/tools/redditcrawl.py +++ b/tools/redditcrawl.py @@ -3,6 +3,7 @@ import json import time import re +import os outfile = open('temp_atlas.json', 'w', encoding='utf-8') failfile = open('manual_atlas.json', 'w', encoding='utf-8') @@ -25,7 +26,9 @@ for item in existing: existing_ids.append(item['id']) - +total_all_flairs = 0 +duplicate_count = 0 +outfile.write("[\n") for submission in reddit.subreddit('placeAtlas2').new(limit=2000): """ Auth setup @@ -47,10 +50,14 @@ 4. Pull Request """ - #print(dir(submission)) + total_all_flairs += 1 if (submission.id in existing_ids): print("Found first duplicate!") - break + duplicate_count += 1 + if (duplicate_count > 10): + break + else: + continue if(submission.link_flair_text == "New Entry"): text = submission.selftext #Old backslash filter: @@ -73,7 +80,7 @@ lines[i] = line.replace("\"id\": 0", "\"id\": "+"\""+str(submission.id)+"\"") text = "\n".join(lines) try: - outfile.write(json.dumps(json.loads(text))+",\n") + outfile.write(json.dumps(json.loads(text))+" ,\n") successcount += 1 except json.JSONDecodeError: failfile.write(text+",\n") @@ -81,4 +88,10 @@ print("written "+submission.id+" submitted "+str(round(time.time()-submission.created_utc))+" seconds ago") totalcount += 1 -print(f"\n\nSuccess: {successcount}/{totalcount}\nFail: {failcount}/{totalcount}\nPlease check manual_atlas.txt for failed entries to manually resolve.") +# Remove ,\n +outfile.seek(outfile.tell()-4, os.SEEK_SET) +outfile.truncate() + +outfile.write("\n]") + +print(f"\n\nTotal all flairs:{total_all_flairs}\nSuccess: {successcount}/{totalcount}\nFail: {failcount}/{totalcount}\nPlease check manual_atlas.txt for failed entries to manually resolve.") diff --git a/web/_img/place-indexed-final-place.png b/web/_img/place-indexed-final-place.png new file mode 100644 index 00000000..6d939c53 Binary files /dev/null and b/web/_img/place-indexed-final-place.png differ diff --git a/web/_img/place-indexed.png b/web/_img/place-indexed.png index 0f2e50b2..c11ff2e2 100644 Binary files a/web/_img/place-indexed.png and b/web/_img/place-indexed.png differ diff --git a/web/_js/main.js b/web/_js/main.js index ba1e60bb..2420e4db 100644 --- a/web/_js/main.js +++ b/web/_js/main.js @@ -271,14 +271,23 @@ async function init(){ initialPinchZoom = zoom; lastPosition = [x, y]; - - if(e.deltaY > 0){ - zoom = zoom / 2; - - } else if(e.deltaY < 0){ - - zoom = zoom * 2; + // Check if we are zooming by pixels + // https://developer.mozilla.org/en-US/docs/Web/API/WheelEvent/deltaMode + if (e.deltaMode === 0) { + // Scale the pixel delta by the current zoom factor + // We want to zoom faster when closer, and slower when further + // This creates a smoother experience + zoom -= e.deltaY * (0.001 * zoom); + } else { + if(e.deltaY > 0){ + + zoom = zoom / 2; + + } else if(e.deltaY < 0){ + + zoom = zoom * 2; + } } zoom = Math.max(minZoom, Math.min(maxZoom, zoom)); diff --git a/web/atlas.json b/web/atlas.json index 4f2c1da4..a1d756fe 100644 --- a/web/atlas.json +++ b/web/atlas.json @@ -6867,7 +6867,7 @@ {"id": "txrwi6", "submitted_by": "Lesbian_Cops", "name": "LY", "description": "Onion boi artwork done by LY, a Yogscast fan group, in collaboration with Blebs and other Yogscast related artworks", "website": "", "subreddit": "", "center": [1571.5, 1810.5], "path": [[1565.5, 1803.5], [1576.5, 1803.5], [1576.5, 1811.5], [1577.5, 1811.5], [1577.5, 1817.5], [1565.5, 1817.5]]}, {"id": "txrwde", "submitted_by": "pow__", "name": "Among us", "description": "two crewmates that don't seem to like each other very much", "website": "", "subreddit": "r/amongus", "center": [704.5, 1710.5], "path": [[700.5, 1712.5], [707.5, 1712.5], [707.5, 1708.5], [700.5, 1708.5]]}, {"id": "txru9h", "submitted_by": "Neutracity", "name": "Neutra logo", "description": "I'm just a random french player who place his logo with a lot of determination and some friends. If you want you can add me on discord : Neutracity#1644", "website": "", "subreddit": "", "center": [1808.5, 403.5], "path": [[1805.5, 398.5], [1803.5, 400.5], [1803.5, 405.5], [1805.5, 407.5], [1810.5, 407.5], [1812.5, 405.5], [1812.5, 400.5], [1810.5, 398.5], [1805.5, 398.5]]}, -{"name": "Black Bauhinia Flag", "description": "Hongkongers' epic lightsaber battle with the Chinese government, and Mug root beer", "website": "https://cwylo.github.io/hkprotestart/thread1.html", "subreddit": "/r/HongKong", "center": [816.5, 1693.5], "path": [[795.5, 1683.5], [806.5, 1685.5], [811.5, 1672.5], [822.5, 1669.5], [821.5, 1681.5], [831.5, 1681.5], [840.5, 1691.5], [828.5, 1695.5], [833.5, 1702.5], [826.5, 1715.5], [818.5, 1706.5], [807.5, 1714.5], [798.5, 1710.5], [803.5, 1700.5], [795.5, 1691.5]]}, +{"id": "txrsi1", "submitted_by": "sciencecw", "name": "Black Bauhinia Flag", "description": "Hongkongers' epic lightsaber battle with the Chinese government, and Mug root beer", "website": "https://cwylo.github.io/hkprotestart/thread1.html", "subreddit": "/r/HongKong", "center": [816.5, 1693.5], "path": [[795.5, 1683.5], [806.5, 1685.5], [811.5, 1672.5], [822.5, 1669.5], [821.5, 1681.5], [831.5, 1681.5], [840.5, 1691.5], [828.5, 1695.5], [833.5, 1702.5], [826.5, 1715.5], [818.5, 1706.5], [807.5, 1714.5], [798.5, 1710.5], [803.5, 1700.5], [795.5, 1691.5]]}, {"id": "txrs3f", "submitted_by": "MrPoporetaman", "name": "mr_poporetaman", "description": "An abbreviation to my nickname mr_poporetaman. I'm just a random guy.", "website": "", "subreddit": "", "center": [941.5, 1972.5], "path": [[948.5, 1970.5], [948.5, 1973.5], [934.5, 1973.5], [934.5, 1970.5], [934.5, 1970.5], [934.5, 1970.5], [934.5, 1970.5], [934.5, 1970.5], [934.5, 1970.5], [934.5, 1970.5], [935.5, 1970.5], [934.5, 1970.5], [934.5, 1970.5], [934.5, 1970.5], [934.5, 1970.5], [934.5, 1970.5], [948.5, 1970.5]]}, {"id": "txrqmq", "submitted_by": "squidrobotfriend", "name": "Zaku II head", "description": "The head of a 'MS-06 Zaku II', a type of 'Mobile Suit' mecha used by the various Zeon factions in the 'Universal Century' timeline of the Japanese multimedia franchise 'Gundam'.", "website": "", "subreddit": "/r/Gundam", "center": [1569.5, 1544.5], "path": [[1566.5, 1542.5], [1567.5, 1541.5], [1571.5, 1541.5], [1572.5, 1542.5], [1573.5, 1543.5], [1574.5, 1544.5], [1574.5, 1545.5], [1573.5, 1546.5], [1572.5, 1547.5], [1571.5, 1547.5], [1570.5, 1548.5], [1568.5, 1548.5], [1567.5, 1547.5], [1566.5, 1547.5], [1565.5, 1546.5], [1564.5, 1545.5], [1564.5, 1544.5], [1565.5, 1543.5], [1566.5, 1542.5]]}, {"id": "txrqlq", "submitted_by": "bruhccoli3", "name": "Black Mage", "description": "The Black Mage is the dedicated offensive spellcaster of the game, able to cast all Black Magic that can deal heavy damage to enemies or outright kill them, but it is minimal physical proficiency.", "website": "", "subreddit": "r/FinalFantasy", "center": [1264.5, 555.5], "path": [[1273.5, 563.5], [1273.5, 565.5], [1257.5, 565.5], [1257.5, 563.5], [1258.5, 562.5], [1259.5, 560.5], [1258.5, 559.5], [1258.5, 556.5], [1259.5, 555.5], [1256.5, 552.5], [1260.5, 548.5], [1257.5, 542.5], [1258.5, 540.5], [1267.5, 545.5], [1272.5, 545.5], [1269.5, 548.5], [1270.5, 551.5], [1272.5, 554.5], [1272.5, 562.5]]}, @@ -7022,7 +7022,202 @@ {"id": "txob4d", "submitted_by": "accidentalprancingmt", "name": "among us", "description": "amogus", "website": "", "subreddit": "", "center": [161.5, 1913.5], "path": [[160.5, 1911.5], [163.5, 1910.5], [164.5, 1914.5], [163.5, 1916.5], [159.5, 1916.5], [159.5, 1910.5]]}, {"id": "txo5lx", "submitted_by": "dr_vanille", "name": "zidane eyebrows", "description": "During the french-spanish battle, the french community focused on the defense of zidane eyebrows against spanish bot attacks, so they could remain visible and the face of zidane be recognized. These eyebrows became a symbol of the heroic defense of the french community.", "website": "", "subreddit": "", "center": [126.5, 1522.5], "path": [[85.5, 1516.5], [85.5, 1532.5], [127.5, 1529.5], [166.5, 1531.5], [165.5, 1513.5]]}, {"id": "txo1va", "submitted_by": "accidentalprancingmt", "name": "Coat of Arms Mexican Flag", "description": "Coat of Arms depicting a golden eagle eating a snake on a cactus. Symbolizes where the Aztecs were to build their empire.", "website": "https://en.wikipedia.org/wiki/Coat_of_arms_of_Mexico", "subreddit": "/r/mexico", "center": [666.5, 1237.5], "path": [[660.5, 1232.5], [656.5, 1219.5], [645.5, 1239.5], [666.5, 1259.5], [683.5, 1244.5], [684.5, 1226.5], [657.5, 1218.5], [658.5, 1220.5], [662.5, 1237.5], [658.5, 1219.5], [658.5, 1219.5]]}, -{"id": "txnrkv", "submitted_by": "EmersonEsq", "name": "Genderfluid Anarchist A", "description": "Anarchist symbol in the colors of the genderfluid pride flag.", "website": "", "subreddit": "/r/genderfluid", "center": [4.5, 400.5], "path": [[0.5, 397.5], [0.5, 403.5], [8.5, 403.5], [8.5, 397.5], [5.5, 397.5], [1.5, 398.5]]} +{"id": "txnrkv", "submitted_by": "EmersonEsq", "name": "Genderfluid Anarchist A", "description": "Anarchist symbol in the colors of the genderfluid pride flag.", "website": "", "subreddit": "/r/genderfluid", "center": [4.5, 400.5], "path": [[0.5, 397.5], [0.5, 403.5], [8.5, 403.5], [8.5, 397.5], [5.5, 397.5], [1.5, 398.5]]}, +{"id": "txvmxr", "submitted_by": "AikoGinji", "name": "Akuma Nihmune", "description": "An Independent English Vtuber.", "website": "https://discord.gg/numination", "subreddit": "", "center": [1980.5, 1328.5], "path": [[1986.5, 1322.5], [1985.5, 1335.5], [1974.5, 1334.5], [1974.5, 1323.5]]}, +{"id": "txvmms", "submitted_by": "Quack_Attack_99", "name": "Kai Havertz", "description": "German footballer (or soccer player for you Americans and Canadians) who currently plays as midfielder for Chelsea Football Club ", "website": "https://www.chelseafc.com/en/teams/first-team/kai-havertz?pageTab=biography", "subreddit": "r/chelseafc", "center": [1241.5, 1854.5], "path": [[1234.5, 1829.5], [1243.5, 1829.5], [1250.5, 1837.5], [1247.5, 1846.5], [1254.5, 1852.5], [1253.5, 1861.5], [1259.5, 1864.5], [1254.5, 1869.5], [1250.5, 1868.5], [1247.5, 1871.5], [1242.5, 1870.5], [1241.5, 1880.5], [1234.5, 1882.5], [1232.5, 1879.5], [1233.5, 1875.5], [1233.5, 1867.5], [1228.5, 1862.5], [1233.5, 1855.5], [1232.5, 1845.5], [1229.5, 1839.5], [1233.5, 1830.5]]}, +{"id": "txvk95", "submitted_by": "Sproxa-Guy", "name": "Egyptian ankh", "description": "The Egyptian ankh is an ancient Egyptian hieroglyphic symbol used to represent the word for life.", "website": "", "subreddit": "/r/egypt", "center": [902.5, 1986.5], "path": [[894.5, 1975.5], [910.5, 1975.5], [910.5, 1997.5], [894.5, 1998.5], [894.5, 1985.5], [894.5, 1983.5]]}, +{"id": "txvjn6", "submitted_by": "Rychagames", "name": "Giant Dad", "description": "GiantDad, also known as The Legend, is a custom-built playable character often used by griefers in PvP", "website": "https://www.reddit.com/r/darksouls/comments/tvlk6k/rplace_build_giant_dad/?utm_source=share&utm_medium=web2x&context=3", "subreddit": "/r/darksouls", "center": [927.5, 1392.5], "path": [[905.5, 1365.5], [949.5, 1365.5], [949.5, 1420.5], [906.5, 1420.5], [905.5, 1365.5]]}, +{"id": "txvhgz", "submitted_by": "Leonard_Church814", "name": "Avatar Aang", "description": "Portrait of Avatar Aang, main character of the hit animated series Avatar the Last Airbender. ", "website": "https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=&cad=rja&uact=8&ved=2ahUKEwj_ycmao4D3AhWGJTQIHc5LAMMQFnoECGIQAQ&url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FAvatar%3A_The_Last_Airbender&usg=AOvVaw09wRfYybTR6acKjwjzZJDX", "subreddit": "r/ATLA", "center": [289.5, 947.5], "path": [[281.5, 938.5], [297.5, 938.5], [297.5, 956.5], [281.5, 956.5]]}, +{"id": "txvg40", "submitted_by": "AnniMannii", "name": "Super Animal Royale Skullcat", "description": "The Skullcat Avatar from the cute Battle Royale Game \"Super Animal Royale\"", "website": "https://animalroyale.com/", "subreddit": "/r/animalroyale", "center": [1456.5, 746.5], "path": [[1452.5, 741.5], [1452.5, 750.5], [1455.5, 751.5], [1459.5, 749.5], [1460.5, 747.5], [1459.5, 742.5], [1458.5, 742.5], [1457.5, 743.5], [1456.5, 744.5], [1453.5, 744.5], [1451.5, 742.5], [1453.5, 742.5], [1453.5, 743.5], [1451.5, 743.5], [1451.5, 748.5], [1451.5, 749.5], [1450.5, 749.5], [1451.5, 748.5], [1450.5, 747.5], [1451.5, 746.5], [1454.5, 746.5], [1457.5, 745.5], [1454.5, 745.5], [1454.5, 744.5], [1452.5, 743.5], [1452.5, 742.5]]}, +{"id": "txvg13", "submitted_by": "BoggyD", "name": "Artberry", "description": "Artberry is a Ukrainian based agricultural holding, that focuses on growing blueberries, sweet cherries, blackberries and raspberries. The berry at the top is the logo, followed by the Ukrainian flag in the middle, followed by the word Art rotated 90\u00ba clockwise also in Ukrainian flag colours.", "website": "[https://www.instagram.com/artberry.ua/?hl=en](https://www.instagram.com/artberry.ua/?hl=en)", "subreddit": "", "center": [350.5, 1611.5], "path": [[347.5, 1600.5], [352.5, 1600.5], [352.5, 1622.5], [347.5, 1622.5], [347.5, 1600.5]]}, +{"id": "txvfqv", "submitted_by": "Wengzan", "name": "Overwatch Retribution [1836]", "description": "1836 is a score-checkpoint used by score-runners in the first section of the Overwatch Archives PvE mission Retribution. It is heavily RNG based, becoming infamous in the PvE community for its heavy run-resetting nature.", "website": "https://discord.gg/jEj8QdN", "subreddit": "", "center": [705.5, 272.5], "path": [[694.5, 269.5], [694.5, 275.5], [715.5, 275.5], [715.5, 269.5]]}, +{"id": "txvfhb", "submitted_by": "pasi123567", "name": "The Bible (Book)", "description": "A depiction of the Bible which is a collection of religious texts important for Christianity, Judaism and other faiths.", "website": "", "subreddit": "/r/Christianity", "center": [637.5, 1725.5], "path": [[634.5, 1719.5], [640.5, 1719.5], [640.5, 1730.5], [634.5, 1730.5]]}, +{"id": "txvf9p", "submitted_by": "Podria_Ser_Peor", "name": "Our Flag Means Death", "description": "Made by the fandom reddit for Our Flag Means Death, new show in HBO based on Blackbeard\u00b4s pirate flag", "website": "", "subreddit": "/r/OurFlagMeansDeath/", "center": [1911.5, 905.5], "path": [[1900.5, 893.5], [1900.5, 917.5], [1921.5, 917.5], [1921.5, 892.5], [1921.5, 892.5], [1900.5, 892.5]]}, +{"id": "txve99", "submitted_by": "Nyask", "name": "flapin", "description": "6x6 representation of a flaming bunny created and maintained by naskial", "website": "", "subreddit": "", "center": [4.5, 1016.5], "path": [[2.5, 1017.5], [5.5, 1017.5], [5.5, 1014.5], [2.5, 1014.5], [2.5, 1017.5]]}, +{"id": "txvdak", "submitted_by": "Crazymango11", "name": "UGLY LOSER ", "description": "ey if she [ redacted] im [ redacted] ya smell me? ", "website": "https://www.twitch.tv/erobb221", "subreddit": "r/emoney", "center": [637.5, 928.5], "path": [[619.5, 920.5], [650.5, 920.5], [650.5, 940.5], [622.5, 942.5], [623.5, 942.5], [622.5, 920.5], [624.5, 920.5], [622.5, 920.5], [622.5, 910.5], [652.5, 911.5], [654.5, 942.5], [622.5, 943.5], [622.5, 924.5], [622.5, 926.5], [616.5, 928.5], [616.5, 929.5], [622.5, 931.5], [619.5, 930.5], [616.5, 926.5], [621.5, 931.5], [622.5, 921.5], [622.5, 931.5], [621.5, 920.5], [623.5, 932.5], [622.5, 934.5], [623.5, 926.5]]}, +{"id": "txvcm4", "submitted_by": "mura_vr", "name": "mura_vr", "description": "Blue haired, funny, dorky, boobtastic streamer!", "website": "https://twitch.tv/mura_vr", "subreddit": "", "center": [613.5, 1058.5], "path": [[609.5, 1054.5], [609.5, 1061.5], [617.5, 1061.5], [617.5, 1054.5], [609.5, 1054.5]]}, +{"id": "txvap2", "submitted_by": "Leonard_Church814", "name": "Garrus Vakarian", "description": "Garrus is a beloved companion in the Mass Effect franchise, and is long considered the players closest ally.", "website": "https://en.wikipedia.org/wiki/Garrus_Vakarian", "subreddit": "r/MassEffect", "center": [835.5, 1014.5], "path": [[831.5, 1010.5], [839.5, 1010.5], [839.5, 1017.5], [831.5, 1017.5]]}, +{"id": "txvaa1", "submitted_by": "jasonrubik", "name": "Texas Flag and Alamo", "description": "The Alamo Mission, originally known as the Misi\u00f3n San Antonio de Valero, is a historic Spanish mission and fortress compound founded in the 18th century in what is now San Antonio, Texas, United States. It was the site of the Battle of the Alamo in 1836.", "website": "[https://en.wikipedia.org/wiki/Alamo_Mission_in_San_Antonio](https://en.wikipedia.org/wiki/Alamo_Mission_in_San_Antonio)", "subreddit": "/r/texasplace", "center": [1776.5, 1743.5], "path": [[1772.5, 1750.5], [1780.5, 1750.5], [1780.5, 1735.5], [1772.5, 1735.5]]}, +{"id": "txva0u", "submitted_by": "LinkRar", "name": "The cat (\"Lucy\")", "description": "At one point, this cat was adopted by a Redditor named Nate. Her collar was red with a gold tag. She liked it a lot.", "website": "", "subreddit": "/r/placetrees", "center": [967.5, 919.5], "path": [[964.5, 921.5], [964.5, 922.5], [969.5, 922.5], [968.5, 921.5], [968.5, 920.5], [969.5, 919.5], [969.5, 915.5], [967.5, 917.5], [965.5, 915.5], [965.5, 919.5], [967.5, 921.5]]}, +{"id": "txv9my", "submitted_by": "PHANG0", "name": "MILFS", "description": "Milfs are the members of Twitch Partner Melibela's community. It stands for Melibela's International League of Friends. ", "website": "https://www.twitch.tv/melibela", "subreddit": "r/Melibela", "center": [1960.5, 691.5], "path": [[1947.5, 687.5], [1947.5, 696.5], [1975.5, 695.5], [1974.5, 687.5]]}, +{"id": "txv9kd", "submitted_by": "te-freddy-faz-doctor", "name": "ARI", "description": "The purple 'A' logo and white/blue rabbit mascot of Aegis Robotics.\n\nBuilt with assistance from Freddit Freebuild. You can find their work up by the right-hand side of the slovakian flag.", "website": "", "subreddit": "", "center": [1753.5, 391.5], "path": [[1750.5, 388.5], [1750.5, 393.5], [1757.5, 393.5], [1757.5, 389.5]]}, +{"id": "txv927", "submitted_by": "TahLaFrance", "name": "Cat", "description": "Simply just a cute cat", "website": "", "subreddit": "", "center": [306.5, 706.5], "path": [[303.5, 703.5], [303.5, 708.5], [309.5, 708.5], [309.5, 703.5], [303.5, 703.5]]}, +{"id": "txv6ms", "submitted_by": "Daily-Lucaria", "name": "Trollpixia", "description": "These 4 gray Pixels are owned by u/Lord_Zekonas and his friends at ZGN and The Beanary (Discord Servers), there has been an Alliance made on the r/yumenikki Discord to protect Trollpixia.\n\nhttps://www.reddit.com/r/yumenikki/comments/tvlmot/there_has_been_an_alliance_founded_with_the_guys/", "website": "", "subreddit": "r/thebeanary", "center": [1247.5, 133.5], "path": [[1245.5, 131.5], [1248.5, 131.5], [1248.5, 134.5], [1245.5, 134.5], [1245.5, 131.5]]}, +{"id": "txv6b6", "submitted_by": "Isengrine", "name": "Tikal", "description": "Tikal is the ruin of an ancient city, found in a rainforest in Guatemala. It is one of the largest archeological sites and urban centers of the pre-Columbian Maya civilization. It is located in the archeological region of the Pet\u00e9n Basin in what is now northern Guatemala.", "website": "", "subreddit": "", "center": [837.5, 1217.5], "path": [[828.5, 1210.5], [827.5, 1223.5], [848.5, 1223.5], [847.5, 1211.5]]}, +{"id": "txv4fu", "submitted_by": "yotsubashi19", "name": "Finana Ryugu", "description": "A member of LazuLight, the first wave of VTubers from NIJISANJI's English branch. Finana is said to be as 'pure' and 'calm' as the sea... allegedly.", "website": "https://www.youtube.com/channel/UCu-J8uIXuLZh16gG-cT1naw", "subreddit": "/r/Nijisanji", "center": [1925.5, 740.5], "path": [[1925.5, 743.5], [1919.5, 743.5], [1918.5, 741.5], [1922.5, 738.5], [1924.5, 737.5], [1922.5, 736.5], [1924.5, 734.5], [1926.5, 734.5], [1927.5, 736.5], [1927.5, 738.5], [1930.5, 738.5], [1933.5, 741.5], [1932.5, 743.5], [1927.5, 743.5]]}, +{"id": "txv2w1", "submitted_by": "RawBerserker", "name": "The Spot Spot", "description": "Here lies The Spot Spot, a yellow square initially held by Duck, CoC, Pinny and Raw of The Spot Discord server until it was taken over as part of UoM", "website": "", "subreddit": "", "center": [1365.5, 1908.5], "path": [[1365.5, 1907.5], [1364.5, 1907.5], [1364.5, 1908.5], [1365.5, 1908.5]]}, +{"id": "txv0vy", "submitted_by": "Environmental-Big369", "name": "Team Zero Logo", "description": "The logo for the European group of elite gamers known as \"Team Zero\". Very exclusive invite-only community.", "website": "", "subreddit": "", "center": [1691.5, 339.5], "path": [[1686.5, 334.5], [1696.5, 334.5], [1696.5, 344.5], [1685.5, 344.5], [1685.5, 334.5], [1684.5, 334.5]]}, +{"id": "txuzxp", "submitted_by": "Meyuria", "name": "DR Team", "description": "The logo of the DR Team. One of the greatest French E-sport organisation who almost participated in the famous GA tournament. They played CS:GO as 5. Once.", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, +{"id": "txuzl6", "submitted_by": "yotsubashi19", "name": "Elira Pendora", "description": "A member of LazuLight, the first wave of VTubers from NIJISANJI's English branch. She's a solar sky dragon (deez nuts, sheeeeesh).", "website": "https://www.youtube.com/channel/UCIeSUTOTkF9Hs7q3SGcO-Ow", "subreddit": "/r/Nijisanji", "center": [1908.5, 740.5], "path": [[1903.5, 743.5], [1916.5, 743.5], [1914.5, 739.5], [1914.5, 737.5], [1917.5, 734.5], [1912.5, 737.5], [1906.5, 737.5], [1901.5, 734.5], [1900.5, 735.5], [1904.5, 738.5], [1902.5, 740.5]]}, +{"id": "txux3o", "submitted_by": "TheBombasticBrown", "name": "The Bombastic Brown/The Whimsical White", "description": "Originally meant to be a joke that would later become a relatively big ball of turd before getting forcefully overwhelmed and overthrown by OSP. The organization known as The Bombastic Brown would then be formed to combat OSP to not get completely snuffed out. They fought valiantly and managed to stay on the atlas, albeit only on one pixel. OSP was known to have many alliances to help keep The Bombastic Brown off, a group of no more than 3 men until The Bombastic Brown allied themselves with a Russian streamer Who forced his Dr Pepper can on the canvas. The Whimsical White would be their later adopted name when people could no longer place anything but white tiles, viewing it as divine retribution they considered themselves a part of that white void.", "website": "", "subreddit": "", "center": [1705.5, 1638.5], "path": [[1704.5, 1637.5], [1706.5, 1637.5], [1706.5, 1639.5], [1704.5, 1639.5], [1704.5, 1638.5]]}, +{"id": "txuvai", "submitted_by": "MeghruhuDanak", "name": "Armenian Genocide Remembranc", "description": "A small easter egg created by the Armenians that created and defended the nearby \"Gort\" (AM: frog) with the Armenian flag on top of a transgender pride flag. The purple heart with an orange core in its middle is an hommage to the \"Forget-Me-Not Flower\" symbol of Armenian Genocide Remembrance.\n\nAfter numerous campaigns to erase any Armenian art and symbolism by Turkish and Azerbaijani actors, a decision was made to secretly place a sort of time capsule in case all Armenian flags were erased and overwritten. It was agreed upon that a miniature heart with something that wasn't the Armenian tricolor would likely fly under the radar succesfully.", "website": "https://encyclopedia.ushmm.org/content/en/article/the-armenian-genocide-1915-16-in-depth", "subreddit": "/r/Armenia", "center": [1753.5, 495.5], "path": [[1752.5, 492.5], [1753.5, 493.5], [1754.5, 492.5], [1757.5, 495.5], [1753.5, 499.5], [1749.5, 495.5], [1752.5, 492.5]]}, +{"id": "txuv05", "submitted_by": "Qyuwi_Art", "name": "The Qyuwi Q", "description": "The Remnants of the letter Q from the VTuber Qyuwi, Her discord tried their best but the among us were powerful and soon took it over.", "website": "https://linktr.ee/Qyuwi", "subreddit": "", "center": [90.5, 1993.5], "path": [[88.5, 1989.5], [88.5, 1996.5], [92.5, 1996.5], [92.5, 1989.5], [88.5, 1989.5]]}, +{"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](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\nSCIThe 2022 /r/place Atlas
- Canvas of /r/place in the state of when the experiment was concluded. + Canvas of /r/place in the state of when the experiment was concluded.